@wandelbots/nova-api 25.4.0-dev.2 → 25.4.0-dev.21

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.4.0-dev.2",
3
+ "version": "25.4.0-dev.21",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "files": [
6
6
  "*",
package/v2/api.d.ts CHANGED
@@ -228,6 +228,12 @@ export interface App {
228
228
  * @memberof App
229
229
  */
230
230
  'storage'?: ContainerStorage;
231
+ /**
232
+ * 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.
233
+ * @type {string}
234
+ * @memberof App
235
+ */
236
+ 'health_path'?: string;
231
237
  }
232
238
  /**
233
239
  *
@@ -870,6 +876,31 @@ export interface Compound {
870
876
  */
871
877
  'child_geometries': Array<Geometry>;
872
878
  }
879
+ /**
880
+ * Configuration resource object.
881
+ * @export
882
+ * @interface ConfigurationResource
883
+ */
884
+ export interface ConfigurationResource {
885
+ /**
886
+ * Identifier of a configuration resource.
887
+ * @type {string}
888
+ * @memberof ConfigurationResource
889
+ */
890
+ 'id': string;
891
+ /**
892
+ * Human-readable name of the configuration resource.
893
+ * @type {string}
894
+ * @memberof ConfigurationResource
895
+ */
896
+ 'name': string;
897
+ /**
898
+ * Array of configuration resources.
899
+ * @type {Array<ConfigurationResource>}
900
+ * @memberof ConfigurationResource
901
+ */
902
+ 'children'?: Array<ConfigurationResource>;
903
+ }
873
904
  /**
874
905
  *
875
906
  * @export
@@ -1327,6 +1358,19 @@ export declare const Direction: {
1327
1358
  readonly DirectionBackward: "DIRECTION_BACKWARD";
1328
1359
  };
1329
1360
  export type Direction = typeof Direction[keyof typeof Direction];
1361
+ /**
1362
+ *
1363
+ * @export
1364
+ * @interface Error2
1365
+ */
1366
+ export interface Error2 {
1367
+ /**
1368
+ *
1369
+ * @type {string}
1370
+ * @memberof Error2
1371
+ */
1372
+ 'message': string;
1373
+ }
1330
1374
  /**
1331
1375
  * @type ExecuteJoggingRequest
1332
1376
  * @export
@@ -1843,7 +1887,7 @@ export interface IODescription {
1843
1887
  * @type {IODirection}
1844
1888
  * @memberof IODescription
1845
1889
  */
1846
- 'direction'?: IODirection;
1890
+ 'direction': IODirection;
1847
1891
  /**
1848
1892
  *
1849
1893
  * @type {IOValueType}
@@ -3205,7 +3249,7 @@ export interface ModelError {
3205
3249
  * @type {string}
3206
3250
  * @memberof ModelError
3207
3251
  */
3208
- 'code': string;
3252
+ 'code'?: string;
3209
3253
  /**
3210
3254
  *
3211
3255
  * @type {string}
@@ -3250,7 +3294,7 @@ export type MotionCommandBlending = BlendingAuto | BlendingPosition;
3250
3294
  */
3251
3295
  export type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathJointPTP | PathLine;
3252
3296
  /**
3253
- * The data type describes the physically connected motion groups on a robot controller, e.g. a robot arm.
3297
+ * The data type describes the physically connected motion groups on a robot controller, e.g., a robot arm.
3254
3298
  * @export
3255
3299
  * @interface MotionGroup
3256
3300
  */
@@ -3274,11 +3318,17 @@ export interface MotionGroup {
3274
3318
  */
3275
3319
  'name_from_controller': string;
3276
3320
  /**
3277
- * The robot controller model if available. Usable for frontend 3D visualization.
3321
+ * The robot controller model, if available. Usable for frontend 3D visualization.
3278
3322
  * @type {string}
3279
3323
  * @memberof MotionGroup
3280
3324
  */
3281
3325
  'model_from_controller': string;
3326
+ /**
3327
+ * The serial number of the motion group, if available. If not available, the serial number of the robot controller. if available. If not available, then empty.
3328
+ * @type {string}
3329
+ * @memberof MotionGroup
3330
+ */
3331
+ 'serial_number'?: string;
3282
3332
  }
