@wandelbots/nova-api 25.7.0-dev.33 → 25.7.0-dev.35
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 +8 -8
- package/v2/api.js +4 -6
- package/v2/api.js.map +1 -1
- package/v2/api.ts +8 -10
package/package.json
CHANGED
package/v2/api.d.ts
CHANGED
|
@@ -8685,12 +8685,12 @@ export declare const SystemApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8685
8685
|
/**
|
|
8686
8686
|
* Retrieves a configuration backup based on provided resource identifiers. If an empty array of resources is provided, a backup for all resources will be retrieved.
|
|
8687
8687
|
* @summary Retrieve Configuration Backup
|
|
8688
|
-
* @param {Array<string>} resources List of resource identifiers to
|
|
8688
|
+
* @param {Array<string>} [resources] List of resource identifiers to include in the retrieval.
|
|
8689
8689
|
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
8690
8690
|
* @param {*} [options] Override http request option.
|
|
8691
8691
|
* @throws {RequiredError}
|
|
8692
8692
|
*/
|
|
8693
|
-
backupConfiguration: (resources
|
|
8693
|
+
backupConfiguration: (resources?: Array<string>, metadata?: {
|
|
8694
8694
|
[key: string]: string;
|
|
8695
8695
|
}, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8696
8696
|
/**
|
|
@@ -8763,12 +8763,12 @@ export declare const SystemApiFp: (configuration?: Configuration) => {
|
|
|
8763
8763
|
/**
|
|
8764
8764
|
* Retrieves a configuration backup based on provided resource identifiers. If an empty array of resources is provided, a backup for all resources will be retrieved.
|
|
8765
8765
|
* @summary Retrieve Configuration Backup
|
|
8766
|
-
* @param {Array<string>} resources List of resource identifiers to
|
|
8766
|
+
* @param {Array<string>} [resources] List of resource identifiers to include in the retrieval.
|
|
8767
8767
|
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
8768
8768
|
* @param {*} [options] Override http request option.
|
|
8769
8769
|
* @throws {RequiredError}
|
|
8770
8770
|
*/
|
|
8771
|
-
backupConfiguration(resources
|
|
8771
|
+
backupConfiguration(resources?: Array<string>, metadata?: {
|
|
8772
8772
|
[key: string]: string;
|
|
8773
8773
|
}, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
8774
8774
|
/**
|
|
@@ -8841,12 +8841,12 @@ export declare const SystemApiFactory: (configuration?: Configuration, basePath?
|
|
|
8841
8841
|
/**
|
|
8842
8842
|
* Retrieves a configuration backup based on provided resource identifiers. If an empty array of resources is provided, a backup for all resources will be retrieved.
|
|
8843
8843
|
* @summary Retrieve Configuration Backup
|
|
8844
|
-
* @param {Array<string>} resources List of resource identifiers to
|
|
8844
|
+
* @param {Array<string>} [resources] List of resource identifiers to include in the retrieval.
|
|
8845
8845
|
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
8846
8846
|
* @param {*} [options] Override http request option.
|
|
8847
8847
|
* @throws {RequiredError}
|
|
8848
8848
|
*/
|
|
8849
|
-
backupConfiguration(resources
|
|
8849
|
+
backupConfiguration(resources?: Array<string>, metadata?: {
|
|
8850
8850
|
[key: string]: string;
|
|
8851
8851
|
}, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
8852
8852
|
/**
|
|
@@ -8921,13 +8921,13 @@ export declare class SystemApi extends BaseAPI {
|
|
|
8921
8921
|
/**
|
|
8922
8922
|
* Retrieves a configuration backup based on provided resource identifiers. If an empty array of resources is provided, a backup for all resources will be retrieved.
|
|
8923
8923
|
* @summary Retrieve Configuration Backup
|
|
8924
|
-
* @param {Array<string>} resources List of resource identifiers to
|
|
8924
|
+
* @param {Array<string>} [resources] List of resource identifiers to include in the retrieval.
|
|
8925
8925
|
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
8926
8926
|
* @param {*} [options] Override http request option.
|
|
8927
8927
|
* @throws {RequiredError}
|
|
8928
8928
|
* @memberof SystemApi
|
|
8929
8929
|
*/
|
|
8930
|
-
backupConfiguration(resources
|
|
8930
|
+
backupConfiguration(resources?: Array<string>, metadata?: {
|
|
8931
8931
|
[key: string]: string;
|
|
8932
8932
|
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
8933
8933
|
/**
|
package/v2/api.js
CHANGED
|
@@ -7235,14 +7235,12 @@ export const SystemApiAxiosParamCreator = function (configuration) {
|
|
|
7235
7235
|
/**
|
|
7236
7236
|
* Retrieves a configuration backup based on provided resource identifiers. If an empty array of resources is provided, a backup for all resources will be retrieved.
|
|
7237
7237
|
* @summary Retrieve Configuration Backup
|
|
7238
|
-
* @param {Array<string>} resources List of resource identifiers to
|
|
7238
|
+
* @param {Array<string>} [resources] List of resource identifiers to include in the retrieval.
|
|
7239
7239
|
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
7240
7240
|
* @param {*} [options] Override http request option.
|
|
7241
7241
|
* @throws {RequiredError}
|
|
7242
7242
|
*/
|
|
7243
7243
|
backupConfiguration: async (resources, metadata, options = {}) => {
|
|
7244
|
-
// verify required parameter 'resources' is not null or undefined
|
|
7245
|
-
assertParamExists('backupConfiguration', 'resources', resources);
|
|
7246
7244
|
const localVarPath = `/system/configuration`;
|
|
7247
7245
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7248
7246
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -7561,7 +7559,7 @@ export const SystemApiFp = function (configuration) {
|
|
|
7561
7559
|
/**
|
|
7562
7560
|
* Retrieves a configuration backup based on provided resource identifiers. If an empty array of resources is provided, a backup for all resources will be retrieved.
|
|
7563
7561
|
* @summary Retrieve Configuration Backup
|
|
7564
|
-
* @param {Array<string>} resources List of resource identifiers to
|
|
7562
|
+
* @param {Array<string>} [resources] List of resource identifiers to include in the retrieval.
|
|
7565
7563
|
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
7566
7564
|
* @param {*} [options] Override http request option.
|
|
7567
7565
|
* @throws {RequiredError}
|
|
@@ -7685,7 +7683,7 @@ export const SystemApiFactory = function (configuration, basePath, axios) {
|
|
|
7685
7683
|
/**
|
|
7686
7684
|
* Retrieves a configuration backup based on provided resource identifiers. If an empty array of resources is provided, a backup for all resources will be retrieved.
|
|
7687
7685
|
* @summary Retrieve Configuration Backup
|
|
7688
|
-
* @param {Array<string>} resources List of resource identifiers to
|
|
7686
|
+
* @param {Array<string>} [resources] List of resource identifiers to include in the retrieval.
|
|
7689
7687
|
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
7690
7688
|
* @param {*} [options] Override http request option.
|
|
7691
7689
|
* @throws {RequiredError}
|
|
@@ -7782,7 +7780,7 @@ export class SystemApi extends BaseAPI {
|
|
|
7782
7780
|
/**
|
|
7783
7781
|
* Retrieves a configuration backup based on provided resource identifiers. If an empty array of resources is provided, a backup for all resources will be retrieved.
|
|
7784
7782
|
* @summary Retrieve Configuration Backup
|
|
7785
|
-
* @param {Array<string>} resources List of resource identifiers to
|
|
7783
|
+
* @param {Array<string>} [resources] List of resource identifiers to include in the retrieval.
|
|
7786
7784
|
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
7787
7785
|
* @param {*} [options] Override http request option.
|
|
7788
7786
|
* @throws {RequiredError}
|