@wandelbots/nova-api 25.6.0-dev.17 → 25.6.0-dev.19
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/v2/api.d.ts +30 -12
- package/v2/api.js +4 -4
- package/v2/api.js.map +1 -1
- package/v2/api.ts +30 -12
package/v2/api.ts
CHANGED
|
@@ -295,7 +295,7 @@ export interface BooleanValue {
|
|
|
295
295
|
* @type {boolean}
|
|
296
296
|
* @memberof BooleanValue
|
|
297
297
|
*/
|
|
298
|
-
'
|
|
298
|
+
'value': boolean;
|
|
299
299
|
/**
|
|
300
300
|
*
|
|
301
301
|
* @type {string}
|
|
@@ -1366,7 +1366,7 @@ export interface Flag {
|
|
|
1366
1366
|
'active': boolean;
|
|
1367
1367
|
}
|
|
1368
1368
|
/**
|
|
1369
|
-
*
|
|
1369
|
+
*
|
|
1370
1370
|
* @export
|
|
1371
1371
|
* @interface FloatValue
|
|
1372
1372
|
*/
|
|
@@ -1376,9 +1376,9 @@ export interface FloatValue {
|
|
|
1376
1376
|
* @type {number}
|
|
1377
1377
|
* @memberof FloatValue
|
|
1378
1378
|
*/
|
|
1379
|
-
'
|
|
1379
|
+
'value': number;
|
|
1380
1380
|
/**
|
|
1381
|
-
*
|
|
1381
|
+
* Input/Output floating number representation.
|
|
1382
1382
|
* @type {string}
|
|
1383
1383
|
* @memberof FloatValue
|
|
1384
1384
|
*/
|
|
@@ -1500,7 +1500,7 @@ export interface IOBooleanValue {
|
|
|
1500
1500
|
* @type {boolean}
|
|
1501
1501
|
* @memberof IOBooleanValue
|
|
1502
1502
|
*/
|
|
1503
|
-
'
|
|
1503
|
+
'value': boolean;
|
|
1504
1504
|
/**
|
|
1505
1505
|
*
|
|
1506
1506
|
* @type {string}
|
|
@@ -1609,7 +1609,7 @@ export interface IOFloatValue {
|
|
|
1609
1609
|
* @type {number}
|
|
1610
1610
|
* @memberof IOFloatValue
|
|
1611
1611
|
*/
|
|
1612
|
-
'
|
|
1612
|
+
'value': number;
|
|
1613
1613
|
/**
|
|
1614
1614
|
*
|
|
1615
1615
|
* @type {string}
|
|
@@ -1641,7 +1641,7 @@ export interface IOIntegerValue {
|
|
|
1641
1641
|
* @type {string}
|
|
1642
1642
|
* @memberof IOIntegerValue
|
|
1643
1643
|
*/
|
|
1644
|
-
'
|
|
1644
|
+
'value': string;
|
|
1645
1645
|
/**
|
|
1646
1646
|
*
|
|
1647
1647
|
* @type {string}
|
|
@@ -1916,7 +1916,7 @@ export interface IntegerValue {
|
|
|
1916
1916
|
* @type {string}
|
|
1917
1917
|
* @memberof IntegerValue
|
|
1918
1918
|
*/
|
|
1919
|
-
'
|
|
1919
|
+
'value': string;
|
|
1920
1920
|
/**
|
|
1921
1921
|
*
|
|
1922
1922
|
* @type {string}
|
|
@@ -3803,6 +3803,12 @@ export interface ProgramRun {
|
|
|
3803
3803
|
* @memberof ProgramRun
|
|
3804
3804
|
*/
|
|
3805
3805
|
'execution_results'?: Array<Array<MotionState>>;
|
|
3806
|
+
/**
|
|
3807
|
+
* Result of the executed program. Content depends on the program type.
|
|
3808
|
+
* @type {object}
|
|
3809
|
+
* @memberof ProgramRun
|
|
3810
|
+
*/
|
|
3811
|
+
'result'?: object;
|
|
3806
3812
|
}
|
|
3807
3813
|
|
|
3808
3814
|
|
|
@@ -4588,6 +4594,18 @@ export interface StreamIOValuesResponse {
|
|
|
4588
4594
|
* @memberof StreamIOValuesResponse
|
|
4589
4595
|
*/
|
|
4590
4596
|
'io_values': Array<IOValue>;
|
|
4597
|
+
/**
|
|
4598
|
+
* Timestamp indicating when the represented information was received from the robot controller.
|
|
4599
|
+
* @type {string}
|
|
4600
|
+
* @memberof StreamIOValuesResponse
|
|
4601
|
+
*/
|
|
4602
|
+
'timestamp': string;
|
|
4603
|
+
/**
|
|
4604
|
+
* Sequence number of the controller state. It starts with 0 upon establishing the connection with a physical controller. The sequence number is reset when the connection to the physical controller is closed and re-established.
|
|
4605
|
+
* @type {number}
|
|
4606
|
+
* @memberof StreamIOValuesResponse
|
|
4607
|
+
*/
|
|
4608
|
+
'sequence_number': number;
|
|
4591
4609
|
}
|
|
4592
4610
|
/**
|
|
4593
4611
|
*
|
|
@@ -7961,7 +7979,7 @@ export const ControllerInputsOutputsApiAxiosParamCreator = function (configurati
|
|
|
7961
7979
|
};
|
|
7962
7980
|
},
|
|
7963
7981
|
/**
|
|
7964
|
-
* Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The comparison_type value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the value_type of the input/output, see (listIODescriptions)[listIODescriptions] for more information. Examples: If you want to wait until an analog input (\"AI_1\") is less than 10, you would set io to \"AI_1\" comparison_type to COMPARISON_LESS and only
|
|
7982
|
+
* Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The comparison_type value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the value_type of the input/output, see (listIODescriptions)[listIODescriptions] for more information. Examples: If you want to wait until an analog input (\"AI_1\") is less than 10, you would set io to \"AI_1\" comparison_type to COMPARISON_LESS and only value to 10. If you want to wait until an analog input (\"AI_2\") is greater than 5.0, you would set io to \"AI_2\" comparison_type to COMPARISON_GREATER and only value to 5.0. If you want to wait until a digital input (\"DI_3\") is true, you would set io to \"DI_3\" comparison_type to COMPARISON_EQUAL and only value to true.
|
|
7965
7983
|
* @summary Wait For
|
|
7966
7984
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7967
7985
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -8086,7 +8104,7 @@ export const ControllerInputsOutputsApiFp = function(configuration?: Configurati
|
|
|
8086
8104
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8087
8105
|
},
|
|
8088
8106
|
/**
|
|
8089
|
-
* Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The comparison_type value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the value_type of the input/output, see (listIODescriptions)[listIODescriptions] for more information. Examples: If you want to wait until an analog input (\"AI_1\") is less than 10, you would set io to \"AI_1\" comparison_type to COMPARISON_LESS and only
|
|
8107
|
+
* Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The comparison_type value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the value_type of the input/output, see (listIODescriptions)[listIODescriptions] for more information. Examples: If you want to wait until an analog input (\"AI_1\") is less than 10, you would set io to \"AI_1\" comparison_type to COMPARISON_LESS and only value to 10. If you want to wait until an analog input (\"AI_2\") is greater than 5.0, you would set io to \"AI_2\" comparison_type to COMPARISON_GREATER and only value to 5.0. If you want to wait until a digital input (\"DI_3\") is true, you would set io to \"DI_3\" comparison_type to COMPARISON_EQUAL and only value to true.
|
|
8090
8108
|
* @summary Wait For
|
|
8091
8109
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8092
8110
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -8162,7 +8180,7 @@ export const ControllerInputsOutputsApiFactory = function (configuration?: Confi
|
|
|
8162
8180
|
return localVarFp.streamIOValues(cell, controller, ios, options).then((request) => request(axios, basePath));
|
|
8163
8181
|
},
|
|
8164
8182
|
/**
|
|
8165
|
-
* Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The comparison_type value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the value_type of the input/output, see (listIODescriptions)[listIODescriptions] for more information. Examples: If you want to wait until an analog input (\"AI_1\") is less than 10, you would set io to \"AI_1\" comparison_type to COMPARISON_LESS and only
|
|
8183
|
+
* Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The comparison_type value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the value_type of the input/output, see (listIODescriptions)[listIODescriptions] for more information. Examples: If you want to wait until an analog input (\"AI_1\") is less than 10, you would set io to \"AI_1\" comparison_type to COMPARISON_LESS and only value to 10. If you want to wait until an analog input (\"AI_2\") is greater than 5.0, you would set io to \"AI_2\" comparison_type to COMPARISON_GREATER and only value to 5.0. If you want to wait until a digital input (\"DI_3\") is true, you would set io to \"DI_3\" comparison_type to COMPARISON_EQUAL and only value to true.
|
|
8166
8184
|
* @summary Wait For
|
|
8167
8185
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8168
8186
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -8243,7 +8261,7 @@ export class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
8243
8261
|
}
|
|
8244
8262
|
|
|
8245
8263
|
/**
|
|
8246
|
-
* Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The comparison_type value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the value_type of the input/output, see (listIODescriptions)[listIODescriptions] for more information. Examples: If you want to wait until an analog input (\"AI_1\") is less than 10, you would set io to \"AI_1\" comparison_type to COMPARISON_LESS and only
|
|
8264
|
+
* Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The comparison_type value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the value_type of the input/output, see (listIODescriptions)[listIODescriptions] for more information. Examples: If you want to wait until an analog input (\"AI_1\") is less than 10, you would set io to \"AI_1\" comparison_type to COMPARISON_LESS and only value to 10. If you want to wait until an analog input (\"AI_2\") is greater than 5.0, you would set io to \"AI_2\" comparison_type to COMPARISON_GREATER and only value to 5.0. If you want to wait until a digital input (\"DI_3\") is true, you would set io to \"DI_3\" comparison_type to COMPARISON_EQUAL and only value to true.
|
|
8247
8265
|
* @summary Wait For
|
|
8248
8266
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8249
8267
|
* @param {string} controller Unique identifier to address a controller in the cell.
|