3283
3333
  /**
3284
3334
  *
@@ -3519,11 +3569,17 @@ export interface MotionGroupPhysical {
3519
3569
  */
3520
3570
  'active': boolean;
3521
3571
  /**
3522
- * The robot controller model if available. Usable for frontend 3D visualization.
3572
+ * The robot controller model, if available. Usable for frontend 3D visualization.
3523
3573
  * @type {string}
3524
3574
  * @memberof MotionGroupPhysical
3525
3575
  */
3526
3576
  'model_from_controller'?: string;
3577
+ /**
3578
+ * The serial number of the motion group, if available. If not available, the serial number of the robot controller. if available. If not available, the response is empty.
3579
+ * @type {string}
3580
+ * @memberof MotionGroupPhysical
3581
+ */
3582
+ 'serial_number'?: string;
3527
3583
  }
3528
3584
  /**
3529
3585
  * Holding static properties of the motion group.
@@ -3827,6 +3883,16 @@ export interface OpcuaNodeValueTriggerConfig {
3827
3883
  */
3828
3884
  export interface OpcuaNodeValueTriggerConfigNodeValue {
3829
3885
  }
3886
+ /**
3887
+ * The operating state.
3888
+ * @export
3889
+ * @enum {string}
3890
+ */
3891
+ export declare const OperatingState: {
3892
+ readonly Active: "ACTIVE";
3893
+ readonly Inactive: "INACTIVE";
3894
+ };
3895
+ export type OperatingState = typeof OperatingState[keyof typeof OperatingState];
3830
3896
  /**
3831
3897
  * Current operation mode of the configured robot controller. Operation modes in which the attached motion groups can be moved are: - OPERATION_MODE_MANUAL (if enabling switch is pressed) - OPERATION_MODE_MANUAL_T1 (if enabling switch is pressed) - OPERATION_MODE_MANUAL_T2 (if enabling switch is pressed) - OPERATION_MODE_AUTO (without needing to press enabling switch) All other modes are considered as non-operational.
3832
3898
  * @export
@@ -5305,6 +5371,25 @@ export declare const ServiceStatusPhase: {
5305
5371
  readonly Evicted: "Evicted";
5306
5372
  };
5307
5373
  export type ServiceStatusPhase = typeof ServiceStatusPhase[keyof typeof ServiceStatusPhase];
5374
+ /**
5375
+ * Response containing both the overall operating state of the cell and detailed status information for each service within the cell. The operating state indicates whether the cell is active or inactive, while the service statuses provide specific health and operational information for individual service running in the cell.
5376
+ * @export
5377
+ * @interface ServiceStatusResponse
5378
+ */
5379
+ export interface ServiceStatusResponse {
5380
+ /**
5381
+ *
5382
+ * @type {OperatingState}
5383
+ * @memberof ServiceStatusResponse
5384
+ */
5385
+ 'operating_state': OperatingState;
5386
+ /**
5387
+ *
5388
+ * @type {Array<ServiceStatus>}
5389
+ * @memberof ServiceStatusResponse
5390
+ */
5391
+ 'service_status': Array<ServiceStatus>;
5392
+ }
5308
5393
  /**
5309
5394
  *
5310
5395
  * @export
@@ -5556,25 +5641,6 @@ export interface StartOnIO {
5556
5641
  */
5557
5642
  'comparator': Comparator;
5558
5643
  }
5559
- /**
5560
- * The `Status` type defines a logical error model that is suitable for different programming environments including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `status` message contains two pieces of data: error code and error message. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
5561
- * @export
5562
- * @interface Status
5563
- */
5564
- export interface Status {
5565
- /**
5566
- * The status code, which should be an enum value of [google.rpc.Code](https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto).
5567
- * @type {number}
5568
- * @memberof Status
5569
- */
5570
- 'code'?: number;
5571
- /**
5572
- * An error message in English.
5573
- * @type {string}
5574
- * @memberof Status
5575
- */
5576
- 'message'?: string;
5577
- }
5578
5644
  /**
5579
5645
  *
5580
5646
  * @export
@@ -6569,6 +6635,15 @@ export declare const CellApiAxiosParamCreator: (configuration?: Configuration) =
6569
6635
  * @throws {RequiredError}
6570
6636
  */
