@wandelbots/nova-api 25.7.0-dev.32 → 25.7.0-dev.34
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 +12 -12
- package/v2/api.js +8 -10
- package/v2/api.js.map +1 -1
- package/v2/api.ts +12 -14
package/package.json
CHANGED
package/v2/api.d.ts
CHANGED
|
@@ -8683,14 +8683,14 @@ export declare class StoreObjectApi extends BaseAPI {
|
|
|
8683
8683
|
*/
|
|
8684
8684
|
export declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
8685
8685
|
/**
|
|
8686
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
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
|
/**
|
|
@@ -8761,14 +8761,14 @@ export declare const SystemApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8761
8761
|
*/
|
|
8762
8762
|
export declare const SystemApiFp: (configuration?: Configuration) => {
|
|
8763
8763
|
/**
|
|
8764
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
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
|
/**
|
|
@@ -8839,14 +8839,14 @@ export declare const SystemApiFp: (configuration?: Configuration) => {
|
|
|
8839
8839
|
*/
|
|
8840
8840
|
export declare const SystemApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8841
8841
|
/**
|
|
8842
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
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
|
/**
|
|
@@ -8919,15 +8919,15 @@ export declare const SystemApiFactory: (configuration?: Configuration, basePath?
|
|
|
8919
8919
|
*/
|
|
8920
8920
|
export declare class SystemApi extends BaseAPI {
|
|
8921
8921
|
/**
|
|
8922
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
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
|
@@ -7233,16 +7233,14 @@ export class StoreObjectApi extends BaseAPI {
|
|
|
7233
7233
|
export const SystemApiAxiosParamCreator = function (configuration) {
|
|
7234
7234
|
return {
|
|
7235
7235
|
/**
|
|
7236
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
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);
|
|
@@ -7559,9 +7557,9 @@ export const SystemApiFp = function (configuration) {
|
|
|
7559
7557
|
const localVarAxiosParamCreator = SystemApiAxiosParamCreator(configuration);
|
|
7560
7558
|
return {
|
|
7561
7559
|
/**
|
|
7562
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
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}
|
|
@@ -7683,9 +7681,9 @@ export const SystemApiFactory = function (configuration, basePath, axios) {
|
|
|
7683
7681
|
const localVarFp = SystemApiFp(configuration);
|
|
7684
7682
|
return {
|
|
7685
7683
|
/**
|
|
7686
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
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}
|
|
@@ -7780,9 +7778,9 @@ export const SystemApiFactory = function (configuration, basePath, axios) {
|
|
|
7780
7778
|
*/
|
|
7781
7779
|
export class SystemApi extends BaseAPI {
|
|
7782
7780
|
/**
|
|
7783
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
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}
|