@connectedxm/admin-sdk 6.7.4 → 6.7.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.
@@ -385,6 +385,8 @@ docs/DashboardsWidgetsApi.md
385
385
  docs/DayOfWeek.md
386
386
  docs/DefaultAuthAction.md
387
387
  docs/DelegateRole.md
388
+ docs/DeleteManyImagesInput.md
389
+ docs/DeleteManyVideosInput.md
388
390
  docs/DomainDetails.md
389
391
  docs/EmailReceipt.md
390
392
  docs/EmailReceiptStatus.md
package/README.md CHANGED
@@ -1345,6 +1345,8 @@ Class | Method | HTTP request | Description
1345
1345
  - [DayOfWeek](docs/DayOfWeek.md)
1346
1346
  - [DefaultAuthAction](docs/DefaultAuthAction.md)
1347
1347
  - [DelegateRole](docs/DelegateRole.md)
1348
+ - [DeleteManyImagesInput](docs/DeleteManyImagesInput.md)
1349
+ - [DeleteManyVideosInput](docs/DeleteManyVideosInput.md)
1348
1350
  - [DomainDetails](docs/DomainDetails.md)
1349
1351
  - [EmailReceipt](docs/EmailReceipt.md)
1350
1352
  - [EmailReceiptStatus](docs/EmailReceiptStatus.md)
package/api.ts CHANGED
@@ -3872,6 +3872,12 @@ export enum DelegateRole {
3872
3872
  }
3873
3873
 
3874
3874
 
3875
+ export interface DeleteManyImagesInput {
3876
+ 'imageIds': Array<string>;
3877
+ }
3878
+ export interface DeleteManyVideosInput {
3879
+ 'videoIds': Array<string>;
3880
+ }
3875
3881
  export interface DomainDetails {
3876
3882
  'name': string;
3877
3883
  }
