@vertexvis/api-client-node 0.15.5 → 0.15.6

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/dist/esm/api.d.ts CHANGED
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import { Configuration } from './configuration';
13
- import { AxiosPromise, AxiosInstance } from 'axios';
13
+ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
14
14
  import { RequestArgs, BaseAPI } from './base';
15
15
  /**
16
16
  *
@@ -438,7 +438,7 @@ export interface Batch {
438
438
  * @type {Array<RelationshipData | ApiError>}
439
439
  * @memberof Batch
440
440
  */
441
- vertexvis_batchresults: Array<RelationshipData | ApiError>;
441
+ 'vertexvis/batch:results': Array<RelationshipData | ApiError>;
442
442
  }
443
443
  /**
444
444
  *
@@ -861,7 +861,7 @@ export interface CreateBatchRequest {
861
861
  * @type {Array<BatchOperation>}
862
862
  * @memberof CreateBatchRequest
863
863
  */
864
- vertexvis_batchoperations: Array<BatchOperation>;
864
+ 'vertexvis/batch:operations': Array<BatchOperation>;
865
865
  }
866
866
  /**
867
867
  *
@@ -5245,7 +5245,7 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
5245
5245
  * @param {*} [options] Override http request option.
5246
5246
  * @throws {RequiredError}
5247
5247
  */
