@wandelbots/nova-api 25.7.0-dev.27 → 25.7.0-dev.29
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 +3 -0
- package/v1/api.js +3 -0
- package/v1/api.js.map +1 -1
- package/v1/api.ts +3 -0
- package/v2/api.d.ts +33 -65
- package/v2/api.js +26 -93
- package/v2/api.js.map +1 -1
- package/v2/api.ts +40 -117
package/v2/api.ts
CHANGED
|
@@ -1724,21 +1724,6 @@ export interface ForwardKinematicsValidationError {
|
|
|
1724
1724
|
*/
|
|
1725
1725
|
'data'?: ErrorInvalidJointCount;
|
|
1726
1726
|
}
|
|
1727
|
-
/**
|
|
1728
|
-
*
|
|
1729
|
-
* @export
|
|
1730
|
-
* @interface GetModeResponse
|
|
1731
|
-
*/
|
|
1732
|
-
export interface GetModeResponse {
|
|
1733
|
-
/**
|
|
1734
|
-
*
|
|
1735
|
-
* @type {RobotSystemMode}
|
|
1736
|
-
* @memberof GetModeResponse
|
|
1737
|
-
*/
|
|
1738
|
-
'robot_system_mode': RobotSystemMode;
|
|
1739
|
-
}
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
1727
|
/**
|
|
1743
1728
|
*
|
|
1744
1729
|
* @export
|
|
@@ -4423,6 +4408,18 @@ export type RobotControllerConfiguration = AbbController | FanucController | Kuk
|
|
|
4423
4408
|
* @interface RobotControllerState
|
|
4424
4409
|
*/
|
|
4425
4410
|
export interface RobotControllerState {
|
|
4411
|
+
/**
|
|
4412
|
+
* Mode of communication and control between NOVA and the robot controller.
|
|
4413
|
+
* @type {RobotSystemMode}
|
|
4414
|
+
* @memberof RobotControllerState
|
|
4415
|
+
*/
|
|
4416
|
+
'mode': RobotSystemMode;
|
|
4417
|
+
/**
|
|
4418
|
+
* 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.
|
|
4419
|
+
* @type {Array<string>}
|
|
4420
|
+
* @memberof RobotControllerState
|
|
4421
|
+
*/
|
|
4422
|
+
'last_error'?: Array<string>;
|
|
4426
4423
|
/**
|
|
4427
4424
|
* Timestamp indicating when the represented information was received from the robot controller.
|
|
4428
4425
|
* @type {string}
|
|
@@ -4469,17 +4466,17 @@ export interface RobotControllerState {
|
|
|
4469
4466
|
|
|
4470
4467
|
|
|
4471
4468
|
/**
|
|
4472
|
-
*
|
|
4469
|
+
* 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.
|
|
4473
4470
|
* @export
|
|
4474
4471
|
* @enum {string}
|
|
4475
4472
|
*/
|
|
4476
4473
|
|
|
4477
4474
|
export const RobotSystemMode = {
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
|
|
4481
|
-
|
|
4482
|
-
|
|
4475
|
+
ModeControllerNotConfigured: 'MODE_CONTROLLER_NOT_CONFIGURED',
|
|
4476
|
+
ModeInitializing: 'MODE_INITIALIZING',
|
|
4477
|
+
ModeMonitor: 'MODE_MONITOR',
|
|
4478
|
+
ModeControl: 'MODE_CONTROL',
|
|
4479
|
+
ModeFreeDrive: 'MODE_FREE_DRIVE'
|
|
4483
4480
|
} as const;
|
|
4484
4481
|
|
|
4485
4482
|
export type RobotSystemMode = typeof RobotSystemMode[keyof typeof RobotSystemMode];
|
|
@@ -5365,7 +5362,7 @@ export interface VirtualController {
|
|
|
5365
5362
|
* @type {string}
|
|
5366
5363
|
* @memberof VirtualController
|
|
5367
5364
|
*/
|
|
5368
|
-
'
|
|
5365
|
+
'initial_joint_position'?: string;
|
|
5369
5366
|
}
|
|
5370
5367
|
|
|
5371
5368
|
export const VirtualControllerKindEnum = {
|
|
@@ -5415,6 +5412,7 @@ export const VirtualControllerTypes = {
|
|
|
5415
5412
|
FanucCrx20ial: 'fanuc-crx20ial',
|
|
5416
5413
|
FanucCrx25ia: 'fanuc-crx25ia',
|
|
5417
5414
|
FanucCrx30ia: 'fanuc-crx30ia',
|
|
5415
|
+
FanucCrx5ia: 'fanuc-crx5ia',
|
|
5418
5416
|
FanucLrMate200iD: 'fanuc-lr_mate_200iD',
|
|
5419
5417
|
FanucLrMate200iD4S: 'fanuc-lr_mate_200iD4S',
|
|
5420
5418
|
FanucLrMate200iD7L: 'fanuc-lr_mate_200iD7L',
|
|
@@ -5422,6 +5420,7 @@ export const VirtualControllerTypes = {
|
|
|
5422
5420
|
FanucM10iD16S: 'fanuc-m10iD16S',
|
|
5423
5421
|
FanucM20iD25: 'fanuc-m20iD25',
|
|
5424
5422
|
FanucM20iD35: 'fanuc-m20iD35',
|
|
5423
|
+
FanucM710iC20L: 'fanuc-m710iC20L',
|
|
5425
5424
|
FanucM900iB280L: 'fanuc-m900iB280L',
|
|
5426
5425
|
FanucM900iB360E: 'fanuc-m900iB360E',
|
|
5427
5426
|
FanucR2000ic125l: 'fanuc-r2000ic125l',
|
|
@@ -8173,52 +8172,6 @@ export const ControllerApiAxiosParamCreator = function (configuration?: Configur
|
|
|
8173
8172
|
|
|
8174
8173
|
|
|
8175
8174
|
|
|
8176
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8177
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8178
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
8179
|
-
|
|
8180
|
-
return {
|
|
8181
|
-
url: toPathString(localVarUrlObj),
|
|
8182
|
-
options: localVarRequestOptions,
|
|
8183
|
-
};
|
|
8184
|
-
},
|
|
8185
|
-
/**
|
|
8186
|
-
* 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).
|
|
8187
|
-
* @summary Current Mode
|
|
8188
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8189
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
8190
|
-
* @param {*} [options] Override http request option.
|
|
8191
|
-
* @throws {RequiredError}
|
|
8192
|
-
*/
|
|
8193
|
-
getMode: async (cell: string, controller: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
8194
|
-
// verify required parameter 'cell' is not null or undefined
|
|
8195
|
-
assertParamExists('getMode', 'cell', cell)
|
|
8196
|
-
// verify required parameter 'controller' is not null or undefined
|
|
8197
|
-
assertParamExists('getMode', 'controller', controller)
|
|
8198
|
-
const localVarPath = `/cells/{cell}/controllers/{controller}/mode`
|
|
8199
|
-
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
8200
|
-
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
8201
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
8202
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
8203
|
-
let baseOptions;
|
|
8204
|
-
if (configuration) {
|
|
8205
|
-
baseOptions = configuration.baseOptions;
|
|
8206
|
-
}
|
|
8207
|
-
|
|
8208
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
8209
|
-
const localVarHeaderParameter = {} as any;
|
|
8210
|
-
const localVarQueryParameter = {} as any;
|
|
8211
|
-
|
|
8212
|
-
// authentication BasicAuth required
|
|
8213
|
-
// http basic authentication required
|
|
8214
|
-
setBasicAuthToObject(localVarRequestOptions, configuration)
|
|
8215
|
-
|
|
8216
|
-
// authentication BearerAuth required
|
|
8217
|
-
// http bearer authentication required
|
|
8218
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
8219
|
-
|
|
8220
|
-
|
|
8221
|
-
|
|
8222
8175
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8223
8176
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8224
8177
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -8518,15 +8471,16 @@ export const ControllerApiAxiosParamCreator = function (configuration?: Configur
|
|
|
8518
8471
|
};
|
|
8519
8472
|
},
|
|
8520
8473
|
/**
|
|
8521
|
-
* <!-- theme: danger --> > Websocket endpoint Receive updates of the state of a robot controller.
|
|
8474
|
+
* <!-- 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.
|
|
8522
8475
|
* @summary Stream State
|
|
8523
8476
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8524
8477
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
8525
8478
|
* @param {number} [responseRate]
|
|
8479
|
+
* @param {number} [addControllerTimeout]
|
|
8526
8480
|
* @param {*} [options] Override http request option.
|
|
8527
8481
|
* @throws {RequiredError}
|
|
8528
8482
|
*/
|
|
8529
|
-
streamRobotControllerState: async (cell: string, controller: string, responseRate?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
8483
|
+
streamRobotControllerState: async (cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
8530
8484
|
// verify required parameter 'cell' is not null or undefined
|
|
8531
8485
|
assertParamExists('streamRobotControllerState', 'cell', cell)
|
|
8532
8486
|
// verify required parameter 'controller' is not null or undefined
|
|
@@ -8557,6 +8511,10 @@ export const ControllerApiAxiosParamCreator = function (configuration?: Configur
|
|
|
8557
8511
|
localVarQueryParameter['response_rate'] = responseRate;
|
|
8558
8512
|
}
|
|
8559
8513
|
|
|
8514
|
+
if (addControllerTimeout !== undefined) {
|
|
8515
|
+
localVarQueryParameter['add_controller_timeout'] = addControllerTimeout;
|
|
8516
|
+
}
|
|
8517
|
+
|
|
8560
8518
|
|
|
8561
8519
|
|
|
8562
8520
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -8723,20 +8681,6 @@ export const ControllerApiFp = function(configuration?: Configuration) {
|
|
|
8723
8681
|
const localVarOperationServerBasePath = operationServerMap['ControllerApi.getCurrentRobotControllerState']?.[localVarOperationServerIndex]?.url;
|
|
8724
8682
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8725
8683
|
},
|
|
8726
|
-
/**
|
|
8727
|
-
* 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).
|
|
8728
|
-
* @summary Current Mode
|
|
8729
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8730
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
8731
|
-
* @param {*} [options] Override http request option.
|
|
8732
|
-
* @throws {RequiredError}
|
|
8733
|
-
*/
|
|
8734
|
-
async getMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetModeResponse>> {
|
|
8735
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getMode(cell, controller, options);
|
|
8736
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8737
|
-
const localVarOperationServerBasePath = operationServerMap['ControllerApi.getMode']?.[localVarOperationServerIndex]?.url;
|
|
8738
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8739
|
-
},
|
|
8740
8684
|
/**
|
|
8741
8685
|
* Get the configuration for a robot controller.
|
|
8742
8686
|
* @summary Robot Controller
|
|
@@ -8824,16 +8768,17 @@ export const ControllerApiFp = function(configuration?: Configuration) {
|
|
|
8824
8768
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8825
8769
|
},
|
|
8826
8770
|
/**
|
|
8827
|
-
* <!-- theme: danger --> > Websocket endpoint Receive updates of the state of a robot controller.
|
|
8771
|
+
* <!-- 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.
|
|
8828
8772
|
* @summary Stream State
|
|
8829
8773
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8830
8774
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
8831
8775
|
* @param {number} [responseRate]
|
|
8776
|
+
* @param {number} [addControllerTimeout]
|
|
8832
8777
|
* @param {*} [options] Override http request option.
|
|
8833
8778
|
* @throws {RequiredError}
|
|
8834
8779
|
*/
|
|
8835
|
-
async streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RobotControllerState>> {
|
|
8836
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.streamRobotControllerState(cell, controller, responseRate, options);
|
|
8780
|
+
async streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RobotControllerState>> {
|
|
8781
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options);
|
|
8837
8782
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8838
8783
|
const localVarOperationServerBasePath = operationServerMap['ControllerApi.streamRobotControllerState']?.[localVarOperationServerIndex]?.url;
|
|
8839
8784
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -8934,17 +8879,6 @@ export const ControllerApiFactory = function (configuration?: Configuration, bas
|
|
|
8934
8879
|
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<RobotControllerState> {
|
|
8935
8880
|
return localVarFp.getCurrentRobotControllerState(cell, controller, options).then((request) => request(axios, basePath));
|
|
8936
8881
|
},
|
|
8937
|
-
/**
|
|
8938
|
-
* 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).
|
|
8939
|
-
* @summary Current Mode
|
|
8940
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8941
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
8942
|
-
* @param {*} [options] Override http request option.
|
|
8943
|
-
* @throws {RequiredError}
|
|
8944
|
-
*/
|
|
8945
|
-
getMode(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<GetModeResponse> {
|
|
8946
|
-
return localVarFp.getMode(cell, controller, options).then((request) => request(axios, basePath));
|
|
8947
|
-
},
|
|
8948
8882
|
/**
|
|
8949
8883
|
* Get the configuration for a robot controller.
|
|
8950
8884
|
* @summary Robot Controller
|
|
@@ -9014,16 +8948,17 @@ export const ControllerApiFactory = function (configuration?: Configuration, bas
|
|
|
9014
8948
|
return localVarFp.streamFreeDrive(cell, controller, responseRate, options).then((request) => request(axios, basePath));
|
|
9015
8949
|
},
|
|
9016
8950
|
/**
|
|
9017
|
-
* <!-- theme: danger --> > Websocket endpoint Receive updates of the state of a robot controller.
|
|
8951
|
+
* <!-- 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.
|
|
9018
8952
|
* @summary Stream State
|
|
9019
8953
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9020
8954
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
9021
8955
|
* @param {number} [responseRate]
|
|
8956
|
+
* @param {number} [addControllerTimeout]
|
|
9022
8957
|
* @param {*} [options] Override http request option.
|
|
9023
8958
|
* @throws {RequiredError}
|
|
9024
8959
|
*/
|
|
9025
|
-
streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): AxiosPromise<RobotControllerState> {
|
|
9026
|
-
return localVarFp.streamRobotControllerState(cell, controller, responseRate, options).then((request) => request(axios, basePath));
|
|
8960
|
+
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<RobotControllerState> {
|
|
8961
|
+
return localVarFp.streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options).then((request) => request(axios, basePath));
|
|
9027
8962
|
},
|
|
9028
8963
|
/**
|
|
9029
8964
|
* 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.
|
|
@@ -9130,19 +9065,6 @@ export class ControllerApi extends BaseAPI {
|
|
|
9130
9065
|
return ControllerApiFp(this.configuration).getCurrentRobotControllerState(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
9131
9066
|
}
|
|
9132
9067
|
|
|
9133
|
-
/**
|
|
9134
|
-
* 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).
|
|
9135
|
-
* @summary Current Mode
|
|
9136
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9137
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
9138
|
-
* @param {*} [options] Override http request option.
|
|
9139
|
-
* @throws {RequiredError}
|
|
9140
|
-
* @memberof ControllerApi
|
|
9141
|
-
*/
|
|
9142
|
-
public getMode(cell: string, controller: string, options?: RawAxiosRequestConfig) {
|
|
9143
|
-
return ControllerApiFp(this.configuration).getMode(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
9144
|
-
}
|
|
9145
|
-
|
|
9146
9068
|
/**
|
|
9147
9069
|
* Get the configuration for a robot controller.
|
|
9148
9070
|
* @summary Robot Controller
|
|
@@ -9224,17 +9146,18 @@ export class ControllerApi extends BaseAPI {
|
|
|
9224
9146
|
}
|
|
9225
9147
|
|
|
9226
9148
|
/**
|
|
9227
|
-
* <!-- theme: danger --> > Websocket endpoint Receive updates of the state of a robot controller.
|
|
9149
|
+
* <!-- 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.
|
|
9228
9150
|
* @summary Stream State
|
|
9229
9151
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9230
9152
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
9231
9153
|
* @param {number} [responseRate]
|
|
9154
|
+
* @param {number} [addControllerTimeout]
|
|
9232
9155
|
* @param {*} [options] Override http request option.
|
|
9233
9156
|
* @throws {RequiredError}
|
|
9234
9157
|
* @memberof ControllerApi
|
|
9235
9158
|
*/
|
|
9236
|
-
public streamRobotControllerState(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig) {
|
|
9237
|
-
return ControllerApiFp(this.configuration).streamRobotControllerState(cell, controller, responseRate, options).then((request) => request(this.axios, this.basePath));
|
|
9159
|
+
public streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig) {
|
|
9160
|
+
return ControllerApiFp(this.configuration).streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
9238
9161
|
}
|
|
9239
9162
|
|
|
9240
9163
|
/**
|