@connectedxm/admin-sdk 6.7.5 → 6.7.7
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/.openapi-generator/FILES +2 -0
- package/README.md +4 -0
- package/api.ts +218 -34
- package/dist/api.d.ts +110 -16
- package/dist/api.js +172 -24
- package/dist/esm/api.d.ts +110 -16
- package/dist/esm/api.js +172 -24
- package/docs/DeleteManyImagesInput.md +20 -0
- package/docs/DeleteManyVideosInput.md +20 -0
- package/docs/EventsPassesApi.md +110 -0
- package/docs/StorageImagesApi.md +7 -6
- package/docs/StorageVideosApi.md +7 -6
- package/package.json +1 -1
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
|
}
|
|
@@ -27652,6 +27658,15 @@ export declare const EventsPassesApiAxiosParamCreator: (configuration?: Configur
|
|
|
27652
27658
|
* @throws {RequiredError}
|
|
27653
27659
|
*/
|
|
27654
27660
|
cancelEventPass: (eventId: string, passId: string, sendEmail?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27661
|
+
/**
|
|
27662
|
+
* Checkin Event Pass endpoint
|
|
27663
|
+
* @summary Checkin Event Pass
|
|
27664
|
+
* @param {string} eventId The event identifier
|
|
27665
|
+
* @param {string} passId The pass identifier
|
|
27666
|
+
* @param {*} [options] Override http request option.
|
|
27667
|
+
* @throws {RequiredError}
|
|
27668
|
+
*/
|
|
27669
|
+
checkinEventPass: (eventId: string, passId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27655
27670
|
/**
|
|
27656
27671
|
* Create Event Pass endpoint
|
|
27657
27672
|
* @summary Create Event Pass
|
|
@@ -27871,6 +27886,15 @@ export declare const EventsPassesApiAxiosParamCreator: (configuration?: Configur
|
|
|
27871
27886
|
* @throws {RequiredError}
|
|
27872
27887
|
*/
|
|
27873
27888
|
transferEventPass: (eventId: string, accountId: string, passId: string, receiverId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27889
|
+
/**
|
|
27890
|
+
* Undo Checkin Event Pass endpoint
|
|
27891
|
+
* @summary Undo Checkin Event Pass
|
|
27892
|
+
* @param {string} eventId The event identifier
|
|
27893
|
+
* @param {string} passId The pass identifier
|
|
27894
|
+
* @param {*} [options] Override http request option.
|
|
27895
|
+
* @throws {RequiredError}
|
|
27896
|
+
*/
|
|
27897
|
+
undoCheckinEventPass: (eventId: string, passId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27874
27898
|
/**
|
|
27875
27899
|
* Update Event Pass endpoint
|
|
27876
27900
|
* @summary Update Event Pass
|
|
@@ -27973,6 +27997,15 @@ export declare const EventsPassesApiFp: (configuration?: Configuration) => {
|
|
|
27973
27997
|
* @throws {RequiredError}
|
|
27974
27998
|
*/
|
|
27975
27999
|
cancelEventPass(eventId: string, passId: string, sendEmail?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventPass200Response>>;
|
|
28000
|
+
/**
|
|
28001
|
+
* Checkin Event Pass endpoint
|
|
28002
|
+
* @summary Checkin Event Pass
|
|
28003
|
+
* @param {string} eventId The event identifier
|
|
28004
|
+
* @param {string} passId The pass identifier
|
|
28005
|
+
* @param {*} [options] Override http request option.
|
|
28006
|
+
* @throws {RequiredError}
|
|
28007
|
+
*/
|
|
28008
|
+
checkinEventPass(eventId: string, passId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventPass200Response>>;
|
|
27976
28009
|
/**
|
|
27977
28010
|
* Create Event Pass endpoint
|
|
27978
28011
|
* @summary Create Event Pass
|
|
@@ -28192,6 +28225,15 @@ export declare const EventsPassesApiFp: (configuration?: Configuration) => {
|
|
|
28192
28225
|
* @throws {RequiredError}
|
|
28193
28226
|
*/
|
|
28194
28227
|
transferEventPass(eventId: string, accountId: string, passId: string, receiverId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
28228
|
+
/**
|
|
28229
|
+
* Undo Checkin Event Pass endpoint
|
|
28230
|
+
* @summary Undo Checkin Event Pass
|
|
28231
|
+
* @param {string} eventId The event identifier
|
|
28232
|
+
* @param {string} passId The pass identifier
|
|
28233
|
+
* @param {*} [options] Override http request option.
|
|
28234
|
+
* @throws {RequiredError}
|
|
28235
|
+
*/
|
|
28236
|
+
undoCheckinEventPass(eventId: string, passId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventPass200Response>>;
|
|
28195
28237
|
/**
|
|
28196
28238
|
* Update Event Pass endpoint
|
|
28197
28239
|
* @summary Update Event Pass
|
|
@@ -28290,6 +28332,14 @@ export declare const EventsPassesApiFactory: (configuration?: Configuration, bas
|
|
|
28290
28332
|
* @throws {RequiredError}
|
|
28291
28333
|
*/
|
|
28292
28334
|
cancelEventPass(requestParameters: EventsPassesApiCancelEventPassRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventPass200Response>;
|
|
28335
|
+
/**
|
|
28336
|
+
* Checkin Event Pass endpoint
|
|
28337
|
+
* @summary Checkin Event Pass
|
|
28338
|
+
* @param {EventsPassesApiCheckinEventPassRequest} requestParameters Request parameters.
|
|
28339
|
+
* @param {*} [options] Override http request option.
|
|
28340
|
+
* @throws {RequiredError}
|
|
28341
|
+
*/
|
|
28342
|
+
checkinEventPass(requestParameters: EventsPassesApiCheckinEventPassRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventPass200Response>;
|
|
28293
28343
|
/**
|
|
28294
28344
|
* Create Event Pass endpoint
|
|
28295
28345
|
* @summary Create Event Pass
|
|
@@ -28442,6 +28492,14 @@ export declare const EventsPassesApiFactory: (configuration?: Configuration, bas
|
|
|
28442
28492
|
* @throws {RequiredError}
|
|
28443
28493
|
*/
|
|
28444
28494
|
transferEventPass(requestParameters: EventsPassesApiTransferEventPassRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
28495
|
+
/**
|
|
28496
|
+
* Undo Checkin Event Pass endpoint
|
|
28497
|
+
* @summary Undo Checkin Event Pass
|
|
28498
|
+
* @param {EventsPassesApiUndoCheckinEventPassRequest} requestParameters Request parameters.
|
|
28499
|
+
* @param {*} [options] Override http request option.
|
|
28500
|
+
* @throws {RequiredError}
|
|
28501
|
+
*/
|
|
28502
|
+
undoCheckinEventPass(requestParameters: EventsPassesApiUndoCheckinEventPassRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventPass200Response>;
|
|
28445
28503
|
/**
|
|
28446
28504
|
* Update Event Pass endpoint
|
|
28447
28505
|
* @summary Update Event Pass
|
|
@@ -28533,6 +28591,19 @@ export interface EventsPassesApiCancelEventPassRequest {
|
|
|
28533
28591
|
*/
|
|
28534
28592
|
readonly sendEmail?: boolean;
|
|
28535
28593
|
}
|
|
28594
|
+
/**
|
|
28595
|
+
* Request parameters for checkinEventPass operation in EventsPassesApi.
|
|
28596
|
+
*/
|
|
28597
|
+
export interface EventsPassesApiCheckinEventPassRequest {
|
|
28598
|
+
/**
|
|
28599
|
+
* The event identifier
|
|
28600
|
+
*/
|
|
28601
|
+
readonly eventId: string;
|
|
28602
|
+
/**
|
|
28603
|
+
* The pass identifier
|
|
28604
|
+
*/
|
|
28605
|
+
readonly passId: string;
|
|
28606
|
+
}
|
|
28536
28607
|
/**
|
|
28537
28608
|
* Request parameters for createEventPass operation in EventsPassesApi.
|
|
28538
28609
|
*/
|
|
@@ -28969,6 +29040,19 @@ export interface EventsPassesApiTransferEventPassRequest {
|
|
|
28969
29040
|
*/
|
|
28970
29041
|
readonly receiverId: string;
|
|
28971
29042
|
}
|
|
29043
|
+
/**
|
|
29044
|
+
* Request parameters for undoCheckinEventPass operation in EventsPassesApi.
|
|
29045
|
+
*/
|
|
29046
|
+
export interface EventsPassesApiUndoCheckinEventPassRequest {
|
|
29047
|
+
/**
|
|
29048
|
+
* The event identifier
|
|
29049
|
+
*/
|
|
29050
|
+
readonly eventId: string;
|
|
29051
|
+
/**
|
|
29052
|
+
* The pass identifier
|
|
29053
|
+
*/
|
|
29054
|
+
readonly passId: string;
|
|
29055
|
+
}
|
|
28972
29056
|
/**
|
|
28973
29057
|
* Request parameters for updateEventPass operation in EventsPassesApi.
|
|
28974
29058
|
*/
|
|
@@ -29124,6 +29208,14 @@ export declare class EventsPassesApi extends BaseAPI {
|
|
|
29124
29208
|
* @throws {RequiredError}
|
|
29125
29209
|
*/
|
|
29126
29210
|
cancelEventPass(requestParameters: EventsPassesApiCancelEventPassRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventPass200Response, any, {}>>;
|
|
29211
|
+
/**
|
|
29212
|
+
* Checkin Event Pass endpoint
|
|
29213
|
+
* @summary Checkin Event Pass
|
|
29214
|
+
* @param {EventsPassesApiCheckinEventPassRequest} requestParameters Request parameters.
|
|
29215
|
+
* @param {*} [options] Override http request option.
|
|
29216
|
+
* @throws {RequiredError}
|
|
29217
|
+
*/
|
|
29218
|
+
checkinEventPass(requestParameters: EventsPassesApiCheckinEventPassRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventPass200Response, any, {}>>;
|
|
29127
29219
|
/**
|
|
29128
29220
|
* Create Event Pass endpoint
|
|
29129
29221
|
* @summary Create Event Pass
|
|
@@ -29276,6 +29368,14 @@ export declare class EventsPassesApi extends BaseAPI {
|
|
|
29276
29368
|
* @throws {RequiredError}
|
|
29277
29369
|
*/
|
|
29278
29370
|
transferEventPass(requestParameters: EventsPassesApiTransferEventPassRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
29371
|
+
/**
|
|
29372
|
+
* Undo Checkin Event Pass endpoint
|
|
29373
|
+
* @summary Undo Checkin Event Pass
|
|
29374
|
+
* @param {EventsPassesApiUndoCheckinEventPassRequest} requestParameters Request parameters.
|
|
29375
|
+
* @param {*} [options] Override http request option.
|
|
29376
|
+
* @throws {RequiredError}
|
|
29377
|
+
*/
|
|
29378
|
+
undoCheckinEventPass(requestParameters: EventsPassesApiUndoCheckinEventPassRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventPass200Response, any, {}>>;
|
|
29279
29379
|
/**
|
|
29280
29380
|
* Update Event Pass endpoint
|
|
29281
29381
|
* @summary Update Event Pass
|
|
@@ -54731,11 +54831,11 @@ export declare const StorageImagesApiAxiosParamCreator: (configuration?: Configu
|
|
|
54731
54831
|
/**
|
|
54732
54832
|
* Delete Many Images endpoint
|
|
54733
54833
|
* @summary Delete Many Images
|
|
54734
|
-
* @param {
|
|
54834
|
+
* @param {DeleteManyImagesInput} deleteManyImagesInput
|
|
54735
54835
|
* @param {*} [options] Override http request option.
|
|
54736
54836
|
* @throws {RequiredError}
|
|
54737
54837
|
*/
|
|
54738
|
-
deleteManyImages: (
|
|
54838
|
+
deleteManyImages: (deleteManyImagesInput: DeleteManyImagesInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
54739
54839
|
/**
|
|
54740
54840
|
* Get Image endpoint
|
|
54741
54841
|
* @summary Get Image
|
|
@@ -54806,11 +54906,11 @@ export declare const StorageImagesApiFp: (configuration?: Configuration) => {
|
|
|
54806
54906
|
/**
|
|
54807
54907
|
* Delete Many Images endpoint
|
|
54808
54908
|
* @summary Delete Many Images
|
|
54809
|
-
* @param {
|
|
54909
|
+
* @param {DeleteManyImagesInput} deleteManyImagesInput
|
|
54810
54910
|
* @param {*} [options] Override http request option.
|
|
54811
54911
|
* @throws {RequiredError}
|
|
54812
54912
|
*/
|
|
54813
|
-
deleteManyImages(
|
|
54913
|
+
deleteManyImages(deleteManyImagesInput: DeleteManyImagesInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
54814
54914
|
/**
|
|
54815
54915
|
* Get Image endpoint
|
|
54816
54916
|
* @summary Get Image
|
|
@@ -54946,10 +55046,7 @@ export interface StorageImagesApiDeleteImageRequest {
|
|
|
54946
55046
|
* Request parameters for deleteManyImages operation in StorageImagesApi.
|
|
54947
55047
|
*/
|
|
54948
55048
|
export interface StorageImagesApiDeleteManyImagesRequest {
|
|
54949
|
-
|
|
54950
|
-
* Filter by imageIds
|
|
54951
|
-
*/
|
|
54952
|
-
readonly imageIds: Array<string>;
|
|
55049
|
+
readonly deleteManyImagesInput: DeleteManyImagesInput;
|
|
54953
55050
|
}
|
|
54954
55051
|
/**
|
|
54955
55052
|
* Request parameters for getImage operation in StorageImagesApi.
|
|
@@ -55093,11 +55190,11 @@ export declare const StorageVideosApiAxiosParamCreator: (configuration?: Configu
|
|
|
55093
55190
|
/**
|
|
55094
55191
|
* Delete Many Videos endpoint
|
|
55095
55192
|
* @summary Delete Many Videos
|
|
55096
|
-
* @param {
|
|
55193
|
+
* @param {DeleteManyVideosInput} deleteManyVideosInput
|
|
55097
55194
|
* @param {*} [options] Override http request option.
|
|
55098
55195
|
* @throws {RequiredError}
|
|
55099
55196
|
*/
|
|
55100
|
-
deleteManyVideos: (
|
|
55197
|
+
deleteManyVideos: (deleteManyVideosInput: DeleteManyVideosInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55101
55198
|
/**
|
|
55102
55199
|
* Delete Video endpoint
|
|
55103
55200
|
* @summary Delete Video
|
|
@@ -55159,11 +55256,11 @@ export declare const StorageVideosApiFp: (configuration?: Configuration) => {
|
|
|
55159
55256
|
/**
|
|
55160
55257
|
* Delete Many Videos endpoint
|
|
55161
55258
|
* @summary Delete Many Videos
|
|
55162
|
-
* @param {
|
|
55259
|
+
* @param {DeleteManyVideosInput} deleteManyVideosInput
|
|
55163
55260
|
* @param {*} [options] Override http request option.
|
|
55164
55261
|
* @throws {RequiredError}
|
|
55165
55262
|
*/
|
|
55166
|
-
deleteManyVideos(
|
|
55263
|
+
deleteManyVideos(deleteManyVideosInput: DeleteManyVideosInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
55167
55264
|
/**
|
|
55168
55265
|
* Delete Video endpoint
|
|
55169
55266
|
* @summary Delete Video
|
|
@@ -55283,10 +55380,7 @@ export declare const StorageVideosApiFactory: (configuration?: Configuration, ba
|
|
|
55283
55380
|
* Request parameters for deleteManyVideos operation in StorageVideosApi.
|
|
55284
55381
|
*/
|
|
55285
55382
|
export interface StorageVideosApiDeleteManyVideosRequest {
|
|
55286
|
-
|
|
55287
|
-
* Filter by videoIds
|
|
55288
|
-
*/
|
|
55289
|
-
readonly videoIds: Array<string>;
|
|
55383
|
+
readonly deleteManyVideosInput: DeleteManyVideosInput;
|
|
55290
55384
|
}
|
|
55291
55385
|
/**
|
|
55292
55386
|
* Request parameters for deleteVideo operation in StorageVideosApi.
|
package/dist/api.js
CHANGED
|
@@ -28937,6 +28937,44 @@ const EventsPassesApiAxiosParamCreator = function (configuration) {
|
|
|
28937
28937
|
options: localVarRequestOptions,
|
|
28938
28938
|
};
|
|
28939
28939
|
}),
|
|
28940
|
+
/**
|
|
28941
|
+
* Checkin Event Pass endpoint
|
|
28942
|
+
* @summary Checkin Event Pass
|
|
28943
|
+
* @param {string} eventId The event identifier
|
|
28944
|
+
* @param {string} passId The pass identifier
|
|
28945
|
+
* @param {*} [options] Override http request option.
|
|
28946
|
+
* @throws {RequiredError}
|
|
28947
|
+
*/
|
|
28948
|
+
checkinEventPass: (eventId_1, passId_1, ...args_1) => __awaiter(this, [eventId_1, passId_1, ...args_1], void 0, function* (eventId, passId, options = {}) {
|
|
28949
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
28950
|
+
(0, common_1.assertParamExists)('checkinEventPass', 'eventId', eventId);
|
|
28951
|
+
// verify required parameter 'passId' is not null or undefined
|
|
28952
|
+
(0, common_1.assertParamExists)('checkinEventPass', 'passId', passId);
|
|
28953
|
+
const localVarPath = `/events/{eventId}/passes/{passId}/checkin`
|
|
28954
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)))
|
|
28955
|
+
.replace(`{${"passId"}}`, encodeURIComponent(String(passId)));
|
|
28956
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
28957
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
28958
|
+
let baseOptions;
|
|
28959
|
+
if (configuration) {
|
|
28960
|
+
baseOptions = configuration.baseOptions;
|
|
28961
|
+
}
|
|
28962
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
28963
|
+
const localVarHeaderParameter = {};
|
|
28964
|
+
const localVarQueryParameter = {};
|
|
28965
|
+
// authentication ApiKeyAuth required
|
|
28966
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
28967
|
+
// authentication OrganizationId required
|
|
28968
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
28969
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
28970
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
28971
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
28972
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
28973
|
+
return {
|
|
28974
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
28975
|
+
options: localVarRequestOptions,
|
|
28976
|
+
};
|
|
28977
|
+
}),
|
|
28940
28978
|
/**
|
|
28941
28979
|
* Create Event Pass endpoint
|
|
28942
28980
|
* @summary Create Event Pass
|
|
@@ -29854,6 +29892,44 @@ const EventsPassesApiAxiosParamCreator = function (configuration) {
|
|
|
29854
29892
|
options: localVarRequestOptions,
|
|
29855
29893
|
};
|
|
29856
29894
|
}),
|
|
29895
|
+
/**
|
|
29896
|
+
* Undo Checkin Event Pass endpoint
|
|
29897
|
+
* @summary Undo Checkin Event Pass
|
|
29898
|
+
* @param {string} eventId The event identifier
|
|
29899
|
+
* @param {string} passId The pass identifier
|
|
29900
|
+
* @param {*} [options] Override http request option.
|
|
29901
|
+
* @throws {RequiredError}
|
|
29902
|
+
*/
|
|
29903
|
+
undoCheckinEventPass: (eventId_1, passId_1, ...args_1) => __awaiter(this, [eventId_1, passId_1, ...args_1], void 0, function* (eventId, passId, options = {}) {
|
|
29904
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
29905
|
+
(0, common_1.assertParamExists)('undoCheckinEventPass', 'eventId', eventId);
|
|
29906
|
+
// verify required parameter 'passId' is not null or undefined
|
|
29907
|
+
(0, common_1.assertParamExists)('undoCheckinEventPass', 'passId', passId);
|
|
29908
|
+
const localVarPath = `/events/{eventId}/passes/{passId}/checkin/undo`
|
|
29909
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)))
|
|
29910
|
+
.replace(`{${"passId"}}`, encodeURIComponent(String(passId)));
|
|
29911
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29912
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
29913
|
+
let baseOptions;
|
|
29914
|
+
if (configuration) {
|
|
29915
|
+
baseOptions = configuration.baseOptions;
|
|
29916
|
+
}
|
|
29917
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
29918
|
+
const localVarHeaderParameter = {};
|
|
29919
|
+
const localVarQueryParameter = {};
|
|
29920
|
+
// authentication ApiKeyAuth required
|
|
29921
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
29922
|
+
// authentication OrganizationId required
|
|
29923
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
29924
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
29925
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
29926
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29927
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
29928
|
+
return {
|
|
29929
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
29930
|
+
options: localVarRequestOptions,
|
|
29931
|
+
};
|
|
29932
|
+
}),
|
|
29857
29933
|
/**
|
|
29858
29934
|
* Update Event Pass endpoint
|
|
29859
29935
|
* @summary Update Event Pass
|
|
@@ -30231,6 +30307,23 @@ const EventsPassesApiFp = function (configuration) {
|
|
|
30231
30307
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30232
30308
|
});
|
|
30233
30309
|
},
|
|
30310
|
+
/**
|
|
30311
|
+
* Checkin Event Pass endpoint
|
|
30312
|
+
* @summary Checkin Event Pass
|
|
30313
|
+
* @param {string} eventId The event identifier
|
|
30314
|
+
* @param {string} passId The pass identifier
|
|
30315
|
+
* @param {*} [options] Override http request option.
|
|
30316
|
+
* @throws {RequiredError}
|
|
30317
|
+
*/
|
|
30318
|
+
checkinEventPass(eventId, passId, options) {
|
|
30319
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
30320
|
+
var _a, _b, _c;
|
|
30321
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.checkinEventPass(eventId, passId, options);
|
|
30322
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
30323
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EventsPassesApi.checkinEventPass']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
30324
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30325
|
+
});
|
|
30326
|
+
},
|
|
30234
30327
|
/**
|
|
30235
30328
|
* Create Event Pass endpoint
|
|
30236
30329
|
* @summary Create Event Pass
|
|
@@ -30602,6 +30695,23 @@ const EventsPassesApiFp = function (configuration) {
|
|
|
30602
30695
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30603
30696
|
});
|
|
30604
30697
|
},
|
|
30698
|
+
/**
|
|
30699
|
+
* Undo Checkin Event Pass endpoint
|
|
30700
|
+
* @summary Undo Checkin Event Pass
|
|
30701
|
+
* @param {string} eventId The event identifier
|
|
30702
|
+
* @param {string} passId The pass identifier
|
|
30703
|
+
* @param {*} [options] Override http request option.
|
|
30704
|
+
* @throws {RequiredError}
|
|
30705
|
+
*/
|
|
30706
|
+
undoCheckinEventPass(eventId, passId, options) {
|
|
30707
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
30708
|
+
var _a, _b, _c;
|
|
30709
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.undoCheckinEventPass(eventId, passId, options);
|
|
30710
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
30711
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EventsPassesApi.undoCheckinEventPass']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
30712
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30713
|
+
});
|
|
30714
|
+
},
|
|
30605
30715
|
/**
|
|
30606
30716
|
* Update Event Pass endpoint
|
|
30607
30717
|
* @summary Update Event Pass
|
|
@@ -30764,6 +30874,16 @@ const EventsPassesApiFactory = function (configuration, basePath, axios) {
|
|
|
30764
30874
|
cancelEventPass(requestParameters, options) {
|
|
30765
30875
|
return localVarFp.cancelEventPass(requestParameters.eventId, requestParameters.passId, requestParameters.sendEmail, options).then((request) => request(axios, basePath));
|
|
30766
30876
|
},
|
|
30877
|
+
/**
|
|
30878
|
+
* Checkin Event Pass endpoint
|
|
30879
|
+
* @summary Checkin Event Pass
|
|
30880
|
+
* @param {EventsPassesApiCheckinEventPassRequest} requestParameters Request parameters.
|
|
30881
|
+
* @param {*} [options] Override http request option.
|
|
30882
|
+
* @throws {RequiredError}
|
|
30883
|
+
*/
|
|
30884
|
+
checkinEventPass(requestParameters, options) {
|
|
30885
|
+
return localVarFp.checkinEventPass(requestParameters.eventId, requestParameters.passId, options).then((request) => request(axios, basePath));
|
|
30886
|
+
},
|
|
30767
30887
|
/**
|
|
30768
30888
|
* Create Event Pass endpoint
|
|
30769
30889
|
* @summary Create Event Pass
|
|
@@ -30954,6 +31074,16 @@ const EventsPassesApiFactory = function (configuration, basePath, axios) {
|
|
|
30954
31074
|
transferEventPass(requestParameters, options) {
|
|
30955
31075
|
return localVarFp.transferEventPass(requestParameters.eventId, requestParameters.accountId, requestParameters.passId, requestParameters.receiverId, options).then((request) => request(axios, basePath));
|
|
30956
31076
|
},
|
|
31077
|
+
/**
|
|
31078
|
+
* Undo Checkin Event Pass endpoint
|
|
31079
|
+
* @summary Undo Checkin Event Pass
|
|
31080
|
+
* @param {EventsPassesApiUndoCheckinEventPassRequest} requestParameters Request parameters.
|
|
31081
|
+
* @param {*} [options] Override http request option.
|
|
31082
|
+
* @throws {RequiredError}
|
|
31083
|
+
*/
|
|
31084
|
+
undoCheckinEventPass(requestParameters, options) {
|
|
31085
|
+
return localVarFp.undoCheckinEventPass(requestParameters.eventId, requestParameters.passId, options).then((request) => request(axios, basePath));
|
|
31086
|
+
},
|
|
30957
31087
|
/**
|
|
30958
31088
|
* Update Event Pass endpoint
|
|
30959
31089
|
* @summary Update Event Pass
|
|
@@ -31051,6 +31181,16 @@ class EventsPassesApi extends base_1.BaseAPI {
|
|
|
31051
31181
|
cancelEventPass(requestParameters, options) {
|
|
31052
31182
|
return (0, exports.EventsPassesApiFp)(this.configuration).cancelEventPass(requestParameters.eventId, requestParameters.passId, requestParameters.sendEmail, options).then((request) => request(this.axios, this.basePath));
|
|
31053
31183
|
}
|
|
31184
|
+
/**
|
|
31185
|
+
* Checkin Event Pass endpoint
|
|
31186
|
+
* @summary Checkin Event Pass
|
|
31187
|
+
* @param {EventsPassesApiCheckinEventPassRequest} requestParameters Request parameters.
|
|
31188
|
+
* @param {*} [options] Override http request option.
|
|
31189
|
+
* @throws {RequiredError}
|
|
31190
|
+
*/
|
|
31191
|
+
checkinEventPass(requestParameters, options) {
|
|
31192
|
+
return (0, exports.EventsPassesApiFp)(this.configuration).checkinEventPass(requestParameters.eventId, requestParameters.passId, options).then((request) => request(this.axios, this.basePath));
|
|
31193
|
+
}
|
|
31054
31194
|
/**
|
|
31055
31195
|
* Create Event Pass endpoint
|
|
31056
31196
|
* @summary Create Event Pass
|
|
@@ -31241,6 +31381,16 @@ class EventsPassesApi extends base_1.BaseAPI {
|
|
|
31241
31381
|
transferEventPass(requestParameters, options) {
|
|
31242
31382
|
return (0, exports.EventsPassesApiFp)(this.configuration).transferEventPass(requestParameters.eventId, requestParameters.accountId, requestParameters.passId, requestParameters.receiverId, options).then((request) => request(this.axios, this.basePath));
|
|
31243
31383
|
}
|
|
31384
|
+
/**
|
|
31385
|
+
* Undo Checkin Event Pass endpoint
|
|
31386
|
+
* @summary Undo Checkin Event Pass
|
|
31387
|
+
* @param {EventsPassesApiUndoCheckinEventPassRequest} requestParameters Request parameters.
|
|
31388
|
+
* @param {*} [options] Override http request option.
|
|
31389
|
+
* @throws {RequiredError}
|
|
31390
|
+
*/
|
|
31391
|
+
undoCheckinEventPass(requestParameters, options) {
|
|
31392
|
+
return (0, exports.EventsPassesApiFp)(this.configuration).undoCheckinEventPass(requestParameters.eventId, requestParameters.passId, options).then((request) => request(this.axios, this.basePath));
|
|
31393
|
+
}
|
|
31244
31394
|
/**
|
|
31245
31395
|
* Update Event Pass endpoint
|
|
31246
31396
|
* @summary Update Event Pass
|
|
@@ -70471,13 +70621,13 @@ const StorageImagesApiAxiosParamCreator = function (configuration) {
|
|
|
70471
70621
|
/**
|
|
70472
70622
|
* Delete Many Images endpoint
|
|
70473
70623
|
* @summary Delete Many Images
|
|
70474
|
-
* @param {
|
|
70624
|
+
* @param {DeleteManyImagesInput} deleteManyImagesInput
|
|
70475
70625
|
* @param {*} [options] Override http request option.
|
|
70476
70626
|
* @throws {RequiredError}
|
|
70477
70627
|
*/
|
|
70478
|
-
deleteManyImages: (
|
|
70479
|
-
// verify required parameter '
|
|
70480
|
-
(0, common_1.assertParamExists)('deleteManyImages', '
|
|
70628
|
+
deleteManyImages: (deleteManyImagesInput_1, ...args_1) => __awaiter(this, [deleteManyImagesInput_1, ...args_1], void 0, function* (deleteManyImagesInput, options = {}) {
|
|
70629
|
+
// verify required parameter 'deleteManyImagesInput' is not null or undefined
|
|
70630
|
+
(0, common_1.assertParamExists)('deleteManyImages', 'deleteManyImagesInput', deleteManyImagesInput);
|
|
70481
70631
|
const localVarPath = `/images/delete`;
|
|
70482
70632
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
70483
70633
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -70492,13 +70642,12 @@ const StorageImagesApiAxiosParamCreator = function (configuration) {
|
|
|
70492
70642
|
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
70493
70643
|
// authentication OrganizationId required
|
|
70494
70644
|
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
70495
|
-
|
|
70496
|
-
localVarQueryParameter['imageIds'] = imageIds;
|
|
70497
|
-
}
|
|
70645
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
70498
70646
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
70499
70647
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
70500
70648
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
70501
70649
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
70650
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(deleteManyImagesInput, localVarRequestOptions, configuration);
|
|
70502
70651
|
return {
|
|
70503
70652
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
70504
70653
|
options: localVarRequestOptions,
|
|
@@ -70747,14 +70896,14 @@ const StorageImagesApiFp = function (configuration) {
|
|
|
70747
70896
|
/**
|
|
70748
70897
|
* Delete Many Images endpoint
|
|
70749
70898
|
* @summary Delete Many Images
|
|
70750
|
-
* @param {
|
|
70899
|
+
* @param {DeleteManyImagesInput} deleteManyImagesInput
|
|
70751
70900
|
* @param {*} [options] Override http request option.
|
|
70752
70901
|
* @throws {RequiredError}
|
|
70753
70902
|
*/
|
|
70754
|
-
deleteManyImages(
|
|
70903
|
+
deleteManyImages(deleteManyImagesInput, options) {
|
|
70755
70904
|
return __awaiter(this, void 0, void 0, function* () {
|
|
70756
70905
|
var _a, _b, _c;
|
|
70757
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyImages(
|
|
70906
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyImages(deleteManyImagesInput, options);
|
|
70758
70907
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
70759
70908
|
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
70909
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -70883,7 +71032,7 @@ const StorageImagesApiFactory = function (configuration, basePath, axios) {
|
|
|
70883
71032
|
* @throws {RequiredError}
|
|
70884
71033
|
*/
|
|
70885
71034
|
deleteManyImages(requestParameters, options) {
|
|
70886
|
-
return localVarFp.deleteManyImages(requestParameters.
|
|
71035
|
+
return localVarFp.deleteManyImages(requestParameters.deleteManyImagesInput, options).then((request) => request(axios, basePath));
|
|
70887
71036
|
},
|
|
70888
71037
|
/**
|
|
70889
71038
|
* Get Image endpoint
|
|
@@ -70970,7 +71119,7 @@ class StorageImagesApi extends base_1.BaseAPI {
|
|
|
70970
71119
|
* @throws {RequiredError}
|
|
70971
71120
|
*/
|
|
70972
71121
|
deleteManyImages(requestParameters, options) {
|
|
70973
|
-
return (0, exports.StorageImagesApiFp)(this.configuration).deleteManyImages(requestParameters.
|
|
71122
|
+
return (0, exports.StorageImagesApiFp)(this.configuration).deleteManyImages(requestParameters.deleteManyImagesInput, options).then((request) => request(this.axios, this.basePath));
|
|
70974
71123
|
}
|
|
70975
71124
|
/**
|
|
70976
71125
|
* Get Image endpoint
|
|
@@ -71032,13 +71181,13 @@ const StorageVideosApiAxiosParamCreator = function (configuration) {
|
|
|
71032
71181
|
/**
|
|
71033
71182
|
* Delete Many Videos endpoint
|
|
71034
71183
|
* @summary Delete Many Videos
|
|
71035
|
-
* @param {
|
|
71184
|
+
* @param {DeleteManyVideosInput} deleteManyVideosInput
|
|
71036
71185
|
* @param {*} [options] Override http request option.
|
|
71037
71186
|
* @throws {RequiredError}
|
|
71038
71187
|
*/
|
|
71039
|
-
deleteManyVideos: (
|
|
71040
|
-
// verify required parameter '
|
|
71041
|
-
(0, common_1.assertParamExists)('deleteManyVideos', '
|
|
71188
|
+
deleteManyVideos: (deleteManyVideosInput_1, ...args_1) => __awaiter(this, [deleteManyVideosInput_1, ...args_1], void 0, function* (deleteManyVideosInput, options = {}) {
|
|
71189
|
+
// verify required parameter 'deleteManyVideosInput' is not null or undefined
|
|
71190
|
+
(0, common_1.assertParamExists)('deleteManyVideos', 'deleteManyVideosInput', deleteManyVideosInput);
|
|
71042
71191
|
const localVarPath = `/videos/delete`;
|
|
71043
71192
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
71044
71193
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -71053,13 +71202,12 @@ const StorageVideosApiAxiosParamCreator = function (configuration) {
|
|
|
71053
71202
|
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
71054
71203
|
// authentication OrganizationId required
|
|
71055
71204
|
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
71056
|
-
|
|
71057
|
-
localVarQueryParameter['videoIds'] = videoIds;
|
|
71058
|
-
}
|
|
71205
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
71059
71206
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
71060
71207
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
71061
71208
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
71062
71209
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
71210
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(deleteManyVideosInput, localVarRequestOptions, configuration);
|
|
71063
71211
|
return {
|
|
71064
71212
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
71065
71213
|
options: localVarRequestOptions,
|
|
@@ -71302,14 +71450,14 @@ const StorageVideosApiFp = function (configuration) {
|
|
|
71302
71450
|
/**
|
|
71303
71451
|
* Delete Many Videos endpoint
|
|
71304
71452
|
* @summary Delete Many Videos
|
|
71305
|
-
* @param {
|
|
71453
|
+
* @param {DeleteManyVideosInput} deleteManyVideosInput
|
|
71306
71454
|
* @param {*} [options] Override http request option.
|
|
71307
71455
|
* @throws {RequiredError}
|
|
71308
71456
|
*/
|
|
71309
|
-
deleteManyVideos(
|
|
71457
|
+
deleteManyVideos(deleteManyVideosInput, options) {
|
|
71310
71458
|
return __awaiter(this, void 0, void 0, function* () {
|
|
71311
71459
|
var _a, _b, _c;
|
|
71312
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyVideos(
|
|
71460
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyVideos(deleteManyVideosInput, options);
|
|
71313
71461
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
71314
71462
|
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
71463
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -71433,7 +71581,7 @@ const StorageVideosApiFactory = function (configuration, basePath, axios) {
|
|
|
71433
71581
|
* @throws {RequiredError}
|
|
71434
71582
|
*/
|
|
71435
71583
|
deleteManyVideos(requestParameters, options) {
|
|
71436
|
-
return localVarFp.deleteManyVideos(requestParameters.
|
|
71584
|
+
return localVarFp.deleteManyVideos(requestParameters.deleteManyVideosInput, options).then((request) => request(axios, basePath));
|
|
71437
71585
|
},
|
|
71438
71586
|
/**
|
|
71439
71587
|
* Delete Video endpoint
|
|
@@ -71510,7 +71658,7 @@ class StorageVideosApi extends base_1.BaseAPI {
|
|
|
71510
71658
|
* @throws {RequiredError}
|
|
71511
71659
|
*/
|
|
71512
71660
|
deleteManyVideos(requestParameters, options) {
|
|
71513
|
-
return (0, exports.StorageVideosApiFp)(this.configuration).deleteManyVideos(requestParameters.
|
|
71661
|
+
return (0, exports.StorageVideosApiFp)(this.configuration).deleteManyVideos(requestParameters.deleteManyVideosInput, options).then((request) => request(this.axios, this.basePath));
|
|
71514
71662
|
}
|
|
71515
71663
|
/**
|
|
71516
71664
|
* Delete Video endpoint
|