@wandelbots/nova-api 25.7.0-dev.8 → 25.7.0-rc.1
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/package.json +1 -1
- package/v1/api.d.ts +5 -1
- package/v1/api.js +5 -1
- package/v1/api.js.map +1 -1
- package/v1/api.ts +5 -1
- package/v1/base.d.ts +1 -1
- package/v1/base.js +1 -1
- package/v1/base.ts +1 -1
- package/v1/common.d.ts +1 -1
- package/v1/common.js +1 -1
- package/v1/common.ts +1 -1
- package/v1/configuration.d.ts +1 -1
- package/v1/configuration.js +1 -1
- package/v1/configuration.ts +1 -1
- package/v1/index.d.ts +1 -1
- package/v1/index.js +1 -1
- package/v1/index.ts +1 -1
- package/v2/api.d.ts +1975 -670
- package/v2/api.js +1449 -291
- package/v2/api.js.map +1 -1
- package/v2/api.ts +2760 -735
package/v2/api.d.ts
CHANGED
|
@@ -196,6 +196,12 @@ export interface App {
|
|
|
196
196
|
* @memberof App
|
|
197
197
|
*/
|
|
198
198
|
'storage'?: ContainerStorage;
|
|
199
|
+
/**
|
|
200
|
+
*
|
|
201
|
+
* @type {ContainerResources}
|
|
202
|
+
* @memberof App
|
|
203
|
+
*/
|
|
204
|
+
'resources'?: ContainerResources;
|
|
199
205
|
/**
|
|
200
206
|
* Defines the URL path suffix used to check the application\'s health status. The complete health check URL is constructed as `/$cell/$name/$health_path`. When the application is working as expected, the endpoint returns an HTTP 200 status code. If not specified, the system will default to using the application icon path suffix (the value of `app_icon`) as the health check endpoint, resulting in `/$cell/$name/$app_icon`. If the health check fails (no response or non-200 status code), the system will automatically restart the application container to restore service.
|
|
201
207
|
* @type {string}
|
|
@@ -335,6 +341,173 @@ export declare const BoxBoxTypeEnum: {
|
|
|
335
341
|
readonly Full: "FULL";
|
|
336
342
|
};
|
|
337
343
|
export type BoxBoxTypeEnum = typeof BoxBoxTypeEnum[keyof typeof BoxBoxTypeEnum];
|
|
344
|
+
/**
|
|
345
|
+
* PROFINET BUS Inputs/Outputs Service configuration.
|
|
346
|
+
* @export
|
|
347
|
+
* @interface BusIOProfinet
|
|
348
|
+
*/
|
|
349
|
+
export interface BusIOProfinet {
|
|
350
|
+
/**
|
|
351
|
+
*
|
|
352
|
+
* @type {string}
|
|
353
|
+
* @memberof BusIOProfinet
|
|
354
|
+
*/
|
|
355
|
+
'bus_type'?: BusIOProfinetBusTypeEnum;
|
|
356
|
+
/**
|
|
357
|
+
* Path to the configuration file.
|
|
358
|
+
* @type {string}
|
|
359
|
+
* @memberof BusIOProfinet
|
|
360
|
+
*/
|
|
361
|
+
'config_file_content'?: string;
|
|
362
|
+
/**
|
|
363
|
+
*
|
|
364
|
+
* @type {BusIOProfinetNetwork}
|
|
365
|
+
* @memberof BusIOProfinet
|
|
366
|
+
*/
|
|
367
|
+
'network_config'?: BusIOProfinetNetwork;
|
|
368
|
+
/**
|
|
369
|
+
* MAC address for the PROFINET port, should be get from another NOVA API endpoind?
|
|
370
|
+
* @type {string}
|
|
371
|
+
* @memberof BusIOProfinet
|
|
372
|
+
*/
|
|
373
|
+
'mac': string;
|
|
374
|
+
/**
|
|
375
|
+
*
|
|
376
|
+
* @type {BusIOProfinetDefaultRoute}
|
|
377
|
+
* @memberof BusIOProfinet
|
|
378
|
+
*/
|
|
379
|
+
'default_route': BusIOProfinetDefaultRoute;
|
|
380
|
+
}
|
|
381
|
+
export declare const BusIOProfinetBusTypeEnum: {
|
|
382
|
+
readonly Profinet: "profinet";
|
|
383
|
+
};
|
|
384
|
+
export type BusIOProfinetBusTypeEnum = typeof BusIOProfinetBusTypeEnum[keyof typeof BusIOProfinetBusTypeEnum];
|
|
385
|
+
/**
|
|
386
|
+
* Default route configuration for the PROFINET service. Will be removed before release by automatic default route configuration, if possible.
|
|
387
|
+
* @export
|
|
388
|
+
* @interface BusIOProfinetDefaultRoute
|
|
389
|
+
*/
|
|
390
|
+
export interface BusIOProfinetDefaultRoute {
|
|
391
|
+
/**
|
|
392
|
+
* Gateway for the default route.
|
|
393
|
+
* @type {string}
|
|
394
|
+
* @memberof BusIOProfinetDefaultRoute
|
|
395
|
+
*/
|
|
396
|
+
'gateway': string;
|
|
397
|
+
/**
|
|
398
|
+
* Interface for the default route.
|
|
399
|
+
* @type {string}
|
|
400
|
+
* @memberof BusIOProfinetDefaultRoute
|
|
401
|
+
*/
|
|
402
|
+
'interface': string;
|
|
403
|
+
}
|
|
404
|
+
/**
|
|
405
|
+
* Network configuration for the PROFINET device
|
|
406
|
+
* @export
|
|
407
|
+
* @interface BusIOProfinetIpConfig
|
|
408
|
+
*/
|
|
409
|
+
export interface BusIOProfinetIpConfig {
|
|
410
|
+
/**
|
|
411
|
+
* IP address for the PROFINET device
|
|
412
|
+
* @type {string}
|
|
413
|
+
* @memberof BusIOProfinetIpConfig
|
|
414
|
+
*/
|
|
415
|
+
'ip': string;
|
|
416
|
+
/**
|
|
417
|
+
* Network mask for the PROFINET device.
|
|
418
|
+
* @type {string}
|
|
419
|
+
* @memberof BusIOProfinetIpConfig
|
|
420
|
+
*/
|
|
421
|
+
'netmask': string;
|
|
422
|
+
/**
|
|
423
|
+
* Gateway for the PROFINET device
|
|
424
|
+
* @type {string}
|
|
425
|
+
* @memberof BusIOProfinetIpConfig
|
|
426
|
+
*/
|
|
427
|
+
'gateway': string;
|
|
428
|
+
}
|
|
429
|
+
/**
|
|
430
|
+
*
|
|
431
|
+
* @export
|
|
432
|
+
* @interface BusIOProfinetNetwork
|
|
433
|
+
*/
|
|
434
|
+
export interface BusIOProfinetNetwork {
|
|
435
|
+
/**
|
|
436
|
+
* Name of the PROFINET device.
|
|
437
|
+
* @type {string}
|
|
438
|
+
* @memberof BusIOProfinetNetwork
|
|
439
|
+
*/
|
|
440
|
+
'device_name'?: string;
|
|
441
|
+
/**
|
|
442
|
+
*
|
|
443
|
+
* @type {BusIOProfinetIpConfig}
|
|
444
|
+
* @memberof BusIOProfinetNetwork
|
|
445
|
+
*/
|
|
446
|
+
'ip_config'?: BusIOProfinetIpConfig;
|
|
447
|
+
/**
|
|
448
|
+
* Content of the PROFINET REMA XML file.
|
|
449
|
+
* @type {string}
|
|
450
|
+
* @memberof BusIOProfinetNetwork
|
|
451
|
+
*/
|
|
452
|
+
'rema_xml_content'?: string;
|
|
453
|
+
}
|
|
454
|
+
/**
|
|
455
|
+
* Virtual PROFINET BUS Inputs/Outputs Service configuration.
|
|
456
|
+
* @export
|
|
457
|
+
* @interface BusIOProfinetVirtual
|
|
458
|
+
*/
|
|
459
|
+
export interface BusIOProfinetVirtual {
|
|
460
|
+
/**
|
|
461
|
+
*
|
|
462
|
+
* @type {string}
|
|
463
|
+
* @memberof BusIOProfinetVirtual
|
|
464
|
+
*/
|
|
465
|
+
'bus_type'?: BusIOProfinetVirtualBusTypeEnum;
|
|
466
|
+
}
|
|
467
|
+
export declare const BusIOProfinetVirtualBusTypeEnum: {
|
|
468
|
+
readonly VirtualProfinet: "virtual_profinet";
|
|
469
|
+
};
|
|
470
|
+
export type BusIOProfinetVirtualBusTypeEnum = typeof BusIOProfinetVirtualBusTypeEnum[keyof typeof BusIOProfinetVirtualBusTypeEnum];
|
|
471
|
+
/**
|
|
472
|
+
* @type BusIOType
|
|
473
|
+
* @export
|
|
474
|
+
*/
|
|
475
|
+
export type BusIOType = {
|
|
476
|
+
bus_type: 'profinet';
|
|
477
|
+
} & BusIOProfinet | {
|
|
478
|
+
bus_type: 'profinet_virtual';
|
|
479
|
+
} & BusIOProfinetVirtual;
|
|
480
|
+
/**
|
|
481
|
+
*
|
|
482
|
+
* @export
|
|
483
|
+
* @interface BusIOsState
|
|
484
|
+
*/
|
|
485
|
+
export interface BusIOsState {
|
|
486
|
+
/**
|
|
487
|
+
*
|
|
488
|
+
* @type {BusIOsStateEnum}
|
|
489
|
+
* @memberof BusIOsState
|
|
490
|
+
*/
|
|
491
|
+
'state': BusIOsStateEnum;
|
|
492
|
+
/**
|
|
493
|
+
* A message providing additional information on the input/output, e.g. BUS service status, encountered errors. May be empty if no additional information is available.
|
|
494
|
+
* @type {string}
|
|
495
|
+
* @memberof BusIOsState
|
|
496
|
+
*/
|
|
497
|
+
'message'?: string;
|
|
498
|
+
}
|
|
499
|
+
/**
|
|
500
|
+
* Current state of the BUS input/output service.
|
|
501
|
+
* @export
|
|
502
|
+
* @enum {string}
|
|
503
|
+
*/
|
|
504
|
+
export declare const BusIOsStateEnum: {
|
|
505
|
+
readonly BusIosStateUnknown: "BUS_IOS_STATE_UNKNOWN";
|
|
506
|
+
readonly BusIosStateInitializing: "BUS_IOS_STATE_INITIALIZING";
|
|
507
|
+
readonly BusIosStateConnected: "BUS_IOS_STATE_CONNECTED";
|
|
508
|
+
readonly BusIosStateDisconnected: "BUS_IOS_STATE_DISCONNECTED";
|
|
509
|
+
};
|
|
510
|
+
export type BusIOsStateEnum = typeof BusIOsStateEnum[keyof typeof BusIOsStateEnum];
|
|
338
511
|
/**
|
|
339
512
|
* Defines a cylindrical shape with 2 semi-spheres on the top and bottom. Centred around origin, symmetric around z-axis.
|
|
340
513
|
* @export
|
|
@@ -495,13 +668,13 @@ export interface Collision {
|
|
|
495
668
|
* @type {string}
|
|
496
669
|
* @memberof Collision
|
|
497
670
|
*/
|
|
498
|
-
'
|
|
671
|
+
'id_of_layer'?: string;
|
|
499
672
|
/**
|
|
500
673
|
* A three-dimensional vector [x, y, z] with double precision.
|
|
501
674
|
* @type {Array<number>}
|
|
502
675
|
* @memberof Collision
|
|
503
676
|
*/
|
|
504
|
-
'
|
|
677
|
+
'normal_root_on_b'?: Array<number>;
|
|
505
678
|
/**
|
|
506
679
|
*
|
|
507
680
|
* @type {CollisionContact}
|
|
@@ -532,7 +705,7 @@ export interface CollisionContact {
|
|
|
532
705
|
* @type {Array<number>}
|
|
533
706
|
* @memberof CollisionContact
|
|
534
707
|
*/
|
|
535
|
-
'
|
|
708
|
+
'root'?: Array<number>;
|
|
536
709
|
}
|
|
537
710
|
/**
|
|
538
711
|
*
|
|
@@ -548,50 +721,29 @@ export interface CollisionError {
|
|
|
548
721
|
'collision'?: FeedbackCollision;
|
|
549
722
|
}
|
|
550
723
|
/**
|
|
551
|
-
*
|
|
724
|
+
* @type CollisionFreeAlgorithm
|
|
725
|
+
* Configuration for collision-free path planning algorithms. Different algorithms may have different parameters and behavior.
|
|
552
726
|
* @export
|
|
553
|
-
* @interface CollisionMotionGroup
|
|
554
727
|
*/
|
|
555
|
-
export
|
|
556
|
-
/**
|
|
557
|
-
* A link chain is a kinematic chain of links that is connected via joints. A motion group can be used to control the motion of the joints in a link chain. A link is a group of colliders that is attached to the link reference frame. The reference frame of a link is obtained after applying all sets of Denavit-Hartenberg-parameters from base to (including) the link index. This means that the reference frame of the link is on the rotation axis of the next joint in the kinematic chain. Example: For a motion group with 2 joints, the collider reference frame (CRF) for link 1 is on the rotation axis of joint 2. The chain looks like: - Origin >> Mounting >> Base >> (CRF Base) Joint 0 >> Link 0 >> (CRF Link 0) Joint 1 >> Link 1 >> (CRF Link 1) Flange (CRF Tool) >> TCP Adjacent links in the kinematic chain of the motion group are not checked for mutual collision.
|
|
558
|
-
* @type {Array<{ [key: string]: Collider; }>}
|
|
559
|
-
* @memberof CollisionMotionGroup
|
|
560
|
-
*/
|
|
561
|
-
'link_chain'?: Array<{
|
|
562
|
-
[key: string]: Collider;
|
|
563
|
-
}>;
|
|
564
|
-
/**
|
|
565
|
-
* Defines the shape of a tool. A tool is a dictionary of colliders. All colliders that make up a tool are attached to the flange frame of the motion group.
|
|
566
|
-
* @type {{ [key: string]: Collider; }}
|
|
567
|
-
* @memberof CollisionMotionGroup
|
|
568
|
-
*/
|
|
569
|
-
'tool'?: {
|
|
570
|
-
[key: string]: Collider;
|
|
571
|
-
};
|
|
572
|
-
}
|
|
728
|
+
export type CollisionFreeAlgorithm = MidpointInsertionAlgorithm | RRTConnectAlgorithm;
|
|
573
729
|
/**
|
|
574
730
|
*
|
|
575
731
|
* @export
|
|
576
|
-
* @interface
|
|
732
|
+
* @interface CollisionSetup
|
|
577
733
|
*/
|
|
578
|
-
export interface
|
|
734
|
+
export interface CollisionSetup {
|
|
579
735
|
/**
|
|
580
|
-
*
|
|
581
|
-
* @type {string}
|
|
582
|
-
* @memberof
|
|
583
|
-
*/
|
|
584
|
-
'stored_link_chain'?: string;
|
|
585
|
-
/**
|
|
586
|
-
* References a stored tool.
|
|
587
|
-
* @type {string}
|
|
588
|
-
* @memberof CollisionMotionGroupAssembly
|
|
736
|
+
* A collection of identifiable colliders.
|
|
737
|
+
* @type {{ [key: string]: Collider; }}
|
|
738
|
+
* @memberof CollisionSetup
|
|
589
739
|
*/
|
|
590
|
-
'
|
|
740
|
+
'colliders'?: {
|
|
741
|
+
[key: string]: Collider;
|
|
742
|
+
};
|
|
591
743
|
/**
|
|
592
744
|
* A link chain is a kinematic chain of links that is connected via joints. A motion group can be used to control the motion of the joints in a link chain. A link is a group of colliders that is attached to the link reference frame. The reference frame of a link is obtained after applying all sets of Denavit-Hartenberg-parameters from base to (including) the link index. This means that the reference frame of the link is on the rotation axis of the next joint in the kinematic chain. Example: For a motion group with 2 joints, the collider reference frame (CRF) for link 1 is on the rotation axis of joint 2. The chain looks like: - Origin >> Mounting >> Base >> (CRF Base) Joint 0 >> Link 0 >> (CRF Link 0) Joint 1 >> Link 1 >> (CRF Link 1) Flange (CRF Tool) >> TCP Adjacent links in the kinematic chain of the motion group are not checked for mutual collision.
|
|
593
745
|
* @type {Array<{ [key: string]: Collider; }>}
|
|
594
|
-
* @memberof
|
|
746
|
+
* @memberof CollisionSetup
|
|
595
747
|
*/
|
|
596
748
|
'link_chain'?: Array<{
|
|
597
749
|
[key: string]: Collider;
|
|
@@ -599,75 +751,17 @@ export interface CollisionMotionGroupAssembly {
|
|
|
599
751
|
/**
|
|
600
752
|
* Defines the shape of a tool. A tool is a dictionary of colliders. All colliders that make up a tool are attached to the flange frame of the motion group.
|
|
601
753
|
* @type {{ [key: string]: Collider; }}
|
|
602
|
-
* @memberof
|
|
754
|
+
* @memberof CollisionSetup
|
|
603
755
|
*/
|
|
604
756
|
'tool'?: {
|
|
605
757
|
[key: string]: Collider;
|
|
606
758
|
};
|
|
607
|
-
}
|
|
608
|
-
/**
|
|
609
|
-
* Defines the collision scene. There are two types of objects in the scene: - `colliders`: Each collider is attached directly to the origin of the scene: Origin >> Collider - `motion-groups`: Each motion group is assigned a kinematic chain of links with a special collider, called tool, attached to the last element. The motion group is attached to the origin of the scene via its mounting: Origin >> Mounting >> Motion Group Base >> […]
|
|
610
|
-
* @export
|
|
611
|
-
* @interface CollisionScene
|
|
612
|
-
*/
|
|
613
|
-
export interface CollisionScene {
|
|
614
|
-
/**
|
|
615
|
-
* A collection of identifiable colliders.
|
|
616
|
-
* @type {{ [key: string]: Collider; }}
|
|
617
|
-
* @memberof CollisionScene
|
|
618
|
-
*/
|
|
619
|
-
'colliders'?: {
|
|
620
|
-
[key: string]: Collider;
|
|
621
|
-
};
|
|
622
759
|
/**
|
|
623
|
-
*
|
|
624
|
-
* @type {
|
|
625
|
-
* @memberof
|
|
626
|
-
*/
|
|
627
|
-
'motion_groups'?: {
|
|
628
|
-
[key: string]: CollisionMotionGroup;
|
|
629
|
-
};
|
|
630
|
-
}
|
|
631
|
-
/**
|
|
632
|
-
* Defines the collision scene assembly. Merges all referenced and new scene components into a single scene. Previously added components with identical identifiers are overwritten within the same group. There is one group for each of the following components: - Colliders attached to the origin of the scene, - Tool per motion group, and - For each link per motion group. The scene is assembled by adding components in the following order. 1. stored_scenes 2. scene 3. stored_colliders 4. colliders 5. stored_link_chains and stored_tools (per motion group) 6. link_chains and tools (per motion group)
|
|
633
|
-
* @export
|
|
634
|
-
* @interface CollisionSceneAssembly
|
|
635
|
-
*/
|
|
636
|
-
export interface CollisionSceneAssembly {
|
|
637
|
-
/**
|
|
638
|
-
* Add stored scenes to the scene via their identifiers. The scenes are merged based on their order in the array. The scene at index zero serves as base. Following scenes overwrite components with identical identifiers, see [Collision Scene Assembly](Collision Scene Assembly).
|
|
639
|
-
* @type {Array<string>}
|
|
640
|
-
* @memberof CollisionSceneAssembly
|
|
641
|
-
*/
|
|
642
|
-
'stored_scenes'?: Array<string>;
|
|
643
|
-
/**
|
|
644
|
-
*
|
|
645
|
-
* @type {CollisionScene}
|
|
646
|
-
* @memberof CollisionSceneAssembly
|
|
647
|
-
*/
|
|
648
|
-
'scene'?: CollisionScene;
|
|
649
|
-
/**
|
|
650
|
-
* Add stored colliders to the scene via their identifiers. The colliders are added to the the origin of the scene.
|
|
651
|
-
* @type {Array<string>}
|
|
652
|
-
* @memberof CollisionSceneAssembly
|
|
653
|
-
*/
|
|
654
|
-
'stored_colliders'?: Array<string>;
|
|
655
|
-
/**
|
|
656
|
-
* A collection of identifiable colliders.
|
|
657
|
-
* @type {{ [key: string]: Collider; }}
|
|
658
|
-
* @memberof CollisionSceneAssembly
|
|
659
|
-
*/
|
|
660
|
-
'colliders'?: {
|
|
661
|
-
[key: string]: Collider;
|
|
662
|
-
};
|
|
663
|
-
/**
|
|
664
|
-
* Maps a Wandelbots NOVA motion group to its assembly configuration in the collision scene. Key must be a motion group identifier. A collision motion group defines a motion group in the collision scene. The motion group is attached to the origin of the scene. To relocate the motion group, configure its mounting offset on the physical controller. This ensures that the definition of motion commands and collision scenes use the same coordinate system. The kinematic chain looks like this: - Origin >> Mounting >> Base >> Joint 0 >> Link 0 >> Joint 1 >> […] >> TCP A `tool` is treated like another link attached to the end (flange) of the kinematic chain. All tool colliders are described in the flange frame.
|
|
665
|
-
* @type {{ [key: string]: CollisionMotionGroupAssembly; }}
|
|
666
|
-
* @memberof CollisionSceneAssembly
|
|
760
|
+
* If true, self-collision detection is enabled for the motion group. Self-collision detection checks if links in the kinematic chain of the motion group collide with each other. Adjacent links in the kinematic chain of the motion group are not checked for mutual collision. The tool is treated like a link at the end of the kinematic chain. It is checked against all links except the last one. Default is true.
|
|
761
|
+
* @type {boolean}
|
|
762
|
+
* @memberof CollisionSetup
|
|
667
763
|
*/
|
|
668
|
-
'
|
|
669
|
-
[key: string]: CollisionMotionGroupAssembly;
|
|
670
|
-
};
|
|
764
|
+
'self_collision_detection'?: boolean;
|
|
671
765
|
}
|
|
672
766
|
/**
|
|
673
767
|
* Comparator for the comparison of two values. The comparator is used to compare two values and return a boolean result. The default comparator is unknown.
|
|
@@ -840,6 +934,25 @@ export interface ContainerImageSecretsInner {
|
|
|
840
934
|
*/
|
|
841
935
|
'name': string;
|
|
842
936
|
}
|
|
937
|
+
/**
|
|
938
|
+
* Additional resources that the application requires.
|
|
939
|
+
* @export
|
|
940
|
+
* @interface ContainerResources
|
|
941
|
+
*/
|
|
942
|
+
export interface ContainerResources {
|
|
943
|
+
/**
|
|
944
|
+
* Number of GPUs the application requires.
|
|
945
|
+
* @type {number}
|
|
946
|
+
* @memberof ContainerResources
|
|
947
|
+
*/
|
|
948
|
+
'intel_gpu'?: number;
|
|
949
|
+
/**
|
|
950
|
+
* The maximum memory allocated to this application.
|
|
951
|
+
* @type {string}
|
|
952
|
+
* @memberof ContainerResources
|
|
953
|
+
*/
|
|
954
|
+
'memory_limit'?: string;
|
|
955
|
+
}
|
|
843
956
|
/**
|
|
844
957
|
* The path and capacity of a volume that retains data across application restarts. The maximal requestable capacity is 300Mi. If you need more capacity consider using [storeObject](storeObject).
|
|
845
958
|
* @export
|
|
@@ -1102,22 +1215,115 @@ export declare const Direction: {
|
|
|
1102
1215
|
};
|
|
1103
1216
|
export type Direction = typeof Direction[keyof typeof Direction];
|
|
1104
1217
|
/**
|
|
1105
|
-
*
|
|
1218
|
+
* The provided joint data does not match the expected number of joints for this motion group.
|
|
1106
1219
|
* @export
|
|
1107
|
-
* @interface
|
|
1220
|
+
* @interface ErrorInvalidJointCount
|
|
1108
1221
|
*/
|
|
1109
|
-
export interface
|
|
1222
|
+
export interface ErrorInvalidJointCount {
|
|
1223
|
+
/**
|
|
1224
|
+
* The expected number of joints for this motion group.
|
|
1225
|
+
* @type {number}
|
|
1226
|
+
* @memberof ErrorInvalidJointCount
|
|
1227
|
+
*/
|
|
1228
|
+
'expected_joint_count': number;
|
|
1229
|
+
/**
|
|
1230
|
+
* The number of provided joints.
|
|
1231
|
+
* @type {number}
|
|
1232
|
+
* @memberof ErrorInvalidJointCount
|
|
1233
|
+
*/
|
|
1234
|
+
'provided_joint_count': number;
|
|
1110
1235
|
/**
|
|
1111
1236
|
*
|
|
1112
1237
|
* @type {string}
|
|
1113
|
-
* @memberof
|
|
1238
|
+
* @memberof ErrorInvalidJointCount
|
|
1114
1239
|
*/
|
|
1115
|
-
'
|
|
1240
|
+
'error_feedback_name': ErrorInvalidJointCountErrorFeedbackNameEnum;
|
|
1116
1241
|
}
|
|
1117
|
-
export declare const
|
|
1118
|
-
readonly
|
|
1242
|
+
export declare const ErrorInvalidJointCountErrorFeedbackNameEnum: {
|
|
1243
|
+
readonly ErrorInvalidJointCount: "ErrorInvalidJointCount";
|
|
1244
|
+
};
|
|
1245
|
+
export type ErrorInvalidJointCountErrorFeedbackNameEnum = typeof ErrorInvalidJointCountErrorFeedbackNameEnum[keyof typeof ErrorInvalidJointCountErrorFeedbackNameEnum];
|
|
1246
|
+
/**
|
|
1247
|
+
* A reference joint position (start or target) exceeds the configured joint limits.
|
|
1248
|
+
* @export
|
|
1249
|
+
* @interface ErrorJointLimitExceeded
|
|
1250
|
+
*/
|
|
1251
|
+
export interface ErrorJointLimitExceeded {
|
|
1252
|
+
/**
|
|
1253
|
+
* Index of the joint exceeding its limits (0-based).
|
|
1254
|
+
* @type {number}
|
|
1255
|
+
* @memberof ErrorJointLimitExceeded
|
|
1256
|
+
*/
|
|
1257
|
+
'joint_index'?: number;
|
|
1258
|
+
/**
|
|
1259
|
+
*
|
|
1260
|
+
* @type {Array<number>}
|
|
1261
|
+
* @memberof ErrorJointLimitExceeded
|
|
1262
|
+
*/
|
|
1263
|
+
'joint_position'?: Array<number>;
|
|
1264
|
+
/**
|
|
1265
|
+
*
|
|
1266
|
+
* @type {string}
|
|
1267
|
+
* @memberof ErrorJointLimitExceeded
|
|
1268
|
+
*/
|
|
1269
|
+
'error_feedback_name': ErrorJointLimitExceededErrorFeedbackNameEnum;
|
|
1270
|
+
}
|
|
1271
|
+
export declare const ErrorJointLimitExceededErrorFeedbackNameEnum: {
|
|
1272
|
+
readonly ErrorJointLimitExceeded: "ErrorJointLimitExceeded";
|
|
1273
|
+
};
|
|
1274
|
+
export type ErrorJointLimitExceededErrorFeedbackNameEnum = typeof ErrorJointLimitExceededErrorFeedbackNameEnum[keyof typeof ErrorJointLimitExceededErrorFeedbackNameEnum];
|
|
1275
|
+
/**
|
|
1276
|
+
* A reference joint position (e.g. start or target joint position) results in collisions that prevent processing.
|
|
1277
|
+
* @export
|
|
1278
|
+
* @interface ErrorJointPositionCollision
|
|
1279
|
+
*/
|
|
1280
|
+
export interface ErrorJointPositionCollision {
|
|
1281
|
+
/**
|
|
1282
|
+
*
|
|
1283
|
+
* @type {Array<Collision>}
|
|
1284
|
+
* @memberof ErrorJointPositionCollision
|
|
1285
|
+
*/
|
|
1286
|
+
'collisions'?: Array<Collision>;
|
|
1287
|
+
/**
|
|
1288
|
+
*
|
|
1289
|
+
* @type {Array<number>}
|
|
1290
|
+
* @memberof ErrorJointPositionCollision
|
|
1291
|
+
*/
|
|
1292
|
+
'joint_position'?: Array<number>;
|
|
1293
|
+
/**
|
|
1294
|
+
*
|
|
1295
|
+
* @type {string}
|
|
1296
|
+
* @memberof ErrorJointPositionCollision
|
|
1297
|
+
*/
|
|
1298
|
+
'error_feedback_name': ErrorJointPositionCollisionErrorFeedbackNameEnum;
|
|
1299
|
+
}
|
|
1300
|
+
export declare const ErrorJointPositionCollisionErrorFeedbackNameEnum: {
|
|
1301
|
+
readonly ErrorJointPositionCollision: "ErrorJointPositionCollision";
|
|
1119
1302
|
};
|
|
1120
|
-
export type
|
|
1303
|
+
export type ErrorJointPositionCollisionErrorFeedbackNameEnum = typeof ErrorJointPositionCollisionErrorFeedbackNameEnum[keyof typeof ErrorJointPositionCollisionErrorFeedbackNameEnum];
|
|
1304
|
+
/**
|
|
1305
|
+
* The collision-free planning algorithm reached its maximum iteration limit without finding a valid path. Increase max_iterations or modify the start/target positions.
|
|
1306
|
+
* @export
|
|
1307
|
+
* @interface ErrorMaxIterationsExceeded
|
|
1308
|
+
*/
|
|
1309
|
+
export interface ErrorMaxIterationsExceeded {
|
|
1310
|
+
/**
|
|
1311
|
+
* The maximum number of iterations that was reached.
|
|
1312
|
+
* @type {number}
|
|
1313
|
+
* @memberof ErrorMaxIterationsExceeded
|
|
1314
|
+
*/
|
|
1315
|
+
'max_iterations'?: number;
|
|
1316
|
+
/**
|
|
1317
|
+
*
|
|
1318
|
+
* @type {string}
|
|
1319
|
+
* @memberof ErrorMaxIterationsExceeded
|
|
1320
|
+
*/
|
|
1321
|
+
'error_feedback_name': ErrorMaxIterationsExceededErrorFeedbackNameEnum;
|
|
1322
|
+
}
|
|
1323
|
+
export declare const ErrorMaxIterationsExceededErrorFeedbackNameEnum: {
|
|
1324
|
+
readonly ErrorMaxIterationsExceeded: "ErrorMaxIterationsExceeded";
|
|
1325
|
+
};
|
|
1326
|
+
export type ErrorMaxIterationsExceededErrorFeedbackNameEnum = typeof ErrorMaxIterationsExceededErrorFeedbackNameEnum[keyof typeof ErrorMaxIterationsExceededErrorFeedbackNameEnum];
|
|
1121
1327
|
/**
|
|
1122
1328
|
* Details about the state of the motion execution. The details are either for a jogging or a trajectory. If NOVA is not controlling this motion group at the moment, this field is omitted.
|
|
1123
1329
|
* @export
|
|
@@ -1376,58 +1582,141 @@ export type FloatValueValueTypeEnum = typeof FloatValueValueTypeEnum[keyof typeo
|
|
|
1376
1582
|
/**
|
|
1377
1583
|
*
|
|
1378
1584
|
* @export
|
|
1379
|
-
* @interface
|
|
1585
|
+
* @interface ForwardKinematics422Response
|
|
1380
1586
|
*/
|
|
1381
|
-
export interface
|
|
1587
|
+
export interface ForwardKinematics422Response {
|
|
1382
1588
|
/**
|
|
1383
1589
|
*
|
|
1384
|
-
* @type {
|
|
1385
|
-
* @memberof
|
|
1590
|
+
* @type {Array<ForwardKinematicsValidationError>}
|
|
1591
|
+
* @memberof ForwardKinematics422Response
|
|
1386
1592
|
*/
|
|
1387
|
-
'
|
|
1593
|
+
'detail'?: Array<ForwardKinematicsValidationError>;
|
|
1388
1594
|
}
|
|
1389
1595
|
/**
|
|
1390
1596
|
*
|
|
1391
1597
|
* @export
|
|
1392
|
-
* @interface
|
|
1598
|
+
* @interface ForwardKinematicsRequest
|
|
1393
1599
|
*/
|
|
1394
|
-
export interface
|
|
1600
|
+
export interface ForwardKinematicsRequest {
|
|
1395
1601
|
/**
|
|
1396
|
-
*
|
|
1602
|
+
* String identifiying the model of a motion group.
|
|
1397
1603
|
* @type {string}
|
|
1398
|
-
* @memberof
|
|
1604
|
+
* @memberof ForwardKinematicsRequest
|
|
1399
1605
|
*/
|
|
1400
|
-
'
|
|
1606
|
+
'motion_group_model': string;
|
|
1401
1607
|
/**
|
|
1402
|
-
*
|
|
1403
|
-
* @type {
|
|
1404
|
-
* @memberof
|
|
1608
|
+
* List of joint positions [rad] for which TCP poses are computed.
|
|
1609
|
+
* @type {Array<Array<number>>}
|
|
1610
|
+
* @memberof ForwardKinematicsRequest
|
|
1405
1611
|
*/
|
|
1406
|
-
'
|
|
1612
|
+
'joint_positions': Array<Array<number>>;
|
|
1407
1613
|
/**
|
|
1408
|
-
*
|
|
1409
|
-
* @type {
|
|
1410
|
-
* @memberof
|
|
1614
|
+
*
|
|
1615
|
+
* @type {Pose}
|
|
1616
|
+
* @memberof ForwardKinematicsRequest
|
|
1411
1617
|
*/
|
|
1412
|
-
'
|
|
1618
|
+
'tcp_offset'?: Pose;
|
|
1619
|
+
/**
|
|
1620
|
+
* Offset from the world frame to the motion group base.
|
|
1621
|
+
* @type {Pose}
|
|
1622
|
+
* @memberof ForwardKinematicsRequest
|
|
1623
|
+
*/
|
|
1624
|
+
'mounting'?: Pose;
|
|
1413
1625
|
}
|
|
1414
1626
|
/**
|
|
1415
1627
|
*
|
|
1416
1628
|
* @export
|
|
1417
|
-
* @interface
|
|
1629
|
+
* @interface ForwardKinematicsResponse
|
|
1418
1630
|
*/
|
|
1419
|
-
export interface
|
|
1631
|
+
export interface ForwardKinematicsResponse {
|
|
1420
1632
|
/**
|
|
1421
|
-
*
|
|
1422
|
-
* @type {Array<
|
|
1423
|
-
* @memberof
|
|
1633
|
+
* List of computed TCP poses corresponding to the input joint positions.
|
|
1634
|
+
* @type {Array<Pose>}
|
|
1635
|
+
* @memberof ForwardKinematicsResponse
|
|
1424
1636
|
*/
|
|
1425
|
-
'
|
|
1637
|
+
'tcp_poses': Array<Pose>;
|
|
1426
1638
|
}
|
|
1427
1639
|
/**
|
|
1428
|
-
*
|
|
1640
|
+
*
|
|
1429
1641
|
* @export
|
|
1430
|
-
* @interface
|
|
1642
|
+
* @interface ForwardKinematicsValidationError
|
|
1643
|
+
*/
|
|
1644
|
+
export interface ForwardKinematicsValidationError {
|
|
1645
|
+
/**
|
|
1646
|
+
*
|
|
1647
|
+
* @type {Array<ValidationErrorLocInner>}
|
|
1648
|
+
* @memberof ForwardKinematicsValidationError
|
|
1649
|
+
*/
|
|
1650
|
+
'loc': Array<ValidationErrorLocInner>;
|
|
1651
|
+
/**
|
|
1652
|
+
*
|
|
1653
|
+
* @type {string}
|
|
1654
|
+
* @memberof ForwardKinematicsValidationError
|
|
1655
|
+
*/
|
|
1656
|
+
'msg': string;
|
|
1657
|
+
/**
|
|
1658
|
+
*
|
|
1659
|
+
* @type {string}
|
|
1660
|
+
* @memberof ForwardKinematicsValidationError
|
|
1661
|
+
*/
|
|
1662
|
+
'type': string;
|
|
1663
|
+
/**
|
|
1664
|
+
*
|
|
1665
|
+
* @type {{ [key: string]: any; }}
|
|
1666
|
+
* @memberof ForwardKinematicsValidationError
|
|
1667
|
+
*/
|
|
1668
|
+
'input': {
|
|
1669
|
+
[key: string]: any;
|
|
1670
|
+
};
|
|
1671
|
+
/**
|
|
1672
|
+
*
|
|
1673
|
+
* @type {ErrorInvalidJointCount}
|
|
1674
|
+
* @memberof ForwardKinematicsValidationError
|
|
1675
|
+
*/
|
|
1676
|
+
'data'?: ErrorInvalidJointCount;
|
|
1677
|
+
}
|
|
1678
|
+
/**
|
|
1679
|
+
*
|
|
1680
|
+
* @export
|
|
1681
|
+
* @interface GetTrajectoryResponse
|
|
1682
|
+
*/
|
|
1683
|
+
export interface GetTrajectoryResponse {
|
|
1684
|
+
/**
|
|
1685
|
+
* Unique identifier of the motion group the trajectory is planned for.
|
|
1686
|
+
* @type {string}
|
|
1687
|
+
* @memberof GetTrajectoryResponse
|
|
1688
|
+
*/
|
|
1689
|
+
'motion_group': string;
|
|
1690
|
+
/**
|
|
1691
|
+
* The trajectory consisting of a list of joint positions and an equal number of corresponding timestamps.
|
|
1692
|
+
* @type {JointTrajectory}
|
|
1693
|
+
* @memberof GetTrajectoryResponse
|
|
1694
|
+
*/
|
|
1695
|
+
'trajectory': JointTrajectory;
|
|
1696
|
+
/**
|
|
1697
|
+
* Unique identifier of the tool the trajectory is planned for.
|
|
1698
|
+
* @type {string}
|
|
1699
|
+
* @memberof GetTrajectoryResponse
|
|
1700
|
+
*/
|
|
1701
|
+
'tcp': string;
|
|
1702
|
+
}
|
|
1703
|
+
/**
|
|
1704
|
+
*
|
|
1705
|
+
* @export
|
|
1706
|
+
* @interface HTTPValidationError
|
|
1707
|
+
*/
|
|
1708
|
+
export interface HTTPValidationError {
|
|
1709
|
+
/**
|
|
1710
|
+
*
|
|
1711
|
+
* @type {Array<ValidationError>}
|
|
1712
|
+
* @memberof HTTPValidationError
|
|
1713
|
+
*/
|
|
1714
|
+
'detail'?: Array<ValidationError>;
|
|
1715
|
+
}
|
|
1716
|
+
/**
|
|
1717
|
+
* Input/Output boolean value representation.
|
|
1718
|
+
* @export
|
|
1719
|
+
* @interface IOBooleanValue
|
|
1431
1720
|
*/
|
|
1432
1721
|
export interface IOBooleanValue {
|
|
1433
1722
|
/**
|
|
@@ -1877,6 +2166,19 @@ export interface InvalidDofInvalidDof {
|
|
|
1877
2166
|
*/
|
|
1878
2167
|
'joint_position'?: Array<number>;
|
|
1879
2168
|
}
|
|
2169
|
+
/**
|
|
2170
|
+
*
|
|
2171
|
+
* @export
|
|
2172
|
+
* @interface InverseKinematics422Response
|
|
2173
|
+
*/
|
|
2174
|
+
export interface InverseKinematics422Response {
|
|
2175
|
+
/**
|
|
2176
|
+
*
|
|
2177
|
+
* @type {Array<InverseKinematicsValidationError>}
|
|
2178
|
+
* @memberof InverseKinematics422Response
|
|
2179
|
+
*/
|
|
2180
|
+
'detail'?: Array<InverseKinematicsValidationError>;
|
|
2181
|
+
}
|
|
1880
2182
|
/**
|
|
1881
2183
|
*
|
|
1882
2184
|
* @export
|
|
@@ -1914,12 +2216,12 @@ export interface InverseKinematicsRequest {
|
|
|
1914
2216
|
*/
|
|
1915
2217
|
'joint_position_limits'?: Array<LimitRange>;
|
|
1916
2218
|
/**
|
|
1917
|
-
* Collision
|
|
1918
|
-
* @type {{ [key: string]:
|
|
2219
|
+
* Collision layers to be respected by the motion planner when planning for a single motion group. Each setup represents one layer, e.g. the safety zones and shapes or a fine grained tool and workpiece model. Layers are checked individually along the trajectory and independently of other layers. To respect the safety zones of the controller and check for collision: 1. Fetch the safety zones, link and tool shapes from the controller. 2. Add the fetched zones, links and tools to a layer. 3. Create other layers from your own 3D data as needed. 4. Plan trajectory. 5. The response highlights the layer in which a collision was detected by key.
|
|
2220
|
+
* @type {{ [key: string]: CollisionSetup; }}
|
|
1919
2221
|
* @memberof InverseKinematicsRequest
|
|
1920
2222
|
*/
|
|
1921
|
-
'
|
|
1922
|
-
[key: string]:
|
|
2223
|
+
'collision_setups'?: {
|
|
2224
|
+
[key: string]: CollisionSetup;
|
|
1923
2225
|
};
|
|
1924
2226
|
}
|
|
1925
2227
|
/**
|
|
@@ -1935,6 +2237,55 @@ export interface InverseKinematicsResponse {
|
|
|
1935
2237
|
*/
|
|
1936
2238
|
'joints': Array<Array<Array<number>>>;
|
|
1937
2239
|
}
|
|
2240
|
+
/**
|
|
2241
|
+
*
|
|
2242
|
+
* @export
|
|
2243
|
+
* @interface InverseKinematicsValidationError
|
|
2244
|
+
*/
|
|
2245
|
+
export interface InverseKinematicsValidationError {
|
|
2246
|
+
/**
|
|
2247
|
+
*
|
|
2248
|
+
* @type {Array<ValidationErrorLocInner>}
|
|
2249
|
+
* @memberof InverseKinematicsValidationError
|
|
2250
|
+
*/
|
|
2251
|
+
'loc': Array<ValidationErrorLocInner>;
|
|
2252
|
+
/**
|
|
2253
|
+
*
|
|
2254
|
+
* @type {string}
|
|
2255
|
+
* @memberof InverseKinematicsValidationError
|
|
2256
|
+
*/
|
|
2257
|
+
'msg': string;
|
|
2258
|
+
/**
|
|
2259
|
+
*
|
|
2260
|
+
* @type {string}
|
|
2261
|
+
* @memberof InverseKinematicsValidationError
|
|
2262
|
+
*/
|
|
2263
|
+
'type': string;
|
|
2264
|
+
/**
|
|
2265
|
+
*
|
|
2266
|
+
* @type {{ [key: string]: any; }}
|
|
2267
|
+
* @memberof InverseKinematicsValidationError
|
|
2268
|
+
*/
|
|
2269
|
+
'input': {
|
|
2270
|
+
[key: string]: any;
|
|
2271
|
+
};
|
|
2272
|
+
/**
|
|
2273
|
+
*
|
|
2274
|
+
* @type {InverseKinematicsValidationErrorAllOfData}
|
|
2275
|
+
* @memberof InverseKinematicsValidationError
|
|
2276
|
+
*/
|
|
2277
|
+
'data'?: InverseKinematicsValidationErrorAllOfData;
|
|
2278
|
+
}
|
|
2279
|
+
/**
|
|
2280
|
+
* @type InverseKinematicsValidationErrorAllOfData
|
|
2281
|
+
* Optional data further specifying the validation error.
|
|
2282
|
+
* @export
|
|
2283
|
+
*/
|
|
2284
|
+
export type InverseKinematicsValidationErrorAllOfData = {
|
|
2285
|
+
error_feedback_name: 'ErrorInvalidJointCount';
|
|
2286
|
+
} & ErrorInvalidJointCount | {
|
|
2287
|
+
error_feedback_name: 'ErrorJointLimitExceeded';
|
|
2288
|
+
} & ErrorJointLimitExceeded;
|
|
1938
2289
|
/**
|
|
1939
2290
|
* State of jogging execution. This state is sent during jogging movement, response-rate closest to the nearest multiple of controller step-rate but not exceeding the configured rate. The jogging state can be one of the following: - RUNNING: Jogging is active. - PAUSED_BY_USER: User has paused jogging. - PAUSED_NEAR_JOINT_LIMIT: Jogging was paused because a joint is is near its limit. - PAUSED_NEAR_COLLISION: Jogging was paused because the motion group neared a collision. - PAUSED_ON_IO: Jogging was paused because of an I/O event.
|
|
1940
2291
|
* @export
|
|
@@ -1962,7 +2313,104 @@ export type JoggingDetailsKindEnum = typeof JoggingDetailsKindEnum[keyof typeof
|
|
|
1962
2313
|
* @type JoggingDetailsState
|
|
1963
2314
|
* @export
|
|
1964
2315
|
*/
|
|
1965
|
-
export type JoggingDetailsState =
|
|
2316
|
+
export type JoggingDetailsState = JoggingPausedByUser | JoggingPausedNearCollision | JoggingPausedNearJointLimit | JoggingPausedOnIO | JoggingRunning;
|
|
2317
|
+
/**
|
|
2318
|
+
*
|
|
2319
|
+
* @export
|
|
2320
|
+
* @interface JoggingPausedByUser
|
|
2321
|
+
*/
|
|
2322
|
+
export interface JoggingPausedByUser {
|
|
2323
|
+
/**
|
|
2324
|
+
*
|
|
2325
|
+
* @type {string}
|
|
2326
|
+
* @memberof JoggingPausedByUser
|
|
2327
|
+
*/
|
|
2328
|
+
'kind': JoggingPausedByUserKindEnum;
|
|
2329
|
+
}
|
|
2330
|
+
export declare const JoggingPausedByUserKindEnum: {
|
|
2331
|
+
readonly PausedByUser: "PAUSED_BY_USER";
|
|
2332
|
+
};
|
|
2333
|
+
export type JoggingPausedByUserKindEnum = typeof JoggingPausedByUserKindEnum[keyof typeof JoggingPausedByUserKindEnum];
|
|
2334
|
+
/**
|
|
2335
|
+
*
|
|
2336
|
+
* @export
|
|
2337
|
+
* @interface JoggingPausedNearCollision
|
|
2338
|
+
*/
|
|
2339
|
+
export interface JoggingPausedNearCollision {
|
|
2340
|
+
/**
|
|
2341
|
+
*
|
|
2342
|
+
* @type {string}
|
|
2343
|
+
* @memberof JoggingPausedNearCollision
|
|
2344
|
+
*/
|
|
2345
|
+
'kind': JoggingPausedNearCollisionKindEnum;
|
|
2346
|
+
/**
|
|
2347
|
+
*
|
|
2348
|
+
* @type {string}
|
|
2349
|
+
* @memberof JoggingPausedNearCollision
|
|
2350
|
+
*/
|
|
2351
|
+
'description': string;
|
|
2352
|
+
}
|
|
2353
|
+
export declare const JoggingPausedNearCollisionKindEnum: {
|
|
2354
|
+
readonly PausedNearCollision: "PAUSED_NEAR_COLLISION";
|
|
2355
|
+
};
|
|
2356
|
+
export type JoggingPausedNearCollisionKindEnum = typeof JoggingPausedNearCollisionKindEnum[keyof typeof JoggingPausedNearCollisionKindEnum];
|
|
2357
|
+
/**
|
|
2358
|
+
*
|
|
2359
|
+
* @export
|
|
2360
|
+
* @interface JoggingPausedNearJointLimit
|
|
2361
|
+
*/
|
|
2362
|
+
export interface JoggingPausedNearJointLimit {
|
|
2363
|
+
/**
|
|
2364
|
+
*
|
|
2365
|
+
* @type {string}
|
|
2366
|
+
* @memberof JoggingPausedNearJointLimit
|
|
2367
|
+
*/
|
|
2368
|
+
'kind': JoggingPausedNearJointLimitKindEnum;
|
|
2369
|
+
/**
|
|
2370
|
+
*
|
|
2371
|
+
* @type {Array<number>}
|
|
2372
|
+
* @memberof JoggingPausedNearJointLimit
|
|
2373
|
+
*/
|
|
2374
|
+
'joint_indices': Array<number>;
|
|
2375
|
+
}
|
|
2376
|
+
export declare const JoggingPausedNearJointLimitKindEnum: {
|
|
2377
|
+
readonly PausedNearJointLimit: "PAUSED_NEAR_JOINT_LIMIT";
|
|
2378
|
+
};
|
|
2379
|
+
export type JoggingPausedNearJointLimitKindEnum = typeof JoggingPausedNearJointLimitKindEnum[keyof typeof JoggingPausedNearJointLimitKindEnum];
|
|
2380
|
+
/**
|
|
2381
|
+
*
|
|
2382
|
+
* @export
|
|
2383
|
+
* @interface JoggingPausedOnIO
|
|
2384
|
+
*/
|
|
2385
|
+
export interface JoggingPausedOnIO {
|
|
2386
|
+
/**
|
|
2387
|
+
*
|
|
2388
|
+
* @type {string}
|
|
2389
|
+
* @memberof JoggingPausedOnIO
|
|
2390
|
+
*/
|
|
2391
|
+
'kind': JoggingPausedOnIOKindEnum;
|
|
2392
|
+
}
|
|
2393
|
+
export declare const JoggingPausedOnIOKindEnum: {
|
|
2394
|
+
readonly PausedOnIo: "PAUSED_ON_IO";
|
|
2395
|
+
};
|
|
2396
|
+
export type JoggingPausedOnIOKindEnum = typeof JoggingPausedOnIOKindEnum[keyof typeof JoggingPausedOnIOKindEnum];
|
|
2397
|
+
/**
|
|
2398
|
+
*
|
|
2399
|
+
* @export
|
|
2400
|
+
* @interface JoggingRunning
|
|
2401
|
+
*/
|
|
2402
|
+
export interface JoggingRunning {
|
|
2403
|
+
/**
|
|
2404
|
+
*
|
|
2405
|
+
* @type {string}
|
|
2406
|
+
* @memberof JoggingRunning
|
|
2407
|
+
*/
|
|
2408
|
+
'kind': JoggingRunningKindEnum;
|
|
2409
|
+
}
|
|
2410
|
+
export declare const JoggingRunningKindEnum: {
|
|
2411
|
+
readonly Running: "RUNNING";
|
|
2412
|
+
};
|
|
2413
|
+
export type JoggingRunningKindEnum = typeof JoggingRunningKindEnum[keyof typeof JoggingRunningKindEnum];
|
|
1966
2414
|
/**
|
|
1967
2415
|
*
|
|
1968
2416
|
* @export
|
|
@@ -2384,6 +2832,29 @@ export declare const Manufacturer: {
|
|
|
2384
2832
|
readonly Yaskawa: "yaskawa";
|
|
2385
2833
|
};
|
|
2386
2834
|
export type Manufacturer = typeof Manufacturer[keyof typeof Manufacturer];
|
|
2835
|
+
/**
|
|
2836
|
+
* Midpoint insertion algorithm configuration for collision-free path planning. This algorithm iteratively inserts midpoints between the start and target joint position to find collision-free paths.
|
|
2837
|
+
* @export
|
|
2838
|
+
* @interface MidpointInsertionAlgorithm
|
|
2839
|
+
*/
|
|
2840
|
+
export interface MidpointInsertionAlgorithm {
|
|
2841
|
+
/**
|
|
2842
|
+
* Algorithm discriminator.
|
|
2843
|
+
* @type {string}
|
|
2844
|
+
* @memberof MidpointInsertionAlgorithm
|
|
2845
|
+
*/
|
|
2846
|
+
'algorithm_name': MidpointInsertionAlgorithmAlgorithmNameEnum;
|
|
2847
|
+
/**
|
|
2848
|
+
* Maximum number of iterations for the midpoint insertion algorithm. Higher values increase likelyhood of success, but also computation time (linear).
|
|
2849
|
+
* @type {number}
|
|
2850
|
+
* @memberof MidpointInsertionAlgorithm
|
|
2851
|
+
*/
|
|
2852
|
+
'max_iterations'?: number;
|
|
2853
|
+
}
|
|
2854
|
+
export declare const MidpointInsertionAlgorithmAlgorithmNameEnum: {
|
|
2855
|
+
readonly MidpointInsertionAlgorithm: "MidpointInsertionAlgorithm";
|
|
2856
|
+
};
|
|
2857
|
+
export type MidpointInsertionAlgorithmAlgorithmNameEnum = typeof MidpointInsertionAlgorithmAlgorithmNameEnum[keyof typeof MidpointInsertionAlgorithmAlgorithmNameEnum];
|
|
2387
2858
|
/**
|
|
2388
2859
|
*
|
|
2389
2860
|
* @export
|
|
@@ -2574,6 +3045,57 @@ export interface MotionGroupJoints {
|
|
|
2574
3045
|
*/
|
|
2575
3046
|
'torques'?: Array<number>;
|
|
2576
3047
|
}
|
|
3048
|
+
/**
|
|
3049
|
+
*
|
|
3050
|
+
* @export
|
|
3051
|
+
* @interface MotionGroupSetup
|
|
3052
|
+
*/
|
|
3053
|
+
export interface MotionGroupSetup {
|
|
3054
|
+
/**
|
|
3055
|
+
* String identifiying the model of a motion group.
|
|
3056
|
+
* @type {string}
|
|
3057
|
+
* @memberof MotionGroupSetup
|
|
3058
|
+
*/
|
|
3059
|
+
'motion_group_model': string;
|
|
3060
|
+
/**
|
|
3061
|
+
* [ms] cycle time of the motion group controller. A trajectory for this motion group should be computed to this resolution.
|
|
3062
|
+
* @type {number}
|
|
3063
|
+
* @memberof MotionGroupSetup
|
|
3064
|
+
*/
|
|
3065
|
+
'cycle_time': number;
|
|
3066
|
+
/**
|
|
3067
|
+
* The offset from the world frame to the motion group base.
|
|
3068
|
+
* @type {Pose}
|
|
3069
|
+
* @memberof MotionGroupSetup
|
|
3070
|
+
*/
|
|
3071
|
+
'mounting'?: Pose;
|
|
3072
|
+
/**
|
|
3073
|
+
*
|
|
3074
|
+
* @type {Pose}
|
|
3075
|
+
* @memberof MotionGroupSetup
|
|
3076
|
+
*/
|
|
3077
|
+
'tcp_offset'?: Pose;
|
|
3078
|
+
/**
|
|
3079
|
+
*
|
|
3080
|
+
* @type {LimitSet}
|
|
3081
|
+
* @memberof MotionGroupSetup
|
|
3082
|
+
*/
|
|
3083
|
+
'global_limits'?: LimitSet;
|
|
3084
|
+
/**
|
|
3085
|
+
*
|
|
3086
|
+
* @type {Payload}
|
|
3087
|
+
* @memberof MotionGroupSetup
|
|
3088
|
+
*/
|
|
3089
|
+
'payload'?: Payload;
|
|
3090
|
+
/**
|
|
3091
|
+
* Collision layers to be respected by the motion planner when planning for a single motion group. Each setup represents one layer, e.g. the safety zones and shapes or a fine grained tool and workpiece model. Layers are checked individually along the trajectory and independently of other layers. To respect the safety zones of the controller and check for collision: 1. Fetch the safety zones, link and tool shapes from the controller. 2. Add the fetched zones, links and tools to a layer. 3. Create other layers from your own 3D data as needed. 4. Plan trajectory. 5. The response highlights the layer in which a collision was detected by key.
|
|
3092
|
+
* @type {{ [key: string]: CollisionSetup; }}
|
|
3093
|
+
* @memberof MotionGroupSetup
|
|
3094
|
+
*/
|
|
3095
|
+
'collision_setups'?: {
|
|
3096
|
+
[key: string]: CollisionSetup;
|
|
3097
|
+
};
|
|
3098
|
+
}
|
|
2577
3099
|
/**
|
|
2578
3100
|
* Presents the current state of the motion group.
|
|
2579
3101
|
* @export
|
|
@@ -3062,131 +3584,109 @@ export interface PauseOnIO {
|
|
|
3062
3584
|
/**
|
|
3063
3585
|
*
|
|
3064
3586
|
* @export
|
|
3065
|
-
* @interface
|
|
3587
|
+
* @interface Payload
|
|
3066
3588
|
*/
|
|
3067
|
-
export interface
|
|
3589
|
+
export interface Payload {
|
|
3068
3590
|
/**
|
|
3069
3591
|
*
|
|
3070
3592
|
* @type {string}
|
|
3071
|
-
* @memberof
|
|
3593
|
+
* @memberof Payload
|
|
3594
|
+
*/
|
|
3595
|
+
'name': string;
|
|
3596
|
+
/**
|
|
3597
|
+
* Mass of payload in [kg].
|
|
3598
|
+
* @type {number}
|
|
3599
|
+
* @memberof Payload
|
|
3600
|
+
*/
|
|
3601
|
+
'payload': number;
|
|
3602
|
+
/**
|
|
3603
|
+
* A three-dimensional vector [x, y, z] with double precision.
|
|
3604
|
+
* @type {Array<number>}
|
|
3605
|
+
* @memberof Payload
|
|
3606
|
+
*/
|
|
3607
|
+
'center_of_mass'?: Array<number>;
|
|
3608
|
+
/**
|
|
3609
|
+
* A three-dimensional vector [x, y, z] with double precision.
|
|
3610
|
+
* @type {Array<number>}
|
|
3611
|
+
* @memberof Payload
|
|
3072
3612
|
*/
|
|
3073
|
-
'
|
|
3613
|
+
'moment_of_inertia'?: Array<number>;
|
|
3074
3614
|
}
|
|
3075
|
-
export declare const PausedByRequestKindEnum: {
|
|
3076
|
-
readonly PausedByUser: "PAUSED_BY_USER";
|
|
3077
|
-
};
|
|
3078
|
-
export type PausedByRequestKindEnum = typeof PausedByRequestKindEnum[keyof typeof PausedByRequestKindEnum];
|
|
3079
3615
|
/**
|
|
3080
3616
|
*
|
|
3081
3617
|
* @export
|
|
3082
|
-
* @interface
|
|
3618
|
+
* @interface Plan422Response
|
|
3083
3619
|
*/
|
|
3084
|
-
export interface
|
|
3620
|
+
export interface Plan422Response {
|
|
3085
3621
|
/**
|
|
3086
3622
|
*
|
|
3087
|
-
* @type {
|
|
3088
|
-
* @memberof
|
|
3623
|
+
* @type {Array<PlanValidationError>}
|
|
3624
|
+
* @memberof Plan422Response
|
|
3089
3625
|
*/
|
|
3090
|
-
'
|
|
3626
|
+
'detail'?: Array<PlanValidationError>;
|
|
3091
3627
|
}
|
|
3092
|
-
export declare const PausedByUserKindEnum: {
|
|
3093
|
-
readonly PausedByUser: "PAUSED_BY_USER";
|
|
3094
|
-
};
|
|
3095
|
-
export type PausedByUserKindEnum = typeof PausedByUserKindEnum[keyof typeof PausedByUserKindEnum];
|
|
3096
3628
|
/**
|
|
3097
|
-
*
|
|
3629
|
+
* Response when collision-free trajectory planning fails. Contains specific feedback about why the planning failed.
|
|
3098
3630
|
* @export
|
|
3099
|
-
* @interface
|
|
3631
|
+
* @interface PlanCollisionFreeFailedResponse
|
|
3100
3632
|
*/
|
|
3101
|
-
export interface
|
|
3102
|
-
/**
|
|
3103
|
-
*
|
|
3104
|
-
* @type {string}
|
|
3105
|
-
* @memberof PausedNearCollision
|
|
3106
|
-
*/
|
|
3107
|
-
'kind': PausedNearCollisionKindEnum;
|
|
3633
|
+
export interface PlanCollisionFreeFailedResponse {
|
|
3108
3634
|
/**
|
|
3109
3635
|
*
|
|
3110
|
-
* @type {
|
|
3111
|
-
* @memberof
|
|
3636
|
+
* @type {ErrorMaxIterationsExceeded}
|
|
3637
|
+
* @memberof PlanCollisionFreeFailedResponse
|
|
3112
3638
|
*/
|
|
3113
|
-
'
|
|
3639
|
+
'error_feedback': ErrorMaxIterationsExceeded;
|
|
3114
3640
|
}
|
|
3115
|
-
export declare const PausedNearCollisionKindEnum: {
|
|
3116
|
-
readonly PausedNearCollision: "PAUSED_NEAR_COLLISION";
|
|
3117
|
-
};
|
|
3118
|
-
export type PausedNearCollisionKindEnum = typeof PausedNearCollisionKindEnum[keyof typeof PausedNearCollisionKindEnum];
|
|
3119
3641
|
/**
|
|
3120
3642
|
*
|
|
3121
3643
|
* @export
|
|
3122
|
-
* @interface
|
|
3644
|
+
* @interface PlanCollisionFreeRequest
|
|
3123
3645
|
*/
|
|
3124
|
-
export interface
|
|
3646
|
+
export interface PlanCollisionFreeRequest {
|
|
3125
3647
|
/**
|
|
3126
|
-
*
|
|
3127
|
-
* @type {
|
|
3128
|
-
* @memberof
|
|
3648
|
+
* The data to assemble the robot setup can be retrieved from [getMotionGroupDescription](getMotionGroupDescription) endpoint.
|
|
3649
|
+
* @type {MotionGroupSetup}
|
|
3650
|
+
* @memberof PlanCollisionFreeRequest
|
|
3129
3651
|
*/
|
|
3130
|
-
'
|
|
3652
|
+
'motion_group_setup': MotionGroupSetup;
|
|
3131
3653
|
/**
|
|
3132
3654
|
*
|
|
3133
3655
|
* @type {Array<number>}
|
|
3134
|
-
* @memberof
|
|
3656
|
+
* @memberof PlanCollisionFreeRequest
|
|
3135
3657
|
*/
|
|
3136
|
-
'
|
|
3137
|
-
}
|
|
3138
|
-
export declare const PausedNearJointLimitKindEnum: {
|
|
3139
|
-
readonly PausedNearJointLimit: "PAUSED_NEAR_JOINT_LIMIT";
|
|
3140
|
-
};
|
|
3141
|
-
export type PausedNearJointLimitKindEnum = typeof PausedNearJointLimitKindEnum[keyof typeof PausedNearJointLimitKindEnum];
|
|
3142
|
-
/**
|
|
3143
|
-
*
|
|
3144
|
-
* @export
|
|
3145
|
-
* @interface PausedOnIO
|
|
3146
|
-
*/
|
|
3147
|
-
export interface PausedOnIO {
|
|
3658
|
+
'start_joint_position': Array<number>;
|
|
3148
3659
|
/**
|
|
3149
3660
|
*
|
|
3150
|
-
* @type {
|
|
3151
|
-
* @memberof
|
|
3661
|
+
* @type {Array<number>}
|
|
3662
|
+
* @memberof PlanCollisionFreeRequest
|
|
3152
3663
|
*/
|
|
3153
|
-
'
|
|
3664
|
+
'target': Array<number>;
|
|
3665
|
+
/**
|
|
3666
|
+
*
|
|
3667
|
+
* @type {CollisionFreeAlgorithm}
|
|
3668
|
+
* @memberof PlanCollisionFreeRequest
|
|
3669
|
+
*/
|
|
3670
|
+
'algorithm': CollisionFreeAlgorithm;
|
|
3154
3671
|
}
|
|
3155
|
-
export declare const PausedOnIOKindEnum: {
|
|
3156
|
-
readonly PausedOnIo: "PAUSED_ON_IO";
|
|
3157
|
-
};
|
|
3158
|
-
export type PausedOnIOKindEnum = typeof PausedOnIOKindEnum[keyof typeof PausedOnIOKindEnum];
|
|
3159
3672
|
/**
|
|
3160
|
-
*
|
|
3673
|
+
* Response from collision-free trajectory planning. Contains either a successful joint trajectory or failure information.
|
|
3161
3674
|
* @export
|
|
3162
|
-
* @interface
|
|
3675
|
+
* @interface PlanCollisionFreeResponse
|
|
3163
3676
|
*/
|
|
3164
|
-
export interface
|
|
3677
|
+
export interface PlanCollisionFreeResponse {
|
|
3165
3678
|
/**
|
|
3166
3679
|
*
|
|
3167
|
-
* @type {
|
|
3168
|
-
* @memberof
|
|
3169
|
-
*/
|
|
3170
|
-
'name': string;
|
|
3171
|
-
/**
|
|
3172
|
-
* Mass of payload in [kg].
|
|
3173
|
-
* @type {number}
|
|
3174
|
-
* @memberof Payload
|
|
3175
|
-
*/
|
|
3176
|
-
'payload': number;
|
|
3177
|
-
/**
|
|
3178
|
-
* A three-dimensional vector [x, y, z] with double precision.
|
|
3179
|
-
* @type {Array<number>}
|
|
3180
|
-
* @memberof Payload
|
|
3181
|
-
*/
|
|
3182
|
-
'center_of_mass'?: Array<number>;
|
|
3183
|
-
/**
|
|
3184
|
-
* A three-dimensional vector [x, y, z] with double precision.
|
|
3185
|
-
* @type {Array<number>}
|
|
3186
|
-
* @memberof Payload
|
|
3680
|
+
* @type {PlanCollisionFreeResponseResponse}
|
|
3681
|
+
* @memberof PlanCollisionFreeResponse
|
|
3187
3682
|
*/
|
|
3188
|
-
'
|
|
3683
|
+
'response': PlanCollisionFreeResponseResponse;
|
|
3189
3684
|
}
|
|
3685
|
+
/**
|
|
3686
|
+
* @type PlanCollisionFreeResponseResponse
|
|
3687
|
+
* @export
|
|
3688
|
+
*/
|
|
3689
|
+
export type PlanCollisionFreeResponseResponse = JointTrajectory | PlanCollisionFreeFailedResponse;
|
|
3190
3690
|
/**
|
|
3191
3691
|
*
|
|
3192
3692
|
* @export
|
|
@@ -3225,10 +3725,10 @@ export type PlanTrajectoryFailedResponseErrorFeedback = FeedbackCollision | Feed
|
|
|
3225
3725
|
export interface PlanTrajectoryRequest {
|
|
3226
3726
|
/**
|
|
3227
3727
|
* The data to assemble the robot setup can be retrieved from [getMotionGroupDescription](getMotionGroupDescription) endpoint.
|
|
3228
|
-
* @type {
|
|
3728
|
+
* @type {MotionGroupSetup}
|
|
3229
3729
|
* @memberof PlanTrajectoryRequest
|
|
3230
3730
|
*/
|
|
3231
|
-
'
|
|
3731
|
+
'motion_group_setup': MotionGroupSetup;
|
|
3232
3732
|
/**
|
|
3233
3733
|
*
|
|
3234
3734
|
* @type {Array<number>}
|
|
@@ -3260,6 +3760,57 @@ export interface PlanTrajectoryResponse {
|
|
|
3260
3760
|
* @export
|
|
3261
3761
|
*/
|
|
3262
3762
|
export type PlanTrajectoryResponseResponse = JointTrajectory | PlanTrajectoryFailedResponse;
|
|
3763
|
+
/**
|
|
3764
|
+
*
|
|
3765
|
+
* @export
|
|
3766
|
+
* @interface PlanValidationError
|
|
3767
|
+
*/
|
|
3768
|
+
export interface PlanValidationError {
|
|
3769
|
+
/**
|
|
3770
|
+
*
|
|
3771
|
+
* @type {Array<ValidationErrorLocInner>}
|
|
3772
|
+
* @memberof PlanValidationError
|
|
3773
|
+
*/
|
|
3774
|
+
'loc': Array<ValidationErrorLocInner>;
|
|
3775
|
+
/**
|
|
3776
|
+
*
|
|
3777
|
+
* @type {string}
|
|
3778
|
+
* @memberof PlanValidationError
|
|
3779
|
+
*/
|
|
3780
|
+
'msg': string;
|
|
3781
|
+
/**
|
|
3782
|
+
*
|
|
3783
|
+
* @type {string}
|
|
3784
|
+
* @memberof PlanValidationError
|
|
3785
|
+
*/
|
|
3786
|
+
'type': string;
|
|
3787
|
+
/**
|
|
3788
|
+
*
|
|
3789
|
+
* @type {{ [key: string]: any; }}
|
|
3790
|
+
* @memberof PlanValidationError
|
|
3791
|
+
*/
|
|
3792
|
+
'input': {
|
|
3793
|
+
[key: string]: any;
|
|
3794
|
+
};
|
|
3795
|
+
/**
|
|
3796
|
+
*
|
|
3797
|
+
* @type {PlanValidationErrorAllOfData}
|
|
3798
|
+
* @memberof PlanValidationError
|
|
3799
|
+
*/
|
|
3800
|
+
'data'?: PlanValidationErrorAllOfData;
|
|
3801
|
+
}
|
|
3802
|
+
/**
|
|
3803
|
+
* @type PlanValidationErrorAllOfData
|
|
3804
|
+
* Optional data further specifying the validation error.
|
|
3805
|
+
* @export
|
|
3806
|
+
*/
|
|
3807
|
+
export type PlanValidationErrorAllOfData = {
|
|
3808
|
+
error_feedback_name: 'ErrorInvalidJointCount';
|
|
3809
|
+
} & ErrorInvalidJointCount | {
|
|
3810
|
+
error_feedback_name: 'ErrorJointLimitExceeded';
|
|
3811
|
+
} & ErrorJointLimitExceeded | {
|
|
3812
|
+
error_feedback_name: 'ErrorJointPositionCollision';
|
|
3813
|
+
} & ErrorJointPositionCollision;
|
|
3263
3814
|
/**
|
|
3264
3815
|
* Defines an x/y-plane with infinite size.
|
|
3265
3816
|
* @export
|
|
@@ -3342,6 +3893,250 @@ export interface Pose {
|
|
|
3342
3893
|
*/
|
|
3343
3894
|
'orientation'?: Array<number>;
|
|
3344
3895
|
}
|
|
3896
|
+
/**
|
|
3897
|
+
*
|
|
3898
|
+
* @export
|
|
3899
|
+
* @interface ProfinetDescription
|
|
3900
|
+
*/
|
|
3901
|
+
export interface ProfinetDescription {
|
|
3902
|
+
/**
|
|
3903
|
+
* The vendor identifier of the PROFINET device, identifying the manufacturer.
|
|
3904
|
+
* @type {string}
|
|
3905
|
+
* @memberof ProfinetDescription
|
|
3906
|
+
*/
|
|
3907
|
+
'vendor_id': string;
|
|
3908
|
+
/**
|
|
3909
|
+
* The device identifier of the PROFINET device, identifying the specific device within the vendor\'s range.
|
|
3910
|
+
* @type {string}
|
|
3911
|
+
* @memberof ProfinetDescription
|
|
3912
|
+
*/
|
|
3913
|
+
'device_id': string;
|
|
3914
|
+
/**
|
|
3915
|
+
*
|
|
3916
|
+
* @type {Array<ProfinetSlotDescription>}
|
|
3917
|
+
* @memberof ProfinetDescription
|
|
3918
|
+
*/
|
|
3919
|
+
'slots'?: Array<ProfinetSlotDescription>;
|
|
3920
|
+
/**
|
|
3921
|
+
* Name of the PROFINET device
|
|
3922
|
+
* @type {string}
|
|
3923
|
+
* @memberof ProfinetDescription
|
|
3924
|
+
*/
|
|
3925
|
+
'device_name'?: string;
|
|
3926
|
+
/**
|
|
3927
|
+
* IP address for the PROFINET device
|
|
3928
|
+
* @type {string}
|
|
3929
|
+
* @memberof ProfinetDescription
|
|
3930
|
+
*/
|
|
3931
|
+
'ip'?: string;
|
|
3932
|
+
}
|
|
3933
|
+
/**
|
|
3934
|
+
*
|
|
3935
|
+
* @export
|
|
3936
|
+
* @interface ProfinetIO
|
|
3937
|
+
*/
|
|
3938
|
+
export interface ProfinetIO {
|
|
3939
|
+
/**
|
|
3940
|
+
* The name of the input/output value. This is a human-readable identifier for the value. It can be used to distinguish between different inputs/outputs in the system.
|
|
3941
|
+
* @type {string}
|
|
3942
|
+
* @memberof ProfinetIO
|
|
3943
|
+
*/
|
|
3944
|
+
'name': string;
|
|
3945
|
+
/**
|
|
3946
|
+
*
|
|
3947
|
+
* @type {ProfinetIOTypeEnum}
|
|
3948
|
+
* @memberof ProfinetIO
|
|
3949
|
+
*/
|
|
3950
|
+
'type': ProfinetIOTypeEnum;
|
|
3951
|
+
/**
|
|
3952
|
+
* The direction of the input/output value, indicating whether it is an input or output for the device.
|
|
3953
|
+
* @type {ProfinetIODirection}
|
|
3954
|
+
* @memberof ProfinetIO
|
|
3955
|
+
*/
|
|
3956
|
+
'direction': ProfinetIODirection;
|
|
3957
|
+
/**
|
|
3958
|
+
* The byte address of the input/output value in the PROFINET device. The byte address is used to locate the specific input/output within the device\'s memory or data structure.
|
|
3959
|
+
* @type {number}
|
|
3960
|
+
* @memberof ProfinetIO
|
|
3961
|
+
*/
|
|
3962
|
+
'byte_address': number;
|
|
3963
|
+
/**
|
|
3964
|
+
* The bit address of the input/output value within the byte or word address. The bit address is used to specify the exact bit within the byte or word that corresponds to the input/output value.
|
|
3965
|
+
* @type {number}
|
|
3966
|
+
* @memberof ProfinetIO
|
|
3967
|
+
*/
|
|
3968
|
+
'bit_address'?: number;
|
|
3969
|
+
/**
|
|
3970
|
+
* The unique identifier for the input/output value. This identifier is used to reference the specific input/output in the NOVA system.
|
|
3971
|
+
* @type {string}
|
|
3972
|
+
* @memberof ProfinetIO
|
|
3973
|
+
*/
|
|
3974
|
+
'io': string;
|
|
3975
|
+
}
|
|
3976
|
+
/**
|
|
3977
|
+
*
|
|
3978
|
+
* @export
|
|
3979
|
+
* @interface ProfinetIOData
|
|
3980
|
+
*/
|
|
3981
|
+
export interface ProfinetIOData {
|
|
3982
|
+
/**
|
|
3983
|
+
* The name of the input/output value. This is a human-readable identifier for the value. It can be used to distinguish between different inputs/outputs in the system.
|
|
3984
|
+
* @type {string}
|
|
3985
|
+
* @memberof ProfinetIOData
|
|
3986
|
+
*/
|
|
3987
|
+
'name': string;
|
|
3988
|
+
/**
|
|
3989
|
+
*
|
|
3990
|
+
* @type {ProfinetIOTypeEnum}
|
|
3991
|
+
* @memberof ProfinetIOData
|
|
3992
|
+
*/
|
|
3993
|
+
'type': ProfinetIOTypeEnum;
|
|
3994
|
+
/**
|
|
3995
|
+
* The direction of the input/output value, indicating whether it is an input or output for the device.
|
|
3996
|
+
* @type {ProfinetIODirection}
|
|
3997
|
+
* @memberof ProfinetIOData
|
|
3998
|
+
*/
|
|
3999
|
+
'direction': ProfinetIODirection;
|
|
4000
|
+
/**
|
|
4001
|
+
* The byte address of the input/output value in the PROFINET device. The byte address is used to locate the specific input/output within the device\'s memory or data structure.
|
|
4002
|
+
* @type {number}
|
|
4003
|
+
* @memberof ProfinetIOData
|
|
4004
|
+
*/
|
|
4005
|
+
'byte_address': number;
|
|
4006
|
+
/**
|
|
4007
|
+
* The bit address of the input/output value within the byte or word address. The bit address is used to specify the exact bit within the byte or word that corresponds to the input/output value.
|
|
4008
|
+
* @type {number}
|
|
4009
|
+
* @memberof ProfinetIOData
|
|
4010
|
+
*/
|
|
4011
|
+
'bit_address'?: number;
|
|
4012
|
+
}
|
|
4013
|
+
/**
|
|
4014
|
+
* Identifies the input/output type.
|
|
4015
|
+
* @export
|
|
4016
|
+
* @enum {string}
|
|
4017
|
+
*/
|
|
4018
|
+
export declare const ProfinetIODirection: {
|
|
4019
|
+
readonly ProfinetIoDirectionInput: "PROFINET_IO_DIRECTION_INPUT";
|
|
4020
|
+
readonly ProfinetIoDirectionOutput: "PROFINET_IO_DIRECTION_OUTPUT";
|
|
4021
|
+
readonly ProfinetIoDirectionInout: "PROFINET_IO_DIRECTION_INOUT";
|
|
4022
|
+
};
|
|
4023
|
+
export type ProfinetIODirection = typeof ProfinetIODirection[keyof typeof ProfinetIODirection];
|
|
4024
|
+
/**
|
|
4025
|
+
* Value type of the PROFINET input/output.
|
|
4026
|
+
* @export
|
|
4027
|
+
* @enum {string}
|
|
4028
|
+
*/
|
|
4029
|
+
export declare const ProfinetIOTypeEnum: {
|
|
4030
|
+
readonly ProfinetIoTypeUnknown: "PROFINET_IO_TYPE_UNKNOWN";
|
|
4031
|
+
readonly ProfinetIoTypeBool: "PROFINET_IO_TYPE_BOOL";
|
|
4032
|
+
readonly ProfinetIoTypeUsint: "PROFINET_IO_TYPE_USINT";
|
|
4033
|
+
readonly ProfinetIoTypeSint: "PROFINET_IO_TYPE_SINT";
|
|
4034
|
+
readonly ProfinetIoTypeUint: "PROFINET_IO_TYPE_UINT";
|
|
4035
|
+
readonly ProfinetIoTypeInt: "PROFINET_IO_TYPE_INT";
|
|
4036
|
+
readonly ProfinetIoTypeUdint: "PROFINET_IO_TYPE_UDINT";
|
|
4037
|
+
readonly ProfinetIoTypeDint: "PROFINET_IO_TYPE_DINT";
|
|
4038
|
+
readonly ProfinetIoTypeReal: "PROFINET_IO_TYPE_REAL";
|
|
4039
|
+
readonly ProfinetIoTypeLreal: "PROFINET_IO_TYPE_LREAL";
|
|
4040
|
+
};
|
|
4041
|
+
export type ProfinetIOTypeEnum = typeof ProfinetIOTypeEnum[keyof typeof ProfinetIOTypeEnum];
|
|
4042
|
+
/**
|
|
4043
|
+
*
|
|
4044
|
+
* @export
|
|
4045
|
+
* @interface ProfinetInputOutputConfig
|
|
4046
|
+
*/
|
|
4047
|
+
export interface ProfinetInputOutputConfig {
|
|
4048
|
+
/**
|
|
4049
|
+
* Content of the input output configuration file.
|
|
4050
|
+
* @type {string}
|
|
4051
|
+
* @memberof ProfinetInputOutputConfig
|
|
4052
|
+
*/
|
|
4053
|
+
'config': string;
|
|
4054
|
+
/**
|
|
4055
|
+
* Offset in bytes for the input data.
|
|
4056
|
+
* @type {number}
|
|
4057
|
+
* @memberof ProfinetInputOutputConfig
|
|
4058
|
+
*/
|
|
4059
|
+
'input_offset': number;
|
|
4060
|
+
/**
|
|
4061
|
+
* Offset in bytes for the output data.
|
|
4062
|
+
* @type {number}
|
|
4063
|
+
* @memberof ProfinetInputOutputConfig
|
|
4064
|
+
*/
|
|
4065
|
+
'output_offset': number;
|
|
4066
|
+
}
|
|
4067
|
+
/**
|
|
4068
|
+
*
|
|
4069
|
+
* @export
|
|
4070
|
+
* @interface ProfinetSlotDescription
|
|
4071
|
+
*/
|
|
4072
|
+
export interface ProfinetSlotDescription {
|
|
4073
|
+
/**
|
|
4074
|
+
* The number of the PROFINET slot.
|
|
4075
|
+
* @type {number}
|
|
4076
|
+
* @memberof ProfinetSlotDescription
|
|
4077
|
+
*/
|
|
4078
|
+
'number': number;
|
|
4079
|
+
/**
|
|
4080
|
+
* The API number of the PROFINET input, used to identify the specific API for the input.
|
|
4081
|
+
* @type {number}
|
|
4082
|
+
* @memberof ProfinetSlotDescription
|
|
4083
|
+
*/
|
|
4084
|
+
'api': number;
|
|
4085
|
+
/**
|
|
4086
|
+
* An array of PROFINET subslots.
|
|
4087
|
+
* @type {Array<ProfinetSubSlotDescription>}
|
|
4088
|
+
* @memberof ProfinetSlotDescription
|
|
4089
|
+
*/
|
|
4090
|
+
'subslots': Array<ProfinetSubSlotDescription>;
|
|
4091
|
+
}
|
|
4092
|
+
/**
|
|
4093
|
+
*
|
|
4094
|
+
* @export
|
|
4095
|
+
* @interface ProfinetSubSlotDescription
|
|
4096
|
+
*/
|
|
4097
|
+
export interface ProfinetSubSlotDescription {
|
|
4098
|
+
/**
|
|
4099
|
+
* The identifier of the PROFINET subslot.
|
|
4100
|
+
* @type {number}
|
|
4101
|
+
* @memberof ProfinetSubSlotDescription
|
|
4102
|
+
*/
|
|
4103
|
+
'number': number;
|
|
4104
|
+
/**
|
|
4105
|
+
* The length in bytes of the PROFINET input.
|
|
4106
|
+
* @type {number}
|
|
4107
|
+
* @memberof ProfinetSubSlotDescription
|
|
4108
|
+
*/
|
|
4109
|
+
'input_length': number;
|
|
4110
|
+
/**
|
|
4111
|
+
* The length in bytes of the PROFINET output.
|
|
4112
|
+
* @type {number}
|
|
4113
|
+
* @memberof ProfinetSubSlotDescription
|
|
4114
|
+
*/
|
|
4115
|
+
'output_length': number;
|
|
4116
|
+
}
|
|
4117
|
+
/**
|
|
4118
|
+
* <!-- theme: danger --> > **Experimental** RRT Connect algorithm configuration for collision-free path planning. Rapidly-exploring Random Trees (RRT) builds trees of valid configurations by randomly sampling the joint space and connecting feasible points. RRT Connect grows two trees simultaneously from start and target positions until they meet. This is a custom implementation optimized for manipulator kinematics and collision checking in industrial contexts.
|
|
4119
|
+
* @export
|
|
4120
|
+
* @interface RRTConnectAlgorithm
|
|
4121
|
+
*/
|
|
4122
|
+
export interface RRTConnectAlgorithm {
|
|
4123
|
+
/**
|
|
4124
|
+
* Algorithm discriminator.
|
|
4125
|
+
* @type {string}
|
|
4126
|
+
* @memberof RRTConnectAlgorithm
|
|
4127
|
+
*/
|
|
4128
|
+
'algorithm_name': RRTConnectAlgorithmAlgorithmNameEnum;
|
|
4129
|
+
/**
|
|
4130
|
+
* Maximum number of iterations for the RRT Connect algorithm. Higher values increase likelihood of success, but also computation time.
|
|
4131
|
+
* @type {number}
|
|
4132
|
+
* @memberof RRTConnectAlgorithm
|
|
4133
|
+
*/
|
|
4134
|
+
'max_iterations'?: number;
|
|
4135
|
+
}
|
|
4136
|
+
export declare const RRTConnectAlgorithmAlgorithmNameEnum: {
|
|
4137
|
+
readonly RrtConnectAlgorithm: "RRTConnectAlgorithm";
|
|
4138
|
+
};
|
|
4139
|
+
export type RRTConnectAlgorithmAlgorithmNameEnum = typeof RRTConnectAlgorithmAlgorithmNameEnum[keyof typeof RRTConnectAlgorithmAlgorithmNameEnum];
|
|
3345
4140
|
/**
|
|
3346
4141
|
* Defines an x/y-plane with finite size. Centred around the z-axis.
|
|
3347
4142
|
* @export
|
|
@@ -3423,7 +4218,7 @@ export type ReleaseChannel = typeof ReleaseChannel[keyof typeof ReleaseChannel];
|
|
|
3423
4218
|
*/
|
|
3424
4219
|
export interface RobotController {
|
|
3425
4220
|
/**
|
|
3426
|
-
*
|
|
4221
|
+
* Unique name of controller within the cell. It must be a valid k8s label name as defined by [RFC 1035](https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#rfc-1035-label-names).
|
|
3427
4222
|
* @type {string}
|
|
3428
4223
|
* @memberof RobotController
|
|
3429
4224
|
*/
|
|
@@ -3446,6 +4241,18 @@ export type RobotControllerConfiguration = AbbController | FanucController | Kuk
|
|
|
3446
4241
|
* @interface RobotControllerState
|
|
3447
4242
|
*/
|
|
3448
4243
|
export interface RobotControllerState {
|
|
4244
|
+
/**
|
|
4245
|
+
* Mode of communication and control between NOVA and the robot controller.
|
|
4246
|
+
* @type {RobotSystemMode}
|
|
4247
|
+
* @memberof RobotControllerState
|
|
4248
|
+
*/
|
|
4249
|
+
'mode': RobotSystemMode;
|
|
4250
|
+
/**
|
|
4251
|
+
* Last error stack encountered during initialization process or after a controller disconnect. At this stage, it\'s unclear whether the error is fatal. Evaluate `last_error` to decide whether to remove the controller using `deleteController`. Examples: - Delete required: Host resolution fails repeatedly due to an incorrect IP. - Delete not required: Temporary network delay caused a disconnect; the system will auto-reconnect.
|
|
4252
|
+
* @type {Array<string>}
|
|
4253
|
+
* @memberof RobotControllerState
|
|
4254
|
+
*/
|
|
4255
|
+
'last_error'?: Array<string>;
|
|
3449
4256
|
/**
|
|
3450
4257
|
* Timestamp indicating when the represented information was received from the robot controller.
|
|
3451
4258
|
* @type {string}
|
|
@@ -3490,67 +4297,16 @@ export interface RobotControllerState {
|
|
|
3490
4297
|
'motion_groups': Array<MotionGroupState>;
|
|
3491
4298
|
}
|
|
3492
4299
|
/**
|
|
3493
|
-
*
|
|
3494
|
-
* @export
|
|
3495
|
-
* @interface RobotSetup
|
|
3496
|
-
*/
|
|
3497
|
-
export interface RobotSetup {
|
|
3498
|
-
/**
|
|
3499
|
-
* String identifiying the model of a motion group.
|
|
3500
|
-
* @type {string}
|
|
3501
|
-
* @memberof RobotSetup
|
|
3502
|
-
*/
|
|
3503
|
-
'motion_group_model': string;
|
|
3504
|
-
/**
|
|
3505
|
-
* [ms] cycle time of the motion group controller. A trajectory for this motion group should be computed to this resolution.
|
|
3506
|
-
* @type {number}
|
|
3507
|
-
* @memberof RobotSetup
|
|
3508
|
-
*/
|
|
3509
|
-
'cycle_time': number;
|
|
3510
|
-
/**
|
|
3511
|
-
* The offset from the world frame to the motion group base.
|
|
3512
|
-
* @type {Pose}
|
|
3513
|
-
* @memberof RobotSetup
|
|
3514
|
-
*/
|
|
3515
|
-
'mounting'?: Pose;
|
|
3516
|
-
/**
|
|
3517
|
-
*
|
|
3518
|
-
* @type {Pose}
|
|
3519
|
-
* @memberof RobotSetup
|
|
3520
|
-
*/
|
|
3521
|
-
'tcp_offset'?: Pose;
|
|
3522
|
-
/**
|
|
3523
|
-
*
|
|
3524
|
-
* @type {LimitSet}
|
|
3525
|
-
* @memberof RobotSetup
|
|
3526
|
-
*/
|
|
3527
|
-
'global_limits'?: LimitSet;
|
|
3528
|
-
/**
|
|
3529
|
-
*
|
|
3530
|
-
* @type {Payload}
|
|
3531
|
-
* @memberof RobotSetup
|
|
3532
|
-
*/
|
|
3533
|
-
'payload'?: Payload;
|
|
3534
|
-
/**
|
|
3535
|
-
* Collision scenes to be respected by the motion planner. Each contains the single motion group which is planned for. Scenes are checked individually along the trajectory and independently of other scenes. To respect the safety zones of the controller, fetch the safety zones, link and tool shapes from the controller and add one scene made up of those. To respect the safety zones of the controller and check for collision: 1. Fetch the safety zones, link and tool shapes from the controller. 2. Add the fetched zones, links and tools to a scene. 3. Create other scenes from your own 3D data as needed. 4. Execute this endpoint. 5. The response highlights the scenes in which a collision was detected by key.
|
|
3536
|
-
* @type {{ [key: string]: SingleMotionGroupCollisionScene; }}
|
|
3537
|
-
* @memberof RobotSetup
|
|
3538
|
-
*/
|
|
3539
|
-
'collision_scenes'?: {
|
|
3540
|
-
[key: string]: SingleMotionGroupCollisionScene;
|
|
3541
|
-
};
|
|
3542
|
-
}
|
|
3543
|
-
/**
|
|
3544
|
-
* The system mode of the robot system. ### ROBOT_SYSTEM_MODE_UNDEFINED Indicates that the robot controller is currently performing a mode transition. ### ROBOT_SYSTEM_MODE_DISCONNECT There is no communication with the robot controller at all. All connections are closed. No command is sent to the robot controller while in this mode. No input/output interaction is possible in this mode! All move requests will be rejected in this mode! ### ROBOT_SYSTEM_MODE_MONITOR A connection to the robot controller is established to only read the robot controller state. No command is sent to the robot controller while in this mode. It is possible to receive input/output information. All move requests will be rejected in this mode! ### ROBOT_SYSTEM_MODE_CONTROL An active connection is established with the robot controller and the robot system is cyclic commanded to stay in its actual position. The robot controller state is received in the cycle time of the robot controller. Requests via the MotionService and JoggingService will be processed and executed in this mode. Input/Output interaction is possible in this mode! **In this mode the robot system can be commanded to move.** ### ROBOT_SYSTEM_MODE_FREE_DRIVE Like ROBOT_SYSTEM_MODE_MONITOR a connection to the robot controller is established to only read the robot controller state. The difference is that the motion groups can be moved by the user (Free Drive). Thus, the servo motors are turned on. All move requests will be rejected in this mode! **This mode is not supported by every robot!** Use [getSupportedModes](getSupportedModes) to evaluate if the device support free drive.
|
|
4300
|
+
* Defines the current system mode of the robot system, including NOVA communicating with the robot controller. ### MODE_CONTROLLER_NOT_CONFIGURED No controller with the specified identifier is configured. Call [addRobotController](addRobotController) to register a controller. ### MODE_INITIALIZING Indicates that a connection to the robot controller is established or reestablished in case of a disconnect. On success, the controller is set to MODE_MONITOR. On failure, the initialization process is retried until successful or cancelled by the user. ### MODE_MONITOR Read-only mode with an active controller connection. - Receives robot state and I/O signals - Move requests are rejected - No commands are sent to the controller ### MODE_CONTROL Active control mode. **Movement is possible in this mode** The robot is cyclically commanded to hold its current position. The robot state is received in sync with the controller cycle. Motion and jogging requests are accepted and executed. Input/Output interaction is enabled. ### MODE_FREE_DRIVE Read-only mode with servo motors enabled for manual movement (Free Drive). Move requests are rejected. Not supported by all robots: Use [getSupportedModes](getSupportedModes) to check Free Drive availability.
|
|
3545
4301
|
* @export
|
|
3546
4302
|
* @enum {string}
|
|
3547
4303
|
*/
|
|
3548
4304
|
export declare const RobotSystemMode: {
|
|
3549
|
-
readonly
|
|
3550
|
-
readonly
|
|
3551
|
-
readonly
|
|
3552
|
-
readonly
|
|
3553
|
-
readonly
|
|
4305
|
+
readonly ModeControllerNotConfigured: "MODE_CONTROLLER_NOT_CONFIGURED";
|
|
4306
|
+
readonly ModeInitializing: "MODE_INITIALIZING";
|
|
4307
|
+
readonly ModeMonitor: "MODE_MONITOR";
|
|
4308
|
+
readonly ModeControl: "MODE_CONTROL";
|
|
4309
|
+
readonly ModeFreeDrive: "MODE_FREE_DRIVE";
|
|
3554
4310
|
};
|
|
3555
4311
|
export type RobotSystemMode = typeof RobotSystemMode[keyof typeof RobotSystemMode];
|
|
3556
4312
|
/**
|
|
@@ -3622,49 +4378,9 @@ export interface RobotTcpData {
|
|
|
3622
4378
|
'orientation_type'?: OrientationType;
|
|
3623
4379
|
}
|
|
3624
4380
|
/**
|
|
3625
|
-
*
|
|
4381
|
+
* Current safety state of the configured robot controller. Operation modes in which the attached motion groups can be moved are: - SAFETY_STATE_NORMAL - SAFETY_STATE_REDUCED All other modes are considered as non-operational.
|
|
3626
4382
|
* @export
|
|
3627
|
-
* @
|
|
3628
|
-
*/
|
|
3629
|
-
export interface Running {
|
|
3630
|
-
/**
|
|
3631
|
-
*
|
|
3632
|
-
* @type {string}
|
|
3633
|
-
* @memberof Running
|
|
3634
|
-
*/
|
|
3635
|
-
'kind': RunningKindEnum;
|
|
3636
|
-
}
|
|
3637
|
-
export declare const RunningKindEnum: {
|
|
3638
|
-
readonly Running: "RUNNING";
|
|
3639
|
-
};
|
|
3640
|
-
export type RunningKindEnum = typeof RunningKindEnum[keyof typeof RunningKindEnum];
|
|
3641
|
-
/**
|
|
3642
|
-
*
|
|
3643
|
-
* @export
|
|
3644
|
-
* @interface Running1
|
|
3645
|
-
*/
|
|
3646
|
-
export interface Running1 {
|
|
3647
|
-
/**
|
|
3648
|
-
*
|
|
3649
|
-
* @type {string}
|
|
3650
|
-
* @memberof Running1
|
|
3651
|
-
*/
|
|
3652
|
-
'kind': Running1KindEnum;
|
|
3653
|
-
/**
|
|
3654
|
-
* Remaining time in milliseconds (ms) to reach the end of the motion.
|
|
3655
|
-
* @type {number}
|
|
3656
|
-
* @memberof Running1
|
|
3657
|
-
*/
|
|
3658
|
-
'time_to_end': number;
|
|
3659
|
-
}
|
|
3660
|
-
export declare const Running1KindEnum: {
|
|
3661
|
-
readonly Running: "RUNNING";
|
|
3662
|
-
};
|
|
3663
|
-
export type Running1KindEnum = typeof Running1KindEnum[keyof typeof Running1KindEnum];
|
|
3664
|
-
/**
|
|
3665
|
-
* Current safety state of the configured robot controller. Operation modes in which the attached motion groups can be moved are: - SAFETY_STATE_NORMAL - SAFETY_STATE_REDUCED All other modes are considered as non-operational.
|
|
3666
|
-
* @export
|
|
3667
|
-
* @enum {string}
|
|
4383
|
+
* @enum {string}
|
|
3668
4384
|
*/
|
|
3669
4385
|
export declare const SafetyStateType: {
|
|
3670
4386
|
readonly SafetyStateUnknown: "SAFETY_STATE_UNKNOWN";
|
|
@@ -3809,43 +4525,6 @@ export declare const SettableRobotSystemMode: {
|
|
|
3809
4525
|
readonly RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL";
|
|
3810
4526
|
};
|
|
3811
4527
|
export type SettableRobotSystemMode = typeof SettableRobotSystemMode[keyof typeof SettableRobotSystemMode];
|
|
3812
|
-
/**
|
|
3813
|
-
*
|
|
3814
|
-
* @export
|
|
3815
|
-
* @interface SingleMotionGroupCollisionScene
|
|
3816
|
-
*/
|
|
3817
|
-
export interface SingleMotionGroupCollisionScene {
|
|
3818
|
-
/**
|
|
3819
|
-
* A collection of identifiable colliders.
|
|
3820
|
-
* @type {{ [key: string]: Collider; }}
|
|
3821
|
-
* @memberof SingleMotionGroupCollisionScene
|
|
3822
|
-
*/
|
|
3823
|
-
'static_colliders'?: {
|
|
3824
|
-
[key: string]: Collider;
|
|
3825
|
-
};
|
|
3826
|
-
/**
|
|
3827
|
-
* A link chain is a kinematic chain of links that is connected via joints. A motion group can be used to control the motion of the joints in a link chain. A link is a group of colliders that is attached to the link reference frame. The reference frame of a link is obtained after applying all sets of Denavit-Hartenberg-parameters from base to (including) the link index. This means that the reference frame of the link is on the rotation axis of the next joint in the kinematic chain. Example: For a motion group with 2 joints, the collider reference frame (CRF) for link 1 is on the rotation axis of joint 2. The chain looks like: - Origin >> Mounting >> Base >> (CRF Base) Joint 0 >> Link 0 >> (CRF Link 0) Joint 1 >> Link 1 >> (CRF Link 1) Flange (CRF Tool) >> TCP Adjacent links in the kinematic chain of the motion group are not checked for mutual collision.
|
|
3828
|
-
* @type {Array<{ [key: string]: Collider; }>}
|
|
3829
|
-
* @memberof SingleMotionGroupCollisionScene
|
|
3830
|
-
*/
|
|
3831
|
-
'link_chain'?: Array<{
|
|
3832
|
-
[key: string]: Collider;
|
|
3833
|
-
}>;
|
|
3834
|
-
/**
|
|
3835
|
-
* Defines the shape of a tool. A tool is a dictionary of colliders. All colliders that make up a tool are attached to the flange frame of the motion group.
|
|
3836
|
-
* @type {{ [key: string]: Collider; }}
|
|
3837
|
-
* @memberof SingleMotionGroupCollisionScene
|
|
3838
|
-
*/
|
|
3839
|
-
'tool'?: {
|
|
3840
|
-
[key: string]: Collider;
|
|
3841
|
-
};
|
|
3842
|
-
/**
|
|
3843
|
-
* If true, self-collision detection is enabled for the motion group. See LinkChain documentation for details. Default is true.
|
|
3844
|
-
* @type {boolean}
|
|
3845
|
-
* @memberof SingleMotionGroupCollisionScene
|
|
3846
|
-
*/
|
|
3847
|
-
'motion_group_self_collision_detection'?: boolean;
|
|
3848
|
-
}
|
|
3849
4528
|
/**
|
|
3850
4529
|
*
|
|
3851
4530
|
* @export
|
|
@@ -3897,7 +4576,7 @@ export interface StartMovementRequest {
|
|
|
3897
4576
|
* @type {Direction}
|
|
3898
4577
|
* @memberof StartMovementRequest
|
|
3899
4578
|
*/
|
|
3900
|
-
'direction'
|
|
4579
|
+
'direction'?: Direction;
|
|
3901
4580
|
/**
|
|
3902
4581
|
* Attaches a list of output commands to the trajectory. The outputs are set to the specified values right after the specified location was reached. If the specified location is located before the start location (forward direction: value is smaller, backward direction: value is bigger), the output is not set.
|
|
3903
4582
|
* @type {Array<IOValue>}
|
|
@@ -4184,7 +4863,24 @@ export type TrajectoryDetailsKindEnum = typeof TrajectoryDetailsKindEnum[keyof t
|
|
|
4184
4863
|
* @type TrajectoryDetailsState
|
|
4185
4864
|
* @export
|
|
4186
4865
|
*/
|
|
4187
|
-
export type TrajectoryDetailsState =
|
|
4866
|
+
export type TrajectoryDetailsState = TrajectoryEnded | TrajectoryPausedByUser | TrajectoryPausedOnIO | TrajectoryRunning | TrajectoryWaitForIO;
|
|
4867
|
+
/**
|
|
4868
|
+
*
|
|
4869
|
+
* @export
|
|
4870
|
+
* @interface TrajectoryEnded
|
|
4871
|
+
*/
|
|
4872
|
+
export interface TrajectoryEnded {
|
|
4873
|
+
/**
|
|
4874
|
+
*
|
|
4875
|
+
* @type {string}
|
|
4876
|
+
* @memberof TrajectoryEnded
|
|
4877
|
+
*/
|
|
4878
|
+
'kind': TrajectoryEndedKindEnum;
|
|
4879
|
+
}
|
|
4880
|
+
export declare const TrajectoryEndedKindEnum: {
|
|
4881
|
+
readonly EndOfTrajectory: "END_OF_TRAJECTORY";
|
|
4882
|
+
};
|
|
4883
|
+
export type TrajectoryEndedKindEnum = typeof TrajectoryEndedKindEnum[keyof typeof TrajectoryEndedKindEnum];
|
|
4188
4884
|
/**
|
|
4189
4885
|
*
|
|
4190
4886
|
* @export
|
|
@@ -4208,6 +4904,80 @@ export declare const TrajectoryIdMessageTypeEnum: {
|
|
|
4208
4904
|
readonly TrajectoryId: "TrajectoryId";
|
|
4209
4905
|
};
|
|
4210
4906
|
export type TrajectoryIdMessageTypeEnum = typeof TrajectoryIdMessageTypeEnum[keyof typeof TrajectoryIdMessageTypeEnum];
|
|
4907
|
+
/**
|
|
4908
|
+
*
|
|
4909
|
+
* @export
|
|
4910
|
+
* @interface TrajectoryPausedByUser
|
|
4911
|
+
*/
|
|
4912
|
+
export interface TrajectoryPausedByUser {
|
|
4913
|
+
/**
|
|
4914
|
+
*
|
|
4915
|
+
* @type {string}
|
|
4916
|
+
* @memberof TrajectoryPausedByUser
|
|
4917
|
+
*/
|
|
4918
|
+
'kind': TrajectoryPausedByUserKindEnum;
|
|
4919
|
+
}
|
|
4920
|
+
export declare const TrajectoryPausedByUserKindEnum: {
|
|
4921
|
+
readonly PausedByUser: "PAUSED_BY_USER";
|
|
4922
|
+
};
|
|
4923
|
+
export type TrajectoryPausedByUserKindEnum = typeof TrajectoryPausedByUserKindEnum[keyof typeof TrajectoryPausedByUserKindEnum];
|
|
4924
|
+
/**
|
|
4925
|
+
*
|
|
4926
|
+
* @export
|
|
4927
|
+
* @interface TrajectoryPausedOnIO
|
|
4928
|
+
*/
|
|
4929
|
+
export interface TrajectoryPausedOnIO {
|
|
4930
|
+
/**
|
|
4931
|
+
*
|
|
4932
|
+
* @type {string}
|
|
4933
|
+
* @memberof TrajectoryPausedOnIO
|
|
4934
|
+
*/
|
|
4935
|
+
'kind': TrajectoryPausedOnIOKindEnum;
|
|
4936
|
+
}
|
|
4937
|
+
export declare const TrajectoryPausedOnIOKindEnum: {
|
|
4938
|
+
readonly PausedOnIo: "PAUSED_ON_IO";
|
|
4939
|
+
};
|
|
4940
|
+
export type TrajectoryPausedOnIOKindEnum = typeof TrajectoryPausedOnIOKindEnum[keyof typeof TrajectoryPausedOnIOKindEnum];
|
|
4941
|
+
/**
|
|
4942
|
+
*
|
|
4943
|
+
* @export
|
|
4944
|
+
* @interface TrajectoryRunning
|
|
4945
|
+
*/
|
|
4946
|
+
export interface TrajectoryRunning {
|
|
4947
|
+
/**
|
|
4948
|
+
*
|
|
4949
|
+
* @type {string}
|
|
4950
|
+
* @memberof TrajectoryRunning
|
|
4951
|
+
*/
|
|
4952
|
+
'kind': TrajectoryRunningKindEnum;
|
|
4953
|
+
/**
|
|
4954
|
+
* Remaining time in milliseconds (ms) to reach the end of the motion.
|
|
4955
|
+
* @type {number}
|
|
4956
|
+
* @memberof TrajectoryRunning
|
|
4957
|
+
*/
|
|
4958
|
+
'time_to_end': number;
|
|
4959
|
+
}
|
|
4960
|
+
export declare const TrajectoryRunningKindEnum: {
|
|
4961
|
+
readonly Running: "RUNNING";
|
|
4962
|
+
};
|
|
4963
|
+
export type TrajectoryRunningKindEnum = typeof TrajectoryRunningKindEnum[keyof typeof TrajectoryRunningKindEnum];
|
|
4964
|
+
/**
|
|
4965
|
+
*
|
|
4966
|
+
* @export
|
|
4967
|
+
* @interface TrajectoryWaitForIO
|
|
4968
|
+
*/
|
|
4969
|
+
export interface TrajectoryWaitForIO {
|
|
4970
|
+
/**
|
|
4971
|
+
*
|
|
4972
|
+
* @type {string}
|
|
4973
|
+
* @memberof TrajectoryWaitForIO
|
|
4974
|
+
*/
|
|
4975
|
+
'kind': TrajectoryWaitForIOKindEnum;
|
|
4976
|
+
}
|
|
4977
|
+
export declare const TrajectoryWaitForIOKindEnum: {
|
|
4978
|
+
readonly WaitForIo: "WAIT_FOR_IO";
|
|
4979
|
+
};
|
|
4980
|
+
export type TrajectoryWaitForIOKindEnum = typeof TrajectoryWaitForIOKindEnum[keyof typeof TrajectoryWaitForIOKindEnum];
|
|
4211
4981
|
/**
|
|
4212
4982
|
* The unit of input/output value.
|
|
4213
4983
|
* @export
|
|
@@ -4286,6 +5056,14 @@ export interface ValidationError {
|
|
|
4286
5056
|
* @memberof ValidationError
|
|
4287
5057
|
*/
|
|
4288
5058
|
'type': string;
|
|
5059
|
+
/**
|
|
5060
|
+
*
|
|
5061
|
+
* @type {{ [key: string]: any; }}
|
|
5062
|
+
* @memberof ValidationError
|
|
5063
|
+
*/
|
|
5064
|
+
'input': {
|
|
5065
|
+
[key: string]: any;
|
|
5066
|
+
};
|
|
4289
5067
|
}
|
|
4290
5068
|
/**
|
|
4291
5069
|
* @type ValidationErrorLocInner
|
|
@@ -4327,7 +5105,7 @@ export interface VirtualController {
|
|
|
4327
5105
|
* @type {string}
|
|
4328
5106
|
* @memberof VirtualController
|
|
4329
5107
|
*/
|
|
4330
|
-
'
|
|
5108
|
+
'initial_joint_position'?: string;
|
|
4331
5109
|
}
|
|
4332
5110
|
export declare const VirtualControllerKindEnum: {
|
|
4333
5111
|
readonly VirtualController: "VirtualController";
|
|
@@ -4373,6 +5151,7 @@ export declare const VirtualControllerTypes: {
|
|
|
4373
5151
|
readonly FanucCrx20ial: "fanuc-crx20ial";
|
|
4374
5152
|
readonly FanucCrx25ia: "fanuc-crx25ia";
|
|
4375
5153
|
readonly FanucCrx30ia: "fanuc-crx30ia";
|
|
5154
|
+
readonly FanucCrx5ia: "fanuc-crx5ia";
|
|
4376
5155
|
readonly FanucLrMate200iD: "fanuc-lr_mate_200iD";
|
|
4377
5156
|
readonly FanucLrMate200iD4S: "fanuc-lr_mate_200iD4S";
|
|
4378
5157
|
readonly FanucLrMate200iD7L: "fanuc-lr_mate_200iD7L";
|
|
@@ -4380,6 +5159,7 @@ export declare const VirtualControllerTypes: {
|
|
|
4380
5159
|
readonly FanucM10iD16S: "fanuc-m10iD16S";
|
|
4381
5160
|
readonly FanucM20iD25: "fanuc-m20iD25";
|
|
4382
5161
|
readonly FanucM20iD35: "fanuc-m20iD35";
|
|
5162
|
+
readonly FanucM710iC20L: "fanuc-m710iC20L";
|
|
4383
5163
|
readonly FanucM900iB280L: "fanuc-m900iB280L";
|
|
4384
5164
|
readonly FanucM900iB360E: "fanuc-m900iB360E";
|
|
4385
5165
|
readonly FanucR2000ic125l: "fanuc-r2000ic125l";
|
|
@@ -4468,323 +5248,807 @@ export interface VirtualRobotConfiguration {
|
|
|
4468
5248
|
'content': string;
|
|
4469
5249
|
}
|
|
4470
5250
|
/**
|
|
4471
|
-
*
|
|
5251
|
+
* The value to compare with the current value of the input/output.
|
|
5252
|
+
* @export
|
|
5253
|
+
* @interface WaitForIOEventRequest
|
|
5254
|
+
*/
|
|
5255
|
+
export interface WaitForIOEventRequest {
|
|
5256
|
+
/**
|
|
5257
|
+
*
|
|
5258
|
+
* @type {IOValue}
|
|
5259
|
+
* @memberof WaitForIOEventRequest
|
|
5260
|
+
*/
|
|
5261
|
+
'io': IOValue;
|
|
5262
|
+
/**
|
|
5263
|
+
* Comparator for the comparison of two values. Use the measured I/O as the base value (a) and the expected input/output value as the comparator (b): e.g., a > b.
|
|
5264
|
+
* @type {Comparator}
|
|
5265
|
+
* @memberof WaitForIOEventRequest
|
|
5266
|
+
*/
|
|
5267
|
+
'comparator': Comparator;
|
|
5268
|
+
}
|
|
5269
|
+
/**
|
|
5270
|
+
* The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
|
|
4472
5271
|
* @export
|
|
4473
|
-
* @interface
|
|
5272
|
+
* @interface YaskawaController
|
|
4474
5273
|
*/
|
|
4475
|
-
export interface
|
|
5274
|
+
export interface YaskawaController {
|
|
5275
|
+
/**
|
|
5276
|
+
*
|
|
5277
|
+
* @type {string}
|
|
5278
|
+
* @memberof YaskawaController
|
|
5279
|
+
*/
|
|
5280
|
+
'kind'?: YaskawaControllerKindEnum;
|
|
4476
5281
|
/**
|
|
4477
5282
|
*
|
|
4478
5283
|
* @type {string}
|
|
4479
|
-
* @memberof
|
|
5284
|
+
* @memberof YaskawaController
|
|
4480
5285
|
*/
|
|
4481
|
-
'
|
|
5286
|
+
'controller_ip': string;
|
|
4482
5287
|
}
|
|
4483
|
-
export declare const
|
|
4484
|
-
readonly
|
|
5288
|
+
export declare const YaskawaControllerKindEnum: {
|
|
5289
|
+
readonly YaskawaController: "YaskawaController";
|
|
4485
5290
|
};
|
|
4486
|
-
export type
|
|
5291
|
+
export type YaskawaControllerKindEnum = typeof YaskawaControllerKindEnum[keyof typeof YaskawaControllerKindEnum];
|
|
4487
5292
|
/**
|
|
4488
|
-
*
|
|
5293
|
+
* ApplicationApi - axios parameter creator
|
|
4489
5294
|
* @export
|
|
4490
|
-
* @interface WaitForIOEventRequest
|
|
4491
5295
|
*/
|
|
4492
|
-
export
|
|
5296
|
+
export declare const ApplicationApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4493
5297
|
/**
|
|
4494
|
-
*
|
|
4495
|
-
* @
|
|
4496
|
-
* @
|
|
5298
|
+
* Install a basic, containerized web application to the cell to control robots with a customized frontend. Prerequisites: A Docker hub account or similar container registry account, with valid credentials. After adding the application to the cell, open the application on the Wandelbots NOVA home screen. Read [build your application](/docs/docs/development/) for more information. <!-- theme: none --> > #### Predefined Environment Variables > - `NOVA_API`: The API endpoint accessible from within the application container. > - `NATS_BROKER`: The NATS broker endpoint accessible from within the application container. > - `BASE_PATH`: The application\'s root path, accessible at http://$host/$BASE_PATH > - `CELL_NAME`: The name of the cell hosting the deployed application.
|
|
5299
|
+
* @summary Add Application
|
|
5300
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5301
|
+
* @param {App} app
|
|
5302
|
+
* @param {number} [completionTimeout]
|
|
5303
|
+
* @param {*} [options] Override http request option.
|
|
5304
|
+
* @throws {RequiredError}
|
|
5305
|
+
*/
|
|
5306
|
+
addApp: (cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5307
|
+
/**
|
|
5308
|
+
* Delete all GUI applications from the cell.
|
|
5309
|
+
* @summary Clear Applications
|
|
5310
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5311
|
+
* @param {number} [completionTimeout]
|
|
5312
|
+
* @param {*} [options] Override http request option.
|
|
5313
|
+
* @throws {RequiredError}
|
|
5314
|
+
*/
|
|
5315
|
+
clearApps: (cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5316
|
+
/**
|
|
5317
|
+
* Delete a GUI application from the cell.
|
|
5318
|
+
* @summary Delete Application
|
|
5319
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5320
|
+
* @param {string} app
|
|
5321
|
+
* @param {number} [completionTimeout]
|
|
5322
|
+
* @param {*} [options] Override http request option.
|
|
5323
|
+
* @throws {RequiredError}
|
|
5324
|
+
*/
|
|
5325
|
+
deleteApp: (cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5326
|
+
/**
|
|
5327
|
+
* Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with the \'Update Configuration\' endpoint.
|
|
5328
|
+
* @summary Configuration
|
|
5329
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5330
|
+
* @param {string} app
|
|
5331
|
+
* @param {*} [options] Override http request option.
|
|
5332
|
+
* @throws {RequiredError}
|
|
5333
|
+
*/
|
|
5334
|
+
getApp: (cell: string, app: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5335
|
+
/**
|
|
5336
|
+
* List all GUI applications that have been added to a cell. with the \'Add Application\' endpoint. If the cell does not contain GUI applications, the list is returned empty.
|
|
5337
|
+
* @summary List Applications
|
|
5338
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5339
|
+
* @param {*} [options] Override http request option.
|
|
5340
|
+
* @throws {RequiredError}
|
|
5341
|
+
*/
|
|
5342
|
+
listApps: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5343
|
+
/**
|
|
5344
|
+
* Update the configuration of a GUI application in the cell.
|
|
5345
|
+
* @summary Update Configuration
|
|
5346
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5347
|
+
* @param {string} app
|
|
5348
|
+
* @param {App} app2
|
|
5349
|
+
* @param {number} [completionTimeout]
|
|
5350
|
+
* @param {*} [options] Override http request option.
|
|
5351
|
+
* @throws {RequiredError}
|
|
5352
|
+
*/
|
|
5353
|
+
updateApp: (cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5354
|
+
};
|
|
5355
|
+
/**
|
|
5356
|
+
* ApplicationApi - functional programming interface
|
|
5357
|
+
* @export
|
|
5358
|
+
*/
|
|
5359
|
+
export declare const ApplicationApiFp: (configuration?: Configuration) => {
|
|
5360
|
+
/**
|
|
5361
|
+
* Install a basic, containerized web application to the cell to control robots with a customized frontend. Prerequisites: A Docker hub account or similar container registry account, with valid credentials. After adding the application to the cell, open the application on the Wandelbots NOVA home screen. Read [build your application](/docs/docs/development/) for more information. <!-- theme: none --> > #### Predefined Environment Variables > - `NOVA_API`: The API endpoint accessible from within the application container. > - `NATS_BROKER`: The NATS broker endpoint accessible from within the application container. > - `BASE_PATH`: The application\'s root path, accessible at http://$host/$BASE_PATH > - `CELL_NAME`: The name of the cell hosting the deployed application.
|
|
5362
|
+
* @summary Add Application
|
|
5363
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5364
|
+
* @param {App} app
|
|
5365
|
+
* @param {number} [completionTimeout]
|
|
5366
|
+
* @param {*} [options] Override http request option.
|
|
5367
|
+
* @throws {RequiredError}
|
|
5368
|
+
*/
|
|
5369
|
+
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5370
|
+
/**
|
|
5371
|
+
* Delete all GUI applications from the cell.
|
|
5372
|
+
* @summary Clear Applications
|
|
5373
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5374
|
+
* @param {number} [completionTimeout]
|
|
5375
|
+
* @param {*} [options] Override http request option.
|
|
5376
|
+
* @throws {RequiredError}
|
|
5377
|
+
*/
|
|
5378
|
+
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5379
|
+
/**
|
|
5380
|
+
* Delete a GUI application from the cell.
|
|
5381
|
+
* @summary Delete Application
|
|
5382
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5383
|
+
* @param {string} app
|
|
5384
|
+
* @param {number} [completionTimeout]
|
|
5385
|
+
* @param {*} [options] Override http request option.
|
|
5386
|
+
* @throws {RequiredError}
|
|
5387
|
+
*/
|
|
5388
|
+
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5389
|
+
/**
|
|
5390
|
+
* Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with the \'Update Configuration\' endpoint.
|
|
5391
|
+
* @summary Configuration
|
|
5392
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5393
|
+
* @param {string} app
|
|
5394
|
+
* @param {*} [options] Override http request option.
|
|
5395
|
+
* @throws {RequiredError}
|
|
5396
|
+
*/
|
|
5397
|
+
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<App>>;
|
|
5398
|
+
/**
|
|
5399
|
+
* List all GUI applications that have been added to a cell. with the \'Add Application\' endpoint. If the cell does not contain GUI applications, the list is returned empty.
|
|
5400
|
+
* @summary List Applications
|
|
5401
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5402
|
+
* @param {*} [options] Override http request option.
|
|
5403
|
+
* @throws {RequiredError}
|
|
5404
|
+
*/
|
|
5405
|
+
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
5406
|
+
/**
|
|
5407
|
+
* Update the configuration of a GUI application in the cell.
|
|
5408
|
+
* @summary Update Configuration
|
|
5409
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5410
|
+
* @param {string} app
|
|
5411
|
+
* @param {App} app2
|
|
5412
|
+
* @param {number} [completionTimeout]
|
|
5413
|
+
* @param {*} [options] Override http request option.
|
|
5414
|
+
* @throws {RequiredError}
|
|
5415
|
+
*/
|
|
5416
|
+
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5417
|
+
};
|
|
5418
|
+
/**
|
|
5419
|
+
* ApplicationApi - factory interface
|
|
5420
|
+
* @export
|
|
5421
|
+
*/
|
|
5422
|
+
export declare const ApplicationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5423
|
+
/**
|
|
5424
|
+
* Install a basic, containerized web application to the cell to control robots with a customized frontend. Prerequisites: A Docker hub account or similar container registry account, with valid credentials. After adding the application to the cell, open the application on the Wandelbots NOVA home screen. Read [build your application](/docs/docs/development/) for more information. <!-- theme: none --> > #### Predefined Environment Variables > - `NOVA_API`: The API endpoint accessible from within the application container. > - `NATS_BROKER`: The NATS broker endpoint accessible from within the application container. > - `BASE_PATH`: The application\'s root path, accessible at http://$host/$BASE_PATH > - `CELL_NAME`: The name of the cell hosting the deployed application.
|
|
5425
|
+
* @summary Add Application
|
|
5426
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5427
|
+
* @param {App} app
|
|
5428
|
+
* @param {number} [completionTimeout]
|
|
5429
|
+
* @param {*} [options] Override http request option.
|
|
5430
|
+
* @throws {RequiredError}
|
|
5431
|
+
*/
|
|
5432
|
+
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5433
|
+
/**
|
|
5434
|
+
* Delete all GUI applications from the cell.
|
|
5435
|
+
* @summary Clear Applications
|
|
5436
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5437
|
+
* @param {number} [completionTimeout]
|
|
5438
|
+
* @param {*} [options] Override http request option.
|
|
5439
|
+
* @throws {RequiredError}
|
|
5440
|
+
*/
|
|
5441
|
+
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5442
|
+
/**
|
|
5443
|
+
* Delete a GUI application from the cell.
|
|
5444
|
+
* @summary Delete Application
|
|
5445
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5446
|
+
* @param {string} app
|
|
5447
|
+
* @param {number} [completionTimeout]
|
|
5448
|
+
* @param {*} [options] Override http request option.
|
|
5449
|
+
* @throws {RequiredError}
|
|
5450
|
+
*/
|
|
5451
|
+
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5452
|
+
/**
|
|
5453
|
+
* Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with the \'Update Configuration\' endpoint.
|
|
5454
|
+
* @summary Configuration
|
|
5455
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5456
|
+
* @param {string} app
|
|
5457
|
+
* @param {*} [options] Override http request option.
|
|
5458
|
+
* @throws {RequiredError}
|
|
5459
|
+
*/
|
|
5460
|
+
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): AxiosPromise<App>;
|
|
5461
|
+
/**
|
|
5462
|
+
* List all GUI applications that have been added to a cell. with the \'Add Application\' endpoint. If the cell does not contain GUI applications, the list is returned empty.
|
|
5463
|
+
* @summary List Applications
|
|
5464
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5465
|
+
* @param {*} [options] Override http request option.
|
|
5466
|
+
* @throws {RequiredError}
|
|
5467
|
+
*/
|
|
5468
|
+
listApps(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
5469
|
+
/**
|
|
5470
|
+
* Update the configuration of a GUI application in the cell.
|
|
5471
|
+
* @summary Update Configuration
|
|
5472
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5473
|
+
* @param {string} app
|
|
5474
|
+
* @param {App} app2
|
|
5475
|
+
* @param {number} [completionTimeout]
|
|
5476
|
+
* @param {*} [options] Override http request option.
|
|
5477
|
+
* @throws {RequiredError}
|
|
5478
|
+
*/
|
|
5479
|
+
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5480
|
+
};
|
|
5481
|
+
/**
|
|
5482
|
+
* ApplicationApi - object-oriented interface
|
|
5483
|
+
* @export
|
|
5484
|
+
* @class ApplicationApi
|
|
5485
|
+
* @extends {BaseAPI}
|
|
5486
|
+
*/
|
|
5487
|
+
export declare class ApplicationApi extends BaseAPI {
|
|
5488
|
+
/**
|
|
5489
|
+
* Install a basic, containerized web application to the cell to control robots with a customized frontend. Prerequisites: A Docker hub account or similar container registry account, with valid credentials. After adding the application to the cell, open the application on the Wandelbots NOVA home screen. Read [build your application](/docs/docs/development/) for more information. <!-- theme: none --> > #### Predefined Environment Variables > - `NOVA_API`: The API endpoint accessible from within the application container. > - `NATS_BROKER`: The NATS broker endpoint accessible from within the application container. > - `BASE_PATH`: The application\'s root path, accessible at http://$host/$BASE_PATH > - `CELL_NAME`: The name of the cell hosting the deployed application.
|
|
5490
|
+
* @summary Add Application
|
|
5491
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5492
|
+
* @param {App} app
|
|
5493
|
+
* @param {number} [completionTimeout]
|
|
5494
|
+
* @param {*} [options] Override http request option.
|
|
5495
|
+
* @throws {RequiredError}
|
|
5496
|
+
* @memberof ApplicationApi
|
|
5497
|
+
*/
|
|
5498
|
+
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
5499
|
+
/**
|
|
5500
|
+
* Delete all GUI applications from the cell.
|
|
5501
|
+
* @summary Clear Applications
|
|
5502
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5503
|
+
* @param {number} [completionTimeout]
|
|
5504
|
+
* @param {*} [options] Override http request option.
|
|
5505
|
+
* @throws {RequiredError}
|
|
5506
|
+
* @memberof ApplicationApi
|
|
5507
|
+
*/
|
|
5508
|
+
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
5509
|
+
/**
|
|
5510
|
+
* Delete a GUI application from the cell.
|
|
5511
|
+
* @summary Delete Application
|
|
5512
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5513
|
+
* @param {string} app
|
|
5514
|
+
* @param {number} [completionTimeout]
|
|
5515
|
+
* @param {*} [options] Override http request option.
|
|
5516
|
+
* @throws {RequiredError}
|
|
5517
|
+
* @memberof ApplicationApi
|
|
5518
|
+
*/
|
|
5519
|
+
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
5520
|
+
/**
|
|
5521
|
+
* Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with the \'Update Configuration\' endpoint.
|
|
5522
|
+
* @summary Configuration
|
|
5523
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5524
|
+
* @param {string} app
|
|
5525
|
+
* @param {*} [options] Override http request option.
|
|
5526
|
+
* @throws {RequiredError}
|
|
5527
|
+
* @memberof ApplicationApi
|
|
5528
|
+
*/
|
|
5529
|
+
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<App, any>>;
|
|
5530
|
+
/**
|
|
5531
|
+
* List all GUI applications that have been added to a cell. with the \'Add Application\' endpoint. If the cell does not contain GUI applications, the list is returned empty.
|
|
5532
|
+
* @summary List Applications
|
|
5533
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5534
|
+
* @param {*} [options] Override http request option.
|
|
5535
|
+
* @throws {RequiredError}
|
|
5536
|
+
* @memberof ApplicationApi
|
|
5537
|
+
*/
|
|
5538
|
+
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any>>;
|
|
5539
|
+
/**
|
|
5540
|
+
* Update the configuration of a GUI application in the cell.
|
|
5541
|
+
* @summary Update Configuration
|
|
5542
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5543
|
+
* @param {string} app
|
|
5544
|
+
* @param {App} app2
|
|
5545
|
+
* @param {number} [completionTimeout]
|
|
5546
|
+
* @param {*} [options] Override http request option.
|
|
5547
|
+
* @throws {RequiredError}
|
|
5548
|
+
* @memberof ApplicationApi
|
|
5549
|
+
*/
|
|
5550
|
+
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
5551
|
+
}
|
|
5552
|
+
/**
|
|
5553
|
+
* BUSInputsOutputsApi - axios parameter creator
|
|
5554
|
+
* @export
|
|
5555
|
+
*/
|
|
5556
|
+
export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5557
|
+
/**
|
|
5558
|
+
* Add a BUS Inputs/Outputs Service to the cell.
|
|
5559
|
+
* @summary Add Service
|
|
5560
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5561
|
+
* @param {BusIOType} busIOType
|
|
5562
|
+
* @param {number} [completionTimeout]
|
|
5563
|
+
* @param {*} [options] Override http request option.
|
|
5564
|
+
* @throws {RequiredError}
|
|
5565
|
+
*/
|
|
5566
|
+
addBusIOService: (cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5567
|
+
/**
|
|
5568
|
+
* Adds an input/output to or updates an input/output on the PROFINET device.
|
|
5569
|
+
* @summary Add PROFINET Input/Output
|
|
5570
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5571
|
+
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
5572
|
+
* @param {ProfinetIOData} profinetIOData
|
|
5573
|
+
* @param {*} [options] Override http request option.
|
|
5574
|
+
* @throws {RequiredError}
|
|
5575
|
+
*/
|
|
5576
|
+
addProfinetIO: (cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5577
|
+
/**
|
|
5578
|
+
* Delete BUS Inputs/Outputs Service from the cell.
|
|
5579
|
+
* @summary Clear Service
|
|
5580
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5581
|
+
* @param {number} [completionTimeout]
|
|
5582
|
+
* @param {*} [options] Override http request option.
|
|
5583
|
+
* @throws {RequiredError}
|
|
5584
|
+
*/
|
|
5585
|
+
clearBusIOService: (cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5586
|
+
/**
|
|
5587
|
+
* Removes the input/output from the PROFINET device.
|
|
5588
|
+
* @summary Remove PROFINET Input/Ouptut
|
|
5589
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5590
|
+
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
5591
|
+
* @param {*} [options] Override http request option.
|
|
5592
|
+
* @throws {RequiredError}
|
|
5593
|
+
*/
|
|
5594
|
+
deleteProfinetIO: (cell: string, io: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5595
|
+
/**
|
|
5596
|
+
* Get deployed BUS Inputs/Outputs Service.
|
|
5597
|
+
* @summary Get Service
|
|
5598
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5599
|
+
* @param {*} [options] Override http request option.
|
|
5600
|
+
* @throws {RequiredError}
|
|
5601
|
+
*/
|
|
5602
|
+
getBusIOService: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5603
|
+
/**
|
|
5604
|
+
* Get the current state of the BUS Inputs/Outputs service.
|
|
5605
|
+
* @summary State
|
|
5606
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5607
|
+
* @param {*} [options] Override http request option.
|
|
5608
|
+
* @throws {RequiredError}
|
|
5609
|
+
*/
|
|
5610
|
+
getBusIOState: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5611
|
+
/**
|
|
5612
|
+
* Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listBusIODescriptions](listBusIODescriptions).
|
|
5613
|
+
* @summary Get Input/Output Values
|
|
5614
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5615
|
+
* @param {Array<string>} [ios]
|
|
5616
|
+
* @param {*} [options] Override http request option.
|
|
5617
|
+
* @throws {RequiredError}
|
|
5618
|
+
*/
|
|
5619
|
+
getBusIOValues: (cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5620
|
+
/**
|
|
5621
|
+
* Get description of PROFINET
|
|
5622
|
+
* @summary Get PROFINET Description
|
|
5623
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5624
|
+
* @param {*} [options] Override http request option.
|
|
5625
|
+
* @throws {RequiredError}
|
|
5626
|
+
*/
|
|
5627
|
+
getProfinetDescription: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5628
|
+
/**
|
|
5629
|
+
* Get input/output configuration of the PROFINET device as file.
|
|
5630
|
+
* @summary PROFINET Inputs/Outputs to File
|
|
5631
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5632
|
+
* @param {number} [inputOffset]
|
|
5633
|
+
* @param {number} [outputOffset]
|
|
5634
|
+
* @param {*} [options] Override http request option.
|
|
5635
|
+
* @throws {RequiredError}
|
|
5636
|
+
*/
|
|
5637
|
+
getProfinetIOsFromFile: (cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5638
|
+
/**
|
|
5639
|
+
* List all BUS Input/Output descriptions.
|
|
5640
|
+
* @summary List Descriptions
|
|
5641
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5642
|
+
* @param {*} [options] Override http request option.
|
|
5643
|
+
* @throws {RequiredError}
|
|
5644
|
+
*/
|
|
5645
|
+
listBusIODescriptions: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5646
|
+
/**
|
|
5647
|
+
* List all PROFINET input and outputs.
|
|
5648
|
+
* @summary List PROFINET Input/Output Configuration
|
|
5649
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5650
|
+
* @param {*} [options] Override http request option.
|
|
5651
|
+
* @throws {RequiredError}
|
|
5652
|
+
*/
|
|
5653
|
+
listProfinetIOs: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5654
|
+
/**
|
|
5655
|
+
* Set values of outputs. In case of virtual Bus Input/Outputs, also inputs can be set. All available output identifiers can be requested via [listBusIODescriptions](listBusIODescriptions). The call will return once the values have been set and accepted by the service.
|
|
5656
|
+
* @summary Set Output Values
|
|
5657
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5658
|
+
* @param {Array<IOValue>} iOValue
|
|
5659
|
+
* @param {*} [options] Override http request option.
|
|
5660
|
+
* @throws {RequiredError}
|
|
5661
|
+
*/
|
|
5662
|
+
setBusIOValues: (cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5663
|
+
/**
|
|
5664
|
+
* Sets inputs/outputs on the PROFINET device from file.
|
|
5665
|
+
* @summary Set PROFINET Inputs/Outputs from File
|
|
5666
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5667
|
+
* @param {ProfinetInputOutputConfig} profinetInputOutputConfig
|
|
5668
|
+
* @param {*} [options] Override http request option.
|
|
5669
|
+
* @throws {RequiredError}
|
|
5670
|
+
*/
|
|
5671
|
+
setProfinetIOsFromFile: (cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5672
|
+
};
|
|
5673
|
+
/**
|
|
5674
|
+
* BUSInputsOutputsApi - functional programming interface
|
|
5675
|
+
* @export
|
|
5676
|
+
*/
|
|
5677
|
+
export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
5678
|
+
/**
|
|
5679
|
+
* Add a BUS Inputs/Outputs Service to the cell.
|
|
5680
|
+
* @summary Add Service
|
|
5681
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5682
|
+
* @param {BusIOType} busIOType
|
|
5683
|
+
* @param {number} [completionTimeout]
|
|
5684
|
+
* @param {*} [options] Override http request option.
|
|
5685
|
+
* @throws {RequiredError}
|
|
5686
|
+
*/
|
|
5687
|
+
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5688
|
+
/**
|
|
5689
|
+
* Adds an input/output to or updates an input/output on the PROFINET device.
|
|
5690
|
+
* @summary Add PROFINET Input/Output
|
|
5691
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5692
|
+
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
5693
|
+
* @param {ProfinetIOData} profinetIOData
|
|
5694
|
+
* @param {*} [options] Override http request option.
|
|
5695
|
+
* @throws {RequiredError}
|
|
5696
|
+
*/
|
|
5697
|
+
addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5698
|
+
/**
|
|
5699
|
+
* Delete BUS Inputs/Outputs Service from the cell.
|
|
5700
|
+
* @summary Clear Service
|
|
5701
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5702
|
+
* @param {number} [completionTimeout]
|
|
5703
|
+
* @param {*} [options] Override http request option.
|
|
5704
|
+
* @throws {RequiredError}
|
|
5705
|
+
*/
|
|
5706
|
+
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5707
|
+
/**
|
|
5708
|
+
* Removes the input/output from the PROFINET device.
|
|
5709
|
+
* @summary Remove PROFINET Input/Ouptut
|
|
5710
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5711
|
+
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
5712
|
+
* @param {*} [options] Override http request option.
|
|
5713
|
+
* @throws {RequiredError}
|
|
5714
|
+
*/
|
|
5715
|
+
deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5716
|
+
/**
|
|
5717
|
+
* Get deployed BUS Inputs/Outputs Service.
|
|
5718
|
+
* @summary Get Service
|
|
5719
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5720
|
+
* @param {*} [options] Override http request option.
|
|
5721
|
+
* @throws {RequiredError}
|
|
5722
|
+
*/
|
|
5723
|
+
getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BusIOType>>;
|
|
5724
|
+
/**
|
|
5725
|
+
* Get the current state of the BUS Inputs/Outputs service.
|
|
5726
|
+
* @summary State
|
|
5727
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5728
|
+
* @param {*} [options] Override http request option.
|
|
5729
|
+
* @throws {RequiredError}
|
|
5730
|
+
*/
|
|
5731
|
+
getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BusIOsState>>;
|
|
5732
|
+
/**
|
|
5733
|
+
* Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listBusIODescriptions](listBusIODescriptions).
|
|
5734
|
+
* @summary Get Input/Output Values
|
|
5735
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5736
|
+
* @param {Array<string>} [ios]
|
|
5737
|
+
* @param {*} [options] Override http request option.
|
|
5738
|
+
* @throws {RequiredError}
|
|
5739
|
+
*/
|
|
5740
|
+
getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IOValue>>>;
|
|
5741
|
+
/**
|
|
5742
|
+
* Get description of PROFINET
|
|
5743
|
+
* @summary Get PROFINET Description
|
|
5744
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5745
|
+
* @param {*} [options] Override http request option.
|
|
5746
|
+
* @throws {RequiredError}
|
|
5747
|
+
*/
|
|
5748
|
+
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProfinetDescription>>;
|
|
5749
|
+
/**
|
|
5750
|
+
* Get input/output configuration of the PROFINET device as file.
|
|
5751
|
+
* @summary PROFINET Inputs/Outputs to File
|
|
5752
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5753
|
+
* @param {number} [inputOffset]
|
|
5754
|
+
* @param {number} [outputOffset]
|
|
5755
|
+
* @param {*} [options] Override http request option.
|
|
5756
|
+
* @throws {RequiredError}
|
|
5757
|
+
*/
|
|
5758
|
+
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
5759
|
+
/**
|
|
5760
|
+
* List all BUS Input/Output descriptions.
|
|
5761
|
+
* @summary List Descriptions
|
|
5762
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5763
|
+
* @param {*} [options] Override http request option.
|
|
5764
|
+
* @throws {RequiredError}
|
|
4497
5765
|
*/
|
|
4498
|
-
|
|
5766
|
+
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IODescription>>>;
|
|
4499
5767
|
/**
|
|
4500
|
-
*
|
|
4501
|
-
* @
|
|
4502
|
-
* @
|
|
5768
|
+
* List all PROFINET input and outputs.
|
|
5769
|
+
* @summary List PROFINET Input/Output Configuration
|
|
5770
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5771
|
+
* @param {*} [options] Override http request option.
|
|
5772
|
+
* @throws {RequiredError}
|
|
4503
5773
|
*/
|
|
4504
|
-
|
|
4505
|
-
}
|
|
4506
|
-
/**
|
|
4507
|
-
* The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
|
|
4508
|
-
* @export
|
|
4509
|
-
* @interface YaskawaController
|
|
4510
|
-
*/
|
|
4511
|
-
export interface YaskawaController {
|
|
5774
|
+
listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProfinetIO>>>;
|
|
4512
5775
|
/**
|
|
4513
|
-
*
|
|
4514
|
-
* @
|
|
4515
|
-
* @
|
|
5776
|
+
* Set values of outputs. In case of virtual Bus Input/Outputs, also inputs can be set. All available output identifiers can be requested via [listBusIODescriptions](listBusIODescriptions). The call will return once the values have been set and accepted by the service.
|
|
5777
|
+
* @summary Set Output Values
|
|
5778
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5779
|
+
* @param {Array<IOValue>} iOValue
|
|
5780
|
+
* @param {*} [options] Override http request option.
|
|
5781
|
+
* @throws {RequiredError}
|
|
4516
5782
|
*/
|
|
4517
|
-
|
|
5783
|
+
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4518
5784
|
/**
|
|
4519
|
-
*
|
|
4520
|
-
* @
|
|
4521
|
-
* @
|
|
5785
|
+
* Sets inputs/outputs on the PROFINET device from file.
|
|
5786
|
+
* @summary Set PROFINET Inputs/Outputs from File
|
|
5787
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5788
|
+
* @param {ProfinetInputOutputConfig} profinetInputOutputConfig
|
|
5789
|
+
* @param {*} [options] Override http request option.
|
|
5790
|
+
* @throws {RequiredError}
|
|
4522
5791
|
*/
|
|
4523
|
-
|
|
4524
|
-
}
|
|
4525
|
-
export declare const YaskawaControllerKindEnum: {
|
|
4526
|
-
readonly YaskawaController: "YaskawaController";
|
|
5792
|
+
setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4527
5793
|
};
|
|
4528
|
-
export type YaskawaControllerKindEnum = typeof YaskawaControllerKindEnum[keyof typeof YaskawaControllerKindEnum];
|
|
4529
5794
|
/**
|
|
4530
|
-
*
|
|
5795
|
+
* BUSInputsOutputsApi - factory interface
|
|
4531
5796
|
* @export
|
|
4532
5797
|
*/
|
|
4533
|
-
export declare const
|
|
5798
|
+
export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4534
5799
|
/**
|
|
4535
|
-
*
|
|
4536
|
-
* @summary Add
|
|
5800
|
+
* Add a BUS Inputs/Outputs Service to the cell.
|
|
5801
|
+
* @summary Add Service
|
|
4537
5802
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4538
|
-
* @param {
|
|
5803
|
+
* @param {BusIOType} busIOType
|
|
4539
5804
|
* @param {number} [completionTimeout]
|
|
4540
5805
|
* @param {*} [options] Override http request option.
|
|
4541
5806
|
* @throws {RequiredError}
|
|
4542
5807
|
*/
|
|
4543
|
-
|
|
5808
|
+
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
4544
5809
|
/**
|
|
4545
|
-
*
|
|
4546
|
-
* @summary
|
|
5810
|
+
* Adds an input/output to or updates an input/output on the PROFINET device.
|
|
5811
|
+
* @summary Add PROFINET Input/Output
|
|
4547
5812
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4548
|
-
* @param {
|
|
5813
|
+
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
5814
|
+
* @param {ProfinetIOData} profinetIOData
|
|
4549
5815
|
* @param {*} [options] Override http request option.
|
|
4550
5816
|
* @throws {RequiredError}
|
|
4551
5817
|
*/
|
|
4552
|
-
|
|
5818
|
+
addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
4553
5819
|
/**
|
|
4554
|
-
* Delete
|
|
4555
|
-
* @summary
|
|
5820
|
+
* Delete BUS Inputs/Outputs Service from the cell.
|
|
5821
|
+
* @summary Clear Service
|
|
4556
5822
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4557
|
-
* @param {string} app
|
|
4558
5823
|
* @param {number} [completionTimeout]
|
|
4559
5824
|
* @param {*} [options] Override http request option.
|
|
4560
5825
|
* @throws {RequiredError}
|
|
4561
5826
|
*/
|
|
4562
|
-
|
|
5827
|
+
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
4563
5828
|
/**
|
|
4564
|
-
*
|
|
4565
|
-
* @summary
|
|
5829
|
+
* Removes the input/output from the PROFINET device.
|
|
5830
|
+
* @summary Remove PROFINET Input/Ouptut
|
|
4566
5831
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4567
|
-
* @param {string}
|
|
5832
|
+
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
4568
5833
|
* @param {*} [options] Override http request option.
|
|
4569
5834
|
* @throws {RequiredError}
|
|
4570
5835
|
*/
|
|
4571
|
-
|
|
5836
|
+
deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
4572
5837
|
/**
|
|
4573
|
-
*
|
|
4574
|
-
* @summary
|
|
5838
|
+
* Get deployed BUS Inputs/Outputs Service.
|
|
5839
|
+
* @summary Get Service
|
|
4575
5840
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4576
5841
|
* @param {*} [options] Override http request option.
|
|
4577
5842
|
* @throws {RequiredError}
|
|
4578
5843
|
*/
|
|
4579
|
-
|
|
5844
|
+
getBusIOService(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<BusIOType>;
|
|
4580
5845
|
/**
|
|
4581
|
-
*
|
|
4582
|
-
* @summary
|
|
5846
|
+
* Get the current state of the BUS Inputs/Outputs service.
|
|
5847
|
+
* @summary State
|
|
4583
5848
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4584
|
-
* @param {string} app
|
|
4585
|
-
* @param {App} app2
|
|
4586
|
-
* @param {number} [completionTimeout]
|
|
4587
5849
|
* @param {*} [options] Override http request option.
|
|
4588
5850
|
* @throws {RequiredError}
|
|
4589
5851
|
*/
|
|
4590
|
-
|
|
4591
|
-
};
|
|
4592
|
-
/**
|
|
4593
|
-
* ApplicationApi - functional programming interface
|
|
4594
|
-
* @export
|
|
4595
|
-
*/
|
|
4596
|
-
export declare const ApplicationApiFp: (configuration?: Configuration) => {
|
|
5852
|
+
getBusIOState(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<BusIOsState>;
|
|
4597
5853
|
/**
|
|
4598
|
-
*
|
|
4599
|
-
* @summary
|
|
5854
|
+
* Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listBusIODescriptions](listBusIODescriptions).
|
|
5855
|
+
* @summary Get Input/Output Values
|
|
4600
5856
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4601
|
-
* @param {
|
|
4602
|
-
* @param {number} [completionTimeout]
|
|
5857
|
+
* @param {Array<string>} [ios]
|
|
4603
5858
|
* @param {*} [options] Override http request option.
|
|
4604
5859
|
* @throws {RequiredError}
|
|
4605
5860
|
*/
|
|
4606
|
-
|
|
5861
|
+
getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<Array<IOValue>>;
|
|
4607
5862
|
/**
|
|
4608
|
-
*
|
|
4609
|
-
* @summary
|
|
5863
|
+
* Get description of PROFINET
|
|
5864
|
+
* @summary Get PROFINET Description
|
|
4610
5865
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4611
|
-
* @param {number} [completionTimeout]
|
|
4612
5866
|
* @param {*} [options] Override http request option.
|
|
4613
5867
|
* @throws {RequiredError}
|
|
4614
5868
|
*/
|
|
4615
|
-
|
|
5869
|
+
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<ProfinetDescription>;
|
|
4616
5870
|
/**
|
|
4617
|
-
*
|
|
4618
|
-
* @summary
|
|
5871
|
+
* Get input/output configuration of the PROFINET device as file.
|
|
5872
|
+
* @summary PROFINET Inputs/Outputs to File
|
|
4619
5873
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4620
|
-
* @param {
|
|
4621
|
-
* @param {number} [
|
|
5874
|
+
* @param {number} [inputOffset]
|
|
5875
|
+
* @param {number} [outputOffset]
|
|
4622
5876
|
* @param {*} [options] Override http request option.
|
|
4623
5877
|
* @throws {RequiredError}
|
|
4624
5878
|
*/
|
|
4625
|
-
|
|
5879
|
+
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
4626
5880
|
/**
|
|
4627
|
-
*
|
|
4628
|
-
* @summary
|
|
5881
|
+
* List all BUS Input/Output descriptions.
|
|
5882
|
+
* @summary List Descriptions
|
|
4629
5883
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4630
|
-
* @param {string} app
|
|
4631
5884
|
* @param {*} [options] Override http request option.
|
|
4632
5885
|
* @throws {RequiredError}
|
|
4633
5886
|
*/
|
|
4634
|
-
|
|
5887
|
+
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<IODescription>>;
|
|
4635
5888
|
/**
|
|
4636
|
-
* List all
|
|
4637
|
-
* @summary List
|
|
5889
|
+
* List all PROFINET input and outputs.
|
|
5890
|
+
* @summary List PROFINET Input/Output Configuration
|
|
4638
5891
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4639
5892
|
* @param {*} [options] Override http request option.
|
|
4640
5893
|
* @throws {RequiredError}
|
|
4641
5894
|
*/
|
|
4642
|
-
|
|
5895
|
+
listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ProfinetIO>>;
|
|
4643
5896
|
/**
|
|
4644
|
-
*
|
|
4645
|
-
* @summary
|
|
5897
|
+
* Set values of outputs. In case of virtual Bus Input/Outputs, also inputs can be set. All available output identifiers can be requested via [listBusIODescriptions](listBusIODescriptions). The call will return once the values have been set and accepted by the service.
|
|
5898
|
+
* @summary Set Output Values
|
|
4646
5899
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4647
|
-
* @param {
|
|
4648
|
-
* @param {App} app2
|
|
4649
|
-
* @param {number} [completionTimeout]
|
|
5900
|
+
* @param {Array<IOValue>} iOValue
|
|
4650
5901
|
* @param {*} [options] Override http request option.
|
|
4651
5902
|
* @throws {RequiredError}
|
|
4652
5903
|
*/
|
|
4653
|
-
|
|
5904
|
+
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5905
|
+
/**
|
|
5906
|
+
* Sets inputs/outputs on the PROFINET device from file.
|
|
5907
|
+
* @summary Set PROFINET Inputs/Outputs from File
|
|
5908
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5909
|
+
* @param {ProfinetInputOutputConfig} profinetInputOutputConfig
|
|
5910
|
+
* @param {*} [options] Override http request option.
|
|
5911
|
+
* @throws {RequiredError}
|
|
5912
|
+
*/
|
|
5913
|
+
setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
4654
5914
|
};
|
|
4655
5915
|
/**
|
|
4656
|
-
*
|
|
5916
|
+
* BUSInputsOutputsApi - object-oriented interface
|
|
4657
5917
|
* @export
|
|
5918
|
+
* @class BUSInputsOutputsApi
|
|
5919
|
+
* @extends {BaseAPI}
|
|
4658
5920
|
*/
|
|
4659
|
-
export declare
|
|
5921
|
+
export declare class BUSInputsOutputsApi extends BaseAPI {
|
|
4660
5922
|
/**
|
|
4661
|
-
*
|
|
4662
|
-
* @summary Add
|
|
5923
|
+
* Add a BUS Inputs/Outputs Service to the cell.
|
|
5924
|
+
* @summary Add Service
|
|
4663
5925
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4664
|
-
* @param {
|
|
5926
|
+
* @param {BusIOType} busIOType
|
|
4665
5927
|
* @param {number} [completionTimeout]
|
|
4666
5928
|
* @param {*} [options] Override http request option.
|
|
4667
5929
|
* @throws {RequiredError}
|
|
5930
|
+
* @memberof BUSInputsOutputsApi
|
|
4668
5931
|
*/
|
|
4669
|
-
|
|
5932
|
+
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
4670
5933
|
/**
|
|
4671
|
-
*
|
|
4672
|
-
* @summary
|
|
5934
|
+
* Adds an input/output to or updates an input/output on the PROFINET device.
|
|
5935
|
+
* @summary Add PROFINET Input/Output
|
|
4673
5936
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4674
|
-
* @param {
|
|
5937
|
+
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
5938
|
+
* @param {ProfinetIOData} profinetIOData
|
|
4675
5939
|
* @param {*} [options] Override http request option.
|
|
4676
5940
|
* @throws {RequiredError}
|
|
5941
|
+
* @memberof BUSInputsOutputsApi
|
|
4677
5942
|
*/
|
|
4678
|
-
|
|
5943
|
+
addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
4679
5944
|
/**
|
|
4680
|
-
* Delete
|
|
4681
|
-
* @summary
|
|
5945
|
+
* Delete BUS Inputs/Outputs Service from the cell.
|
|
5946
|
+
* @summary Clear Service
|
|
4682
5947
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4683
|
-
* @param {string} app
|
|
4684
5948
|
* @param {number} [completionTimeout]
|
|
4685
5949
|
* @param {*} [options] Override http request option.
|
|
4686
5950
|
* @throws {RequiredError}
|
|
5951
|
+
* @memberof BUSInputsOutputsApi
|
|
4687
5952
|
*/
|
|
4688
|
-
|
|
5953
|
+
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
4689
5954
|
/**
|
|
4690
|
-
*
|
|
4691
|
-
* @summary
|
|
5955
|
+
* Removes the input/output from the PROFINET device.
|
|
5956
|
+
* @summary Remove PROFINET Input/Ouptut
|
|
4692
5957
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4693
|
-
* @param {string}
|
|
5958
|
+
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
4694
5959
|
* @param {*} [options] Override http request option.
|
|
4695
5960
|
* @throws {RequiredError}
|
|
5961
|
+
* @memberof BUSInputsOutputsApi
|
|
4696
5962
|
*/
|
|
4697
|
-
|
|
5963
|
+
deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
4698
5964
|
/**
|
|
4699
|
-
*
|
|
4700
|
-
* @summary
|
|
5965
|
+
* Get deployed BUS Inputs/Outputs Service.
|
|
5966
|
+
* @summary Get Service
|
|
4701
5967
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4702
5968
|
* @param {*} [options] Override http request option.
|
|
4703
5969
|
* @throws {RequiredError}
|
|
5970
|
+
* @memberof BUSInputsOutputsApi
|
|
4704
5971
|
*/
|
|
4705
|
-
|
|
5972
|
+
getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
5973
|
+
bus_type: "profinet";
|
|
5974
|
+
} & BusIOProfinet, any>>;
|
|
4706
5975
|
/**
|
|
4707
|
-
*
|
|
4708
|
-
* @summary
|
|
5976
|
+
* Get the current state of the BUS Inputs/Outputs service.
|
|
5977
|
+
* @summary State
|
|
4709
5978
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4710
|
-
* @param {string} app
|
|
4711
|
-
* @param {App} app2
|
|
4712
|
-
* @param {number} [completionTimeout]
|
|
4713
5979
|
* @param {*} [options] Override http request option.
|
|
4714
5980
|
* @throws {RequiredError}
|
|
5981
|
+
* @memberof BUSInputsOutputsApi
|
|
4715
5982
|
*/
|
|
4716
|
-
|
|
4717
|
-
};
|
|
4718
|
-
/**
|
|
4719
|
-
* ApplicationApi - object-oriented interface
|
|
4720
|
-
* @export
|
|
4721
|
-
* @class ApplicationApi
|
|
4722
|
-
* @extends {BaseAPI}
|
|
4723
|
-
*/
|
|
4724
|
-
export declare class ApplicationApi extends BaseAPI {
|
|
5983
|
+
getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BusIOsState, any>>;
|
|
4725
5984
|
/**
|
|
4726
|
-
*
|
|
4727
|
-
* @summary
|
|
5985
|
+
* Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listBusIODescriptions](listBusIODescriptions).
|
|
5986
|
+
* @summary Get Input/Output Values
|
|
4728
5987
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4729
|
-
* @param {
|
|
4730
|
-
* @param {number} [completionTimeout]
|
|
5988
|
+
* @param {Array<string>} [ios]
|
|
4731
5989
|
* @param {*} [options] Override http request option.
|
|
4732
5990
|
* @throws {RequiredError}
|
|
4733
|
-
* @memberof
|
|
5991
|
+
* @memberof BUSInputsOutputsApi
|
|
4734
5992
|
*/
|
|
4735
|
-
|
|
5993
|
+
getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOValue[], any>>;
|
|
4736
5994
|
/**
|
|
4737
|
-
*
|
|
4738
|
-
* @summary
|
|
5995
|
+
* Get description of PROFINET
|
|
5996
|
+
* @summary Get PROFINET Description
|
|
4739
5997
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4740
|
-
* @param {number} [completionTimeout]
|
|
4741
5998
|
* @param {*} [options] Override http request option.
|
|
4742
5999
|
* @throws {RequiredError}
|
|
4743
|
-
* @memberof
|
|
6000
|
+
* @memberof BUSInputsOutputsApi
|
|
4744
6001
|
*/
|
|
4745
|
-
|
|
6002
|
+
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProfinetDescription, any>>;
|
|
4746
6003
|
/**
|
|
4747
|
-
*
|
|
4748
|
-
* @summary
|
|
6004
|
+
* Get input/output configuration of the PROFINET device as file.
|
|
6005
|
+
* @summary PROFINET Inputs/Outputs to File
|
|
4749
6006
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4750
|
-
* @param {
|
|
4751
|
-
* @param {number} [
|
|
6007
|
+
* @param {number} [inputOffset]
|
|
6008
|
+
* @param {number} [outputOffset]
|
|
4752
6009
|
* @param {*} [options] Override http request option.
|
|
4753
6010
|
* @throws {RequiredError}
|
|
4754
|
-
* @memberof
|
|
6011
|
+
* @memberof BUSInputsOutputsApi
|
|
4755
6012
|
*/
|
|
4756
|
-
|
|
6013
|
+
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
4757
6014
|
/**
|
|
4758
|
-
*
|
|
4759
|
-
* @summary
|
|
6015
|
+
* List all BUS Input/Output descriptions.
|
|
6016
|
+
* @summary List Descriptions
|
|
4760
6017
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4761
|
-
* @param {string} app
|
|
4762
6018
|
* @param {*} [options] Override http request option.
|
|
4763
6019
|
* @throws {RequiredError}
|
|
4764
|
-
* @memberof
|
|
6020
|
+
* @memberof BUSInputsOutputsApi
|
|
4765
6021
|
*/
|
|
4766
|
-
|
|
6022
|
+
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IODescription[], any>>;
|
|
4767
6023
|
/**
|
|
4768
|
-
* List all
|
|
4769
|
-
* @summary List
|
|
6024
|
+
* List all PROFINET input and outputs.
|
|
6025
|
+
* @summary List PROFINET Input/Output Configuration
|
|
4770
6026
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4771
6027
|
* @param {*} [options] Override http request option.
|
|
4772
6028
|
* @throws {RequiredError}
|
|
4773
|
-
* @memberof
|
|
6029
|
+
* @memberof BUSInputsOutputsApi
|
|
4774
6030
|
*/
|
|
4775
|
-
|
|
6031
|
+
listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProfinetIO[], any>>;
|
|
4776
6032
|
/**
|
|
4777
|
-
*
|
|
4778
|
-
* @summary
|
|
6033
|
+
* Set values of outputs. In case of virtual Bus Input/Outputs, also inputs can be set. All available output identifiers can be requested via [listBusIODescriptions](listBusIODescriptions). The call will return once the values have been set and accepted by the service.
|
|
6034
|
+
* @summary Set Output Values
|
|
4779
6035
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4780
|
-
* @param {
|
|
4781
|
-
* @param {App} app2
|
|
4782
|
-
* @param {number} [completionTimeout]
|
|
6036
|
+
* @param {Array<IOValue>} iOValue
|
|
4783
6037
|
* @param {*} [options] Override http request option.
|
|
4784
6038
|
* @throws {RequiredError}
|
|
4785
|
-
* @memberof
|
|
6039
|
+
* @memberof BUSInputsOutputsApi
|
|
4786
6040
|
*/
|
|
4787
|
-
|
|
6041
|
+
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
6042
|
+
/**
|
|
6043
|
+
* Sets inputs/outputs on the PROFINET device from file.
|
|
6044
|
+
* @summary Set PROFINET Inputs/Outputs from File
|
|
6045
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6046
|
+
* @param {ProfinetInputOutputConfig} profinetInputOutputConfig
|
|
6047
|
+
* @param {*} [options] Override http request option.
|
|
6048
|
+
* @throws {RequiredError}
|
|
6049
|
+
* @memberof BUSInputsOutputsApi
|
|
6050
|
+
*/
|
|
6051
|
+
setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
4788
6052
|
}
|
|
4789
6053
|
/**
|
|
4790
6054
|
* CellApi - axios parameter creator
|
|
@@ -5122,15 +6386,6 @@ export declare const ControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
5122
6386
|
* @throws {RequiredError}
|
|
5123
6387
|
*/
|
|
5124
6388
|
getCurrentRobotControllerState: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5125
|
-
/**
|
|
5126
|
-
* Get the current robot system mode of a registered robot controller. The robot system mode indicates if a robot controller can be used. See [setDefaultMode](setDefaultMode) for more information about the different modes. The mode is influenced by the operating mode of the robot controller. The operating mode can be changed via [setDefaultMode](setDefaultMode). Request the current operating mode of the robot controller via [getCurrentRobotControllerState](getCurrentRobotControllerState).
|
|
5127
|
-
* @summary Current Mode
|
|
5128
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5129
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5130
|
-
* @param {*} [options] Override http request option.
|
|
5131
|
-
* @throws {RequiredError}
|
|
5132
|
-
*/
|
|
5133
|
-
getMode: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5134
6389
|
/**
|
|
5135
6390
|
* Get the configuration for a robot controller.
|
|
5136
6391
|
* @summary Robot Controller
|
|
@@ -5168,7 +6423,7 @@ export declare const ControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
5168
6423
|
*/
|
|
5169
6424
|
listRobotControllers: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5170
6425
|
/**
|
|
5171
|
-
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state \'normal\' or \'reduced\'. If the robot controller is in `manual` operating mode, you have manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
6426
|
+
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state \'normal\' or \'reduced\'. If the robot controller is in `manual` operating mode, you have manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > `setDefaultMode` enables the robot controller to stay in control mode to keep the motors activated. > This allows for faster execution of sequential movements as no mode switches are required. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
5172
6427
|
* @summary Set Default Mode
|
|
5173
6428
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5174
6429
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -5188,15 +6443,16 @@ export declare const ControllerApiAxiosParamCreator: (configuration?: Configurat
|
|
|
5188
6443
|
*/
|
|
5189
6444
|
streamFreeDrive: (cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5190
6445
|
/**
|
|
5191
|
-
* <!-- theme: danger --> > Websocket endpoint Receive updates of the state of a robot controller.
|
|
6446
|
+
* <!-- theme: danger --> > Websocket endpoint Receive updates of the state of a robot controller. The stream can be opened before the controller is registered. To register a controller, call [addRobotController](addRobotController). While connecting, the stream sends initialization updates. Once the controller reaches `MODE_MONITOR`, it sends controller state updates.
|
|
5192
6447
|
* @summary Stream State
|
|
5193
6448
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5194
6449
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5195
6450
|
* @param {number} [responseRate]
|
|
6451
|
+
* @param {number} [addControllerTimeout]
|
|
5196
6452
|
* @param {*} [options] Override http request option.
|
|
5197
6453
|
* @throws {RequiredError}
|
|
5198
6454
|
*/
|
|
5199
|
-
streamRobotControllerState: (cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6455
|
+
streamRobotControllerState: (cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5200
6456
|
/**
|
|
5201
6457
|
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
|
|
5202
6458
|
* @summary Update Robot Controller
|
|
@@ -5272,15 +6528,6 @@ export declare const ControllerApiFp: (configuration?: Configuration) => {
|
|
|
5272
6528
|
* @throws {RequiredError}
|
|
5273
6529
|
*/
|
|
5274
6530
|
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RobotControllerState>>;
|
|
5275
|
-
/**
|
|
5276
|
-
* Get the current robot system mode of a registered robot controller. The robot system mode indicates if a robot controller can be used. See [setDefaultMode](setDefaultMode) for more information about the different modes. The mode is influenced by the operating mode of the robot controller. The operating mode can be changed via [setDefaultMode](setDefaultMode). Request the current operating mode of the robot controller via [getCurrentRobotControllerState](getCurrentRobotControllerState).
|
|
5277
|
-
* @summary Current Mode
|
|
5278
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5279
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5280
|
-
* @param {*} [options] Override http request option.
|
|
5281
|
-
* @throws {RequiredError}
|
|
5282
|
-
*/
|
|
5283
|
-
getMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetModeResponse>>;
|
|
5284
6531
|
/**
|
|
5285
6532
|
* Get the configuration for a robot controller.
|
|
5286
6533
|
* @summary Robot Controller
|
|
@@ -5318,7 +6565,7 @@ export declare const ControllerApiFp: (configuration?: Configuration) => {
|
|
|
5318
6565
|
*/
|
|
5319
6566
|
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
5320
6567
|
/**
|
|
5321
|
-
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state \'normal\' or \'reduced\'. If the robot controller is in `manual` operating mode, you have manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
6568
|
+
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state \'normal\' or \'reduced\'. If the robot controller is in `manual` operating mode, you have manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > `setDefaultMode` enables the robot controller to stay in control mode to keep the motors activated. > This allows for faster execution of sequential movements as no mode switches are required. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
5322
6569
|
* @summary Set Default Mode
|
|
5323
6570
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5324
6571
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -5338,15 +6585,16 @@ export declare const ControllerApiFp: (configuration?: Configuration) => {
|
|
|
5338
6585
|
*/
|
|
5339
6586
|
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RobotControllerState>>;
|
|
5340
6587
|
/**
|
|
5341
|
-
* <!-- theme: danger --> > Websocket endpoint Receive updates of the state of a robot controller.
|
|
6588
|
+
* <!-- theme: danger --> > Websocket endpoint Receive updates of the state of a robot controller. The stream can be opened before the controller is registered. To register a controller, call [addRobotController](addRobotController). While connecting, the stream sends initialization updates. Once the controller reaches `MODE_MONITOR`, it sends controller state updates.
|
|
5342
6589
|
* @summary Stream State
|
|
5343
6590
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5344
6591
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5345
6592
|
* @param {number} [responseRate]
|
|
6593
|
+
* @param {number} [addControllerTimeout]
|
|
5346
6594
|
* @param {*} [options] Override http request option.
|
|
5347
6595
|
* @throws {RequiredError}
|
|
5348
6596
|
*/
|
|
5349
|
-
streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RobotControllerState>>;
|
|
6597
|
+
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RobotControllerState>>;
|
|
5350
6598
|
/**
|
|
5351
6599
|
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
|
|
5352
6600
|
* @summary Update Robot Controller
|
|
@@ -5422,15 +6670,6 @@ export declare const ControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
5422
6670
|
* @throws {RequiredError}
|
|
5423
6671
|
*/
|
|
5424
6672
|
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<RobotControllerState>;
|
|
5425
|
-
/**
|
|
5426
|
-
* Get the current robot system mode of a registered robot controller. The robot system mode indicates if a robot controller can be used. See [setDefaultMode](setDefaultMode) for more information about the different modes. The mode is influenced by the operating mode of the robot controller. The operating mode can be changed via [setDefaultMode](setDefaultMode). Request the current operating mode of the robot controller via [getCurrentRobotControllerState](getCurrentRobotControllerState).
|
|
5427
|
-
* @summary Current Mode
|
|
5428
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5429
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5430
|
-
* @param {*} [options] Override http request option.
|
|
5431
|
-
* @throws {RequiredError}
|
|
5432
|
-
*/
|
|
5433
|
-
getMode(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<GetModeResponse>;
|
|
5434
6673
|
/**
|
|
5435
6674
|
* Get the configuration for a robot controller.
|
|
5436
6675
|
* @summary Robot Controller
|
|
@@ -5468,7 +6707,7 @@ export declare const ControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
5468
6707
|
*/
|
|
5469
6708
|
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
5470
6709
|
/**
|
|
5471
|
-
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state \'normal\' or \'reduced\'. If the robot controller is in `manual` operating mode, you have manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
6710
|
+
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state \'normal\' or \'reduced\'. If the robot controller is in `manual` operating mode, you have manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > `setDefaultMode` enables the robot controller to stay in control mode to keep the motors activated. > This allows for faster execution of sequential movements as no mode switches are required. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
5472
6711
|
* @summary Set Default Mode
|
|
5473
6712
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5474
6713
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -5488,15 +6727,16 @@ export declare const ControllerApiFactory: (configuration?: Configuration, baseP
|
|
|
5488
6727
|
*/
|
|
5489
6728
|
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): AxiosPromise<RobotControllerState>;
|
|
5490
6729
|
/**
|
|
5491
|
-
* <!-- theme: danger --> > Websocket endpoint Receive updates of the state of a robot controller.
|
|
6730
|
+
* <!-- theme: danger --> > Websocket endpoint Receive updates of the state of a robot controller. The stream can be opened before the controller is registered. To register a controller, call [addRobotController](addRobotController). While connecting, the stream sends initialization updates. Once the controller reaches `MODE_MONITOR`, it sends controller state updates.
|
|
5492
6731
|
* @summary Stream State
|
|
5493
6732
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5494
6733
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5495
6734
|
* @param {number} [responseRate]
|
|
6735
|
+
* @param {number} [addControllerTimeout]
|
|
5496
6736
|
* @param {*} [options] Override http request option.
|
|
5497
6737
|
* @throws {RequiredError}
|
|
5498
6738
|
*/
|
|
5499
|
-
streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): AxiosPromise<RobotControllerState>;
|
|
6739
|
+
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<RobotControllerState>;
|
|
5500
6740
|
/**
|
|
5501
6741
|
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
|
|
5502
6742
|
* @summary Update Robot Controller
|
|
@@ -5580,16 +6820,6 @@ export declare class ControllerApi extends BaseAPI {
|
|
|
5580
6820
|
* @memberof ControllerApi
|
|
5581
6821
|
*/
|
|
5582
6822
|
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RobotControllerState, any>>;
|
|
5583
|
-
/**
|
|
5584
|
-
* Get the current robot system mode of a registered robot controller. The robot system mode indicates if a robot controller can be used. See [setDefaultMode](setDefaultMode) for more information about the different modes. The mode is influenced by the operating mode of the robot controller. The operating mode can be changed via [setDefaultMode](setDefaultMode). Request the current operating mode of the robot controller via [getCurrentRobotControllerState](getCurrentRobotControllerState).
|
|
5585
|
-
* @summary Current Mode
|
|
5586
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5587
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5588
|
-
* @param {*} [options] Override http request option.
|
|
5589
|
-
* @throws {RequiredError}
|
|
5590
|
-
* @memberof ControllerApi
|
|
5591
|
-
*/
|
|
5592
|
-
getMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetModeResponse, any>>;
|
|
5593
6823
|
/**
|
|
5594
6824
|
* Get the configuration for a robot controller.
|
|
5595
6825
|
* @summary Robot Controller
|
|
@@ -5631,7 +6861,7 @@ export declare class ControllerApi extends BaseAPI {
|
|
|
5631
6861
|
*/
|
|
5632
6862
|
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any>>;
|
|
5633
6863
|
/**
|
|
5634
|
-
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state \'normal\' or \'reduced\'. If the robot controller is in `manual` operating mode, you have manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
6864
|
+
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state \'normal\' or \'reduced\'. If the robot controller is in `manual` operating mode, you have manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > `setDefaultMode` enables the robot controller to stay in control mode to keep the motors activated. > This allows for faster execution of sequential movements as no mode switches are required. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
5635
6865
|
* @summary Set Default Mode
|
|
5636
6866
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5637
6867
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -5653,16 +6883,17 @@ export declare class ControllerApi extends BaseAPI {
|
|
|
5653
6883
|
*/
|
|
5654
6884
|
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RobotControllerState, any>>;
|
|
5655
6885
|
/**
|
|
5656
|
-
* <!-- theme: danger --> > Websocket endpoint Receive updates of the state of a robot controller.
|
|
6886
|
+
* <!-- theme: danger --> > Websocket endpoint Receive updates of the state of a robot controller. The stream can be opened before the controller is registered. To register a controller, call [addRobotController](addRobotController). While connecting, the stream sends initialization updates. Once the controller reaches `MODE_MONITOR`, it sends controller state updates.
|
|
5657
6887
|
* @summary Stream State
|
|
5658
6888
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5659
6889
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
5660
6890
|
* @param {number} [responseRate]
|
|
6891
|
+
* @param {number} [addControllerTimeout]
|
|
5661
6892
|
* @param {*} [options] Override http request option.
|
|
5662
6893
|
* @throws {RequiredError}
|
|
5663
6894
|
* @memberof ControllerApi
|
|
5664
6895
|
*/
|
|
5665
|
-
streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RobotControllerState, any>>;
|
|
6896
|
+
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RobotControllerState, any>>;
|
|
5666
6897
|
/**
|
|
5667
6898
|
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
|
|
5668
6899
|
* @summary Update Robot Controller
|
|
@@ -5991,6 +7222,15 @@ export declare class JoggingApi extends BaseAPI {
|
|
|
5991
7222
|
* @export
|
|
5992
7223
|
*/
|
|
5993
7224
|
export declare const KinematicsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7225
|
+
/**
|
|
7226
|
+
* Returns the TCP poses for a list of given joint positions.
|
|
7227
|
+
* @summary Forward kinematics
|
|
7228
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7229
|
+
* @param {ForwardKinematicsRequest} [forwardKinematicsRequest]
|
|
7230
|
+
* @param {*} [options] Override http request option.
|
|
7231
|
+
* @throws {RequiredError}
|
|
7232
|
+
*/
|
|
7233
|
+
forwardKinematics: (cell: string, forwardKinematicsRequest?: ForwardKinematicsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5994
7234
|
/**
|
|
5995
7235
|
* Returns the reachable joint positions for a list of given poses.
|
|
5996
7236
|
* @summary Inverse kinematics
|
|
@@ -6006,6 +7246,15 @@ export declare const KinematicsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
6006
7246
|
* @export
|
|
6007
7247
|
*/
|
|
6008
7248
|
export declare const KinematicsApiFp: (configuration?: Configuration) => {
|
|
7249
|
+
/**
|
|
7250
|
+
* Returns the TCP poses for a list of given joint positions.
|
|
7251
|
+
* @summary Forward kinematics
|
|
7252
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7253
|
+
* @param {ForwardKinematicsRequest} [forwardKinematicsRequest]
|
|
7254
|
+
* @param {*} [options] Override http request option.
|
|
7255
|
+
* @throws {RequiredError}
|
|
7256
|
+
*/
|
|
7257
|
+
forwardKinematics(cell: string, forwardKinematicsRequest?: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForwardKinematicsResponse>>;
|
|
6009
7258
|
/**
|
|
6010
7259
|
* Returns the reachable joint positions for a list of given poses.
|
|
6011
7260
|
* @summary Inverse kinematics
|
|
@@ -6021,6 +7270,15 @@ export declare const KinematicsApiFp: (configuration?: Configuration) => {
|
|
|
6021
7270
|
* @export
|
|
6022
7271
|
*/
|
|
6023
7272
|
export declare const KinematicsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7273
|
+
/**
|
|
7274
|
+
* Returns the TCP poses for a list of given joint positions.
|
|
7275
|
+
* @summary Forward kinematics
|
|
7276
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7277
|
+
* @param {ForwardKinematicsRequest} [forwardKinematicsRequest]
|
|
7278
|
+
* @param {*} [options] Override http request option.
|
|
7279
|
+
* @throws {RequiredError}
|
|
7280
|
+
*/
|
|
7281
|
+
forwardKinematics(cell: string, forwardKinematicsRequest?: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForwardKinematicsResponse>;
|
|
6024
7282
|
/**
|
|
6025
7283
|
* Returns the reachable joint positions for a list of given poses.
|
|
6026
7284
|
* @summary Inverse kinematics
|
|
@@ -6038,6 +7296,16 @@ export declare const KinematicsApiFactory: (configuration?: Configuration, baseP
|
|
|
6038
7296
|
* @extends {BaseAPI}
|
|
6039
7297
|
*/
|
|
6040
7298
|
export declare class KinematicsApi extends BaseAPI {
|
|
7299
|
+
/**
|
|
7300
|
+
* Returns the TCP poses for a list of given joint positions.
|
|
7301
|
+
* @summary Forward kinematics
|
|
7302
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7303
|
+
* @param {ForwardKinematicsRequest} [forwardKinematicsRequest]
|
|
7304
|
+
* @param {*} [options] Override http request option.
|
|
7305
|
+
* @throws {RequiredError}
|
|
7306
|
+
* @memberof KinematicsApi
|
|
7307
|
+
*/
|
|
7308
|
+
forwardKinematics(cell: string, forwardKinematicsRequest?: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ForwardKinematicsResponse, any>>;
|
|
6041
7309
|
/**
|
|
6042
7310
|
* Returns the reachable joint positions for a list of given poses.
|
|
6043
7311
|
* @summary Inverse kinematics
|
|
@@ -6999,184 +8267,184 @@ export declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6999
8267
|
}, any>>;
|
|
7000
8268
|
}
|
|
7001
8269
|
/**
|
|
7002
|
-
*
|
|
8270
|
+
* StoreCollisionSetupsApi - axios parameter creator
|
|
7003
8271
|
* @export
|
|
7004
8272
|
*/
|
|
7005
|
-
export declare const
|
|
8273
|
+
export declare const StoreCollisionSetupsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7006
8274
|
/**
|
|
7007
|
-
* Deletes the stored
|
|
7008
|
-
* @summary Delete
|
|
8275
|
+
* Deletes the stored collision setup. <!-- theme: danger --> > This will delete persistently stored data.
|
|
8276
|
+
* @summary Delete Collision Setup
|
|
7009
8277
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7010
|
-
* @param {string}
|
|
8278
|
+
* @param {string} setup Identifier of the collision setup
|
|
7011
8279
|
* @param {*} [options] Override http request option.
|
|
7012
8280
|
* @throws {RequiredError}
|
|
7013
8281
|
*/
|
|
7014
|
-
|
|
8282
|
+
deleteStoredCollisionSetup: (cell: string, setup: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7015
8283
|
/**
|
|
7016
|
-
* Returns the stored
|
|
7017
|
-
* @summary Get
|
|
8284
|
+
* Returns the stored collision setup.
|
|
8285
|
+
* @summary Get Collision Setup
|
|
7018
8286
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7019
|
-
* @param {string}
|
|
8287
|
+
* @param {string} setup Identifier of the collision setup
|
|
7020
8288
|
* @param {*} [options] Override http request option.
|
|
7021
8289
|
* @throws {RequiredError}
|
|
7022
8290
|
*/
|
|
7023
|
-
|
|
8291
|
+
getStoredCollisionSetup: (cell: string, setup: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7024
8292
|
/**
|
|
7025
|
-
* Returns a list of stored
|
|
7026
|
-
* @summary List
|
|
8293
|
+
* Returns a list of stored collision setups.
|
|
8294
|
+
* @summary List Collision Setups
|
|
7027
8295
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7028
8296
|
* @param {*} [options] Override http request option.
|
|
7029
8297
|
* @throws {RequiredError}
|
|
7030
8298
|
*/
|
|
7031
|
-
|
|
8299
|
+
listStoredCollisionSetups: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7032
8300
|
/**
|
|
7033
|
-
*
|
|
7034
|
-
* @summary Store
|
|
8301
|
+
* Stores collision setup. If the collision setup does not exist, it will be created. If the collision setup exists, it will be updated.
|
|
8302
|
+
* @summary Store Collision Setup
|
|
7035
8303
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7036
|
-
* @param {string}
|
|
7037
|
-
* @param {
|
|
8304
|
+
* @param {string} setup Identifier of the collision setup
|
|
8305
|
+
* @param {CollisionSetup} collisionSetup
|
|
7038
8306
|
* @param {*} [options] Override http request option.
|
|
7039
8307
|
* @throws {RequiredError}
|
|
7040
8308
|
*/
|
|
7041
|
-
|
|
8309
|
+
storeCollisionSetup: (cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7042
8310
|
};
|
|
7043
8311
|
/**
|
|
7044
|
-
*
|
|
8312
|
+
* StoreCollisionSetupsApi - functional programming interface
|
|
7045
8313
|
* @export
|
|
7046
8314
|
*/
|
|
7047
|
-
export declare const
|
|
8315
|
+
export declare const StoreCollisionSetupsApiFp: (configuration?: Configuration) => {
|
|
7048
8316
|
/**
|
|
7049
|
-
* Deletes the stored
|
|
7050
|
-
* @summary Delete
|
|
8317
|
+
* Deletes the stored collision setup. <!-- theme: danger --> > This will delete persistently stored data.
|
|
8318
|
+
* @summary Delete Collision Setup
|
|
7051
8319
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7052
|
-
* @param {string}
|
|
8320
|
+
* @param {string} setup Identifier of the collision setup
|
|
7053
8321
|
* @param {*} [options] Override http request option.
|
|
7054
8322
|
* @throws {RequiredError}
|
|
7055
8323
|
*/
|
|
7056
|
-
|
|
8324
|
+
deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7057
8325
|
/**
|
|
7058
|
-
* Returns the stored
|
|
7059
|
-
* @summary Get
|
|
8326
|
+
* Returns the stored collision setup.
|
|
8327
|
+
* @summary Get Collision Setup
|
|
7060
8328
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7061
|
-
* @param {string}
|
|
8329
|
+
* @param {string} setup Identifier of the collision setup
|
|
7062
8330
|
* @param {*} [options] Override http request option.
|
|
7063
8331
|
* @throws {RequiredError}
|
|
7064
8332
|
*/
|
|
7065
|
-
|
|
8333
|
+
getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollisionSetup>>;
|
|
7066
8334
|
/**
|
|
7067
|
-
* Returns a list of stored
|
|
7068
|
-
* @summary List
|
|
8335
|
+
* Returns a list of stored collision setups.
|
|
8336
|
+
* @summary List Collision Setups
|
|
7069
8337
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7070
8338
|
* @param {*} [options] Override http request option.
|
|
7071
8339
|
* @throws {RequiredError}
|
|
7072
8340
|
*/
|
|
7073
|
-
|
|
7074
|
-
[key: string]:
|
|
8341
|
+
listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
8342
|
+
[key: string]: CollisionSetup;
|
|
7075
8343
|
}>>;
|
|
7076
8344
|
/**
|
|
7077
|
-
*
|
|
7078
|
-
* @summary Store
|
|
8345
|
+
* Stores collision setup. If the collision setup does not exist, it will be created. If the collision setup exists, it will be updated.
|
|
8346
|
+
* @summary Store Collision Setup
|
|
7079
8347
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7080
|
-
* @param {string}
|
|
7081
|
-
* @param {
|
|
8348
|
+
* @param {string} setup Identifier of the collision setup
|
|
8349
|
+
* @param {CollisionSetup} collisionSetup
|
|
7082
8350
|
* @param {*} [options] Override http request option.
|
|
7083
8351
|
* @throws {RequiredError}
|
|
7084
8352
|
*/
|
|
7085
|
-
|
|
8353
|
+
storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollisionSetup>>;
|
|
7086
8354
|
};
|
|
7087
8355
|
/**
|
|
7088
|
-
*
|
|
8356
|
+
* StoreCollisionSetupsApi - factory interface
|
|
7089
8357
|
* @export
|
|
7090
8358
|
*/
|
|
7091
|
-
export declare const
|
|
8359
|
+
export declare const StoreCollisionSetupsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7092
8360
|
/**
|
|
7093
|
-
* Deletes the stored
|
|
7094
|
-
* @summary Delete
|
|
8361
|
+
* Deletes the stored collision setup. <!-- theme: danger --> > This will delete persistently stored data.
|
|
8362
|
+
* @summary Delete Collision Setup
|
|
7095
8363
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7096
|
-
* @param {string}
|
|
8364
|
+
* @param {string} setup Identifier of the collision setup
|
|
7097
8365
|
* @param {*} [options] Override http request option.
|
|
7098
8366
|
* @throws {RequiredError}
|
|
7099
8367
|
*/
|
|
7100
|
-
|
|
8368
|
+
deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
7101
8369
|
/**
|
|
7102
|
-
* Returns the stored
|
|
7103
|
-
* @summary Get
|
|
8370
|
+
* Returns the stored collision setup.
|
|
8371
|
+
* @summary Get Collision Setup
|
|
7104
8372
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7105
|
-
* @param {string}
|
|
8373
|
+
* @param {string} setup Identifier of the collision setup
|
|
7106
8374
|
* @param {*} [options] Override http request option.
|
|
7107
8375
|
* @throws {RequiredError}
|
|
7108
8376
|
*/
|
|
7109
|
-
|
|
8377
|
+
getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): AxiosPromise<CollisionSetup>;
|
|
7110
8378
|
/**
|
|
7111
|
-
* Returns a list of stored
|
|
7112
|
-
* @summary List
|
|
8379
|
+
* Returns a list of stored collision setups.
|
|
8380
|
+
* @summary List Collision Setups
|
|
7113
8381
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7114
8382
|
* @param {*} [options] Override http request option.
|
|
7115
8383
|
* @throws {RequiredError}
|
|
7116
8384
|
*/
|
|
7117
|
-
|
|
7118
|
-
[key: string]:
|
|
8385
|
+
listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
8386
|
+
[key: string]: CollisionSetup;
|
|
7119
8387
|
}>;
|
|
7120
8388
|
/**
|
|
7121
|
-
*
|
|
7122
|
-
* @summary Store
|
|
8389
|
+
* Stores collision setup. If the collision setup does not exist, it will be created. If the collision setup exists, it will be updated.
|
|
8390
|
+
* @summary Store Collision Setup
|
|
7123
8391
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7124
|
-
* @param {string}
|
|
7125
|
-
* @param {
|
|
8392
|
+
* @param {string} setup Identifier of the collision setup
|
|
8393
|
+
* @param {CollisionSetup} collisionSetup
|
|
7126
8394
|
* @param {*} [options] Override http request option.
|
|
7127
8395
|
* @throws {RequiredError}
|
|
7128
8396
|
*/
|
|
7129
|
-
|
|
8397
|
+
storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): AxiosPromise<CollisionSetup>;
|
|
7130
8398
|
};
|
|
7131
8399
|
/**
|
|
7132
|
-
*
|
|
8400
|
+
* StoreCollisionSetupsApi - object-oriented interface
|
|
7133
8401
|
* @export
|
|
7134
|
-
* @class
|
|
8402
|
+
* @class StoreCollisionSetupsApi
|
|
7135
8403
|
* @extends {BaseAPI}
|
|
7136
8404
|
*/
|
|
7137
|
-
export declare class
|
|
8405
|
+
export declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
7138
8406
|
/**
|
|
7139
|
-
* Deletes the stored
|
|
7140
|
-
* @summary Delete
|
|
8407
|
+
* Deletes the stored collision setup. <!-- theme: danger --> > This will delete persistently stored data.
|
|
8408
|
+
* @summary Delete Collision Setup
|
|
7141
8409
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7142
|
-
* @param {string}
|
|
8410
|
+
* @param {string} setup Identifier of the collision setup
|
|
7143
8411
|
* @param {*} [options] Override http request option.
|
|
7144
8412
|
* @throws {RequiredError}
|
|
7145
|
-
* @memberof
|
|
8413
|
+
* @memberof StoreCollisionSetupsApi
|
|
7146
8414
|
*/
|
|
7147
|
-
|
|
8415
|
+
deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
7148
8416
|
/**
|
|
7149
|
-
* Returns the stored
|
|
7150
|
-
* @summary Get
|
|
8417
|
+
* Returns the stored collision setup.
|
|
8418
|
+
* @summary Get Collision Setup
|
|
7151
8419
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7152
|
-
* @param {string}
|
|
8420
|
+
* @param {string} setup Identifier of the collision setup
|
|
7153
8421
|
* @param {*} [options] Override http request option.
|
|
7154
8422
|
* @throws {RequiredError}
|
|
7155
|
-
* @memberof
|
|
8423
|
+
* @memberof StoreCollisionSetupsApi
|
|
7156
8424
|
*/
|
|
7157
|
-
|
|
8425
|
+
getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollisionSetup, any>>;
|
|
7158
8426
|
/**
|
|
7159
|
-
* Returns a list of stored
|
|
7160
|
-
* @summary List
|
|
8427
|
+
* Returns a list of stored collision setups.
|
|
8428
|
+
* @summary List Collision Setups
|
|
7161
8429
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7162
8430
|
* @param {*} [options] Override http request option.
|
|
7163
8431
|
* @throws {RequiredError}
|
|
7164
|
-
* @memberof
|
|
8432
|
+
* @memberof StoreCollisionSetupsApi
|
|
7165
8433
|
*/
|
|
7166
|
-
|
|
7167
|
-
[key: string]:
|
|
8434
|
+
listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
8435
|
+
[key: string]: CollisionSetup;
|
|
7168
8436
|
}, any>>;
|
|
7169
8437
|
/**
|
|
7170
|
-
*
|
|
7171
|
-
* @summary Store
|
|
8438
|
+
* Stores collision setup. If the collision setup does not exist, it will be created. If the collision setup exists, it will be updated.
|
|
8439
|
+
* @summary Store Collision Setup
|
|
7172
8440
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7173
|
-
* @param {string}
|
|
7174
|
-
* @param {
|
|
8441
|
+
* @param {string} setup Identifier of the collision setup
|
|
8442
|
+
* @param {CollisionSetup} collisionSetup
|
|
7175
8443
|
* @param {*} [options] Override http request option.
|
|
7176
8444
|
* @throws {RequiredError}
|
|
7177
|
-
* @memberof
|
|
8445
|
+
* @memberof StoreCollisionSetupsApi
|
|
7178
8446
|
*/
|
|
7179
|
-
|
|
8447
|
+
storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CollisionSetup, any>>;
|
|
7180
8448
|
}
|
|
7181
8449
|
/**
|
|
7182
8450
|
* StoreObjectApi - axios parameter creator
|
|
@@ -7440,14 +8708,14 @@ export declare class StoreObjectApi extends BaseAPI {
|
|
|
7440
8708
|
*/
|
|
7441
8709
|
export declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7442
8710
|
/**
|
|
7443
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
8711
|
+
* Retrieves a configuration backup based on provided resource identifiers. If an empty array of resources is provided, a backup for all resources will be retrieved.
|
|
7444
8712
|
* @summary Retrieve Configuration Backup
|
|
7445
|
-
* @param {Array<string>} resources List of resource identifiers to
|
|
8713
|
+
* @param {Array<string>} [resources] List of resource identifiers to include in the retrieval.
|
|
7446
8714
|
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
7447
8715
|
* @param {*} [options] Override http request option.
|
|
7448
8716
|
* @throws {RequiredError}
|
|
7449
8717
|
*/
|
|
7450
|
-
backupConfiguration: (resources
|
|
8718
|
+
backupConfiguration: (resources?: Array<string>, metadata?: {
|
|
7451
8719
|
[key: string]: string;
|
|
7452
8720
|
}, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7453
8721
|
/**
|
|
@@ -7518,14 +8786,14 @@ export declare const SystemApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
7518
8786
|
*/
|
|
7519
8787
|
export declare const SystemApiFp: (configuration?: Configuration) => {
|
|
7520
8788
|
/**
|
|
7521
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
8789
|
+
* Retrieves a configuration backup based on provided resource identifiers. If an empty array of resources is provided, a backup for all resources will be retrieved.
|
|
7522
8790
|
* @summary Retrieve Configuration Backup
|
|
7523
|
-
* @param {Array<string>} resources List of resource identifiers to
|
|
8791
|
+
* @param {Array<string>} [resources] List of resource identifiers to include in the retrieval.
|
|
7524
8792
|
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
7525
8793
|
* @param {*} [options] Override http request option.
|
|
7526
8794
|
* @throws {RequiredError}
|
|
7527
8795
|
*/
|
|
7528
|
-
backupConfiguration(resources
|
|
8796
|
+
backupConfiguration(resources?: Array<string>, metadata?: {
|
|
7529
8797
|
[key: string]: string;
|
|
7530
8798
|
}, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
7531
8799
|
/**
|
|
@@ -7596,14 +8864,14 @@ export declare const SystemApiFp: (configuration?: Configuration) => {
|
|
|
7596
8864
|
*/
|
|
7597
8865
|
export declare const SystemApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
7598
8866
|
/**
|
|
7599
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
8867
|
+
* Retrieves a configuration backup based on provided resource identifiers. If an empty array of resources is provided, a backup for all resources will be retrieved.
|
|
7600
8868
|
* @summary Retrieve Configuration Backup
|
|
7601
|
-
* @param {Array<string>} resources List of resource identifiers to
|
|
8869
|
+
* @param {Array<string>} [resources] List of resource identifiers to include in the retrieval.
|
|
7602
8870
|
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
7603
8871
|
* @param {*} [options] Override http request option.
|
|
7604
8872
|
* @throws {RequiredError}
|
|
7605
8873
|
*/
|
|
7606
|
-
backupConfiguration(resources
|
|
8874
|
+
backupConfiguration(resources?: Array<string>, metadata?: {
|
|
7607
8875
|
[key: string]: string;
|
|
7608
8876
|
}, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
7609
8877
|
/**
|
|
@@ -7676,15 +8944,15 @@ export declare const SystemApiFactory: (configuration?: Configuration, basePath?
|
|
|
7676
8944
|
*/
|
|
7677
8945
|
export declare class SystemApi extends BaseAPI {
|
|
7678
8946
|
/**
|
|
7679
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
8947
|
+
* Retrieves a configuration backup based on provided resource identifiers. If an empty array of resources is provided, a backup for all resources will be retrieved.
|
|
7680
8948
|
* @summary Retrieve Configuration Backup
|
|
7681
|
-
* @param {Array<string>} resources List of resource identifiers to
|
|
8949
|
+
* @param {Array<string>} [resources] List of resource identifiers to include in the retrieval.
|
|
7682
8950
|
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
7683
8951
|
* @param {*} [options] Override http request option.
|
|
7684
8952
|
* @throws {RequiredError}
|
|
7685
8953
|
* @memberof SystemApi
|
|
7686
8954
|
*/
|
|
7687
|
-
backupConfiguration(resources
|
|
8955
|
+
backupConfiguration(resources?: Array<string>, metadata?: {
|
|
7688
8956
|
[key: string]: string;
|
|
7689
8957
|
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
7690
8958
|
/**
|
|
@@ -8052,6 +9320,15 @@ export declare class TrajectoryExecutionApi extends BaseAPI {
|
|
|
8052
9320
|
* @export
|
|
8053
9321
|
*/
|
|
8054
9322
|
export declare const TrajectoryPlanningApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
9323
|
+
/**
|
|
9324
|
+
* Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
9325
|
+
* @summary Plan Collision-Free Trajectory
|
|
9326
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9327
|
+
* @param {PlanCollisionFreeRequest} [planCollisionFreeRequest]
|
|
9328
|
+
* @param {*} [options] Override http request option.
|
|
9329
|
+
* @throws {RequiredError}
|
|
9330
|
+
*/
|
|
9331
|
+
planCollisionFree: (cell: string, planCollisionFreeRequest?: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8055
9332
|
/**
|
|
8056
9333
|
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the [PlanTrajectoryResponse](PlanTrajectoryResponse) will contain the joint trajectory up until the error, e.g. all samples until a collision occurs. EXCEPTION: If a CartesianPTP or JointPTP motion command has an invalid target, the response will contain the trajectory up until the start of the invalid PTP motion.
|
|
8057
9334
|
* @summary Plan Trajectory
|
|
@@ -8067,6 +9344,15 @@ export declare const TrajectoryPlanningApiAxiosParamCreator: (configuration?: Co
|
|
|
8067
9344
|
* @export
|
|
8068
9345
|
*/
|
|
8069
9346
|
export declare const TrajectoryPlanningApiFp: (configuration?: Configuration) => {
|
|
9347
|
+
/**
|
|
9348
|
+
* Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
9349
|
+
* @summary Plan Collision-Free Trajectory
|
|
9350
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9351
|
+
* @param {PlanCollisionFreeRequest} [planCollisionFreeRequest]
|
|
9352
|
+
* @param {*} [options] Override http request option.
|
|
9353
|
+
* @throws {RequiredError}
|
|
9354
|
+
*/
|
|
9355
|
+
planCollisionFree(cell: string, planCollisionFreeRequest?: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlanCollisionFreeResponse>>;
|
|
8070
9356
|
/**
|
|
8071
9357
|
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the [PlanTrajectoryResponse](PlanTrajectoryResponse) will contain the joint trajectory up until the error, e.g. all samples until a collision occurs. EXCEPTION: If a CartesianPTP or JointPTP motion command has an invalid target, the response will contain the trajectory up until the start of the invalid PTP motion.
|
|
8072
9358
|
* @summary Plan Trajectory
|
|
@@ -8082,6 +9368,15 @@ export declare const TrajectoryPlanningApiFp: (configuration?: Configuration) =>
|
|
|
8082
9368
|
* @export
|
|
8083
9369
|
*/
|
|
8084
9370
|
export declare const TrajectoryPlanningApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
9371
|
+
/**
|
|
9372
|
+
* Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
9373
|
+
* @summary Plan Collision-Free Trajectory
|
|
9374
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9375
|
+
* @param {PlanCollisionFreeRequest} [planCollisionFreeRequest]
|
|
9376
|
+
* @param {*} [options] Override http request option.
|
|
9377
|
+
* @throws {RequiredError}
|
|
9378
|
+
*/
|
|
9379
|
+
planCollisionFree(cell: string, planCollisionFreeRequest?: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): AxiosPromise<PlanCollisionFreeResponse>;
|
|
8085
9380
|
/**
|
|
8086
9381
|
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the [PlanTrajectoryResponse](PlanTrajectoryResponse) will contain the joint trajectory up until the error, e.g. all samples until a collision occurs. EXCEPTION: If a CartesianPTP or JointPTP motion command has an invalid target, the response will contain the trajectory up until the start of the invalid PTP motion.
|
|
8087
9382
|
* @summary Plan Trajectory
|
|
@@ -8099,6 +9394,16 @@ export declare const TrajectoryPlanningApiFactory: (configuration?: Configuratio
|
|
|
8099
9394
|
* @extends {BaseAPI}
|
|
8100
9395
|
*/
|
|
8101
9396
|
export declare class TrajectoryPlanningApi extends BaseAPI {
|
|
9397
|
+
/**
|
|
9398
|
+
* Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
9399
|
+
* @summary Plan Collision-Free Trajectory
|
|
9400
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9401
|
+
* @param {PlanCollisionFreeRequest} [planCollisionFreeRequest]
|
|
9402
|
+
* @param {*} [options] Override http request option.
|
|
9403
|
+
* @throws {RequiredError}
|
|
9404
|
+
* @memberof TrajectoryPlanningApi
|
|
9405
|
+
*/
|
|
9406
|
+
planCollisionFree(cell: string, planCollisionFreeRequest?: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanCollisionFreeResponse, any>>;
|
|
8102
9407
|
/**
|
|
8103
9408
|
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](executeTrajectory) endpoint. If the trajectory is not executable, the [PlanTrajectoryResponse](PlanTrajectoryResponse) will contain the joint trajectory up until the error, e.g. all samples until a collision occurs. EXCEPTION: If a CartesianPTP or JointPTP motion command has an invalid target, the response will contain the trajectory up until the start of the invalid PTP motion.
|
|
8104
9409
|
* @summary Plan Trajectory
|