6571
6637
  listCells: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6638
+ /**
6639
+ * Deactivate or activate the services of a cell.
6640
+ * @summary Operating State
6641
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6642
+ * @param {OperatingState} operatingState Set state of the cell. Active or inactive.
6643
+ * @param {*} [options] Override http request option.
6644
+ * @throws {RequiredError}
6645
+ */
6646
+ setCellStatus: (cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6572
6647
  /**
6573
6648
  * Update the definition of the entire Cell.
6574
6649
  * @summary Update Configuration
@@ -6618,7 +6693,7 @@ export declare const CellApiFp: (configuration?: Configuration) => {
6618
6693
  * @param {*} [options] Override http request option.
6619
6694
  * @throws {RequiredError}
6620
6695
  */
6621
- getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ServiceStatus>>>;
6696
+ getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceStatusResponse>>;
6622
6697
  /**
6623
6698
  * List all deployed cell names. If no cells are deployed, an empty list is returned.
6624
6699
  * @summary List Cells
@@ -6626,6 +6701,15 @@ export declare const CellApiFp: (configuration?: Configuration) => {
6626
6701
  * @throws {RequiredError}
6627
6702
  */
6628
6703
  listCells(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
6704
+ /**
6705
+ * Deactivate or activate the services of a cell.
6706
+ * @summary Operating State
6707
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6708
+ * @param {OperatingState} operatingState Set state of the cell. Active or inactive.
6709
+ * @param {*} [options] Override http request option.
6710
+ * @throws {RequiredError}
6711
+ */
6712
+ setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6629
6713
  /**
6630
6714
  * Update the definition of the entire Cell.
6631
6715
  * @summary Update Configuration
@@ -6675,7 +6759,7 @@ export declare const CellApiFactory: (configuration?: Configuration, basePath?:
6675
6759
  * @param {*} [options] Override http request option.
6676
6760
  * @throws {RequiredError}
6677
6761
  */
6678
- getCellStatus(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ServiceStatus>>;
6762
+ getCellStatus(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<ServiceStatusResponse>;
6679
6763
  /**
6680
6764
  * List all deployed cell names. If no cells are deployed, an empty list is returned.
6681
6765
  * @summary List Cells
@@ -6683,6 +6767,15 @@ export declare const CellApiFactory: (configuration?: Configuration, basePath?:
6683
6767
  * @throws {RequiredError}
6684
6768
  */
6685
6769
  listCells(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
6770
+ /**
6771
+ * Deactivate or activate the services of a cell.
6772
+ * @summary Operating State
6773
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6774
+ * @param {OperatingState} operatingState Set state of the cell. Active or inactive.
6775
+ * @param {*} [options] Override http request option.
6776
+ * @throws {RequiredError}
6777
+ */
6778
+ setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6686
6779
  /**
6687
6780
  * Update the definition of the entire Cell.
6688
6781
  * @summary Update Configuration
@@ -6738,7 +6831,7 @@ export declare class CellApi extends BaseAPI {
6738
6831
  * @throws {RequiredError}
6739
6832
  * @memberof CellApi
6740
6833
  */
6741
- getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceStatus[], any>>;
6834
+ getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceStatusResponse, any>>;
6742
6835
  /**
6743
6836
  * List all deployed cell names. If no cells are deployed, an empty list is returned.
6744
6837
  * @summary List Cells
@@ -6747,6 +6840,16 @@ export declare class CellApi extends BaseAPI {
6747
6840
  * @memberof CellApi
6748
6841
  */
6749
6842
  listCells(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any>>;
6843
+ /**
6844
+ * Deactivate or activate the services of a cell.
6845
+ * @summary Operating State
6846
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6847
+ * @param {OperatingState} operatingState Set state of the cell. Active or inactive.
6848
+ * @param {*} [options] Override http request option.
6849
+ * @throws {RequiredError}
6850
+ * @memberof CellApi
6851
+ */
6852
+ setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
6750
6853
  /**
6751
6854
  * Update the definition of the entire Cell.
6752
6855
  * @summary Update Configuration
@@ -10863,6 +10966,17 @@ export declare class StoreObjectApi extends BaseAPI {
10863
10966
  * @export
10864
10967
  */
10865
10968
  export declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
10969
+ /**
10970
+ * Retrieves a configuration backup based on provided resource identifiers.
10971
+ * @summary Retrieve Configuration Backup
10972
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
10973
+ * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
10974
+ * @param {*} [options] Override http request option.
10975
+ * @throws {RequiredError}
10976
+ */
10977
+ backupConfiguration: (resources: Array<string>, metadata?: {
10978
+ [key: string]: string;
10979
+ }, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10866
10980
  /**
10867
10981
  * Check if a more recent Wandelbots NOVA Version is available.
10868
10982
  * @summary Check update
@@ -10892,6 +11006,22 @@ export declare const SystemApiAxiosParamCreator: (configuration?: Configuration)
10892
11006
  * @throws {RequiredError}
10893
11007
  */
10894
11008
  getSystemVersion: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11009
+ /**
11010
+ * Retrieves a list of all available configuration resources for backup purposes.
11011
+ * @summary List Configuration Resources
11012
+ * @param {*} [options] Override http request option.
11013
+ * @throws {RequiredError}
11014
+ */
11015
+ listConfigurationResources: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11016
+ /**
11017
+ * Restores a previously backed up configuration.
11018
+ * @summary Restore Configuration Backup
11019
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
11020
+ * @param {File} body Backup file stream containing the configuration to restore.
11021
+ * @param {*} [options] Override http request option.
11022
+ * @throws {RequiredError}
11023
+ */
11024
+ restoreConfiguration: (resources: Array<string>, body: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10895
11025
  /**
10896
11026
  * Update the Wandelbots NOVA version and all attached services. Sending this API Request will trigger an update of all NOVA services that are part of a cell. Previous cells and cell configurations will remain on the instance. If the update fails, the previous Wandelbots NOVA version is restored.
10897
11027
  * @summary Update Wandelbots NOVA version
@@ -10906,6 +11036,17 @@ export declare const SystemApiAxiosParamCreator: (configuration?: Configuration)
10906
11036
  * @export
10907
11037
  */
10908
11038
  export declare const SystemApiFp: (configuration?: Configuration) => {
11039
+ /**
11040
+ * Retrieves a configuration backup based on provided resource identifiers.
11041
+ * @summary Retrieve Configuration Backup
11042
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
11043
+ * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
11044
+ * @param {*} [options] Override http request option.
11045
+ * @throws {RequiredError}
11046
+ */
11047
+ backupConfiguration(resources: Array<string>, metadata?: {
11048
+ [key: string]: string;
11049
+ }, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
10909
11050
  /**
10910
11051
  * Check if a more recent Wandelbots NOVA Version is available.
10911
11052
  * @summary Check update
@@ -10935,6 +11076,22 @@ export declare const SystemApiFp: (configuration?: Configuration) => {
10935
11076
  * @throws {RequiredError}
10936
11077
  */
10937
11078
  getSystemVersion(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
11079
+ /**
11080
+ * Retrieves a list of all available configuration resources for backup purposes.
11081
+ * @summary List Configuration Resources
11082
+ * @param {*} [options] Override http request option.
11083
+ * @throws {RequiredError}
11084
+ */
11085
+ listConfigurationResources(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigurationResource>>>;
11086
+ /**
11087
+ * Restores a previously backed up configuration.
11088
+ * @summary Restore Configuration Backup
11089
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
11090
+ * @param {File} body Backup file stream containing the configuration to restore.
11091
+ * @param {*} [options] Override http request option.
11092
+ * @throws {RequiredError}
11093
+ */
11094
+ restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
10938
11095
  /**
10939
11096
  * Update the Wandelbots NOVA version and all attached services. Sending this API Request will trigger an update of all NOVA services that are part of a cell. Previous cells and cell configurations will remain on the instance. If the update fails, the previous Wandelbots NOVA version is restored.
10940
11097
  * @summary Update Wandelbots NOVA version
@@ -10949,6 +11106,17 @@ export declare const SystemApiFp: (configuration?: Configuration) => {
10949
11106
  * @export
10950
11107
  */
10951
11108
  export declare const SystemApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
11109
+ /**
11110
+ * Retrieves a configuration backup based on provided resource identifiers.
11111
+ * @summary Retrieve Configuration Backup
11112
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
11113
+ * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
11114
+ * @param {*} [options] Override http request option.
11115
+ * @throws {RequiredError}
11116
+ */
11117
+ backupConfiguration(resources: Array<string>, metadata?: {
11118
+ [key: string]: string;
11119
+ }, options?: RawAxiosRequestConfig): AxiosPromise<File>;
10952
11120
  /**
10953
11121
  * Check if a more recent Wandelbots NOVA Version is available.
10954
11122
  * @summary Check update
@@ -10978,6 +11146,22 @@ export declare const SystemApiFactory: (configuration?: Configuration, basePath?
10978
11146
  * @throws {RequiredError}
10979
11147
  */
10980
11148
  getSystemVersion(options?: RawAxiosRequestConfig): AxiosPromise<string>;
11149
+ /**
11150
+ * Retrieves a list of all available configuration resources for backup purposes.
11151
+ * @summary List Configuration Resources
11152
+ * @param {*} [options] Override http request option.
11153
+ * @throws {RequiredError}
11154
+ */
11155
+ listConfigurationResources(options?: RawAxiosRequestConfig): AxiosPromise<Array<ConfigurationResource>>;
11156
+ /**
11157
+ * Restores a previously backed up configuration.
11158
+ * @summary Restore Configuration Backup
11159
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
11160
+ * @param {File} body Backup file stream containing the configuration to restore.
11161
+ * @param {*} [options] Override http request option.
11162
+ * @throws {RequiredError}
11163
+ */
11164
+ restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10981
11165
  /**
10982
11166
  * Update the Wandelbots NOVA version and all attached services. Sending this API Request will trigger an update of all NOVA services that are part of a cell. Previous cells and cell configurations will remain on the instance. If the update fails, the previous Wandelbots NOVA version is restored.
10983
11167
  * @summary Update Wandelbots NOVA version
@@ -10994,6 +11178,18 @@ export declare const SystemApiFactory: (configuration?: Configuration, basePath?
10994
11178
  * @extends {BaseAPI}
10995
11179
  */
10996
11180
  export declare class SystemApi extends BaseAPI {
11181
+ /**
11182
+ * Retrieves a configuration backup based on provided resource identifiers.
11183
+ * @summary Retrieve Configuration Backup
11184
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
11185
+ * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
11186
+ * @param {*} [options] Override http request option.
11187
+ * @throws {RequiredError}
11188
+ * @memberof SystemApi
11189
+ */
11190
+ backupConfiguration(resources: Array<string>, metadata?: {
11191
+ [key: string]: string;
11192
+ }, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
10997
11193
  /**
10998
11194
  * Check if a more recent Wandelbots NOVA Version is available.
10999
11195
  * @summary Check update
@@ -11027,6 +11223,24 @@ export declare class SystemApi extends BaseAPI {
11027
11223
  * @memberof SystemApi
11028
11224
  */
11029
11225
  getSystemVersion(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
11226
+ /**
11227
+ * Retrieves a list of all available configuration resources for backup purposes.
11228
+ * @summary List Configuration Resources
11229
+ * @param {*} [options] Override http request option.
11230
+ * @throws {RequiredError}
11231
+ * @memberof SystemApi
11232
+ */
11233
+ listConfigurationResources(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConfigurationResource[], any>>;
11234
+ /**
11235
+ * Restores a previously backed up configuration.
11236
+ * @summary Restore Configuration Backup
11237
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
11238
+ * @param {File} body Backup file stream containing the configuration to restore.
11239
+ * @param {*} [options] Override http request option.
11240
+ * @throws {RequiredError}
11241
+ * @memberof SystemApi
11242
+ */
11243
+ restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
11030
11244
  /**
11031
11245
  * Update the Wandelbots NOVA version and all attached services. Sending this API Request will trigger an update of all NOVA services that are part of a cell. Previous cells and cell configurations will remain on the instance. If the update fails, the previous Wandelbots NOVA version is restored.
11032
11246
  * @summary Update Wandelbots NOVA version