@wandelbots/nova-api 25.8.0-dev.82 → 25.8.0-dev.83

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wandelbots/nova-api",
3
- "version": "25.8.0-dev.82",
3
+ "version": "25.8.0-dev.83",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "files": [
6
6
  "*",
package/v2/api.d.ts CHANGED
@@ -1938,6 +1938,16 @@ export declare const IOIntegerValueValueTypeEnum: {
1938
1938
  readonly Integer: "integer";
1939
1939
  };
1940
1940
  export type IOIntegerValueValueTypeEnum = typeof IOIntegerValueValueTypeEnum[keyof typeof IOIntegerValueValueTypeEnum];
1941
+ /**
1942
+ * States the source of the input/output signal.
1943
+ * @export
1944
+ * @enum {string}
1945
+ */
1946
+ export declare const IOOrigin: {
1947
+ readonly Controller: "CONTROLLER";
1948
+ readonly BusIo: "BUS_IO";
1949
+ };
1950
+ export type IOOrigin = typeof IOOrigin[keyof typeof IOOrigin];
1941
1951
  /**
1942
1952
  * @type IOValue
1943
1953
  * @export
@@ -3614,6 +3624,12 @@ export interface PauseOnIO {
3614
3624
  * @memberof PauseOnIO
3615
3625
  */
3616
3626
  'comparator': Comparator;
3627
+ /**
3628
+ *
3629
+ * @type {IOOrigin}
3630
+ * @memberof PauseOnIO
3631
+ */
3632
+ 'io_origin': IOOrigin;
3617
3633
  }
3618
3634
  /**
3619
3635
  *
@@ -4733,6 +4749,12 @@ export interface SetIO {
4733
4749
  * @memberof SetIO
4734
4750
  */
4735
4751
  'location': number;
4752
+ /**
4753
+ *
4754
+ * @type {IOOrigin}
4755
+ * @memberof SetIO
4756
+ */
4757
+ 'io_origin': IOOrigin;
4736
4758
  }
4737
4759
  /**
4738
4760
  *
@@ -4860,6 +4882,12 @@ export interface StartOnIO {
4860
4882
  * @memberof StartOnIO
4861
4883
  */
4862
4884
  'comparator': Comparator;
4885
+ /**
4886
+ *
4887
+ * @type {IOOrigin}
4888
+ * @memberof StartOnIO
4889
+ */
4890
+ 'io_origin': IOOrigin;
4863
4891
  }
4864
4892
  /**
4865
4893
  * Array of input/output values.
package/v2/api.js CHANGED
@@ -151,6 +151,15 @@ export const IOFloatValueValueTypeEnum = {
151
151
  export const IOIntegerValueValueTypeEnum = {
152
152
  Integer: 'integer'
153
153
  };
154
+ /**
155
+ * States the source of the input/output signal.
156
+ * @export
157
+ * @enum {string}
158
+ */
159
+ export const IOOrigin = {
160
+ Controller: 'CONTROLLER',
161
+ BusIo: 'BUS_IO'
162
+ };
154
163
  /**
155
164
  * Data type of the input/output.
156
165
  * @export