diff --git a/doc/RCS与AGV之间的指令数据格式.md b/doc/RCS与AGV之间的指令数据格式.md new file mode 100644 index 0000000..ba8c70a --- /dev/null +++ b/doc/RCS与AGV之间的指令数据格式.md @@ -0,0 +1,966 @@ +# RCS与AMR之间的指令数据格式 + +**RCS与AMR通信指令数据格式** + +## 通信方式概览 + +- RCS(Robot Control System)与AMR(Autonomous Mobile Robot)间通过MQTT协议通信,MQTT服务器默认不设置密码。AMR内部设置MQTT服务器的信息(IP、端口、用户名密码等,需要在项目部署时设置),启动后会自动监听任务topic。 +- RCS下发任务给AMR时使用的topic为"/wcs_server/",其中""部分替换为AMR的编号,比如"/wcs_server/5",代表下发给5号车的topic。 +- RCS可以通过"/wcs_broadcast"来发全局查询(内容与"/wcs_server/"一致,但广播接口目前只支持查询状态,不支持其它报文),以便在RCS重启等情况下能同步所有车的状态。 +- 所有AMR上报的信息统一发到"/agv_robot/status",这样RCS可以监听到所有配置了同一个MQTT服务的AMR的消息。 + +## RCS发往AMR的指令 + +### AMR作业指令 10010 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **ID#10010** | **指令ID** | | | +| SeqNo | 作业序号 | UInt32 | | +| OperationType | 作业类型 | UInt8 | 0:运输 1:接货 2:卸货 3:充电 4:提升移栽取货或卸货 **5:滚筒取货或卸货(双向作业)** | +| ChargeDirection | 充电桩朝向UseBriefLocation | UInt8 | 0: X轴正向 1: Y轴正向 2: X轴负向 3: Y轴负向 | +| DistanceToCharging | 充电工位坐标和充电桩之间距离 | UInt16 | 单位:mm | +| StorageRacksNo | 目标货架编号 | String | 仅做校验使用(仅接货用) | +| StartX | 小车起始X坐标 | UInt16 | | +| StartY | 小车起始Y坐标 | UInt16 | | +| EndX | 小车目标X坐标 | UInt16 | | +| EndY | 小车目标Y坐标 | UInt16 | | +| GoNow | 任务是否立即执行 | bool | 默认为true | +| LinkCounts | 路径分段数 | UInt8 | | +| **Link** **(重复LinkCounts次)** | | | | +| X | 该段目标点X坐标 | UInt16 | 逻辑单位,乘以一定系数才是物理距离 | +| Y | 该段目标点Y坐标 | UInt16 | 同上 | +| Speed | 该段行驶速度 | Int16 | mm/s | +| **BuiltinSlotNo** | AMR内置货位ID(仅对多层移栽有意义) | UInt8 | 1~N | +| PickMode | 提升移栽货物拣货模式 | UInt8 | 0:不控制(无动作) 1:从货架上取货 2:将货物放到货架上 3:仅调整托盘高度(不进行取放货操作) 4:调整车身货物(仅供调试,RCS勿发送此命令) 5:仅调整载货台到取货高度,但是不动作 6:仅调整载货台到放货高度,但是不动作 | +| **GoodsSlotHeight** | **目标货位相对于地面的绝对高度** | **UInt16** | **单位:mm** | +| GoodsSlotDirection | 目标货位朝向 | UInt8 | 朝向定义与充电桩朝向相同。 0: X轴正向 1: Y轴正向 2: X轴负向 3: Y轴负向 | +| MPickMode | 多机构^\[1\]^的拣货模式 | UInt8\[3\] | 数组形式,意义同"PickMode" | +| MGoodsSlotHeight | 多机构^\[1\]^的目标货位高度 | UInt16\[3\] | 数组形式,意义同"GoodsSlotHeight" | +| MGoodsSlotDirection | 多机构^\[1\]^的目标货位朝向 | UInt8\[3\] | 数组形式,意义同"GoodsSlotDirection" | +| MStorageRacksNo | 多机构的目标货箱ID | String\[3\] | 数组形式,意义同"StorageRacksNo" | +| Roll1Motion | 滚筒1运动操作 对于左右滚动的双滚筒机型,此滚筒为靠近车头的滚筒。 对于前后滚动的双滚筒机型,此滚筒为车身左侧的滚筒。 | UInt8 | 同"PickMode" | +| Roll2Motion | 滚筒2运动操作 对于左右滚动的双滚筒机型,此滚筒为靠近车尾的滚筒。 对于前后滚动的双滚筒机型,此滚筒为车身右侧的滚筒。 对于单滚筒机型,此参数无意义。 | UInt8 | 同上 | +| Roll1StationDirection | 与滚筒1对接的站台朝向 | UInt8 | 朝向定义与充电桩朝向相同。 0: X轴正向 1: Y轴正向 2: X轴负向 3: Y轴负向 | +| Roll2StationDirection | 与滚筒2对接的站台朝向 对于单滚筒机型,此参数无意义。 | UInt8 | 同上 | +| Roll1GoodsLength | 滚筒1目标货物长度 | UInt16 | 单位:mm | +| Roll2GoodsLength | 滚筒2目标货物长度 对于单滚筒机型,此参数无意义。 | UInt16 | 同上 | +| Roll1GoodsQuantity | 滚筒1目标货物数量 | UInt16 | 1~N | +| Roll2GoodsQuantity | 滚筒2目标货物数量 对于单滚筒机型,此参数无意义。 | UInt16 | 同上 | +| MRollMotion | 多滚筒运动模式 | UInt8\[6\] | 数组形式,意义同"RollMotion" | +| MRollStationDirection | 多滚筒对接的站台朝向 | UInt8\[6\] | 数组形式,意义同"RollStationDirection" | +| MRollGoodsQuantity | 多滚筒目标货物数量 | UInt16\[6\] | 数组形式,意义同"RollGoodsQuantity" | +| Preparing | 是否仅执行任务的准备部分 | bool | 默认为false,仅执行该动作的准备部分,如仅进行导航,调整托盘高度等,但不进行取放货操作 | +| RackTypeId | 货架标识 | uint32 | 车根据货架类型查询尺寸进行避障 | +| EndSelfAdaption | 终点自适应 | bool | 默认为false,为true时,会根据任务和对应器件的位置,自动调整停止点 | + +**注[1]:对于哪吒三层飞梭,下标0表示最低的取放货机构;下标1表示中间的取放货机构;下标2表示最高的取放货机构**。 + +例如: + +```json +{ + "id": 10010, + "content": { + "SeqNo": 4, + "OperationType": 0, + "StorageRacksNo": "R123", + "StartX": 700, + "StartY": 1400, + "EndX": 100, + "EndY": 100, + "LinkCounts": 4, + "Link": [ + { + "X": 700, + "Y": 100, + "Speed": 150 + }, + { + "X": 100, + "Y": 100, + "Speed": 150 + } + ] + } +} +``` + +### 停止/解除 10040 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| --------------- | ------------- | -------- | --------------- | +| **ID#10040** | **指令ID** | | | +| SeqNo | 作业序号 | Uint32 | | +| OperationCode | 操作代码 | Uint8 | 0-停止 1-解除 | +| StopX | 停止点X坐标 | Uint16 | | +| StopY | 停止点Y坐标 | Uint16 | | + +例如: + +```json +{ + "id": 10040, + "content": { + "SeqNo": 1023844, + "OperationCode": 0, + "StopX": 100, + "StopY": 100 + } +} +``` + +### 电文应答 10050 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ------- | ---------- | -------- | ----------------------------- | +| **ID#10050** | **指令ID** | | | +| SeqNo | 作业序号 | UInt32 | 所要应答消息的SeqNo(对方的) | + +例如: + +```json +{ + "id": 10050, + "content": { + "SeqNo": 1 + } +} +``` + +### 心跳 10100 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| -- | -- | -- | ----- | +| **ID#10100** | **指令ID** | | | + +例如: + +```json +{ + "id": 10100, + "content": {} +} +``` + +### 配置信息 10060 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ------------- | ---------------------------------------------------- | -------- | ---------------------- | +| **ID#10060** | **指令ID** | | | +| SeqNo | 作业序号 | UInt32 | 0(特殊) | +| XLength | X坐标最大长度 | UInt16 | 暂时未使用 | +| YLength | Y坐标最大长度 | UInt16 | 暂时未使用 | +| Gap | 相邻地标间距 | UInt16 | 单位:mm (目前等距) | +| HeartBeat | 心跳间隔 | UInt32 | 单位:秒 | +| MqRetryTime | 小车所有上报消息重试间隔(未收到应答消息时重发消息) | UInt32 | 单位:秒 | + +例如: + +```json +{ + "id": 10060, + "content": { + "SeqNo": 0, + "XLength": 100, + "YLength": 100, + "Gap": 100, + "HeartBeat": 60, + "MqRetryTime": 3 + } +} +``` + +### 旋转货架 10080 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ----------- | ------------- | -------- | --------------------------------------------- | +| **ID#10080** | **指令ID** | | | +| SeqNo | 作业序号 | Uint32 | | +| Direction | 货架A面朝向 | UInt8 | 0: X轴正向 1: Y轴正向 2: X轴负向 3: Y轴负向 | + +例如: + +```json +{ + "id": 10080, + "content": { + "SeqNo": 110, + "Direction": 1 + } +} +``` + +### 旋转车身 10081 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ----------- | ---------- | -------- | --------------------------------------------- | +| **ID#10081** | **指令ID** | | | +| SeqNo | 作业序号 | Uint32 | | +| Direction | 车头朝向 | UInt8 | 0: X轴正向 1: Y轴正向 2: X轴负向 3: Y轴负向 | + +例如: + +```json +{ + "id": 10081, + "content": { + "SeqNo": 110, + "Direction": 1 + } +} +``` + +### 状态查询 10110 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ------- | ---------- | -------- | ----- | +| **ID#10110** | **指令ID** | | | +| SeqNo | 作业序号 | Uint32 | | + +查询车的当前状态。正常情况下只有当车正确初始化后才会应答,但有两种例外情况: + +1. 通过广播接口发生的状态查询请求 +2. 在AMR配置文件中设置了强制应答 + +在未完成初始化的情况下应答的状态报文可能是不准确的,比如位置未知,比如货位状态不准确等,上位系统需要针对性做处理。 + +### 控制卷帘门 10082 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ------------ | ---------- | -------- | ----------------------------------------------------------------------------- | +| **ID#10082** | **指令ID** | | | +| SeqNo | 作业序号 | Uint32 | | +| CurtainCmd | 卷帘状态 | UInt8 | 0: 不控制(无动作) 1: 关闭状态 2: 半开状态 3: 全开状态 4: 停止(暂不支持) | + +例如: + +```json +{ + "id": 10082, + "content": { + "SeqNo": 110, + "CurtainCmd": 1 + } +} +``` + +### 取消已下发小车任务 10120 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ------- | ---------- | -------- | ----- | +| **ID#10120** | **指令ID** | | | +| SeqNo | 作业序号 | Uint32 | | + +例如: + +```json +{ + "id": 10120, + "content": { + "SeqNo": 110 + } +} +``` + +### 等待就绪 19997 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| --------- | --------------- | -------- | ------------------------------------------------------------------------------------------ | +| **ID#19997** | **指令ID** | | | +| SeqNo | 作业序号 | Uint32 | | +| Seconds | 等待时间(s) | Double | -1:结束等待(仅SLAM车支持) 0:持续等待(仅SLAM车支持) 大于0:等待对应的时间后返回成功 | + +例如: + +```json +{ + "id": 19997, + "content": { + "SeqNo": 110, + "Seconds": 0 + } +} +``` + +### 设置小车坐标 10200 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ----------- | ---------- | -------- | ----------------------------------------------------------------------------- | +| **ID#10200** | **指令ID** | | | +| SeqNo | 作业序号 | Uint32 | | +| X | 点X坐标 | Uint16 | | +| Y | 点Y坐标 | Uint16 | | +| Direction | 车头朝向 | UInt8 | 0: X轴正向 1: Y轴正向 2: X轴负向 3: Y轴负向 15: 未知(小车保持原车头方向) | + +例如: + +```json +{ + "id": 10200, + "content": { + "SeqNo": 110, + "X": 1, + "Y": 1, + "Direction": 15 + } +} +``` + +--- + + + + +--- + +## AMR发往RCS的指令 + +### 共同信息 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ---------------- | -------------------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +| SeqNo | 作业序号 | UInt32 | 从1开始,0作为超级序号使用,不参与序号规则判断 | +| VehicleId | AMR编号 | UInt16 | | +| CreateTime | 消息创建时间 | UInt64 | 单位:毫秒 示例:1685589750403 | +| CreateMonoTime | 消息创建时主机的开机时长 | UInt64 | 单位:毫秒 示例:822652887 备注:由于刚开机时设备内部时间可能不准,所以将开机时长也上报,这样可以在时间同步后,再反推时间同步前时间的时间 | +| SendTime | 发送消息的时间 | UInt64 | 单位:毫秒 示例:1685589750403 | + + +### 小车作业完成 20010 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ---------------------------- | ---------------------------------------- | ---------- | ----------------------------------------------------------------------------------------------------------------------------------------- | +| **ID#20010** | **指令ID** | | | +| SeqNo | 作业序号 | UInt32 | | +| VehicleId | AMR编号 | UInt16 | | +| CurX | 当前X坐标 | UInt16 | 逻辑单位,乘以一定系数才是物理距离 | +| CurY | 当前Y坐标 | UInt16 | 同上 | +| CurDirection | 当前方向 | UInt8 | 0: X轴正向 1: Y轴正向 2: X轴负向 3: Y轴负向 | +| OperationType | 作业类型 | UInt8 | 0:运输 1:接货 2:卸货 3:充电 4:提升移栽取货或卸货 **5:滚筒取货或卸货(双向作业)** 135:旋转货架 136:旋转车身 | +| OperationResult | 作业结果 | Int32 | 参考linux errno | +| StorageRacksNo | 货物ID | String | 在肥波类车型中是货架二维码值;在飞梭车中是箱码(目前未传,未来可能会有);在皮带飞梭中是货物上贴的二维码的码值(如果检测到多个码,则以" | +| Battery | 电量百分比 | Uint8 | | +| Summary | 任务描述 | Object | 目前仅在飞梭和侧叉车型的报文中有这个字段,字段详情见下文 | +| Summary.Actuators | 执行器(比如飞梭的载货台)任务概览列表 | Array | 车载多少个执行器,数组就有多少个成员 | +| Summary.Actuators.MechNo | 执行器编号 | UInt8 | 从1开始 | +| Summary.Actuators.Name | 执行器名称 | String | | +| Summary.Actuators.PickMode | 任务类型 | UInt8 | 同下发任务中PickMode的定义 | +| GoodsSlots | 车载货位信息 | [Object] | 参见[货位信息](#货位信息) | + +示例: + +```json +{ + "content": { + "Battery": 84, + "CurDirection": 0, + "CurX": 10, + "CurY": 11, + "OperationResult": 0, + "OperationType": 4, + "SeqNo": 635, + "StorageDirection": 15, + "StorageRacksNo": "0331794865-S12", + "Summary": { + "Actuators": [ + { + "MechNo": 1, + "Name": "Mech1", + "PickMode": 2 + } + ] + }, + "VehicleId": 41 + }, + "id": 20010 +} +``` + + + +### 小车子模块任务状态 20012 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ----------------- | ------------------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| **ID#20012** **[2]** | **指令ID** | | | +| SeqNo | 作业序号 | UInt32 | | +| VehicleId | AMR编号 | UInt16 | | +| MPickMode | 多机构^\[1\]^的拣货模式 | UInt8\[3\] | 数组形式,意义同"PickMode" | +| MechStatus | 子模块任务状态 | Uint8 \[3\] | 数组形式,数组下标^\[1\]^分别对应各子模块。 0:无任务 2:任务中 3:任务准备中(已有任务,但还没有执行任务的条件) 5:任务异常 7:任务完成 其它:保留 | +| MStorageRacksNo | 子模块货物ID | String\[3\] | 数组形式,分别对应各子模块上货箱的ID码的值,如果无货为"",如果解不出来为"unknown" | + +**注[1]:对于哪吒三层飞梭,下标0表示最低的取放货机构;下标1表示中间的取放货机构;下标2表示最高的取放货机构**。 + +**注[2]:AMR主动上报此状态,用于上报20010前反馈给RCS当前子模块的任务状态,方便RCS对货位状态进行管理以及异常时候的任务取消和重发处理。** + + + +### 地标报告 20020 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| -------------- | ----------- | -------- | --------------------------------------------- | +| **ID#20020** | **指令ID** | | | +| SeqNo | 作业序号 | UInt32 | | +| VehicleId | AMR编号 | UInt16 | | +| CurX | 当前X坐标 | UInt16 | | +| CurY | 当前Y坐标 | UInt16 | | +| CurDirection | 当前方向 | UInt8 | 0: X轴正向 1: Y轴正向 2: X轴负向 3: Y轴负向 | + +例如: + +```json +{ + "content": { + "CurDirection": 1, + "CurX": 700, + "CurY": 1400, + "SeqNo": 126, + "VehicleId": 0 + }, + "id": 20020 +} +``` + + + +### 消息应答 20050 + +| **Field Name** | **Field Description** | **Format** | | **Values/** **Remarks** | +| ----------- | ---------- | -------- | -- | ----- | +| **ID#20050** | **指令ID** | | | | +| SeqNo | 作业序号 | UInt32 | | | +| VehicleId | AMR编号 | UInt16 | | | + +例如: + +```json +{ + "content": { + "SeqNo": 2, + "VehicleId": 0 + }, + "id": 20050 +} +``` + + + +### 状态上报 20060 + +| **Field Name** | **Field Description** | **Format** | | **Values/** **Remarks** | +| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | ----------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **ID#20060** | **指令ID** | | | | +| CurBattery | 电池状态 | Struct | | | +| CurOrientation | 当前方向 | Double | | | +| CurLogicX | 当前所在站点的逻辑X坐标 | Int32 | | | +| CurLogicY | 当前所在站点的逻辑Y坐标 | Int32 | | | +| CurX | 当前X坐标 | Double | 当前实际位置在地图坐标系中的X坐标 | | +| CurY | 当前Y坐标 | Double | 当前实际位置在地图坐标系中的Y坐标 | | +| RackCurOrientation | 货架当前方向 | Double | | | +| RackCurPosition | 货架当前位置 | Double | | | +| SeqNo | 作业序号 | UInt32 | | | +| StorageRacksNo | 货架号 | String | | | +| MStorageRacksNo | 多载货机构上每个机构上面货物的ID | String\[\] | | 对于哪吒车型,前三项分别代表三层载货台上的货物ID,如果无货则为"",如果有货但解不出货物码或没有货物码,则为"unkonwn",如果有货且能解出货物码,则为货物码的码值 | +| TaskMode | 任务模式 | UInt8 | | | +| VehicleId | AMR编号 | UInt16 | | | +| X | 当前标准X坐标 | Int32 | 当前所在站点的X坐标 | | +| Y | 当前标准Y坐标 | Int32 | 当前所在站点的Y坐标 | | +| GoodsQuantity | 当前货物数量。数组形式。 对于单滚筒等单个托盘的机型,只需关注数据0; 对于双滚筒,滚筒1的数量放到数据0中,滚筒2的货物数量放到数据1中。 其它机型以此类推。 | UInt16 \[4\] | 数组形式 | | +| Exceptions | 异常数组,存放异常的所有异常ID | UInt16 \[4\] | 数组形式 | | +| InDock | 是否已进行精准停靠(是否能在原地直接执行对接任务) | bool | 默认为true | | +| GoodsSlots | 车载货位信息 | [Object] | 参见[货位信息](#货位信息) | | + +例如: + +```json +{ + "content": { + "CurBattery": { + "ChargingCurrent": 0, + "DischargingCurrent": 3.8, + "SOC": 57, + "Voltage": 48.025 + }, + "CurOrientation": -179.776, + "CurX": 943.739, + "CurY": 99.3311, + "RackCurOrientation": -179.246, + "RackCurPosition": 0.0440616, + "SeqNo": 93585, + "StorageRacksNo": "R031", + "TaskMode": 2, + "VehicleId": 2, + "X": 900, + "Y": 100, + "GoodsQuantity": [ + 2, + 0, + 0, + 0 + ], + "Exceptions": [], + "InDock": true + }, + "id": 20060 +} +``` + + + +### 心跳 20100 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| --------------------- | ------------------ | -------- | ------------------------------------------------------------------------------------- | +| **ID#20100** | **指令ID** | | | +| SeqNo | 作业序号 | Uint32 | | +| VehicleId | AMR编号 | Uint16 | | +| Battery | 电量 | UInt8 | | +| Uptime | 上电至今的毫秒数 | UInt64 | | +| Temperature.Battery | 电池温度 | Double | 单位:摄氏度 备注:一个电池可能有多个(不同型号的)温度传感器,目前只上报最高的温度 | + +例如: + +```json +{ + "content": { + "SentTime": 1685589750403, + "Battery": 67, + "Temperature": { + "Battery": 30.5 + }, + "CreateMonoTime": 822652887, + "CreateTime": 1685589750403, + "SeqNo": 730, + "Uptime": 822652887, + "VehicleId": 1 + }, + "id": 20100 +} +``` + + + +### 小车主程序启动 20149 + +代表车的主程序已经启动,接下来马上会进行初始化,如果初始化顺利完成便会上报上线消息。 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ------------ | ------------- | -------- | ---------------------------------------------------------------------------------------- | +| **ID#20149** | **指令ID** | | | +| SeqNo | 作业序号 | UInt32 | | +| VehicleId | AMR编号 | UInt16 | | +| Battery | 电量 | UInt8 | | +| AGVModel | AMR底盘型号 | String | 对于底盘和功能一体的版本,由底盘型号便知道功能;对于通用底盘,底盘型号指定了底盘的版本 | +| AGVFnModel | AMR功能型号 | String | 底盘之上的工装的型号 | + + + +### 小车上线 20150 + +代表车已经完成初始化,可以接收任务了。 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ----------- | ---------- | -------- | ----- | +| **ID#20150** | **指令ID** | | | +| SeqNo | 作业序号 | UInt32 | | +| VehicleId | AMR编号 | UInt16 | | + +例如: + +```json +{ + "content": { + "Battery": 88, + "SeqNo": 1, + "VehicleId": 0 + }, + "id": 20150 +} +``` + + + +### 小车离线 20200 + +注意:目前未实现此报文 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ----------- | --------- | -------- | ----- | +| **ID#20200** | **指令ID** | | | +| VehicleId | AMR编号 | UInt16 | | + +例如: + +```json +{ + "id": 20200, + "content": { + "VehicleId": 23412 + } +} +``` + + + +### 异常上报 20250 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| -------------- | -------------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------- | +| **ID#20250** | **指令ID** | | | +| SeqNo | 作业序号 | UInt32 | | +| VehicleId | AMR编号 | UInt16 | | +| ErrCode | 异常代码 | UInt8 | 1. 货架编号不匹配 2. 地标异常 3. 电量低 | +| MechNo | 异常机构代码 | UInt8 | 对于哪吒飞梭类的机型,增加MechNo用于指示异常具体是哪一层发生的。 MechNo: 1- 机构1^\[1\]^异常 2- 机构2异常 3- 机构3异常 | +| ErrMsg | 异常详情 | Struct | 根据不同的异常,字段不一样,比如针对ErrCode为2电量低的情况,ErrMsg中使用CurBattery标识当前电量; | +| ErrEvtType | 异常事件类型 | UInt8 | 0:无 1:开始 2:更新 3:结束 4:开始并结束 | +| ErrLevel | 异常等级 | UInt8 | 0:Undetermined 12:Info 13:Warning 14:Critical 15:Fatal | +| ErrLifecycle | 异常生命周期 | UInt8 | 0:易变的 1:一次性 2:持续性 3:任务期间 | + +**注[1]:对于哪吒三层飞梭,机构1表示最低的取放货机构;机构2表示中间的取放货机构;机构3表示最高的取放货机构**。 + +例如: + +```json +{ + "id": 20250, + "content": { + "VehicleId": 23412, + "ErrCode": 2, + "ErrMsg": { + "CurBattery": 50 + } + } +} +``` + + + +### 开机上报 20147 + +在开机后上报一次,此后AMR程序重启不会重新上报(与ID#20149的差异),除非人为清除内部记录已上报的标志。 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ------------ | ------------------ | -------- | ---------------------------------------------------------------------------------------- | +| **ID#20147** | **指令ID** | | | +| SeqNo | 作业序号 | UInt32 | | +| VehicleId | AMR编号 | UInt16 | | +| Battery | 电量 | UInt8 | | +| AGVModel | AMR底盘型号 | String | 对于底盘和功能一体的版本,由底盘型号便知道功能;对于通用底盘,底盘型号指定了底盘的版本 | +| AGVFnModel | AMR功能型号 | String | 底盘之上的工装的型号 | +| Uptime | 上电至今的毫秒数 | UInt64 | | + + + +### 关机上报 20148 + +在收到关机信号后上报此消息。 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ----------- | ------------------ | -------- | ----- | +| **ID#20148** | **指令ID** | | | +| SeqNo | 作业序号 | UInt32 | | +| VehicleId | AMR编号 | UInt16 | | +| Battery | 电量 | UInt8 | | +| Uptime | 上电至今的毫秒数 | UInt64 | | + + + +### 任务状态上报 20011 + +任务状态变化时会上报此消息 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ----------- | -------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +| **ID#** 20011 | **指令ID** | | | +| SeqNo | 作业序号 | UInt32 | | +| VehicleId | AMR编号 | UInt16 | | +| EventId | 事件ID | UInt8 | 0:无变化 1:任务模式改变 2:任务接收成功 3:任务开始 4:任务完成 5:任务已取消 6:任务已停止 7:任务已恢复 8:任务已更变 | +| Info | 由事件ID决定 | Object | 默认消息(0,2,3,5,6,7):任务状态改变消息 1:任务模式消息 4:任务完成消息 8:任务类型改变消息 | + +- 任务完成消息 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ------------------ | --------------- | ---------------- | ------------------ | +| OperationType | 任务类型 | | | +| OperationResult | 作业结果 | Int32 | 参考linux errno | +| CurLogicX | 当前X逻辑坐标 | Int32 | | +| CurLogicY | 当前Y逻辑坐标 | Int32 | | +| CurX | 当前X坐标 | Double | | +| CurY | 当前Y坐标 | Double | | +| CurDirection | 当前方向 | #### Direction | 参考通用类型定义 | +| StorageRacksNo | 货架号 | String | | +| StorageDirection | 货架朝向 | #### Direction | 参考通用类型定义 | +| Battery | 电量百分比 | Uint8 | | +| GoodsSlots | 车载货位信息 | [Object] | 参见[货位信息](#货位信息) | + +- 任务模式改变消息 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| -------------- | ---------------- | --------------- | ------------------ | +| PrevTaskMode | 上一个任务模式 | TaskMode | 参考通用类型定义 | +| TaskMode | 当前任务模式 | #### TaskMode | 参考通用类型定义 | + +- 任务类型改变消息 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ------------------- | ---------------- | --------------- | ------------------ | +| PrevOperationType | 上一个任务类型 | OperationType | 参考通用类型定义 | +| OperationType | 当前任务类型 | OperationType | 参考通用类型定义 | + +- 任务状态改变消息 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| --------------- | -------------- | --------------- | ------------------ | +| OperationType | 当前任务类型 | OperationType | 参考通用类型定义 | + +### 货位信息 + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ----------------- | ------------------------------------------------ | ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| ID | 货位ID | UInt8 | 从0开始,每款车自己定义的车载货位的ID | +| Name | 货位名称 | String | 每款车自己定义的货位的名称 | +| ShouldHaveGoods | 逻辑上是否应该有货 | Bool | 有些车型有传感器来检测货物状态,这时实际的货物状态跟逻辑状态就可能不同 | +| DetectedStatus | 检测到的货位状态 | UInt8 | 0: 正常 1: 冲突,即传感器检测到的状态跟逻辑状态有冲突。逻辑上有货,实际无货,是一种冲突;逻辑上货的属性(比如高度)跟实际检测到的属性不同,也会产生冲突;对于一个货位有多个货物的情况,需要查看货物信息来查找具体是哪个货物出现了什么冲突 | +| Height | 货位放货平面离地高度 | Double | | +| Position | 货位相对原点(初始化后货位所在位置)的相对位置 | Object | 包含以下成员: OffsetX:Double类型 OffsetY:Double类型 OffsetZ:Double类型,代表在高度上的位移 Orientation:Double类型,用角度(Degree)表示 | +| Goods | 货物信息 | \[Object\] | 一个货位可能有多个货物,因此用数组表示;多数情况下一个货位仅存放一个货物 | + +货物信息定义如下: + +| **Field Name** | **Field Description** | **Format** | **Values/** **Remarks** | +| ------------------------- | ------------------------ | ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Category | 货物类型 | UInt | 对于一类设备可能取放不同货物时有用;如果只有一类货物,则可以不(在地图或者RCS下发的任务报文中)指定,此种情况下报文中不包含此字段 | +| DetectedId | 传感器检测到的货物ID | String | 比如飞梭通过摄像头检测到的箱码、FM系列通过对上摄像头检测到的货架底部二维码等;如果车型没配备可以检测货物ID的传感器,则报文中不包含此字段 | +| UpperSystemDefinedId | 上位系统传过来的货物ID | String | 通常上位传过来的ID应该跟检测到的ID一致,否则会报错;对于没有检测ID功能的车型,不做校验而只是回传该值;有些项目可能会希望两个ID分开,对应此类需求可以特别设置不校验两类ID;也许有些项目会同时传入两种ID,当前暂不支持;如果上位没传入ID,则报文中不包含此字段 | +| HeightLevel | 高度等级 | UInt8 | 部分车型能检测货物高度,等级从0(最矮,默认值)开始,每一级递增1,各个等级的具体含义与车型有关,需要另行约定;~~如果没有对应的检测传感器,则报文中不包含此字段;~~ 如果有传感器但是由于传感器异常等原因无法获取到检测结果,则设置该值为0xff,代表状态未知。 | +| LengthLevel | 长度等级 | UInt8 | 类似上面,代表货物长度所属类别 | +| WidthLevel | 宽度等级 | UInt8 | 类似上面,代表货物宽度所属类别 | +| WeightLevel | 重量等级 | UInt8 | 类似上面,代表货物重量所属类别 | +| ApproximateWeight | 测算的重量,不一定准 | Double | 单位是千克 | +| Orientation | 货物在地图上的朝向 | Double | 角度(Degree)值 | +| RelativePosition | 货物相对机器人的位置 | Object | 包含以下成员: OffsetX:Int32类型 OffsetY:Int32类型 Orientation:Double类型,用角度(Degree)表示 | +| DetectedStatusConflicts | 检测到的货物状态冲突 | \[UInt8\] | 1:货物ID不匹配 2:货物高度不匹配 3:货物宽度不匹配 4:货物长度不匹配 5:应该有货但没检测到有货 6:应该没货但检测到有货 | + + +## 通用类型定义 + +#### OperationType + +- 任务类型 +- 类型 Uint8 + +| **Value** | **Description** | **Details** | +| ----- | ---------------------------- | -- | +| 0 | 运输 | | +| 1 | 接货 | | +| 2 | 卸货 | | +| 3 | 充电 | | +| 4 | 提升移栽取货或卸货 | | +| 5 | 滚筒取货或卸货(双向作业) | | +| 135 | 旋转货架 | | +| 136 | 旋转车身 | | +| 143 | 卷帘门控制 | | +| 224 | 等待就绪 | | + + +#### TaskMode + +- 任务模式 +- 类型 Uint8 + +| **Value** | **Description** | **Details** | +| --- | ---------------- | -------------------------- | +| 0 | 空闲模式 | | +| 1 | 初始化模式 | | +| 2 | 任务模式 | | +| 3 | 单动作模式 | | +| 4 | 手动模式 | | +| 5 | 遥控器模式 | | +| 6 | 充电模式 | | +| 7 | 任务被中断模式 | 有任务,但未收到终点坐标 | +| 8 | 自定义模式 | | + +#### Direction + +- 方向 +- 类型 Uint8 + +| **Value** | **Description** | **Details** | +| ---- | ---------- | -- | +| 0 | X轴正向 | | +| 1 | Y轴正向 | | +| 2 | X轴负向 | | +| 3 | Y轴负向 | | +| 15 | 未知方向 | | + + +## 简要调用流程 + +```mermaid +sequenceDiagram + participant 操作员 + participant RCS + participant AMR + activate RCS + critical 初始化 + 操作员->>+AMR: 上电开机 + activate AMR + AMR-->>RCS: 主程序启动上报(20149) + AMR-->>RCS: 开机上报(20147) + AMR-->>RCS: 位姿上报(20020) + AMR-->>RCS: 上线上报(20150) + RCS->>AMR: 下发配置(10100) + end + + critical 执行任务 + RCS->>AMR: 作业指令(10010) + AMR-->>RCS: 任务开始(20011) + loop + AMR-->>RCS: (每当位置变化)位姿上报(20020) + RCS->>AMR: 更新任务路径(10010) + Note right of RCS: 只有当每次只下发小段路径时才需要动态更新路径 + end + AMR-->>RCS: 任务完成(20010和20011) + end + + critical 心跳上报 + AMR-->>RCS: 心跳(20100) + Note left of AMR: 没有其它上报报文时才发心跳 + end + + critical 心跳下发 + RCS->>AMR: 心跳(10100) + end + + critical 消息应答 + AMR-->>RCS: 除应答和心跳外的其它报文 + RCS->>AMR: 应答(10050,SeqNo为所应答的报文的SeqNo值) + + RCS->>AMR: 除应答和心跳外的其它报文 + AMR-->>RCS: 应答(20050, SeqNo为所应答的报文的SeqNo值) + end + + critical 异常上报 + AMR->>AMR: 检测到异常 + AMR-->>RCS: 异常上报(20250) + end + + deactivate AMR + deactivate RCS +``` + +## 常见问题 + +### 任务创建时候路径分段数是什么? + +指AMR作业指令(10010)中下发给AMR的路径段数,即Link字段(内容为数组)的元素的个数,其中每个元素为一段路径,一般每两个相邻站点生成一段路径,也可以只指定从当前起点到转弯位置作为一段路径。 + +比如: + +```json +{ + "id": 10010, + "content": { + "SeqNo": 4, + "OperationType": 0, + "StorageRacksNo": "R123", + "StartX": 7, + "StartY": 14, + "EndX": 1, + "EndY": 1, + "LinkCounts": 2, + "Link": [ + { + "X": 7, + "Y": 1, + "Speed": 1000 + }, + { + "X": 1, + "Y": 1, + "Speed": 1000 + } + ] + } +} +``` + +代表从(7, 14)出发,走到终点(1, 1)的路径,其中起点由(StartX, StartY)来表示,先走到转弯点(7, 1),再从走到终点(1, 1)。 + +上述路径也可以分成两步发送,比如可以这样发: + +```json +{ + "id": 10010, + "content": { + "SeqNo": 4, + "OperationType": 0, + "StorageRacksNo": "R123", + "StartX": 7, + "StartY": 14, + "EndX": 1, + "EndY": 1, + "LinkCounts": 1, + "Link": [ + { + "X": 7, + "Y": 1, + "Speed": 1000 + } + ] + } +} +``` + +```json +{ + "id": 10010, + "content": { + "SeqNo": 5, + "OperationType": 0, + "StorageRacksNo": "R123", + "StartX": 7, + "StartY": 1, + "EndX": 1, + "EndY": 1, + "LinkCounts": 1, + "Link": [ + { + "X": 1, + "Y": 1, + "Speed": 1000 + } + ] + } +} +``` + +上面两个命令报文将原有的从起点到终点的完整路径分成两个路径片段(注意SeqNo是不同的;一般是走到某个位置后再下发后续路段,以实现不需要提前规划完整路线,或者希望有更细粒度的交通管制控制的目的),AMR收到命令时会自动进行路径拼接。 + +### 电文应答的作用是什么? + +因为网络存在不确定性(数据丢失和到达顺序错误。实际项目中都遇到过),所以通过应答消息来实现应用协议层的可靠性,保证上报的报文被对方收到后,才能下发/上报后续报文。 + +### 二维码内容的具体格式是什么? + +外轮廓为5cmx5cm的QR码(码区域是3cmx3cm),目前有两种方式: + +- 定长码:场地中所有码的间距都一样,码值即坐标值(比如"1,1"代表坐标(1, 1)),贴码的时候需要严格按照顺序粘贴,不需要安装额外的地图服务,但是限制较大,目前不推荐。 +- 变长码:码值为数值(比如"000001"),粘贴时只需要保证方向和位置准确即可,不需要管码值。需要部署地图数据库,需要遍历学习过程。 + +### 如果AMR未接收RCS的心跳信息会怎么样? + +目前不严格检查RCS端往AMR发的心跳信息,但是建议RCS检查AMR上报的心跳(及其它报文),以确定AMR是否在线。 + +### 异常情况中"易变的"是什么意思? + +生命周期中的"易变的"(实际上应为"可变的"),指生命周期的属性可能发生改变,比如由"任务期间的"变成"持续的"。实际上这类异常极少。 + +### AMR初始化信息如何获取自己的位置信息?AMR是否需要初始化地图信息? + +首次部署需要自动遍历地图来将码值与位置进行自动绑定。AMR初始化时检测所处位置的二维码,通过码值来确定自己的位置和朝向。 + +### "异常情况"包括哪些? + +参考[请查看附件《AMR异常集》](assets/AMR异常集-20250417164721-ul9mqei.xlsx) diff --git a/package.json b/package.json index bc23c0d..e01d4a7 100644 --- a/package.json +++ b/package.json @@ -13,8 +13,7 @@ "format": "prettier --write src/" }, "dependencies": { - "@vueuse/core": "^13.2.0", - "fdir": "^6.4.6" + "@vueuse/core": "^13.2.0" }, "devDependencies": { "@ease-forge/runtime": "^1.0.12", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 190fec2..2acaeb1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11,9 +11,6 @@ importers: '@vueuse/core': specifier: ^13.2.0 version: 13.2.0(vue@3.5.14(typescript@5.8.3)) - fdir: - specifier: ^6.4.6 - version: 6.4.6(picomatch@4.0.2) devDependencies: '@ease-forge/runtime': specifier: ^1.0.12 @@ -117,6 +114,9 @@ importers: mitt: specifier: ^3.0.1 version: 3.0.1 + mqtt: + specifier: ^5.13.1 + version: 5.13.1 npm-run-all2: specifier: ^7.0.2 version: 7.0.2 @@ -314,6 +314,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/runtime@7.27.6': + resolution: {integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==, tarball: https://registry.npmmirror.com/@babel/runtime/-/runtime-7.27.6.tgz} + engines: {node: '>=6.9.0'} + '@babel/template@7.27.2': resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} engines: {node: '>=6.9.0'} @@ -345,151 +349,151 @@ packages: vue: ^3.2.0 '@esbuild/aix-ppc64@0.25.4': - resolution: {integrity: sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==} + resolution: {integrity: sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==, tarball: https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.4.tgz} engines: {node: '>=18'} cpu: [ppc64] os: [aix] '@esbuild/android-arm64@0.25.4': - resolution: {integrity: sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==} + resolution: {integrity: sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==, tarball: https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.25.4.tgz} engines: {node: '>=18'} cpu: [arm64] os: [android] '@esbuild/android-arm@0.25.4': - resolution: {integrity: sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==} + resolution: {integrity: sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==, tarball: https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.25.4.tgz} engines: {node: '>=18'} cpu: [arm] os: [android] '@esbuild/android-x64@0.25.4': - resolution: {integrity: sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==} + resolution: {integrity: sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==, tarball: https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.25.4.tgz} engines: {node: '>=18'} cpu: [x64] os: [android] '@esbuild/darwin-arm64@0.25.4': - resolution: {integrity: sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==} + resolution: {integrity: sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==, tarball: https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.4.tgz} engines: {node: '>=18'} cpu: [arm64] os: [darwin] '@esbuild/darwin-x64@0.25.4': - resolution: {integrity: sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==} + resolution: {integrity: sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==, tarball: https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.25.4.tgz} engines: {node: '>=18'} cpu: [x64] os: [darwin] '@esbuild/freebsd-arm64@0.25.4': - resolution: {integrity: sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==} + resolution: {integrity: sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==, tarball: https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.4.tgz} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] '@esbuild/freebsd-x64@0.25.4': - resolution: {integrity: sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==} + resolution: {integrity: sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==, tarball: https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.4.tgz} engines: {node: '>=18'} cpu: [x64] os: [freebsd] '@esbuild/linux-arm64@0.25.4': - resolution: {integrity: sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==} + resolution: {integrity: sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==, tarball: https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.25.4.tgz} engines: {node: '>=18'} cpu: [arm64] os: [linux] '@esbuild/linux-arm@0.25.4': - resolution: {integrity: sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==} + resolution: {integrity: sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==, tarball: https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.25.4.tgz} engines: {node: '>=18'} cpu: [arm] os: [linux] '@esbuild/linux-ia32@0.25.4': - resolution: {integrity: sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==} + resolution: {integrity: sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==, tarball: https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.25.4.tgz} engines: {node: '>=18'} cpu: [ia32] os: [linux] '@esbuild/linux-loong64@0.25.4': - resolution: {integrity: sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==} + resolution: {integrity: sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==, tarball: https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.25.4.tgz} engines: {node: '>=18'} cpu: [loong64] os: [linux] '@esbuild/linux-mips64el@0.25.4': - resolution: {integrity: sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==} + resolution: {integrity: sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==, tarball: https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.4.tgz} engines: {node: '>=18'} cpu: [mips64el] os: [linux] '@esbuild/linux-ppc64@0.25.4': - resolution: {integrity: sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==} + resolution: {integrity: sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==, tarball: https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.4.tgz} engines: {node: '>=18'} cpu: [ppc64] os: [linux] '@esbuild/linux-riscv64@0.25.4': - resolution: {integrity: sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==} + resolution: {integrity: sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==, tarball: https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.4.tgz} engines: {node: '>=18'} cpu: [riscv64] os: [linux] '@esbuild/linux-s390x@0.25.4': - resolution: {integrity: sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==} + resolution: {integrity: sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==, tarball: https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.25.4.tgz} engines: {node: '>=18'} cpu: [s390x] os: [linux] '@esbuild/linux-x64@0.25.4': - resolution: {integrity: sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==} + resolution: {integrity: sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==, tarball: https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.25.4.tgz} engines: {node: '>=18'} cpu: [x64] os: [linux] '@esbuild/netbsd-arm64@0.25.4': - resolution: {integrity: sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==} + resolution: {integrity: sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==, tarball: https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.4.tgz} engines: {node: '>=18'} cpu: [arm64] os: [netbsd] '@esbuild/netbsd-x64@0.25.4': - resolution: {integrity: sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==} + resolution: {integrity: sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==, tarball: https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.4.tgz} engines: {node: '>=18'} cpu: [x64] os: [netbsd] '@esbuild/openbsd-arm64@0.25.4': - resolution: {integrity: sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==} + resolution: {integrity: sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==, tarball: https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.4.tgz} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] '@esbuild/openbsd-x64@0.25.4': - resolution: {integrity: sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==} + resolution: {integrity: sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==, tarball: https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.4.tgz} engines: {node: '>=18'} cpu: [x64] os: [openbsd] '@esbuild/sunos-x64@0.25.4': - resolution: {integrity: sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==} + resolution: {integrity: sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==, tarball: https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.25.4.tgz} engines: {node: '>=18'} cpu: [x64] os: [sunos] '@esbuild/win32-arm64@0.25.4': - resolution: {integrity: sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==} + resolution: {integrity: sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==, tarball: https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.25.4.tgz} engines: {node: '>=18'} cpu: [arm64] os: [win32] '@esbuild/win32-ia32@0.25.4': - resolution: {integrity: sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==} + resolution: {integrity: sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==, tarball: https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.25.4.tgz} engines: {node: '>=18'} cpu: [ia32] os: [win32] '@esbuild/win32-x64@0.25.4': - resolution: {integrity: sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==} + resolution: {integrity: sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==, tarball: https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.25.4.tgz} engines: {node: '>=18'} cpu: [x64] os: [win32] @@ -578,102 +582,113 @@ packages: optional: true '@rollup/rollup-android-arm-eabi@4.41.0': - resolution: {integrity: sha512-KxN+zCjOYHGwCl4UCtSfZ6jrq/qi88JDUtiEFk8LELEHq2Egfc/FgW+jItZiOLRuQfb/3xJSgFuNPC9jzggX+A==} + resolution: {integrity: sha512-KxN+zCjOYHGwCl4UCtSfZ6jrq/qi88JDUtiEFk8LELEHq2Egfc/FgW+jItZiOLRuQfb/3xJSgFuNPC9jzggX+A==, tarball: https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.41.0.tgz} cpu: [arm] os: [android] '@rollup/rollup-android-arm64@4.41.0': - resolution: {integrity: sha512-yDvqx3lWlcugozax3DItKJI5j05B0d4Kvnjx+5mwiUpWramVvmAByYigMplaoAQ3pvdprGCTCE03eduqE/8mPQ==} + resolution: {integrity: sha512-yDvqx3lWlcugozax3DItKJI5j05B0d4Kvnjx+5mwiUpWramVvmAByYigMplaoAQ3pvdprGCTCE03eduqE/8mPQ==, tarball: https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.41.0.tgz} cpu: [arm64] os: [android] '@rollup/rollup-darwin-arm64@4.41.0': - resolution: {integrity: sha512-2KOU574vD3gzcPSjxO0eyR5iWlnxxtmW1F5CkNOHmMlueKNCQkxR6+ekgWyVnz6zaZihpUNkGxjsYrkTJKhkaw==} + resolution: {integrity: sha512-2KOU574vD3gzcPSjxO0eyR5iWlnxxtmW1F5CkNOHmMlueKNCQkxR6+ekgWyVnz6zaZihpUNkGxjsYrkTJKhkaw==, tarball: https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.41.0.tgz} cpu: [arm64] os: [darwin] '@rollup/rollup-darwin-x64@4.41.0': - resolution: {integrity: sha512-gE5ACNSxHcEZyP2BA9TuTakfZvULEW4YAOtxl/A/YDbIir/wPKukde0BNPlnBiP88ecaN4BJI2TtAd+HKuZPQQ==} + resolution: {integrity: sha512-gE5ACNSxHcEZyP2BA9TuTakfZvULEW4YAOtxl/A/YDbIir/wPKukde0BNPlnBiP88ecaN4BJI2TtAd+HKuZPQQ==, tarball: https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.41.0.tgz} cpu: [x64] os: [darwin] '@rollup/rollup-freebsd-arm64@4.41.0': - resolution: {integrity: sha512-GSxU6r5HnWij7FoSo7cZg3l5GPg4HFLkzsFFh0N/b16q5buW1NAWuCJ+HMtIdUEi6XF0qH+hN0TEd78laRp7Dg==} + resolution: {integrity: sha512-GSxU6r5HnWij7FoSo7cZg3l5GPg4HFLkzsFFh0N/b16q5buW1NAWuCJ+HMtIdUEi6XF0qH+hN0TEd78laRp7Dg==, tarball: https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.41.0.tgz} cpu: [arm64] os: [freebsd] '@rollup/rollup-freebsd-x64@4.41.0': - resolution: {integrity: sha512-KGiGKGDg8qLRyOWmk6IeiHJzsN/OYxO6nSbT0Vj4MwjS2XQy/5emsmtoqLAabqrohbgLWJ5GV3s/ljdrIr8Qjg==} + resolution: {integrity: sha512-KGiGKGDg8qLRyOWmk6IeiHJzsN/OYxO6nSbT0Vj4MwjS2XQy/5emsmtoqLAabqrohbgLWJ5GV3s/ljdrIr8Qjg==, tarball: https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.41.0.tgz} cpu: [x64] os: [freebsd] '@rollup/rollup-linux-arm-gnueabihf@4.41.0': - resolution: {integrity: sha512-46OzWeqEVQyX3N2/QdiU/CMXYDH/lSHpgfBkuhl3igpZiaB3ZIfSjKuOnybFVBQzjsLwkus2mjaESy8H41SzvA==} + resolution: {integrity: sha512-46OzWeqEVQyX3N2/QdiU/CMXYDH/lSHpgfBkuhl3igpZiaB3ZIfSjKuOnybFVBQzjsLwkus2mjaESy8H41SzvA==, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.41.0.tgz} cpu: [arm] os: [linux] + libc: [glibc] '@rollup/rollup-linux-arm-musleabihf@4.41.0': - resolution: {integrity: sha512-lfgW3KtQP4YauqdPpcUZHPcqQXmTmH4nYU0cplNeW583CMkAGjtImw4PKli09NFi2iQgChk4e9erkwlfYem6Lg==} + resolution: {integrity: sha512-lfgW3KtQP4YauqdPpcUZHPcqQXmTmH4nYU0cplNeW583CMkAGjtImw4PKli09NFi2iQgChk4e9erkwlfYem6Lg==, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.41.0.tgz} cpu: [arm] os: [linux] + libc: [musl] '@rollup/rollup-linux-arm64-gnu@4.41.0': - resolution: {integrity: sha512-nn8mEyzMbdEJzT7cwxgObuwviMx6kPRxzYiOl6o/o+ChQq23gfdlZcUNnt89lPhhz3BYsZ72rp0rxNqBSfqlqw==} + resolution: {integrity: sha512-nn8mEyzMbdEJzT7cwxgObuwviMx6kPRxzYiOl6o/o+ChQq23gfdlZcUNnt89lPhhz3BYsZ72rp0rxNqBSfqlqw==, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.41.0.tgz} cpu: [arm64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-arm64-musl@4.41.0': - resolution: {integrity: sha512-l+QK99je2zUKGd31Gh+45c4pGDAqZSuWQiuRFCdHYC2CSiO47qUWsCcenrI6p22hvHZrDje9QjwSMAFL3iwXwQ==} + resolution: {integrity: sha512-l+QK99je2zUKGd31Gh+45c4pGDAqZSuWQiuRFCdHYC2CSiO47qUWsCcenrI6p22hvHZrDje9QjwSMAFL3iwXwQ==, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.41.0.tgz} cpu: [arm64] os: [linux] + libc: [musl] '@rollup/rollup-linux-loongarch64-gnu@4.41.0': - resolution: {integrity: sha512-WbnJaxPv1gPIm6S8O/Wg+wfE/OzGSXlBMbOe4ie+zMyykMOeqmgD1BhPxZQuDqwUN+0T/xOFtL2RUWBspnZj3w==} + resolution: {integrity: sha512-WbnJaxPv1gPIm6S8O/Wg+wfE/OzGSXlBMbOe4ie+zMyykMOeqmgD1BhPxZQuDqwUN+0T/xOFtL2RUWBspnZj3w==, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.41.0.tgz} cpu: [loong64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-powerpc64le-gnu@4.41.0': - resolution: {integrity: sha512-eRDWR5t67/b2g8Q/S8XPi0YdbKcCs4WQ8vklNnUYLaSWF+Cbv2axZsp4jni6/j7eKvMLYCYdcsv8dcU+a6QNFg==} + resolution: {integrity: sha512-eRDWR5t67/b2g8Q/S8XPi0YdbKcCs4WQ8vklNnUYLaSWF+Cbv2axZsp4jni6/j7eKvMLYCYdcsv8dcU+a6QNFg==, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.41.0.tgz} cpu: [ppc64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-riscv64-gnu@4.41.0': - resolution: {integrity: sha512-TWrZb6GF5jsEKG7T1IHwlLMDRy2f3DPqYldmIhnA2DVqvvhY2Ai184vZGgahRrg8k9UBWoSlHv+suRfTN7Ua4A==} + resolution: {integrity: sha512-TWrZb6GF5jsEKG7T1IHwlLMDRy2f3DPqYldmIhnA2DVqvvhY2Ai184vZGgahRrg8k9UBWoSlHv+suRfTN7Ua4A==, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.41.0.tgz} cpu: [riscv64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-riscv64-musl@4.41.0': - resolution: {integrity: sha512-ieQljaZKuJpmWvd8gW87ZmSFwid6AxMDk5bhONJ57U8zT77zpZ/TPKkU9HpnnFrM4zsgr4kiGuzbIbZTGi7u9A==} + resolution: {integrity: sha512-ieQljaZKuJpmWvd8gW87ZmSFwid6AxMDk5bhONJ57U8zT77zpZ/TPKkU9HpnnFrM4zsgr4kiGuzbIbZTGi7u9A==, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.41.0.tgz} cpu: [riscv64] os: [linux] + libc: [musl] '@rollup/rollup-linux-s390x-gnu@4.41.0': - resolution: {integrity: sha512-/L3pW48SxrWAlVsKCN0dGLB2bi8Nv8pr5S5ocSM+S0XCn5RCVCXqi8GVtHFsOBBCSeR+u9brV2zno5+mg3S4Aw==} + resolution: {integrity: sha512-/L3pW48SxrWAlVsKCN0dGLB2bi8Nv8pr5S5ocSM+S0XCn5RCVCXqi8GVtHFsOBBCSeR+u9brV2zno5+mg3S4Aw==, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.41.0.tgz} cpu: [s390x] os: [linux] + libc: [glibc] '@rollup/rollup-linux-x64-gnu@4.41.0': - resolution: {integrity: sha512-XMLeKjyH8NsEDCRptf6LO8lJk23o9wvB+dJwcXMaH6ZQbbkHu2dbGIUindbMtRN6ux1xKi16iXWu6q9mu7gDhQ==} + resolution: {integrity: sha512-XMLeKjyH8NsEDCRptf6LO8lJk23o9wvB+dJwcXMaH6ZQbbkHu2dbGIUindbMtRN6ux1xKi16iXWu6q9mu7gDhQ==, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.41.0.tgz} cpu: [x64] os: [linux] + libc: [glibc] '@rollup/rollup-linux-x64-musl@4.41.0': - resolution: {integrity: sha512-m/P7LycHZTvSQeXhFmgmdqEiTqSV80zn6xHaQ1JSqwCtD1YGtwEK515Qmy9DcB2HK4dOUVypQxvhVSy06cJPEg==} + resolution: {integrity: sha512-m/P7LycHZTvSQeXhFmgmdqEiTqSV80zn6xHaQ1JSqwCtD1YGtwEK515Qmy9DcB2HK4dOUVypQxvhVSy06cJPEg==, tarball: https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.41.0.tgz} cpu: [x64] os: [linux] + libc: [musl] '@rollup/rollup-win32-arm64-msvc@4.41.0': - resolution: {integrity: sha512-4yodtcOrFHpbomJGVEqZ8fzD4kfBeCbpsUy5Pqk4RluXOdsWdjLnjhiKy2w3qzcASWd04fp52Xz7JKarVJ5BTg==} + resolution: {integrity: sha512-4yodtcOrFHpbomJGVEqZ8fzD4kfBeCbpsUy5Pqk4RluXOdsWdjLnjhiKy2w3qzcASWd04fp52Xz7JKarVJ5BTg==, tarball: https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.41.0.tgz} cpu: [arm64] os: [win32] '@rollup/rollup-win32-ia32-msvc@4.41.0': - resolution: {integrity: sha512-tmazCrAsKzdkXssEc65zIE1oC6xPHwfy9d5Ta25SRCDOZS+I6RypVVShWALNuU9bxIfGA0aqrmzlzoM5wO5SPQ==} + resolution: {integrity: sha512-tmazCrAsKzdkXssEc65zIE1oC6xPHwfy9d5Ta25SRCDOZS+I6RypVVShWALNuU9bxIfGA0aqrmzlzoM5wO5SPQ==, tarball: https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.41.0.tgz} cpu: [ia32] os: [win32] '@rollup/rollup-win32-x64-msvc@4.41.0': - resolution: {integrity: sha512-h1J+Yzjo/X+0EAvR2kIXJDuTuyT7drc+t2ALY0nIcGPbTatNOf0VWdhEA2Z4AAjv6X1NJV7SYo5oCTYRJhSlVA==} + resolution: {integrity: sha512-h1J+Yzjo/X+0EAvR2kIXJDuTuyT7drc+t2ALY0nIcGPbTatNOf0VWdhEA2Z4AAjv6X1NJV7SYo5oCTYRJhSlVA==, tarball: https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.41.0.tgz} cpu: [x64] os: [win32] @@ -685,7 +700,7 @@ packages: engines: {node: '>=18'} '@sxzz/popperjs-es@2.11.7': - resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==} + resolution: {integrity: sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==, tarball: https://registry.npmmirror.com/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz} '@tsconfig/node22@22.0.2': resolution: {integrity: sha512-Kmwj4u8sDRDrMYRoN9FDEcXD8UpBSaPQQ24Gz+Gamqfm7xxn+GBR7ge/Z7pK8OXNGyUzbSwJj+TH6B+DS/epyA==} @@ -711,6 +726,9 @@ packages: '@types/node@22.15.21': resolution: {integrity: sha512-EV/37Td6c+MgKAbkcLG6vqZ2zEYHD7bvSrzqqs2RIhbA6w3x+Dqz8MZM3sP6kGTeLrdoOgKZe+Xja7tUB2DNkQ==} + '@types/readable-stream@4.0.21': + resolution: {integrity: sha512-19eKVv9tugr03IgfXlA9UVUVRbW6IuqRO5B92Dl4a6pT7K8uaGrNS0GkxiZD0BOk6PLuXl5FhWl//eX/pzYdTQ==, tarball: https://registry.npmmirror.com/@types/readable-stream/-/readable-stream-4.0.21.tgz} + '@types/sizzle@2.3.9': resolution: {integrity: sha512-xzLEyKB50yqCUPUJkIsrVvoWNfFUbIZI+RspLWt8u+tIW/BetMBZtgV2LY/2o+tYH8dRvQ+eoPf3NdhQCcLE2w==} @@ -904,6 +922,10 @@ packages: '@webgpu/types@0.1.60': resolution: {integrity: sha512-8B/tdfRFKdrnejqmvq95ogp8tf52oZ51p3f4QD5m5Paey/qlX4Rhhy5Y8tgFMi7Ms70HzcMMw3EQjH/jdhTwlA==} + abort-controller@3.0.0: + resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==, tarball: https://registry.npmmirror.com/abort-controller/-/abort-controller-3.0.0.tgz} + engines: {node: '>=6.5'} + ag-grid-community@28.2.1: resolution: {integrity: sha512-DMZh/xD/FqYP17qJ1M92PolTYe+hrKuEaf+A4h13O6qn2x/xZQrTRGW5DgnQLR/uLMe1XXZQPKR3UKgAlKo69A==} @@ -917,7 +939,7 @@ packages: resolution: {integrity: sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==} ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, tarball: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz} engines: {node: '>=8'} ansi-regex@6.1.0: @@ -925,7 +947,7 @@ packages: engines: {node: '>=12'} ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, tarball: https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz} engines: {node: '>=8'} ansi-styles@6.2.1: @@ -944,12 +966,18 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, tarball: https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz} + bidi-js@1.0.3: resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==} birpc@2.3.0: resolution: {integrity: sha512-ijbtkn/F3Pvzb6jHypHRyve2QApOCZDR25D/VnkY2G/lBNcXCTsnsCxgY4k4PkVB7zfwzYbY3O9Lcqe3xufS5g==} + bl@6.1.0: + resolution: {integrity: sha512-ClDyJGQkc8ZtzdAAbAwBmhMSpwN/sC9HA8jxdYm6nVUbCfZbe2mgza4qh7AuEYyEPB/c4Kznf9s66bnsKMQDjw==, tarball: https://registry.npmmirror.com/bl/-/bl-6.1.0.tgz} + brace-expansion@2.0.1: resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} @@ -958,6 +986,12 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, tarball: https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz} + + buffer@6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==, tarball: https://registry.npmmirror.com/buffer/-/buffer-6.0.3.tgz} + bundle-name@4.1.0: resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} engines: {node: '>=18'} @@ -982,11 +1016,11 @@ packages: resolution: {integrity: sha512-+aFkvqhaAVr1gferNMuN8vkTSrWIFvzlMV9I2KBLCWS2WpZ2+UAkZjlMZmEuT+gcXTi6RrGQCkWq1/bDtGqhIA==} color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, tarball: https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz} engines: {node: '>=7.0.0'} color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, tarball: https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz} combined-stream@1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} @@ -995,9 +1029,16 @@ packages: commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + commist@3.2.0: + resolution: {integrity: sha512-4PIMoPniho+LqXmpS5d3NuGYncG6XWlkBSVGiWycL22dd42OYdUGil2CWuzklaJoNxyxUSpO4MKIBU94viWNAw==, tarball: https://registry.npmmirror.com/commist/-/commist-3.2.0.tgz} + commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + concat-stream@2.0.0: + resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==, tarball: https://registry.npmmirror.com/concat-stream/-/concat-stream-2.0.0.tgz} + engines: {'0': node >= 6.0} + convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} @@ -1073,7 +1114,7 @@ packages: vue: ^3.2.0 emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, tarball: https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz} emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} @@ -1083,7 +1124,7 @@ packages: engines: {node: '>=0.12'} errno@0.1.8: - resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==, tarball: https://registry.npmmirror.com/errno/-/errno-0.1.8.tgz} hasBin: true error-stack-parser-es@0.1.5: @@ -1120,12 +1161,24 @@ packages: estree-walker@2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + event-target-shim@5.0.1: + resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==, tarball: https://registry.npmmirror.com/event-target-shim/-/event-target-shim-5.0.1.tgz} + engines: {node: '>=6'} + + events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, tarball: https://registry.npmmirror.com/events/-/events-3.3.0.tgz} + engines: {node: '>=0.8.x'} + execa@9.5.3: resolution: {integrity: sha512-QFNnTvU3UjgWFy8Ef9iDHvIdcgZ344ebkwYx4/KLbR+CKQA4xBaHzv+iRpp86QfMHP8faFQLh8iOc57215y4Rg==} engines: {node: ^18.19.0 || >=20.5.0} - fdir@6.4.6: - resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==} + fast-unique-numbers@8.0.13: + resolution: {integrity: sha512-7OnTFAVPefgw2eBJ1xj2PGGR9FwYzSUso9decayHgCDX4sJkHLdcsYTytTg+tYv+wKF3U8gJuSBz2jJpQV4u/g==, tarball: https://registry.npmmirror.com/fast-unique-numbers/-/fast-unique-numbers-8.0.13.tgz} + engines: {node: '>=16.1.0'} + + fdir@6.4.4: + resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==} peerDependencies: picomatch: ^3 || ^4 peerDependenciesMeta: @@ -1173,7 +1226,7 @@ packages: engines: {node: '>=14.14'} fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, tarball: https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] @@ -1210,7 +1263,7 @@ packages: engines: {node: '>= 0.4'} graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, tarball: https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz} gsap@3.13.0: resolution: {integrity: sha512-QL7MJ2WMjm1PHWsoFrAQH/J8wUeqZvMtHO58qdekHpCfhvhSL4gSiz6vJf5EeMP0LOn3ZCprL2ki/gjED8ghVw==, tarball: https://registry.npmmirror.com/gsap/-/gsap-3.13.0.tgz} @@ -1231,6 +1284,9 @@ packages: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true + help-me@5.0.0: + resolution: {integrity: sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==, tarball: https://registry.npmmirror.com/help-me/-/help-me-5.0.0.tgz} + hookable@5.5.3: resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} @@ -1245,21 +1301,31 @@ packages: resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} engines: {node: '>=0.10.0'} + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, tarball: https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz} + image-size@0.5.5: - resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} + resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==, tarball: https://registry.npmmirror.com/image-size/-/image-size-0.5.5.tgz} engines: {node: '>=0.10.0'} hasBin: true immediate@3.0.6: resolution: {integrity: sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=} + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, tarball: https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz} + + ip-address@9.0.5: + resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==, tarball: https://registry.npmmirror.com/ip-address/-/ip-address-9.0.5.tgz} + engines: {node: '>= 12'} + is-docker@3.0.0: resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, tarball: https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz} engines: {node: '>=8'} is-inside-container@1.0.0: @@ -1304,9 +1370,15 @@ packages: jquery@3.7.1: resolution: {integrity: sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==} + js-sdsl@4.3.0: + resolution: {integrity: sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==, tarball: https://registry.npmmirror.com/js-sdsl/-/js-sdsl-4.3.0.tgz} + js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==, tarball: https://registry.npmmirror.com/jsbn/-/jsbn-1.1.0.tgz} + jsesc@3.1.0: resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} engines: {node: '>=6'} @@ -1355,6 +1427,9 @@ packages: lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, tarball: https://registry.npmmirror.com/lru-cache/-/lru-cache-10.4.3.tgz} + lru-cache@11.1.0: resolution: {integrity: sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==} engines: {node: 20 || >=22} @@ -1366,7 +1441,7 @@ packages: resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==, tarball: https://registry.npmmirror.com/make-dir/-/make-dir-2.1.0.tgz} engines: {node: '>=6'} make-dir@3.1.0: @@ -1396,7 +1471,7 @@ packages: engines: {node: '>= 0.6'} mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==, tarball: https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz} engines: {node: '>=4'} hasBin: true @@ -1408,6 +1483,9 @@ packages: resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} engines: {node: '>=16 || 14 >=14.17'} + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, tarball: https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz} + minipass@7.1.2: resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} engines: {node: '>=16 || 14 >=14.17'} @@ -1416,7 +1494,15 @@ packages: resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} monaco-editor@0.52.2: - resolution: {integrity: sha512-GEQWEZmfkOGLdd3XK8ryrfWz3AIP8YymVXiPHEdewrUq7mh0qrKrfHLNCXcbB6sTnMLnOZ3ztSiKcciFUkIJwQ==} + resolution: {integrity: sha512-GEQWEZmfkOGLdd3XK8ryrfWz3AIP8YymVXiPHEdewrUq7mh0qrKrfHLNCXcbB6sTnMLnOZ3ztSiKcciFUkIJwQ==, tarball: https://registry.npmmirror.com/monaco-editor/-/monaco-editor-0.52.2.tgz} + + mqtt-packet@9.0.2: + resolution: {integrity: sha512-MvIY0B8/qjq7bKxdN1eD+nrljoeaai+qjLJgfRn3TiMuz0pamsIWY2bFODPZMSNmabsLANXsLl4EMoWvlaTZWA==, tarball: https://registry.npmmirror.com/mqtt-packet/-/mqtt-packet-9.0.2.tgz} + + mqtt@5.13.1: + resolution: {integrity: sha512-g+4G+ma0UeL3Pgu1y1si2NHb4VLIEUCtF789WrG99lLG0XZyoab2EJoy58YgGSg/1yFdthDBH0+4llsZZD/vug==, tarball: https://registry.npmmirror.com/mqtt/-/mqtt-5.13.1.tgz} + engines: {node: '>=16.0.0'} + hasBin: true mrmime@2.0.1: resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} @@ -1439,7 +1525,7 @@ packages: hasBin: true needle@3.3.1: - resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==} + resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==, tarball: https://registry.npmmirror.com/needle/-/needle-3.3.1.tgz} engines: {node: '>= 4.4.x'} hasBin: true @@ -1462,6 +1548,9 @@ packages: resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==} engines: {node: '>=18'} + number-allocator@1.0.14: + resolution: {integrity: sha512-OrL44UTVAvkKdOdRQZIJpLkAdjXGTRda052sN4sO77bKEzYYqWKMBjQvrJFzqygI99gL6Z4u2xctPW1tB8ErvA==, tarball: https://registry.npmmirror.com/number-allocator/-/number-allocator-1.0.14.tgz} + numeral@2.0.6: resolution: {integrity: sha512-qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA==} @@ -1567,6 +1656,13 @@ packages: resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==} engines: {node: '>=18'} + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, tarball: https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz} + + process@0.11.10: + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==, tarball: https://registry.npmmirror.com/process/-/process-0.11.10.tgz} + engines: {node: '>= 0.6.0'} + proxy-from-env@1.1.0: resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} @@ -1581,6 +1677,14 @@ packages: resolution: {integrity: sha512-qpt8EwugBWDw2cgE2W+/3oxC+KTez2uSVR8JU9Q36TXPAGCaozfQUs59v4j4GFpWTaw0i6hAZSvOmu1J0uOEUg==} engines: {node: ^18.17.0 || >=20.5.0} + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, tarball: https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz} + engines: {node: '>= 6'} + + readable-stream@4.7.0: + resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==, tarball: https://registry.npmmirror.com/readable-stream/-/readable-stream-4.7.0.tgz} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + require-from-string@2.0.2: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} engines: {node: '>=0.10.0'} @@ -1608,6 +1712,9 @@ packages: resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==} engines: {node: '>=18'} + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, tarball: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz} + safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} @@ -1663,6 +1770,14 @@ packages: resolution: {integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==} engines: {node: '>=18'} + smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==, tarball: https://registry.npmmirror.com/smart-buffer/-/smart-buffer-4.2.0.tgz} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + + socks@2.8.5: + resolution: {integrity: sha512-iF+tNDQla22geJdTyJB1wM/qrX9DMRwWrciEPwWLPRWAUEM8sQiyxgckLxWT1f7+9VabJS0jTGGr4QgBuvi6Ww==, tarball: https://registry.npmmirror.com/socks/-/socks-2.8.5.tgz} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} + sortablejs@1.15.6: resolution: {integrity: sha512-aNfiuwMEpfBM/CN6LY0ibyhxPfPbyFeBTYJKCvzkJ2GkUpazIt3H+QIPAMHwqQ7tMKaHz1Qj+rJJCqljnf4p3A==} @@ -1671,7 +1786,7 @@ packages: engines: {node: '>=0.10.0'} source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, tarball: https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz} engines: {node: '>=0.10.0'} speakingurl@14.0.1: @@ -1681,19 +1796,29 @@ packages: split.js@1.6.5: resolution: {integrity: sha512-mPTnGCiS/RiuTNsVhCm9De9cCAUsrNFFviRbADdKiiV+Kk8HKp/0fWu7Kr8pi3/yBmsqLFHuXGT9UUZ+CNLwFw==} + split2@4.2.0: + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==, tarball: https://registry.npmmirror.com/split2/-/split2-4.2.0.tgz} + engines: {node: '>= 10.x'} + + sprintf-js@1.1.3: + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==, tarball: https://registry.npmmirror.com/sprintf-js/-/sprintf-js-1.1.3.tgz} + state-local@1.0.7: resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==} string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, tarball: https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz} engines: {node: '>=8'} string-width@5.1.2: resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} engines: {node: '>=12'} + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, tarball: https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz} + strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, tarball: https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz} engines: {node: '>=8'} strip-ansi@7.1.0: @@ -1752,6 +1877,9 @@ packages: tslib@2.8.1: resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + typedarray@0.0.6: + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==, tarball: https://registry.npmmirror.com/typedarray/-/typedarray-0.0.6.tgz} + typescript@5.8.3: resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} engines: {node: '>=14.17'} @@ -1774,6 +1902,9 @@ packages: peerDependencies: browserslist: '>= 4.21.0' + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, tarball: https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz} + vecks@3.9.2: resolution: {integrity: sha512-ubOo1KoOrPu3llYmlE4SH60JWcR+YDaObP+1Kzpbcl09dKIf0fbBweW8Xyg+6Nk2Rrnyit6Jxw9bx2LOYpMQMA==} @@ -1847,7 +1978,7 @@ packages: resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==} vue-demi@0.14.10: - resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==} + resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==, tarball: https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.10.tgz} engines: {node: '>=12'} hasBin: true peerDependencies: @@ -1906,14 +2037,35 @@ packages: engines: {node: ^18.17.0 || >=20.5.0} hasBin: true + worker-timers-broker@6.1.8: + resolution: {integrity: sha512-FUCJu9jlK3A8WqLTKXM9E6kAmI/dR1vAJ8dHYLMisLNB/n3GuaFIjJ7pn16ZcD1zCOf7P6H62lWIEBi+yz/zQQ==, tarball: https://registry.npmmirror.com/worker-timers-broker/-/worker-timers-broker-6.1.8.tgz} + + worker-timers-worker@7.0.71: + resolution: {integrity: sha512-ks/5YKwZsto1c2vmljroppOKCivB/ma97g9y77MAAz2TBBjPPgpoOiS1qYQKIgvGTr2QYPT3XhJWIB6Rj2MVPQ==, tarball: https://registry.npmmirror.com/worker-timers-worker/-/worker-timers-worker-7.0.71.tgz} + + worker-timers@7.1.8: + resolution: {integrity: sha512-R54psRKYVLuzff7c1OTFcq/4Hue5Vlz4bFtNEIarpSiCYhpifHU3aIQI29S84o1j87ePCYqbmEJPqwBTf+3sfw==, tarball: https://registry.npmmirror.com/worker-timers/-/worker-timers-7.1.8.tgz} + wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, tarball: https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz} engines: {node: '>=10'} wrap-ansi@8.1.0: resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} engines: {node: '>=12'} + ws@8.18.2: + resolution: {integrity: sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==, tarball: https://registry.npmmirror.com/ws/-/ws-8.18.2.tgz} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + yallist@3.1.1: resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} @@ -2096,6 +2248,8 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/runtime@7.27.6': {} + '@babel/template@7.27.2': dependencies: '@babel/code-frame': 7.27.1 @@ -2405,6 +2559,10 @@ snapshots: dependencies: undici-types: 6.21.0 + '@types/readable-stream@4.0.21': + dependencies: + '@types/node': 22.15.21 + '@types/sizzle@2.3.9': {} '@types/stats.js@0.17.4': {} @@ -2694,6 +2852,10 @@ snapshots: '@webgpu/types@0.1.60': {} + abort-controller@3.0.0: + dependencies: + event-target-shim: 5.0.1 + ag-grid-community@28.2.1: {} ag-grid-enterprise@28.2.1: {} @@ -2731,12 +2893,21 @@ snapshots: balanced-match@1.0.2: {} + base64-js@1.5.1: {} + bidi-js@1.0.3: dependencies: require-from-string: 2.0.2 birpc@2.3.0: {} + bl@6.1.0: + dependencies: + '@types/readable-stream': 4.0.21 + buffer: 6.0.3 + inherits: 2.0.4 + readable-stream: 4.7.0 + brace-expansion@2.0.1: dependencies: balanced-match: 1.0.2 @@ -2748,6 +2919,13 @@ snapshots: node-releases: 2.0.19 update-browserslist-db: 1.1.3(browserslist@4.24.5) + buffer-from@1.1.2: {} + + buffer@6.0.3: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + bundle-name@4.1.0: dependencies: run-applescript: 7.0.0 @@ -2782,8 +2960,17 @@ snapshots: commander@2.20.3: {} + commist@3.2.0: {} + commondir@1.0.1: {} + concat-stream@2.0.0: + dependencies: + buffer-from: 1.1.2 + inherits: 2.0.4 + readable-stream: 3.6.2 + typedarray: 0.0.6 + convert-source-map@2.0.0: {} copy-anything@2.0.6: @@ -2924,6 +3111,10 @@ snapshots: estree-walker@2.0.2: {} + event-target-shim@5.0.1: {} + + events@3.3.0: {} + execa@9.5.3: dependencies: '@sindresorhus/merge-streams': 4.0.0 @@ -2939,7 +3130,12 @@ snapshots: strip-final-newline: 4.0.0 yoctocolors: 2.1.1 - fdir@6.4.6(picomatch@4.0.2): + fast-unique-numbers@8.0.13: + dependencies: + '@babel/runtime': 7.27.6 + tslib: 2.8.1 + + fdir@6.4.4(picomatch@4.0.2): optionalDependencies: picomatch: 4.0.2 @@ -3045,6 +3241,8 @@ snapshots: he@1.2.0: {} + help-me@5.0.0: {} + hookable@5.5.3: {} hotkeys-js@3.13.10: {} @@ -3056,11 +3254,20 @@ snapshots: safer-buffer: 2.1.2 optional: true + ieee754@1.2.1: {} + image-size@0.5.5: optional: true immediate@3.0.6: {} + inherits@2.0.4: {} + + ip-address@9.0.5: + dependencies: + jsbn: 1.1.0 + sprintf-js: 1.1.3 + is-docker@3.0.0: {} is-fullwidth-code-point@3.0.0: {} @@ -3093,8 +3300,12 @@ snapshots: jquery@3.7.1: {} + js-sdsl@4.3.0: {} + js-tokens@4.0.0: {} + jsbn@1.1.0: {} + jsesc@3.1.0: {} json-parse-even-better-errors@4.0.0: {} @@ -3145,6 +3356,8 @@ snapshots: lodash@4.17.21: {} + lru-cache@10.4.3: {} + lru-cache@11.1.0: {} lru-cache@5.1.1: @@ -3190,12 +3403,43 @@ snapshots: dependencies: brace-expansion: 2.0.1 + minimist@1.2.8: {} + minipass@7.1.2: {} mitt@3.0.1: {} monaco-editor@0.52.2: {} + mqtt-packet@9.0.2: + dependencies: + bl: 6.1.0 + debug: 4.4.1 + process-nextick-args: 2.0.1 + transitivePeerDependencies: + - supports-color + + mqtt@5.13.1: + dependencies: + commist: 3.2.0 + concat-stream: 2.0.0 + debug: 4.4.1 + help-me: 5.0.0 + lru-cache: 10.4.3 + minimist: 1.2.8 + mqtt-packet: 9.0.2 + number-allocator: 1.0.14 + readable-stream: 4.7.0 + rfdc: 1.4.1 + socks: 2.8.5 + split2: 4.2.0 + worker-timers: 7.1.8 + ws: 8.18.2 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + mrmime@2.0.1: {} ms@2.1.3: {} @@ -3234,6 +3478,13 @@ snapshots: path-key: 4.0.0 unicorn-magic: 0.3.0 + number-allocator@1.0.14: + dependencies: + debug: 4.4.1 + js-sdsl: 4.3.0 + transitivePeerDependencies: + - supports-color + numeral@2.0.6: {} object-inspect@1.13.4: {} @@ -3312,6 +3563,10 @@ snapshots: dependencies: parse-ms: 4.0.0 + process-nextick-args@2.0.1: {} + + process@0.11.10: {} + proxy-from-env@1.1.0: {} prr@1.0.1: @@ -3326,6 +3581,20 @@ snapshots: json-parse-even-better-errors: 4.0.0 npm-normalize-package-bin: 4.0.0 + readable-stream@3.6.2: + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + + readable-stream@4.7.0: + dependencies: + abort-controller: 3.0.0 + buffer: 6.0.3 + events: 3.3.0 + process: 0.11.10 + string_decoder: 1.3.0 + require-from-string@2.0.2: {} rfdc@1.4.1: {} @@ -3373,6 +3642,8 @@ snapshots: run-applescript@7.0.0: {} + safe-buffer@5.2.1: {} + safer-buffer@2.1.2: optional: true @@ -3430,6 +3701,13 @@ snapshots: mrmime: 2.0.1 totalist: 3.0.1 + smart-buffer@4.2.0: {} + + socks@2.8.5: + dependencies: + ip-address: 9.0.5 + smart-buffer: 4.2.0 + sortablejs@1.15.6: {} source-map-js@1.2.1: {} @@ -3440,6 +3718,10 @@ snapshots: split.js@1.6.5: {} + split2@4.2.0: {} + + sprintf-js@1.1.3: {} + state-local@1.0.7: {} string-width@4.2.3: @@ -3454,6 +3736,10 @@ snapshots: emoji-regex: 9.2.2 strip-ansi: 7.1.0 + string_decoder@1.3.0: + dependencies: + safe-buffer: 5.2.1 + strip-ansi@6.0.1: dependencies: ansi-regex: 5.0.1 @@ -3488,7 +3774,7 @@ snapshots: tinyglobby@0.2.13: dependencies: - fdir: 6.4.6(picomatch@4.0.2) + fdir: 6.4.4(picomatch@4.0.2) picomatch: 4.0.2 totalist@3.0.1: {} @@ -3509,6 +3795,8 @@ snapshots: tslib@2.8.1: {} + typedarray@0.0.6: {} + typescript@5.8.3: {} undici-types@6.21.0: {} @@ -3523,6 +3811,8 @@ snapshots: escalade: 3.2.0 picocolors: 1.1.1 + util-deprecate@1.0.2: {} + vecks@3.9.2: {} vite-hot-client@2.0.4(vite@6.3.5(@types/node@22.15.21)(less@4.3.0)): @@ -3579,7 +3869,7 @@ snapshots: vite@6.3.5(@types/node@22.15.21)(less@4.3.0): dependencies: esbuild: 0.25.4 - fdir: 6.4.6(picomatch@4.0.2) + fdir: 6.4.4(picomatch@4.0.2) picomatch: 4.0.2 postcss: 8.5.3 rollup: 4.41.0 @@ -3646,6 +3936,25 @@ snapshots: dependencies: isexe: 3.1.1 + worker-timers-broker@6.1.8: + dependencies: + '@babel/runtime': 7.27.6 + fast-unique-numbers: 8.0.13 + tslib: 2.8.1 + worker-timers-worker: 7.0.71 + + worker-timers-worker@7.0.71: + dependencies: + '@babel/runtime': 7.27.6 + tslib: 2.8.1 + + worker-timers@7.1.8: + dependencies: + '@babel/runtime': 7.27.6 + tslib: 2.8.1 + worker-timers-broker: 6.1.8 + worker-timers-worker: 7.0.71 + wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 @@ -3658,6 +3967,8 @@ snapshots: string-width: 5.1.2 strip-ansi: 7.1.0 + ws@8.18.2: {} + yallist@3.1.1: {} yoctocolors@2.1.1: {} diff --git a/src/components/ShowDialogWrap.vue b/src/components/ShowDialogWrap.vue index f2241dc..e67f30a 100644 --- a/src/components/ShowDialogWrap.vue +++ b/src/components/ShowDialogWrap.vue @@ -53,9 +53,11 @@ export default { dialogResolve: { type: Function, required: true }, dialogReject: { type: Function, required: true }, - childCmp: { type: Object, default: undefined, required: false } + childCmp: { type: Object, default: undefined, required: false }, + onMounted: { type: Function, default: undefined, required: false }, }, mounted() { + this.$props.onMounted?.(this); }, data() { return { diff --git a/src/editor/ModelMain.vue b/src/editor/ModelMain.vue index 33df6f5..2040469 100644 --- a/src/editor/ModelMain.vue +++ b/src/editor/ModelMain.vue @@ -52,11 +52,11 @@ - + v-if="isModelOpen" :key="editorHash"> + - + @@ -103,13 +103,12 @@ + + + + \ No newline at end of file diff --git a/src/editor/menus/FileMenu.ts b/src/editor/menus/FileMenu.ts index b26e92a..4c47cb4 100644 --- a/src/editor/menus/FileMenu.ts +++ b/src/editor/menus/FileMenu.ts @@ -1,8 +1,55 @@ import { renderIcon, setQueryParam } from '@/utils/webutils.ts' import { defineMenu } from '@/runtime/DefineMenu.ts' import SvgCode from '@/components/icons/SvgCode' -import { nextTick } from 'vue' +import { createVNode, nextTick } from 'vue' import type Viewport from '@/core/engine/Viewport.ts' +import DataForm from '@/components/data-form/DataForm.vue' +import OpenProject from '../OpenProject.vue' +import { Request } from '@ease-forge/shared' + +function addProject(successful?: Function) { + const data = { + server: window.location.origin, + }; + system.showDialog(createVNode(DataForm, { + style: { + paddingRight: "12px", + }, + data: data, + formFields: [ + { + dataPath: 'projectUuid', label: '项目编号', input: 'Input', + inputProps: { + placeholder: '请输入项目唯一编号', + }, + }, + { + dataPath: 'projectLabel', label: '项目标题', input: 'Input', + inputProps: { + placeholder: '请输入项目标题', + }, + }, + ], + columnCount: 1, + labelWidth: "80px", + }), { + title: '创建项目', + width: 480, + height: 200, + showClose: true, + showMax: false, + showCancelButton: true, + showOkButton: true, + okButtonText: "创建", + cancelButtonText: "取消", + + }).then(() => { + Request.request.post("/api/workbench/LccModelManager@addProject", data).then(()=> { + system.msg("创建成功"); + successful?.(); + }) + }).finally(); +} export default defineMenu((menus) => { menus.insertChildren('file', @@ -12,25 +59,65 @@ export default defineMenu((menus) => { [ { name: 'open', label: '打开', icon: SvgCode.open, order: 1, tip: 'Ctrl+O', - click: async () => { - worldModel.state.isOpened = false - worldModel.state.isDraft = false - worldModel.state.catalog = [] - worldModel.state.catalogCode = '' - worldModel.state.stateManagerId = '' - setQueryParam('store', '') + click: async () => { + worldModel.state.isOpened = false + worldModel.state.isDraft = false + worldModel.state.catalog = [] + worldModel.state.catalogCode = '' + worldModel.state.stateManagerId = '' + setQueryParam('store', '') - system.showLoading() - try { - await nextTick() + system.showLoading() + try { + await nextTick() - const res = await import('@/example/example1') - worldModel.state.isDraft = false - await worldModel.loadWorldFromRemoting(res.default) + const res = await import('@/example/example1') + worldModel.state.isDraft = false + await worldModel.loadWorldFromRemoting(res.default) - } finally { - system.clearLoading() - } + } finally { + system.clearLoading() + } + }, + click2: async () => { + let dialog: any = null; + system.showDialog(createVNode(OpenProject, { + onCancel: () => dialog?.onClose(), + onOpen: async row => { + dialog?.onClose(); + const veryBigData = JSON.parse(row.otherData); + veryBigData.catalog = JSON.parse(row.directoryData); + veryBigData.items = []; + worldModel.state.isOpened = false + worldModel.state.isDraft = false + worldModel.state.catalog = [] + worldModel.state.catalogCode = '' + worldModel.state.stateManagerId = '' + setQueryParam('store', '') + system.showLoading() + try { + await nextTick() + worldModel.state.isDraft = false + await worldModel.loadWorldFromRemoting(veryBigData) + } finally { + system.clearLoading() + } + }, + onAdd: that => { + addProject(() => that.loadData()); + }, + }), { + title: '打开项目', + width: 1500, + height: 500, + showClose: true, + showMax: true, + showCancelButton: false, + showOkButton: false, + okButtonText: "创建", + cancelButtonText: "取消", + onMounted: d => dialog = d, + }).finally(); } }, { @@ -42,9 +129,9 @@ export default defineMenu((menus) => { } }, { - name: 'saveAs', label: '新建项目111', icon: renderIcon('ModelFile'), order: 3, + name: 'saveAs', label: '新建项目', icon: renderIcon('ModelFile'), order: 3, click: () => { - system.msg('新建项目111') + addProject(); } } ] diff --git a/src/modules/cl2/Cl23dObject.ts b/src/modules/cl2/Cl23dObject.ts index 91691f1..760b046 100644 --- a/src/modules/cl2/Cl23dObject.ts +++ b/src/modules/cl2/Cl23dObject.ts @@ -3,6 +3,7 @@ import {CSG} from "three-csg-ts"; //@ts-ignore import {mergeGeometries} from 'three/addons/utils/BufferGeometryUtils.js' import gsap from "gsap"; +// import mqtt from 'mqtt'; export default class Cl23dObject extends THREE.Object3D { @@ -326,6 +327,38 @@ export default class Cl23dObject extends THREE.Object3D { groupPillar.add(ptrPillarMesh) groupPillar.add(ptrForkMesh) this.add(groupPillar) + +// try { +// // 安全连接配置 +// const client = mqtt.connect('mqtt://127.0.0.1:9001', { +// path: '/mqtt', +// clientId: 'virtual-' + item.id, +// clean: true, +// connectTimeout: 10000, +// username: 'user', +// password: 'user', +// unixSocket: true, +// keepalive: 60, +// }); +// +// // 事件绑定 +// client.on('connect', () => { +// console.log('Connected'); +// client.subscribe(['sensor/#', 'alerts'], { qos: 0 }); +// client.publish('status', 'online', { retain: true }); +// }); +// +// client.on('message', (topic, msg) => { +// console.log(`[${topic}] ${msg}`); +// }); +// +// client.on('error', (error) => { +// console.error('Error:', error); +// }); +// } catch (e) { +// console.error(e) +// } + } animationShowFork(z: number): Promise { diff --git a/src/runtime/System.ts b/src/runtime/System.ts index dc6c16b..bae7321 100644 --- a/src/runtime/System.ts +++ b/src/runtime/System.ts @@ -3,10 +3,10 @@ import _ from 'lodash' import localforage from 'localforage' import JSON5 from 'json5' import hotkeys from 'hotkeys-js' -import { defineComponent, h, markRaw, nextTick, reactive, toRaw, unref, type App, createApp, type Component } from 'vue' -import { ElMessage, ElMessageBox, ElNotification } from 'element-plus' +import { type App, type Component, createApp, defineComponent, h, markRaw, nextTick, reactive, toRaw, unref } from 'vue' +import { ElMessage, ElMessageBox } from 'element-plus' import { QuestionFilled } from '@element-plus/icons-vue' -import { renderIcon, createShortUUID, setQueryParam, getQueryParams } from '@/utils/webutils.ts' +import { createShortUUID, getQueryParams, renderIcon, setQueryParam } from '@/utils/webutils.ts' import type { showDialogOption } from '@/SystemOption' import ShowDialogWrap from '@/components/ShowDialogWrap.vue' import LoadingDialog from '@/components/LoadingDialog.vue' @@ -290,4 +290,5 @@ export interface ShowDialogOption { showOkButton?: boolean cancelButtonText?: string okButtonText?: string + onMounted?: (dialog:any)=> void; }