@@ -100160,13 +100166,13 @@ export const StorageImagesApiAxiosParamCreator = function (configuration?: Confi
100160
100166
  /**
100161
100167
  * Delete Many Images endpoint
100162
100168
  * @summary Delete Many Images
100163
- * @param {Array<string>} imageIds Filter by imageIds
100169
+ * @param {DeleteManyImagesInput} deleteManyImagesInput
100164
100170
  * @param {*} [options] Override http request option.
100165
100171
  * @throws {RequiredError}
100166
100172
  */
100167
- deleteManyImages: async (imageIds: Array<string>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
100168
- // verify required parameter 'imageIds' is not null or undefined
100169
- assertParamExists('deleteManyImages', 'imageIds', imageIds)
100173
+ deleteManyImages: async (deleteManyImagesInput: DeleteManyImagesInput, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
100174
+ // verify required parameter 'deleteManyImagesInput' is not null or undefined
100175
+ assertParamExists('deleteManyImages', 'deleteManyImagesInput', deleteManyImagesInput)
100170
100176
  const localVarPath = `/images/delete`;
100171
100177
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
100172
100178
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -100185,15 +100191,13 @@ export const StorageImagesApiAxiosParamCreator = function (configuration?: Confi
100185
100191
  // authentication OrganizationId required
100186
100192
  await setApiKeyToObject(localVarHeaderParameter, "organization", configuration)
100187
100193
 
100188
- if (imageIds) {
100189
- localVarQueryParameter['imageIds'] = imageIds;
100190
- }
100191
-
100194
+ localVarHeaderParameter['Content-Type'] = 'application/json';
100192
100195
  localVarHeaderParameter['Accept'] = 'application/json';
100193
100196
 
100194
100197
  setSearchParams(localVarUrlObj, localVarQueryParameter);
100195
100198
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
100196
100199
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
100200
+ localVarRequestOptions.data = serializeDataIfNeeded(deleteManyImagesInput, localVarRequestOptions, configuration)
100197
100201
 
100198
100202
  return {
100199
100203
  url: toPathString(localVarUrlObj),
@@ -100473,12 +100477,12 @@ export const StorageImagesApiFp = function(configuration?: Configuration) {
100473
100477
  /**
100474
100478
  * Delete Many Images endpoint
100475
100479
  * @summary Delete Many Images
100476
- * @param {Array<string>} imageIds Filter by imageIds
100480
+ * @param {DeleteManyImagesInput} deleteManyImagesInput
100477
100481
  * @param {*} [options] Override http request option.
100478
100482
  * @throws {RequiredError}
100479
100483
  */
100480
- async deleteManyImages(imageIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>> {
100481
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteManyImages(imageIds, options);
100484
+ async deleteManyImages(deleteManyImagesInput: DeleteManyImagesInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>> {
100485
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteManyImages(deleteManyImagesInput, options);
100482
100486
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
100483
100487
  const localVarOperationServerBasePath = operationServerMap['StorageImagesApi.deleteManyImages']?.[localVarOperationServerIndex]?.url;
100484
100488
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -100591,7 +100595,7 @@ export const StorageImagesApiFactory = function (configuration?: Configuration,
100591
100595
  * @throws {RequiredError}
100592
100596
  */
100593
100597
  deleteManyImages(requestParameters: StorageImagesApiDeleteManyImagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response> {
100594
- return localVarFp.deleteManyImages(requestParameters.imageIds, options).then((request) => request(axios, basePath));
100598
+ return localVarFp.deleteManyImages(requestParameters.deleteManyImagesInput, options).then((request) => request(axios, basePath));
100595
100599
  },
100596
100600
  /**
100597
100601
  * Get Image endpoint
@@ -100667,10 +100671,7 @@ export interface StorageImagesApiDeleteImageRequest {
100667
100671
  * Request parameters for deleteManyImages operation in StorageImagesApi.
100668
100672
  */
100669
100673
  export interface StorageImagesApiDeleteManyImagesRequest {
100670
- /**
100671
- * Filter by imageIds
100672
- */
100673
- readonly imageIds: Array<string>
100674
+ readonly deleteManyImagesInput: DeleteManyImagesInput
100674
100675
  }
100675
100676
 
100676
100677
  /**
@@ -100784,7 +100785,7 @@ export class StorageImagesApi extends BaseAPI {
100784
100785
  * @throws {RequiredError}
100785
100786
  */
100786
100787
  public deleteManyImages(requestParameters: StorageImagesApiDeleteManyImagesRequest, options?: RawAxiosRequestConfig) {
100787
- return StorageImagesApiFp(this.configuration).deleteManyImages(requestParameters.imageIds, options).then((request) => request(this.axios, this.basePath));
100788
+ return StorageImagesApiFp(this.configuration).deleteManyImages(requestParameters.deleteManyImagesInput, options).then((request) => request(this.axios, this.basePath));
100788
100789
  }
100789
100790
 
100790
100791
  /**
@@ -100853,13 +100854,13 @@ export const StorageVideosApiAxiosParamCreator = function (configuration?: Confi
100853
100854
  /**
100854
100855
  * Delete Many Videos endpoint
100855
100856
  * @summary Delete Many Videos
100856
- * @param {Array<string>} videoIds Filter by videoIds
100857
+ * @param {DeleteManyVideosInput} deleteManyVideosInput
100857
100858
  * @param {*} [options] Override http request option.
100858
100859
  * @throws {RequiredError}
100859
100860
  */
100860
- deleteManyVideos: async (videoIds: Array<string>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
100861
- // verify required parameter 'videoIds' is not null or undefined
100862
- assertParamExists('deleteManyVideos', 'videoIds', videoIds)
100861
+ deleteManyVideos: async (deleteManyVideosInput: DeleteManyVideosInput, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
100862
+ // verify required parameter 'deleteManyVideosInput' is not null or undefined
100863
+ assertParamExists('deleteManyVideos', 'deleteManyVideosInput', deleteManyVideosInput)
100863
100864
  const localVarPath = `/videos/delete`;
100864
100865
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
100865
100866
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -100878,15 +100879,13 @@ export const StorageVideosApiAxiosParamCreator = function (configuration?: Confi
100878
100879
  // authentication OrganizationId required
100879
100880
  await setApiKeyToObject(localVarHeaderParameter, "organization", configuration)
100880
100881
 
100881
- if (videoIds) {
100882
- localVarQueryParameter['videoIds'] = videoIds;
100883
- }
100884
-
100882
+ localVarHeaderParameter['Content-Type'] = 'application/json';
100885
100883
  localVarHeaderParameter['Accept'] = 'application/json';
100886
100884
 
100887
100885
  setSearchParams(localVarUrlObj, localVarQueryParameter);
100888
100886
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
100889
100887
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
100888
+ localVarRequestOptions.data = serializeDataIfNeeded(deleteManyVideosInput, localVarRequestOptions, configuration)
100890
100889
 
100891
100890
  return {
100892
100891
  url: toPathString(localVarUrlObj),
@@ -101171,12 +101170,12 @@ export const StorageVideosApiFp = function(configuration?: Configuration) {
101171
101170
  /**
101172
101171
  * Delete Many Videos endpoint
101173
101172
  * @summary Delete Many Videos
101174
- * @param {Array<string>} videoIds Filter by videoIds
101173
+ * @param {DeleteManyVideosInput} deleteManyVideosInput
101175
101174
  * @param {*} [options] Override http request option.
101176
101175
  * @throws {RequiredError}
101177
101176
  */
101178
- async deleteManyVideos(videoIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>> {
101179
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteManyVideos(videoIds, options);
101177
+ async deleteManyVideos(deleteManyVideosInput: DeleteManyVideosInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>> {
101178
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteManyVideos(deleteManyVideosInput, options);
101180
101179
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
101181
101180
  const localVarOperationServerBasePath = operationServerMap['StorageVideosApi.deleteManyVideos']?.[localVarOperationServerIndex]?.url;
101182
101181
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -101281,7 +101280,7 @@ export const StorageVideosApiFactory = function (configuration?: Configuration,
101281
101280
  * @throws {RequiredError}
101282
101281
  */
101283
101282
  deleteManyVideos(requestParameters: StorageVideosApiDeleteManyVideosRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response> {
101284
- return localVarFp.deleteManyVideos(requestParameters.videoIds, options).then((request) => request(axios, basePath));
101283
+ return localVarFp.deleteManyVideos(requestParameters.deleteManyVideosInput, options).then((request) => request(axios, basePath));
101285
101284
  },
101286
101285
  /**
101287
101286
  * Delete Video endpoint
@@ -101350,10 +101349,7 @@ export const StorageVideosApiFactory = function (configuration?: Configuration,
101350
101349
  * Request parameters for deleteManyVideos operation in StorageVideosApi.
101351
101350
  */
101352
101351
  export interface StorageVideosApiDeleteManyVideosRequest {
101353
- /**
101354
- * Filter by videoIds
101355
- */
101356
- readonly videoIds: Array<string>
101352
+ readonly deleteManyVideosInput: DeleteManyVideosInput
101357
101353
  }
101358
101354
 
101359
101355
  /**
@@ -101450,7 +101446,7 @@ export class StorageVideosApi extends BaseAPI {
101450
101446
  * @throws {RequiredError}
101451
101447
  */
101452
101448
  public deleteManyVideos(requestParameters: StorageVideosApiDeleteManyVideosRequest, options?: RawAxiosRequestConfig) {
101453
- return StorageVideosApiFp(this.configuration).deleteManyVideos(requestParameters.videoIds, options).then((request) => request(this.axios, this.basePath));
101449
+ return StorageVideosApiFp(this.configuration).deleteManyVideos(requestParameters.deleteManyVideosInput, options).then((request) => request(this.axios, this.basePath));
101454
101450
  }
101455
101451
 
101456
101452
  /**
@@ -102546,7 +102542,7 @@ export const StreamsApiFp = function(configuration?: Configuration) {
102546
102542
  * @param {*} [options] Override http request option.
102547
102543
  * @throws {RequiredError}
102548
102544
  */
102549
- async updateStreamInputConfig(streamId: string, streamInputUpdateInputs: StreamInputUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateStreamInput200Response>> {
102545
+ async updateStreamInputConfig(streamId: string, streamInputUpdateInputs: StreamInputUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>> {
102550
102546
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateStreamInputConfig(streamId, streamInputUpdateInputs, options);
102551
102547
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
102552
102548
  const localVarOperationServerBasePath = operationServerMap['StreamsApi.updateStreamInputConfig']?.[localVarOperationServerIndex]?.url;
@@ -102628,7 +102624,7 @@ export const StreamsApiFactory = function (configuration?: Configuration, basePa
102628
102624
  * @param {*} [options] Override http request option.
102629
102625
  * @throws {RequiredError}
102630
102626
  */
102631
- updateStreamInputConfig(requestParameters: StreamsApiUpdateStreamInputConfigRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateStreamInput200Response> {
102627
+ updateStreamInputConfig(requestParameters: StreamsApiUpdateStreamInputConfigRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response> {
102632
102628
  return localVarFp.updateStreamInputConfig(requestParameters.streamId, requestParameters.streamInputUpdateInputs, options).then((request) => request(axios, basePath));
102633
102629
  },
102634
102630
  };
package/dist/api.d.ts CHANGED
@@ -3537,6 +3537,12 @@ export declare enum DelegateRole {
3537
3537
  Manager = "manager",
3538
3538
  Member = "member"
3539
3539
  }
3540
+ export interface DeleteManyImagesInput {
3541
+ 'imageIds': Array<string>;
3542
+ }
3543
+ export interface DeleteManyVideosInput {
3544
+ 'videoIds': Array<string>;
3545
+ }
3540
3546
  export interface DomainDetails {
3541
3547
  'name': string;
3542
3548
  }
@@ -54731,11 +54737,11 @@ export declare const StorageImagesApiAxiosParamCreator: (configuration?: Configu
54731
54737
  /**
54732
54738
  * Delete Many Images endpoint
54733
54739
  * @summary Delete Many Images
54734
- * @param {Array<string>} imageIds Filter by imageIds
54740
+ * @param {DeleteManyImagesInput} deleteManyImagesInput
54735
54741
  * @param {*} [options] Override http request option.
54736
54742
  * @throws {RequiredError}
54737
54743
  */
54738
- deleteManyImages: (imageIds: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
54744
+ deleteManyImages: (deleteManyImagesInput: DeleteManyImagesInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
54739
54745
  /**
54740
54746
  * Get Image endpoint
54741
54747
  * @summary Get Image
@@ -54806,11 +54812,11 @@ export declare const StorageImagesApiFp: (configuration?: Configuration) => {
54806
54812
  /**
54807
54813
  * Delete Many Images endpoint
54808
54814
  * @summary Delete Many Images
54809
- * @param {Array<string>} imageIds Filter by imageIds
54815
+ * @param {DeleteManyImagesInput} deleteManyImagesInput
54810
54816
  * @param {*} [options] Override http request option.
54811
54817
  * @throws {RequiredError}
54812
54818
  */
54813
- deleteManyImages(imageIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
54819
+ deleteManyImages(deleteManyImagesInput: DeleteManyImagesInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
54814
54820
  /**
54815
54821
  * Get Image endpoint
54816
54822
  * @summary Get Image
@@ -54946,10 +54952,7 @@ export interface StorageImagesApiDeleteImageRequest {
54946
54952
  * Request parameters for deleteManyImages operation in StorageImagesApi.
54947
54953
  */
54948
54954
  export interface StorageImagesApiDeleteManyImagesRequest {
54949
- /**
54950
- * Filter by imageIds
54951
- */
54952
- readonly imageIds: Array<string>;
54955
+ readonly deleteManyImagesInput: DeleteManyImagesInput;
54953
54956
  }
54954
54957
  /**
54955
54958
  * Request parameters for getImage operation in StorageImagesApi.
@@ -55093,11 +55096,11 @@ export declare const StorageVideosApiAxiosParamCreator: (configuration?: Configu
55093
55096
  /**
55094
55097
  * Delete Many Videos endpoint
55095
55098
  * @summary Delete Many Videos
55096
- * @param {Array<string>} videoIds Filter by videoIds
55099
+ * @param {DeleteManyVideosInput} deleteManyVideosInput
55097
55100
  * @param {*} [options] Override http request option.
55098
55101
  * @throws {RequiredError}
55099
55102
  */
55100
- deleteManyVideos: (videoIds: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
55103
+ deleteManyVideos: (deleteManyVideosInput: DeleteManyVideosInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
55101
55104
  /**
55102
55105
  * Delete Video endpoint
55103
55106
  * @summary Delete Video
@@ -55159,11 +55162,11 @@ export declare const StorageVideosApiFp: (configuration?: Configuration) => {
55159
55162
  /**
55160
55163
  * Delete Many Videos endpoint
55161
55164
  * @summary Delete Many Videos
55162
- * @param {Array<string>} videoIds Filter by videoIds
55165
+ * @param {DeleteManyVideosInput} deleteManyVideosInput
55163
55166
  * @param {*} [options] Override http request option.
55164
55167
  * @throws {RequiredError}
55165
55168
  */
55166
- deleteManyVideos(videoIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
55169
+ deleteManyVideos(deleteManyVideosInput: DeleteManyVideosInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
55167
55170
  /**
55168
55171
  * Delete Video endpoint
55169
55172
  * @summary Delete Video
@@ -55283,10 +55286,7 @@ export declare const StorageVideosApiFactory: (configuration?: Configuration, ba
55283
55286
  * Request parameters for deleteManyVideos operation in StorageVideosApi.
55284
55287
  */
55285
55288
  export interface StorageVideosApiDeleteManyVideosRequest {
55286
- /**
55287
- * Filter by videoIds
55288
- */
55289
- readonly videoIds: Array<string>;
55289
+ readonly deleteManyVideosInput: DeleteManyVideosInput;
55290
55290
  }
55291
55291
  /**
55292
55292
  * Request parameters for deleteVideo operation in StorageVideosApi.
@@ -55851,7 +55851,7 @@ export declare const StreamsApiFp: (configuration?: Configuration) => {
55851
55851
  * @param {*} [options] Override http request option.
55852
55852
  * @throws {RequiredError}
55853
55853
  */
55854
- updateStreamInputConfig(streamId: string, streamInputUpdateInputs: StreamInputUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateStreamInput200Response>>;
55854
+ updateStreamInputConfig(streamId: string, streamInputUpdateInputs: StreamInputUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
55855
55855
  };
55856
55856
  /**
55857
55857
  * StreamsApi - factory interface
@@ -55912,7 +55912,7 @@ export declare const StreamsApiFactory: (configuration?: Configuration, basePath
55912
55912
  * @param {*} [options] Override http request option.
55913
55913
  * @throws {RequiredError}
55914
55914
  */
55915
- updateStreamInputConfig(requestParameters: StreamsApiUpdateStreamInputConfigRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateStreamInput200Response>;
55915
+ updateStreamInputConfig(requestParameters: StreamsApiUpdateStreamInputConfigRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
55916
55916
  };
55917
55917
  /**
55918
55918
  * Request parameters for createStreamInput operation in StreamsApi.
@@ -56082,7 +56082,7 @@ export declare class StreamsApi extends BaseAPI {
56082
56082
  * @param {*} [options] Override http request option.
56083
56083
  * @throws {RequiredError}
56084
56084
  */
56085
- updateStreamInputConfig(requestParameters: StreamsApiUpdateStreamInputConfigRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateStreamInput200Response, any, {}>>;
56085
+ updateStreamInputConfig(requestParameters: StreamsApiUpdateStreamInputConfigRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
56086
56086
  }
56087
56087
  /**
56088
56088
  * StreamsOutputsApi - axios parameter creator
package/dist/api.js CHANGED
@@ -70471,13 +70471,13 @@ const StorageImagesApiAxiosParamCreator = function (configuration) {
70471
70471
  /**
70472
70472
  * Delete Many Images endpoint
70473
70473
  * @summary Delete Many Images
70474
- * @param {Array<string>} imageIds Filter by imageIds
70474
+ * @param {DeleteManyImagesInput} deleteManyImagesInput
70475
70475
  * @param {*} [options] Override http request option.
70476
70476
  * @throws {RequiredError}
70477
70477
  */
70478
- deleteManyImages: (imageIds_1, ...args_1) => __awaiter(this, [imageIds_1, ...args_1], void 0, function* (imageIds, options = {}) {
70479
- // verify required parameter 'imageIds' is not null or undefined
70480
- (0, common_1.assertParamExists)('deleteManyImages', 'imageIds', imageIds);
70478
+ deleteManyImages: (deleteManyImagesInput_1, ...args_1) => __awaiter(this, [deleteManyImagesInput_1, ...args_1], void 0, function* (deleteManyImagesInput, options = {}) {
70479
+ // verify required parameter 'deleteManyImagesInput' is not null or undefined
70480
+ (0, common_1.assertParamExists)('deleteManyImages', 'deleteManyImagesInput', deleteManyImagesInput);
70481
70481
  const localVarPath = `/images/delete`;
70482
70482
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
70483
70483
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -70492,13 +70492,12 @@ const StorageImagesApiAxiosParamCreator = function (configuration) {
70492
70492
  yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
70493
70493
  // authentication OrganizationId required
70494
70494
  yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
70495
- if (imageIds) {
70496
- localVarQueryParameter['imageIds'] = imageIds;
70497
- }
70495
+ localVarHeaderParameter['Content-Type'] = 'application/json';
70498
70496
  localVarHeaderParameter['Accept'] = 'application/json';
70499
70497
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
70500
70498
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
70501
70499
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
70500
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(deleteManyImagesInput, localVarRequestOptions, configuration);
70502
70501
  return {
70503
70502
  url: (0, common_1.toPathString)(localVarUrlObj),
70504
70503
  options: localVarRequestOptions,
@@ -70747,14 +70746,14 @@ const StorageImagesApiFp = function (configuration) {
70747
70746
  /**
70748
70747
  * Delete Many Images endpoint
70749
70748
  * @summary Delete Many Images
70750
- * @param {Array<string>} imageIds Filter by imageIds
70749
+ * @param {DeleteManyImagesInput} deleteManyImagesInput
70751
70750
  * @param {*} [options] Override http request option.
70752
70751
  * @throws {RequiredError}
70753
70752
  */
70754
- deleteManyImages(imageIds, options) {
70753
+ deleteManyImages(deleteManyImagesInput, options) {
70755
70754
  return __awaiter(this, void 0, void 0, function* () {
70756
70755
  var _a, _b, _c;
70757
- const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyImages(imageIds, options);
70756
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyImages(deleteManyImagesInput, options);
70758
70757
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
70759
70758
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['StorageImagesApi.deleteManyImages']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
70760
70759
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -70883,7 +70882,7 @@ const StorageImagesApiFactory = function (configuration, basePath, axios) {
70883
70882
  * @throws {RequiredError}
70884
70883
  */
70885
70884
  deleteManyImages(requestParameters, options) {
70886
- return localVarFp.deleteManyImages(requestParameters.imageIds, options).then((request) => request(axios, basePath));
70885
+ return localVarFp.deleteManyImages(requestParameters.deleteManyImagesInput, options).then((request) => request(axios, basePath));
70887
70886
  },
70888
70887
  /**
70889
70888
  * Get Image endpoint
@@ -70970,7 +70969,7 @@ class StorageImagesApi extends base_1.BaseAPI {
70970
70969
  * @throws {RequiredError}
70971
70970
  */
70972
70971
  deleteManyImages(requestParameters, options) {
70973
- return (0, exports.StorageImagesApiFp)(this.configuration).deleteManyImages(requestParameters.imageIds, options).then((request) => request(this.axios, this.basePath));
70972
+ return (0, exports.StorageImagesApiFp)(this.configuration).deleteManyImages(requestParameters.deleteManyImagesInput, options).then((request) => request(this.axios, this.basePath));
70974
70973
  }
70975
70974
  /**
70976
70975
  * Get Image endpoint
@@ -71032,13 +71031,13 @@ const StorageVideosApiAxiosParamCreator = function (configuration) {
71032
71031
  /**
71033
71032
  * Delete Many Videos endpoint
71034
71033
  * @summary Delete Many Videos
71035
- * @param {Array<string>} videoIds Filter by videoIds
71034
+ * @param {DeleteManyVideosInput} deleteManyVideosInput
71036
71035
  * @param {*} [options] Override http request option.
71037
71036
  * @throws {RequiredError}
71038
71037
  */
71039
- deleteManyVideos: (videoIds_1, ...args_1) => __awaiter(this, [videoIds_1, ...args_1], void 0, function* (videoIds, options = {}) {
71040
- // verify required parameter 'videoIds' is not null or undefined
71041
- (0, common_1.assertParamExists)('deleteManyVideos', 'videoIds', videoIds);
71038
+ deleteManyVideos: (deleteManyVideosInput_1, ...args_1) => __awaiter(this, [deleteManyVideosInput_1, ...args_1], void 0, function* (deleteManyVideosInput, options = {}) {
71039
+ // verify required parameter 'deleteManyVideosInput' is not null or undefined
71040
+ (0, common_1.assertParamExists)('deleteManyVideos', 'deleteManyVideosInput', deleteManyVideosInput);
71042
71041
  const localVarPath = `/videos/delete`;
71043
71042
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
71044
71043
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -71053,13 +71052,12 @@ const StorageVideosApiAxiosParamCreator = function (configuration) {
71053
71052
  yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
71054
71053
  // authentication OrganizationId required
71055
71054
  yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
71056
- if (videoIds) {
71057
- localVarQueryParameter['videoIds'] = videoIds;
71058
- }
71055
+ localVarHeaderParameter['Content-Type'] = 'application/json';
71059
71056
  localVarHeaderParameter['Accept'] = 'application/json';
71060
71057
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
71061
71058
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
71062
71059
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
71060
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(deleteManyVideosInput, localVarRequestOptions, configuration);
71063
71061
  return {
71064
71062
  url: (0, common_1.toPathString)(localVarUrlObj),
71065
71063
  options: localVarRequestOptions,
@@ -71302,14 +71300,14 @@ const StorageVideosApiFp = function (configuration) {
71302
71300
  /**
71303
71301
  * Delete Many Videos endpoint
71304
71302
  * @summary Delete Many Videos
71305
- * @param {Array<string>} videoIds Filter by videoIds
71303
+ * @param {DeleteManyVideosInput} deleteManyVideosInput
71306
71304
  * @param {*} [options] Override http request option.
71307
71305
  * @throws {RequiredError}
71308
71306
  */
71309
- deleteManyVideos(videoIds, options) {
71307
+ deleteManyVideos(deleteManyVideosInput, options) {
71310
71308
  return __awaiter(this, void 0, void 0, function* () {
71311
71309
  var _a, _b, _c;
71312
- const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyVideos(videoIds, options);
71310
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyVideos(deleteManyVideosInput, options);
71313
71311
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
71314
71312
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['StorageVideosApi.deleteManyVideos']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
71315
71313
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -71433,7 +71431,7 @@ const StorageVideosApiFactory = function (configuration, basePath, axios) {
71433
71431
  * @throws {RequiredError}
71434
71432
  */
71435
71433
  deleteManyVideos(requestParameters, options) {
71436
- return localVarFp.deleteManyVideos(requestParameters.videoIds, options).then((request) => request(axios, basePath));
71434
+ return localVarFp.deleteManyVideos(requestParameters.deleteManyVideosInput, options).then((request) => request(axios, basePath));
71437
71435
  },
71438
71436
  /**
71439
71437
  * Delete Video endpoint
@@ -71510,7 +71508,7 @@ class StorageVideosApi extends base_1.BaseAPI {
71510
71508
  * @throws {RequiredError}
71511
71509
  */
71512
71510
  deleteManyVideos(requestParameters, options) {
71513
- return (0, exports.StorageVideosApiFp)(this.configuration).deleteManyVideos(requestParameters.videoIds, options).then((request) => request(this.axios, this.basePath));
71511
+ return (0, exports.StorageVideosApiFp)(this.configuration).deleteManyVideos(requestParameters.deleteManyVideosInput, options).then((request) => request(this.axios, this.basePath));
71514
71512
  }
71515
71513
  /**
71516
71514
  * Delete Video endpoint
package/dist/esm/api.d.ts CHANGED
@@ -3537,6 +3537,12 @@ export declare enum DelegateRole {
3537
3537
  Manager = "manager",
3538
3538
  Member = "member"
3539
3539
  }
3540
+ export interface DeleteManyImagesInput {
3541
+ 'imageIds': Array<string>;
3542
+ }
3543
+ export interface DeleteManyVideosInput {
3544
+ 'videoIds': Array<string>;
3545
+ }
3540
3546
  export interface DomainDetails {
3541
3547
  'name': string;
3542
3548
  }
@@ -54731,11 +54737,11 @@ export declare const StorageImagesApiAxiosParamCreator: (configuration?: Configu
54731
54737
  /**
54732
54738
  * Delete Many Images endpoint
54733
54739
  * @summary Delete Many Images
54734
- * @param {Array<string>} imageIds Filter by imageIds
54740
+ * @param {DeleteManyImagesInput} deleteManyImagesInput
54735
54741
  * @param {*} [options] Override http request option.
54736
54742
  * @throws {RequiredError}
54737
54743
  */
54738
- deleteManyImages: (imageIds: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
54744
+ deleteManyImages: (deleteManyImagesInput: DeleteManyImagesInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
54739
54745
  /**
54740
54746
  * Get Image endpoint
54741
54747
  * @summary Get Image
@@ -54806,11 +54812,11 @@ export declare const StorageImagesApiFp: (configuration?: Configuration) => {
54806
54812
  /**
54807
54813
  * Delete Many Images endpoint
54808
54814
  * @summary Delete Many Images
54809
- * @param {Array<string>} imageIds Filter by imageIds
54815
+ * @param {DeleteManyImagesInput} deleteManyImagesInput
54810
54816
  * @param {*} [options] Override http request option.
54811
54817
  * @throws {RequiredError}
54812
54818
  */
54813
- deleteManyImages(imageIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
54819
+ deleteManyImages(deleteManyImagesInput: DeleteManyImagesInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
54814
54820
  /**
54815
54821
  * Get Image endpoint
54816
54822
  * @summary Get Image
@@ -54946,10 +54952,7 @@ export interface StorageImagesApiDeleteImageRequest {
54946
54952
  * Request parameters for deleteManyImages operation in StorageImagesApi.
54947
54953
  */
54948
54954
  export interface StorageImagesApiDeleteManyImagesRequest {
54949
- /**
54950
- * Filter by imageIds
54951
- */
54952
- readonly imageIds: Array<string>;
54955
+ readonly deleteManyImagesInput: DeleteManyImagesInput;
54953
54956
  }
54954
54957
  /**
54955
54958
  * Request parameters for getImage operation in StorageImagesApi.
@@ -55093,11 +55096,11 @@ export declare const StorageVideosApiAxiosParamCreator: (configuration?: Configu
55093
55096
  /**
55094
55097
  * Delete Many Videos endpoint
55095
55098
  * @summary Delete Many Videos
55096
- * @param {Array<string>} videoIds Filter by videoIds
55099
+ * @param {DeleteManyVideosInput} deleteManyVideosInput
55097
55100
  * @param {*} [options] Override http request option.
55098
55101
  * @throws {RequiredError}
55099
55102
  */
55100
- deleteManyVideos: (videoIds: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
55103
+ deleteManyVideos: (deleteManyVideosInput: DeleteManyVideosInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
55101
55104
  /**
55102
55105
  * Delete Video endpoint
55103
55106
  * @summary Delete Video
@@ -55159,11 +55162,11 @@ export declare const StorageVideosApiFp: (configuration?: Configuration) => {
55159
55162
  /**
55160
55163
  * Delete Many Videos endpoint
55161
55164
  * @summary Delete Many Videos
55162
- * @param {Array<string>} videoIds Filter by videoIds
55165
+ * @param {DeleteManyVideosInput} deleteManyVideosInput
55163
55166
  * @param {*} [options] Override http request option.
55164
55167
  * @throws {RequiredError}
55165
55168
  */
55166
- deleteManyVideos(videoIds: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
55169
+ deleteManyVideos(deleteManyVideosInput: DeleteManyVideosInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
55167
55170
  /**
55168
55171
  * Delete Video endpoint
55169
55172
  * @summary Delete Video
@@ -55283,10 +55286,7 @@ export declare const StorageVideosApiFactory: (configuration?: Configuration, ba
55283
55286
  * Request parameters for deleteManyVideos operation in StorageVideosApi.
55284
55287
  */
55285
55288
  export interface StorageVideosApiDeleteManyVideosRequest {
55286
- /**
55287
- * Filter by videoIds
55288
- */
55289
- readonly videoIds: Array<string>;
55289
+ readonly deleteManyVideosInput: DeleteManyVideosInput;
55290
55290
  }
55291
55291
  /**
55292
55292
  * Request parameters for deleteVideo operation in StorageVideosApi.
@@ -55851,7 +55851,7 @@ export declare const StreamsApiFp: (configuration?: Configuration) => {
55851
55851
  * @param {*} [options] Override http request option.
55852
55852
  * @throws {RequiredError}
55853
55853
  */
55854
- updateStreamInputConfig(streamId: string, streamInputUpdateInputs: StreamInputUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateStreamInput200Response>>;
55854
+ updateStreamInputConfig(streamId: string, streamInputUpdateInputs: StreamInputUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
55855
55855
  };
55856
55856
  /**
55857
55857
  * StreamsApi - factory interface
@@ -55912,7 +55912,7 @@ export declare const StreamsApiFactory: (configuration?: Configuration, basePath
55912
55912
  * @param {*} [options] Override http request option.
55913
55913
  * @throws {RequiredError}
55914
55914
  */
55915
- updateStreamInputConfig(requestParameters: StreamsApiUpdateStreamInputConfigRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateStreamInput200Response>;
55915
+ updateStreamInputConfig(requestParameters: StreamsApiUpdateStreamInputConfigRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
55916
55916
  };
55917
55917
  /**
55918
55918
  * Request parameters for createStreamInput operation in StreamsApi.
@@ -56082,7 +56082,7 @@ export declare class StreamsApi extends BaseAPI {
56082
56082
  * @param {*} [options] Override http request option.
56083
56083
  * @throws {RequiredError}
56084
56084
  */
56085
- updateStreamInputConfig(requestParameters: StreamsApiUpdateStreamInputConfigRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateStreamInput200Response, any, {}>>;
56085
+ updateStreamInputConfig(requestParameters: StreamsApiUpdateStreamInputConfigRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
56086
56086
  }
56087
56087
  /**
56088
56088
  * StreamsOutputsApi - axios parameter creator
package/dist/esm/api.js CHANGED
@@ -69983,13 +69983,13 @@ export const StorageImagesApiAxiosParamCreator = function (configuration) {
69983
69983
  /**
69984
69984
  * Delete Many Images endpoint
69985
69985
  * @summary Delete Many Images
69986
- * @param {Array<string>} imageIds Filter by imageIds
69986
+ * @param {DeleteManyImagesInput} deleteManyImagesInput
69987
69987
  * @param {*} [options] Override http request option.
69988
69988
  * @throws {RequiredError}
69989
69989
  */
69990
- deleteManyImages: (imageIds_1, ...args_1) => __awaiter(this, [imageIds_1, ...args_1], void 0, function* (imageIds, options = {}) {
69991
- // verify required parameter 'imageIds' is not null or undefined
69992
- assertParamExists('deleteManyImages', 'imageIds', imageIds);
69990
+ deleteManyImages: (deleteManyImagesInput_1, ...args_1) => __awaiter(this, [deleteManyImagesInput_1, ...args_1], void 0, function* (deleteManyImagesInput, options = {}) {
69991
+ // verify required parameter 'deleteManyImagesInput' is not null or undefined
69992
+ assertParamExists('deleteManyImages', 'deleteManyImagesInput', deleteManyImagesInput);
69993
69993
  const localVarPath = `/images/delete`;
69994
69994
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
69995
69995
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -70004,13 +70004,12 @@ export const StorageImagesApiAxiosParamCreator = function (configuration) {
70004
70004
  yield setApiKeyToObject(localVarHeaderParameter, "api-key", configuration);
70005
70005
  // authentication OrganizationId required
70006
70006
  yield setApiKeyToObject(localVarHeaderParameter, "organization", configuration);
70007
- if (imageIds) {
70008
- localVarQueryParameter['imageIds'] = imageIds;
70009
- }
70007
+ localVarHeaderParameter['Content-Type'] = 'application/json';
70010
70008
  localVarHeaderParameter['Accept'] = 'application/json';
70011
70009
  setSearchParams(localVarUrlObj, localVarQueryParameter);
70012
70010
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
70013
70011
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
70012
+ localVarRequestOptions.data = serializeDataIfNeeded(deleteManyImagesInput, localVarRequestOptions, configuration);
70014
70013
  return {
70015
70014
  url: toPathString(localVarUrlObj),
70016
70015
  options: localVarRequestOptions,
@@ -70258,14 +70257,14 @@ export const StorageImagesApiFp = function (configuration) {
70258
70257
  /**
70259
70258
  * Delete Many Images endpoint
70260
70259
  * @summary Delete Many Images
70261
- * @param {Array<string>} imageIds Filter by imageIds
70260
+ * @param {DeleteManyImagesInput} deleteManyImagesInput
70262
70261
  * @param {*} [options] Override http request option.
70263
70262
  * @throws {RequiredError}
70264
70263
  */
70265
- deleteManyImages(imageIds, options) {
70264
+ deleteManyImages(deleteManyImagesInput, options) {
70266
70265
  return __awaiter(this, void 0, void 0, function* () {
70267
70266
  var _a, _b, _c;
70268
- const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyImages(imageIds, options);
70267
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyImages(deleteManyImagesInput, options);
70269
70268
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
70270
70269
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['StorageImagesApi.deleteManyImages']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
70271
70270
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -70393,7 +70392,7 @@ export const StorageImagesApiFactory = function (configuration, basePath, axios)
70393
70392
  * @throws {RequiredError}
70394
70393
  */
70395
70394
  deleteManyImages(requestParameters, options) {
70396
- return localVarFp.deleteManyImages(requestParameters.imageIds, options).then((request) => request(axios, basePath));
70395
+ return localVarFp.deleteManyImages(requestParameters.deleteManyImagesInput, options).then((request) => request(axios, basePath));
70397
70396
  },
70398
70397
  /**
70399
70398
  * Get Image endpoint
@@ -70479,7 +70478,7 @@ export class StorageImagesApi extends BaseAPI {
70479
70478
  * @throws {RequiredError}
70480
70479
  */
70481
70480
  deleteManyImages(requestParameters, options) {
70482
- return StorageImagesApiFp(this.configuration).deleteManyImages(requestParameters.imageIds, options).then((request) => request(this.axios, this.basePath));
70481
+ return StorageImagesApiFp(this.configuration).deleteManyImages(requestParameters.deleteManyImagesInput, options).then((request) => request(this.axios, this.basePath));
70483
70482
  }
70484
70483
  /**
70485
70484
  * Get Image endpoint
@@ -70540,13 +70539,13 @@ export const StorageVideosApiAxiosParamCreator = function (configuration) {
70540
70539
  /**
70541
70540
  * Delete Many Videos endpoint
70542
70541
  * @summary Delete Many Videos
70543
- * @param {Array<string>} videoIds Filter by videoIds
70542
+ * @param {DeleteManyVideosInput} deleteManyVideosInput
70544
70543
  * @param {*} [options] Override http request option.
70545
70544
  * @throws {RequiredError}
70546
70545
  */
70547
- deleteManyVideos: (videoIds_1, ...args_1) => __awaiter(this, [videoIds_1, ...args_1], void 0, function* (videoIds, options = {}) {
70548
- // verify required parameter 'videoIds' is not null or undefined
70549
- assertParamExists('deleteManyVideos', 'videoIds', videoIds);
70546
+ deleteManyVideos: (deleteManyVideosInput_1, ...args_1) => __awaiter(this, [deleteManyVideosInput_1, ...args_1], void 0, function* (deleteManyVideosInput, options = {}) {
70547
+ // verify required parameter 'deleteManyVideosInput' is not null or undefined
70548
+ assertParamExists('deleteManyVideos', 'deleteManyVideosInput', deleteManyVideosInput);
70550
70549
  const localVarPath = `/videos/delete`;
70551
70550
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
70552
70551
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -70561,13 +70560,12 @@ export const StorageVideosApiAxiosParamCreator = function (configuration) {
70561
70560
  yield setApiKeyToObject(localVarHeaderParameter, "api-key", configuration);
70562
70561
  // authentication OrganizationId required
70563
70562
  yield setApiKeyToObject(localVarHeaderParameter, "organization", configuration);
70564
- if (videoIds) {
70565
- localVarQueryParameter['videoIds'] = videoIds;
70566
- }
70563
+ localVarHeaderParameter['Content-Type'] = 'application/json';
70567
70564
  localVarHeaderParameter['Accept'] = 'application/json';
70568
70565
  setSearchParams(localVarUrlObj, localVarQueryParameter);
70569
70566
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
70570
70567
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
70568
+ localVarRequestOptions.data = serializeDataIfNeeded(deleteManyVideosInput, localVarRequestOptions, configuration);
70571
70569
  return {
70572
70570
  url: toPathString(localVarUrlObj),
70573
70571
  options: localVarRequestOptions,
@@ -70809,14 +70807,14 @@ export const StorageVideosApiFp = function (configuration) {
70809
70807
  /**
70810
70808
  * Delete Many Videos endpoint
70811
70809
  * @summary Delete Many Videos
70812
- * @param {Array<string>} videoIds Filter by videoIds
70810
+ * @param {DeleteManyVideosInput} deleteManyVideosInput
70813
70811
  * @param {*} [options] Override http request option.
70814
70812
  * @throws {RequiredError}
70815
70813
  */
70816
- deleteManyVideos(videoIds, options) {
70814
+ deleteManyVideos(deleteManyVideosInput, options) {
70817
70815
  return __awaiter(this, void 0, void 0, function* () {
70818
70816
  var _a, _b, _c;
70819
- const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyVideos(videoIds, options);
70817
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyVideos(deleteManyVideosInput, options);
70820
70818
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
70821
70819
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['StorageVideosApi.deleteManyVideos']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
70822
70820
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -70939,7 +70937,7 @@ export const StorageVideosApiFactory = function (configuration, basePath, axios)
70939
70937
  * @throws {RequiredError}
70940
70938
  */
70941
70939
  deleteManyVideos(requestParameters, options) {
70942
- return localVarFp.deleteManyVideos(requestParameters.videoIds, options).then((request) => request(axios, basePath));
70940
+ return localVarFp.deleteManyVideos(requestParameters.deleteManyVideosInput, options).then((request) => request(axios, basePath));
70943
70941
  },
70944
70942
  /**
70945
70943
  * Delete Video endpoint
@@ -71015,7 +71013,7 @@ export class StorageVideosApi extends BaseAPI {
71015
71013
  * @throws {RequiredError}
71016
71014
  */
71017
71015
  deleteManyVideos(requestParameters, options) {
71018
- return StorageVideosApiFp(this.configuration).deleteManyVideos(requestParameters.videoIds, options).then((request) => request(this.axios, this.basePath));
71016
+ return StorageVideosApiFp(this.configuration).deleteManyVideos(requestParameters.deleteManyVideosInput, options).then((request) => request(this.axios, this.basePath));
71019
71017
  }
71020
71018
  /**
71021
71019
  * Delete Video endpoint
@@ -0,0 +1,20 @@
1
+ # DeleteManyImagesInput
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **imageIds** | **Array&lt;string&gt;** | | [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { DeleteManyImagesInput } from '@connectedxm/admin-sdk';
14
+
15
+ const instance: DeleteManyImagesInput = {
16
+ imageIds,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,20 @@
1
+ # DeleteManyVideosInput
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **videoIds** | **Array&lt;string&gt;** | | [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { DeleteManyVideosInput } from '@connectedxm/admin-sdk';
14
+
15
+ const instance: DeleteManyVideosInput = {
16
+ videoIds,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -117,7 +117,7 @@ const { status, data } = await apiInstance.deleteImage(
117
117
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
118
118
 
119
119
  # **deleteManyImages**
120
- > CreateAccountInvitations200Response deleteManyImages()
120
+ > CreateAccountInvitations200Response deleteManyImages(deleteManyImagesInput)
121
121
 
122
122
  Delete Many Images endpoint
123
123
 
@@ -126,16 +126,17 @@ Delete Many Images endpoint
126
126
  ```typescript
127
127
  import {
128
128
  StorageImagesApi,
129
- Configuration
129
+ Configuration,
130
+ DeleteManyImagesInput
130
131
  } from '@connectedxm/admin-sdk';
131
132
 
132
133
  const configuration = new Configuration();
133
134
  const apiInstance = new StorageImagesApi(configuration);
134
135
 
135
- let imageIds: Array<string>; //Filter by imageIds (default to undefined)
136
+ let deleteManyImagesInput: DeleteManyImagesInput; //
136
137
 
137
138
  const { status, data } = await apiInstance.deleteManyImages(
138
- imageIds
139
+ deleteManyImagesInput
139
140
  );
140
141
  ```
141
142
 
@@ -143,7 +144,7 @@ const { status, data } = await apiInstance.deleteManyImages(
143
144
 
144
145
  |Name | Type | Description | Notes|
145
146
  |------------- | ------------- | ------------- | -------------|
146
- | **imageIds** | **Array&lt;string&gt;** | Filter by imageIds | defaults to undefined|
147
+ | **deleteManyImagesInput** | **DeleteManyImagesInput**| | |
147
148
 
148
149
 
149
150
  ### Return type
@@ -156,7 +157,7 @@ const { status, data } = await apiInstance.deleteManyImages(
156
157
 
157
158
  ### HTTP request headers
158
159
 
159
- - **Content-Type**: Not defined
160
+ - **Content-Type**: application/json
160
161
  - **Accept**: application/json
161
162
 
162
163
 
@@ -13,7 +13,7 @@ All URIs are relative to *https://admin-api.connected.dev*
13
13
  |[**updateVideo**](#updatevideo) | **PUT** /videos/{videoId} | Update Video|
14
14
 
15
15
  # **deleteManyVideos**
16
- > CreateAccountInvitations200Response deleteManyVideos()
16
+ > CreateAccountInvitations200Response deleteManyVideos(deleteManyVideosInput)
17
17
 
18
18
  Delete Many Videos endpoint
19
19
 
@@ -22,16 +22,17 @@ Delete Many Videos endpoint
22
22
  ```typescript
23
23
  import {
24
24
  StorageVideosApi,
25
- Configuration
25
+ Configuration,
26
+ DeleteManyVideosInput
26
27
  } from '@connectedxm/admin-sdk';
27
28
 
28
29
  const configuration = new Configuration();
29
30
  const apiInstance = new StorageVideosApi(configuration);
30
31
 
31
- let videoIds: Array<string>; //Filter by videoIds (default to undefined)
32
+ let deleteManyVideosInput: DeleteManyVideosInput; //
32
33
 
33
34
  const { status, data } = await apiInstance.deleteManyVideos(
34
- videoIds
35
+ deleteManyVideosInput
35
36
  );
36
37
  ```
37
38
 
@@ -39,7 +40,7 @@ const { status, data } = await apiInstance.deleteManyVideos(
39
40
 
40
41
  |Name | Type | Description | Notes|
41
42
  |------------- | ------------- | ------------- | -------------|
42
- | **videoIds** | **Array&lt;string&gt;** | Filter by videoIds | defaults to undefined|
43
+ | **deleteManyVideosInput** | **DeleteManyVideosInput**| | |
43
44
 
44
45
 
45
46
  ### Return type
@@ -52,7 +53,7 @@ const { status, data } = await apiInstance.deleteManyVideos(
52
53
 
53
54
  ### HTTP request headers
54
55
 
55
- - **Content-Type**: Not defined
56
+ - **Content-Type**: application/json
56
57
  - **Accept**: application/json
57
58
 
58
59
 
@@ -357,7 +357,7 @@ const { status, data } = await apiInstance.updateStream(
357
357
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
358
358
 
359
359
  # **updateStreamInputConfig**
360
- > CreateStreamInput200Response updateStreamInputConfig(streamInputUpdateInputs)
360
+ > CreateAccountAddress200Response updateStreamInputConfig(streamInputUpdateInputs)
361
361
 
362
362
  Update Stream Input Config endpoint
363
363
 
@@ -392,7 +392,7 @@ const { status, data } = await apiInstance.updateStreamInputConfig(
392
392
 
393
393
  ### Return type
394
394
 
395
- **CreateStreamInput200Response**
395
+ **CreateAccountAddress200Response**
396
396
 
397
397
  ### Authorization
398
398
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin-sdk",
3
- "version": "6.7.4",
3
+ "version": "6.7.6",
4
4
  "description": "OpenAPI client for @connectedxm/admin-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {