@kengic/vue 0.30.1-beta.33 → 0.30.1-beta.34
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.
|
@@ -21,7 +21,7 @@ export declare class Agent {
|
|
|
21
21
|
* </p>.
|
|
22
22
|
*/
|
|
23
23
|
brakingAcceleration?: number | null;
|
|
24
|
-
/**
|
|
24
|
+
/** 代理编码. */
|
|
25
25
|
code?: string | null;
|
|
26
26
|
/**
|
|
27
27
|
* 通信时延.单位s.
|
|
@@ -33,6 +33,8 @@ export declare class Agent {
|
|
|
33
33
|
communicationDelay?: number | null;
|
|
34
34
|
/** 创建时间. */
|
|
35
35
|
createdAt?: string | null;
|
|
36
|
+
/** 代理描述. */
|
|
37
|
+
description?: string | null;
|
|
36
38
|
/** Destination Task. */
|
|
37
39
|
destinationTask?: AgentTask | null;
|
|
38
40
|
/** 最终的目标任务Id. */
|
|
@@ -81,8 +83,12 @@ export declare class AgentDto {
|
|
|
81
83
|
angle?: number | null;
|
|
82
84
|
/** Braking Acceleration. */
|
|
83
85
|
brakingAcceleration?: number | null;
|
|
86
|
+
/** Code. */
|
|
87
|
+
code?: string | null;
|
|
84
88
|
/** Communication Delay. */
|
|
85
89
|
communicationDelay?: number | null;
|
|
90
|
+
/** Description. */
|
|
91
|
+
description?: string | null;
|
|
86
92
|
/** Destination Task Id. */
|
|
87
93
|
destinationTaskId?: string | null;
|
|
88
94
|
/** Height. */
|
|
@@ -137,8 +143,12 @@ export declare class AgentTask {
|
|
|
137
143
|
* 0度表示向右(正X方向),90度表示向上(正Y方向),以此类推.
|
|
138
144
|
*/
|
|
139
145
|
angle?: number | null;
|
|
146
|
+
/** 任务编码. */
|
|
147
|
+
code?: string | null;
|
|
140
148
|
/** 创建时间. */
|
|
141
149
|
createdAt?: string | null;
|
|
150
|
+
/** 任务描述. */
|
|
151
|
+
description?: string | null;
|
|
142
152
|
/** 边绘制的高度,对应Z轴. */
|
|
143
153
|
height?: number | null;
|
|
144
154
|
/** 任务唯一标识符(主键). */
|
|
@@ -184,6 +194,10 @@ export declare class AgentTaskDto {
|
|
|
184
194
|
agentTaskType?: 0 | 1 | 2 | 3 | 4 | 5 | null;
|
|
185
195
|
/** Angle. */
|
|
186
196
|
angle?: number | null;
|
|
197
|
+
/** Code. */
|
|
198
|
+
code?: string | null;
|
|
199
|
+
/** Description. */
|
|
200
|
+
description?: string | null;
|
|
187
201
|
/** Height. */
|
|
188
202
|
height?: number | null;
|
|
189
203
|
/** Id. */
|
|
@@ -215,6 +229,8 @@ export declare class CreateAgentRequest {
|
|
|
215
229
|
angle?: number | null;
|
|
216
230
|
/** Creator Id. */
|
|
217
231
|
creatorId?: string | null;
|
|
232
|
+
/** Destination Task Id. */
|
|
233
|
+
destinationTaskId?: string | null;
|
|
218
234
|
/** Scene Id. */
|
|
219
235
|
sceneId?: string | null;
|
|
220
236
|
/** Station Id. */
|
|
@@ -250,10 +266,12 @@ export declare class Creator {
|
|
|
250
266
|
* 0度表示向右(正X方向),90度表示向下(正Y方向),以此类推.
|
|
251
267
|
*/
|
|
252
268
|
angle?: number | null;
|
|
253
|
-
/**
|
|
269
|
+
/** 创建者编码. */
|
|
254
270
|
code?: string | null;
|
|
255
271
|
/** 创建时间. */
|
|
256
272
|
createdAt?: string | null;
|
|
273
|
+
/** 创建者描述. */
|
|
274
|
+
description?: string | null;
|
|
257
275
|
/** 创建者高度,对应Z轴. */
|
|
258
276
|
height?: number | null;
|
|
259
277
|
/** 创建者唯一标识符(主键). */
|
|
@@ -287,6 +305,10 @@ export declare class Creator {
|
|
|
287
305
|
export declare class CreatorDto {
|
|
288
306
|
/** Angle. */
|
|
289
307
|
angle?: number | null;
|
|
308
|
+
/** Code. */
|
|
309
|
+
code?: string | null;
|
|
310
|
+
/** Description. */
|
|
311
|
+
description?: string | null;
|
|
290
312
|
/** Height. */
|
|
291
313
|
height?: number | null;
|
|
292
314
|
/** Id. */
|
|
@@ -322,10 +344,12 @@ export declare class Destroyer {
|
|
|
322
344
|
* 0度表示向右(正X方向),90度表示向下(正Y方向),以此类推.
|
|
323
345
|
*/
|
|
324
346
|
angle?: number | null;
|
|
325
|
-
/**
|
|
347
|
+
/** 销毁者编码. */
|
|
326
348
|
code?: string | null;
|
|
327
349
|
/** 创建时间. */
|
|
328
350
|
createdAt?: string | null;
|
|
351
|
+
/** 销毁者描述. */
|
|
352
|
+
description?: string | null;
|
|
329
353
|
/** 销毁者高度,对应Z轴. */
|
|
330
354
|
height?: number | null;
|
|
331
355
|
/** 销毁者唯一标识符(主键). */
|
|
@@ -359,6 +383,10 @@ export declare class Destroyer {
|
|
|
359
383
|
export declare class DestroyerDto {
|
|
360
384
|
/** Angle. */
|
|
361
385
|
angle?: number | null;
|
|
386
|
+
/** Code. */
|
|
387
|
+
code?: string | null;
|
|
388
|
+
/** Description. */
|
|
389
|
+
description?: string | null;
|
|
362
390
|
/** Height. */
|
|
363
391
|
height?: number | null;
|
|
364
392
|
/** Id. */
|
|
@@ -389,14 +417,18 @@ export declare class Edge {
|
|
|
389
417
|
* 注意:因为Y轴向下为正,所以角度旋转正值旋转为顺时针,负值旋转为逆时针.
|
|
390
418
|
*/
|
|
391
419
|
angle?: number | null;
|
|
392
|
-
/**
|
|
420
|
+
/** 线段编码. */
|
|
393
421
|
code?: string | null;
|
|
394
422
|
/** 创建时间. */
|
|
395
423
|
createdAt?: string | null;
|
|
424
|
+
/** 线段描述. */
|
|
425
|
+
description?: string | null;
|
|
396
426
|
/** 边绘制的高度,对应Z轴. */
|
|
397
427
|
height?: number | null;
|
|
398
428
|
/** 线段唯一标识符(主键). */
|
|
399
429
|
id?: string | null;
|
|
430
|
+
/** 是否主线, 否则支线. */
|
|
431
|
+
isPrimary?: boolean | null;
|
|
400
432
|
/** 边绘制的长度,对应Y轴. */
|
|
401
433
|
length?: number | null;
|
|
402
434
|
/** Scene. */
|
|
@@ -424,10 +456,16 @@ export declare class Edge {
|
|
|
424
456
|
export declare class EdgeDto {
|
|
425
457
|
/** Angle. */
|
|
426
458
|
angle?: number | null;
|
|
459
|
+
/** Code. */
|
|
460
|
+
code?: string | null;
|
|
461
|
+
/** Description. */
|
|
462
|
+
description?: string | null;
|
|
427
463
|
/** Height. */
|
|
428
464
|
height?: number | null;
|
|
429
465
|
/** Id. */
|
|
430
466
|
id?: string | null;
|
|
467
|
+
/** Is Primary. */
|
|
468
|
+
isPrimary?: boolean | null;
|
|
431
469
|
/** Length. */
|
|
432
470
|
length?: number | null;
|
|
433
471
|
/** Source. */
|
|
@@ -464,10 +502,12 @@ export declare class JackUpTransferStation {
|
|
|
464
502
|
* 0度表示向右(正X方向),90度表示向下(正Y方向),以此类推.
|
|
465
503
|
*/
|
|
466
504
|
angle?: number | null;
|
|
467
|
-
/**
|
|
505
|
+
/** 站点编码. */
|
|
468
506
|
code?: string | null;
|
|
469
507
|
/** 创建时间. */
|
|
470
508
|
createdAt?: string | null;
|
|
509
|
+
/** 顶升移载输送机描述. */
|
|
510
|
+
description?: string | null;
|
|
471
511
|
/** Edge. */
|
|
472
512
|
edge?: Edge | null;
|
|
473
513
|
/** 站点所属边. */
|
|
@@ -505,6 +545,10 @@ export declare class JackUpTransferStation {
|
|
|
505
545
|
export declare class JackUpTransferStationDto {
|
|
506
546
|
/** Angle. */
|
|
507
547
|
angle?: number | null;
|
|
548
|
+
/** Code. */
|
|
549
|
+
code?: string | null;
|
|
550
|
+
/** Description. */
|
|
551
|
+
description?: string | null;
|
|
508
552
|
/** Edge Id. */
|
|
509
553
|
edgeId?: string | null;
|
|
510
554
|
/** Height. */
|
|
@@ -546,10 +590,12 @@ export declare class PalletStackerStation {
|
|
|
546
590
|
* 0度表示向右(正X方向),90度表示向下(正Y方向),以此类推.
|
|
547
591
|
*/
|
|
548
592
|
angle?: number | null;
|
|
549
|
-
/**
|
|
593
|
+
/** 站点编码. */
|
|
550
594
|
code?: string | null;
|
|
551
595
|
/** 创建时间. */
|
|
552
596
|
createdAt?: string | null;
|
|
597
|
+
/** 叠盘机描述. */
|
|
598
|
+
description?: string | null;
|
|
553
599
|
/** Edge. */
|
|
554
600
|
edge?: Edge | null;
|
|
555
601
|
/** 站点所属边. */
|
|
@@ -587,6 +633,10 @@ export declare class PalletStackerStation {
|
|
|
587
633
|
export declare class PalletStackerStationDto {
|
|
588
634
|
/** Angle. */
|
|
589
635
|
angle?: number | null;
|
|
636
|
+
/** Code. */
|
|
637
|
+
code?: string | null;
|
|
638
|
+
/** Description. */
|
|
639
|
+
description?: string | null;
|
|
590
640
|
/** Edge Id. */
|
|
591
641
|
edgeId?: string | null;
|
|
592
642
|
/** Height. */
|
|
@@ -620,10 +670,12 @@ export declare class PhotoelectricSensor {
|
|
|
620
670
|
* 0度表示向右(正X方向),90度表示向下(正Y方向),以此类推.
|
|
621
671
|
*/
|
|
622
672
|
angle?: number | null;
|
|
623
|
-
/**
|
|
673
|
+
/** 站点编码. */
|
|
624
674
|
code?: string | null;
|
|
625
675
|
/** 创建时间. */
|
|
626
676
|
createdAt?: string | null;
|
|
677
|
+
/** 光电传感器描述. */
|
|
678
|
+
description?: string | null;
|
|
627
679
|
/** Edge. */
|
|
628
680
|
edge?: Edge | null;
|
|
629
681
|
/** 站点所属边. */
|
|
@@ -661,6 +713,10 @@ export declare class PhotoelectricSensor {
|
|
|
661
713
|
export declare class PhotoelectricSensorDto {
|
|
662
714
|
/** Angle. */
|
|
663
715
|
angle?: number | null;
|
|
716
|
+
/** Code. */
|
|
717
|
+
code?: string | null;
|
|
718
|
+
/** Description. */
|
|
719
|
+
description?: string | null;
|
|
664
720
|
/** Edge Id. */
|
|
665
721
|
edgeId?: string | null;
|
|
666
722
|
/** Height. */
|
|
@@ -707,6 +763,8 @@ export declare class SaveSceneRequest {
|
|
|
707
763
|
export declare class Scene {
|
|
708
764
|
/** 场景中的代理. */
|
|
709
765
|
agents?: Array<Agent> | null;
|
|
766
|
+
/** 场景编码. */
|
|
767
|
+
code?: string | null;
|
|
710
768
|
/** 配置JSON. */
|
|
711
769
|
configurationJson?: string | null;
|
|
712
770
|
/** 创建时间. */
|
|
@@ -758,6 +816,8 @@ export declare class Scene {
|
|
|
758
816
|
export declare class SceneDto {
|
|
759
817
|
/** Agents. */
|
|
760
818
|
agents?: Array<AgentDto> | null;
|
|
819
|
+
/** Code. */
|
|
820
|
+
code?: string | null;
|
|
761
821
|
/** Configuration Json. */
|
|
762
822
|
configurationJson?: string | null;
|
|
763
823
|
/** Creators. */
|
|
@@ -778,12 +838,12 @@ export declare class SceneDto {
|
|
|
778
838
|
humidity?: number | null;
|
|
779
839
|
/** 指定则更新,否则后端可生成. */
|
|
780
840
|
id?: string | null;
|
|
781
|
-
/** Jack
|
|
782
|
-
|
|
841
|
+
/** Jack Up Transfer Stations. */
|
|
842
|
+
jackUpTransferStations?: Array<JackUpTransferStationDto> | null;
|
|
783
843
|
/** Name. */
|
|
784
844
|
name?: string | null;
|
|
785
|
-
/** Pallet
|
|
786
|
-
|
|
845
|
+
/** Pallet Stacker Stations. */
|
|
846
|
+
palletStackerStations?: Array<PalletStackerStationDto> | null;
|
|
787
847
|
/** Photoelectric Sensors. */
|
|
788
848
|
photoelectricSensors?: Array<PhotoelectricSensorDto> | null;
|
|
789
849
|
/** Stations. */
|
|
@@ -831,10 +891,12 @@ export declare class Station {
|
|
|
831
891
|
* 0度表示向右(正X方向),90度表示向下(正Y方向),以此类推.
|
|
832
892
|
*/
|
|
833
893
|
angle?: number | null;
|
|
834
|
-
/**
|
|
894
|
+
/** 站点编码. */
|
|
835
895
|
code?: string | null;
|
|
836
896
|
/** 创建时间. */
|
|
837
897
|
createdAt?: string | null;
|
|
898
|
+
/** 站点描述. */
|
|
899
|
+
description?: string | null;
|
|
838
900
|
/** Edge. */
|
|
839
901
|
edge?: Edge | null;
|
|
840
902
|
/** 站点所属边. */
|
|
@@ -872,6 +934,10 @@ export declare class Station {
|
|
|
872
934
|
export declare class StationDto {
|
|
873
935
|
/** Angle. */
|
|
874
936
|
angle?: number | null;
|
|
937
|
+
/** Code. */
|
|
938
|
+
code?: string | null;
|
|
939
|
+
/** Description. */
|
|
940
|
+
description?: string | null;
|
|
875
941
|
/** Edge Id. */
|
|
876
942
|
edgeId?: string | null;
|
|
877
943
|
/** Height. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kengic/vue",
|
|
3
|
-
"version": "0.30.1-beta.
|
|
3
|
+
"version": "0.30.1-beta.34",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "npm run use-node && rimraf dist && vue-tsc && vite build",
|
|
6
6
|
"build:dev": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",
|