5248
- createAccount: (createAccountRequest: CreateAccountRequest, options?: any) => Promise<RequestArgs>;
5248
+ createAccount: (createAccountRequest: CreateAccountRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5249
5249
  /**
5250
5250
  * Create an `application` for an `account`.
5251
5251
  * @param {string} id The &#x60;account&#x60; ID.
@@ -5253,21 +5253,21 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
5253
5253
  * @param {*} [options] Override http request option.
5254
5254
  * @throws {RequiredError}
5255
5255
  */
5256
- createApplicationForAccount: (id: string, adminCreateApplicationRequest: AdminCreateApplicationRequest, options?: any) => Promise<RequestArgs>;
5256
+ createApplicationForAccount: (id: string, adminCreateApplicationRequest: AdminCreateApplicationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5257
5257
  /**
5258
5258
  * Delete an `account`.
5259
5259
  * @param {string} id The &#x60;account&#x60; ID.
5260
5260
  * @param {*} [options] Override http request option.
5261
5261
  * @throws {RequiredError}
5262
5262
  */
5263
- deleteAccount: (id: string, options?: any) => Promise<RequestArgs>;
5263
+ deleteAccount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5264
5264
  /**
5265
5265
  * Get an `account`.
5266
5266
  * @param {string} id The &#x60;account&#x60; ID.
5267
5267
  * @param {*} [options] Override http request option.
5268
5268
  * @throws {RequiredError}
5269
5269
  */
5270
- getAccount: (id: string, options?: any) => Promise<RequestArgs>;
5270
+ getAccount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5271
5271
  /**
5272
5272
  * Update an `account`.
5273
5273
  * @param {string} id The &#x60;account&#x60; ID.
@@ -5275,7 +5275,7 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
5275
5275
  * @param {*} [options] Override http request option.
5276
5276
  * @throws {RequiredError}
5277
5277
  */
5278
- updateAccount: (id: string, updateAccountRequest: UpdateAccountRequest, options?: any) => Promise<RequestArgs>;
5278
+ updateAccount: (id: string, updateAccountRequest: UpdateAccountRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5279
5279
  };
5280
5280
  /**
5281
5281
  * AccountsApi - functional programming interface
@@ -5288,7 +5288,7 @@ export declare const AccountsApiFp: (configuration?: Configuration | undefined)
5288
5288
  * @param {*} [options] Override http request option.
5289
5289
  * @throws {RequiredError}
5290
5290
  */
5291
- createAccount(createAccountRequest: CreateAccountRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
5291
+ createAccount(createAccountRequest: CreateAccountRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
5292
5292
  /**
5293
5293
  * Create an `application` for an `account`.
5294
5294
  * @param {string} id The &#x60;account&#x60; ID.
@@ -5296,21 +5296,21 @@ export declare const AccountsApiFp: (configuration?: Configuration | undefined)
5296
5296
  * @param {*} [options] Override http request option.
5297
5297
  * @throws {RequiredError}
5298
5298
  */
5299
- createApplicationForAccount(id: string, adminCreateApplicationRequest: AdminCreateApplicationRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreatedApplication>>;
5299
+ createApplicationForAccount(id: string, adminCreateApplicationRequest: AdminCreateApplicationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreatedApplication>>;
5300
5300
  /**
5301
5301
  * Delete an `account`.
5302
5302
  * @param {string} id The &#x60;account&#x60; ID.
5303
5303
  * @param {*} [options] Override http request option.
5304
5304
  * @throws {RequiredError}
5305
5305
  */
5306
- deleteAccount(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
5306
+ deleteAccount(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
5307
5307
  /**
5308
5308
  * Get an `account`.
5309
5309
  * @param {string} id The &#x60;account&#x60; ID.
5310
5310
  * @param {*} [options] Override http request option.
5311
5311
  * @throws {RequiredError}
5312
5312
  */
5313
- getAccount(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
5313
+ getAccount(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
5314
5314
  /**
5315
5315
  * Update an `account`.
5316
5316
  * @param {string} id The &#x60;account&#x60; ID.
@@ -5318,7 +5318,7 @@ export declare const AccountsApiFp: (configuration?: Configuration | undefined)
5318
5318
  * @param {*} [options] Override http request option.
5319
5319
  * @throws {RequiredError}
5320
5320
  */
5321
- updateAccount(id: string, updateAccountRequest: UpdateAccountRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
5321
+ updateAccount(id: string, updateAccountRequest: UpdateAccountRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
5322
5322
  };
5323
5323
  /**
5324
5324
  * AccountsApi - factory interface
@@ -5454,7 +5454,7 @@ export declare class AccountsApi extends BaseAPI {
5454
5454
  * @throws {RequiredError}
5455
5455
  * @memberof AccountsApi
5456
5456
  */
5457
- createAccount(requestParameters: AccountsApiCreateAccountRequest, options?: any): Promise<import("axios").AxiosResponse<Account>>;
5457
+ createAccount(requestParameters: AccountsApiCreateAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Account, any>>;
5458
5458
  /**
5459
5459
  * Create an `application` for an `account`.
5460
5460
  * @param {AccountsApiCreateApplicationForAccountRequest} requestParameters Request parameters.
@@ -5462,7 +5462,7 @@ export declare class AccountsApi extends BaseAPI {
5462
5462
  * @throws {RequiredError}
5463
5463
  * @memberof AccountsApi
5464
5464
  */
5465
- createApplicationForAccount(requestParameters: AccountsApiCreateApplicationForAccountRequest, options?: any): Promise<import("axios").AxiosResponse<CreatedApplication>>;
5465
+ createApplicationForAccount(requestParameters: AccountsApiCreateApplicationForAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatedApplication, any>>;
5466
5466
  /**
5467
5467
  * Delete an `account`.
5468
5468
  * @param {AccountsApiDeleteAccountRequest} requestParameters Request parameters.
@@ -5470,7 +5470,7 @@ export declare class AccountsApi extends BaseAPI {
5470
5470
  * @throws {RequiredError}
5471
5471
  * @memberof AccountsApi
5472
5472
  */
5473
- deleteAccount(requestParameters: AccountsApiDeleteAccountRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
5473
+ deleteAccount(requestParameters: AccountsApiDeleteAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5474
5474
  /**
5475
5475
  * Get an `account`.
5476
5476
  * @param {AccountsApiGetAccountRequest} requestParameters Request parameters.
@@ -5478,7 +5478,7 @@ export declare class AccountsApi extends BaseAPI {
5478
5478
  * @throws {RequiredError}
5479
5479
  * @memberof AccountsApi
5480
5480
  */
5481
- getAccount(requestParameters: AccountsApiGetAccountRequest, options?: any): Promise<import("axios").AxiosResponse<Account>>;
5481
+ getAccount(requestParameters: AccountsApiGetAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Account, any>>;
5482
5482
  /**
5483
5483
  * Update an `account`.
5484
5484
  * @param {AccountsApiUpdateAccountRequest} requestParameters Request parameters.
@@ -5486,7 +5486,7 @@ export declare class AccountsApi extends BaseAPI {
5486
5486
  * @throws {RequiredError}
5487
5487
  * @memberof AccountsApi
5488
5488
  */
5489
- updateAccount(requestParameters: AccountsApiUpdateAccountRequest, options?: any): Promise<import("axios").AxiosResponse<Account>>;
5489
+ updateAccount(requestParameters: AccountsApiUpdateAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Account, any>>;
5490
5490
  }
5491
5491
  /**
5492
5492
  * ApplicationsApi - axios parameter creator
@@ -5499,21 +5499,21 @@ export declare const ApplicationsApiAxiosParamCreator: (configuration?: Configur
5499
5499
  * @param {*} [options] Override http request option.
5500
5500
  * @throws {RequiredError}
5501
5501
  */
5502
- createApplication: (createApplicationRequest: CreateApplicationRequest, options?: any) => Promise<RequestArgs>;
5502
+ createApplication: (createApplicationRequest: CreateApplicationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5503
5503
  /**
5504
5504
  * Delete an `application`.
5505
5505
  * @param {string} id The &#x60;application&#x60; ID.
5506
5506
  * @param {*} [options] Override http request option.
5507
5507
  * @throws {RequiredError}
5508
5508
  */
5509
- deleteApplication: (id: string, options?: any) => Promise<RequestArgs>;
5509
+ deleteApplication: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5510
5510
  /**
5511
5511
  * Get an `application`.
5512
5512
  * @param {string} id The &#x60;application&#x60; ID.
5513
5513
  * @param {*} [options] Override http request option.
5514
5514
  * @throws {RequiredError}
5515
5515
  */
5516
- getApplication: (id: string, options?: any) => Promise<RequestArgs>;
5516
+ getApplication: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5517
5517
  /**
5518
5518
  * Get `applications`.
5519
5519
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -5521,7 +5521,7 @@ export declare const ApplicationsApiAxiosParamCreator: (configuration?: Configur
5521
5521
  * @param {*} [options] Override http request option.
5522
5522
  * @throws {RequiredError}
5523
5523
  */
5524
- getApplications: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: any) => Promise<RequestArgs>;
5524
+ getApplications: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5525
5525
  /**
5526
5526
  * Update an `application`.
5527
5527
  * @param {string} id The &#x60;application&#x60; ID.
@@ -5529,7 +5529,7 @@ export declare const ApplicationsApiAxiosParamCreator: (configuration?: Configur
5529
5529
  * @param {*} [options] Override http request option.
5530
5530
  * @throws {RequiredError}
5531
5531
  */
5532
- updateApplication: (id: string, updateApplicationRequest: UpdateApplicationRequest, options?: any) => Promise<RequestArgs>;
5532
+ updateApplication: (id: string, updateApplicationRequest: UpdateApplicationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5533
5533
  };
5534
5534
  /**
5535
5535
  * ApplicationsApi - functional programming interface
@@ -5542,21 +5542,21 @@ export declare const ApplicationsApiFp: (configuration?: Configuration | undefin
5542
5542
  * @param {*} [options] Override http request option.
5543
5543
  * @throws {RequiredError}
5544
5544
  */
5545
- createApplication(createApplicationRequest: CreateApplicationRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreatedApplication>>;
5545
+ createApplication(createApplicationRequest: CreateApplicationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreatedApplication>>;
5546
5546
  /**
5547
5547
  * Delete an `application`.
5548
5548
  * @param {string} id The &#x60;application&#x60; ID.
5549
5549
  * @param {*} [options] Override http request option.
5550
5550
  * @throws {RequiredError}
5551
5551
  */
5552
- deleteApplication(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
5552
+ deleteApplication(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
5553
5553
  /**
5554
5554
  * Get an `application`.
5555
5555
  * @param {string} id The &#x60;application&#x60; ID.
5556
5556
  * @param {*} [options] Override http request option.
5557
5557
  * @throws {RequiredError}
5558
5558
  */
5559
- getApplication(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Application>>;
5559
+ getApplication(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Application>>;
5560
5560
  /**
5561
5561
  * Get `applications`.
5562
5562
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -5564,7 +5564,7 @@ export declare const ApplicationsApiFp: (configuration?: Configuration | undefin
5564
5564
  * @param {*} [options] Override http request option.
5565
5565
  * @throws {RequiredError}
5566
5566
  */
5567
- getApplications(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ApplicationList>>;
5567
+ getApplications(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ApplicationList>>;
5568
5568
  /**
5569
5569
  * Update an `application`.
5570
5570
  * @param {string} id The &#x60;application&#x60; ID.
@@ -5572,7 +5572,7 @@ export declare const ApplicationsApiFp: (configuration?: Configuration | undefin
5572
5572
  * @param {*} [options] Override http request option.
5573
5573
  * @throws {RequiredError}
5574
5574
  */
5575
- updateApplication(id: string, updateApplicationRequest: UpdateApplicationRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Application>>;
5575
+ updateApplication(id: string, updateApplicationRequest: UpdateApplicationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Application>>;
5576
5576
  };
5577
5577
  /**
5578
5578
  * ApplicationsApi - factory interface
@@ -5708,7 +5708,7 @@ export declare class ApplicationsApi extends BaseAPI {
5708
5708
  * @throws {RequiredError}
5709
5709
  * @memberof ApplicationsApi
5710
5710
  */
5711
- createApplication(requestParameters: ApplicationsApiCreateApplicationRequest, options?: any): Promise<import("axios").AxiosResponse<CreatedApplication>>;
5711
+ createApplication(requestParameters: ApplicationsApiCreateApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatedApplication, any>>;
5712
5712
  /**
5713
5713
  * Delete an `application`.
5714
5714
  * @param {ApplicationsApiDeleteApplicationRequest} requestParameters Request parameters.
@@ -5716,7 +5716,7 @@ export declare class ApplicationsApi extends BaseAPI {
5716
5716
  * @throws {RequiredError}
5717
5717
  * @memberof ApplicationsApi
5718
5718
  */
5719
- deleteApplication(requestParameters: ApplicationsApiDeleteApplicationRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
5719
+ deleteApplication(requestParameters: ApplicationsApiDeleteApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5720
5720
  /**
5721
5721
  * Get an `application`.
5722
5722
  * @param {ApplicationsApiGetApplicationRequest} requestParameters Request parameters.
@@ -5724,7 +5724,7 @@ export declare class ApplicationsApi extends BaseAPI {
5724
5724
  * @throws {RequiredError}
5725
5725
  * @memberof ApplicationsApi
5726
5726
  */
5727
- getApplication(requestParameters: ApplicationsApiGetApplicationRequest, options?: any): Promise<import("axios").AxiosResponse<Application>>;
5727
+ getApplication(requestParameters: ApplicationsApiGetApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Application, any>>;
5728
5728
  /**
5729
5729
  * Get `applications`.
5730
5730
  * @param {ApplicationsApiGetApplicationsRequest} requestParameters Request parameters.
@@ -5732,7 +5732,7 @@ export declare class ApplicationsApi extends BaseAPI {
5732
5732
  * @throws {RequiredError}
5733
5733
  * @memberof ApplicationsApi
5734
5734
  */
5735
- getApplications(requestParameters?: ApplicationsApiGetApplicationsRequest, options?: any): Promise<import("axios").AxiosResponse<ApplicationList>>;
5735
+ getApplications(requestParameters?: ApplicationsApiGetApplicationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationList, any>>;
5736
5736
  /**
5737
5737
  * Update an `application`.
5738
5738
  * @param {ApplicationsApiUpdateApplicationRequest} requestParameters Request parameters.
@@ -5740,7 +5740,7 @@ export declare class ApplicationsApi extends BaseAPI {
5740
5740
  * @throws {RequiredError}
5741
5741
  * @memberof ApplicationsApi
5742
5742
  */
5743
- updateApplication(requestParameters: ApplicationsApiUpdateApplicationRequest, options?: any): Promise<import("axios").AxiosResponse<Application>>;
5743
+ updateApplication(requestParameters: ApplicationsApiUpdateApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Application, any>>;
5744
5744
  }
5745
5745
  /**
5746
5746
  * BatchesApi - axios parameter creator
@@ -5753,21 +5753,21 @@ export declare const BatchesApiAxiosParamCreator: (configuration?: Configuration
5753
5753
  * @param {*} [options] Override http request option.
5754
5754
  * @throws {RequiredError}
5755
5755
  */
5756
- createBatch: (createBatchRequest: CreateBatchRequest, options?: any) => Promise<RequestArgs>;
5756
+ createBatch: (createBatchRequest: CreateBatchRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5757
5757
  /**
5758
5758
  * Get a `batch` by ID.
5759
5759
  * @param {string} id The &#x60;file&#x60; ID.
5760
5760
  * @param {*} [options] Override http request option.
5761
5761
  * @throws {RequiredError}
5762
5762
  */
5763
- getBatch: (id: string, options?: any) => Promise<RequestArgs>;
5763
+ getBatch: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5764
5764
  /**
5765
5765
  * Get a `queued-batch`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `batch`.
5766
5766
  * @param {string} id The &#x60;queued-batch&#x60; ID.
5767
5767
  * @param {*} [options] Override http request option.
5768
5768
  * @throws {RequiredError}
5769
5769
  */
5770
- getQueuedBatch: (id: string, options?: any) => Promise<RequestArgs>;
5770
+ getQueuedBatch: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5771
5771
  };
5772
5772
  /**
5773
5773
  * BatchesApi - functional programming interface
@@ -5780,21 +5780,21 @@ export declare const BatchesApiFp: (configuration?: Configuration | undefined) =
5780
5780
  * @param {*} [options] Override http request option.
5781
5781
  * @throws {RequiredError}
5782
5782
  */
5783
- createBatch(createBatchRequest: CreateBatchRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
5783
+ createBatch(createBatchRequest: CreateBatchRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
5784
5784
  /**
5785
5785
  * Get a `batch` by ID.
5786
5786
  * @param {string} id The &#x60;file&#x60; ID.
5787
5787
  * @param {*} [options] Override http request option.
5788
5788
  * @throws {RequiredError}
5789
5789
  */
5790
- getBatch(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Batch>>;
5790
+ getBatch(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Batch>>;
5791
5791
  /**
5792
5792
  * Get a `queued-batch`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `batch`.
5793
5793
  * @param {string} id The &#x60;queued-batch&#x60; ID.
5794
5794
  * @param {*} [options] Override http request option.
5795
5795
  * @throws {RequiredError}
5796
5796
  */
5797
- getQueuedBatch(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
5797
+ getQueuedBatch(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
5798
5798
  };
5799
5799
  /**
5800
5800
  * BatchesApi - factory interface
@@ -5876,7 +5876,7 @@ export declare class BatchesApi extends BaseAPI {
5876
5876
  * @throws {RequiredError}
5877
5877
  * @memberof BatchesApi
5878
5878
  */
5879
- createBatch(requestParameters: BatchesApiCreateBatchRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
5879
+ createBatch(requestParameters: BatchesApiCreateBatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
5880
5880
  /**
5881
5881
  * Get a `batch` by ID.
5882
5882
  * @param {BatchesApiGetBatchRequest} requestParameters Request parameters.
@@ -5884,7 +5884,7 @@ export declare class BatchesApi extends BaseAPI {
5884
5884
  * @throws {RequiredError}
5885
5885
  * @memberof BatchesApi
5886
5886
  */
5887
- getBatch(requestParameters: BatchesApiGetBatchRequest, options?: any): Promise<import("axios").AxiosResponse<Batch>>;
5887
+ getBatch(requestParameters: BatchesApiGetBatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Batch, any>>;
5888
5888
  /**
5889
5889
  * Get a `queued-batch`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `batch`.
5890
5890
  * @param {BatchesApiGetQueuedBatchRequest} requestParameters Request parameters.
@@ -5892,7 +5892,7 @@ export declare class BatchesApi extends BaseAPI {
5892
5892
  * @throws {RequiredError}
5893
5893
  * @memberof BatchesApi
5894
5894
  */
5895
- getQueuedBatch(requestParameters: BatchesApiGetQueuedBatchRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
5895
+ getQueuedBatch(requestParameters: BatchesApiGetQueuedBatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
5896
5896
  }
5897
5897
  /**
5898
5898
  * FilesApi - axios parameter creator
@@ -5905,21 +5905,21 @@ export declare const FilesApiAxiosParamCreator: (configuration?: Configuration |
5905
5905
  * @param {*} [options] Override http request option.
5906
5906
  * @throws {RequiredError}
5907
5907
  */
5908
- createFile: (createFileRequest: CreateFileRequest, options?: any) => Promise<RequestArgs>;
5908
+ createFile: (createFileRequest: CreateFileRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5909
5909
  /**
5910
5910
  * Delete a `file`.
5911
5911
  * @param {string} id The &#x60;file&#x60; ID.
5912
5912
  * @param {*} [options] Override http request option.
5913
5913
  * @throws {RequiredError}
5914
5914
  */
5915
- deleteFile: (id: string, options?: any) => Promise<RequestArgs>;
5915
+ deleteFile: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5916
5916
  /**
5917
5917
  * Get a `file` by ID.
5918
5918
  * @param {string} id The &#x60;file&#x60; ID.
5919
5919
  * @param {*} [options] Override http request option.
5920
5920
  * @throws {RequiredError}
5921
5921
  */
5922
- getFile: (id: string, options?: any) => Promise<RequestArgs>;
5922
+ getFile: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5923
5923
  /**
5924
5924
  * Get `files`.
5925
5925
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -5928,7 +5928,7 @@ export declare const FilesApiAxiosParamCreator: (configuration?: Configuration |
5928
5928
  * @param {*} [options] Override http request option.
5929
5929
  * @throws {RequiredError}
5930
5930
  */
5931
- getFiles: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any) => Promise<RequestArgs>;
5931
+ getFiles: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5932
5932
  /**
5933
5933
  * Upload a `file`. Once uploaded, create either parts or geometry sets via the createPart or createGeometrySet APIs.
5934
5934
  * @param {string} id The &#x60;file&#x60; ID.
@@ -5936,7 +5936,7 @@ export declare const FilesApiAxiosParamCreator: (configuration?: Configuration |
5936
5936
  * @param {*} [options] Override http request option.
5937
5937
  * @throws {RequiredError}
5938
5938
  */
5939
- uploadFile: (id: string, body: any, options?: any) => Promise<RequestArgs>;
5939
+ uploadFile: (id: string, body: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5940
5940
  };
5941
5941
  /**
5942
5942
  * FilesApi - functional programming interface
@@ -5949,21 +5949,21 @@ export declare const FilesApiFp: (configuration?: Configuration | undefined) =>
5949
5949
  * @param {*} [options] Override http request option.
5950
5950
  * @throws {RequiredError}
5951
5951
  */
5952
- createFile(createFileRequest: CreateFileRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
5952
+ createFile(createFileRequest: CreateFileRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
5953
5953
  /**
5954
5954
  * Delete a `file`.
5955
5955
  * @param {string} id The &#x60;file&#x60; ID.
5956
5956
  * @param {*} [options] Override http request option.
5957
5957
  * @throws {RequiredError}
5958
5958
  */
5959
- deleteFile(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
5959
+ deleteFile(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
5960
5960
  /**
5961
5961
  * Get a `file` by ID.
5962
5962
  * @param {string} id The &#x60;file&#x60; ID.
5963
5963
  * @param {*} [options] Override http request option.
5964
5964
  * @throws {RequiredError}
5965
5965
  */
5966
- getFile(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
5966
+ getFile(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
5967
5967
  /**
5968
5968
  * Get `files`.
5969
5969
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -5972,7 +5972,7 @@ export declare const FilesApiFp: (configuration?: Configuration | undefined) =>
5972
5972
  * @param {*} [options] Override http request option.
5973
5973
  * @throws {RequiredError}
5974
5974
  */
5975
- getFiles(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileList>>;
5975
+ getFiles(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileList>>;
5976
5976
  /**
5977
5977
  * Upload a `file`. Once uploaded, create either parts or geometry sets via the createPart or createGeometrySet APIs.
5978
5978
  * @param {string} id The &#x60;file&#x60; ID.
@@ -5980,7 +5980,7 @@ export declare const FilesApiFp: (configuration?: Configuration | undefined) =>
5980
5980
  * @param {*} [options] Override http request option.
5981
5981
  * @throws {RequiredError}
5982
5982
  */
5983
- uploadFile(id: string, body: any, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
5983
+ uploadFile(id: string, body: any, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
5984
5984
  };
5985
5985
  /**
5986
5986
  * FilesApi - factory interface
@@ -6123,7 +6123,7 @@ export declare class FilesApi extends BaseAPI {
6123
6123
  * @throws {RequiredError}
6124
6124
  * @memberof FilesApi
6125
6125
  */
6126
- createFile(requestParameters: FilesApiCreateFileRequest, options?: any): Promise<import("axios").AxiosResponse<FileMetadata>>;
6126
+ createFile(requestParameters: FilesApiCreateFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileMetadata, any>>;
6127
6127
  /**
6128
6128
  * Delete a `file`.
6129
6129
  * @param {FilesApiDeleteFileRequest} requestParameters Request parameters.
@@ -6131,7 +6131,7 @@ export declare class FilesApi extends BaseAPI {
6131
6131
  * @throws {RequiredError}
6132
6132
  * @memberof FilesApi
6133
6133
  */
6134
- deleteFile(requestParameters: FilesApiDeleteFileRequest, options?: any): Promise<import("axios").AxiosResponse<FileMetadata>>;
6134
+ deleteFile(requestParameters: FilesApiDeleteFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileMetadata, any>>;
6135
6135
  /**
6136
6136
  * Get a `file` by ID.
6137
6137
  * @param {FilesApiGetFileRequest} requestParameters Request parameters.
@@ -6139,7 +6139,7 @@ export declare class FilesApi extends BaseAPI {
6139
6139
  * @throws {RequiredError}
6140
6140
  * @memberof FilesApi
6141
6141
  */
6142
- getFile(requestParameters: FilesApiGetFileRequest, options?: any): Promise<import("axios").AxiosResponse<FileMetadata>>;
6142
+ getFile(requestParameters: FilesApiGetFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileMetadata, any>>;
6143
6143
  /**
6144
6144
  * Get `files`.
6145
6145
  * @param {FilesApiGetFilesRequest} requestParameters Request parameters.
@@ -6147,7 +6147,7 @@ export declare class FilesApi extends BaseAPI {
6147
6147
  * @throws {RequiredError}
6148
6148
  * @memberof FilesApi
6149
6149
  */
6150
- getFiles(requestParameters?: FilesApiGetFilesRequest, options?: any): Promise<import("axios").AxiosResponse<FileList>>;
6150
+ getFiles(requestParameters?: FilesApiGetFilesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileList, any>>;
6151
6151
  /**
6152
6152
  * Upload a `file`. Once uploaded, create either parts or geometry sets via the createPart or createGeometrySet APIs.
6153
6153
  * @param {FilesApiUploadFileRequest} requestParameters Request parameters.
@@ -6155,7 +6155,7 @@ export declare class FilesApi extends BaseAPI {
6155
6155
  * @throws {RequiredError}
6156
6156
  * @memberof FilesApi
6157
6157
  */
6158
- uploadFile(requestParameters: FilesApiUploadFileRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
6158
+ uploadFile(requestParameters: FilesApiUploadFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
6159
6159
  }
6160
6160
  /**
6161
6161
  * GeometrySetsApi - axios parameter creator
@@ -6168,14 +6168,14 @@ export declare const GeometrySetsApiAxiosParamCreator: (configuration?: Configur
6168
6168
  * @param {*} [options] Override http request option.
6169
6169
  * @throws {RequiredError}
6170
6170
  */
6171
- createGeometrySet: (createGeometrySetRequest: CreateGeometrySetRequest, options?: any) => Promise<RequestArgs>;
6171
+ createGeometrySet: (createGeometrySetRequest: CreateGeometrySetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6172
6172
  /**
6173
6173
  * Get a `geometry-set` by ID.
6174
6174
  * @param {string} id The &#x60;geometry-set&#x60; ID.
6175
6175
  * @param {*} [options] Override http request option.
6176
6176
  * @throws {RequiredError}
6177
6177
  */
6178
- getGeometrySet: (id: string, options?: any) => Promise<RequestArgs>;
6178
+ getGeometrySet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6179
6179
  /**
6180
6180
  * Get `geometry-sets`.
6181
6181
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -6183,7 +6183,7 @@ export declare const GeometrySetsApiAxiosParamCreator: (configuration?: Configur
6183
6183
  * @param {*} [options] Override http request option.
6184
6184
  * @throws {RequiredError}
6185
6185
  */
6186
- getGeometrySets: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: any) => Promise<RequestArgs>;
6186
+ getGeometrySets: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6187
6187
  };
6188
6188
  /**
6189
6189
  * GeometrySetsApi - functional programming interface
@@ -6196,14 +6196,14 @@ export declare const GeometrySetsApiFp: (configuration?: Configuration | undefin
6196
6196
  * @param {*} [options] Override http request option.
6197
6197
  * @throws {RequiredError}
6198
6198
  */
6199
- createGeometrySet(createGeometrySetRequest: CreateGeometrySetRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
6199
+ createGeometrySet(createGeometrySetRequest: CreateGeometrySetRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
6200
6200
  /**
6201
6201
  * Get a `geometry-set` by ID.
6202
6202
  * @param {string} id The &#x60;geometry-set&#x60; ID.
6203
6203
  * @param {*} [options] Override http request option.
6204
6204
  * @throws {RequiredError}
6205
6205
  */
6206
- getGeometrySet(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GeometrySet>>;
6206
+ getGeometrySet(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GeometrySet>>;
6207
6207
  /**
6208
6208
  * Get `geometry-sets`.
6209
6209
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -6211,7 +6211,7 @@ export declare const GeometrySetsApiFp: (configuration?: Configuration | undefin
6211
6211
  * @param {*} [options] Override http request option.
6212
6212
  * @throws {RequiredError}
6213
6213
  */
6214
- getGeometrySets(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GeometrySetList>>;
6214
+ getGeometrySets(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GeometrySetList>>;
6215
6215
  };
6216
6216
  /**
6217
6217
  * GeometrySetsApi - factory interface
@@ -6300,7 +6300,7 @@ export declare class GeometrySetsApi extends BaseAPI {
6300
6300
  * @throws {RequiredError}
6301
6301
  * @memberof GeometrySetsApi
6302
6302
  */
6303
- createGeometrySet(requestParameters: GeometrySetsApiCreateGeometrySetRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
6303
+ createGeometrySet(requestParameters: GeometrySetsApiCreateGeometrySetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
6304
6304
  /**
6305
6305
  * Get a `geometry-set` by ID.
6306
6306
  * @param {GeometrySetsApiGetGeometrySetRequest} requestParameters Request parameters.
@@ -6308,7 +6308,7 @@ export declare class GeometrySetsApi extends BaseAPI {
6308
6308
  * @throws {RequiredError}
6309
6309
  * @memberof GeometrySetsApi
6310
6310
  */
6311
- getGeometrySet(requestParameters: GeometrySetsApiGetGeometrySetRequest, options?: any): Promise<import("axios").AxiosResponse<GeometrySet>>;
6311
+ getGeometrySet(requestParameters: GeometrySetsApiGetGeometrySetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeometrySet, any>>;
6312
6312
  /**
6313
6313
  * Get `geometry-sets`.
6314
6314
  * @param {GeometrySetsApiGetGeometrySetsRequest} requestParameters Request parameters.
@@ -6316,7 +6316,7 @@ export declare class GeometrySetsApi extends BaseAPI {
6316
6316
  * @throws {RequiredError}
6317
6317
  * @memberof GeometrySetsApi
6318
6318
  */
6319
- getGeometrySets(requestParameters?: GeometrySetsApiGetGeometrySetsRequest, options?: any): Promise<import("axios").AxiosResponse<GeometrySetList>>;
6319
+ getGeometrySets(requestParameters?: GeometrySetsApiGetGeometrySetsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeometrySetList, any>>;
6320
6320
  }
6321
6321
  /**
6322
6322
  * HitsApi - axios parameter creator
@@ -6332,7 +6332,7 @@ export declare const HitsApiAxiosParamCreator: (configuration?: Configuration |
6332
6332
  * @param {*} [options] Override http request option.
6333
6333
  * @throws {RequiredError}
6334
6334
  */
6335
- createSceneHit: (id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: any) => Promise<RequestArgs>;
6335
+ createSceneHit: (id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6336
6336
  /**
6337
6337
  * Create a `hit` for a `scene-view`.
6338
6338
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -6342,7 +6342,7 @@ export declare const HitsApiAxiosParamCreator: (configuration?: Configuration |
6342
6342
  * @param {*} [options] Override http request option.
6343
6343
  * @throws {RequiredError}
6344
6344
  */
6345
- createSceneViewHit: (id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: any) => Promise<RequestArgs>;
6345
+ createSceneViewHit: (id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6346
6346
  };
6347
6347
  /**
6348
6348
  * HitsApi - functional programming interface
@@ -6358,7 +6358,7 @@ export declare const HitsApiFp: (configuration?: Configuration | undefined) => {
6358
6358
  * @param {*} [options] Override http request option.
6359
6359
  * @throws {RequiredError}
6360
6360
  */
6361
- createSceneHit(id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Hit>>;
6361
+ createSceneHit(id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Hit>>;
6362
6362
  /**
6363
6363
  * Create a `hit` for a `scene-view`.
6364
6364
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -6368,7 +6368,7 @@ export declare const HitsApiFp: (configuration?: Configuration | undefined) => {
6368
6368
  * @param {*} [options] Override http request option.
6369
6369
  * @throws {RequiredError}
6370
6370
  */
6371
- createSceneViewHit(id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Hit>>;
6371
+ createSceneViewHit(id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Hit>>;
6372
6372
  };
6373
6373
  /**
6374
6374
  * HitsApi - factory interface
@@ -6472,7 +6472,7 @@ export declare class HitsApi extends BaseAPI {
6472
6472
  * @throws {RequiredError}
6473
6473
  * @memberof HitsApi
6474
6474
  */
6475
- createSceneHit(requestParameters: HitsApiCreateSceneHitRequest, options?: any): Promise<import("axios").AxiosResponse<Hit>>;
6475
+ createSceneHit(requestParameters: HitsApiCreateSceneHitRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Hit, any>>;
6476
6476
  /**
6477
6477
  * Create a `hit` for a `scene-view`.
6478
6478
  * @param {HitsApiCreateSceneViewHitRequest} requestParameters Request parameters.
@@ -6480,7 +6480,7 @@ export declare class HitsApi extends BaseAPI {
6480
6480
  * @throws {RequiredError}
6481
6481
  * @memberof HitsApi
6482
6482
  */
6483
- createSceneViewHit(requestParameters: HitsApiCreateSceneViewHitRequest, options?: any): Promise<import("axios").AxiosResponse<Hit>>;
6483
+ createSceneViewHit(requestParameters: HitsApiCreateSceneViewHitRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Hit, any>>;
6484
6484
  }
6485
6485
  /**
6486
6486
  * Oauth2Api - axios parameter creator
@@ -6494,7 +6494,7 @@ export declare const Oauth2ApiAxiosParamCreator: (configuration?: Configuration
6494
6494
  * @param {*} [options] Override http request option.
6495
6495
  * @throws {RequiredError}
6496
6496
  */
6497
- adminAcceptConsent: (challenge: string, adminConsentAcceptRequest?: AdminConsentAcceptRequest | undefined, options?: any) => Promise<RequestArgs>;
6497
+ adminAcceptConsent: (challenge: string, adminConsentAcceptRequest?: AdminConsentAcceptRequest | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6498
6498
  /**
6499
6499
  * Accept Login Challenge with subject & login challenge
6500
6500
  * @param {string} loginChallenge Login Challenge ID from oauth2 flow
@@ -6502,7 +6502,7 @@ export declare const Oauth2ApiAxiosParamCreator: (configuration?: Configuration
6502
6502
  * @param {*} [options] Override http request option.
6503
6503
  * @throws {RequiredError}
6504
6504
  */
6505
- adminAcceptLogin: (loginChallenge: string, adminLoginAcceptRequest: AdminLoginAcceptRequest, options?: any) => Promise<RequestArgs>;
6505
+ adminAcceptLogin: (loginChallenge: string, adminLoginAcceptRequest: AdminLoginAcceptRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6506
6506
  /**
6507
6507
  * Create an OAuth2 access token. For details, see our [Authentication](https://developer.vertexvis.com/docs/guides/authentication) guide.
6508
6508
  * @param {string} grantType
@@ -6513,14 +6513,14 @@ export declare const Oauth2ApiAxiosParamCreator: (configuration?: Configuration
6513
6513
  * @param {*} [options] Override http request option.
6514
6514
  * @throws {RequiredError}
6515
6515
  */
6516
- createToken: (grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: any) => Promise<RequestArgs>;
6516
+ createToken: (grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6517
6517
  /**
6518
6518
  * Revoke an OAuth2 access token.
6519
6519
  * @param {RevokeOAuth2TokenRequest} revokeOAuth2TokenRequest
6520
6520
  * @param {*} [options] Override http request option.
6521
6521
  * @throws {RequiredError}
6522
6522
  */
6523
- revokeToken: (revokeOAuth2TokenRequest: RevokeOAuth2TokenRequest, options?: any) => Promise<RequestArgs>;
6523
+ revokeToken: (revokeOAuth2TokenRequest: RevokeOAuth2TokenRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6524
6524
  };
6525
6525
  /**
6526
6526
  * Oauth2Api - functional programming interface
@@ -6534,7 +6534,7 @@ export declare const Oauth2ApiFp: (configuration?: Configuration | undefined) =>
6534
6534
  * @param {*} [options] Override http request option.
6535
6535
  * @throws {RequiredError}
6536
6536
  */
6537
- adminAcceptConsent(challenge: string, adminConsentAcceptRequest?: AdminConsentAcceptRequest | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AdminRedirectTo>>;
6537
+ adminAcceptConsent(challenge: string, adminConsentAcceptRequest?: AdminConsentAcceptRequest | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AdminRedirectTo>>;
6538
6538
  /**
6539
6539
  * Accept Login Challenge with subject & login challenge
6540
6540
  * @param {string} loginChallenge Login Challenge ID from oauth2 flow
@@ -6542,7 +6542,7 @@ export declare const Oauth2ApiFp: (configuration?: Configuration | undefined) =>
6542
6542
  * @param {*} [options] Override http request option.
6543
6543
  * @throws {RequiredError}
6544
6544
  */
6545
- adminAcceptLogin(loginChallenge: string, adminLoginAcceptRequest: AdminLoginAcceptRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AdminRedirectTo>>;
6545
+ adminAcceptLogin(loginChallenge: string, adminLoginAcceptRequest: AdminLoginAcceptRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AdminRedirectTo>>;
6546
6546
  /**
6547
6547
  * Create an OAuth2 access token. For details, see our [Authentication](https://developer.vertexvis.com/docs/guides/authentication) guide.
6548
6548
  * @param {string} grantType
@@ -6553,14 +6553,14 @@ export declare const Oauth2ApiFp: (configuration?: Configuration | undefined) =>
6553
6553
  * @param {*} [options] Override http request option.
6554
6554
  * @throws {RequiredError}
6555
6555
  */
6556
- createToken(grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<OAuth2Token>>;
6556
+ createToken(grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<OAuth2Token>>;
6557
6557
  /**
6558
6558
  * Revoke an OAuth2 access token.
6559
6559
  * @param {RevokeOAuth2TokenRequest} revokeOAuth2TokenRequest
6560
6560
  * @param {*} [options] Override http request option.
6561
6561
  * @throws {RequiredError}
6562
6562
  */
6563
- revokeToken(revokeOAuth2TokenRequest: RevokeOAuth2TokenRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
6563
+ revokeToken(revokeOAuth2TokenRequest: RevokeOAuth2TokenRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
6564
6564
  };
6565
6565
  /**
6566
6566
  * Oauth2Api - factory interface
@@ -6704,7 +6704,7 @@ export declare class Oauth2Api extends BaseAPI {
6704
6704
  * @throws {RequiredError}
6705
6705
  * @memberof Oauth2Api
6706
6706
  */
6707
- adminAcceptConsent(requestParameters: Oauth2ApiAdminAcceptConsentRequest, options?: any): Promise<import("axios").AxiosResponse<AdminRedirectTo>>;
6707
+ adminAcceptConsent(requestParameters: Oauth2ApiAdminAcceptConsentRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminRedirectTo, any>>;
6708
6708
  /**
6709
6709
  * Accept Login Challenge with subject & login challenge
6710
6710
  * @param {Oauth2ApiAdminAcceptLoginRequest} requestParameters Request parameters.
@@ -6712,7 +6712,7 @@ export declare class Oauth2Api extends BaseAPI {
6712
6712
  * @throws {RequiredError}
6713
6713
  * @memberof Oauth2Api
6714
6714
  */
6715
- adminAcceptLogin(requestParameters: Oauth2ApiAdminAcceptLoginRequest, options?: any): Promise<import("axios").AxiosResponse<AdminRedirectTo>>;
6715
+ adminAcceptLogin(requestParameters: Oauth2ApiAdminAcceptLoginRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminRedirectTo, any>>;
6716
6716
  /**
6717
6717
  * Create an OAuth2 access token. For details, see our [Authentication](https://developer.vertexvis.com/docs/guides/authentication) guide.
6718
6718
  * @param {Oauth2ApiCreateTokenRequest} requestParameters Request parameters.
@@ -6720,7 +6720,7 @@ export declare class Oauth2Api extends BaseAPI {
6720
6720
  * @throws {RequiredError}
6721
6721
  * @memberof Oauth2Api
6722
6722
  */
6723
- createToken(requestParameters: Oauth2ApiCreateTokenRequest, options?: any): Promise<import("axios").AxiosResponse<OAuth2Token>>;
6723
+ createToken(requestParameters: Oauth2ApiCreateTokenRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<OAuth2Token, any>>;
6724
6724
  /**
6725
6725
  * Revoke an OAuth2 access token.
6726
6726
  * @param {Oauth2ApiRevokeTokenRequest} requestParameters Request parameters.
@@ -6728,7 +6728,7 @@ export declare class Oauth2Api extends BaseAPI {
6728
6728
  * @throws {RequiredError}
6729
6729
  * @memberof Oauth2Api
6730
6730
  */
6731
- revokeToken(requestParameters: Oauth2ApiRevokeTokenRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
6731
+ revokeToken(requestParameters: Oauth2ApiRevokeTokenRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
6732
6732
  }
6733
6733
  /**
6734
6734
  * PartRevisionsApi - axios parameter creator
@@ -6741,7 +6741,7 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
6741
6741
  * @param {*} [options] Override http request option.
6742
6742
  * @throws {RequiredError}
6743
6743
  */
6744
- deletePartRevision: (id: string, options?: any) => Promise<RequestArgs>;
6744
+ deletePartRevision: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6745
6745
  /**
6746
6746
  * Get a `part-revision` by ID.
6747
6747
  * @param {string} id The &#x60;part-revision&#x60; ID.
@@ -6749,7 +6749,7 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
6749
6749
  * @param {*} [options] Override http request option.
6750
6750
  * @throws {RequiredError}
6751
6751
  */
6752
- getPartRevision: (id: string, fieldsPartRevision?: string | undefined, options?: any) => Promise<RequestArgs>;
6752
+ getPartRevision: (id: string, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6753
6753
  /**
6754
6754
  * Get `part-revisions` for a `part`.
6755
6755
  * @param {string} id The &#x60;part&#x60; ID.
@@ -6759,14 +6759,14 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
6759
6759
  * @param {*} [options] Override http request option.
6760
6760
  * @throws {RequiredError}
6761
6761
  */
6762
- getPartRevisions: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any) => Promise<RequestArgs>;
6762
+ getPartRevisions: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6763
6763
  /**
6764
6764
  * Get a `queued-part-revision-deletion` by ID.
6765
6765
  * @param {string} id The &#x60;queued-part-revision-deletion&#x60; ID.
6766
6766
  * @param {*} [options] Override http request option.
6767
6767
  * @throws {RequiredError}
6768
6768
  */
6769
- getQueuedPartRevisionDeletion: (id: string, options?: any) => Promise<RequestArgs>;
6769
+ getQueuedPartRevisionDeletion: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6770
6770
  /**
6771
6771
  * Get a rendered image of a `part-revision`.
6772
6772
  * @param {string} id The &#x60;part-revision&#x60; ID.
@@ -6778,7 +6778,7 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
6778
6778
  * @param {*} [options] Override http request option.
6779
6779
  * @throws {RequiredError}
6780
6780
  */
6781
- renderPartRevision: (id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, options?: any) => Promise<RequestArgs>;
6781
+ renderPartRevision: (id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6782
6782
  /**
6783
6783
  * Update a `part-revision`. Note that metadata updates are eventually consistent.
6784
6784
  * @param {string} id The &#x60;part-revision&#x60; ID.
@@ -6786,7 +6786,7 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
6786
6786
  * @param {*} [options] Override http request option.
6787
6787
  * @throws {RequiredError}
6788
6788
  */
6789
- updatePartRevision: (id: string, updatePartRevisionRequest: UpdatePartRevisionRequest, options?: any) => Promise<RequestArgs>;
6789
+ updatePartRevision: (id: string, updatePartRevisionRequest: UpdatePartRevisionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6790
6790
  };
6791
6791
  /**
6792
6792
  * PartRevisionsApi - functional programming interface
@@ -6799,7 +6799,7 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
6799
6799
  * @param {*} [options] Override http request option.
6800
6800
  * @throws {RequiredError}
6801
6801
  */
6802
- deletePartRevision(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
6802
+ deletePartRevision(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
6803
6803
  /**
6804
6804
  * Get a `part-revision` by ID.
6805
6805
  * @param {string} id The &#x60;part-revision&#x60; ID.
@@ -6807,7 +6807,7 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
6807
6807
  * @param {*} [options] Override http request option.
6808
6808
  * @throws {RequiredError}
6809
6809
  */
6810
- getPartRevision(id: string, fieldsPartRevision?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevision>>;
6810
+ getPartRevision(id: string, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevision>>;
6811
6811
  /**
6812
6812
  * Get `part-revisions` for a `part`.
6813
6813
  * @param {string} id The &#x60;part&#x60; ID.
@@ -6817,14 +6817,14 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
6817
6817
  * @param {*} [options] Override http request option.
6818
6818
  * @throws {RequiredError}
6819
6819
  */
6820
- getPartRevisions(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevisionList>>;
6820
+ getPartRevisions(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevisionList>>;
6821
6821
  /**
6822
6822
  * Get a `queued-part-revision-deletion` by ID.
6823
6823
  * @param {string} id The &#x60;queued-part-revision-deletion&#x60; ID.
6824
6824
  * @param {*} [options] Override http request option.
6825
6825
  * @throws {RequiredError}
6826
6826
  */
6827
- getQueuedPartRevisionDeletion(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
6827
+ getQueuedPartRevisionDeletion(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
6828
6828
  /**
6829
6829
  * Get a rendered image of a `part-revision`.
6830
6830
  * @param {string} id The &#x60;part-revision&#x60; ID.
@@ -6836,7 +6836,7 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
6836
6836
  * @param {*} [options] Override http request option.
6837
6837
  * @throws {RequiredError}
6838
6838
  */
6839
- renderPartRevision(id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
6839
+ renderPartRevision(id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
6840
6840
  /**
6841
6841
  * Update a `part-revision`. Note that metadata updates are eventually consistent.
6842
6842
  * @param {string} id The &#x60;part-revision&#x60; ID.
@@ -6844,7 +6844,7 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
6844
6844
  * @param {*} [options] Override http request option.
6845
6845
  * @throws {RequiredError}
6846
6846
  */
6847
- updatePartRevision(id: string, updatePartRevisionRequest: UpdatePartRevisionRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevision>>;
6847
+ updatePartRevision(id: string, updatePartRevisionRequest: UpdatePartRevisionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevision>>;
6848
6848
  };
6849
6849
  /**
6850
6850
  * PartRevisionsApi - factory interface
@@ -7056,7 +7056,7 @@ export declare class PartRevisionsApi extends BaseAPI {
7056
7056
  * @throws {RequiredError}
7057
7057
  * @memberof PartRevisionsApi
7058
7058
  */
7059
- deletePartRevision(requestParameters: PartRevisionsApiDeletePartRevisionRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
7059
+ deletePartRevision(requestParameters: PartRevisionsApiDeletePartRevisionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
7060
7060
  /**
7061
7061
  * Get a `part-revision` by ID.
7062
7062
  * @param {PartRevisionsApiGetPartRevisionRequest} requestParameters Request parameters.
@@ -7064,7 +7064,7 @@ export declare class PartRevisionsApi extends BaseAPI {
7064
7064
  * @throws {RequiredError}
7065
7065
  * @memberof PartRevisionsApi
7066
7066
  */
7067
- getPartRevision(requestParameters: PartRevisionsApiGetPartRevisionRequest, options?: any): Promise<import("axios").AxiosResponse<PartRevision>>;
7067
+ getPartRevision(requestParameters: PartRevisionsApiGetPartRevisionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartRevision, any>>;
7068
7068
  /**
7069
7069
  * Get `part-revisions` for a `part`.
7070
7070
  * @param {PartRevisionsApiGetPartRevisionsRequest} requestParameters Request parameters.
@@ -7072,7 +7072,7 @@ export declare class PartRevisionsApi extends BaseAPI {
7072
7072
  * @throws {RequiredError}
7073
7073
  * @memberof PartRevisionsApi
7074
7074
  */
7075
- getPartRevisions(requestParameters: PartRevisionsApiGetPartRevisionsRequest, options?: any): Promise<import("axios").AxiosResponse<PartRevisionList>>;
7075
+ getPartRevisions(requestParameters: PartRevisionsApiGetPartRevisionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartRevisionList, any>>;
7076
7076
  /**
7077
7077
  * Get a `queued-part-revision-deletion` by ID.
7078
7078
  * @param {PartRevisionsApiGetQueuedPartRevisionDeletionRequest} requestParameters Request parameters.
@@ -7080,7 +7080,7 @@ export declare class PartRevisionsApi extends BaseAPI {
7080
7080
  * @throws {RequiredError}
7081
7081
  * @memberof PartRevisionsApi
7082
7082
  */
7083
- getQueuedPartRevisionDeletion(requestParameters: PartRevisionsApiGetQueuedPartRevisionDeletionRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
7083
+ getQueuedPartRevisionDeletion(requestParameters: PartRevisionsApiGetQueuedPartRevisionDeletionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
7084
7084
  /**
7085
7085
  * Get a rendered image of a `part-revision`.
7086
7086
  * @param {PartRevisionsApiRenderPartRevisionRequest} requestParameters Request parameters.
@@ -7088,7 +7088,7 @@ export declare class PartRevisionsApi extends BaseAPI {
7088
7088
  * @throws {RequiredError}
7089
7089
  * @memberof PartRevisionsApi
7090
7090
  */
7091
- renderPartRevision(requestParameters: PartRevisionsApiRenderPartRevisionRequest, options?: any): Promise<import("axios").AxiosResponse<any>>;
7091
+ renderPartRevision(requestParameters: PartRevisionsApiRenderPartRevisionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
7092
7092
  /**
7093
7093
  * Update a `part-revision`. Note that metadata updates are eventually consistent.
7094
7094
  * @param {PartRevisionsApiUpdatePartRevisionRequest} requestParameters Request parameters.
@@ -7096,7 +7096,7 @@ export declare class PartRevisionsApi extends BaseAPI {
7096
7096
  * @throws {RequiredError}
7097
7097
  * @memberof PartRevisionsApi
7098
7098
  */
7099
- updatePartRevision(requestParameters: PartRevisionsApiUpdatePartRevisionRequest, options?: any): Promise<import("axios").AxiosResponse<PartRevision>>;
7099
+ updatePartRevision(requestParameters: PartRevisionsApiUpdatePartRevisionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartRevision, any>>;
7100
7100
  }
7101
7101
  /**
7102
7102
  * PartsApi - axios parameter creator
@@ -7109,14 +7109,14 @@ export declare const PartsApiAxiosParamCreator: (configuration?: Configuration |
7109
7109
  * @param {*} [options] Override http request option.
7110
7110
  * @throws {RequiredError}
7111
7111
  */
7112
- createPart: (createPartRequest: CreatePartRequest, options?: any) => Promise<RequestArgs>;
7112
+ createPart: (createPartRequest: CreatePartRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7113
7113
  /**
7114
7114
  * Delete a `part`.
7115
7115
  * @param {string} id The &#x60;part&#x60; ID.
7116
7116
  * @param {*} [options] Override http request option.
7117
7117
  * @throws {RequiredError}
7118
7118
  */
7119
- deletePart: (id: string, options?: any) => Promise<RequestArgs>;
7119
+ deletePart: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7120
7120
  /**
7121
7121
  * Get a `part` by ID.
7122
7122
  * @param {string} id The &#x60;part&#x60; ID.
@@ -7124,7 +7124,7 @@ export declare const PartsApiAxiosParamCreator: (configuration?: Configuration |
7124
7124
  * @param {*} [options] Override http request option.
7125
7125
  * @throws {RequiredError}
7126
7126
  */
7127
- getPart: (id: string, include?: string | undefined, options?: any) => Promise<RequestArgs>;
7127
+ getPart: (id: string, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7128
7128
  /**
7129
7129
  * Get `parts`.
7130
7130
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -7133,14 +7133,14 @@ export declare const PartsApiAxiosParamCreator: (configuration?: Configuration |
7133
7133
  * @param {*} [options] Override http request option.
7134
7134
  * @throws {RequiredError}
7135
7135
  */
7136
- getParts: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any) => Promise<RequestArgs>;
7136
+ getParts: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7137
7137
  /**
7138
7138
  * Get a `queued-part-deletion` by ID.
7139
7139
  * @param {string} id The &#x60;queued-part-deletion&#x60; ID.
7140
7140
  * @param {*} [options] Override http request option.
7141
7141
  * @throws {RequiredError}
7142
7142
  */
7143
- getQueuedPartDeletion: (id: string, options?: any) => Promise<RequestArgs>;
7143
+ getQueuedPartDeletion: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7144
7144
  };
7145
7145
  /**
7146
7146
  * PartsApi - functional programming interface
@@ -7153,14 +7153,14 @@ export declare const PartsApiFp: (configuration?: Configuration | undefined) =>
7153
7153
  * @param {*} [options] Override http request option.
7154
7154
  * @throws {RequiredError}
7155
7155
  */
7156
- createPart(createPartRequest: CreatePartRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7156
+ createPart(createPartRequest: CreatePartRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7157
7157
  /**
7158
7158
  * Delete a `part`.
7159
7159
  * @param {string} id The &#x60;part&#x60; ID.
7160
7160
  * @param {*} [options] Override http request option.
7161
7161
  * @throws {RequiredError}
7162
7162
  */
7163
- deletePart(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7163
+ deletePart(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7164
7164
  /**
7165
7165
  * Get a `part` by ID.
7166
7166
  * @param {string} id The &#x60;part&#x60; ID.
@@ -7168,7 +7168,7 @@ export declare const PartsApiFp: (configuration?: Configuration | undefined) =>
7168
7168
  * @param {*} [options] Override http request option.
7169
7169
  * @throws {RequiredError}
7170
7170
  */
7171
- getPart(id: string, include?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Part>>;
7171
+ getPart(id: string, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Part>>;
7172
7172
  /**
7173
7173
  * Get `parts`.
7174
7174
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -7177,14 +7177,14 @@ export declare const PartsApiFp: (configuration?: Configuration | undefined) =>
7177
7177
  * @param {*} [options] Override http request option.
7178
7178
  * @throws {RequiredError}
7179
7179
  */
7180
- getParts(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartList>>;
7180
+ getParts(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartList>>;
7181
7181
  /**
7182
7182
  * Get a `queued-part-deletion` by ID.
7183
7183
  * @param {string} id The &#x60;queued-part-deletion&#x60; ID.
7184
7184
  * @param {*} [options] Override http request option.
7185
7185
  * @throws {RequiredError}
7186
7186
  */
7187
- getQueuedPartDeletion(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7187
+ getQueuedPartDeletion(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7188
7188
  };
7189
7189
  /**
7190
7190
  * PartsApi - factory interface
@@ -7327,7 +7327,7 @@ export declare class PartsApi extends BaseAPI {
7327
7327
  * @throws {RequiredError}
7328
7328
  * @memberof PartsApi
7329
7329
  */
7330
- createPart(requestParameters: PartsApiCreatePartRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
7330
+ createPart(requestParameters: PartsApiCreatePartRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
7331
7331
  /**
7332
7332
  * Delete a `part`.
7333
7333
  * @param {PartsApiDeletePartRequest} requestParameters Request parameters.
@@ -7335,7 +7335,7 @@ export declare class PartsApi extends BaseAPI {
7335
7335
  * @throws {RequiredError}
7336
7336
  * @memberof PartsApi
7337
7337
  */
7338
- deletePart(requestParameters: PartsApiDeletePartRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
7338
+ deletePart(requestParameters: PartsApiDeletePartRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
7339
7339
  /**
7340
7340
  * Get a `part` by ID.
7341
7341
  * @param {PartsApiGetPartRequest} requestParameters Request parameters.
@@ -7343,7 +7343,7 @@ export declare class PartsApi extends BaseAPI {
7343
7343
  * @throws {RequiredError}
7344
7344
  * @memberof PartsApi
7345
7345
  */
7346
- getPart(requestParameters: PartsApiGetPartRequest, options?: any): Promise<import("axios").AxiosResponse<Part>>;
7346
+ getPart(requestParameters: PartsApiGetPartRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Part, any>>;
7347
7347
  /**
7348
7348
  * Get `parts`.
7349
7349
  * @param {PartsApiGetPartsRequest} requestParameters Request parameters.
@@ -7351,7 +7351,7 @@ export declare class PartsApi extends BaseAPI {
7351
7351
  * @throws {RequiredError}
7352
7352
  * @memberof PartsApi
7353
7353
  */
7354
- getParts(requestParameters?: PartsApiGetPartsRequest, options?: any): Promise<import("axios").AxiosResponse<PartList>>;
7354
+ getParts(requestParameters?: PartsApiGetPartsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartList, any>>;
7355
7355
  /**
7356
7356
  * Get a `queued-part-deletion` by ID.
7357
7357
  * @param {PartsApiGetQueuedPartDeletionRequest} requestParameters Request parameters.
@@ -7359,7 +7359,7 @@ export declare class PartsApi extends BaseAPI {
7359
7359
  * @throws {RequiredError}
7360
7360
  * @memberof PartsApi
7361
7361
  */
7362
- getQueuedPartDeletion(requestParameters: PartsApiGetQueuedPartDeletionRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
7362
+ getQueuedPartDeletion(requestParameters: PartsApiGetQueuedPartDeletionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
7363
7363
  }
7364
7364
  /**
7365
7365
  * SceneAlterationsApi - axios parameter creator
@@ -7373,28 +7373,28 @@ export declare const SceneAlterationsApiAxiosParamCreator: (configuration?: Conf
7373
7373
  * @param {*} [options] Override http request option.
7374
7374
  * @throws {RequiredError}
7375
7375
  */
7376
- createSceneAlteration: (id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: any) => Promise<RequestArgs>;
7376
+ createSceneAlteration: (id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7377
7377
  /**
7378
7378
  * Get a `queued-scene-alteration` by ID.
7379
7379
  * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
7380
7380
  * @param {*} [options] Override http request option.
7381
7381
  * @throws {RequiredError}
7382
7382
  */
7383
- getQueuedSceneAlteration: (id: string, options?: any) => Promise<RequestArgs>;
7383
+ getQueuedSceneAlteration: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7384
7384
  /**
7385
7385
  * Get a `scene-alteration` by ID.
7386
7386
  * @param {string} id The &#x60;scene-alteration&#x60; ID.
7387
7387
  * @param {*} [options] Override http request option.
7388
7388
  * @throws {RequiredError}
7389
7389
  */
7390
- getSceneAlteration: (id: string, options?: any) => Promise<RequestArgs>;
7390
+ getSceneAlteration: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7391
7391
  /**
7392
7392
  * Get `scene-alterations` for a `scene-view`.
7393
7393
  * @param {string} id The &#x60;scene-view&#x60; ID.
7394
7394
  * @param {*} [options] Override http request option.
7395
7395
  * @throws {RequiredError}
7396
7396
  */
7397
- getSceneAlterations: (id: string, options?: any) => Promise<RequestArgs>;
7397
+ getSceneAlterations: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7398
7398
  };
7399
7399
  /**
7400
7400
  * SceneAlterationsApi - functional programming interface
@@ -7408,28 +7408,28 @@ export declare const SceneAlterationsApiFp: (configuration?: Configuration | und
7408
7408
  * @param {*} [options] Override http request option.
7409
7409
  * @throws {RequiredError}
7410
7410
  */
7411
- createSceneAlteration(id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7411
+ createSceneAlteration(id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7412
7412
  /**
7413
7413
  * Get a `queued-scene-alteration` by ID.
7414
7414
  * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
7415
7415
  * @param {*} [options] Override http request option.
7416
7416
  * @throws {RequiredError}
7417
7417
  */
7418
- getQueuedSceneAlteration(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7418
+ getQueuedSceneAlteration(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7419
7419
  /**
7420
7420
  * Get a `scene-alteration` by ID.
7421
7421
  * @param {string} id The &#x60;scene-alteration&#x60; ID.
7422
7422
  * @param {*} [options] Override http request option.
7423
7423
  * @throws {RequiredError}
7424
7424
  */
7425
- getSceneAlteration(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlteration>>;
7425
+ getSceneAlteration(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlteration>>;
7426
7426
  /**
7427
7427
  * Get `scene-alterations` for a `scene-view`.
7428
7428
  * @param {string} id The &#x60;scene-view&#x60; ID.
7429
7429
  * @param {*} [options] Override http request option.
7430
7430
  * @throws {RequiredError}
7431
7431
  */
7432
- getSceneAlterations(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlterationList>>;
7432
+ getSceneAlterations(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlterationList>>;
7433
7433
  };
7434
7434
  /**
7435
7435
  * SceneAlterationsApi - factory interface
@@ -7538,7 +7538,7 @@ export declare class SceneAlterationsApi extends BaseAPI {
7538
7538
  * @throws {RequiredError}
7539
7539
  * @memberof SceneAlterationsApi
7540
7540
  */
7541
- createSceneAlteration(requestParameters: SceneAlterationsApiCreateSceneAlterationRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
7541
+ createSceneAlteration(requestParameters: SceneAlterationsApiCreateSceneAlterationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
7542
7542
  /**
7543
7543
  * Get a `queued-scene-alteration` by ID.
7544
7544
  * @param {SceneAlterationsApiGetQueuedSceneAlterationRequest} requestParameters Request parameters.
@@ -7546,7 +7546,7 @@ export declare class SceneAlterationsApi extends BaseAPI {
7546
7546
  * @throws {RequiredError}
7547
7547
  * @memberof SceneAlterationsApi
7548
7548
  */
7549
- getQueuedSceneAlteration(requestParameters: SceneAlterationsApiGetQueuedSceneAlterationRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
7549
+ getQueuedSceneAlteration(requestParameters: SceneAlterationsApiGetQueuedSceneAlterationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
7550
7550
  /**
7551
7551
  * Get a `scene-alteration` by ID.
7552
7552
  * @param {SceneAlterationsApiGetSceneAlterationRequest} requestParameters Request parameters.
@@ -7554,7 +7554,7 @@ export declare class SceneAlterationsApi extends BaseAPI {
7554
7554
  * @throws {RequiredError}
7555
7555
  * @memberof SceneAlterationsApi
7556
7556
  */
7557
- getSceneAlteration(requestParameters: SceneAlterationsApiGetSceneAlterationRequest, options?: any): Promise<import("axios").AxiosResponse<SceneAlteration>>;
7557
+ getSceneAlteration(requestParameters: SceneAlterationsApiGetSceneAlterationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneAlteration, any>>;
7558
7558
  /**
7559
7559
  * Get `scene-alterations` for a `scene-view`.
7560
7560
  * @param {SceneAlterationsApiGetSceneAlterationsRequest} requestParameters Request parameters.
@@ -7562,7 +7562,7 @@ export declare class SceneAlterationsApi extends BaseAPI {
7562
7562
  * @throws {RequiredError}
7563
7563
  * @memberof SceneAlterationsApi
7564
7564
  */
7565
- getSceneAlterations(requestParameters: SceneAlterationsApiGetSceneAlterationsRequest, options?: any): Promise<import("axios").AxiosResponse<SceneAlterationList>>;
7565
+ getSceneAlterations(requestParameters: SceneAlterationsApiGetSceneAlterationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneAlterationList, any>>;
7566
7566
  }
7567
7567
  /**
7568
7568
  * SceneItemOverridesApi - axios parameter creator
@@ -7576,21 +7576,21 @@ export declare const SceneItemOverridesApiAxiosParamCreator: (configuration?: Co
7576
7576
  * @param {*} [options] Override http request option.
7577
7577
  * @throws {RequiredError}
7578
7578
  */
7579
- createSceneItemOverride: (id: string, createSceneItemOverrideRequest: CreateSceneItemOverrideRequest, options?: any) => Promise<RequestArgs>;
7579
+ createSceneItemOverride: (id: string, createSceneItemOverrideRequest: CreateSceneItemOverrideRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7580
7580
  /**
7581
7581
  * Delete a `scene-item-override`.
7582
7582
  * @param {string} id The &#x60;scene-item-override&#x60; ID.
7583
7583
  * @param {*} [options] Override http request option.
7584
7584
  * @throws {RequiredError}
7585
7585
  */
7586
- deleteSceneItemOverride: (id: string, options?: any) => Promise<RequestArgs>;
7586
+ deleteSceneItemOverride: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7587
7587
  /**
7588
7588
  * Get `scene-item-overrides` for a `scene-view`.
7589
7589
  * @param {string} id The &#x60;scene-view&#x60; ID.
7590
7590
  * @param {*} [options] Override http request option.
7591
7591
  * @throws {RequiredError}
7592
7592
  */
7593
- getSceneItemOverrides: (id: string, options?: any) => Promise<RequestArgs>;
7593
+ getSceneItemOverrides: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7594
7594
  /**
7595
7595
  * Update a `scene-item-override`.
7596
7596
  * @param {string} id The &#x60;scene-item-override&#x60; ID.
@@ -7598,7 +7598,7 @@ export declare const SceneItemOverridesApiAxiosParamCreator: (configuration?: Co
7598
7598
  * @param {*} [options] Override http request option.
7599
7599
  * @throws {RequiredError}
7600
7600
  */
7601
- updateSceneItemOverride: (id: string, updateSceneItemOverrideRequest: UpdateSceneItemOverrideRequest, options?: any) => Promise<RequestArgs>;
7601
+ updateSceneItemOverride: (id: string, updateSceneItemOverrideRequest: UpdateSceneItemOverrideRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7602
7602
  };
7603
7603
  /**
7604
7604
  * SceneItemOverridesApi - functional programming interface
@@ -7612,21 +7612,21 @@ export declare const SceneItemOverridesApiFp: (configuration?: Configuration | u
7612
7612
  * @param {*} [options] Override http request option.
7613
7613
  * @throws {RequiredError}
7614
7614
  */
7615
- createSceneItemOverride(id: string, createSceneItemOverrideRequest: CreateSceneItemOverrideRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverride>>;
7615
+ createSceneItemOverride(id: string, createSceneItemOverrideRequest: CreateSceneItemOverrideRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverride>>;
7616
7616
  /**
7617
7617
  * Delete a `scene-item-override`.
7618
7618
  * @param {string} id The &#x60;scene-item-override&#x60; ID.
7619
7619
  * @param {*} [options] Override http request option.
7620
7620
  * @throws {RequiredError}
7621
7621
  */
7622
- deleteSceneItemOverride(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
7622
+ deleteSceneItemOverride(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
7623
7623
  /**
7624
7624
  * Get `scene-item-overrides` for a `scene-view`.
7625
7625
  * @param {string} id The &#x60;scene-view&#x60; ID.
7626
7626
  * @param {*} [options] Override http request option.
7627
7627
  * @throws {RequiredError}
7628
7628
  */
7629
- getSceneItemOverrides(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverrideList>>;
7629
+ getSceneItemOverrides(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverrideList>>;
7630
7630
  /**
7631
7631
  * Update a `scene-item-override`.
7632
7632
  * @param {string} id The &#x60;scene-item-override&#x60; ID.
@@ -7634,7 +7634,7 @@ export declare const SceneItemOverridesApiFp: (configuration?: Configuration | u
7634
7634
  * @param {*} [options] Override http request option.
7635
7635
  * @throws {RequiredError}
7636
7636
  */
7637
- updateSceneItemOverride(id: string, updateSceneItemOverrideRequest: UpdateSceneItemOverrideRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverride>>;
7637
+ updateSceneItemOverride(id: string, updateSceneItemOverrideRequest: UpdateSceneItemOverrideRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverride>>;
7638
7638
  };
7639
7639
  /**
7640
7640
  * SceneItemOverridesApi - factory interface
@@ -7750,7 +7750,7 @@ export declare class SceneItemOverridesApi extends BaseAPI {
7750
7750
  * @throws {RequiredError}
7751
7751
  * @memberof SceneItemOverridesApi
7752
7752
  */
7753
- createSceneItemOverride(requestParameters: SceneItemOverridesApiCreateSceneItemOverrideRequest, options?: any): Promise<import("axios").AxiosResponse<SceneItemOverride>>;
7753
+ createSceneItemOverride(requestParameters: SceneItemOverridesApiCreateSceneItemOverrideRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneItemOverride, any>>;
7754
7754
  /**
7755
7755
  * Delete a `scene-item-override`.
7756
7756
  * @param {SceneItemOverridesApiDeleteSceneItemOverrideRequest} requestParameters Request parameters.
@@ -7758,7 +7758,7 @@ export declare class SceneItemOverridesApi extends BaseAPI {
7758
7758
  * @throws {RequiredError}
7759
7759
  * @memberof SceneItemOverridesApi
7760
7760
  */
7761
- deleteSceneItemOverride(requestParameters: SceneItemOverridesApiDeleteSceneItemOverrideRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
7761
+ deleteSceneItemOverride(requestParameters: SceneItemOverridesApiDeleteSceneItemOverrideRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
7762
7762
  /**
7763
7763
  * Get `scene-item-overrides` for a `scene-view`.
7764
7764
  * @param {SceneItemOverridesApiGetSceneItemOverridesRequest} requestParameters Request parameters.
@@ -7766,7 +7766,7 @@ export declare class SceneItemOverridesApi extends BaseAPI {
7766
7766
  * @throws {RequiredError}
7767
7767
  * @memberof SceneItemOverridesApi
7768
7768
  */
7769
- getSceneItemOverrides(requestParameters: SceneItemOverridesApiGetSceneItemOverridesRequest, options?: any): Promise<import("axios").AxiosResponse<SceneItemOverrideList>>;
7769
+ getSceneItemOverrides(requestParameters: SceneItemOverridesApiGetSceneItemOverridesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneItemOverrideList, any>>;
7770
7770
  /**
7771
7771
  * Update a `scene-item-override`.
7772
7772
  * @param {SceneItemOverridesApiUpdateSceneItemOverrideRequest} requestParameters Request parameters.
@@ -7774,7 +7774,7 @@ export declare class SceneItemOverridesApi extends BaseAPI {
7774
7774
  * @throws {RequiredError}
7775
7775
  * @memberof SceneItemOverridesApi
7776
7776
  */
7777
- updateSceneItemOverride(requestParameters: SceneItemOverridesApiUpdateSceneItemOverrideRequest, options?: any): Promise<import("axios").AxiosResponse<SceneItemOverride>>;
7777
+ updateSceneItemOverride(requestParameters: SceneItemOverridesApiUpdateSceneItemOverrideRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneItemOverride, any>>;
7778
7778
  }
7779
7779
  /**
7780
7780
  * SceneItemsApi - axios parameter creator
@@ -7788,28 +7788,28 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
7788
7788
  * @param {*} [options] Override http request option.
7789
7789
  * @throws {RequiredError}
7790
7790
  */
7791
- createSceneItem: (id: string, createSceneItemRequest: CreateSceneItemRequest, options?: any) => Promise<RequestArgs>;
7791
+ createSceneItem: (id: string, createSceneItemRequest: CreateSceneItemRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7792
7792
  /**
7793
7793
  * Delete a `scene-item`.
7794
7794
  * @param {string} id The &#x60;scene-item&#x60; ID.
7795
7795
  * @param {*} [options] Override http request option.
7796
7796
  * @throws {RequiredError}
7797
7797
  */
7798
- deleteSceneItem: (id: string, options?: any) => Promise<RequestArgs>;
7798
+ deleteSceneItem: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7799
7799
  /**
7800
7800
  * Get a `queued-scene-item`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `scene-item`. Once created, commit the scene via the updateScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
7801
7801
  * @param {string} id The &#x60;queued-scene-item&#x60; ID.
7802
7802
  * @param {*} [options] Override http request option.
7803
7803
  * @throws {RequiredError}
7804
7804
  */
7805
- getQueuedSceneItem: (id: string, options?: any) => Promise<RequestArgs>;
7805
+ getQueuedSceneItem: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7806
7806
  /**
7807
7807
  * Get a `queued-scene-item-deletion` by ID.
7808
7808
  * @param {string} id The &#x60;queued-scene-item-deletion&#x60; ID.
7809
7809
  * @param {*} [options] Override http request option.
7810
7810
  * @throws {RequiredError}
7811
7811
  */
7812
- getQueuedSceneItemDeletion: (id: string, options?: any) => Promise<RequestArgs>;
7812
+ getQueuedSceneItemDeletion: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7813
7813
  /**
7814
7814
  * Get a `scene-item` by ID.
7815
7815
  * @param {string} id The &#x60;scene-item&#x60; ID.
@@ -7817,7 +7817,7 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
7817
7817
  * @param {*} [options] Override http request option.
7818
7818
  * @throws {RequiredError}
7819
7819
  */
7820
- getSceneItem: (id: string, fieldsSceneItem?: string | undefined, options?: any) => Promise<RequestArgs>;
7820
+ getSceneItem: (id: string, fieldsSceneItem?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7821
7821
  /**
7822
7822
  * Get `scene-items` for a `scene`.
7823
7823
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -7829,7 +7829,7 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
7829
7829
  * @param {*} [options] Override http request option.
7830
7830
  * @throws {RequiredError}
7831
7831
  */
7832
- getSceneItems: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, options?: any) => Promise<RequestArgs>;
7832
+ getSceneItems: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7833
7833
  /**
7834
7834
  * Update a `scene-item`.
7835
7835
  * @param {string} id The &#x60;scene-item&#x60; ID.
@@ -7837,7 +7837,7 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
7837
7837
  * @param {*} [options] Override http request option.
7838
7838
  * @throws {RequiredError}
7839
7839
  */
7840
- updateSceneItem: (id: string, updateSceneItemRequest: UpdateSceneItemRequest, options?: any) => Promise<RequestArgs>;
7840
+ updateSceneItem: (id: string, updateSceneItemRequest: UpdateSceneItemRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7841
7841
  };
7842
7842
  /**
7843
7843
  * SceneItemsApi - functional programming interface
@@ -7851,28 +7851,28 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
7851
7851
  * @param {*} [options] Override http request option.
7852
7852
  * @throws {RequiredError}
7853
7853
  */
7854
- createSceneItem(id: string, createSceneItemRequest: CreateSceneItemRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7854
+ createSceneItem(id: string, createSceneItemRequest: CreateSceneItemRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7855
7855
  /**
7856
7856
  * Delete a `scene-item`.
7857
7857
  * @param {string} id The &#x60;scene-item&#x60; ID.
7858
7858
  * @param {*} [options] Override http request option.
7859
7859
  * @throws {RequiredError}
7860
7860
  */
7861
- deleteSceneItem(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
7861
+ deleteSceneItem(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
7862
7862
  /**
7863
7863
  * Get a `queued-scene-item`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `scene-item`. Once created, commit the scene via the updateScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
7864
7864
  * @param {string} id The &#x60;queued-scene-item&#x60; ID.
7865
7865
  * @param {*} [options] Override http request option.
7866
7866
  * @throws {RequiredError}
7867
7867
  */
7868
- getQueuedSceneItem(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7868
+ getQueuedSceneItem(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7869
7869
  /**
7870
7870
  * Get a `queued-scene-item-deletion` by ID.
7871
7871
  * @param {string} id The &#x60;queued-scene-item-deletion&#x60; ID.
7872
7872
  * @param {*} [options] Override http request option.
7873
7873
  * @throws {RequiredError}
7874
7874
  */
7875
- getQueuedSceneItemDeletion(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7875
+ getQueuedSceneItemDeletion(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7876
7876
  /**
7877
7877
  * Get a `scene-item` by ID.
7878
7878
  * @param {string} id The &#x60;scene-item&#x60; ID.
@@ -7880,7 +7880,7 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
7880
7880
  * @param {*} [options] Override http request option.
7881
7881
  * @throws {RequiredError}
7882
7882
  */
7883
- getSceneItem(id: string, fieldsSceneItem?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItem>>;
7883
+ getSceneItem(id: string, fieldsSceneItem?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItem>>;
7884
7884
  /**
7885
7885
  * Get `scene-items` for a `scene`.
7886
7886
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -7892,7 +7892,7 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
7892
7892
  * @param {*} [options] Override http request option.
7893
7893
  * @throws {RequiredError}
7894
7894
  */
7895
- getSceneItems(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemList>>;
7895
+ getSceneItems(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemList>>;
7896
7896
  /**
7897
7897
  * Update a `scene-item`.
7898
7898
  * @param {string} id The &#x60;scene-item&#x60; ID.
@@ -7900,7 +7900,7 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
7900
7900
  * @param {*} [options] Override http request option.
7901
7901
  * @throws {RequiredError}
7902
7902
  */
7903
- updateSceneItem(id: string, updateSceneItemRequest: UpdateSceneItemRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7903
+ updateSceneItem(id: string, updateSceneItemRequest: UpdateSceneItemRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7904
7904
  };
7905
7905
  /**
7906
7906
  * SceneItemsApi - factory interface
@@ -8118,7 +8118,7 @@ export declare class SceneItemsApi extends BaseAPI {
8118
8118
  * @throws {RequiredError}
8119
8119
  * @memberof SceneItemsApi
8120
8120
  */
8121
- createSceneItem(requestParameters: SceneItemsApiCreateSceneItemRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
8121
+ createSceneItem(requestParameters: SceneItemsApiCreateSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
8122
8122
  /**
8123
8123
  * Delete a `scene-item`.
8124
8124
  * @param {SceneItemsApiDeleteSceneItemRequest} requestParameters Request parameters.
@@ -8126,7 +8126,7 @@ export declare class SceneItemsApi extends BaseAPI {
8126
8126
  * @throws {RequiredError}
8127
8127
  * @memberof SceneItemsApi
8128
8128
  */
8129
- deleteSceneItem(requestParameters: SceneItemsApiDeleteSceneItemRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
8129
+ deleteSceneItem(requestParameters: SceneItemsApiDeleteSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8130
8130
  /**
8131
8131
  * Get a `queued-scene-item`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `scene-item`. Once created, commit the scene via the updateScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
8132
8132
  * @param {SceneItemsApiGetQueuedSceneItemRequest} requestParameters Request parameters.
@@ -8134,7 +8134,7 @@ export declare class SceneItemsApi extends BaseAPI {
8134
8134
  * @throws {RequiredError}
8135
8135
  * @memberof SceneItemsApi
8136
8136
  */
8137
- getQueuedSceneItem(requestParameters: SceneItemsApiGetQueuedSceneItemRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
8137
+ getQueuedSceneItem(requestParameters: SceneItemsApiGetQueuedSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
8138
8138
  /**
8139
8139
  * Get a `queued-scene-item-deletion` by ID.
8140
8140
  * @param {SceneItemsApiGetQueuedSceneItemDeletionRequest} requestParameters Request parameters.
@@ -8142,7 +8142,7 @@ export declare class SceneItemsApi extends BaseAPI {
8142
8142
  * @throws {RequiredError}
8143
8143
  * @memberof SceneItemsApi
8144
8144
  */
8145
- getQueuedSceneItemDeletion(requestParameters: SceneItemsApiGetQueuedSceneItemDeletionRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
8145
+ getQueuedSceneItemDeletion(requestParameters: SceneItemsApiGetQueuedSceneItemDeletionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
8146
8146
  /**
8147
8147
  * Get a `scene-item` by ID.
8148
8148
  * @param {SceneItemsApiGetSceneItemRequest} requestParameters Request parameters.
@@ -8150,7 +8150,7 @@ export declare class SceneItemsApi extends BaseAPI {
8150
8150
  * @throws {RequiredError}
8151
8151
  * @memberof SceneItemsApi
8152
8152
  */
8153
- getSceneItem(requestParameters: SceneItemsApiGetSceneItemRequest, options?: any): Promise<import("axios").AxiosResponse<SceneItem>>;
8153
+ getSceneItem(requestParameters: SceneItemsApiGetSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneItem, any>>;
8154
8154
  /**
8155
8155
  * Get `scene-items` for a `scene`.
8156
8156
  * @param {SceneItemsApiGetSceneItemsRequest} requestParameters Request parameters.
@@ -8158,7 +8158,7 @@ export declare class SceneItemsApi extends BaseAPI {
8158
8158
  * @throws {RequiredError}
8159
8159
  * @memberof SceneItemsApi
8160
8160
  */
8161
- getSceneItems(requestParameters: SceneItemsApiGetSceneItemsRequest, options?: any): Promise<import("axios").AxiosResponse<SceneItemList>>;
8161
+ getSceneItems(requestParameters: SceneItemsApiGetSceneItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneItemList, any>>;
8162
8162
  /**
8163
8163
  * Update a `scene-item`.
8164
8164
  * @param {SceneItemsApiUpdateSceneItemRequest} requestParameters Request parameters.
@@ -8166,7 +8166,7 @@ export declare class SceneItemsApi extends BaseAPI {
8166
8166
  * @throws {RequiredError}
8167
8167
  * @memberof SceneItemsApi
8168
8168
  */
8169
- updateSceneItem(requestParameters: SceneItemsApiUpdateSceneItemRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
8169
+ updateSceneItem(requestParameters: SceneItemsApiUpdateSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
8170
8170
  }
8171
8171
  /**
8172
8172
  * SceneViewStatesApi - axios parameter creator
@@ -8180,14 +8180,14 @@ export declare const SceneViewStatesApiAxiosParamCreator: (configuration?: Confi
8180
8180
  * @param {*} [options] Override http request option.
8181
8181
  * @throws {RequiredError}
8182
8182
  */
8183
- createSceneViewState: (id: string, createSceneViewStateRequest: CreateSceneViewStateRequest, options?: any) => Promise<RequestArgs>;
8183
+ createSceneViewState: (id: string, createSceneViewStateRequest: CreateSceneViewStateRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8184
8184
  /**
8185
8185
  * Delete a `scene-view-state`.
8186
8186
  * @param {string} id The &#x60;scene-view-state&#x60; ID.
8187
8187
  * @param {*} [options] Override http request option.
8188
8188
  * @throws {RequiredError}
8189
8189
  */
8190
- deleteSceneViewState: (id: string, options?: any) => Promise<RequestArgs>;
8190
+ deleteSceneViewState: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8191
8191
  /**
8192
8192
  * Get a `scene-view-state` by ID.
8193
8193
  * @param {string} id The &#x60;scene-view-state&#x60; ID.
@@ -8195,17 +8195,18 @@ export declare const SceneViewStatesApiAxiosParamCreator: (configuration?: Confi
8195
8195
  * @param {*} [options] Override http request option.
8196
8196
  * @throws {RequiredError}
8197
8197
  */
8198
- getSceneViewState: (id: string, fieldsSceneViewState?: string | undefined, options?: any) => Promise<RequestArgs>;
8198
+ getSceneViewState: (id: string, fieldsSceneViewState?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8199
8199
  /**
8200
8200
  * Get `scene-view-states` for a `scene`.
8201
8201
  * @param {string} id The &#x60;scene&#x60; ID.
8202
8202
  * @param {string} [pageCursor] The cursor for the next page of items.
8203
8203
  * @param {number} [pageSize] The number of items to return.
8204
8204
  * @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. &#x60;thumbnails&#x60; is only returned if explicitly requested.
8205
+ * @param {string} [filterId] Comma-separated list of IDs to filter on.
8205
8206
  * @param {*} [options] Override http request option.
8206
8207
  * @throws {RequiredError}
8207
8208
  */
8208
- getSceneViewStates: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, options?: any) => Promise<RequestArgs>;
8209
+ getSceneViewStates: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8209
8210
  /**
8210
8211
  * Update a `scene-view-state`.
8211
8212
  * @param {string} id The &#x60;scene-view-state&#x60; ID.
@@ -8213,7 +8214,7 @@ export declare const SceneViewStatesApiAxiosParamCreator: (configuration?: Confi
8213
8214
  * @param {*} [options] Override http request option.
8214
8215
  * @throws {RequiredError}
8215
8216
  */
8216
- updateSceneViewState: (id: string, updateSceneViewStateRequest: UpdateSceneViewStateRequest, options?: any) => Promise<RequestArgs>;
8217
+ updateSceneViewState: (id: string, updateSceneViewStateRequest: UpdateSceneViewStateRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8217
8218
  };
8218
8219
  /**
8219
8220
  * SceneViewStatesApi - functional programming interface
@@ -8227,14 +8228,14 @@ export declare const SceneViewStatesApiFp: (configuration?: Configuration | unde
8227
8228
  * @param {*} [options] Override http request option.
8228
8229
  * @throws {RequiredError}
8229
8230
  */
8230
- createSceneViewState(id: string, createSceneViewStateRequest: CreateSceneViewStateRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
8231
+ createSceneViewState(id: string, createSceneViewStateRequest: CreateSceneViewStateRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
8231
8232
  /**
8232
8233
  * Delete a `scene-view-state`.
8233
8234
  * @param {string} id The &#x60;scene-view-state&#x60; ID.
8234
8235
  * @param {*} [options] Override http request option.
8235
8236
  * @throws {RequiredError}
8236
8237
  */
8237
- deleteSceneViewState(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
8238
+ deleteSceneViewState(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
8238
8239
  /**
8239
8240
  * Get a `scene-view-state` by ID.
8240
8241
  * @param {string} id The &#x60;scene-view-state&#x60; ID.
@@ -8242,17 +8243,18 @@ export declare const SceneViewStatesApiFp: (configuration?: Configuration | unde
8242
8243
  * @param {*} [options] Override http request option.
8243
8244
  * @throws {RequiredError}
8244
8245
  */
8245
- getSceneViewState(id: string, fieldsSceneViewState?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
8246
+ getSceneViewState(id: string, fieldsSceneViewState?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
8246
8247
  /**
8247
8248
  * Get `scene-view-states` for a `scene`.
8248
8249
  * @param {string} id The &#x60;scene&#x60; ID.
8249
8250
  * @param {string} [pageCursor] The cursor for the next page of items.
8250
8251
  * @param {number} [pageSize] The number of items to return.
8251
8252
  * @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. &#x60;thumbnails&#x60; is only returned if explicitly requested.
8253
+ * @param {string} [filterId] Comma-separated list of IDs to filter on.
8252
8254
  * @param {*} [options] Override http request option.
8253
8255
  * @throws {RequiredError}
8254
8256
  */
8255
- getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewStateList>>;
8257
+ getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewStateList>>;
8256
8258
  /**
8257
8259
  * Update a `scene-view-state`.
8258
8260
  * @param {string} id The &#x60;scene-view-state&#x60; ID.
@@ -8260,7 +8262,7 @@ export declare const SceneViewStatesApiFp: (configuration?: Configuration | unde
8260
8262
  * @param {*} [options] Override http request option.
8261
8263
  * @throws {RequiredError}
8262
8264
  */
8263
- updateSceneViewState(id: string, updateSceneViewStateRequest: UpdateSceneViewStateRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
8265
+ updateSceneViewState(id: string, updateSceneViewStateRequest: UpdateSceneViewStateRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
8264
8266
  };
8265
8267
  /**
8266
8268
  * SceneViewStatesApi - factory interface
@@ -8296,10 +8298,11 @@ export declare const SceneViewStatesApiFactory: (configuration?: Configuration |
8296
8298
  * @param {string} [pageCursor] The cursor for the next page of items.
8297
8299
  * @param {number} [pageSize] The number of items to return.
8298
8300
  * @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. &#x60;thumbnails&#x60; is only returned if explicitly requested.
8301
+ * @param {string} [filterId] Comma-separated list of IDs to filter on.
8299
8302
  * @param {*} [options] Override http request option.
8300
8303
  * @throws {RequiredError}
8301
8304
  */
8302
- getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, options?: any): AxiosPromise<SceneViewStateList>;
8305
+ getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, options?: any): AxiosPromise<SceneViewStateList>;
8303
8306
  /**
8304
8307
  * Update a `scene-view-state`.
8305
8308
  * @param {string} id The &#x60;scene-view-state&#x60; ID.
@@ -8390,6 +8393,12 @@ export interface SceneViewStatesApiGetSceneViewStatesRequest {
8390
8393
  * @memberof SceneViewStatesApiGetSceneViewStates
8391
8394
  */
8392
8395
  readonly fieldsSceneViewState?: string;
8396
+ /**
8397
+ * Comma-separated list of IDs to filter on.
8398
+ * @type {string}
8399
+ * @memberof SceneViewStatesApiGetSceneViewStates
8400
+ */
8401
+ readonly filterId?: string;
8393
8402
  }
8394
8403
  /**
8395
8404
  * Request parameters for updateSceneViewState operation in SceneViewStatesApi.
@@ -8424,7 +8433,7 @@ export declare class SceneViewStatesApi extends BaseAPI {
8424
8433
  * @throws {RequiredError}
8425
8434
  * @memberof SceneViewStatesApi
8426
8435
  */
8427
- createSceneViewState(requestParameters: SceneViewStatesApiCreateSceneViewStateRequest, options?: any): Promise<import("axios").AxiosResponse<SceneViewState>>;
8436
+ createSceneViewState(requestParameters: SceneViewStatesApiCreateSceneViewStateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewState, any>>;
8428
8437
  /**
8429
8438
  * Delete a `scene-view-state`.
8430
8439
  * @param {SceneViewStatesApiDeleteSceneViewStateRequest} requestParameters Request parameters.
@@ -8432,7 +8441,7 @@ export declare class SceneViewStatesApi extends BaseAPI {
8432
8441
  * @throws {RequiredError}
8433
8442
  * @memberof SceneViewStatesApi
8434
8443
  */
8435
- deleteSceneViewState(requestParameters: SceneViewStatesApiDeleteSceneViewStateRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
8444
+ deleteSceneViewState(requestParameters: SceneViewStatesApiDeleteSceneViewStateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8436
8445
  /**
8437
8446
  * Get a `scene-view-state` by ID.
8438
8447
  * @param {SceneViewStatesApiGetSceneViewStateRequest} requestParameters Request parameters.
@@ -8440,7 +8449,7 @@ export declare class SceneViewStatesApi extends BaseAPI {
8440
8449
  * @throws {RequiredError}
8441
8450
  * @memberof SceneViewStatesApi
8442
8451
  */
8443
- getSceneViewState(requestParameters: SceneViewStatesApiGetSceneViewStateRequest, options?: any): Promise<import("axios").AxiosResponse<SceneViewState>>;
8452
+ getSceneViewState(requestParameters: SceneViewStatesApiGetSceneViewStateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewState, any>>;
8444
8453
  /**
8445
8454
  * Get `scene-view-states` for a `scene`.
8446
8455
  * @param {SceneViewStatesApiGetSceneViewStatesRequest} requestParameters Request parameters.
@@ -8448,7 +8457,7 @@ export declare class SceneViewStatesApi extends BaseAPI {
8448
8457
  * @throws {RequiredError}
8449
8458
  * @memberof SceneViewStatesApi
8450
8459
  */
8451
- getSceneViewStates(requestParameters: SceneViewStatesApiGetSceneViewStatesRequest, options?: any): Promise<import("axios").AxiosResponse<SceneViewStateList>>;
8460
+ getSceneViewStates(requestParameters: SceneViewStatesApiGetSceneViewStatesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewStateList, any>>;
8452
8461
  /**
8453
8462
  * Update a `scene-view-state`.
8454
8463
  * @param {SceneViewStatesApiUpdateSceneViewStateRequest} requestParameters Request parameters.
@@ -8456,7 +8465,7 @@ export declare class SceneViewStatesApi extends BaseAPI {
8456
8465
  * @throws {RequiredError}
8457
8466
  * @memberof SceneViewStatesApi
8458
8467
  */
8459
- updateSceneViewState(requestParameters: SceneViewStatesApiUpdateSceneViewStateRequest, options?: any): Promise<import("axios").AxiosResponse<SceneViewState>>;
8468
+ updateSceneViewState(requestParameters: SceneViewStatesApiUpdateSceneViewStateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewState, any>>;
8460
8469
  }
8461
8470
  /**
8462
8471
  * SceneViewsApi - axios parameter creator
@@ -8470,21 +8479,21 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
8470
8479
  * @param {*} [options] Override http request option.
8471
8480
  * @throws {RequiredError}
8472
8481
  */
8473
- createSceneView: (id: string, createSceneViewRequest: CreateSceneViewRequest, options?: any) => Promise<RequestArgs>;
8482
+ createSceneView: (id: string, createSceneViewRequest: CreateSceneViewRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8474
8483
  /**
8475
8484
  * Delete a `scene-view`.
8476
8485
  * @param {string} id The &#x60;scene-view&#x60; ID.
8477
8486
  * @param {*} [options] Override http request option.
8478
8487
  * @throws {RequiredError}
8479
8488
  */
8480
- deleteSceneView: (id: string, options?: any) => Promise<RequestArgs>;
8489
+ deleteSceneView: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8481
8490
  /**
8482
8491
  * Get a `scene-view` by ID.
8483
8492
  * @param {string} id The &#x60;scene-view&#x60; ID.
8484
8493
  * @param {*} [options] Override http request option.
8485
8494
  * @throws {RequiredError}
8486
8495
  */
8487
- getSceneView: (id: string, options?: any) => Promise<RequestArgs>;
8496
+ getSceneView: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8488
8497
  /**
8489
8498
  * Get `scene-view`s for a `scene`.
8490
8499
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8493,7 +8502,7 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
8493
8502
  * @param {*} [options] Override http request option.
8494
8503
  * @throws {RequiredError}
8495
8504
  */
8496
- getSceneViews: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any) => Promise<RequestArgs>;
8505
+ getSceneViews: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8497
8506
  /**
8498
8507
  * Get a `scene-item` within a view by ID.
8499
8508
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -8503,7 +8512,7 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
8503
8512
  * @param {*} [options] Override http request option.
8504
8513
  * @throws {RequiredError}
8505
8514
  */
8506
- getViewSceneItem: (id: string, itemId: string, fieldsSceneItem?: string | undefined, include?: string | undefined, options?: any) => Promise<RequestArgs>;
8515
+ getViewSceneItem: (id: string, itemId: string, fieldsSceneItem?: string | undefined, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8507
8516
  /**
8508
8517
  * Get a rendered image of a `scene-view`. If a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
8509
8518
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -8512,7 +8521,7 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
8512
8521
  * @param {*} [options] Override http request option.
8513
8522
  * @throws {RequiredError}
8514
8523
  */
8515
- renderSceneView: (id: string, height?: number | undefined, width?: number | undefined, options?: any) => Promise<RequestArgs>;
8524
+ renderSceneView: (id: string, height?: number | undefined, width?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8516
8525
  /**
8517
8526
  * Update a `scene-view`.
8518
8527
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -8520,7 +8529,7 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
8520
8529
  * @param {*} [options] Override http request option.
8521
8530
  * @throws {RequiredError}
8522
8531
  */
8523
- updateSceneView: (id: string, updateSceneViewRequest: UpdateSceneViewRequest, options?: any) => Promise<RequestArgs>;
8532
+ updateSceneView: (id: string, updateSceneViewRequest: UpdateSceneViewRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8524
8533
  };
8525
8534
  /**
8526
8535
  * SceneViewsApi - functional programming interface
@@ -8534,21 +8543,21 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
8534
8543
  * @param {*} [options] Override http request option.
8535
8544
  * @throws {RequiredError}
8536
8545
  */
8537
- createSceneView(id: string, createSceneViewRequest: CreateSceneViewRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
8546
+ createSceneView(id: string, createSceneViewRequest: CreateSceneViewRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
8538
8547
  /**
8539
8548
  * Delete a `scene-view`.
8540
8549
  * @param {string} id The &#x60;scene-view&#x60; ID.
8541
8550
  * @param {*} [options] Override http request option.
8542
8551
  * @throws {RequiredError}
8543
8552
  */
8544
- deleteSceneView(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
8553
+ deleteSceneView(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
8545
8554
  /**
8546
8555
  * Get a `scene-view` by ID.
8547
8556
  * @param {string} id The &#x60;scene-view&#x60; ID.
8548
8557
  * @param {*} [options] Override http request option.
8549
8558
  * @throws {RequiredError}
8550
8559
  */
8551
- getSceneView(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
8560
+ getSceneView(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
8552
8561
  /**
8553
8562
  * Get `scene-view`s for a `scene`.
8554
8563
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8557,7 +8566,7 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
8557
8566
  * @param {*} [options] Override http request option.
8558
8567
  * @throws {RequiredError}
8559
8568
  */
8560
- getSceneViews(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewList>>;
8569
+ getSceneViews(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewList>>;
8561
8570
  /**
8562
8571
  * Get a `scene-item` within a view by ID.
8563
8572
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -8567,7 +8576,7 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
8567
8576
  * @param {*} [options] Override http request option.
8568
8577
  * @throws {RequiredError}
8569
8578
  */
8570
- getViewSceneItem(id: string, itemId: string, fieldsSceneItem?: string | undefined, include?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewItem>>;
8579
+ getViewSceneItem(id: string, itemId: string, fieldsSceneItem?: string | undefined, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewItem>>;
8571
8580
  /**
8572
8581
  * Get a rendered image of a `scene-view`. If a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
8573
8582
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -8576,7 +8585,7 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
8576
8585
  * @param {*} [options] Override http request option.
8577
8586
  * @throws {RequiredError}
8578
8587
  */
8579
- renderSceneView(id: string, height?: number | undefined, width?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
8588
+ renderSceneView(id: string, height?: number | undefined, width?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
8580
8589
  /**
8581
8590
  * Update a `scene-view`.
8582
8591
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -8584,7 +8593,7 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
8584
8593
  * @param {*} [options] Override http request option.
8585
8594
  * @throws {RequiredError}
8586
8595
  */
8587
- updateSceneView(id: string, updateSceneViewRequest: UpdateSceneViewRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
8596
+ updateSceneView(id: string, updateSceneViewRequest: UpdateSceneViewRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
8588
8597
  };
8589
8598
  /**
8590
8599
  * SceneViewsApi - factory interface
@@ -8809,7 +8818,7 @@ export declare class SceneViewsApi extends BaseAPI {
8809
8818
  * @throws {RequiredError}
8810
8819
  * @memberof SceneViewsApi
8811
8820
  */
8812
- createSceneView(requestParameters: SceneViewsApiCreateSceneViewRequest, options?: any): Promise<import("axios").AxiosResponse<SceneView>>;
8821
+ createSceneView(requestParameters: SceneViewsApiCreateSceneViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneView, any>>;
8813
8822
  /**
8814
8823
  * Delete a `scene-view`.
8815
8824
  * @param {SceneViewsApiDeleteSceneViewRequest} requestParameters Request parameters.
@@ -8817,7 +8826,7 @@ export declare class SceneViewsApi extends BaseAPI {
8817
8826
  * @throws {RequiredError}
8818
8827
  * @memberof SceneViewsApi
8819
8828
  */
8820
- deleteSceneView(requestParameters: SceneViewsApiDeleteSceneViewRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
8829
+ deleteSceneView(requestParameters: SceneViewsApiDeleteSceneViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8821
8830
  /**
8822
8831
  * Get a `scene-view` by ID.
8823
8832
  * @param {SceneViewsApiGetSceneViewRequest} requestParameters Request parameters.
@@ -8825,7 +8834,7 @@ export declare class SceneViewsApi extends BaseAPI {
8825
8834
  * @throws {RequiredError}
8826
8835
  * @memberof SceneViewsApi
8827
8836
  */
8828
- getSceneView(requestParameters: SceneViewsApiGetSceneViewRequest, options?: any): Promise<import("axios").AxiosResponse<SceneView>>;
8837
+ getSceneView(requestParameters: SceneViewsApiGetSceneViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneView, any>>;
8829
8838
  /**
8830
8839
  * Get `scene-view`s for a `scene`.
8831
8840
  * @param {SceneViewsApiGetSceneViewsRequest} requestParameters Request parameters.
@@ -8833,7 +8842,7 @@ export declare class SceneViewsApi extends BaseAPI {
8833
8842
  * @throws {RequiredError}
8834
8843
  * @memberof SceneViewsApi
8835
8844
  */
8836
- getSceneViews(requestParameters: SceneViewsApiGetSceneViewsRequest, options?: any): Promise<import("axios").AxiosResponse<SceneViewList>>;
8845
+ getSceneViews(requestParameters: SceneViewsApiGetSceneViewsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewList, any>>;
8837
8846
  /**
8838
8847
  * Get a `scene-item` within a view by ID.
8839
8848
  * @param {SceneViewsApiGetViewSceneItemRequest} requestParameters Request parameters.
@@ -8841,7 +8850,7 @@ export declare class SceneViewsApi extends BaseAPI {
8841
8850
  * @throws {RequiredError}
8842
8851
  * @memberof SceneViewsApi
8843
8852
  */
8844
- getViewSceneItem(requestParameters: SceneViewsApiGetViewSceneItemRequest, options?: any): Promise<import("axios").AxiosResponse<SceneViewItem>>;
8853
+ getViewSceneItem(requestParameters: SceneViewsApiGetViewSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewItem, any>>;
8845
8854
  /**
8846
8855
  * Get a rendered image of a `scene-view`. If a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
8847
8856
  * @param {SceneViewsApiRenderSceneViewRequest} requestParameters Request parameters.
@@ -8849,7 +8858,7 @@ export declare class SceneViewsApi extends BaseAPI {
8849
8858
  * @throws {RequiredError}
8850
8859
  * @memberof SceneViewsApi
8851
8860
  */
8852
- renderSceneView(requestParameters: SceneViewsApiRenderSceneViewRequest, options?: any): Promise<import("axios").AxiosResponse<any>>;
8861
+ renderSceneView(requestParameters: SceneViewsApiRenderSceneViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
8853
8862
  /**
8854
8863
  * Update a `scene-view`.
8855
8864
  * @param {SceneViewsApiUpdateSceneViewRequest} requestParameters Request parameters.
@@ -8857,7 +8866,7 @@ export declare class SceneViewsApi extends BaseAPI {
8857
8866
  * @throws {RequiredError}
8858
8867
  * @memberof SceneViewsApi
8859
8868
  */
8860
- updateSceneView(requestParameters: SceneViewsApiUpdateSceneViewRequest, options?: any): Promise<import("axios").AxiosResponse<SceneView>>;
8869
+ updateSceneView(requestParameters: SceneViewsApiUpdateSceneViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneView, any>>;
8861
8870
  }
8862
8871
  /**
8863
8872
  * ScenesApi - axios parameter creator
@@ -8870,21 +8879,21 @@ export declare const ScenesApiAxiosParamCreator: (configuration?: Configuration
8870
8879
  * @param {*} [options] Override http request option.
8871
8880
  * @throws {RequiredError}
8872
8881
  */
8873
- createScene: (createSceneRequest: CreateSceneRequest, options?: any) => Promise<RequestArgs>;
8882
+ createScene: (createSceneRequest: CreateSceneRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8874
8883
  /**
8875
8884
  * Delete a `scene`.
8876
8885
  * @param {string} id The &#x60;scene&#x60; ID.
8877
8886
  * @param {*} [options] Override http request option.
8878
8887
  * @throws {RequiredError}
8879
8888
  */
8880
- deleteScene: (id: string, options?: any) => Promise<RequestArgs>;
8889
+ deleteScene: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8881
8890
  /**
8882
8891
  * Get a `queued-scene`.
8883
8892
  * @param {string} id The &#x60;scene&#x60; ID.
8884
8893
  * @param {*} [options] Override http request option.
8885
8894
  * @throws {RequiredError}
8886
8895
  */
8887
- getQueuedScene: (id: string, options?: any) => Promise<RequestArgs>;
8896
+ getQueuedScene: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8888
8897
  /**
8889
8898
  * Get a `scene` by ID.
8890
8899
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8892,16 +8901,17 @@ export declare const ScenesApiAxiosParamCreator: (configuration?: Configuration
8892
8901
  * @param {*} [options] Override http request option.
8893
8902
  * @throws {RequiredError}
8894
8903
  */
8895
- getScene: (id: string, fieldsScene?: string | undefined, options?: any) => Promise<RequestArgs>;
8904
+ getScene: (id: string, fieldsScene?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8896
8905
  /**
8897
8906
  * Get `scenes`.
8898
8907
  * @param {string} [pageCursor] The cursor for the next page of items.
8899
8908
  * @param {number} [pageSize] The number of items to return.
8909
+ * @param {string} [filterName] Comma-separated list of names to filter on.
8900
8910
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
8901
8911
  * @param {*} [options] Override http request option.
8902
8912
  * @throws {RequiredError}
8903
8913
  */
8904
- getScenes: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any) => Promise<RequestArgs>;
8914
+ getScenes: (pageCursor?: string | undefined, pageSize?: number | undefined, filterName?: string | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8905
8915
  /**
8906
8916
  * Get a rendered image of a `scene`. If only a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
8907
8917
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8910,7 +8920,7 @@ export declare const ScenesApiAxiosParamCreator: (configuration?: Configuration
8910
8920
  * @param {*} [options] Override http request option.
8911
8921
  * @throws {RequiredError}
8912
8922
  */
8913
- renderScene: (id: string, height?: number | undefined, width?: number | undefined, options?: any) => Promise<RequestArgs>;
8923
+ renderScene: (id: string, height?: number | undefined, width?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8914
8924
  /**
8915
8925
  * Update a `scene` camera and/or state. Once updated, view the scene via the renderScene API or with the Viewer SDK. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
8916
8926
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8918,7 +8928,7 @@ export declare const ScenesApiAxiosParamCreator: (configuration?: Configuration
8918
8928
  * @param {*} [options] Override http request option.
8919
8929
  * @throws {RequiredError}
8920
8930
  */
8921
- updateScene: (id: string, updateSceneRequest: UpdateSceneRequest, options?: any) => Promise<RequestArgs>;
8931
+ updateScene: (id: string, updateSceneRequest: UpdateSceneRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8922
8932
  };
8923
8933
  /**
8924
8934
  * ScenesApi - functional programming interface
@@ -8931,21 +8941,21 @@ export declare const ScenesApiFp: (configuration?: Configuration | undefined) =>
8931
8941
  * @param {*} [options] Override http request option.
8932
8942
  * @throws {RequiredError}
8933
8943
  */
8934
- createScene(createSceneRequest: CreateSceneRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
8944
+ createScene(createSceneRequest: CreateSceneRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
8935
8945
  /**
8936
8946
  * Delete a `scene`.
8937
8947
  * @param {string} id The &#x60;scene&#x60; ID.
8938
8948
  * @param {*} [options] Override http request option.
8939
8949
  * @throws {RequiredError}
8940
8950
  */
8941
- deleteScene(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
8951
+ deleteScene(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
8942
8952
  /**
8943
8953
  * Get a `queued-scene`.
8944
8954
  * @param {string} id The &#x60;scene&#x60; ID.
8945
8955
  * @param {*} [options] Override http request option.
8946
8956
  * @throws {RequiredError}
8947
8957
  */
8948
- getQueuedScene(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
8958
+ getQueuedScene(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
8949
8959
  /**
8950
8960
  * Get a `scene` by ID.
8951
8961
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8953,16 +8963,17 @@ export declare const ScenesApiFp: (configuration?: Configuration | undefined) =>
8953
8963
  * @param {*} [options] Override http request option.
8954
8964
  * @throws {RequiredError}
8955
8965
  */
8956
- getScene(id: string, fieldsScene?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
8966
+ getScene(id: string, fieldsScene?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
8957
8967
  /**
8958
8968
  * Get `scenes`.
8959
8969
  * @param {string} [pageCursor] The cursor for the next page of items.
8960
8970
  * @param {number} [pageSize] The number of items to return.
8971
+ * @param {string} [filterName] Comma-separated list of names to filter on.
8961
8972
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
8962
8973
  * @param {*} [options] Override http request option.
8963
8974
  * @throws {RequiredError}
8964
8975
  */
8965
- getScenes(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneList>>;
8976
+ getScenes(pageCursor?: string | undefined, pageSize?: number | undefined, filterName?: string | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneList>>;
8966
8977
  /**
8967
8978
  * Get a rendered image of a `scene`. If only a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
8968
8979
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8971,7 +8982,7 @@ export declare const ScenesApiFp: (configuration?: Configuration | undefined) =>
8971
8982
  * @param {*} [options] Override http request option.
8972
8983
  * @throws {RequiredError}
8973
8984
  */
8974
- renderScene(id: string, height?: number | undefined, width?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
8985
+ renderScene(id: string, height?: number | undefined, width?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
8975
8986
  /**
8976
8987
  * Update a `scene` camera and/or state. Once updated, view the scene via the renderScene API or with the Viewer SDK. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
8977
8988
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8979,7 +8990,7 @@ export declare const ScenesApiFp: (configuration?: Configuration | undefined) =>
8979
8990
  * @param {*} [options] Override http request option.
8980
8991
  * @throws {RequiredError}
8981
8992
  */
8982
- updateScene(id: string, updateSceneRequest: UpdateSceneRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
8993
+ updateScene(id: string, updateSceneRequest: UpdateSceneRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
8983
8994
  };
8984
8995
  /**
8985
8996
  * ScenesApi - factory interface
@@ -9019,11 +9030,12 @@ export declare const ScenesApiFactory: (configuration?: Configuration | undefine
9019
9030
  * Get `scenes`.
9020
9031
  * @param {string} [pageCursor] The cursor for the next page of items.
9021
9032
  * @param {number} [pageSize] The number of items to return.
9033
+ * @param {string} [filterName] Comma-separated list of names to filter on.
9022
9034
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
9023
9035
  * @param {*} [options] Override http request option.
9024
9036
  * @throws {RequiredError}
9025
9037
  */
9026
- getScenes(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): AxiosPromise<SceneList>;
9038
+ getScenes(pageCursor?: string | undefined, pageSize?: number | undefined, filterName?: string | undefined, filterSuppliedId?: string | undefined, options?: any): AxiosPromise<SceneList>;
9027
9039
  /**
9028
9040
  * Get a rendered image of a `scene`. If only a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
9029
9041
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -9118,6 +9130,12 @@ export interface ScenesApiGetScenesRequest {
9118
9130
  * @memberof ScenesApiGetScenes
9119
9131
  */
9120
9132
  readonly pageSize?: number;
9133
+ /**
9134
+ * Comma-separated list of names to filter on.
9135
+ * @type {string}
9136
+ * @memberof ScenesApiGetScenes
9137
+ */
9138
+ readonly filterName?: string;
9121
9139
  /**
9122
9140
  * Comma-separated list of supplied IDs to filter on.
9123
9141
  * @type {string}
@@ -9183,7 +9201,7 @@ export declare class ScenesApi extends BaseAPI {
9183
9201
  * @throws {RequiredError}
9184
9202
  * @memberof ScenesApi
9185
9203
  */
9186
- createScene(requestParameters: ScenesApiCreateSceneRequest, options?: any): Promise<import("axios").AxiosResponse<Scene>>;
9204
+ createScene(requestParameters: ScenesApiCreateSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Scene, any>>;
9187
9205
  /**
9188
9206
  * Delete a `scene`.
9189
9207
  * @param {ScenesApiDeleteSceneRequest} requestParameters Request parameters.
@@ -9191,7 +9209,7 @@ export declare class ScenesApi extends BaseAPI {
9191
9209
  * @throws {RequiredError}
9192
9210
  * @memberof ScenesApi
9193
9211
  */
9194
- deleteScene(requestParameters: ScenesApiDeleteSceneRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
9212
+ deleteScene(requestParameters: ScenesApiDeleteSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
9195
9213
  /**
9196
9214
  * Get a `queued-scene`.
9197
9215
  * @param {ScenesApiGetQueuedSceneRequest} requestParameters Request parameters.
@@ -9199,7 +9217,7 @@ export declare class ScenesApi extends BaseAPI {
9199
9217
  * @throws {RequiredError}
9200
9218
  * @memberof ScenesApi
9201
9219
  */
9202
- getQueuedScene(requestParameters: ScenesApiGetQueuedSceneRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
9220
+ getQueuedScene(requestParameters: ScenesApiGetQueuedSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
9203
9221
  /**
9204
9222
  * Get a `scene` by ID.
9205
9223
  * @param {ScenesApiGetSceneRequest} requestParameters Request parameters.
@@ -9207,7 +9225,7 @@ export declare class ScenesApi extends BaseAPI {
9207
9225
  * @throws {RequiredError}
9208
9226
  * @memberof ScenesApi
9209
9227
  */
9210
- getScene(requestParameters: ScenesApiGetSceneRequest, options?: any): Promise<import("axios").AxiosResponse<Scene>>;
9228
+ getScene(requestParameters: ScenesApiGetSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Scene, any>>;
9211
9229
  /**
9212
9230
  * Get `scenes`.
9213
9231
  * @param {ScenesApiGetScenesRequest} requestParameters Request parameters.
@@ -9215,7 +9233,7 @@ export declare class ScenesApi extends BaseAPI {
9215
9233
  * @throws {RequiredError}
9216
9234
  * @memberof ScenesApi
9217
9235
  */
9218
- getScenes(requestParameters?: ScenesApiGetScenesRequest, options?: any): Promise<import("axios").AxiosResponse<SceneList>>;
9236
+ getScenes(requestParameters?: ScenesApiGetScenesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneList, any>>;
9219
9237
  /**
9220
9238
  * Get a rendered image of a `scene`. If only a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
9221
9239
  * @param {ScenesApiRenderSceneRequest} requestParameters Request parameters.
@@ -9223,7 +9241,7 @@ export declare class ScenesApi extends BaseAPI {
9223
9241
  * @throws {RequiredError}
9224
9242
  * @memberof ScenesApi
9225
9243
  */
9226
- renderScene(requestParameters: ScenesApiRenderSceneRequest, options?: any): Promise<import("axios").AxiosResponse<any>>;
9244
+ renderScene(requestParameters: ScenesApiRenderSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
9227
9245
  /**
9228
9246
  * Update a `scene` camera and/or state. Once updated, view the scene via the renderScene API or with the Viewer SDK. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
9229
9247
  * @param {ScenesApiUpdateSceneRequest} requestParameters Request parameters.
@@ -9231,7 +9249,7 @@ export declare class ScenesApi extends BaseAPI {
9231
9249
  * @throws {RequiredError}
9232
9250
  * @memberof ScenesApi
9233
9251
  */
9234
- updateScene(requestParameters: ScenesApiUpdateSceneRequest, options?: any): Promise<import("axios").AxiosResponse<Scene>>;
9252
+ updateScene(requestParameters: ScenesApiUpdateSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Scene, any>>;
9235
9253
  }
9236
9254
  /**
9237
9255
  * StreamKeysApi - axios parameter creator
@@ -9245,14 +9263,14 @@ export declare const StreamKeysApiAxiosParamCreator: (configuration?: Configurat
9245
9263
  * @param {*} [options] Override http request option.
9246
9264
  * @throws {RequiredError}
9247
9265
  */
9248
- createSceneStreamKey: (id: string, createStreamKeyRequest: CreateStreamKeyRequest, options?: any) => Promise<RequestArgs>;
9266
+ createSceneStreamKey: (id: string, createStreamKeyRequest: CreateStreamKeyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9249
9267
  /**
9250
9268
  * Delete a `stream-key`.
9251
9269
  * @param {string} id The &#x60;stream-key&#x60; ID.
9252
9270
  * @param {*} [options] Override http request option.
9253
9271
  * @throws {RequiredError}
9254
9272
  */
9255
- deleteStreamKey: (id: string, options?: any) => Promise<RequestArgs>;
9273
+ deleteStreamKey: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9256
9274
  /**
9257
9275
  * Get `stream-key`s.
9258
9276
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -9261,7 +9279,7 @@ export declare const StreamKeysApiAxiosParamCreator: (configuration?: Configurat
9261
9279
  * @param {*} [options] Override http request option.
9262
9280
  * @throws {RequiredError}
9263
9281
  */
9264
- getStreamKeys: (pageCursor?: string | undefined, pageSize?: number | undefined, filterKey?: string | undefined, options?: any) => Promise<RequestArgs>;
9282
+ getStreamKeys: (pageCursor?: string | undefined, pageSize?: number | undefined, filterKey?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9265
9283
  };
9266
9284
  /**
9267
9285
  * StreamKeysApi - functional programming interface
@@ -9275,14 +9293,14 @@ export declare const StreamKeysApiFp: (configuration?: Configuration | undefined
9275
9293
  * @param {*} [options] Override http request option.
9276
9294
  * @throws {RequiredError}
9277
9295
  */
9278
- createSceneStreamKey(id: string, createStreamKeyRequest: CreateStreamKeyRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<StreamKey>>;
9296
+ createSceneStreamKey(id: string, createStreamKeyRequest: CreateStreamKeyRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<StreamKey>>;
9279
9297
  /**
9280
9298
  * Delete a `stream-key`.
9281
9299
  * @param {string} id The &#x60;stream-key&#x60; ID.
9282
9300
  * @param {*} [options] Override http request option.
9283
9301
  * @throws {RequiredError}
9284
9302
  */
9285
- deleteStreamKey(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
9303
+ deleteStreamKey(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
9286
9304
  /**
9287
9305
  * Get `stream-key`s.
9288
9306
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -9291,7 +9309,7 @@ export declare const StreamKeysApiFp: (configuration?: Configuration | undefined
9291
9309
  * @param {*} [options] Override http request option.
9292
9310
  * @throws {RequiredError}
9293
9311
  */
9294
- getStreamKeys(pageCursor?: string | undefined, pageSize?: number | undefined, filterKey?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<StreamKeyList>>;
9312
+ getStreamKeys(pageCursor?: string | undefined, pageSize?: number | undefined, filterKey?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<StreamKeyList>>;
9295
9313
  };
9296
9314
  /**
9297
9315
  * StreamKeysApi - factory interface
@@ -9394,7 +9412,7 @@ export declare class StreamKeysApi extends BaseAPI {
9394
9412
  * @throws {RequiredError}
9395
9413
  * @memberof StreamKeysApi
9396
9414
  */
9397
- createSceneStreamKey(requestParameters: StreamKeysApiCreateSceneStreamKeyRequest, options?: any): Promise<import("axios").AxiosResponse<StreamKey>>;
9415
+ createSceneStreamKey(requestParameters: StreamKeysApiCreateSceneStreamKeyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<StreamKey, any>>;
9398
9416
  /**
9399
9417
  * Delete a `stream-key`.
9400
9418
  * @param {StreamKeysApiDeleteStreamKeyRequest} requestParameters Request parameters.
@@ -9402,7 +9420,7 @@ export declare class StreamKeysApi extends BaseAPI {
9402
9420
  * @throws {RequiredError}
9403
9421
  * @memberof StreamKeysApi
9404
9422
  */
9405
- deleteStreamKey(requestParameters: StreamKeysApiDeleteStreamKeyRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
9423
+ deleteStreamKey(requestParameters: StreamKeysApiDeleteStreamKeyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
9406
9424
  /**
9407
9425
  * Get `stream-key`s.
9408
9426
  * @param {StreamKeysApiGetStreamKeysRequest} requestParameters Request parameters.
@@ -9410,7 +9428,7 @@ export declare class StreamKeysApi extends BaseAPI {
9410
9428
  * @throws {RequiredError}
9411
9429
  * @memberof StreamKeysApi
9412
9430
  */
9413
- getStreamKeys(requestParameters?: StreamKeysApiGetStreamKeysRequest, options?: any): Promise<import("axios").AxiosResponse<StreamKeyList>>;
9431
+ getStreamKeys(requestParameters?: StreamKeysApiGetStreamKeysRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<StreamKeyList, any>>;
9414
9432
  }
9415
9433
  /**
9416
9434
  * TranslationInspectionsApi - axios parameter creator
@@ -9423,21 +9441,21 @@ export declare const TranslationInspectionsApiAxiosParamCreator: (configuration?
9423
9441
  * @param {*} [options] Override http request option.
9424
9442
  * @throws {RequiredError}
9425
9443
  */
9426
- createTranslationInspection: (createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?: any) => Promise<RequestArgs>;
9444
+ createTranslationInspection: (createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9427
9445
  /**
9428
9446
  * Get a `translation-inspection` by ID.
9429
9447
  * @param {string} id The &#x60;translation-inspection&#x60; ID.
9430
9448
  * @param {*} [options] Override http request option.
9431
9449
  * @throws {RequiredError}
9432
9450
  */
9433
- getInspectionJob: (id: string, options?: any) => Promise<RequestArgs>;
9451
+ getInspectionJob: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9434
9452
  /**
9435
9453
  * Get a `queued-translation`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `part-revision`. Once created, create scenes via the createScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
9436
9454
  * @param {string} id The &#x60;queued-translation&#x60; ID.
9437
9455
  * @param {*} [options] Override http request option.
9438
9456
  * @throws {RequiredError}
9439
9457
  */
9440
- getQueuedTranslation: (id: string, options?: any) => Promise<RequestArgs>;
9458
+ getQueuedTranslation: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9441
9459
  /**
9442
9460
  * Get `queued-translation`s.
9443
9461
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -9446,7 +9464,7 @@ export declare const TranslationInspectionsApiAxiosParamCreator: (configuration?
9446
9464
  * @param {*} [options] Override http request option.
9447
9465
  * @throws {RequiredError}
9448
9466
  */
9449
- getQueuedTranslations: (pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: any) => Promise<RequestArgs>;
9467
+ getQueuedTranslations: (pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9450
9468
  };
9451
9469
  /**
9452
9470
  * TranslationInspectionsApi - functional programming interface
@@ -9459,21 +9477,21 @@ export declare const TranslationInspectionsApiFp: (configuration?: Configuration
9459
9477
  * @param {*} [options] Override http request option.
9460
9478
  * @throws {RequiredError}
9461
9479
  */
9462
- createTranslationInspection(createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
9480
+ createTranslationInspection(createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
9463
9481
  /**
9464
9482
  * Get a `translation-inspection` by ID.
9465
9483
  * @param {string} id The &#x60;translation-inspection&#x60; ID.
9466
9484
  * @param {*} [options] Override http request option.
9467
9485
  * @throws {RequiredError}
9468
9486
  */
9469
- getInspectionJob(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
9487
+ getInspectionJob(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
9470
9488
  /**
9471
9489
  * Get a `queued-translation`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `part-revision`. Once created, create scenes via the createScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
9472
9490
  * @param {string} id The &#x60;queued-translation&#x60; ID.
9473
9491
  * @param {*} [options] Override http request option.
9474
9492
  * @throws {RequiredError}
9475
9493
  */
9476
- getQueuedTranslation(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
9494
+ getQueuedTranslation(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
9477
9495
  /**
9478
9496
  * Get `queued-translation`s.
9479
9497
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -9482,7 +9500,7 @@ export declare const TranslationInspectionsApiFp: (configuration?: Configuration
9482
9500
  * @param {*} [options] Override http request option.
9483
9501
  * @throws {RequiredError}
9484
9502
  */
9485
- getQueuedTranslations(pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJobList>>;
9503
+ getQueuedTranslations(pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJobList>>;
9486
9504
  };
9487
9505
  /**
9488
9506
  * TranslationInspectionsApi - factory interface
@@ -9598,7 +9616,7 @@ export declare class TranslationInspectionsApi extends BaseAPI {
9598
9616
  * @throws {RequiredError}
9599
9617
  * @memberof TranslationInspectionsApi
9600
9618
  */
9601
- createTranslationInspection(requestParameters: TranslationInspectionsApiCreateTranslationInspectionRequest, options?: any): Promise<import("axios").AxiosResponse<TranslationInspectionJob>>;
9619
+ createTranslationInspection(requestParameters: TranslationInspectionsApiCreateTranslationInspectionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TranslationInspectionJob, any>>;
9602
9620
  /**
9603
9621
  * Get a `translation-inspection` by ID.
9604
9622
  * @param {TranslationInspectionsApiGetInspectionJobRequest} requestParameters Request parameters.
@@ -9606,7 +9624,7 @@ export declare class TranslationInspectionsApi extends BaseAPI {
9606
9624
  * @throws {RequiredError}
9607
9625
  * @memberof TranslationInspectionsApi
9608
9626
  */
9609
- getInspectionJob(requestParameters: TranslationInspectionsApiGetInspectionJobRequest, options?: any): Promise<import("axios").AxiosResponse<TranslationInspectionJob>>;
9627
+ getInspectionJob(requestParameters: TranslationInspectionsApiGetInspectionJobRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TranslationInspectionJob, any>>;
9610
9628
  /**
9611
9629
  * Get a `queued-translation`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `part-revision`. Once created, create scenes via the createScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
9612
9630
  * @param {TranslationInspectionsApiGetQueuedTranslationRequest} requestParameters Request parameters.
@@ -9614,7 +9632,7 @@ export declare class TranslationInspectionsApi extends BaseAPI {
9614
9632
  * @throws {RequiredError}
9615
9633
  * @memberof TranslationInspectionsApi
9616
9634
  */
9617
- getQueuedTranslation(requestParameters: TranslationInspectionsApiGetQueuedTranslationRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
9635
+ getQueuedTranslation(requestParameters: TranslationInspectionsApiGetQueuedTranslationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
9618
9636
  /**
9619
9637
  * Get `queued-translation`s.
9620
9638
  * @param {TranslationInspectionsApiGetQueuedTranslationsRequest} requestParameters Request parameters.
@@ -9622,7 +9640,7 @@ export declare class TranslationInspectionsApi extends BaseAPI {
9622
9640
  * @throws {RequiredError}
9623
9641
  * @memberof TranslationInspectionsApi
9624
9642
  */
9625
- getQueuedTranslations(requestParameters?: TranslationInspectionsApiGetQueuedTranslationsRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJobList>>;
9643
+ getQueuedTranslations(requestParameters?: TranslationInspectionsApiGetQueuedTranslationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJobList, any>>;
9626
9644
  }
9627
9645
  /**
9628
9646
  * WebhookSubscriptionsApi - axios parameter creator
@@ -9635,21 +9653,21 @@ export declare const WebhookSubscriptionsApiAxiosParamCreator: (configuration?:
9635
9653
  * @param {*} [options] Override http request option.
9636
9654
  * @throws {RequiredError}
9637
9655
  */
9638
- createWebhookSubscription: (createWebhookSubscriptionRequest: CreateWebhookSubscriptionRequest, options?: any) => Promise<RequestArgs>;
9656
+ createWebhookSubscription: (createWebhookSubscriptionRequest: CreateWebhookSubscriptionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9639
9657
  /**
9640
9658
  * Delete a `webhook-subscription`.
9641
9659
  * @param {string} id The &#x60;webhook-subscription&#x60; ID.
9642
9660
  * @param {*} [options] Override http request option.
9643
9661
  * @throws {RequiredError}
9644
9662
  */
9645
- deleteWebhookSubscription: (id: string, options?: any) => Promise<RequestArgs>;
9663
+ deleteWebhookSubscription: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9646
9664
  /**
9647
9665
  * Get a `webhook-subscription`.
9648
9666
  * @param {string} id The &#x60;webhook-subscription&#x60; ID.
9649
9667
  * @param {*} [options] Override http request option.
9650
9668
  * @throws {RequiredError}
9651
9669
  */
9652
- getWebhookSubscription: (id: string, options?: any) => Promise<RequestArgs>;
9670
+ getWebhookSubscription: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9653
9671
  /**
9654
9672
  * Get `webhook-subscription`s.
9655
9673
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -9657,7 +9675,7 @@ export declare const WebhookSubscriptionsApiAxiosParamCreator: (configuration?:
9657
9675
  * @param {*} [options] Override http request option.
9658
9676
  * @throws {RequiredError}
9659
9677
  */
9660
- getWebhookSubscriptions: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: any) => Promise<RequestArgs>;
9678
+ getWebhookSubscriptions: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9661
9679
  /**
9662
9680
  * Update a `webhook-subscription`.
9663
9681
  * @param {string} id The &#x60;webhook-subscription&#x60; ID.
@@ -9665,7 +9683,7 @@ export declare const WebhookSubscriptionsApiAxiosParamCreator: (configuration?:
9665
9683
  * @param {*} [options] Override http request option.
9666
9684
  * @throws {RequiredError}
9667
9685
  */
9668
- updateWebhookSubscription: (id: string, updateWebhookSubscriptionRequest: UpdateWebhookSubscriptionRequest, options?: any) => Promise<RequestArgs>;
9686
+ updateWebhookSubscription: (id: string, updateWebhookSubscriptionRequest: UpdateWebhookSubscriptionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9669
9687
  };
9670
9688
  /**
9671
9689
  * WebhookSubscriptionsApi - functional programming interface
@@ -9678,21 +9696,21 @@ export declare const WebhookSubscriptionsApiFp: (configuration?: Configuration |
9678
9696
  * @param {*} [options] Override http request option.
9679
9697
  * @throws {RequiredError}
9680
9698
  */
9681
- createWebhookSubscription(createWebhookSubscriptionRequest: CreateWebhookSubscriptionRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
9699
+ createWebhookSubscription(createWebhookSubscriptionRequest: CreateWebhookSubscriptionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
9682
9700
  /**
9683
9701
  * Delete a `webhook-subscription`.
9684
9702
  * @param {string} id The &#x60;webhook-subscription&#x60; ID.
9685
9703
  * @param {*} [options] Override http request option.
9686
9704
  * @throws {RequiredError}
9687
9705
  */
9688
- deleteWebhookSubscription(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
9706
+ deleteWebhookSubscription(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
9689
9707
  /**
9690
9708
  * Get a `webhook-subscription`.
9691
9709
  * @param {string} id The &#x60;webhook-subscription&#x60; ID.
9692
9710
  * @param {*} [options] Override http request option.
9693
9711
  * @throws {RequiredError}
9694
9712
  */
9695
- getWebhookSubscription(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
9713
+ getWebhookSubscription(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
9696
9714
  /**
9697
9715
  * Get `webhook-subscription`s.
9698
9716
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -9700,7 +9718,7 @@ export declare const WebhookSubscriptionsApiFp: (configuration?: Configuration |
9700
9718
  * @param {*} [options] Override http request option.
9701
9719
  * @throws {RequiredError}
9702
9720
  */
9703
- getWebhookSubscriptions(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscriptionList>>;
9721
+ getWebhookSubscriptions(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscriptionList>>;
9704
9722
  /**
9705
9723
  * Update a `webhook-subscription`.
9706
9724
  * @param {string} id The &#x60;webhook-subscription&#x60; ID.
@@ -9708,7 +9726,7 @@ export declare const WebhookSubscriptionsApiFp: (configuration?: Configuration |
9708
9726
  * @param {*} [options] Override http request option.
9709
9727
  * @throws {RequiredError}
9710
9728
  */
9711
- updateWebhookSubscription(id: string, updateWebhookSubscriptionRequest: UpdateWebhookSubscriptionRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
9729
+ updateWebhookSubscription(id: string, updateWebhookSubscriptionRequest: UpdateWebhookSubscriptionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
9712
9730
  };
9713
9731
  /**
9714
9732
  * WebhookSubscriptionsApi - factory interface
@@ -9844,7 +9862,7 @@ export declare class WebhookSubscriptionsApi extends BaseAPI {
9844
9862
  * @throws {RequiredError}
9845
9863
  * @memberof WebhookSubscriptionsApi
9846
9864
  */
9847
- createWebhookSubscription(requestParameters: WebhookSubscriptionsApiCreateWebhookSubscriptionRequest, options?: any): Promise<import("axios").AxiosResponse<WebhookSubscription>>;
9865
+ createWebhookSubscription(requestParameters: WebhookSubscriptionsApiCreateWebhookSubscriptionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookSubscription, any>>;
9848
9866
  /**
9849
9867
  * Delete a `webhook-subscription`.
9850
9868
  * @param {WebhookSubscriptionsApiDeleteWebhookSubscriptionRequest} requestParameters Request parameters.
@@ -9852,7 +9870,7 @@ export declare class WebhookSubscriptionsApi extends BaseAPI {
9852
9870
  * @throws {RequiredError}
9853
9871
  * @memberof WebhookSubscriptionsApi
9854
9872
  */
9855
- deleteWebhookSubscription(requestParameters: WebhookSubscriptionsApiDeleteWebhookSubscriptionRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
9873
+ deleteWebhookSubscription(requestParameters: WebhookSubscriptionsApiDeleteWebhookSubscriptionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
9856
9874
  /**
9857
9875
  * Get a `webhook-subscription`.
9858
9876
  * @param {WebhookSubscriptionsApiGetWebhookSubscriptionRequest} requestParameters Request parameters.
@@ -9860,7 +9878,7 @@ export declare class WebhookSubscriptionsApi extends BaseAPI {
9860
9878
  * @throws {RequiredError}
9861
9879
  * @memberof WebhookSubscriptionsApi
9862
9880
  */
9863
- getWebhookSubscription(requestParameters: WebhookSubscriptionsApiGetWebhookSubscriptionRequest, options?: any): Promise<import("axios").AxiosResponse<WebhookSubscription>>;
9881
+ getWebhookSubscription(requestParameters: WebhookSubscriptionsApiGetWebhookSubscriptionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookSubscription, any>>;
9864
9882
  /**
9865
9883
  * Get `webhook-subscription`s.
9866
9884
  * @param {WebhookSubscriptionsApiGetWebhookSubscriptionsRequest} requestParameters Request parameters.
@@ -9868,7 +9886,7 @@ export declare class WebhookSubscriptionsApi extends BaseAPI {
9868
9886
  * @throws {RequiredError}
9869
9887
  * @memberof WebhookSubscriptionsApi
9870
9888
  */
9871
- getWebhookSubscriptions(requestParameters?: WebhookSubscriptionsApiGetWebhookSubscriptionsRequest, options?: any): Promise<import("axios").AxiosResponse<WebhookSubscriptionList>>;
9889
+ getWebhookSubscriptions(requestParameters?: WebhookSubscriptionsApiGetWebhookSubscriptionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookSubscriptionList, any>>;
9872
9890
  /**
9873
9891
  * Update a `webhook-subscription`.
9874
9892
  * @param {WebhookSubscriptionsApiUpdateWebhookSubscriptionRequest} requestParameters Request parameters.
@@ -9876,5 +9894,5 @@ export declare class WebhookSubscriptionsApi extends BaseAPI {
9876
9894
  * @throws {RequiredError}
9877
9895
  * @memberof WebhookSubscriptionsApi
9878
9896
  */
9879
- updateWebhookSubscription(requestParameters: WebhookSubscriptionsApiUpdateWebhookSubscriptionRequest, options?: any): Promise<import("axios").AxiosResponse<WebhookSubscription>>;
9897
+ updateWebhookSubscription(requestParameters: WebhookSubscriptionsApiUpdateWebhookSubscriptionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookSubscription, any>>;
9880
9898
  }