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

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/v2/api.ts CHANGED
@@ -2024,6 +2024,20 @@ export const IOIntegerValueValueTypeEnum = {
2024
2024
 
2025
2025
  export type IOIntegerValueValueTypeEnum = typeof IOIntegerValueValueTypeEnum[keyof typeof IOIntegerValueValueTypeEnum];
2026
2026
 
2027
+ /**
2028
+ * States the source of the input/output signal.
2029
+ * @export
2030
+ * @enum {string}
2031
+ */
2032
+
2033
+ export const IOOrigin = {
2034
+ Controller: 'CONTROLLER',
2035
+ BusIo: 'BUS_IO'
2036
+ } as const;
2037
+
2038
+ export type IOOrigin = typeof IOOrigin[keyof typeof IOOrigin];
2039
+
2040
+
2027
2041
  /**
2028
2042
  * @type IOValue
2029
2043
  * @export
@@ -3765,6 +3779,12 @@ export interface PauseOnIO {
3765
3779
  * @memberof PauseOnIO
3766
3780
  */
3767
3781
  'comparator': Comparator;
3782
+ /**
3783
+ *
3784
+ * @type {IOOrigin}
3785
+ * @memberof PauseOnIO
3786
+ */
3787
+ 'io_origin': IOOrigin;
3768
3788
  }
3769
3789
 
3770
3790
 
@@ -4955,7 +4975,15 @@ export interface SetIO {
4955
4975
  * @memberof SetIO
4956
4976
  */
4957
4977
  'location': number;
4978
+ /**
4979
+ *
4980
+ * @type {IOOrigin}
4981
+ * @memberof SetIO
4982
+ */
4983
+ 'io_origin': IOOrigin;
4958
4984
  }
4985
+
4986
+
4959
4987
  /**
4960
4988
  *
4961
4989
  * @export
@@ -5099,6 +5127,12 @@ export interface StartOnIO {
5099
5127
  * @memberof StartOnIO
5100
5128
  */
5101
5129
  'comparator': Comparator;
5130
+ /**
5131
+ *
5132
+ * @type {IOOrigin}
5133
+ * @memberof StartOnIO
5134
+ */
5135
+ 'io_origin': IOOrigin;
5102
5136
  }
5103
5137
 
5104
5138