@jnrs/lingshu-smart 2.2.43 → 2.2.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +10 -6
- package/README.md +1 -1
- package/dist/components/debug/ScriptRunner/script.d.ts +6 -0
- package/dist/components/debug/WsProxy/MappingGrid.vue.d.ts +2 -0
- package/dist/components/debug/WsProxy/proxy.d.ts +9 -5
- package/dist/components/index.js +4875 -4511
- package/dist/components/preview/index.vue.d.ts +412 -0
- package/dist/controller/EditorController.d.ts +12 -0
- package/dist/guards-aLOXCeCF.js +35 -0
- package/dist/index-Dsgrnpn0.js +1186 -0
- package/dist/index.js +28 -52
- package/dist/lingshu-smart/wsProxyConfig.json +33 -20
- package/dist/playground/ViewPageDemo.vue.d.ts +824 -0
- package/dist/stores/index.js +1 -1
- package/dist/stores/useAppStore.d.ts +1236 -0
- package/dist/stores/useDataStore.d.ts +1303 -28
- package/dist/types/components/config.types.d.ts +12 -0
- package/dist/types/models/operating.types.d.ts +14 -3
- package/dist/ui/components/StationSlot.d.ts +7 -1
- package/dist/ui/components/StationSlotGroup.d.ts +3 -0
- package/dist/ui/components/Wave.d.ts +30 -0
- package/dist/ui/models/CleaningMachine.d.ts +3 -0
- package/dist/ui/models/MachineTool.d.ts +4 -0
- package/dist/ui/models/MarkingMachine.d.ts +9 -0
- package/dist/ui/models/MaterialTrack.d.ts +1 -1
- package/dist/ui/models/ShuttleStation.d.ts +1 -1
- package/dist/useAppStore-CVyLAMtL.js +6125 -0
- package/package.json +4 -4
- package/dist/index-Cz1A_VVJ.js +0 -11452
- package/dist/useAppStore-Ca0a-fvj.js +0 -15829
|
@@ -78,6 +78,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
78
78
|
showShadow?: boolean | undefined;
|
|
79
79
|
showText?: boolean | undefined;
|
|
80
80
|
inFlow?: boolean | undefined;
|
|
81
|
+
resources?: {
|
|
82
|
+
name?: string | undefined;
|
|
83
|
+
resourceId?: string | undefined;
|
|
84
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
85
|
+
color?: string | undefined;
|
|
86
|
+
}[] | undefined;
|
|
81
87
|
operatingData?: unknown;
|
|
82
88
|
width: number;
|
|
83
89
|
height: number;
|
|
@@ -137,6 +143,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
137
143
|
[x: string]: unknown;
|
|
138
144
|
id: string;
|
|
139
145
|
};
|
|
146
|
+
} | {
|
|
147
|
+
operatingType: "resetAll";
|
|
148
|
+
rawData?: {
|
|
149
|
+
[x: string]: unknown;
|
|
150
|
+
id: string;
|
|
151
|
+
} | undefined;
|
|
140
152
|
} | {
|
|
141
153
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
142
154
|
light?: {
|
|
@@ -153,6 +165,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
153
165
|
isOut: boolean;
|
|
154
166
|
} | undefined;
|
|
155
167
|
stationRotatable?: boolean | undefined;
|
|
168
|
+
isWorking?: boolean | undefined;
|
|
156
169
|
operatingType?: "model" | undefined;
|
|
157
170
|
id: string;
|
|
158
171
|
rawData: {
|
|
@@ -311,6 +324,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
311
324
|
isIn: boolean;
|
|
312
325
|
isOut: boolean;
|
|
313
326
|
} | undefined;
|
|
327
|
+
isWorking?: boolean | undefined;
|
|
314
328
|
operatingType?: "model" | undefined;
|
|
315
329
|
id: string;
|
|
316
330
|
rawData: {
|
|
@@ -564,6 +578,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
564
578
|
showShadow?: boolean | undefined;
|
|
565
579
|
showText?: boolean | undefined;
|
|
566
580
|
inFlow?: boolean | undefined;
|
|
581
|
+
resources?: {
|
|
582
|
+
name?: string | undefined;
|
|
583
|
+
resourceId?: string | undefined;
|
|
584
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
585
|
+
color?: string | undefined;
|
|
586
|
+
}[] | undefined;
|
|
567
587
|
operatingData?: unknown;
|
|
568
588
|
width: number;
|
|
569
589
|
height: number;
|
|
@@ -623,6 +643,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
623
643
|
[x: string]: unknown;
|
|
624
644
|
id: string;
|
|
625
645
|
};
|
|
646
|
+
} | {
|
|
647
|
+
operatingType: "resetAll";
|
|
648
|
+
rawData?: {
|
|
649
|
+
[x: string]: unknown;
|
|
650
|
+
id: string;
|
|
651
|
+
} | undefined;
|
|
626
652
|
} | {
|
|
627
653
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
628
654
|
light?: {
|
|
@@ -639,6 +665,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
639
665
|
isOut: boolean;
|
|
640
666
|
} | undefined;
|
|
641
667
|
stationRotatable?: boolean | undefined;
|
|
668
|
+
isWorking?: boolean | undefined;
|
|
642
669
|
operatingType?: "model" | undefined;
|
|
643
670
|
id: string;
|
|
644
671
|
rawData: {
|
|
@@ -797,6 +824,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
797
824
|
isIn: boolean;
|
|
798
825
|
isOut: boolean;
|
|
799
826
|
} | undefined;
|
|
827
|
+
isWorking?: boolean | undefined;
|
|
800
828
|
operatingType?: "model" | undefined;
|
|
801
829
|
id: string;
|
|
802
830
|
rawData: {
|
|
@@ -1051,6 +1079,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
1051
1079
|
showShadow?: boolean | undefined;
|
|
1052
1080
|
showText?: boolean | undefined;
|
|
1053
1081
|
inFlow?: boolean | undefined;
|
|
1082
|
+
resources?: {
|
|
1083
|
+
name?: string | undefined;
|
|
1084
|
+
resourceId?: string | undefined;
|
|
1085
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
1086
|
+
color?: string | undefined;
|
|
1087
|
+
}[] | undefined;
|
|
1054
1088
|
operatingData?: unknown;
|
|
1055
1089
|
width: number;
|
|
1056
1090
|
height: number;
|
|
@@ -1113,6 +1147,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
1113
1147
|
[x: string]: unknown;
|
|
1114
1148
|
id: string;
|
|
1115
1149
|
};
|
|
1150
|
+
} | {
|
|
1151
|
+
operatingType: "resetAll";
|
|
1152
|
+
rawData?: {
|
|
1153
|
+
[x: string]: unknown;
|
|
1154
|
+
id: string;
|
|
1155
|
+
} | undefined;
|
|
1116
1156
|
} | {
|
|
1117
1157
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
1118
1158
|
light?: {
|
|
@@ -1129,6 +1169,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
1129
1169
|
isOut: boolean;
|
|
1130
1170
|
} | undefined;
|
|
1131
1171
|
stationRotatable?: boolean | undefined;
|
|
1172
|
+
isWorking?: boolean | undefined;
|
|
1132
1173
|
operatingType?: "model" | undefined;
|
|
1133
1174
|
id: string;
|
|
1134
1175
|
rawData: {
|
|
@@ -1287,6 +1328,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
1287
1328
|
isIn: boolean;
|
|
1288
1329
|
isOut: boolean;
|
|
1289
1330
|
} | undefined;
|
|
1331
|
+
isWorking?: boolean | undefined;
|
|
1290
1332
|
operatingType?: "model" | undefined;
|
|
1291
1333
|
id: string;
|
|
1292
1334
|
rawData: {
|
|
@@ -1541,6 +1583,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
1541
1583
|
showShadow?: boolean | undefined;
|
|
1542
1584
|
showText?: boolean | undefined;
|
|
1543
1585
|
inFlow?: boolean | undefined;
|
|
1586
|
+
resources?: {
|
|
1587
|
+
name?: string | undefined;
|
|
1588
|
+
resourceId?: string | undefined;
|
|
1589
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
1590
|
+
color?: string | undefined;
|
|
1591
|
+
}[] | undefined;
|
|
1544
1592
|
operatingData?: unknown;
|
|
1545
1593
|
width: number;
|
|
1546
1594
|
height: number;
|
|
@@ -1601,6 +1649,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
1601
1649
|
[x: string]: unknown;
|
|
1602
1650
|
id: string;
|
|
1603
1651
|
};
|
|
1652
|
+
} | {
|
|
1653
|
+
operatingType: "resetAll";
|
|
1654
|
+
rawData?: {
|
|
1655
|
+
[x: string]: unknown;
|
|
1656
|
+
id: string;
|
|
1657
|
+
} | undefined;
|
|
1604
1658
|
} | {
|
|
1605
1659
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
1606
1660
|
light?: {
|
|
@@ -1617,6 +1671,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
1617
1671
|
isOut: boolean;
|
|
1618
1672
|
} | undefined;
|
|
1619
1673
|
stationRotatable?: boolean | undefined;
|
|
1674
|
+
isWorking?: boolean | undefined;
|
|
1620
1675
|
operatingType?: "model" | undefined;
|
|
1621
1676
|
id: string;
|
|
1622
1677
|
rawData: {
|
|
@@ -1775,6 +1830,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
1775
1830
|
isIn: boolean;
|
|
1776
1831
|
isOut: boolean;
|
|
1777
1832
|
} | undefined;
|
|
1833
|
+
isWorking?: boolean | undefined;
|
|
1778
1834
|
operatingType?: "model" | undefined;
|
|
1779
1835
|
id: string;
|
|
1780
1836
|
rawData: {
|
|
@@ -2027,6 +2083,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
2027
2083
|
showShadow?: boolean | undefined;
|
|
2028
2084
|
showText?: boolean | undefined;
|
|
2029
2085
|
inFlow?: boolean | undefined;
|
|
2086
|
+
resources?: {
|
|
2087
|
+
name?: string | undefined;
|
|
2088
|
+
resourceId?: string | undefined;
|
|
2089
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
2090
|
+
color?: string | undefined;
|
|
2091
|
+
}[] | undefined;
|
|
2030
2092
|
operatingData?: unknown;
|
|
2031
2093
|
width: number;
|
|
2032
2094
|
height: number;
|
|
@@ -2086,6 +2148,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
2086
2148
|
[x: string]: unknown;
|
|
2087
2149
|
id: string;
|
|
2088
2150
|
};
|
|
2151
|
+
} | {
|
|
2152
|
+
operatingType: "resetAll";
|
|
2153
|
+
rawData?: {
|
|
2154
|
+
[x: string]: unknown;
|
|
2155
|
+
id: string;
|
|
2156
|
+
} | undefined;
|
|
2089
2157
|
} | {
|
|
2090
2158
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
2091
2159
|
light?: {
|
|
@@ -2102,6 +2170,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
2102
2170
|
isOut: boolean;
|
|
2103
2171
|
} | undefined;
|
|
2104
2172
|
stationRotatable?: boolean | undefined;
|
|
2173
|
+
isWorking?: boolean | undefined;
|
|
2105
2174
|
operatingType?: "model" | undefined;
|
|
2106
2175
|
id: string;
|
|
2107
2176
|
rawData: {
|
|
@@ -2260,6 +2329,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
2260
2329
|
isIn: boolean;
|
|
2261
2330
|
isOut: boolean;
|
|
2262
2331
|
} | undefined;
|
|
2332
|
+
isWorking?: boolean | undefined;
|
|
2263
2333
|
operatingType?: "model" | undefined;
|
|
2264
2334
|
id: string;
|
|
2265
2335
|
rawData: {
|
|
@@ -2512,6 +2582,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
2512
2582
|
showShadow?: boolean | undefined;
|
|
2513
2583
|
showText?: boolean | undefined;
|
|
2514
2584
|
inFlow?: boolean | undefined;
|
|
2585
|
+
resources?: {
|
|
2586
|
+
name?: string | undefined;
|
|
2587
|
+
resourceId?: string | undefined;
|
|
2588
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
2589
|
+
color?: string | undefined;
|
|
2590
|
+
}[] | undefined;
|
|
2515
2591
|
operatingData?: unknown;
|
|
2516
2592
|
width: number;
|
|
2517
2593
|
height: number;
|
|
@@ -2571,6 +2647,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
2571
2647
|
[x: string]: unknown;
|
|
2572
2648
|
id: string;
|
|
2573
2649
|
};
|
|
2650
|
+
} | {
|
|
2651
|
+
operatingType: "resetAll";
|
|
2652
|
+
rawData?: {
|
|
2653
|
+
[x: string]: unknown;
|
|
2654
|
+
id: string;
|
|
2655
|
+
} | undefined;
|
|
2574
2656
|
} | {
|
|
2575
2657
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
2576
2658
|
light?: {
|
|
@@ -2587,6 +2669,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
2587
2669
|
isOut: boolean;
|
|
2588
2670
|
} | undefined;
|
|
2589
2671
|
stationRotatable?: boolean | undefined;
|
|
2672
|
+
isWorking?: boolean | undefined;
|
|
2590
2673
|
operatingType?: "model" | undefined;
|
|
2591
2674
|
id: string;
|
|
2592
2675
|
rawData: {
|
|
@@ -2745,6 +2828,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
2745
2828
|
isIn: boolean;
|
|
2746
2829
|
isOut: boolean;
|
|
2747
2830
|
} | undefined;
|
|
2831
|
+
isWorking?: boolean | undefined;
|
|
2748
2832
|
operatingType?: "model" | undefined;
|
|
2749
2833
|
id: string;
|
|
2750
2834
|
rawData: {
|
|
@@ -3008,6 +3092,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
3008
3092
|
showShadow?: boolean | undefined;
|
|
3009
3093
|
showText?: boolean | undefined;
|
|
3010
3094
|
inFlow?: boolean | undefined;
|
|
3095
|
+
resources?: {
|
|
3096
|
+
name?: string | undefined;
|
|
3097
|
+
resourceId?: string | undefined;
|
|
3098
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
3099
|
+
color?: string | undefined;
|
|
3100
|
+
}[] | undefined;
|
|
3011
3101
|
operatingData?: unknown;
|
|
3012
3102
|
width: number;
|
|
3013
3103
|
height: number;
|
|
@@ -3059,6 +3149,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
3059
3149
|
showShadow?: boolean | undefined;
|
|
3060
3150
|
showText?: boolean | undefined;
|
|
3061
3151
|
inFlow?: boolean | undefined;
|
|
3152
|
+
resources?: {
|
|
3153
|
+
name?: string | undefined;
|
|
3154
|
+
resourceId?: string | undefined;
|
|
3155
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
3156
|
+
color?: string | undefined;
|
|
3157
|
+
}[] | undefined;
|
|
3062
3158
|
operatingData?: unknown;
|
|
3063
3159
|
width: number;
|
|
3064
3160
|
height: number;
|
|
@@ -3118,6 +3214,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
3118
3214
|
[x: string]: unknown;
|
|
3119
3215
|
id: string;
|
|
3120
3216
|
};
|
|
3217
|
+
} | {
|
|
3218
|
+
operatingType: "resetAll";
|
|
3219
|
+
rawData?: {
|
|
3220
|
+
[x: string]: unknown;
|
|
3221
|
+
id: string;
|
|
3222
|
+
} | undefined;
|
|
3121
3223
|
} | {
|
|
3122
3224
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
3123
3225
|
light?: {
|
|
@@ -3134,6 +3236,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
3134
3236
|
isOut: boolean;
|
|
3135
3237
|
} | undefined;
|
|
3136
3238
|
stationRotatable?: boolean | undefined;
|
|
3239
|
+
isWorking?: boolean | undefined;
|
|
3137
3240
|
operatingType?: "model" | undefined;
|
|
3138
3241
|
id: string;
|
|
3139
3242
|
rawData: {
|
|
@@ -3292,6 +3395,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
3292
3395
|
isIn: boolean;
|
|
3293
3396
|
isOut: boolean;
|
|
3294
3397
|
} | undefined;
|
|
3398
|
+
isWorking?: boolean | undefined;
|
|
3295
3399
|
operatingType?: "model" | undefined;
|
|
3296
3400
|
id: string;
|
|
3297
3401
|
rawData: {
|
|
@@ -3555,6 +3659,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
3555
3659
|
showShadow?: boolean | undefined;
|
|
3556
3660
|
showText?: boolean | undefined;
|
|
3557
3661
|
inFlow?: boolean | undefined;
|
|
3662
|
+
resources?: {
|
|
3663
|
+
name?: string | undefined;
|
|
3664
|
+
resourceId?: string | undefined;
|
|
3665
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
3666
|
+
color?: string | undefined;
|
|
3667
|
+
}[] | undefined;
|
|
3558
3668
|
operatingData?: unknown;
|
|
3559
3669
|
width: number;
|
|
3560
3670
|
height: number;
|
|
@@ -3606,6 +3716,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
3606
3716
|
showShadow?: boolean | undefined;
|
|
3607
3717
|
showText?: boolean | undefined;
|
|
3608
3718
|
inFlow?: boolean | undefined;
|
|
3719
|
+
resources?: {
|
|
3720
|
+
name?: string | undefined;
|
|
3721
|
+
resourceId?: string | undefined;
|
|
3722
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
3723
|
+
color?: string | undefined;
|
|
3724
|
+
}[] | undefined;
|
|
3609
3725
|
operatingData?: unknown;
|
|
3610
3726
|
width: number;
|
|
3611
3727
|
height: number;
|
|
@@ -3665,6 +3781,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
3665
3781
|
[x: string]: unknown;
|
|
3666
3782
|
id: string;
|
|
3667
3783
|
};
|
|
3784
|
+
} | {
|
|
3785
|
+
operatingType: "resetAll";
|
|
3786
|
+
rawData?: {
|
|
3787
|
+
[x: string]: unknown;
|
|
3788
|
+
id: string;
|
|
3789
|
+
} | undefined;
|
|
3668
3790
|
} | {
|
|
3669
3791
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
3670
3792
|
light?: {
|
|
@@ -3681,6 +3803,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
3681
3803
|
isOut: boolean;
|
|
3682
3804
|
} | undefined;
|
|
3683
3805
|
stationRotatable?: boolean | undefined;
|
|
3806
|
+
isWorking?: boolean | undefined;
|
|
3684
3807
|
operatingType?: "model" | undefined;
|
|
3685
3808
|
id: string;
|
|
3686
3809
|
rawData: {
|
|
@@ -3839,6 +3962,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
3839
3962
|
isIn: boolean;
|
|
3840
3963
|
isOut: boolean;
|
|
3841
3964
|
} | undefined;
|
|
3965
|
+
isWorking?: boolean | undefined;
|
|
3842
3966
|
operatingType?: "model" | undefined;
|
|
3843
3967
|
id: string;
|
|
3844
3968
|
rawData: {
|
|
@@ -4100,6 +4224,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
4100
4224
|
showShadow?: boolean | undefined;
|
|
4101
4225
|
showText?: boolean | undefined;
|
|
4102
4226
|
inFlow?: boolean | undefined;
|
|
4227
|
+
resources?: {
|
|
4228
|
+
name?: string | undefined;
|
|
4229
|
+
resourceId?: string | undefined;
|
|
4230
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
4231
|
+
color?: string | undefined;
|
|
4232
|
+
}[] | undefined;
|
|
4103
4233
|
operatingData?: unknown;
|
|
4104
4234
|
width: number;
|
|
4105
4235
|
height: number;
|
|
@@ -4151,6 +4281,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
4151
4281
|
showShadow?: boolean | undefined;
|
|
4152
4282
|
showText?: boolean | undefined;
|
|
4153
4283
|
inFlow?: boolean | undefined;
|
|
4284
|
+
resources?: {
|
|
4285
|
+
name?: string | undefined;
|
|
4286
|
+
resourceId?: string | undefined;
|
|
4287
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
4288
|
+
color?: string | undefined;
|
|
4289
|
+
}[] | undefined;
|
|
4154
4290
|
operatingData?: unknown;
|
|
4155
4291
|
width: number;
|
|
4156
4292
|
height: number;
|
|
@@ -4210,6 +4346,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
4210
4346
|
[x: string]: unknown;
|
|
4211
4347
|
id: string;
|
|
4212
4348
|
};
|
|
4349
|
+
} | {
|
|
4350
|
+
operatingType: "resetAll";
|
|
4351
|
+
rawData?: {
|
|
4352
|
+
[x: string]: unknown;
|
|
4353
|
+
id: string;
|
|
4354
|
+
} | undefined;
|
|
4213
4355
|
} | {
|
|
4214
4356
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
4215
4357
|
light?: {
|
|
@@ -4226,6 +4368,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
4226
4368
|
isOut: boolean;
|
|
4227
4369
|
} | undefined;
|
|
4228
4370
|
stationRotatable?: boolean | undefined;
|
|
4371
|
+
isWorking?: boolean | undefined;
|
|
4229
4372
|
operatingType?: "model" | undefined;
|
|
4230
4373
|
id: string;
|
|
4231
4374
|
rawData: {
|
|
@@ -4384,6 +4527,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
4384
4527
|
isIn: boolean;
|
|
4385
4528
|
isOut: boolean;
|
|
4386
4529
|
} | undefined;
|
|
4530
|
+
isWorking?: boolean | undefined;
|
|
4387
4531
|
operatingType?: "model" | undefined;
|
|
4388
4532
|
id: string;
|
|
4389
4533
|
rawData: {
|
|
@@ -4646,6 +4790,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
4646
4790
|
[x: string]: unknown;
|
|
4647
4791
|
id: string;
|
|
4648
4792
|
};
|
|
4793
|
+
} | {
|
|
4794
|
+
operatingType: "resetAll";
|
|
4795
|
+
rawData?: {
|
|
4796
|
+
[x: string]: unknown;
|
|
4797
|
+
id: string;
|
|
4798
|
+
} | undefined;
|
|
4649
4799
|
} | {
|
|
4650
4800
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
4651
4801
|
light?: {
|
|
@@ -4662,6 +4812,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
4662
4812
|
isOut: boolean;
|
|
4663
4813
|
} | undefined;
|
|
4664
4814
|
stationRotatable?: boolean | undefined;
|
|
4815
|
+
isWorking?: boolean | undefined;
|
|
4665
4816
|
operatingType?: "model" | undefined;
|
|
4666
4817
|
id: string;
|
|
4667
4818
|
rawData: {
|
|
@@ -4820,6 +4971,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
4820
4971
|
isIn: boolean;
|
|
4821
4972
|
isOut: boolean;
|
|
4822
4973
|
} | undefined;
|
|
4974
|
+
isWorking?: boolean | undefined;
|
|
4823
4975
|
operatingType?: "model" | undefined;
|
|
4824
4976
|
id: string;
|
|
4825
4977
|
rawData: {
|
|
@@ -5080,6 +5232,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
5080
5232
|
showShadow?: boolean | undefined;
|
|
5081
5233
|
showText?: boolean | undefined;
|
|
5082
5234
|
inFlow?: boolean | undefined;
|
|
5235
|
+
resources?: {
|
|
5236
|
+
name?: string | undefined;
|
|
5237
|
+
resourceId?: string | undefined;
|
|
5238
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
5239
|
+
color?: string | undefined;
|
|
5240
|
+
}[] | undefined;
|
|
5083
5241
|
operatingData?: unknown;
|
|
5084
5242
|
width: number;
|
|
5085
5243
|
height: number;
|
|
@@ -5131,6 +5289,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
5131
5289
|
showShadow?: boolean | undefined;
|
|
5132
5290
|
showText?: boolean | undefined;
|
|
5133
5291
|
inFlow?: boolean | undefined;
|
|
5292
|
+
resources?: {
|
|
5293
|
+
name?: string | undefined;
|
|
5294
|
+
resourceId?: string | undefined;
|
|
5295
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
5296
|
+
color?: string | undefined;
|
|
5297
|
+
}[] | undefined;
|
|
5134
5298
|
operatingData?: unknown;
|
|
5135
5299
|
width: number;
|
|
5136
5300
|
height: number;
|
|
@@ -5190,6 +5354,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
5190
5354
|
[x: string]: unknown;
|
|
5191
5355
|
id: string;
|
|
5192
5356
|
};
|
|
5357
|
+
} | {
|
|
5358
|
+
operatingType: "resetAll";
|
|
5359
|
+
rawData?: {
|
|
5360
|
+
[x: string]: unknown;
|
|
5361
|
+
id: string;
|
|
5362
|
+
} | undefined;
|
|
5193
5363
|
} | {
|
|
5194
5364
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
5195
5365
|
light?: {
|
|
@@ -5206,6 +5376,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
5206
5376
|
isOut: boolean;
|
|
5207
5377
|
} | undefined;
|
|
5208
5378
|
stationRotatable?: boolean | undefined;
|
|
5379
|
+
isWorking?: boolean | undefined;
|
|
5209
5380
|
operatingType?: "model" | undefined;
|
|
5210
5381
|
id: string;
|
|
5211
5382
|
rawData: {
|
|
@@ -5364,6 +5535,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
5364
5535
|
isIn: boolean;
|
|
5365
5536
|
isOut: boolean;
|
|
5366
5537
|
} | undefined;
|
|
5538
|
+
isWorking?: boolean | undefined;
|
|
5367
5539
|
operatingType?: "model" | undefined;
|
|
5368
5540
|
id: string;
|
|
5369
5541
|
rawData: {
|
|
@@ -5625,6 +5797,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
5625
5797
|
showShadow?: boolean | undefined;
|
|
5626
5798
|
showText?: boolean | undefined;
|
|
5627
5799
|
inFlow?: boolean | undefined;
|
|
5800
|
+
resources?: {
|
|
5801
|
+
name?: string | undefined;
|
|
5802
|
+
resourceId?: string | undefined;
|
|
5803
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
5804
|
+
color?: string | undefined;
|
|
5805
|
+
}[] | undefined;
|
|
5628
5806
|
operatingData?: unknown;
|
|
5629
5807
|
width: number;
|
|
5630
5808
|
height: number;
|
|
@@ -5676,6 +5854,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
5676
5854
|
showShadow?: boolean | undefined;
|
|
5677
5855
|
showText?: boolean | undefined;
|
|
5678
5856
|
inFlow?: boolean | undefined;
|
|
5857
|
+
resources?: {
|
|
5858
|
+
name?: string | undefined;
|
|
5859
|
+
resourceId?: string | undefined;
|
|
5860
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
5861
|
+
color?: string | undefined;
|
|
5862
|
+
}[] | undefined;
|
|
5679
5863
|
operatingData?: unknown;
|
|
5680
5864
|
width: number;
|
|
5681
5865
|
height: number;
|
|
@@ -5736,6 +5920,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
5736
5920
|
[x: string]: unknown;
|
|
5737
5921
|
id: string;
|
|
5738
5922
|
};
|
|
5923
|
+
} | {
|
|
5924
|
+
operatingType: "resetAll";
|
|
5925
|
+
rawData?: {
|
|
5926
|
+
[x: string]: unknown;
|
|
5927
|
+
id: string;
|
|
5928
|
+
} | undefined;
|
|
5739
5929
|
} | {
|
|
5740
5930
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
5741
5931
|
light?: {
|
|
@@ -5752,6 +5942,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
5752
5942
|
isOut: boolean;
|
|
5753
5943
|
} | undefined;
|
|
5754
5944
|
stationRotatable?: boolean | undefined;
|
|
5945
|
+
isWorking?: boolean | undefined;
|
|
5755
5946
|
operatingType?: "model" | undefined;
|
|
5756
5947
|
id: string;
|
|
5757
5948
|
rawData: {
|
|
@@ -5910,6 +6101,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
5910
6101
|
isIn: boolean;
|
|
5911
6102
|
isOut: boolean;
|
|
5912
6103
|
} | undefined;
|
|
6104
|
+
isWorking?: boolean | undefined;
|
|
5913
6105
|
operatingType?: "model" | undefined;
|
|
5914
6106
|
id: string;
|
|
5915
6107
|
rawData: {
|
|
@@ -6164,6 +6356,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
6164
6356
|
showShadow?: boolean | undefined;
|
|
6165
6357
|
showText?: boolean | undefined;
|
|
6166
6358
|
inFlow?: boolean | undefined;
|
|
6359
|
+
resources?: {
|
|
6360
|
+
name?: string | undefined;
|
|
6361
|
+
resourceId?: string | undefined;
|
|
6362
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
6363
|
+
color?: string | undefined;
|
|
6364
|
+
}[] | undefined;
|
|
6167
6365
|
operatingData?: unknown;
|
|
6168
6366
|
width: number;
|
|
6169
6367
|
height: number;
|
|
@@ -6223,6 +6421,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
6223
6421
|
[x: string]: unknown;
|
|
6224
6422
|
id: string;
|
|
6225
6423
|
};
|
|
6424
|
+
} | {
|
|
6425
|
+
operatingType: "resetAll";
|
|
6426
|
+
rawData?: {
|
|
6427
|
+
[x: string]: unknown;
|
|
6428
|
+
id: string;
|
|
6429
|
+
} | undefined;
|
|
6226
6430
|
} | {
|
|
6227
6431
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
6228
6432
|
light?: {
|
|
@@ -6239,6 +6443,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
6239
6443
|
isOut: boolean;
|
|
6240
6444
|
} | undefined;
|
|
6241
6445
|
stationRotatable?: boolean | undefined;
|
|
6446
|
+
isWorking?: boolean | undefined;
|
|
6242
6447
|
operatingType?: "model" | undefined;
|
|
6243
6448
|
id: string;
|
|
6244
6449
|
rawData: {
|
|
@@ -6397,6 +6602,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
6397
6602
|
isIn: boolean;
|
|
6398
6603
|
isOut: boolean;
|
|
6399
6604
|
} | undefined;
|
|
6605
|
+
isWorking?: boolean | undefined;
|
|
6400
6606
|
operatingType?: "model" | undefined;
|
|
6401
6607
|
id: string;
|
|
6402
6608
|
rawData: {
|
|
@@ -6678,6 +6884,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
6678
6884
|
showShadow?: boolean | undefined;
|
|
6679
6885
|
showText?: boolean | undefined;
|
|
6680
6886
|
inFlow?: boolean | undefined;
|
|
6887
|
+
resources?: {
|
|
6888
|
+
name?: string | undefined;
|
|
6889
|
+
resourceId?: string | undefined;
|
|
6890
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
6891
|
+
color?: string | undefined;
|
|
6892
|
+
}[] | undefined;
|
|
6681
6893
|
operatingData?: unknown;
|
|
6682
6894
|
width: number;
|
|
6683
6895
|
height: number;
|
|
@@ -6737,6 +6949,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
6737
6949
|
[x: string]: unknown;
|
|
6738
6950
|
id: string;
|
|
6739
6951
|
};
|
|
6952
|
+
} | {
|
|
6953
|
+
operatingType: "resetAll";
|
|
6954
|
+
rawData?: {
|
|
6955
|
+
[x: string]: unknown;
|
|
6956
|
+
id: string;
|
|
6957
|
+
} | undefined;
|
|
6740
6958
|
} | {
|
|
6741
6959
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
6742
6960
|
light?: {
|
|
@@ -6753,6 +6971,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
6753
6971
|
isOut: boolean;
|
|
6754
6972
|
} | undefined;
|
|
6755
6973
|
stationRotatable?: boolean | undefined;
|
|
6974
|
+
isWorking?: boolean | undefined;
|
|
6756
6975
|
operatingType?: "model" | undefined;
|
|
6757
6976
|
id: string;
|
|
6758
6977
|
rawData: {
|
|
@@ -6911,6 +7130,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
6911
7130
|
isIn: boolean;
|
|
6912
7131
|
isOut: boolean;
|
|
6913
7132
|
} | undefined;
|
|
7133
|
+
isWorking?: boolean | undefined;
|
|
6914
7134
|
operatingType?: "model" | undefined;
|
|
6915
7135
|
id: string;
|
|
6916
7136
|
rawData: {
|
|
@@ -7164,6 +7384,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
7164
7384
|
showShadow?: boolean | undefined;
|
|
7165
7385
|
showText?: boolean | undefined;
|
|
7166
7386
|
inFlow?: boolean | undefined;
|
|
7387
|
+
resources?: {
|
|
7388
|
+
name?: string | undefined;
|
|
7389
|
+
resourceId?: string | undefined;
|
|
7390
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
7391
|
+
color?: string | undefined;
|
|
7392
|
+
}[] | undefined;
|
|
7167
7393
|
operatingData?: unknown;
|
|
7168
7394
|
width: number;
|
|
7169
7395
|
height: number;
|
|
@@ -7223,6 +7449,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
7223
7449
|
[x: string]: unknown;
|
|
7224
7450
|
id: string;
|
|
7225
7451
|
};
|
|
7452
|
+
} | {
|
|
7453
|
+
operatingType: "resetAll";
|
|
7454
|
+
rawData?: {
|
|
7455
|
+
[x: string]: unknown;
|
|
7456
|
+
id: string;
|
|
7457
|
+
} | undefined;
|
|
7226
7458
|
} | {
|
|
7227
7459
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
7228
7460
|
light?: {
|
|
@@ -7239,6 +7471,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
7239
7471
|
isOut: boolean;
|
|
7240
7472
|
} | undefined;
|
|
7241
7473
|
stationRotatable?: boolean | undefined;
|
|
7474
|
+
isWorking?: boolean | undefined;
|
|
7242
7475
|
operatingType?: "model" | undefined;
|
|
7243
7476
|
id: string;
|
|
7244
7477
|
rawData: {
|
|
@@ -7397,6 +7630,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
7397
7630
|
isIn: boolean;
|
|
7398
7631
|
isOut: boolean;
|
|
7399
7632
|
} | undefined;
|
|
7633
|
+
isWorking?: boolean | undefined;
|
|
7400
7634
|
operatingType?: "model" | undefined;
|
|
7401
7635
|
id: string;
|
|
7402
7636
|
rawData: {
|
|
@@ -7651,6 +7885,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
7651
7885
|
showShadow?: boolean | undefined;
|
|
7652
7886
|
showText?: boolean | undefined;
|
|
7653
7887
|
inFlow?: boolean | undefined;
|
|
7888
|
+
resources?: {
|
|
7889
|
+
name?: string | undefined;
|
|
7890
|
+
resourceId?: string | undefined;
|
|
7891
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
7892
|
+
color?: string | undefined;
|
|
7893
|
+
}[] | undefined;
|
|
7654
7894
|
operatingData?: unknown;
|
|
7655
7895
|
width: number;
|
|
7656
7896
|
height: number;
|
|
@@ -7713,6 +7953,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
7713
7953
|
[x: string]: unknown;
|
|
7714
7954
|
id: string;
|
|
7715
7955
|
};
|
|
7956
|
+
} | {
|
|
7957
|
+
operatingType: "resetAll";
|
|
7958
|
+
rawData?: {
|
|
7959
|
+
[x: string]: unknown;
|
|
7960
|
+
id: string;
|
|
7961
|
+
} | undefined;
|
|
7716
7962
|
} | {
|
|
7717
7963
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
7718
7964
|
light?: {
|
|
@@ -7729,6 +7975,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
7729
7975
|
isOut: boolean;
|
|
7730
7976
|
} | undefined;
|
|
7731
7977
|
stationRotatable?: boolean | undefined;
|
|
7978
|
+
isWorking?: boolean | undefined;
|
|
7732
7979
|
operatingType?: "model" | undefined;
|
|
7733
7980
|
id: string;
|
|
7734
7981
|
rawData: {
|
|
@@ -7887,6 +8134,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
7887
8134
|
isIn: boolean;
|
|
7888
8135
|
isOut: boolean;
|
|
7889
8136
|
} | undefined;
|
|
8137
|
+
isWorking?: boolean | undefined;
|
|
7890
8138
|
operatingType?: "model" | undefined;
|
|
7891
8139
|
id: string;
|
|
7892
8140
|
rawData: {
|
|
@@ -8141,6 +8389,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
8141
8389
|
showShadow?: boolean | undefined;
|
|
8142
8390
|
showText?: boolean | undefined;
|
|
8143
8391
|
inFlow?: boolean | undefined;
|
|
8392
|
+
resources?: {
|
|
8393
|
+
name?: string | undefined;
|
|
8394
|
+
resourceId?: string | undefined;
|
|
8395
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
8396
|
+
color?: string | undefined;
|
|
8397
|
+
}[] | undefined;
|
|
8144
8398
|
operatingData?: unknown;
|
|
8145
8399
|
width: number;
|
|
8146
8400
|
height: number;
|
|
@@ -8201,6 +8455,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
8201
8455
|
[x: string]: unknown;
|
|
8202
8456
|
id: string;
|
|
8203
8457
|
};
|
|
8458
|
+
} | {
|
|
8459
|
+
operatingType: "resetAll";
|
|
8460
|
+
rawData?: {
|
|
8461
|
+
[x: string]: unknown;
|
|
8462
|
+
id: string;
|
|
8463
|
+
} | undefined;
|
|
8204
8464
|
} | {
|
|
8205
8465
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
8206
8466
|
light?: {
|
|
@@ -8217,6 +8477,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
8217
8477
|
isOut: boolean;
|
|
8218
8478
|
} | undefined;
|
|
8219
8479
|
stationRotatable?: boolean | undefined;
|
|
8480
|
+
isWorking?: boolean | undefined;
|
|
8220
8481
|
operatingType?: "model" | undefined;
|
|
8221
8482
|
id: string;
|
|
8222
8483
|
rawData: {
|
|
@@ -8375,6 +8636,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
8375
8636
|
isIn: boolean;
|
|
8376
8637
|
isOut: boolean;
|
|
8377
8638
|
} | undefined;
|
|
8639
|
+
isWorking?: boolean | undefined;
|
|
8378
8640
|
operatingType?: "model" | undefined;
|
|
8379
8641
|
id: string;
|
|
8380
8642
|
rawData: {
|
|
@@ -8627,6 +8889,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
8627
8889
|
showShadow?: boolean | undefined;
|
|
8628
8890
|
showText?: boolean | undefined;
|
|
8629
8891
|
inFlow?: boolean | undefined;
|
|
8892
|
+
resources?: {
|
|
8893
|
+
name?: string | undefined;
|
|
8894
|
+
resourceId?: string | undefined;
|
|
8895
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
8896
|
+
color?: string | undefined;
|
|
8897
|
+
}[] | undefined;
|
|
8630
8898
|
operatingData?: unknown;
|
|
8631
8899
|
width: number;
|
|
8632
8900
|
height: number;
|
|
@@ -8686,6 +8954,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
8686
8954
|
[x: string]: unknown;
|
|
8687
8955
|
id: string;
|
|
8688
8956
|
};
|
|
8957
|
+
} | {
|
|
8958
|
+
operatingType: "resetAll";
|
|
8959
|
+
rawData?: {
|
|
8960
|
+
[x: string]: unknown;
|
|
8961
|
+
id: string;
|
|
8962
|
+
} | undefined;
|
|
8689
8963
|
} | {
|
|
8690
8964
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
8691
8965
|
light?: {
|
|
@@ -8702,6 +8976,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
8702
8976
|
isOut: boolean;
|
|
8703
8977
|
} | undefined;
|
|
8704
8978
|
stationRotatable?: boolean | undefined;
|
|
8979
|
+
isWorking?: boolean | undefined;
|
|
8705
8980
|
operatingType?: "model" | undefined;
|
|
8706
8981
|
id: string;
|
|
8707
8982
|
rawData: {
|
|
@@ -8860,6 +9135,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
8860
9135
|
isIn: boolean;
|
|
8861
9136
|
isOut: boolean;
|
|
8862
9137
|
} | undefined;
|
|
9138
|
+
isWorking?: boolean | undefined;
|
|
8863
9139
|
operatingType?: "model" | undefined;
|
|
8864
9140
|
id: string;
|
|
8865
9141
|
rawData: {
|
|
@@ -9112,6 +9388,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
9112
9388
|
showShadow?: boolean | undefined;
|
|
9113
9389
|
showText?: boolean | undefined;
|
|
9114
9390
|
inFlow?: boolean | undefined;
|
|
9391
|
+
resources?: {
|
|
9392
|
+
name?: string | undefined;
|
|
9393
|
+
resourceId?: string | undefined;
|
|
9394
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
9395
|
+
color?: string | undefined;
|
|
9396
|
+
}[] | undefined;
|
|
9115
9397
|
operatingData?: unknown;
|
|
9116
9398
|
width: number;
|
|
9117
9399
|
height: number;
|
|
@@ -9171,6 +9453,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
9171
9453
|
[x: string]: unknown;
|
|
9172
9454
|
id: string;
|
|
9173
9455
|
};
|
|
9456
|
+
} | {
|
|
9457
|
+
operatingType: "resetAll";
|
|
9458
|
+
rawData?: {
|
|
9459
|
+
[x: string]: unknown;
|
|
9460
|
+
id: string;
|
|
9461
|
+
} | undefined;
|
|
9174
9462
|
} | {
|
|
9175
9463
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
9176
9464
|
light?: {
|
|
@@ -9187,6 +9475,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
9187
9475
|
isOut: boolean;
|
|
9188
9476
|
} | undefined;
|
|
9189
9477
|
stationRotatable?: boolean | undefined;
|
|
9478
|
+
isWorking?: boolean | undefined;
|
|
9190
9479
|
operatingType?: "model" | undefined;
|
|
9191
9480
|
id: string;
|
|
9192
9481
|
rawData: {
|
|
@@ -9345,6 +9634,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
9345
9634
|
isIn: boolean;
|
|
9346
9635
|
isOut: boolean;
|
|
9347
9636
|
} | undefined;
|
|
9637
|
+
isWorking?: boolean | undefined;
|
|
9348
9638
|
operatingType?: "model" | undefined;
|
|
9349
9639
|
id: string;
|
|
9350
9640
|
rawData: {
|
|
@@ -9608,6 +9898,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
9608
9898
|
showShadow?: boolean | undefined;
|
|
9609
9899
|
showText?: boolean | undefined;
|
|
9610
9900
|
inFlow?: boolean | undefined;
|
|
9901
|
+
resources?: {
|
|
9902
|
+
name?: string | undefined;
|
|
9903
|
+
resourceId?: string | undefined;
|
|
9904
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
9905
|
+
color?: string | undefined;
|
|
9906
|
+
}[] | undefined;
|
|
9611
9907
|
operatingData?: unknown;
|
|
9612
9908
|
width: number;
|
|
9613
9909
|
height: number;
|
|
@@ -9659,6 +9955,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
9659
9955
|
showShadow?: boolean | undefined;
|
|
9660
9956
|
showText?: boolean | undefined;
|
|
9661
9957
|
inFlow?: boolean | undefined;
|
|
9958
|
+
resources?: {
|
|
9959
|
+
name?: string | undefined;
|
|
9960
|
+
resourceId?: string | undefined;
|
|
9961
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
9962
|
+
color?: string | undefined;
|
|
9963
|
+
}[] | undefined;
|
|
9662
9964
|
operatingData?: unknown;
|
|
9663
9965
|
width: number;
|
|
9664
9966
|
height: number;
|
|
@@ -9718,6 +10020,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
9718
10020
|
[x: string]: unknown;
|
|
9719
10021
|
id: string;
|
|
9720
10022
|
};
|
|
10023
|
+
} | {
|
|
10024
|
+
operatingType: "resetAll";
|
|
10025
|
+
rawData?: {
|
|
10026
|
+
[x: string]: unknown;
|
|
10027
|
+
id: string;
|
|
10028
|
+
} | undefined;
|
|
9721
10029
|
} | {
|
|
9722
10030
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
9723
10031
|
light?: {
|
|
@@ -9734,6 +10042,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
9734
10042
|
isOut: boolean;
|
|
9735
10043
|
} | undefined;
|
|
9736
10044
|
stationRotatable?: boolean | undefined;
|
|
10045
|
+
isWorking?: boolean | undefined;
|
|
9737
10046
|
operatingType?: "model" | undefined;
|
|
9738
10047
|
id: string;
|
|
9739
10048
|
rawData: {
|
|
@@ -9892,6 +10201,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
9892
10201
|
isIn: boolean;
|
|
9893
10202
|
isOut: boolean;
|
|
9894
10203
|
} | undefined;
|
|
10204
|
+
isWorking?: boolean | undefined;
|
|
9895
10205
|
operatingType?: "model" | undefined;
|
|
9896
10206
|
id: string;
|
|
9897
10207
|
rawData: {
|
|
@@ -10155,6 +10465,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
10155
10465
|
showShadow?: boolean | undefined;
|
|
10156
10466
|
showText?: boolean | undefined;
|
|
10157
10467
|
inFlow?: boolean | undefined;
|
|
10468
|
+
resources?: {
|
|
10469
|
+
name?: string | undefined;
|
|
10470
|
+
resourceId?: string | undefined;
|
|
10471
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
10472
|
+
color?: string | undefined;
|
|
10473
|
+
}[] | undefined;
|
|
10158
10474
|
operatingData?: unknown;
|
|
10159
10475
|
width: number;
|
|
10160
10476
|
height: number;
|
|
@@ -10206,6 +10522,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
10206
10522
|
showShadow?: boolean | undefined;
|
|
10207
10523
|
showText?: boolean | undefined;
|
|
10208
10524
|
inFlow?: boolean | undefined;
|
|
10525
|
+
resources?: {
|
|
10526
|
+
name?: string | undefined;
|
|
10527
|
+
resourceId?: string | undefined;
|
|
10528
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
10529
|
+
color?: string | undefined;
|
|
10530
|
+
}[] | undefined;
|
|
10209
10531
|
operatingData?: unknown;
|
|
10210
10532
|
width: number;
|
|
10211
10533
|
height: number;
|
|
@@ -10265,6 +10587,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
10265
10587
|
[x: string]: unknown;
|
|
10266
10588
|
id: string;
|
|
10267
10589
|
};
|
|
10590
|
+
} | {
|
|
10591
|
+
operatingType: "resetAll";
|
|
10592
|
+
rawData?: {
|
|
10593
|
+
[x: string]: unknown;
|
|
10594
|
+
id: string;
|
|
10595
|
+
} | undefined;
|
|
10268
10596
|
} | {
|
|
10269
10597
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
10270
10598
|
light?: {
|
|
@@ -10281,6 +10609,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
10281
10609
|
isOut: boolean;
|
|
10282
10610
|
} | undefined;
|
|
10283
10611
|
stationRotatable?: boolean | undefined;
|
|
10612
|
+
isWorking?: boolean | undefined;
|
|
10284
10613
|
operatingType?: "model" | undefined;
|
|
10285
10614
|
id: string;
|
|
10286
10615
|
rawData: {
|
|
@@ -10439,6 +10768,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
10439
10768
|
isIn: boolean;
|
|
10440
10769
|
isOut: boolean;
|
|
10441
10770
|
} | undefined;
|
|
10771
|
+
isWorking?: boolean | undefined;
|
|
10442
10772
|
operatingType?: "model" | undefined;
|
|
10443
10773
|
id: string;
|
|
10444
10774
|
rawData: {
|
|
@@ -10700,6 +11030,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
10700
11030
|
showShadow?: boolean | undefined;
|
|
10701
11031
|
showText?: boolean | undefined;
|
|
10702
11032
|
inFlow?: boolean | undefined;
|
|
11033
|
+
resources?: {
|
|
11034
|
+
name?: string | undefined;
|
|
11035
|
+
resourceId?: string | undefined;
|
|
11036
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
11037
|
+
color?: string | undefined;
|
|
11038
|
+
}[] | undefined;
|
|
10703
11039
|
operatingData?: unknown;
|
|
10704
11040
|
width: number;
|
|
10705
11041
|
height: number;
|
|
@@ -10751,6 +11087,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
10751
11087
|
showShadow?: boolean | undefined;
|
|
10752
11088
|
showText?: boolean | undefined;
|
|
10753
11089
|
inFlow?: boolean | undefined;
|
|
11090
|
+
resources?: {
|
|
11091
|
+
name?: string | undefined;
|
|
11092
|
+
resourceId?: string | undefined;
|
|
11093
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
11094
|
+
color?: string | undefined;
|
|
11095
|
+
}[] | undefined;
|
|
10754
11096
|
operatingData?: unknown;
|
|
10755
11097
|
width: number;
|
|
10756
11098
|
height: number;
|
|
@@ -10810,6 +11152,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
10810
11152
|
[x: string]: unknown;
|
|
10811
11153
|
id: string;
|
|
10812
11154
|
};
|
|
11155
|
+
} | {
|
|
11156
|
+
operatingType: "resetAll";
|
|
11157
|
+
rawData?: {
|
|
11158
|
+
[x: string]: unknown;
|
|
11159
|
+
id: string;
|
|
11160
|
+
} | undefined;
|
|
10813
11161
|
} | {
|
|
10814
11162
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
10815
11163
|
light?: {
|
|
@@ -10826,6 +11174,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
10826
11174
|
isOut: boolean;
|
|
10827
11175
|
} | undefined;
|
|
10828
11176
|
stationRotatable?: boolean | undefined;
|
|
11177
|
+
isWorking?: boolean | undefined;
|
|
10829
11178
|
operatingType?: "model" | undefined;
|
|
10830
11179
|
id: string;
|
|
10831
11180
|
rawData: {
|
|
@@ -10984,6 +11333,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
10984
11333
|
isIn: boolean;
|
|
10985
11334
|
isOut: boolean;
|
|
10986
11335
|
} | undefined;
|
|
11336
|
+
isWorking?: boolean | undefined;
|
|
10987
11337
|
operatingType?: "model" | undefined;
|
|
10988
11338
|
id: string;
|
|
10989
11339
|
rawData: {
|
|
@@ -11246,6 +11596,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
11246
11596
|
[x: string]: unknown;
|
|
11247
11597
|
id: string;
|
|
11248
11598
|
};
|
|
11599
|
+
} | {
|
|
11600
|
+
operatingType: "resetAll";
|
|
11601
|
+
rawData?: {
|
|
11602
|
+
[x: string]: unknown;
|
|
11603
|
+
id: string;
|
|
11604
|
+
} | undefined;
|
|
11249
11605
|
} | {
|
|
11250
11606
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
11251
11607
|
light?: {
|
|
@@ -11262,6 +11618,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
11262
11618
|
isOut: boolean;
|
|
11263
11619
|
} | undefined;
|
|
11264
11620
|
stationRotatable?: boolean | undefined;
|
|
11621
|
+
isWorking?: boolean | undefined;
|
|
11265
11622
|
operatingType?: "model" | undefined;
|
|
11266
11623
|
id: string;
|
|
11267
11624
|
rawData: {
|
|
@@ -11420,6 +11777,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
11420
11777
|
isIn: boolean;
|
|
11421
11778
|
isOut: boolean;
|
|
11422
11779
|
} | undefined;
|
|
11780
|
+
isWorking?: boolean | undefined;
|
|
11423
11781
|
operatingType?: "model" | undefined;
|
|
11424
11782
|
id: string;
|
|
11425
11783
|
rawData: {
|
|
@@ -11680,6 +12038,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
11680
12038
|
showShadow?: boolean | undefined;
|
|
11681
12039
|
showText?: boolean | undefined;
|
|
11682
12040
|
inFlow?: boolean | undefined;
|
|
12041
|
+
resources?: {
|
|
12042
|
+
name?: string | undefined;
|
|
12043
|
+
resourceId?: string | undefined;
|
|
12044
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
12045
|
+
color?: string | undefined;
|
|
12046
|
+
}[] | undefined;
|
|
11683
12047
|
operatingData?: unknown;
|
|
11684
12048
|
width: number;
|
|
11685
12049
|
height: number;
|
|
@@ -11731,6 +12095,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
11731
12095
|
showShadow?: boolean | undefined;
|
|
11732
12096
|
showText?: boolean | undefined;
|
|
11733
12097
|
inFlow?: boolean | undefined;
|
|
12098
|
+
resources?: {
|
|
12099
|
+
name?: string | undefined;
|
|
12100
|
+
resourceId?: string | undefined;
|
|
12101
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
12102
|
+
color?: string | undefined;
|
|
12103
|
+
}[] | undefined;
|
|
11734
12104
|
operatingData?: unknown;
|
|
11735
12105
|
width: number;
|
|
11736
12106
|
height: number;
|
|
@@ -11790,6 +12160,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
11790
12160
|
[x: string]: unknown;
|
|
11791
12161
|
id: string;
|
|
11792
12162
|
};
|
|
12163
|
+
} | {
|
|
12164
|
+
operatingType: "resetAll";
|
|
12165
|
+
rawData?: {
|
|
12166
|
+
[x: string]: unknown;
|
|
12167
|
+
id: string;
|
|
12168
|
+
} | undefined;
|
|
11793
12169
|
} | {
|
|
11794
12170
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
11795
12171
|
light?: {
|
|
@@ -11806,6 +12182,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
11806
12182
|
isOut: boolean;
|
|
11807
12183
|
} | undefined;
|
|
11808
12184
|
stationRotatable?: boolean | undefined;
|
|
12185
|
+
isWorking?: boolean | undefined;
|
|
11809
12186
|
operatingType?: "model" | undefined;
|
|
11810
12187
|
id: string;
|
|
11811
12188
|
rawData: {
|
|
@@ -11964,6 +12341,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
11964
12341
|
isIn: boolean;
|
|
11965
12342
|
isOut: boolean;
|
|
11966
12343
|
} | undefined;
|
|
12344
|
+
isWorking?: boolean | undefined;
|
|
11967
12345
|
operatingType?: "model" | undefined;
|
|
11968
12346
|
id: string;
|
|
11969
12347
|
rawData: {
|
|
@@ -12225,6 +12603,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
12225
12603
|
showShadow?: boolean | undefined;
|
|
12226
12604
|
showText?: boolean | undefined;
|
|
12227
12605
|
inFlow?: boolean | undefined;
|
|
12606
|
+
resources?: {
|
|
12607
|
+
name?: string | undefined;
|
|
12608
|
+
resourceId?: string | undefined;
|
|
12609
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
12610
|
+
color?: string | undefined;
|
|
12611
|
+
}[] | undefined;
|
|
12228
12612
|
operatingData?: unknown;
|
|
12229
12613
|
width: number;
|
|
12230
12614
|
height: number;
|
|
@@ -12276,6 +12660,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
12276
12660
|
showShadow?: boolean | undefined;
|
|
12277
12661
|
showText?: boolean | undefined;
|
|
12278
12662
|
inFlow?: boolean | undefined;
|
|
12663
|
+
resources?: {
|
|
12664
|
+
name?: string | undefined;
|
|
12665
|
+
resourceId?: string | undefined;
|
|
12666
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
12667
|
+
color?: string | undefined;
|
|
12668
|
+
}[] | undefined;
|
|
12279
12669
|
operatingData?: unknown;
|
|
12280
12670
|
width: number;
|
|
12281
12671
|
height: number;
|
|
@@ -12336,6 +12726,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
12336
12726
|
[x: string]: unknown;
|
|
12337
12727
|
id: string;
|
|
12338
12728
|
};
|
|
12729
|
+
} | {
|
|
12730
|
+
operatingType: "resetAll";
|
|
12731
|
+
rawData?: {
|
|
12732
|
+
[x: string]: unknown;
|
|
12733
|
+
id: string;
|
|
12734
|
+
} | undefined;
|
|
12339
12735
|
} | {
|
|
12340
12736
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
12341
12737
|
light?: {
|
|
@@ -12352,6 +12748,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
12352
12748
|
isOut: boolean;
|
|
12353
12749
|
} | undefined;
|
|
12354
12750
|
stationRotatable?: boolean | undefined;
|
|
12751
|
+
isWorking?: boolean | undefined;
|
|
12355
12752
|
operatingType?: "model" | undefined;
|
|
12356
12753
|
id: string;
|
|
12357
12754
|
rawData: {
|
|
@@ -12510,6 +12907,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
12510
12907
|
isIn: boolean;
|
|
12511
12908
|
isOut: boolean;
|
|
12512
12909
|
} | undefined;
|
|
12910
|
+
isWorking?: boolean | undefined;
|
|
12513
12911
|
operatingType?: "model" | undefined;
|
|
12514
12912
|
id: string;
|
|
12515
12913
|
rawData: {
|
|
@@ -12764,6 +13162,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
12764
13162
|
showShadow?: boolean | undefined;
|
|
12765
13163
|
showText?: boolean | undefined;
|
|
12766
13164
|
inFlow?: boolean | undefined;
|
|
13165
|
+
resources?: {
|
|
13166
|
+
name?: string | undefined;
|
|
13167
|
+
resourceId?: string | undefined;
|
|
13168
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
13169
|
+
color?: string | undefined;
|
|
13170
|
+
}[] | undefined;
|
|
12767
13171
|
operatingData?: unknown;
|
|
12768
13172
|
width: number;
|
|
12769
13173
|
height: number;
|
|
@@ -12823,6 +13227,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
12823
13227
|
[x: string]: unknown;
|
|
12824
13228
|
id: string;
|
|
12825
13229
|
};
|
|
13230
|
+
} | {
|
|
13231
|
+
operatingType: "resetAll";
|
|
13232
|
+
rawData?: {
|
|
13233
|
+
[x: string]: unknown;
|
|
13234
|
+
id: string;
|
|
13235
|
+
} | undefined;
|
|
12826
13236
|
} | {
|
|
12827
13237
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
12828
13238
|
light?: {
|
|
@@ -12839,6 +13249,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
12839
13249
|
isOut: boolean;
|
|
12840
13250
|
} | undefined;
|
|
12841
13251
|
stationRotatable?: boolean | undefined;
|
|
13252
|
+
isWorking?: boolean | undefined;
|
|
12842
13253
|
operatingType?: "model" | undefined;
|
|
12843
13254
|
id: string;
|
|
12844
13255
|
rawData: {
|
|
@@ -12997,6 +13408,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
12997
13408
|
isIn: boolean;
|
|
12998
13409
|
isOut: boolean;
|
|
12999
13410
|
} | undefined;
|
|
13411
|
+
isWorking?: boolean | undefined;
|
|
13000
13412
|
operatingType?: "model" | undefined;
|
|
13001
13413
|
id: string;
|
|
13002
13414
|
rawData: {
|
|
@@ -13245,7 +13657,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13245
13657
|
className: string;
|
|
13246
13658
|
equipmentName?: string | undefined;
|
|
13247
13659
|
enabled: boolean;
|
|
13248
|
-
operate: "single" | "resource" | "global";
|
|
13660
|
+
operate: "single" | "resource" | "global" | "resetAll";
|
|
13249
13661
|
mappings: {
|
|
13250
13662
|
target: string;
|
|
13251
13663
|
source?: string | undefined;
|
|
@@ -13253,7 +13665,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13253
13665
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
13254
13666
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
13255
13667
|
enabled?: boolean | undefined;
|
|
13256
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
13668
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
13257
13669
|
transformType?: "width" | "height" | undefined;
|
|
13258
13670
|
transformPrecision?: number | undefined;
|
|
13259
13671
|
dictName?: string | undefined;
|
|
@@ -13263,6 +13675,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13263
13675
|
operand: string;
|
|
13264
13676
|
value: string | number | boolean;
|
|
13265
13677
|
}[] | undefined;
|
|
13678
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
13679
|
+
expression?: string | undefined;
|
|
13266
13680
|
}[];
|
|
13267
13681
|
resourceMappings?: {
|
|
13268
13682
|
add?: {
|
|
@@ -13272,7 +13686,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13272
13686
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
13273
13687
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
13274
13688
|
enabled?: boolean | undefined;
|
|
13275
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
13689
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
13276
13690
|
transformType?: "width" | "height" | undefined;
|
|
13277
13691
|
transformPrecision?: number | undefined;
|
|
13278
13692
|
dictName?: string | undefined;
|
|
@@ -13282,6 +13696,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13282
13696
|
operand: string;
|
|
13283
13697
|
value: string | number | boolean;
|
|
13284
13698
|
}[] | undefined;
|
|
13699
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
13700
|
+
expression?: string | undefined;
|
|
13285
13701
|
}[] | undefined;
|
|
13286
13702
|
remove?: {
|
|
13287
13703
|
target: string;
|
|
@@ -13290,7 +13706,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13290
13706
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
13291
13707
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
13292
13708
|
enabled?: boolean | undefined;
|
|
13293
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
13709
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
13294
13710
|
transformType?: "width" | "height" | undefined;
|
|
13295
13711
|
transformPrecision?: number | undefined;
|
|
13296
13712
|
dictName?: string | undefined;
|
|
@@ -13300,6 +13716,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13300
13716
|
operand: string;
|
|
13301
13717
|
value: string | number | boolean;
|
|
13302
13718
|
}[] | undefined;
|
|
13719
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
13720
|
+
expression?: string | undefined;
|
|
13303
13721
|
}[] | undefined;
|
|
13304
13722
|
} | undefined;
|
|
13305
13723
|
globalFields?: {
|
|
@@ -13326,7 +13744,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13326
13744
|
className: string;
|
|
13327
13745
|
equipmentName?: string | undefined;
|
|
13328
13746
|
enabled: boolean;
|
|
13329
|
-
operate: "single" | "resource" | "global";
|
|
13747
|
+
operate: "single" | "resource" | "global" | "resetAll";
|
|
13330
13748
|
mappings: {
|
|
13331
13749
|
target: string;
|
|
13332
13750
|
source?: string | undefined;
|
|
@@ -13334,7 +13752,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13334
13752
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
13335
13753
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
13336
13754
|
enabled?: boolean | undefined;
|
|
13337
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
13755
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
13338
13756
|
transformType?: "width" | "height" | undefined;
|
|
13339
13757
|
transformPrecision?: number | undefined;
|
|
13340
13758
|
dictName?: string | undefined;
|
|
@@ -13344,6 +13762,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13344
13762
|
operand: string;
|
|
13345
13763
|
value: string | number | boolean;
|
|
13346
13764
|
}[] | undefined;
|
|
13765
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
13766
|
+
expression?: string | undefined;
|
|
13347
13767
|
}[];
|
|
13348
13768
|
resourceMappings?: {
|
|
13349
13769
|
add?: {
|
|
@@ -13353,7 +13773,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13353
13773
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
13354
13774
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
13355
13775
|
enabled?: boolean | undefined;
|
|
13356
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
13776
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
13357
13777
|
transformType?: "width" | "height" | undefined;
|
|
13358
13778
|
transformPrecision?: number | undefined;
|
|
13359
13779
|
dictName?: string | undefined;
|
|
@@ -13363,6 +13783,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13363
13783
|
operand: string;
|
|
13364
13784
|
value: string | number | boolean;
|
|
13365
13785
|
}[] | undefined;
|
|
13786
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
13787
|
+
expression?: string | undefined;
|
|
13366
13788
|
}[] | undefined;
|
|
13367
13789
|
remove?: {
|
|
13368
13790
|
target: string;
|
|
@@ -13371,7 +13793,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13371
13793
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
13372
13794
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
13373
13795
|
enabled?: boolean | undefined;
|
|
13374
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
13796
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
13375
13797
|
transformType?: "width" | "height" | undefined;
|
|
13376
13798
|
transformPrecision?: number | undefined;
|
|
13377
13799
|
dictName?: string | undefined;
|
|
@@ -13381,6 +13803,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13381
13803
|
operand: string;
|
|
13382
13804
|
value: string | number | boolean;
|
|
13383
13805
|
}[] | undefined;
|
|
13806
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
13807
|
+
expression?: string | undefined;
|
|
13384
13808
|
}[] | undefined;
|
|
13385
13809
|
} | undefined;
|
|
13386
13810
|
globalFields?: {
|
|
@@ -13445,9 +13869,10 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13445
13869
|
}[]>;
|
|
13446
13870
|
updateCases: (data?: ICase[]) => void;
|
|
13447
13871
|
selectCase: (uuid: string) => void;
|
|
13448
|
-
addCase: (data?: ICase) =>
|
|
13872
|
+
addCase: (data?: ICase) => ICase;
|
|
13449
13873
|
removeCase: (uuid: string) => void;
|
|
13450
13874
|
clearCases: () => void;
|
|
13875
|
+
resetAll: () => void;
|
|
13451
13876
|
setWsProxyConfig: (configs: WsProxyCaseConfig[]) => void;
|
|
13452
13877
|
}, "cases" | "wsProxyConfig" | "globalSetting" | "scriptRunner" | "casesLoading" | "equipmentsMenu">, Pick<{
|
|
13453
13878
|
casesLoading: import('vue').Ref<boolean, boolean>;
|
|
@@ -13505,6 +13930,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13505
13930
|
showShadow?: boolean | undefined;
|
|
13506
13931
|
showText?: boolean | undefined;
|
|
13507
13932
|
inFlow?: boolean | undefined;
|
|
13933
|
+
resources?: {
|
|
13934
|
+
name?: string | undefined;
|
|
13935
|
+
resourceId?: string | undefined;
|
|
13936
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
13937
|
+
color?: string | undefined;
|
|
13938
|
+
}[] | undefined;
|
|
13508
13939
|
operatingData?: unknown;
|
|
13509
13940
|
width: number;
|
|
13510
13941
|
height: number;
|
|
@@ -13564,6 +13995,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13564
13995
|
[x: string]: unknown;
|
|
13565
13996
|
id: string;
|
|
13566
13997
|
};
|
|
13998
|
+
} | {
|
|
13999
|
+
operatingType: "resetAll";
|
|
14000
|
+
rawData?: {
|
|
14001
|
+
[x: string]: unknown;
|
|
14002
|
+
id: string;
|
|
14003
|
+
} | undefined;
|
|
13567
14004
|
} | {
|
|
13568
14005
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
13569
14006
|
light?: {
|
|
@@ -13580,6 +14017,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13580
14017
|
isOut: boolean;
|
|
13581
14018
|
} | undefined;
|
|
13582
14019
|
stationRotatable?: boolean | undefined;
|
|
14020
|
+
isWorking?: boolean | undefined;
|
|
13583
14021
|
operatingType?: "model" | undefined;
|
|
13584
14022
|
id: string;
|
|
13585
14023
|
rawData: {
|
|
@@ -13738,6 +14176,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13738
14176
|
isIn: boolean;
|
|
13739
14177
|
isOut: boolean;
|
|
13740
14178
|
} | undefined;
|
|
14179
|
+
isWorking?: boolean | undefined;
|
|
13741
14180
|
operatingType?: "model" | undefined;
|
|
13742
14181
|
id: string;
|
|
13743
14182
|
rawData: {
|
|
@@ -13991,6 +14430,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
13991
14430
|
showShadow?: boolean | undefined;
|
|
13992
14431
|
showText?: boolean | undefined;
|
|
13993
14432
|
inFlow?: boolean | undefined;
|
|
14433
|
+
resources?: {
|
|
14434
|
+
name?: string | undefined;
|
|
14435
|
+
resourceId?: string | undefined;
|
|
14436
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
14437
|
+
color?: string | undefined;
|
|
14438
|
+
}[] | undefined;
|
|
13994
14439
|
operatingData?: unknown;
|
|
13995
14440
|
width: number;
|
|
13996
14441
|
height: number;
|
|
@@ -14050,6 +14495,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
14050
14495
|
[x: string]: unknown;
|
|
14051
14496
|
id: string;
|
|
14052
14497
|
};
|
|
14498
|
+
} | {
|
|
14499
|
+
operatingType: "resetAll";
|
|
14500
|
+
rawData?: {
|
|
14501
|
+
[x: string]: unknown;
|
|
14502
|
+
id: string;
|
|
14503
|
+
} | undefined;
|
|
14053
14504
|
} | {
|
|
14054
14505
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
14055
14506
|
light?: {
|
|
@@ -14066,6 +14517,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
14066
14517
|
isOut: boolean;
|
|
14067
14518
|
} | undefined;
|
|
14068
14519
|
stationRotatable?: boolean | undefined;
|
|
14520
|
+
isWorking?: boolean | undefined;
|
|
14069
14521
|
operatingType?: "model" | undefined;
|
|
14070
14522
|
id: string;
|
|
14071
14523
|
rawData: {
|
|
@@ -14224,6 +14676,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
14224
14676
|
isIn: boolean;
|
|
14225
14677
|
isOut: boolean;
|
|
14226
14678
|
} | undefined;
|
|
14679
|
+
isWorking?: boolean | undefined;
|
|
14227
14680
|
operatingType?: "model" | undefined;
|
|
14228
14681
|
id: string;
|
|
14229
14682
|
rawData: {
|
|
@@ -14478,6 +14931,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
14478
14931
|
showShadow?: boolean | undefined;
|
|
14479
14932
|
showText?: boolean | undefined;
|
|
14480
14933
|
inFlow?: boolean | undefined;
|
|
14934
|
+
resources?: {
|
|
14935
|
+
name?: string | undefined;
|
|
14936
|
+
resourceId?: string | undefined;
|
|
14937
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
14938
|
+
color?: string | undefined;
|
|
14939
|
+
}[] | undefined;
|
|
14481
14940
|
operatingData?: unknown;
|
|
14482
14941
|
width: number;
|
|
14483
14942
|
height: number;
|
|
@@ -14540,6 +14999,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
14540
14999
|
[x: string]: unknown;
|
|
14541
15000
|
id: string;
|
|
14542
15001
|
};
|
|
15002
|
+
} | {
|
|
15003
|
+
operatingType: "resetAll";
|
|
15004
|
+
rawData?: {
|
|
15005
|
+
[x: string]: unknown;
|
|
15006
|
+
id: string;
|
|
15007
|
+
} | undefined;
|
|
14543
15008
|
} | {
|
|
14544
15009
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
14545
15010
|
light?: {
|
|
@@ -14556,6 +15021,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
14556
15021
|
isOut: boolean;
|
|
14557
15022
|
} | undefined;
|
|
14558
15023
|
stationRotatable?: boolean | undefined;
|
|
15024
|
+
isWorking?: boolean | undefined;
|
|
14559
15025
|
operatingType?: "model" | undefined;
|
|
14560
15026
|
id: string;
|
|
14561
15027
|
rawData: {
|
|
@@ -14714,6 +15180,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
14714
15180
|
isIn: boolean;
|
|
14715
15181
|
isOut: boolean;
|
|
14716
15182
|
} | undefined;
|
|
15183
|
+
isWorking?: boolean | undefined;
|
|
14717
15184
|
operatingType?: "model" | undefined;
|
|
14718
15185
|
id: string;
|
|
14719
15186
|
rawData: {
|
|
@@ -14968,6 +15435,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
14968
15435
|
showShadow?: boolean | undefined;
|
|
14969
15436
|
showText?: boolean | undefined;
|
|
14970
15437
|
inFlow?: boolean | undefined;
|
|
15438
|
+
resources?: {
|
|
15439
|
+
name?: string | undefined;
|
|
15440
|
+
resourceId?: string | undefined;
|
|
15441
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
15442
|
+
color?: string | undefined;
|
|
15443
|
+
}[] | undefined;
|
|
14971
15444
|
operatingData?: unknown;
|
|
14972
15445
|
width: number;
|
|
14973
15446
|
height: number;
|
|
@@ -15028,6 +15501,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
15028
15501
|
[x: string]: unknown;
|
|
15029
15502
|
id: string;
|
|
15030
15503
|
};
|
|
15504
|
+
} | {
|
|
15505
|
+
operatingType: "resetAll";
|
|
15506
|
+
rawData?: {
|
|
15507
|
+
[x: string]: unknown;
|
|
15508
|
+
id: string;
|
|
15509
|
+
} | undefined;
|
|
15031
15510
|
} | {
|
|
15032
15511
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
15033
15512
|
light?: {
|
|
@@ -15044,6 +15523,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
15044
15523
|
isOut: boolean;
|
|
15045
15524
|
} | undefined;
|
|
15046
15525
|
stationRotatable?: boolean | undefined;
|
|
15526
|
+
isWorking?: boolean | undefined;
|
|
15047
15527
|
operatingType?: "model" | undefined;
|
|
15048
15528
|
id: string;
|
|
15049
15529
|
rawData: {
|
|
@@ -15202,6 +15682,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
15202
15682
|
isIn: boolean;
|
|
15203
15683
|
isOut: boolean;
|
|
15204
15684
|
} | undefined;
|
|
15685
|
+
isWorking?: boolean | undefined;
|
|
15205
15686
|
operatingType?: "model" | undefined;
|
|
15206
15687
|
id: string;
|
|
15207
15688
|
rawData: {
|
|
@@ -15454,6 +15935,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
15454
15935
|
showShadow?: boolean | undefined;
|
|
15455
15936
|
showText?: boolean | undefined;
|
|
15456
15937
|
inFlow?: boolean | undefined;
|
|
15938
|
+
resources?: {
|
|
15939
|
+
name?: string | undefined;
|
|
15940
|
+
resourceId?: string | undefined;
|
|
15941
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
15942
|
+
color?: string | undefined;
|
|
15943
|
+
}[] | undefined;
|
|
15457
15944
|
operatingData?: unknown;
|
|
15458
15945
|
width: number;
|
|
15459
15946
|
height: number;
|
|
@@ -15513,6 +16000,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
15513
16000
|
[x: string]: unknown;
|
|
15514
16001
|
id: string;
|
|
15515
16002
|
};
|
|
16003
|
+
} | {
|
|
16004
|
+
operatingType: "resetAll";
|
|
16005
|
+
rawData?: {
|
|
16006
|
+
[x: string]: unknown;
|
|
16007
|
+
id: string;
|
|
16008
|
+
} | undefined;
|
|
15516
16009
|
} | {
|
|
15517
16010
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
15518
16011
|
light?: {
|
|
@@ -15529,6 +16022,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
15529
16022
|
isOut: boolean;
|
|
15530
16023
|
} | undefined;
|
|
15531
16024
|
stationRotatable?: boolean | undefined;
|
|
16025
|
+
isWorking?: boolean | undefined;
|
|
15532
16026
|
operatingType?: "model" | undefined;
|
|
15533
16027
|
id: string;
|
|
15534
16028
|
rawData: {
|
|
@@ -15687,6 +16181,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
15687
16181
|
isIn: boolean;
|
|
15688
16182
|
isOut: boolean;
|
|
15689
16183
|
} | undefined;
|
|
16184
|
+
isWorking?: boolean | undefined;
|
|
15690
16185
|
operatingType?: "model" | undefined;
|
|
15691
16186
|
id: string;
|
|
15692
16187
|
rawData: {
|
|
@@ -15939,6 +16434,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
15939
16434
|
showShadow?: boolean | undefined;
|
|
15940
16435
|
showText?: boolean | undefined;
|
|
15941
16436
|
inFlow?: boolean | undefined;
|
|
16437
|
+
resources?: {
|
|
16438
|
+
name?: string | undefined;
|
|
16439
|
+
resourceId?: string | undefined;
|
|
16440
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
16441
|
+
color?: string | undefined;
|
|
16442
|
+
}[] | undefined;
|
|
15942
16443
|
operatingData?: unknown;
|
|
15943
16444
|
width: number;
|
|
15944
16445
|
height: number;
|
|
@@ -15998,6 +16499,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
15998
16499
|
[x: string]: unknown;
|
|
15999
16500
|
id: string;
|
|
16000
16501
|
};
|
|
16502
|
+
} | {
|
|
16503
|
+
operatingType: "resetAll";
|
|
16504
|
+
rawData?: {
|
|
16505
|
+
[x: string]: unknown;
|
|
16506
|
+
id: string;
|
|
16507
|
+
} | undefined;
|
|
16001
16508
|
} | {
|
|
16002
16509
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
16003
16510
|
light?: {
|
|
@@ -16014,6 +16521,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
16014
16521
|
isOut: boolean;
|
|
16015
16522
|
} | undefined;
|
|
16016
16523
|
stationRotatable?: boolean | undefined;
|
|
16524
|
+
isWorking?: boolean | undefined;
|
|
16017
16525
|
operatingType?: "model" | undefined;
|
|
16018
16526
|
id: string;
|
|
16019
16527
|
rawData: {
|
|
@@ -16172,6 +16680,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
16172
16680
|
isIn: boolean;
|
|
16173
16681
|
isOut: boolean;
|
|
16174
16682
|
} | undefined;
|
|
16683
|
+
isWorking?: boolean | undefined;
|
|
16175
16684
|
operatingType?: "model" | undefined;
|
|
16176
16685
|
id: string;
|
|
16177
16686
|
rawData: {
|
|
@@ -16435,6 +16944,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
16435
16944
|
showShadow?: boolean | undefined;
|
|
16436
16945
|
showText?: boolean | undefined;
|
|
16437
16946
|
inFlow?: boolean | undefined;
|
|
16947
|
+
resources?: {
|
|
16948
|
+
name?: string | undefined;
|
|
16949
|
+
resourceId?: string | undefined;
|
|
16950
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
16951
|
+
color?: string | undefined;
|
|
16952
|
+
}[] | undefined;
|
|
16438
16953
|
operatingData?: unknown;
|
|
16439
16954
|
width: number;
|
|
16440
16955
|
height: number;
|
|
@@ -16486,6 +17001,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
16486
17001
|
showShadow?: boolean | undefined;
|
|
16487
17002
|
showText?: boolean | undefined;
|
|
16488
17003
|
inFlow?: boolean | undefined;
|
|
17004
|
+
resources?: {
|
|
17005
|
+
name?: string | undefined;
|
|
17006
|
+
resourceId?: string | undefined;
|
|
17007
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
17008
|
+
color?: string | undefined;
|
|
17009
|
+
}[] | undefined;
|
|
16489
17010
|
operatingData?: unknown;
|
|
16490
17011
|
width: number;
|
|
16491
17012
|
height: number;
|
|
@@ -16545,6 +17066,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
16545
17066
|
[x: string]: unknown;
|
|
16546
17067
|
id: string;
|
|
16547
17068
|
};
|
|
17069
|
+
} | {
|
|
17070
|
+
operatingType: "resetAll";
|
|
17071
|
+
rawData?: {
|
|
17072
|
+
[x: string]: unknown;
|
|
17073
|
+
id: string;
|
|
17074
|
+
} | undefined;
|
|
16548
17075
|
} | {
|
|
16549
17076
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
16550
17077
|
light?: {
|
|
@@ -16561,6 +17088,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
16561
17088
|
isOut: boolean;
|
|
16562
17089
|
} | undefined;
|
|
16563
17090
|
stationRotatable?: boolean | undefined;
|
|
17091
|
+
isWorking?: boolean | undefined;
|
|
16564
17092
|
operatingType?: "model" | undefined;
|
|
16565
17093
|
id: string;
|
|
16566
17094
|
rawData: {
|
|
@@ -16719,6 +17247,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
16719
17247
|
isIn: boolean;
|
|
16720
17248
|
isOut: boolean;
|
|
16721
17249
|
} | undefined;
|
|
17250
|
+
isWorking?: boolean | undefined;
|
|
16722
17251
|
operatingType?: "model" | undefined;
|
|
16723
17252
|
id: string;
|
|
16724
17253
|
rawData: {
|
|
@@ -16982,6 +17511,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
16982
17511
|
showShadow?: boolean | undefined;
|
|
16983
17512
|
showText?: boolean | undefined;
|
|
16984
17513
|
inFlow?: boolean | undefined;
|
|
17514
|
+
resources?: {
|
|
17515
|
+
name?: string | undefined;
|
|
17516
|
+
resourceId?: string | undefined;
|
|
17517
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
17518
|
+
color?: string | undefined;
|
|
17519
|
+
}[] | undefined;
|
|
16985
17520
|
operatingData?: unknown;
|
|
16986
17521
|
width: number;
|
|
16987
17522
|
height: number;
|
|
@@ -17033,6 +17568,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
17033
17568
|
showShadow?: boolean | undefined;
|
|
17034
17569
|
showText?: boolean | undefined;
|
|
17035
17570
|
inFlow?: boolean | undefined;
|
|
17571
|
+
resources?: {
|
|
17572
|
+
name?: string | undefined;
|
|
17573
|
+
resourceId?: string | undefined;
|
|
17574
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
17575
|
+
color?: string | undefined;
|
|
17576
|
+
}[] | undefined;
|
|
17036
17577
|
operatingData?: unknown;
|
|
17037
17578
|
width: number;
|
|
17038
17579
|
height: number;
|
|
@@ -17092,6 +17633,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
17092
17633
|
[x: string]: unknown;
|
|
17093
17634
|
id: string;
|
|
17094
17635
|
};
|
|
17636
|
+
} | {
|
|
17637
|
+
operatingType: "resetAll";
|
|
17638
|
+
rawData?: {
|
|
17639
|
+
[x: string]: unknown;
|
|
17640
|
+
id: string;
|
|
17641
|
+
} | undefined;
|
|
17095
17642
|
} | {
|
|
17096
17643
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
17097
17644
|
light?: {
|
|
@@ -17108,6 +17655,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
17108
17655
|
isOut: boolean;
|
|
17109
17656
|
} | undefined;
|
|
17110
17657
|
stationRotatable?: boolean | undefined;
|
|
17658
|
+
isWorking?: boolean | undefined;
|
|
17111
17659
|
operatingType?: "model" | undefined;
|
|
17112
17660
|
id: string;
|
|
17113
17661
|
rawData: {
|
|
@@ -17266,6 +17814,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
17266
17814
|
isIn: boolean;
|
|
17267
17815
|
isOut: boolean;
|
|
17268
17816
|
} | undefined;
|
|
17817
|
+
isWorking?: boolean | undefined;
|
|
17269
17818
|
operatingType?: "model" | undefined;
|
|
17270
17819
|
id: string;
|
|
17271
17820
|
rawData: {
|
|
@@ -17527,6 +18076,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
17527
18076
|
showShadow?: boolean | undefined;
|
|
17528
18077
|
showText?: boolean | undefined;
|
|
17529
18078
|
inFlow?: boolean | undefined;
|
|
18079
|
+
resources?: {
|
|
18080
|
+
name?: string | undefined;
|
|
18081
|
+
resourceId?: string | undefined;
|
|
18082
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
18083
|
+
color?: string | undefined;
|
|
18084
|
+
}[] | undefined;
|
|
17530
18085
|
operatingData?: unknown;
|
|
17531
18086
|
width: number;
|
|
17532
18087
|
height: number;
|
|
@@ -17578,6 +18133,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
17578
18133
|
showShadow?: boolean | undefined;
|
|
17579
18134
|
showText?: boolean | undefined;
|
|
17580
18135
|
inFlow?: boolean | undefined;
|
|
18136
|
+
resources?: {
|
|
18137
|
+
name?: string | undefined;
|
|
18138
|
+
resourceId?: string | undefined;
|
|
18139
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
18140
|
+
color?: string | undefined;
|
|
18141
|
+
}[] | undefined;
|
|
17581
18142
|
operatingData?: unknown;
|
|
17582
18143
|
width: number;
|
|
17583
18144
|
height: number;
|
|
@@ -17637,6 +18198,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
17637
18198
|
[x: string]: unknown;
|
|
17638
18199
|
id: string;
|
|
17639
18200
|
};
|
|
18201
|
+
} | {
|
|
18202
|
+
operatingType: "resetAll";
|
|
18203
|
+
rawData?: {
|
|
18204
|
+
[x: string]: unknown;
|
|
18205
|
+
id: string;
|
|
18206
|
+
} | undefined;
|
|
17640
18207
|
} | {
|
|
17641
18208
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
17642
18209
|
light?: {
|
|
@@ -17653,6 +18220,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
17653
18220
|
isOut: boolean;
|
|
17654
18221
|
} | undefined;
|
|
17655
18222
|
stationRotatable?: boolean | undefined;
|
|
18223
|
+
isWorking?: boolean | undefined;
|
|
17656
18224
|
operatingType?: "model" | undefined;
|
|
17657
18225
|
id: string;
|
|
17658
18226
|
rawData: {
|
|
@@ -17811,6 +18379,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
17811
18379
|
isIn: boolean;
|
|
17812
18380
|
isOut: boolean;
|
|
17813
18381
|
} | undefined;
|
|
18382
|
+
isWorking?: boolean | undefined;
|
|
17814
18383
|
operatingType?: "model" | undefined;
|
|
17815
18384
|
id: string;
|
|
17816
18385
|
rawData: {
|
|
@@ -18073,6 +18642,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
18073
18642
|
[x: string]: unknown;
|
|
18074
18643
|
id: string;
|
|
18075
18644
|
};
|
|
18645
|
+
} | {
|
|
18646
|
+
operatingType: "resetAll";
|
|
18647
|
+
rawData?: {
|
|
18648
|
+
[x: string]: unknown;
|
|
18649
|
+
id: string;
|
|
18650
|
+
} | undefined;
|
|
18076
18651
|
} | {
|
|
18077
18652
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
18078
18653
|
light?: {
|
|
@@ -18089,6 +18664,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
18089
18664
|
isOut: boolean;
|
|
18090
18665
|
} | undefined;
|
|
18091
18666
|
stationRotatable?: boolean | undefined;
|
|
18667
|
+
isWorking?: boolean | undefined;
|
|
18092
18668
|
operatingType?: "model" | undefined;
|
|
18093
18669
|
id: string;
|
|
18094
18670
|
rawData: {
|
|
@@ -18247,6 +18823,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
18247
18823
|
isIn: boolean;
|
|
18248
18824
|
isOut: boolean;
|
|
18249
18825
|
} | undefined;
|
|
18826
|
+
isWorking?: boolean | undefined;
|
|
18250
18827
|
operatingType?: "model" | undefined;
|
|
18251
18828
|
id: string;
|
|
18252
18829
|
rawData: {
|
|
@@ -18507,6 +19084,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
18507
19084
|
showShadow?: boolean | undefined;
|
|
18508
19085
|
showText?: boolean | undefined;
|
|
18509
19086
|
inFlow?: boolean | undefined;
|
|
19087
|
+
resources?: {
|
|
19088
|
+
name?: string | undefined;
|
|
19089
|
+
resourceId?: string | undefined;
|
|
19090
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
19091
|
+
color?: string | undefined;
|
|
19092
|
+
}[] | undefined;
|
|
18510
19093
|
operatingData?: unknown;
|
|
18511
19094
|
width: number;
|
|
18512
19095
|
height: number;
|
|
@@ -18558,6 +19141,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
18558
19141
|
showShadow?: boolean | undefined;
|
|
18559
19142
|
showText?: boolean | undefined;
|
|
18560
19143
|
inFlow?: boolean | undefined;
|
|
19144
|
+
resources?: {
|
|
19145
|
+
name?: string | undefined;
|
|
19146
|
+
resourceId?: string | undefined;
|
|
19147
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
19148
|
+
color?: string | undefined;
|
|
19149
|
+
}[] | undefined;
|
|
18561
19150
|
operatingData?: unknown;
|
|
18562
19151
|
width: number;
|
|
18563
19152
|
height: number;
|
|
@@ -18617,6 +19206,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
18617
19206
|
[x: string]: unknown;
|
|
18618
19207
|
id: string;
|
|
18619
19208
|
};
|
|
19209
|
+
} | {
|
|
19210
|
+
operatingType: "resetAll";
|
|
19211
|
+
rawData?: {
|
|
19212
|
+
[x: string]: unknown;
|
|
19213
|
+
id: string;
|
|
19214
|
+
} | undefined;
|
|
18620
19215
|
} | {
|
|
18621
19216
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
18622
19217
|
light?: {
|
|
@@ -18633,6 +19228,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
18633
19228
|
isOut: boolean;
|
|
18634
19229
|
} | undefined;
|
|
18635
19230
|
stationRotatable?: boolean | undefined;
|
|
19231
|
+
isWorking?: boolean | undefined;
|
|
18636
19232
|
operatingType?: "model" | undefined;
|
|
18637
19233
|
id: string;
|
|
18638
19234
|
rawData: {
|
|
@@ -18791,6 +19387,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
18791
19387
|
isIn: boolean;
|
|
18792
19388
|
isOut: boolean;
|
|
18793
19389
|
} | undefined;
|
|
19390
|
+
isWorking?: boolean | undefined;
|
|
18794
19391
|
operatingType?: "model" | undefined;
|
|
18795
19392
|
id: string;
|
|
18796
19393
|
rawData: {
|
|
@@ -19052,6 +19649,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
19052
19649
|
showShadow?: boolean | undefined;
|
|
19053
19650
|
showText?: boolean | undefined;
|
|
19054
19651
|
inFlow?: boolean | undefined;
|
|
19652
|
+
resources?: {
|
|
19653
|
+
name?: string | undefined;
|
|
19654
|
+
resourceId?: string | undefined;
|
|
19655
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
19656
|
+
color?: string | undefined;
|
|
19657
|
+
}[] | undefined;
|
|
19055
19658
|
operatingData?: unknown;
|
|
19056
19659
|
width: number;
|
|
19057
19660
|
height: number;
|
|
@@ -19103,6 +19706,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
19103
19706
|
showShadow?: boolean | undefined;
|
|
19104
19707
|
showText?: boolean | undefined;
|
|
19105
19708
|
inFlow?: boolean | undefined;
|
|
19709
|
+
resources?: {
|
|
19710
|
+
name?: string | undefined;
|
|
19711
|
+
resourceId?: string | undefined;
|
|
19712
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
19713
|
+
color?: string | undefined;
|
|
19714
|
+
}[] | undefined;
|
|
19106
19715
|
operatingData?: unknown;
|
|
19107
19716
|
width: number;
|
|
19108
19717
|
height: number;
|
|
@@ -19163,6 +19772,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
19163
19772
|
[x: string]: unknown;
|
|
19164
19773
|
id: string;
|
|
19165
19774
|
};
|
|
19775
|
+
} | {
|
|
19776
|
+
operatingType: "resetAll";
|
|
19777
|
+
rawData?: {
|
|
19778
|
+
[x: string]: unknown;
|
|
19779
|
+
id: string;
|
|
19780
|
+
} | undefined;
|
|
19166
19781
|
} | {
|
|
19167
19782
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
19168
19783
|
light?: {
|
|
@@ -19179,6 +19794,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
19179
19794
|
isOut: boolean;
|
|
19180
19795
|
} | undefined;
|
|
19181
19796
|
stationRotatable?: boolean | undefined;
|
|
19797
|
+
isWorking?: boolean | undefined;
|
|
19182
19798
|
operatingType?: "model" | undefined;
|
|
19183
19799
|
id: string;
|
|
19184
19800
|
rawData: {
|
|
@@ -19337,6 +19953,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
19337
19953
|
isIn: boolean;
|
|
19338
19954
|
isOut: boolean;
|
|
19339
19955
|
} | undefined;
|
|
19956
|
+
isWorking?: boolean | undefined;
|
|
19340
19957
|
operatingType?: "model" | undefined;
|
|
19341
19958
|
id: string;
|
|
19342
19959
|
rawData: {
|
|
@@ -19591,6 +20208,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
19591
20208
|
showShadow?: boolean | undefined;
|
|
19592
20209
|
showText?: boolean | undefined;
|
|
19593
20210
|
inFlow?: boolean | undefined;
|
|
20211
|
+
resources?: {
|
|
20212
|
+
name?: string | undefined;
|
|
20213
|
+
resourceId?: string | undefined;
|
|
20214
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
20215
|
+
color?: string | undefined;
|
|
20216
|
+
}[] | undefined;
|
|
19594
20217
|
operatingData?: unknown;
|
|
19595
20218
|
width: number;
|
|
19596
20219
|
height: number;
|
|
@@ -19650,6 +20273,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
19650
20273
|
[x: string]: unknown;
|
|
19651
20274
|
id: string;
|
|
19652
20275
|
};
|
|
20276
|
+
} | {
|
|
20277
|
+
operatingType: "resetAll";
|
|
20278
|
+
rawData?: {
|
|
20279
|
+
[x: string]: unknown;
|
|
20280
|
+
id: string;
|
|
20281
|
+
} | undefined;
|
|
19653
20282
|
} | {
|
|
19654
20283
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
19655
20284
|
light?: {
|
|
@@ -19666,6 +20295,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
19666
20295
|
isOut: boolean;
|
|
19667
20296
|
} | undefined;
|
|
19668
20297
|
stationRotatable?: boolean | undefined;
|
|
20298
|
+
isWorking?: boolean | undefined;
|
|
19669
20299
|
operatingType?: "model" | undefined;
|
|
19670
20300
|
id: string;
|
|
19671
20301
|
rawData: {
|
|
@@ -19824,6 +20454,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
19824
20454
|
isIn: boolean;
|
|
19825
20455
|
isOut: boolean;
|
|
19826
20456
|
} | undefined;
|
|
20457
|
+
isWorking?: boolean | undefined;
|
|
19827
20458
|
operatingType?: "model" | undefined;
|
|
19828
20459
|
id: string;
|
|
19829
20460
|
rawData: {
|
|
@@ -20105,6 +20736,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
20105
20736
|
showShadow?: boolean | undefined;
|
|
20106
20737
|
showText?: boolean | undefined;
|
|
20107
20738
|
inFlow?: boolean | undefined;
|
|
20739
|
+
resources?: {
|
|
20740
|
+
name?: string | undefined;
|
|
20741
|
+
resourceId?: string | undefined;
|
|
20742
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
20743
|
+
color?: string | undefined;
|
|
20744
|
+
}[] | undefined;
|
|
20108
20745
|
operatingData?: unknown;
|
|
20109
20746
|
width: number;
|
|
20110
20747
|
height: number;
|
|
@@ -20164,6 +20801,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
20164
20801
|
[x: string]: unknown;
|
|
20165
20802
|
id: string;
|
|
20166
20803
|
};
|
|
20804
|
+
} | {
|
|
20805
|
+
operatingType: "resetAll";
|
|
20806
|
+
rawData?: {
|
|
20807
|
+
[x: string]: unknown;
|
|
20808
|
+
id: string;
|
|
20809
|
+
} | undefined;
|
|
20167
20810
|
} | {
|
|
20168
20811
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
20169
20812
|
light?: {
|
|
@@ -20180,6 +20823,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
20180
20823
|
isOut: boolean;
|
|
20181
20824
|
} | undefined;
|
|
20182
20825
|
stationRotatable?: boolean | undefined;
|
|
20826
|
+
isWorking?: boolean | undefined;
|
|
20183
20827
|
operatingType?: "model" | undefined;
|
|
20184
20828
|
id: string;
|
|
20185
20829
|
rawData: {
|
|
@@ -20338,6 +20982,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
20338
20982
|
isIn: boolean;
|
|
20339
20983
|
isOut: boolean;
|
|
20340
20984
|
} | undefined;
|
|
20985
|
+
isWorking?: boolean | undefined;
|
|
20341
20986
|
operatingType?: "model" | undefined;
|
|
20342
20987
|
id: string;
|
|
20343
20988
|
rawData: {
|
|
@@ -20591,6 +21236,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
20591
21236
|
showShadow?: boolean | undefined;
|
|
20592
21237
|
showText?: boolean | undefined;
|
|
20593
21238
|
inFlow?: boolean | undefined;
|
|
21239
|
+
resources?: {
|
|
21240
|
+
name?: string | undefined;
|
|
21241
|
+
resourceId?: string | undefined;
|
|
21242
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
21243
|
+
color?: string | undefined;
|
|
21244
|
+
}[] | undefined;
|
|
20594
21245
|
operatingData?: unknown;
|
|
20595
21246
|
width: number;
|
|
20596
21247
|
height: number;
|
|
@@ -20650,6 +21301,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
20650
21301
|
[x: string]: unknown;
|
|
20651
21302
|
id: string;
|
|
20652
21303
|
};
|
|
21304
|
+
} | {
|
|
21305
|
+
operatingType: "resetAll";
|
|
21306
|
+
rawData?: {
|
|
21307
|
+
[x: string]: unknown;
|
|
21308
|
+
id: string;
|
|
21309
|
+
} | undefined;
|
|
20653
21310
|
} | {
|
|
20654
21311
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
20655
21312
|
light?: {
|
|
@@ -20666,6 +21323,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
20666
21323
|
isOut: boolean;
|
|
20667
21324
|
} | undefined;
|
|
20668
21325
|
stationRotatable?: boolean | undefined;
|
|
21326
|
+
isWorking?: boolean | undefined;
|
|
20669
21327
|
operatingType?: "model" | undefined;
|
|
20670
21328
|
id: string;
|
|
20671
21329
|
rawData: {
|
|
@@ -20824,6 +21482,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
20824
21482
|
isIn: boolean;
|
|
20825
21483
|
isOut: boolean;
|
|
20826
21484
|
} | undefined;
|
|
21485
|
+
isWorking?: boolean | undefined;
|
|
20827
21486
|
operatingType?: "model" | undefined;
|
|
20828
21487
|
id: string;
|
|
20829
21488
|
rawData: {
|
|
@@ -21078,6 +21737,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
21078
21737
|
showShadow?: boolean | undefined;
|
|
21079
21738
|
showText?: boolean | undefined;
|
|
21080
21739
|
inFlow?: boolean | undefined;
|
|
21740
|
+
resources?: {
|
|
21741
|
+
name?: string | undefined;
|
|
21742
|
+
resourceId?: string | undefined;
|
|
21743
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
21744
|
+
color?: string | undefined;
|
|
21745
|
+
}[] | undefined;
|
|
21081
21746
|
operatingData?: unknown;
|
|
21082
21747
|
width: number;
|
|
21083
21748
|
height: number;
|
|
@@ -21140,6 +21805,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
21140
21805
|
[x: string]: unknown;
|
|
21141
21806
|
id: string;
|
|
21142
21807
|
};
|
|
21808
|
+
} | {
|
|
21809
|
+
operatingType: "resetAll";
|
|
21810
|
+
rawData?: {
|
|
21811
|
+
[x: string]: unknown;
|
|
21812
|
+
id: string;
|
|
21813
|
+
} | undefined;
|
|
21143
21814
|
} | {
|
|
21144
21815
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
21145
21816
|
light?: {
|
|
@@ -21156,6 +21827,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
21156
21827
|
isOut: boolean;
|
|
21157
21828
|
} | undefined;
|
|
21158
21829
|
stationRotatable?: boolean | undefined;
|
|
21830
|
+
isWorking?: boolean | undefined;
|
|
21159
21831
|
operatingType?: "model" | undefined;
|
|
21160
21832
|
id: string;
|
|
21161
21833
|
rawData: {
|
|
@@ -21314,6 +21986,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
21314
21986
|
isIn: boolean;
|
|
21315
21987
|
isOut: boolean;
|
|
21316
21988
|
} | undefined;
|
|
21989
|
+
isWorking?: boolean | undefined;
|
|
21317
21990
|
operatingType?: "model" | undefined;
|
|
21318
21991
|
id: string;
|
|
21319
21992
|
rawData: {
|
|
@@ -21568,6 +22241,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
21568
22241
|
showShadow?: boolean | undefined;
|
|
21569
22242
|
showText?: boolean | undefined;
|
|
21570
22243
|
inFlow?: boolean | undefined;
|
|
22244
|
+
resources?: {
|
|
22245
|
+
name?: string | undefined;
|
|
22246
|
+
resourceId?: string | undefined;
|
|
22247
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
22248
|
+
color?: string | undefined;
|
|
22249
|
+
}[] | undefined;
|
|
21571
22250
|
operatingData?: unknown;
|
|
21572
22251
|
width: number;
|
|
21573
22252
|
height: number;
|
|
@@ -21628,6 +22307,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
21628
22307
|
[x: string]: unknown;
|
|
21629
22308
|
id: string;
|
|
21630
22309
|
};
|
|
22310
|
+
} | {
|
|
22311
|
+
operatingType: "resetAll";
|
|
22312
|
+
rawData?: {
|
|
22313
|
+
[x: string]: unknown;
|
|
22314
|
+
id: string;
|
|
22315
|
+
} | undefined;
|
|
21631
22316
|
} | {
|
|
21632
22317
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
21633
22318
|
light?: {
|
|
@@ -21644,6 +22329,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
21644
22329
|
isOut: boolean;
|
|
21645
22330
|
} | undefined;
|
|
21646
22331
|
stationRotatable?: boolean | undefined;
|
|
22332
|
+
isWorking?: boolean | undefined;
|
|
21647
22333
|
operatingType?: "model" | undefined;
|
|
21648
22334
|
id: string;
|
|
21649
22335
|
rawData: {
|
|
@@ -21802,6 +22488,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
21802
22488
|
isIn: boolean;
|
|
21803
22489
|
isOut: boolean;
|
|
21804
22490
|
} | undefined;
|
|
22491
|
+
isWorking?: boolean | undefined;
|
|
21805
22492
|
operatingType?: "model" | undefined;
|
|
21806
22493
|
id: string;
|
|
21807
22494
|
rawData: {
|
|
@@ -22054,6 +22741,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
22054
22741
|
showShadow?: boolean | undefined;
|
|
22055
22742
|
showText?: boolean | undefined;
|
|
22056
22743
|
inFlow?: boolean | undefined;
|
|
22744
|
+
resources?: {
|
|
22745
|
+
name?: string | undefined;
|
|
22746
|
+
resourceId?: string | undefined;
|
|
22747
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
22748
|
+
color?: string | undefined;
|
|
22749
|
+
}[] | undefined;
|
|
22057
22750
|
operatingData?: unknown;
|
|
22058
22751
|
width: number;
|
|
22059
22752
|
height: number;
|
|
@@ -22113,6 +22806,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
22113
22806
|
[x: string]: unknown;
|
|
22114
22807
|
id: string;
|
|
22115
22808
|
};
|
|
22809
|
+
} | {
|
|
22810
|
+
operatingType: "resetAll";
|
|
22811
|
+
rawData?: {
|
|
22812
|
+
[x: string]: unknown;
|
|
22813
|
+
id: string;
|
|
22814
|
+
} | undefined;
|
|
22116
22815
|
} | {
|
|
22117
22816
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
22118
22817
|
light?: {
|
|
@@ -22129,6 +22828,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
22129
22828
|
isOut: boolean;
|
|
22130
22829
|
} | undefined;
|
|
22131
22830
|
stationRotatable?: boolean | undefined;
|
|
22831
|
+
isWorking?: boolean | undefined;
|
|
22132
22832
|
operatingType?: "model" | undefined;
|
|
22133
22833
|
id: string;
|
|
22134
22834
|
rawData: {
|
|
@@ -22287,6 +22987,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
22287
22987
|
isIn: boolean;
|
|
22288
22988
|
isOut: boolean;
|
|
22289
22989
|
} | undefined;
|
|
22990
|
+
isWorking?: boolean | undefined;
|
|
22290
22991
|
operatingType?: "model" | undefined;
|
|
22291
22992
|
id: string;
|
|
22292
22993
|
rawData: {
|
|
@@ -22539,6 +23240,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
22539
23240
|
showShadow?: boolean | undefined;
|
|
22540
23241
|
showText?: boolean | undefined;
|
|
22541
23242
|
inFlow?: boolean | undefined;
|
|
23243
|
+
resources?: {
|
|
23244
|
+
name?: string | undefined;
|
|
23245
|
+
resourceId?: string | undefined;
|
|
23246
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
23247
|
+
color?: string | undefined;
|
|
23248
|
+
}[] | undefined;
|
|
22542
23249
|
operatingData?: unknown;
|
|
22543
23250
|
width: number;
|
|
22544
23251
|
height: number;
|
|
@@ -22598,6 +23305,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
22598
23305
|
[x: string]: unknown;
|
|
22599
23306
|
id: string;
|
|
22600
23307
|
};
|
|
23308
|
+
} | {
|
|
23309
|
+
operatingType: "resetAll";
|
|
23310
|
+
rawData?: {
|
|
23311
|
+
[x: string]: unknown;
|
|
23312
|
+
id: string;
|
|
23313
|
+
} | undefined;
|
|
22601
23314
|
} | {
|
|
22602
23315
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
22603
23316
|
light?: {
|
|
@@ -22614,6 +23327,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
22614
23327
|
isOut: boolean;
|
|
22615
23328
|
} | undefined;
|
|
22616
23329
|
stationRotatable?: boolean | undefined;
|
|
23330
|
+
isWorking?: boolean | undefined;
|
|
22617
23331
|
operatingType?: "model" | undefined;
|
|
22618
23332
|
id: string;
|
|
22619
23333
|
rawData: {
|
|
@@ -22772,6 +23486,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
22772
23486
|
isIn: boolean;
|
|
22773
23487
|
isOut: boolean;
|
|
22774
23488
|
} | undefined;
|
|
23489
|
+
isWorking?: boolean | undefined;
|
|
22775
23490
|
operatingType?: "model" | undefined;
|
|
22776
23491
|
id: string;
|
|
22777
23492
|
rawData: {
|
|
@@ -23035,6 +23750,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
23035
23750
|
showShadow?: boolean | undefined;
|
|
23036
23751
|
showText?: boolean | undefined;
|
|
23037
23752
|
inFlow?: boolean | undefined;
|
|
23753
|
+
resources?: {
|
|
23754
|
+
name?: string | undefined;
|
|
23755
|
+
resourceId?: string | undefined;
|
|
23756
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
23757
|
+
color?: string | undefined;
|
|
23758
|
+
}[] | undefined;
|
|
23038
23759
|
operatingData?: unknown;
|
|
23039
23760
|
width: number;
|
|
23040
23761
|
height: number;
|
|
@@ -23086,6 +23807,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
23086
23807
|
showShadow?: boolean | undefined;
|
|
23087
23808
|
showText?: boolean | undefined;
|
|
23088
23809
|
inFlow?: boolean | undefined;
|
|
23810
|
+
resources?: {
|
|
23811
|
+
name?: string | undefined;
|
|
23812
|
+
resourceId?: string | undefined;
|
|
23813
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
23814
|
+
color?: string | undefined;
|
|
23815
|
+
}[] | undefined;
|
|
23089
23816
|
operatingData?: unknown;
|
|
23090
23817
|
width: number;
|
|
23091
23818
|
height: number;
|
|
@@ -23145,6 +23872,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
23145
23872
|
[x: string]: unknown;
|
|
23146
23873
|
id: string;
|
|
23147
23874
|
};
|
|
23875
|
+
} | {
|
|
23876
|
+
operatingType: "resetAll";
|
|
23877
|
+
rawData?: {
|
|
23878
|
+
[x: string]: unknown;
|
|
23879
|
+
id: string;
|
|
23880
|
+
} | undefined;
|
|
23148
23881
|
} | {
|
|
23149
23882
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
23150
23883
|
light?: {
|
|
@@ -23161,6 +23894,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
23161
23894
|
isOut: boolean;
|
|
23162
23895
|
} | undefined;
|
|
23163
23896
|
stationRotatable?: boolean | undefined;
|
|
23897
|
+
isWorking?: boolean | undefined;
|
|
23164
23898
|
operatingType?: "model" | undefined;
|
|
23165
23899
|
id: string;
|
|
23166
23900
|
rawData: {
|
|
@@ -23319,6 +24053,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
23319
24053
|
isIn: boolean;
|
|
23320
24054
|
isOut: boolean;
|
|
23321
24055
|
} | undefined;
|
|
24056
|
+
isWorking?: boolean | undefined;
|
|
23322
24057
|
operatingType?: "model" | undefined;
|
|
23323
24058
|
id: string;
|
|
23324
24059
|
rawData: {
|
|
@@ -23582,6 +24317,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
23582
24317
|
showShadow?: boolean | undefined;
|
|
23583
24318
|
showText?: boolean | undefined;
|
|
23584
24319
|
inFlow?: boolean | undefined;
|
|
24320
|
+
resources?: {
|
|
24321
|
+
name?: string | undefined;
|
|
24322
|
+
resourceId?: string | undefined;
|
|
24323
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
24324
|
+
color?: string | undefined;
|
|
24325
|
+
}[] | undefined;
|
|
23585
24326
|
operatingData?: unknown;
|
|
23586
24327
|
width: number;
|
|
23587
24328
|
height: number;
|
|
@@ -23633,6 +24374,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
23633
24374
|
showShadow?: boolean | undefined;
|
|
23634
24375
|
showText?: boolean | undefined;
|
|
23635
24376
|
inFlow?: boolean | undefined;
|
|
24377
|
+
resources?: {
|
|
24378
|
+
name?: string | undefined;
|
|
24379
|
+
resourceId?: string | undefined;
|
|
24380
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
24381
|
+
color?: string | undefined;
|
|
24382
|
+
}[] | undefined;
|
|
23636
24383
|
operatingData?: unknown;
|
|
23637
24384
|
width: number;
|
|
23638
24385
|
height: number;
|
|
@@ -23692,6 +24439,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
23692
24439
|
[x: string]: unknown;
|
|
23693
24440
|
id: string;
|
|
23694
24441
|
};
|
|
24442
|
+
} | {
|
|
24443
|
+
operatingType: "resetAll";
|
|
24444
|
+
rawData?: {
|
|
24445
|
+
[x: string]: unknown;
|
|
24446
|
+
id: string;
|
|
24447
|
+
} | undefined;
|
|
23695
24448
|
} | {
|
|
23696
24449
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
23697
24450
|
light?: {
|
|
@@ -23708,6 +24461,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
23708
24461
|
isOut: boolean;
|
|
23709
24462
|
} | undefined;
|
|
23710
24463
|
stationRotatable?: boolean | undefined;
|
|
24464
|
+
isWorking?: boolean | undefined;
|
|
23711
24465
|
operatingType?: "model" | undefined;
|
|
23712
24466
|
id: string;
|
|
23713
24467
|
rawData: {
|
|
@@ -23866,6 +24620,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
23866
24620
|
isIn: boolean;
|
|
23867
24621
|
isOut: boolean;
|
|
23868
24622
|
} | undefined;
|
|
24623
|
+
isWorking?: boolean | undefined;
|
|
23869
24624
|
operatingType?: "model" | undefined;
|
|
23870
24625
|
id: string;
|
|
23871
24626
|
rawData: {
|
|
@@ -24127,6 +24882,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
24127
24882
|
showShadow?: boolean | undefined;
|
|
24128
24883
|
showText?: boolean | undefined;
|
|
24129
24884
|
inFlow?: boolean | undefined;
|
|
24885
|
+
resources?: {
|
|
24886
|
+
name?: string | undefined;
|
|
24887
|
+
resourceId?: string | undefined;
|
|
24888
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
24889
|
+
color?: string | undefined;
|
|
24890
|
+
}[] | undefined;
|
|
24130
24891
|
operatingData?: unknown;
|
|
24131
24892
|
width: number;
|
|
24132
24893
|
height: number;
|
|
@@ -24178,6 +24939,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
24178
24939
|
showShadow?: boolean | undefined;
|
|
24179
24940
|
showText?: boolean | undefined;
|
|
24180
24941
|
inFlow?: boolean | undefined;
|
|
24942
|
+
resources?: {
|
|
24943
|
+
name?: string | undefined;
|
|
24944
|
+
resourceId?: string | undefined;
|
|
24945
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
24946
|
+
color?: string | undefined;
|
|
24947
|
+
}[] | undefined;
|
|
24181
24948
|
operatingData?: unknown;
|
|
24182
24949
|
width: number;
|
|
24183
24950
|
height: number;
|
|
@@ -24237,6 +25004,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
24237
25004
|
[x: string]: unknown;
|
|
24238
25005
|
id: string;
|
|
24239
25006
|
};
|
|
25007
|
+
} | {
|
|
25008
|
+
operatingType: "resetAll";
|
|
25009
|
+
rawData?: {
|
|
25010
|
+
[x: string]: unknown;
|
|
25011
|
+
id: string;
|
|
25012
|
+
} | undefined;
|
|
24240
25013
|
} | {
|
|
24241
25014
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
24242
25015
|
light?: {
|
|
@@ -24253,6 +25026,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
24253
25026
|
isOut: boolean;
|
|
24254
25027
|
} | undefined;
|
|
24255
25028
|
stationRotatable?: boolean | undefined;
|
|
25029
|
+
isWorking?: boolean | undefined;
|
|
24256
25030
|
operatingType?: "model" | undefined;
|
|
24257
25031
|
id: string;
|
|
24258
25032
|
rawData: {
|
|
@@ -24411,6 +25185,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
24411
25185
|
isIn: boolean;
|
|
24412
25186
|
isOut: boolean;
|
|
24413
25187
|
} | undefined;
|
|
25188
|
+
isWorking?: boolean | undefined;
|
|
24414
25189
|
operatingType?: "model" | undefined;
|
|
24415
25190
|
id: string;
|
|
24416
25191
|
rawData: {
|
|
@@ -24673,6 +25448,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
24673
25448
|
[x: string]: unknown;
|
|
24674
25449
|
id: string;
|
|
24675
25450
|
};
|
|
25451
|
+
} | {
|
|
25452
|
+
operatingType: "resetAll";
|
|
25453
|
+
rawData?: {
|
|
25454
|
+
[x: string]: unknown;
|
|
25455
|
+
id: string;
|
|
25456
|
+
} | undefined;
|
|
24676
25457
|
} | {
|
|
24677
25458
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
24678
25459
|
light?: {
|
|
@@ -24689,6 +25470,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
24689
25470
|
isOut: boolean;
|
|
24690
25471
|
} | undefined;
|
|
24691
25472
|
stationRotatable?: boolean | undefined;
|
|
25473
|
+
isWorking?: boolean | undefined;
|
|
24692
25474
|
operatingType?: "model" | undefined;
|
|
24693
25475
|
id: string;
|
|
24694
25476
|
rawData: {
|
|
@@ -24847,6 +25629,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
24847
25629
|
isIn: boolean;
|
|
24848
25630
|
isOut: boolean;
|
|
24849
25631
|
} | undefined;
|
|
25632
|
+
isWorking?: boolean | undefined;
|
|
24850
25633
|
operatingType?: "model" | undefined;
|
|
24851
25634
|
id: string;
|
|
24852
25635
|
rawData: {
|
|
@@ -25107,6 +25890,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
25107
25890
|
showShadow?: boolean | undefined;
|
|
25108
25891
|
showText?: boolean | undefined;
|
|
25109
25892
|
inFlow?: boolean | undefined;
|
|
25893
|
+
resources?: {
|
|
25894
|
+
name?: string | undefined;
|
|
25895
|
+
resourceId?: string | undefined;
|
|
25896
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
25897
|
+
color?: string | undefined;
|
|
25898
|
+
}[] | undefined;
|
|
25110
25899
|
operatingData?: unknown;
|
|
25111
25900
|
width: number;
|
|
25112
25901
|
height: number;
|
|
@@ -25158,6 +25947,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
25158
25947
|
showShadow?: boolean | undefined;
|
|
25159
25948
|
showText?: boolean | undefined;
|
|
25160
25949
|
inFlow?: boolean | undefined;
|
|
25950
|
+
resources?: {
|
|
25951
|
+
name?: string | undefined;
|
|
25952
|
+
resourceId?: string | undefined;
|
|
25953
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
25954
|
+
color?: string | undefined;
|
|
25955
|
+
}[] | undefined;
|
|
25161
25956
|
operatingData?: unknown;
|
|
25162
25957
|
width: number;
|
|
25163
25958
|
height: number;
|
|
@@ -25217,6 +26012,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
25217
26012
|
[x: string]: unknown;
|
|
25218
26013
|
id: string;
|
|
25219
26014
|
};
|
|
26015
|
+
} | {
|
|
26016
|
+
operatingType: "resetAll";
|
|
26017
|
+
rawData?: {
|
|
26018
|
+
[x: string]: unknown;
|
|
26019
|
+
id: string;
|
|
26020
|
+
} | undefined;
|
|
25220
26021
|
} | {
|
|
25221
26022
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
25222
26023
|
light?: {
|
|
@@ -25233,6 +26034,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
25233
26034
|
isOut: boolean;
|
|
25234
26035
|
} | undefined;
|
|
25235
26036
|
stationRotatable?: boolean | undefined;
|
|
26037
|
+
isWorking?: boolean | undefined;
|
|
25236
26038
|
operatingType?: "model" | undefined;
|
|
25237
26039
|
id: string;
|
|
25238
26040
|
rawData: {
|
|
@@ -25391,6 +26193,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
25391
26193
|
isIn: boolean;
|
|
25392
26194
|
isOut: boolean;
|
|
25393
26195
|
} | undefined;
|
|
26196
|
+
isWorking?: boolean | undefined;
|
|
25394
26197
|
operatingType?: "model" | undefined;
|
|
25395
26198
|
id: string;
|
|
25396
26199
|
rawData: {
|
|
@@ -25652,6 +26455,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
25652
26455
|
showShadow?: boolean | undefined;
|
|
25653
26456
|
showText?: boolean | undefined;
|
|
25654
26457
|
inFlow?: boolean | undefined;
|
|
26458
|
+
resources?: {
|
|
26459
|
+
name?: string | undefined;
|
|
26460
|
+
resourceId?: string | undefined;
|
|
26461
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
26462
|
+
color?: string | undefined;
|
|
26463
|
+
}[] | undefined;
|
|
25655
26464
|
operatingData?: unknown;
|
|
25656
26465
|
width: number;
|
|
25657
26466
|
height: number;
|
|
@@ -25703,6 +26512,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
25703
26512
|
showShadow?: boolean | undefined;
|
|
25704
26513
|
showText?: boolean | undefined;
|
|
25705
26514
|
inFlow?: boolean | undefined;
|
|
26515
|
+
resources?: {
|
|
26516
|
+
name?: string | undefined;
|
|
26517
|
+
resourceId?: string | undefined;
|
|
26518
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
26519
|
+
color?: string | undefined;
|
|
26520
|
+
}[] | undefined;
|
|
25706
26521
|
operatingData?: unknown;
|
|
25707
26522
|
width: number;
|
|
25708
26523
|
height: number;
|
|
@@ -25763,6 +26578,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
25763
26578
|
[x: string]: unknown;
|
|
25764
26579
|
id: string;
|
|
25765
26580
|
};
|
|
26581
|
+
} | {
|
|
26582
|
+
operatingType: "resetAll";
|
|
26583
|
+
rawData?: {
|
|
26584
|
+
[x: string]: unknown;
|
|
26585
|
+
id: string;
|
|
26586
|
+
} | undefined;
|
|
25766
26587
|
} | {
|
|
25767
26588
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
25768
26589
|
light?: {
|
|
@@ -25779,6 +26600,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
25779
26600
|
isOut: boolean;
|
|
25780
26601
|
} | undefined;
|
|
25781
26602
|
stationRotatable?: boolean | undefined;
|
|
26603
|
+
isWorking?: boolean | undefined;
|
|
25782
26604
|
operatingType?: "model" | undefined;
|
|
25783
26605
|
id: string;
|
|
25784
26606
|
rawData: {
|
|
@@ -25937,6 +26759,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
25937
26759
|
isIn: boolean;
|
|
25938
26760
|
isOut: boolean;
|
|
25939
26761
|
} | undefined;
|
|
26762
|
+
isWorking?: boolean | undefined;
|
|
25940
26763
|
operatingType?: "model" | undefined;
|
|
25941
26764
|
id: string;
|
|
25942
26765
|
rawData: {
|
|
@@ -26191,6 +27014,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26191
27014
|
showShadow?: boolean | undefined;
|
|
26192
27015
|
showText?: boolean | undefined;
|
|
26193
27016
|
inFlow?: boolean | undefined;
|
|
27017
|
+
resources?: {
|
|
27018
|
+
name?: string | undefined;
|
|
27019
|
+
resourceId?: string | undefined;
|
|
27020
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
27021
|
+
color?: string | undefined;
|
|
27022
|
+
}[] | undefined;
|
|
26194
27023
|
operatingData?: unknown;
|
|
26195
27024
|
width: number;
|
|
26196
27025
|
height: number;
|
|
@@ -26250,6 +27079,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26250
27079
|
[x: string]: unknown;
|
|
26251
27080
|
id: string;
|
|
26252
27081
|
};
|
|
27082
|
+
} | {
|
|
27083
|
+
operatingType: "resetAll";
|
|
27084
|
+
rawData?: {
|
|
27085
|
+
[x: string]: unknown;
|
|
27086
|
+
id: string;
|
|
27087
|
+
} | undefined;
|
|
26253
27088
|
} | {
|
|
26254
27089
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
26255
27090
|
light?: {
|
|
@@ -26266,6 +27101,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26266
27101
|
isOut: boolean;
|
|
26267
27102
|
} | undefined;
|
|
26268
27103
|
stationRotatable?: boolean | undefined;
|
|
27104
|
+
isWorking?: boolean | undefined;
|
|
26269
27105
|
operatingType?: "model" | undefined;
|
|
26270
27106
|
id: string;
|
|
26271
27107
|
rawData: {
|
|
@@ -26424,6 +27260,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26424
27260
|
isIn: boolean;
|
|
26425
27261
|
isOut: boolean;
|
|
26426
27262
|
} | undefined;
|
|
27263
|
+
isWorking?: boolean | undefined;
|
|
26427
27264
|
operatingType?: "model" | undefined;
|
|
26428
27265
|
id: string;
|
|
26429
27266
|
rawData: {
|
|
@@ -26672,7 +27509,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26672
27509
|
className: string;
|
|
26673
27510
|
equipmentName?: string | undefined;
|
|
26674
27511
|
enabled: boolean;
|
|
26675
|
-
operate: "single" | "resource" | "global";
|
|
27512
|
+
operate: "single" | "resource" | "global" | "resetAll";
|
|
26676
27513
|
mappings: {
|
|
26677
27514
|
target: string;
|
|
26678
27515
|
source?: string | undefined;
|
|
@@ -26680,7 +27517,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26680
27517
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
26681
27518
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
26682
27519
|
enabled?: boolean | undefined;
|
|
26683
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
27520
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
26684
27521
|
transformType?: "width" | "height" | undefined;
|
|
26685
27522
|
transformPrecision?: number | undefined;
|
|
26686
27523
|
dictName?: string | undefined;
|
|
@@ -26690,6 +27527,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26690
27527
|
operand: string;
|
|
26691
27528
|
value: string | number | boolean;
|
|
26692
27529
|
}[] | undefined;
|
|
27530
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
27531
|
+
expression?: string | undefined;
|
|
26693
27532
|
}[];
|
|
26694
27533
|
resourceMappings?: {
|
|
26695
27534
|
add?: {
|
|
@@ -26699,7 +27538,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26699
27538
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
26700
27539
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
26701
27540
|
enabled?: boolean | undefined;
|
|
26702
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
27541
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
26703
27542
|
transformType?: "width" | "height" | undefined;
|
|
26704
27543
|
transformPrecision?: number | undefined;
|
|
26705
27544
|
dictName?: string | undefined;
|
|
@@ -26709,6 +27548,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26709
27548
|
operand: string;
|
|
26710
27549
|
value: string | number | boolean;
|
|
26711
27550
|
}[] | undefined;
|
|
27551
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
27552
|
+
expression?: string | undefined;
|
|
26712
27553
|
}[] | undefined;
|
|
26713
27554
|
remove?: {
|
|
26714
27555
|
target: string;
|
|
@@ -26717,7 +27558,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26717
27558
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
26718
27559
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
26719
27560
|
enabled?: boolean | undefined;
|
|
26720
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
27561
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
26721
27562
|
transformType?: "width" | "height" | undefined;
|
|
26722
27563
|
transformPrecision?: number | undefined;
|
|
26723
27564
|
dictName?: string | undefined;
|
|
@@ -26727,6 +27568,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26727
27568
|
operand: string;
|
|
26728
27569
|
value: string | number | boolean;
|
|
26729
27570
|
}[] | undefined;
|
|
27571
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
27572
|
+
expression?: string | undefined;
|
|
26730
27573
|
}[] | undefined;
|
|
26731
27574
|
} | undefined;
|
|
26732
27575
|
globalFields?: {
|
|
@@ -26753,7 +27596,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26753
27596
|
className: string;
|
|
26754
27597
|
equipmentName?: string | undefined;
|
|
26755
27598
|
enabled: boolean;
|
|
26756
|
-
operate: "single" | "resource" | "global";
|
|
27599
|
+
operate: "single" | "resource" | "global" | "resetAll";
|
|
26757
27600
|
mappings: {
|
|
26758
27601
|
target: string;
|
|
26759
27602
|
source?: string | undefined;
|
|
@@ -26761,7 +27604,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26761
27604
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
26762
27605
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
26763
27606
|
enabled?: boolean | undefined;
|
|
26764
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
27607
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
26765
27608
|
transformType?: "width" | "height" | undefined;
|
|
26766
27609
|
transformPrecision?: number | undefined;
|
|
26767
27610
|
dictName?: string | undefined;
|
|
@@ -26771,6 +27614,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26771
27614
|
operand: string;
|
|
26772
27615
|
value: string | number | boolean;
|
|
26773
27616
|
}[] | undefined;
|
|
27617
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
27618
|
+
expression?: string | undefined;
|
|
26774
27619
|
}[];
|
|
26775
27620
|
resourceMappings?: {
|
|
26776
27621
|
add?: {
|
|
@@ -26780,7 +27625,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26780
27625
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
26781
27626
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
26782
27627
|
enabled?: boolean | undefined;
|
|
26783
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
27628
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
26784
27629
|
transformType?: "width" | "height" | undefined;
|
|
26785
27630
|
transformPrecision?: number | undefined;
|
|
26786
27631
|
dictName?: string | undefined;
|
|
@@ -26790,6 +27635,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26790
27635
|
operand: string;
|
|
26791
27636
|
value: string | number | boolean;
|
|
26792
27637
|
}[] | undefined;
|
|
27638
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
27639
|
+
expression?: string | undefined;
|
|
26793
27640
|
}[] | undefined;
|
|
26794
27641
|
remove?: {
|
|
26795
27642
|
target: string;
|
|
@@ -26798,7 +27645,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26798
27645
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
26799
27646
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
26800
27647
|
enabled?: boolean | undefined;
|
|
26801
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
27648
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
26802
27649
|
transformType?: "width" | "height" | undefined;
|
|
26803
27650
|
transformPrecision?: number | undefined;
|
|
26804
27651
|
dictName?: string | undefined;
|
|
@@ -26808,6 +27655,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26808
27655
|
operand: string;
|
|
26809
27656
|
value: string | number | boolean;
|
|
26810
27657
|
}[] | undefined;
|
|
27658
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
27659
|
+
expression?: string | undefined;
|
|
26811
27660
|
}[] | undefined;
|
|
26812
27661
|
} | undefined;
|
|
26813
27662
|
globalFields?: {
|
|
@@ -26872,9 +27721,10 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26872
27721
|
}[]>;
|
|
26873
27722
|
updateCases: (data?: ICase[]) => void;
|
|
26874
27723
|
selectCase: (uuid: string) => void;
|
|
26875
|
-
addCase: (data?: ICase) =>
|
|
27724
|
+
addCase: (data?: ICase) => ICase;
|
|
26876
27725
|
removeCase: (uuid: string) => void;
|
|
26877
27726
|
clearCases: () => void;
|
|
27727
|
+
resetAll: () => void;
|
|
26878
27728
|
setWsProxyConfig: (configs: WsProxyCaseConfig[]) => void;
|
|
26879
27729
|
}, never>, Pick<{
|
|
26880
27730
|
casesLoading: import('vue').Ref<boolean, boolean>;
|
|
@@ -26932,6 +27782,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26932
27782
|
showShadow?: boolean | undefined;
|
|
26933
27783
|
showText?: boolean | undefined;
|
|
26934
27784
|
inFlow?: boolean | undefined;
|
|
27785
|
+
resources?: {
|
|
27786
|
+
name?: string | undefined;
|
|
27787
|
+
resourceId?: string | undefined;
|
|
27788
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
27789
|
+
color?: string | undefined;
|
|
27790
|
+
}[] | undefined;
|
|
26935
27791
|
operatingData?: unknown;
|
|
26936
27792
|
width: number;
|
|
26937
27793
|
height: number;
|
|
@@ -26991,6 +27847,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
26991
27847
|
[x: string]: unknown;
|
|
26992
27848
|
id: string;
|
|
26993
27849
|
};
|
|
27850
|
+
} | {
|
|
27851
|
+
operatingType: "resetAll";
|
|
27852
|
+
rawData?: {
|
|
27853
|
+
[x: string]: unknown;
|
|
27854
|
+
id: string;
|
|
27855
|
+
} | undefined;
|
|
26994
27856
|
} | {
|
|
26995
27857
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
26996
27858
|
light?: {
|
|
@@ -27007,6 +27869,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
27007
27869
|
isOut: boolean;
|
|
27008
27870
|
} | undefined;
|
|
27009
27871
|
stationRotatable?: boolean | undefined;
|
|
27872
|
+
isWorking?: boolean | undefined;
|
|
27010
27873
|
operatingType?: "model" | undefined;
|
|
27011
27874
|
id: string;
|
|
27012
27875
|
rawData: {
|
|
@@ -27165,6 +28028,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
27165
28028
|
isIn: boolean;
|
|
27166
28029
|
isOut: boolean;
|
|
27167
28030
|
} | undefined;
|
|
28031
|
+
isWorking?: boolean | undefined;
|
|
27168
28032
|
operatingType?: "model" | undefined;
|
|
27169
28033
|
id: string;
|
|
27170
28034
|
rawData: {
|
|
@@ -27418,6 +28282,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
27418
28282
|
showShadow?: boolean | undefined;
|
|
27419
28283
|
showText?: boolean | undefined;
|
|
27420
28284
|
inFlow?: boolean | undefined;
|
|
28285
|
+
resources?: {
|
|
28286
|
+
name?: string | undefined;
|
|
28287
|
+
resourceId?: string | undefined;
|
|
28288
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
28289
|
+
color?: string | undefined;
|
|
28290
|
+
}[] | undefined;
|
|
27421
28291
|
operatingData?: unknown;
|
|
27422
28292
|
width: number;
|
|
27423
28293
|
height: number;
|
|
@@ -27477,6 +28347,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
27477
28347
|
[x: string]: unknown;
|
|
27478
28348
|
id: string;
|
|
27479
28349
|
};
|
|
28350
|
+
} | {
|
|
28351
|
+
operatingType: "resetAll";
|
|
28352
|
+
rawData?: {
|
|
28353
|
+
[x: string]: unknown;
|
|
28354
|
+
id: string;
|
|
28355
|
+
} | undefined;
|
|
27480
28356
|
} | {
|
|
27481
28357
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
27482
28358
|
light?: {
|
|
@@ -27493,6 +28369,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
27493
28369
|
isOut: boolean;
|
|
27494
28370
|
} | undefined;
|
|
27495
28371
|
stationRotatable?: boolean | undefined;
|
|
28372
|
+
isWorking?: boolean | undefined;
|
|
27496
28373
|
operatingType?: "model" | undefined;
|
|
27497
28374
|
id: string;
|
|
27498
28375
|
rawData: {
|
|
@@ -27651,6 +28528,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
27651
28528
|
isIn: boolean;
|
|
27652
28529
|
isOut: boolean;
|
|
27653
28530
|
} | undefined;
|
|
28531
|
+
isWorking?: boolean | undefined;
|
|
27654
28532
|
operatingType?: "model" | undefined;
|
|
27655
28533
|
id: string;
|
|
27656
28534
|
rawData: {
|
|
@@ -27905,6 +28783,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
27905
28783
|
showShadow?: boolean | undefined;
|
|
27906
28784
|
showText?: boolean | undefined;
|
|
27907
28785
|
inFlow?: boolean | undefined;
|
|
28786
|
+
resources?: {
|
|
28787
|
+
name?: string | undefined;
|
|
28788
|
+
resourceId?: string | undefined;
|
|
28789
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
28790
|
+
color?: string | undefined;
|
|
28791
|
+
}[] | undefined;
|
|
27908
28792
|
operatingData?: unknown;
|
|
27909
28793
|
width: number;
|
|
27910
28794
|
height: number;
|
|
@@ -27967,6 +28851,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
27967
28851
|
[x: string]: unknown;
|
|
27968
28852
|
id: string;
|
|
27969
28853
|
};
|
|
28854
|
+
} | {
|
|
28855
|
+
operatingType: "resetAll";
|
|
28856
|
+
rawData?: {
|
|
28857
|
+
[x: string]: unknown;
|
|
28858
|
+
id: string;
|
|
28859
|
+
} | undefined;
|
|
27970
28860
|
} | {
|
|
27971
28861
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
27972
28862
|
light?: {
|
|
@@ -27983,6 +28873,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
27983
28873
|
isOut: boolean;
|
|
27984
28874
|
} | undefined;
|
|
27985
28875
|
stationRotatable?: boolean | undefined;
|
|
28876
|
+
isWorking?: boolean | undefined;
|
|
27986
28877
|
operatingType?: "model" | undefined;
|
|
27987
28878
|
id: string;
|
|
27988
28879
|
rawData: {
|
|
@@ -28141,6 +29032,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
28141
29032
|
isIn: boolean;
|
|
28142
29033
|
isOut: boolean;
|
|
28143
29034
|
} | undefined;
|
|
29035
|
+
isWorking?: boolean | undefined;
|
|
28144
29036
|
operatingType?: "model" | undefined;
|
|
28145
29037
|
id: string;
|
|
28146
29038
|
rawData: {
|
|
@@ -28395,6 +29287,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
28395
29287
|
showShadow?: boolean | undefined;
|
|
28396
29288
|
showText?: boolean | undefined;
|
|
28397
29289
|
inFlow?: boolean | undefined;
|
|
29290
|
+
resources?: {
|
|
29291
|
+
name?: string | undefined;
|
|
29292
|
+
resourceId?: string | undefined;
|
|
29293
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
29294
|
+
color?: string | undefined;
|
|
29295
|
+
}[] | undefined;
|
|
28398
29296
|
operatingData?: unknown;
|
|
28399
29297
|
width: number;
|
|
28400
29298
|
height: number;
|
|
@@ -28455,6 +29353,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
28455
29353
|
[x: string]: unknown;
|
|
28456
29354
|
id: string;
|
|
28457
29355
|
};
|
|
29356
|
+
} | {
|
|
29357
|
+
operatingType: "resetAll";
|
|
29358
|
+
rawData?: {
|
|
29359
|
+
[x: string]: unknown;
|
|
29360
|
+
id: string;
|
|
29361
|
+
} | undefined;
|
|
28458
29362
|
} | {
|
|
28459
29363
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
28460
29364
|
light?: {
|
|
@@ -28471,6 +29375,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
28471
29375
|
isOut: boolean;
|
|
28472
29376
|
} | undefined;
|
|
28473
29377
|
stationRotatable?: boolean | undefined;
|
|
29378
|
+
isWorking?: boolean | undefined;
|
|
28474
29379
|
operatingType?: "model" | undefined;
|
|
28475
29380
|
id: string;
|
|
28476
29381
|
rawData: {
|
|
@@ -28629,6 +29534,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
28629
29534
|
isIn: boolean;
|
|
28630
29535
|
isOut: boolean;
|
|
28631
29536
|
} | undefined;
|
|
29537
|
+
isWorking?: boolean | undefined;
|
|
28632
29538
|
operatingType?: "model" | undefined;
|
|
28633
29539
|
id: string;
|
|
28634
29540
|
rawData: {
|
|
@@ -28881,6 +29787,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
28881
29787
|
showShadow?: boolean | undefined;
|
|
28882
29788
|
showText?: boolean | undefined;
|
|
28883
29789
|
inFlow?: boolean | undefined;
|
|
29790
|
+
resources?: {
|
|
29791
|
+
name?: string | undefined;
|
|
29792
|
+
resourceId?: string | undefined;
|
|
29793
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
29794
|
+
color?: string | undefined;
|
|
29795
|
+
}[] | undefined;
|
|
28884
29796
|
operatingData?: unknown;
|
|
28885
29797
|
width: number;
|
|
28886
29798
|
height: number;
|
|
@@ -28940,6 +29852,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
28940
29852
|
[x: string]: unknown;
|
|
28941
29853
|
id: string;
|
|
28942
29854
|
};
|
|
29855
|
+
} | {
|
|
29856
|
+
operatingType: "resetAll";
|
|
29857
|
+
rawData?: {
|
|
29858
|
+
[x: string]: unknown;
|
|
29859
|
+
id: string;
|
|
29860
|
+
} | undefined;
|
|
28943
29861
|
} | {
|
|
28944
29862
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
28945
29863
|
light?: {
|
|
@@ -28956,6 +29874,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
28956
29874
|
isOut: boolean;
|
|
28957
29875
|
} | undefined;
|
|
28958
29876
|
stationRotatable?: boolean | undefined;
|
|
29877
|
+
isWorking?: boolean | undefined;
|
|
28959
29878
|
operatingType?: "model" | undefined;
|
|
28960
29879
|
id: string;
|
|
28961
29880
|
rawData: {
|
|
@@ -29114,6 +30033,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
29114
30033
|
isIn: boolean;
|
|
29115
30034
|
isOut: boolean;
|
|
29116
30035
|
} | undefined;
|
|
30036
|
+
isWorking?: boolean | undefined;
|
|
29117
30037
|
operatingType?: "model" | undefined;
|
|
29118
30038
|
id: string;
|
|
29119
30039
|
rawData: {
|
|
@@ -29366,6 +30286,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
29366
30286
|
showShadow?: boolean | undefined;
|
|
29367
30287
|
showText?: boolean | undefined;
|
|
29368
30288
|
inFlow?: boolean | undefined;
|
|
30289
|
+
resources?: {
|
|
30290
|
+
name?: string | undefined;
|
|
30291
|
+
resourceId?: string | undefined;
|
|
30292
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
30293
|
+
color?: string | undefined;
|
|
30294
|
+
}[] | undefined;
|
|
29369
30295
|
operatingData?: unknown;
|
|
29370
30296
|
width: number;
|
|
29371
30297
|
height: number;
|
|
@@ -29425,6 +30351,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
29425
30351
|
[x: string]: unknown;
|
|
29426
30352
|
id: string;
|
|
29427
30353
|
};
|
|
30354
|
+
} | {
|
|
30355
|
+
operatingType: "resetAll";
|
|
30356
|
+
rawData?: {
|
|
30357
|
+
[x: string]: unknown;
|
|
30358
|
+
id: string;
|
|
30359
|
+
} | undefined;
|
|
29428
30360
|
} | {
|
|
29429
30361
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
29430
30362
|
light?: {
|
|
@@ -29441,6 +30373,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
29441
30373
|
isOut: boolean;
|
|
29442
30374
|
} | undefined;
|
|
29443
30375
|
stationRotatable?: boolean | undefined;
|
|
30376
|
+
isWorking?: boolean | undefined;
|
|
29444
30377
|
operatingType?: "model" | undefined;
|
|
29445
30378
|
id: string;
|
|
29446
30379
|
rawData: {
|
|
@@ -29599,6 +30532,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
29599
30532
|
isIn: boolean;
|
|
29600
30533
|
isOut: boolean;
|
|
29601
30534
|
} | undefined;
|
|
30535
|
+
isWorking?: boolean | undefined;
|
|
29602
30536
|
operatingType?: "model" | undefined;
|
|
29603
30537
|
id: string;
|
|
29604
30538
|
rawData: {
|
|
@@ -29862,6 +30796,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
29862
30796
|
showShadow?: boolean | undefined;
|
|
29863
30797
|
showText?: boolean | undefined;
|
|
29864
30798
|
inFlow?: boolean | undefined;
|
|
30799
|
+
resources?: {
|
|
30800
|
+
name?: string | undefined;
|
|
30801
|
+
resourceId?: string | undefined;
|
|
30802
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
30803
|
+
color?: string | undefined;
|
|
30804
|
+
}[] | undefined;
|
|
29865
30805
|
operatingData?: unknown;
|
|
29866
30806
|
width: number;
|
|
29867
30807
|
height: number;
|
|
@@ -29913,6 +30853,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
29913
30853
|
showShadow?: boolean | undefined;
|
|
29914
30854
|
showText?: boolean | undefined;
|
|
29915
30855
|
inFlow?: boolean | undefined;
|
|
30856
|
+
resources?: {
|
|
30857
|
+
name?: string | undefined;
|
|
30858
|
+
resourceId?: string | undefined;
|
|
30859
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
30860
|
+
color?: string | undefined;
|
|
30861
|
+
}[] | undefined;
|
|
29916
30862
|
operatingData?: unknown;
|
|
29917
30863
|
width: number;
|
|
29918
30864
|
height: number;
|
|
@@ -29972,6 +30918,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
29972
30918
|
[x: string]: unknown;
|
|
29973
30919
|
id: string;
|
|
29974
30920
|
};
|
|
30921
|
+
} | {
|
|
30922
|
+
operatingType: "resetAll";
|
|
30923
|
+
rawData?: {
|
|
30924
|
+
[x: string]: unknown;
|
|
30925
|
+
id: string;
|
|
30926
|
+
} | undefined;
|
|
29975
30927
|
} | {
|
|
29976
30928
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
29977
30929
|
light?: {
|
|
@@ -29988,6 +30940,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
29988
30940
|
isOut: boolean;
|
|
29989
30941
|
} | undefined;
|
|
29990
30942
|
stationRotatable?: boolean | undefined;
|
|
30943
|
+
isWorking?: boolean | undefined;
|
|
29991
30944
|
operatingType?: "model" | undefined;
|
|
29992
30945
|
id: string;
|
|
29993
30946
|
rawData: {
|
|
@@ -30146,6 +31099,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
30146
31099
|
isIn: boolean;
|
|
30147
31100
|
isOut: boolean;
|
|
30148
31101
|
} | undefined;
|
|
31102
|
+
isWorking?: boolean | undefined;
|
|
30149
31103
|
operatingType?: "model" | undefined;
|
|
30150
31104
|
id: string;
|
|
30151
31105
|
rawData: {
|
|
@@ -30409,6 +31363,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
30409
31363
|
showShadow?: boolean | undefined;
|
|
30410
31364
|
showText?: boolean | undefined;
|
|
30411
31365
|
inFlow?: boolean | undefined;
|
|
31366
|
+
resources?: {
|
|
31367
|
+
name?: string | undefined;
|
|
31368
|
+
resourceId?: string | undefined;
|
|
31369
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
31370
|
+
color?: string | undefined;
|
|
31371
|
+
}[] | undefined;
|
|
30412
31372
|
operatingData?: unknown;
|
|
30413
31373
|
width: number;
|
|
30414
31374
|
height: number;
|
|
@@ -30460,6 +31420,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
30460
31420
|
showShadow?: boolean | undefined;
|
|
30461
31421
|
showText?: boolean | undefined;
|
|
30462
31422
|
inFlow?: boolean | undefined;
|
|
31423
|
+
resources?: {
|
|
31424
|
+
name?: string | undefined;
|
|
31425
|
+
resourceId?: string | undefined;
|
|
31426
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
31427
|
+
color?: string | undefined;
|
|
31428
|
+
}[] | undefined;
|
|
30463
31429
|
operatingData?: unknown;
|
|
30464
31430
|
width: number;
|
|
30465
31431
|
height: number;
|
|
@@ -30519,6 +31485,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
30519
31485
|
[x: string]: unknown;
|
|
30520
31486
|
id: string;
|
|
30521
31487
|
};
|
|
31488
|
+
} | {
|
|
31489
|
+
operatingType: "resetAll";
|
|
31490
|
+
rawData?: {
|
|
31491
|
+
[x: string]: unknown;
|
|
31492
|
+
id: string;
|
|
31493
|
+
} | undefined;
|
|
30522
31494
|
} | {
|
|
30523
31495
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
30524
31496
|
light?: {
|
|
@@ -30535,6 +31507,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
30535
31507
|
isOut: boolean;
|
|
30536
31508
|
} | undefined;
|
|
30537
31509
|
stationRotatable?: boolean | undefined;
|
|
31510
|
+
isWorking?: boolean | undefined;
|
|
30538
31511
|
operatingType?: "model" | undefined;
|
|
30539
31512
|
id: string;
|
|
30540
31513
|
rawData: {
|
|
@@ -30693,6 +31666,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
30693
31666
|
isIn: boolean;
|
|
30694
31667
|
isOut: boolean;
|
|
30695
31668
|
} | undefined;
|
|
31669
|
+
isWorking?: boolean | undefined;
|
|
30696
31670
|
operatingType?: "model" | undefined;
|
|
30697
31671
|
id: string;
|
|
30698
31672
|
rawData: {
|
|
@@ -30954,6 +31928,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
30954
31928
|
showShadow?: boolean | undefined;
|
|
30955
31929
|
showText?: boolean | undefined;
|
|
30956
31930
|
inFlow?: boolean | undefined;
|
|
31931
|
+
resources?: {
|
|
31932
|
+
name?: string | undefined;
|
|
31933
|
+
resourceId?: string | undefined;
|
|
31934
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
31935
|
+
color?: string | undefined;
|
|
31936
|
+
}[] | undefined;
|
|
30957
31937
|
operatingData?: unknown;
|
|
30958
31938
|
width: number;
|
|
30959
31939
|
height: number;
|
|
@@ -31005,6 +31985,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
31005
31985
|
showShadow?: boolean | undefined;
|
|
31006
31986
|
showText?: boolean | undefined;
|
|
31007
31987
|
inFlow?: boolean | undefined;
|
|
31988
|
+
resources?: {
|
|
31989
|
+
name?: string | undefined;
|
|
31990
|
+
resourceId?: string | undefined;
|
|
31991
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
31992
|
+
color?: string | undefined;
|
|
31993
|
+
}[] | undefined;
|
|
31008
31994
|
operatingData?: unknown;
|
|
31009
31995
|
width: number;
|
|
31010
31996
|
height: number;
|
|
@@ -31064,6 +32050,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
31064
32050
|
[x: string]: unknown;
|
|
31065
32051
|
id: string;
|
|
31066
32052
|
};
|
|
32053
|
+
} | {
|
|
32054
|
+
operatingType: "resetAll";
|
|
32055
|
+
rawData?: {
|
|
32056
|
+
[x: string]: unknown;
|
|
32057
|
+
id: string;
|
|
32058
|
+
} | undefined;
|
|
31067
32059
|
} | {
|
|
31068
32060
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
31069
32061
|
light?: {
|
|
@@ -31080,6 +32072,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
31080
32072
|
isOut: boolean;
|
|
31081
32073
|
} | undefined;
|
|
31082
32074
|
stationRotatable?: boolean | undefined;
|
|
32075
|
+
isWorking?: boolean | undefined;
|
|
31083
32076
|
operatingType?: "model" | undefined;
|
|
31084
32077
|
id: string;
|
|
31085
32078
|
rawData: {
|
|
@@ -31238,6 +32231,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
31238
32231
|
isIn: boolean;
|
|
31239
32232
|
isOut: boolean;
|
|
31240
32233
|
} | undefined;
|
|
32234
|
+
isWorking?: boolean | undefined;
|
|
31241
32235
|
operatingType?: "model" | undefined;
|
|
31242
32236
|
id: string;
|
|
31243
32237
|
rawData: {
|
|
@@ -31500,6 +32494,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
31500
32494
|
[x: string]: unknown;
|
|
31501
32495
|
id: string;
|
|
31502
32496
|
};
|
|
32497
|
+
} | {
|
|
32498
|
+
operatingType: "resetAll";
|
|
32499
|
+
rawData?: {
|
|
32500
|
+
[x: string]: unknown;
|
|
32501
|
+
id: string;
|
|
32502
|
+
} | undefined;
|
|
31503
32503
|
} | {
|
|
31504
32504
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
31505
32505
|
light?: {
|
|
@@ -31516,6 +32516,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
31516
32516
|
isOut: boolean;
|
|
31517
32517
|
} | undefined;
|
|
31518
32518
|
stationRotatable?: boolean | undefined;
|
|
32519
|
+
isWorking?: boolean | undefined;
|
|
31519
32520
|
operatingType?: "model" | undefined;
|
|
31520
32521
|
id: string;
|
|
31521
32522
|
rawData: {
|
|
@@ -31674,6 +32675,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
31674
32675
|
isIn: boolean;
|
|
31675
32676
|
isOut: boolean;
|
|
31676
32677
|
} | undefined;
|
|
32678
|
+
isWorking?: boolean | undefined;
|
|
31677
32679
|
operatingType?: "model" | undefined;
|
|
31678
32680
|
id: string;
|
|
31679
32681
|
rawData: {
|
|
@@ -31934,6 +32936,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
31934
32936
|
showShadow?: boolean | undefined;
|
|
31935
32937
|
showText?: boolean | undefined;
|
|
31936
32938
|
inFlow?: boolean | undefined;
|
|
32939
|
+
resources?: {
|
|
32940
|
+
name?: string | undefined;
|
|
32941
|
+
resourceId?: string | undefined;
|
|
32942
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
32943
|
+
color?: string | undefined;
|
|
32944
|
+
}[] | undefined;
|
|
31937
32945
|
operatingData?: unknown;
|
|
31938
32946
|
width: number;
|
|
31939
32947
|
height: number;
|
|
@@ -31985,6 +32993,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
31985
32993
|
showShadow?: boolean | undefined;
|
|
31986
32994
|
showText?: boolean | undefined;
|
|
31987
32995
|
inFlow?: boolean | undefined;
|
|
32996
|
+
resources?: {
|
|
32997
|
+
name?: string | undefined;
|
|
32998
|
+
resourceId?: string | undefined;
|
|
32999
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
33000
|
+
color?: string | undefined;
|
|
33001
|
+
}[] | undefined;
|
|
31988
33002
|
operatingData?: unknown;
|
|
31989
33003
|
width: number;
|
|
31990
33004
|
height: number;
|
|
@@ -32044,6 +33058,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
32044
33058
|
[x: string]: unknown;
|
|
32045
33059
|
id: string;
|
|
32046
33060
|
};
|
|
33061
|
+
} | {
|
|
33062
|
+
operatingType: "resetAll";
|
|
33063
|
+
rawData?: {
|
|
33064
|
+
[x: string]: unknown;
|
|
33065
|
+
id: string;
|
|
33066
|
+
} | undefined;
|
|
32047
33067
|
} | {
|
|
32048
33068
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
32049
33069
|
light?: {
|
|
@@ -32060,6 +33080,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
32060
33080
|
isOut: boolean;
|
|
32061
33081
|
} | undefined;
|
|
32062
33082
|
stationRotatable?: boolean | undefined;
|
|
33083
|
+
isWorking?: boolean | undefined;
|
|
32063
33084
|
operatingType?: "model" | undefined;
|
|
32064
33085
|
id: string;
|
|
32065
33086
|
rawData: {
|
|
@@ -32218,6 +33239,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
32218
33239
|
isIn: boolean;
|
|
32219
33240
|
isOut: boolean;
|
|
32220
33241
|
} | undefined;
|
|
33242
|
+
isWorking?: boolean | undefined;
|
|
32221
33243
|
operatingType?: "model" | undefined;
|
|
32222
33244
|
id: string;
|
|
32223
33245
|
rawData: {
|
|
@@ -32479,6 +33501,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
32479
33501
|
showShadow?: boolean | undefined;
|
|
32480
33502
|
showText?: boolean | undefined;
|
|
32481
33503
|
inFlow?: boolean | undefined;
|
|
33504
|
+
resources?: {
|
|
33505
|
+
name?: string | undefined;
|
|
33506
|
+
resourceId?: string | undefined;
|
|
33507
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
33508
|
+
color?: string | undefined;
|
|
33509
|
+
}[] | undefined;
|
|
32482
33510
|
operatingData?: unknown;
|
|
32483
33511
|
width: number;
|
|
32484
33512
|
height: number;
|
|
@@ -32530,6 +33558,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
32530
33558
|
showShadow?: boolean | undefined;
|
|
32531
33559
|
showText?: boolean | undefined;
|
|
32532
33560
|
inFlow?: boolean | undefined;
|
|
33561
|
+
resources?: {
|
|
33562
|
+
name?: string | undefined;
|
|
33563
|
+
resourceId?: string | undefined;
|
|
33564
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
33565
|
+
color?: string | undefined;
|
|
33566
|
+
}[] | undefined;
|
|
32533
33567
|
operatingData?: unknown;
|
|
32534
33568
|
width: number;
|
|
32535
33569
|
height: number;
|
|
@@ -32590,6 +33624,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
32590
33624
|
[x: string]: unknown;
|
|
32591
33625
|
id: string;
|
|
32592
33626
|
};
|
|
33627
|
+
} | {
|
|
33628
|
+
operatingType: "resetAll";
|
|
33629
|
+
rawData?: {
|
|
33630
|
+
[x: string]: unknown;
|
|
33631
|
+
id: string;
|
|
33632
|
+
} | undefined;
|
|
32593
33633
|
} | {
|
|
32594
33634
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
32595
33635
|
light?: {
|
|
@@ -32606,6 +33646,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
32606
33646
|
isOut: boolean;
|
|
32607
33647
|
} | undefined;
|
|
32608
33648
|
stationRotatable?: boolean | undefined;
|
|
33649
|
+
isWorking?: boolean | undefined;
|
|
32609
33650
|
operatingType?: "model" | undefined;
|
|
32610
33651
|
id: string;
|
|
32611
33652
|
rawData: {
|
|
@@ -32764,6 +33805,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
32764
33805
|
isIn: boolean;
|
|
32765
33806
|
isOut: boolean;
|
|
32766
33807
|
} | undefined;
|
|
33808
|
+
isWorking?: boolean | undefined;
|
|
32767
33809
|
operatingType?: "model" | undefined;
|
|
32768
33810
|
id: string;
|
|
32769
33811
|
rawData: {
|
|
@@ -33018,6 +34060,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
33018
34060
|
showShadow?: boolean | undefined;
|
|
33019
34061
|
showText?: boolean | undefined;
|
|
33020
34062
|
inFlow?: boolean | undefined;
|
|
34063
|
+
resources?: {
|
|
34064
|
+
name?: string | undefined;
|
|
34065
|
+
resourceId?: string | undefined;
|
|
34066
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
34067
|
+
color?: string | undefined;
|
|
34068
|
+
}[] | undefined;
|
|
33021
34069
|
operatingData?: unknown;
|
|
33022
34070
|
width: number;
|
|
33023
34071
|
height: number;
|
|
@@ -33077,6 +34125,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
33077
34125
|
[x: string]: unknown;
|
|
33078
34126
|
id: string;
|
|
33079
34127
|
};
|
|
34128
|
+
} | {
|
|
34129
|
+
operatingType: "resetAll";
|
|
34130
|
+
rawData?: {
|
|
34131
|
+
[x: string]: unknown;
|
|
34132
|
+
id: string;
|
|
34133
|
+
} | undefined;
|
|
33080
34134
|
} | {
|
|
33081
34135
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
33082
34136
|
light?: {
|
|
@@ -33093,6 +34147,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
33093
34147
|
isOut: boolean;
|
|
33094
34148
|
} | undefined;
|
|
33095
34149
|
stationRotatable?: boolean | undefined;
|
|
34150
|
+
isWorking?: boolean | undefined;
|
|
33096
34151
|
operatingType?: "model" | undefined;
|
|
33097
34152
|
id: string;
|
|
33098
34153
|
rawData: {
|
|
@@ -33251,6 +34306,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
33251
34306
|
isIn: boolean;
|
|
33252
34307
|
isOut: boolean;
|
|
33253
34308
|
} | undefined;
|
|
34309
|
+
isWorking?: boolean | undefined;
|
|
33254
34310
|
operatingType?: "model" | undefined;
|
|
33255
34311
|
id: string;
|
|
33256
34312
|
rawData: {
|
|
@@ -33532,6 +34588,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
33532
34588
|
showShadow?: boolean | undefined;
|
|
33533
34589
|
showText?: boolean | undefined;
|
|
33534
34590
|
inFlow?: boolean | undefined;
|
|
34591
|
+
resources?: {
|
|
34592
|
+
name?: string | undefined;
|
|
34593
|
+
resourceId?: string | undefined;
|
|
34594
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
34595
|
+
color?: string | undefined;
|
|
34596
|
+
}[] | undefined;
|
|
33535
34597
|
operatingData?: unknown;
|
|
33536
34598
|
width: number;
|
|
33537
34599
|
height: number;
|
|
@@ -33591,6 +34653,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
33591
34653
|
[x: string]: unknown;
|
|
33592
34654
|
id: string;
|
|
33593
34655
|
};
|
|
34656
|
+
} | {
|
|
34657
|
+
operatingType: "resetAll";
|
|
34658
|
+
rawData?: {
|
|
34659
|
+
[x: string]: unknown;
|
|
34660
|
+
id: string;
|
|
34661
|
+
} | undefined;
|
|
33594
34662
|
} | {
|
|
33595
34663
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
33596
34664
|
light?: {
|
|
@@ -33607,6 +34675,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
33607
34675
|
isOut: boolean;
|
|
33608
34676
|
} | undefined;
|
|
33609
34677
|
stationRotatable?: boolean | undefined;
|
|
34678
|
+
isWorking?: boolean | undefined;
|
|
33610
34679
|
operatingType?: "model" | undefined;
|
|
33611
34680
|
id: string;
|
|
33612
34681
|
rawData: {
|
|
@@ -33765,6 +34834,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
33765
34834
|
isIn: boolean;
|
|
33766
34835
|
isOut: boolean;
|
|
33767
34836
|
} | undefined;
|
|
34837
|
+
isWorking?: boolean | undefined;
|
|
33768
34838
|
operatingType?: "model" | undefined;
|
|
33769
34839
|
id: string;
|
|
33770
34840
|
rawData: {
|
|
@@ -34018,6 +35088,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
34018
35088
|
showShadow?: boolean | undefined;
|
|
34019
35089
|
showText?: boolean | undefined;
|
|
34020
35090
|
inFlow?: boolean | undefined;
|
|
35091
|
+
resources?: {
|
|
35092
|
+
name?: string | undefined;
|
|
35093
|
+
resourceId?: string | undefined;
|
|
35094
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
35095
|
+
color?: string | undefined;
|
|
35096
|
+
}[] | undefined;
|
|
34021
35097
|
operatingData?: unknown;
|
|
34022
35098
|
width: number;
|
|
34023
35099
|
height: number;
|
|
@@ -34077,6 +35153,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
34077
35153
|
[x: string]: unknown;
|
|
34078
35154
|
id: string;
|
|
34079
35155
|
};
|
|
35156
|
+
} | {
|
|
35157
|
+
operatingType: "resetAll";
|
|
35158
|
+
rawData?: {
|
|
35159
|
+
[x: string]: unknown;
|
|
35160
|
+
id: string;
|
|
35161
|
+
} | undefined;
|
|
34080
35162
|
} | {
|
|
34081
35163
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
34082
35164
|
light?: {
|
|
@@ -34093,6 +35175,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
34093
35175
|
isOut: boolean;
|
|
34094
35176
|
} | undefined;
|
|
34095
35177
|
stationRotatable?: boolean | undefined;
|
|
35178
|
+
isWorking?: boolean | undefined;
|
|
34096
35179
|
operatingType?: "model" | undefined;
|
|
34097
35180
|
id: string;
|
|
34098
35181
|
rawData: {
|
|
@@ -34251,6 +35334,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
34251
35334
|
isIn: boolean;
|
|
34252
35335
|
isOut: boolean;
|
|
34253
35336
|
} | undefined;
|
|
35337
|
+
isWorking?: boolean | undefined;
|
|
34254
35338
|
operatingType?: "model" | undefined;
|
|
34255
35339
|
id: string;
|
|
34256
35340
|
rawData: {
|
|
@@ -34505,6 +35589,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
34505
35589
|
showShadow?: boolean | undefined;
|
|
34506
35590
|
showText?: boolean | undefined;
|
|
34507
35591
|
inFlow?: boolean | undefined;
|
|
35592
|
+
resources?: {
|
|
35593
|
+
name?: string | undefined;
|
|
35594
|
+
resourceId?: string | undefined;
|
|
35595
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
35596
|
+
color?: string | undefined;
|
|
35597
|
+
}[] | undefined;
|
|
34508
35598
|
operatingData?: unknown;
|
|
34509
35599
|
width: number;
|
|
34510
35600
|
height: number;
|
|
@@ -34567,6 +35657,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
34567
35657
|
[x: string]: unknown;
|
|
34568
35658
|
id: string;
|
|
34569
35659
|
};
|
|
35660
|
+
} | {
|
|
35661
|
+
operatingType: "resetAll";
|
|
35662
|
+
rawData?: {
|
|
35663
|
+
[x: string]: unknown;
|
|
35664
|
+
id: string;
|
|
35665
|
+
} | undefined;
|
|
34570
35666
|
} | {
|
|
34571
35667
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
34572
35668
|
light?: {
|
|
@@ -34583,6 +35679,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
34583
35679
|
isOut: boolean;
|
|
34584
35680
|
} | undefined;
|
|
34585
35681
|
stationRotatable?: boolean | undefined;
|
|
35682
|
+
isWorking?: boolean | undefined;
|
|
34586
35683
|
operatingType?: "model" | undefined;
|
|
34587
35684
|
id: string;
|
|
34588
35685
|
rawData: {
|
|
@@ -34741,6 +35838,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
34741
35838
|
isIn: boolean;
|
|
34742
35839
|
isOut: boolean;
|
|
34743
35840
|
} | undefined;
|
|
35841
|
+
isWorking?: boolean | undefined;
|
|
34744
35842
|
operatingType?: "model" | undefined;
|
|
34745
35843
|
id: string;
|
|
34746
35844
|
rawData: {
|
|
@@ -34995,6 +36093,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
34995
36093
|
showShadow?: boolean | undefined;
|
|
34996
36094
|
showText?: boolean | undefined;
|
|
34997
36095
|
inFlow?: boolean | undefined;
|
|
36096
|
+
resources?: {
|
|
36097
|
+
name?: string | undefined;
|
|
36098
|
+
resourceId?: string | undefined;
|
|
36099
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
36100
|
+
color?: string | undefined;
|
|
36101
|
+
}[] | undefined;
|
|
34998
36102
|
operatingData?: unknown;
|
|
34999
36103
|
width: number;
|
|
35000
36104
|
height: number;
|
|
@@ -35055,6 +36159,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
35055
36159
|
[x: string]: unknown;
|
|
35056
36160
|
id: string;
|
|
35057
36161
|
};
|
|
36162
|
+
} | {
|
|
36163
|
+
operatingType: "resetAll";
|
|
36164
|
+
rawData?: {
|
|
36165
|
+
[x: string]: unknown;
|
|
36166
|
+
id: string;
|
|
36167
|
+
} | undefined;
|
|
35058
36168
|
} | {
|
|
35059
36169
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
35060
36170
|
light?: {
|
|
@@ -35071,6 +36181,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
35071
36181
|
isOut: boolean;
|
|
35072
36182
|
} | undefined;
|
|
35073
36183
|
stationRotatable?: boolean | undefined;
|
|
36184
|
+
isWorking?: boolean | undefined;
|
|
35074
36185
|
operatingType?: "model" | undefined;
|
|
35075
36186
|
id: string;
|
|
35076
36187
|
rawData: {
|
|
@@ -35229,6 +36340,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
35229
36340
|
isIn: boolean;
|
|
35230
36341
|
isOut: boolean;
|
|
35231
36342
|
} | undefined;
|
|
36343
|
+
isWorking?: boolean | undefined;
|
|
35232
36344
|
operatingType?: "model" | undefined;
|
|
35233
36345
|
id: string;
|
|
35234
36346
|
rawData: {
|
|
@@ -35481,6 +36593,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
35481
36593
|
showShadow?: boolean | undefined;
|
|
35482
36594
|
showText?: boolean | undefined;
|
|
35483
36595
|
inFlow?: boolean | undefined;
|
|
36596
|
+
resources?: {
|
|
36597
|
+
name?: string | undefined;
|
|
36598
|
+
resourceId?: string | undefined;
|
|
36599
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
36600
|
+
color?: string | undefined;
|
|
36601
|
+
}[] | undefined;
|
|
35484
36602
|
operatingData?: unknown;
|
|
35485
36603
|
width: number;
|
|
35486
36604
|
height: number;
|
|
@@ -35540,6 +36658,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
35540
36658
|
[x: string]: unknown;
|
|
35541
36659
|
id: string;
|
|
35542
36660
|
};
|
|
36661
|
+
} | {
|
|
36662
|
+
operatingType: "resetAll";
|
|
36663
|
+
rawData?: {
|
|
36664
|
+
[x: string]: unknown;
|
|
36665
|
+
id: string;
|
|
36666
|
+
} | undefined;
|
|
35543
36667
|
} | {
|
|
35544
36668
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
35545
36669
|
light?: {
|
|
@@ -35556,6 +36680,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
35556
36680
|
isOut: boolean;
|
|
35557
36681
|
} | undefined;
|
|
35558
36682
|
stationRotatable?: boolean | undefined;
|
|
36683
|
+
isWorking?: boolean | undefined;
|
|
35559
36684
|
operatingType?: "model" | undefined;
|
|
35560
36685
|
id: string;
|
|
35561
36686
|
rawData: {
|
|
@@ -35714,6 +36839,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
35714
36839
|
isIn: boolean;
|
|
35715
36840
|
isOut: boolean;
|
|
35716
36841
|
} | undefined;
|
|
36842
|
+
isWorking?: boolean | undefined;
|
|
35717
36843
|
operatingType?: "model" | undefined;
|
|
35718
36844
|
id: string;
|
|
35719
36845
|
rawData: {
|
|
@@ -35966,6 +37092,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
35966
37092
|
showShadow?: boolean | undefined;
|
|
35967
37093
|
showText?: boolean | undefined;
|
|
35968
37094
|
inFlow?: boolean | undefined;
|
|
37095
|
+
resources?: {
|
|
37096
|
+
name?: string | undefined;
|
|
37097
|
+
resourceId?: string | undefined;
|
|
37098
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
37099
|
+
color?: string | undefined;
|
|
37100
|
+
}[] | undefined;
|
|
35969
37101
|
operatingData?: unknown;
|
|
35970
37102
|
width: number;
|
|
35971
37103
|
height: number;
|
|
@@ -36025,6 +37157,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
36025
37157
|
[x: string]: unknown;
|
|
36026
37158
|
id: string;
|
|
36027
37159
|
};
|
|
37160
|
+
} | {
|
|
37161
|
+
operatingType: "resetAll";
|
|
37162
|
+
rawData?: {
|
|
37163
|
+
[x: string]: unknown;
|
|
37164
|
+
id: string;
|
|
37165
|
+
} | undefined;
|
|
36028
37166
|
} | {
|
|
36029
37167
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
36030
37168
|
light?: {
|
|
@@ -36041,6 +37179,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
36041
37179
|
isOut: boolean;
|
|
36042
37180
|
} | undefined;
|
|
36043
37181
|
stationRotatable?: boolean | undefined;
|
|
37182
|
+
isWorking?: boolean | undefined;
|
|
36044
37183
|
operatingType?: "model" | undefined;
|
|
36045
37184
|
id: string;
|
|
36046
37185
|
rawData: {
|
|
@@ -36199,6 +37338,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
36199
37338
|
isIn: boolean;
|
|
36200
37339
|
isOut: boolean;
|
|
36201
37340
|
} | undefined;
|
|
37341
|
+
isWorking?: boolean | undefined;
|
|
36202
37342
|
operatingType?: "model" | undefined;
|
|
36203
37343
|
id: string;
|
|
36204
37344
|
rawData: {
|
|
@@ -36462,6 +37602,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
36462
37602
|
showShadow?: boolean | undefined;
|
|
36463
37603
|
showText?: boolean | undefined;
|
|
36464
37604
|
inFlow?: boolean | undefined;
|
|
37605
|
+
resources?: {
|
|
37606
|
+
name?: string | undefined;
|
|
37607
|
+
resourceId?: string | undefined;
|
|
37608
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
37609
|
+
color?: string | undefined;
|
|
37610
|
+
}[] | undefined;
|
|
36465
37611
|
operatingData?: unknown;
|
|
36466
37612
|
width: number;
|
|
36467
37613
|
height: number;
|
|
@@ -36513,6 +37659,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
36513
37659
|
showShadow?: boolean | undefined;
|
|
36514
37660
|
showText?: boolean | undefined;
|
|
36515
37661
|
inFlow?: boolean | undefined;
|
|
37662
|
+
resources?: {
|
|
37663
|
+
name?: string | undefined;
|
|
37664
|
+
resourceId?: string | undefined;
|
|
37665
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
37666
|
+
color?: string | undefined;
|
|
37667
|
+
}[] | undefined;
|
|
36516
37668
|
operatingData?: unknown;
|
|
36517
37669
|
width: number;
|
|
36518
37670
|
height: number;
|
|
@@ -36572,6 +37724,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
36572
37724
|
[x: string]: unknown;
|
|
36573
37725
|
id: string;
|
|
36574
37726
|
};
|
|
37727
|
+
} | {
|
|
37728
|
+
operatingType: "resetAll";
|
|
37729
|
+
rawData?: {
|
|
37730
|
+
[x: string]: unknown;
|
|
37731
|
+
id: string;
|
|
37732
|
+
} | undefined;
|
|
36575
37733
|
} | {
|
|
36576
37734
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
36577
37735
|
light?: {
|
|
@@ -36588,6 +37746,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
36588
37746
|
isOut: boolean;
|
|
36589
37747
|
} | undefined;
|
|
36590
37748
|
stationRotatable?: boolean | undefined;
|
|
37749
|
+
isWorking?: boolean | undefined;
|
|
36591
37750
|
operatingType?: "model" | undefined;
|
|
36592
37751
|
id: string;
|
|
36593
37752
|
rawData: {
|
|
@@ -36746,6 +37905,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
36746
37905
|
isIn: boolean;
|
|
36747
37906
|
isOut: boolean;
|
|
36748
37907
|
} | undefined;
|
|
37908
|
+
isWorking?: boolean | undefined;
|
|
36749
37909
|
operatingType?: "model" | undefined;
|
|
36750
37910
|
id: string;
|
|
36751
37911
|
rawData: {
|
|
@@ -37009,6 +38169,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
37009
38169
|
showShadow?: boolean | undefined;
|
|
37010
38170
|
showText?: boolean | undefined;
|
|
37011
38171
|
inFlow?: boolean | undefined;
|
|
38172
|
+
resources?: {
|
|
38173
|
+
name?: string | undefined;
|
|
38174
|
+
resourceId?: string | undefined;
|
|
38175
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
38176
|
+
color?: string | undefined;
|
|
38177
|
+
}[] | undefined;
|
|
37012
38178
|
operatingData?: unknown;
|
|
37013
38179
|
width: number;
|
|
37014
38180
|
height: number;
|
|
@@ -37060,6 +38226,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
37060
38226
|
showShadow?: boolean | undefined;
|
|
37061
38227
|
showText?: boolean | undefined;
|
|
37062
38228
|
inFlow?: boolean | undefined;
|
|
38229
|
+
resources?: {
|
|
38230
|
+
name?: string | undefined;
|
|
38231
|
+
resourceId?: string | undefined;
|
|
38232
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
38233
|
+
color?: string | undefined;
|
|
38234
|
+
}[] | undefined;
|
|
37063
38235
|
operatingData?: unknown;
|
|
37064
38236
|
width: number;
|
|
37065
38237
|
height: number;
|
|
@@ -37119,6 +38291,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
37119
38291
|
[x: string]: unknown;
|
|
37120
38292
|
id: string;
|
|
37121
38293
|
};
|
|
38294
|
+
} | {
|
|
38295
|
+
operatingType: "resetAll";
|
|
38296
|
+
rawData?: {
|
|
38297
|
+
[x: string]: unknown;
|
|
38298
|
+
id: string;
|
|
38299
|
+
} | undefined;
|
|
37122
38300
|
} | {
|
|
37123
38301
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
37124
38302
|
light?: {
|
|
@@ -37135,6 +38313,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
37135
38313
|
isOut: boolean;
|
|
37136
38314
|
} | undefined;
|
|
37137
38315
|
stationRotatable?: boolean | undefined;
|
|
38316
|
+
isWorking?: boolean | undefined;
|
|
37138
38317
|
operatingType?: "model" | undefined;
|
|
37139
38318
|
id: string;
|
|
37140
38319
|
rawData: {
|
|
@@ -37293,6 +38472,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
37293
38472
|
isIn: boolean;
|
|
37294
38473
|
isOut: boolean;
|
|
37295
38474
|
} | undefined;
|
|
38475
|
+
isWorking?: boolean | undefined;
|
|
37296
38476
|
operatingType?: "model" | undefined;
|
|
37297
38477
|
id: string;
|
|
37298
38478
|
rawData: {
|
|
@@ -37554,6 +38734,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
37554
38734
|
showShadow?: boolean | undefined;
|
|
37555
38735
|
showText?: boolean | undefined;
|
|
37556
38736
|
inFlow?: boolean | undefined;
|
|
38737
|
+
resources?: {
|
|
38738
|
+
name?: string | undefined;
|
|
38739
|
+
resourceId?: string | undefined;
|
|
38740
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
38741
|
+
color?: string | undefined;
|
|
38742
|
+
}[] | undefined;
|
|
37557
38743
|
operatingData?: unknown;
|
|
37558
38744
|
width: number;
|
|
37559
38745
|
height: number;
|
|
@@ -37605,6 +38791,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
37605
38791
|
showShadow?: boolean | undefined;
|
|
37606
38792
|
showText?: boolean | undefined;
|
|
37607
38793
|
inFlow?: boolean | undefined;
|
|
38794
|
+
resources?: {
|
|
38795
|
+
name?: string | undefined;
|
|
38796
|
+
resourceId?: string | undefined;
|
|
38797
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
38798
|
+
color?: string | undefined;
|
|
38799
|
+
}[] | undefined;
|
|
37608
38800
|
operatingData?: unknown;
|
|
37609
38801
|
width: number;
|
|
37610
38802
|
height: number;
|
|
@@ -37664,6 +38856,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
37664
38856
|
[x: string]: unknown;
|
|
37665
38857
|
id: string;
|
|
37666
38858
|
};
|
|
38859
|
+
} | {
|
|
38860
|
+
operatingType: "resetAll";
|
|
38861
|
+
rawData?: {
|
|
38862
|
+
[x: string]: unknown;
|
|
38863
|
+
id: string;
|
|
38864
|
+
} | undefined;
|
|
37667
38865
|
} | {
|
|
37668
38866
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
37669
38867
|
light?: {
|
|
@@ -37680,6 +38878,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
37680
38878
|
isOut: boolean;
|
|
37681
38879
|
} | undefined;
|
|
37682
38880
|
stationRotatable?: boolean | undefined;
|
|
38881
|
+
isWorking?: boolean | undefined;
|
|
37683
38882
|
operatingType?: "model" | undefined;
|
|
37684
38883
|
id: string;
|
|
37685
38884
|
rawData: {
|
|
@@ -37838,6 +39037,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
37838
39037
|
isIn: boolean;
|
|
37839
39038
|
isOut: boolean;
|
|
37840
39039
|
} | undefined;
|
|
39040
|
+
isWorking?: boolean | undefined;
|
|
37841
39041
|
operatingType?: "model" | undefined;
|
|
37842
39042
|
id: string;
|
|
37843
39043
|
rawData: {
|
|
@@ -38100,6 +39300,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
38100
39300
|
[x: string]: unknown;
|
|
38101
39301
|
id: string;
|
|
38102
39302
|
};
|
|
39303
|
+
} | {
|
|
39304
|
+
operatingType: "resetAll";
|
|
39305
|
+
rawData?: {
|
|
39306
|
+
[x: string]: unknown;
|
|
39307
|
+
id: string;
|
|
39308
|
+
} | undefined;
|
|
38103
39309
|
} | {
|
|
38104
39310
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
38105
39311
|
light?: {
|
|
@@ -38116,6 +39322,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
38116
39322
|
isOut: boolean;
|
|
38117
39323
|
} | undefined;
|
|
38118
39324
|
stationRotatable?: boolean | undefined;
|
|
39325
|
+
isWorking?: boolean | undefined;
|
|
38119
39326
|
operatingType?: "model" | undefined;
|
|
38120
39327
|
id: string;
|
|
38121
39328
|
rawData: {
|
|
@@ -38274,6 +39481,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
38274
39481
|
isIn: boolean;
|
|
38275
39482
|
isOut: boolean;
|
|
38276
39483
|
} | undefined;
|
|
39484
|
+
isWorking?: boolean | undefined;
|
|
38277
39485
|
operatingType?: "model" | undefined;
|
|
38278
39486
|
id: string;
|
|
38279
39487
|
rawData: {
|
|
@@ -38534,6 +39742,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
38534
39742
|
showShadow?: boolean | undefined;
|
|
38535
39743
|
showText?: boolean | undefined;
|
|
38536
39744
|
inFlow?: boolean | undefined;
|
|
39745
|
+
resources?: {
|
|
39746
|
+
name?: string | undefined;
|
|
39747
|
+
resourceId?: string | undefined;
|
|
39748
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
39749
|
+
color?: string | undefined;
|
|
39750
|
+
}[] | undefined;
|
|
38537
39751
|
operatingData?: unknown;
|
|
38538
39752
|
width: number;
|
|
38539
39753
|
height: number;
|
|
@@ -38585,6 +39799,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
38585
39799
|
showShadow?: boolean | undefined;
|
|
38586
39800
|
showText?: boolean | undefined;
|
|
38587
39801
|
inFlow?: boolean | undefined;
|
|
39802
|
+
resources?: {
|
|
39803
|
+
name?: string | undefined;
|
|
39804
|
+
resourceId?: string | undefined;
|
|
39805
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
39806
|
+
color?: string | undefined;
|
|
39807
|
+
}[] | undefined;
|
|
38588
39808
|
operatingData?: unknown;
|
|
38589
39809
|
width: number;
|
|
38590
39810
|
height: number;
|
|
@@ -38644,6 +39864,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
38644
39864
|
[x: string]: unknown;
|
|
38645
39865
|
id: string;
|
|
38646
39866
|
};
|
|
39867
|
+
} | {
|
|
39868
|
+
operatingType: "resetAll";
|
|
39869
|
+
rawData?: {
|
|
39870
|
+
[x: string]: unknown;
|
|
39871
|
+
id: string;
|
|
39872
|
+
} | undefined;
|
|
38647
39873
|
} | {
|
|
38648
39874
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
38649
39875
|
light?: {
|
|
@@ -38660,6 +39886,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
38660
39886
|
isOut: boolean;
|
|
38661
39887
|
} | undefined;
|
|
38662
39888
|
stationRotatable?: boolean | undefined;
|
|
39889
|
+
isWorking?: boolean | undefined;
|
|
38663
39890
|
operatingType?: "model" | undefined;
|
|
38664
39891
|
id: string;
|
|
38665
39892
|
rawData: {
|
|
@@ -38818,6 +40045,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
38818
40045
|
isIn: boolean;
|
|
38819
40046
|
isOut: boolean;
|
|
38820
40047
|
} | undefined;
|
|
40048
|
+
isWorking?: boolean | undefined;
|
|
38821
40049
|
operatingType?: "model" | undefined;
|
|
38822
40050
|
id: string;
|
|
38823
40051
|
rawData: {
|
|
@@ -39079,6 +40307,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
39079
40307
|
showShadow?: boolean | undefined;
|
|
39080
40308
|
showText?: boolean | undefined;
|
|
39081
40309
|
inFlow?: boolean | undefined;
|
|
40310
|
+
resources?: {
|
|
40311
|
+
name?: string | undefined;
|
|
40312
|
+
resourceId?: string | undefined;
|
|
40313
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
40314
|
+
color?: string | undefined;
|
|
40315
|
+
}[] | undefined;
|
|
39082
40316
|
operatingData?: unknown;
|
|
39083
40317
|
width: number;
|
|
39084
40318
|
height: number;
|
|
@@ -39130,6 +40364,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
39130
40364
|
showShadow?: boolean | undefined;
|
|
39131
40365
|
showText?: boolean | undefined;
|
|
39132
40366
|
inFlow?: boolean | undefined;
|
|
40367
|
+
resources?: {
|
|
40368
|
+
name?: string | undefined;
|
|
40369
|
+
resourceId?: string | undefined;
|
|
40370
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
40371
|
+
color?: string | undefined;
|
|
40372
|
+
}[] | undefined;
|
|
39133
40373
|
operatingData?: unknown;
|
|
39134
40374
|
width: number;
|
|
39135
40375
|
height: number;
|
|
@@ -39190,6 +40430,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
39190
40430
|
[x: string]: unknown;
|
|
39191
40431
|
id: string;
|
|
39192
40432
|
};
|
|
40433
|
+
} | {
|
|
40434
|
+
operatingType: "resetAll";
|
|
40435
|
+
rawData?: {
|
|
40436
|
+
[x: string]: unknown;
|
|
40437
|
+
id: string;
|
|
40438
|
+
} | undefined;
|
|
39193
40439
|
} | {
|
|
39194
40440
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
39195
40441
|
light?: {
|
|
@@ -39206,6 +40452,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
39206
40452
|
isOut: boolean;
|
|
39207
40453
|
} | undefined;
|
|
39208
40454
|
stationRotatable?: boolean | undefined;
|
|
40455
|
+
isWorking?: boolean | undefined;
|
|
39209
40456
|
operatingType?: "model" | undefined;
|
|
39210
40457
|
id: string;
|
|
39211
40458
|
rawData: {
|
|
@@ -39364,6 +40611,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
39364
40611
|
isIn: boolean;
|
|
39365
40612
|
isOut: boolean;
|
|
39366
40613
|
} | undefined;
|
|
40614
|
+
isWorking?: boolean | undefined;
|
|
39367
40615
|
operatingType?: "model" | undefined;
|
|
39368
40616
|
id: string;
|
|
39369
40617
|
rawData: {
|
|
@@ -39618,6 +40866,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
39618
40866
|
showShadow?: boolean | undefined;
|
|
39619
40867
|
showText?: boolean | undefined;
|
|
39620
40868
|
inFlow?: boolean | undefined;
|
|
40869
|
+
resources?: {
|
|
40870
|
+
name?: string | undefined;
|
|
40871
|
+
resourceId?: string | undefined;
|
|
40872
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
40873
|
+
color?: string | undefined;
|
|
40874
|
+
}[] | undefined;
|
|
39621
40875
|
operatingData?: unknown;
|
|
39622
40876
|
width: number;
|
|
39623
40877
|
height: number;
|
|
@@ -39677,6 +40931,12 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
39677
40931
|
[x: string]: unknown;
|
|
39678
40932
|
id: string;
|
|
39679
40933
|
};
|
|
40934
|
+
} | {
|
|
40935
|
+
operatingType: "resetAll";
|
|
40936
|
+
rawData?: {
|
|
40937
|
+
[x: string]: unknown;
|
|
40938
|
+
id: string;
|
|
40939
|
+
} | undefined;
|
|
39680
40940
|
} | {
|
|
39681
40941
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
39682
40942
|
light?: {
|
|
@@ -39693,6 +40953,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
39693
40953
|
isOut: boolean;
|
|
39694
40954
|
} | undefined;
|
|
39695
40955
|
stationRotatable?: boolean | undefined;
|
|
40956
|
+
isWorking?: boolean | undefined;
|
|
39696
40957
|
operatingType?: "model" | undefined;
|
|
39697
40958
|
id: string;
|
|
39698
40959
|
rawData: {
|
|
@@ -39851,6 +41112,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
39851
41112
|
isIn: boolean;
|
|
39852
41113
|
isOut: boolean;
|
|
39853
41114
|
} | undefined;
|
|
41115
|
+
isWorking?: boolean | undefined;
|
|
39854
41116
|
operatingType?: "model" | undefined;
|
|
39855
41117
|
id: string;
|
|
39856
41118
|
rawData: {
|
|
@@ -40099,7 +41361,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
40099
41361
|
className: string;
|
|
40100
41362
|
equipmentName?: string | undefined;
|
|
40101
41363
|
enabled: boolean;
|
|
40102
|
-
operate: "single" | "resource" | "global";
|
|
41364
|
+
operate: "single" | "resource" | "global" | "resetAll";
|
|
40103
41365
|
mappings: {
|
|
40104
41366
|
target: string;
|
|
40105
41367
|
source?: string | undefined;
|
|
@@ -40107,7 +41369,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
40107
41369
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
40108
41370
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
40109
41371
|
enabled?: boolean | undefined;
|
|
40110
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
41372
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
40111
41373
|
transformType?: "width" | "height" | undefined;
|
|
40112
41374
|
transformPrecision?: number | undefined;
|
|
40113
41375
|
dictName?: string | undefined;
|
|
@@ -40117,6 +41379,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
40117
41379
|
operand: string;
|
|
40118
41380
|
value: string | number | boolean;
|
|
40119
41381
|
}[] | undefined;
|
|
41382
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
41383
|
+
expression?: string | undefined;
|
|
40120
41384
|
}[];
|
|
40121
41385
|
resourceMappings?: {
|
|
40122
41386
|
add?: {
|
|
@@ -40126,7 +41390,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
40126
41390
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
40127
41391
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
40128
41392
|
enabled?: boolean | undefined;
|
|
40129
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
41393
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
40130
41394
|
transformType?: "width" | "height" | undefined;
|
|
40131
41395
|
transformPrecision?: number | undefined;
|
|
40132
41396
|
dictName?: string | undefined;
|
|
@@ -40136,6 +41400,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
40136
41400
|
operand: string;
|
|
40137
41401
|
value: string | number | boolean;
|
|
40138
41402
|
}[] | undefined;
|
|
41403
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
41404
|
+
expression?: string | undefined;
|
|
40139
41405
|
}[] | undefined;
|
|
40140
41406
|
remove?: {
|
|
40141
41407
|
target: string;
|
|
@@ -40144,7 +41410,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
40144
41410
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
40145
41411
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
40146
41412
|
enabled?: boolean | undefined;
|
|
40147
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
41413
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
40148
41414
|
transformType?: "width" | "height" | undefined;
|
|
40149
41415
|
transformPrecision?: number | undefined;
|
|
40150
41416
|
dictName?: string | undefined;
|
|
@@ -40154,6 +41420,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
40154
41420
|
operand: string;
|
|
40155
41421
|
value: string | number | boolean;
|
|
40156
41422
|
}[] | undefined;
|
|
41423
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
41424
|
+
expression?: string | undefined;
|
|
40157
41425
|
}[] | undefined;
|
|
40158
41426
|
} | undefined;
|
|
40159
41427
|
globalFields?: {
|
|
@@ -40180,7 +41448,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
40180
41448
|
className: string;
|
|
40181
41449
|
equipmentName?: string | undefined;
|
|
40182
41450
|
enabled: boolean;
|
|
40183
|
-
operate: "single" | "resource" | "global";
|
|
41451
|
+
operate: "single" | "resource" | "global" | "resetAll";
|
|
40184
41452
|
mappings: {
|
|
40185
41453
|
target: string;
|
|
40186
41454
|
source?: string | undefined;
|
|
@@ -40188,7 +41456,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
40188
41456
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
40189
41457
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
40190
41458
|
enabled?: boolean | undefined;
|
|
40191
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
41459
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
40192
41460
|
transformType?: "width" | "height" | undefined;
|
|
40193
41461
|
transformPrecision?: number | undefined;
|
|
40194
41462
|
dictName?: string | undefined;
|
|
@@ -40198,6 +41466,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
40198
41466
|
operand: string;
|
|
40199
41467
|
value: string | number | boolean;
|
|
40200
41468
|
}[] | undefined;
|
|
41469
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
41470
|
+
expression?: string | undefined;
|
|
40201
41471
|
}[];
|
|
40202
41472
|
resourceMappings?: {
|
|
40203
41473
|
add?: {
|
|
@@ -40207,7 +41477,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
40207
41477
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
40208
41478
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
40209
41479
|
enabled?: boolean | undefined;
|
|
40210
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
41480
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
40211
41481
|
transformType?: "width" | "height" | undefined;
|
|
40212
41482
|
transformPrecision?: number | undefined;
|
|
40213
41483
|
dictName?: string | undefined;
|
|
@@ -40217,6 +41487,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
40217
41487
|
operand: string;
|
|
40218
41488
|
value: string | number | boolean;
|
|
40219
41489
|
}[] | undefined;
|
|
41490
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
41491
|
+
expression?: string | undefined;
|
|
40220
41492
|
}[] | undefined;
|
|
40221
41493
|
remove?: {
|
|
40222
41494
|
target: string;
|
|
@@ -40225,7 +41497,7 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
40225
41497
|
valueMap?: Record<string, boolean | number | string> | undefined;
|
|
40226
41498
|
defaultValue?: (boolean | number | string | Record<string, unknown>) | undefined;
|
|
40227
41499
|
enabled?: boolean | undefined;
|
|
40228
|
-
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | undefined;
|
|
41500
|
+
transform?: "constant" | "percentToPixel" | "runtimeToPixel" | "dictLabel" | "dictColor" | "dictColorMap" | "objDict" | "modelMap" | "condition" | "operation" | undefined;
|
|
40229
41501
|
transformType?: "width" | "height" | undefined;
|
|
40230
41502
|
transformPrecision?: number | undefined;
|
|
40231
41503
|
dictName?: string | undefined;
|
|
@@ -40235,6 +41507,8 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
40235
41507
|
operand: string;
|
|
40236
41508
|
value: string | number | boolean;
|
|
40237
41509
|
}[] | undefined;
|
|
41510
|
+
operateFn?: "negate" | "not" | "toBoolean" | "concat" | undefined;
|
|
41511
|
+
expression?: string | undefined;
|
|
40238
41512
|
}[] | undefined;
|
|
40239
41513
|
} | undefined;
|
|
40240
41514
|
globalFields?: {
|
|
@@ -40299,8 +41573,9 @@ export declare const useDataStore: import('pinia').StoreDefinition<"@jnrs/lingsh
|
|
|
40299
41573
|
}[]>;
|
|
40300
41574
|
updateCases: (data?: ICase[]) => void;
|
|
40301
41575
|
selectCase: (uuid: string) => void;
|
|
40302
|
-
addCase: (data?: ICase) =>
|
|
41576
|
+
addCase: (data?: ICase) => ICase;
|
|
40303
41577
|
removeCase: (uuid: string) => void;
|
|
40304
41578
|
clearCases: () => void;
|
|
41579
|
+
resetAll: () => void;
|
|
40305
41580
|
setWsProxyConfig: (configs: WsProxyCaseConfig[]) => void;
|
|
40306
|
-
}, "updateCases" | "selectCase" | "addCase" | "removeCase" | "clearCases" | "setWsProxyConfig">>;
|
|
41581
|
+
}, "resetAll" | "updateCases" | "selectCase" | "addCase" | "removeCase" | "clearCases" | "setWsProxyConfig">>;
|