@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/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
|
}
|
|
@@ -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/esm/api.js
CHANGED
|
@@ -28733,6 +28733,44 @@ export const EventsPassesApiAxiosParamCreator = function (configuration) {
|
|
|
28733
28733
|
options: localVarRequestOptions,
|
|
28734
28734
|
};
|
|
28735
28735
|
}),
|
|
28736
|
+
/**
|
|
28737
|
+
* Checkin Event Pass endpoint
|
|
28738
|
+
* @summary Checkin Event Pass
|
|
28739
|
+
* @param {string} eventId The event identifier
|
|
28740
|
+
* @param {string} passId The pass identifier
|
|
28741
|
+
* @param {*} [options] Override http request option.
|
|
28742
|
+
* @throws {RequiredError}
|
|
28743
|
+
*/
|
|
28744
|
+
checkinEventPass: (eventId_1, passId_1, ...args_1) => __awaiter(this, [eventId_1, passId_1, ...args_1], void 0, function* (eventId, passId, options = {}) {
|
|
28745
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
28746
|
+
assertParamExists('checkinEventPass', 'eventId', eventId);
|
|
28747
|
+
// verify required parameter 'passId' is not null or undefined
|
|
28748
|
+
assertParamExists('checkinEventPass', 'passId', passId);
|
|
28749
|
+
const localVarPath = `/events/{eventId}/passes/{passId}/checkin`
|
|
28750
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)))
|
|
28751
|
+
.replace(`{${"passId"}}`, encodeURIComponent(String(passId)));
|
|
28752
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
28753
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
28754
|
+
let baseOptions;
|
|
28755
|
+
if (configuration) {
|
|
28756
|
+
baseOptions = configuration.baseOptions;
|
|
28757
|
+
}
|
|
28758
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
28759
|
+
const localVarHeaderParameter = {};
|
|
28760
|
+
const localVarQueryParameter = {};
|
|
28761
|
+
// authentication ApiKeyAuth required
|
|
28762
|
+
yield setApiKeyToObject(localVarHeaderParameter, "api-key", configuration);
|
|
28763
|
+
// authentication OrganizationId required
|
|
28764
|
+
yield setApiKeyToObject(localVarHeaderParameter, "organization", configuration);
|
|
28765
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
28766
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
28767
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
28768
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
28769
|
+
return {
|
|
28770
|
+
url: toPathString(localVarUrlObj),
|
|
28771
|
+
options: localVarRequestOptions,
|
|
28772
|
+
};
|
|
28773
|
+
}),
|
|
28736
28774
|
/**
|
|
28737
28775
|
* Create Event Pass endpoint
|
|
28738
28776
|
* @summary Create Event Pass
|
|
@@ -29650,6 +29688,44 @@ export const EventsPassesApiAxiosParamCreator = function (configuration) {
|
|
|
29650
29688
|
options: localVarRequestOptions,
|
|
29651
29689
|
};
|
|
29652
29690
|
}),
|
|
29691
|
+
/**
|
|
29692
|
+
* Undo Checkin Event Pass endpoint
|
|
29693
|
+
* @summary Undo Checkin Event Pass
|
|
29694
|
+
* @param {string} eventId The event identifier
|
|
29695
|
+
* @param {string} passId The pass identifier
|
|
29696
|
+
* @param {*} [options] Override http request option.
|
|
29697
|
+
* @throws {RequiredError}
|
|
29698
|
+
*/
|
|
29699
|
+
undoCheckinEventPass: (eventId_1, passId_1, ...args_1) => __awaiter(this, [eventId_1, passId_1, ...args_1], void 0, function* (eventId, passId, options = {}) {
|
|
29700
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
29701
|
+
assertParamExists('undoCheckinEventPass', 'eventId', eventId);
|
|
29702
|
+
// verify required parameter 'passId' is not null or undefined
|
|
29703
|
+
assertParamExists('undoCheckinEventPass', 'passId', passId);
|
|
29704
|
+
const localVarPath = `/events/{eventId}/passes/{passId}/checkin/undo`
|
|
29705
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)))
|
|
29706
|
+
.replace(`{${"passId"}}`, encodeURIComponent(String(passId)));
|
|
29707
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29708
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29709
|
+
let baseOptions;
|
|
29710
|
+
if (configuration) {
|
|
29711
|
+
baseOptions = configuration.baseOptions;
|
|
29712
|
+
}
|
|
29713
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
29714
|
+
const localVarHeaderParameter = {};
|
|
29715
|
+
const localVarQueryParameter = {};
|
|
29716
|
+
// authentication ApiKeyAuth required
|
|
29717
|
+
yield setApiKeyToObject(localVarHeaderParameter, "api-key", configuration);
|
|
29718
|
+
// authentication OrganizationId required
|
|
29719
|
+
yield setApiKeyToObject(localVarHeaderParameter, "organization", configuration);
|
|
29720
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
29721
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29722
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29723
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
29724
|
+
return {
|
|
29725
|
+
url: toPathString(localVarUrlObj),
|
|
29726
|
+
options: localVarRequestOptions,
|
|
29727
|
+
};
|
|
29728
|
+
}),
|
|
29653
29729
|
/**
|
|
29654
29730
|
* Update Event Pass endpoint
|
|
29655
29731
|
* @summary Update Event Pass
|
|
@@ -30026,6 +30102,23 @@ export const EventsPassesApiFp = function (configuration) {
|
|
|
30026
30102
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30027
30103
|
});
|
|
30028
30104
|
},
|
|
30105
|
+
/**
|
|
30106
|
+
* Checkin Event Pass endpoint
|
|
30107
|
+
* @summary Checkin Event Pass
|
|
30108
|
+
* @param {string} eventId The event identifier
|
|
30109
|
+
* @param {string} passId The pass identifier
|
|
30110
|
+
* @param {*} [options] Override http request option.
|
|
30111
|
+
* @throws {RequiredError}
|
|
30112
|
+
*/
|
|
30113
|
+
checkinEventPass(eventId, passId, options) {
|
|
30114
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
30115
|
+
var _a, _b, _c;
|
|
30116
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.checkinEventPass(eventId, passId, options);
|
|
30117
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
30118
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EventsPassesApi.checkinEventPass']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
30119
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30120
|
+
});
|
|
30121
|
+
},
|
|
30029
30122
|
/**
|
|
30030
30123
|
* Create Event Pass endpoint
|
|
30031
30124
|
* @summary Create Event Pass
|
|
@@ -30397,6 +30490,23 @@ export const EventsPassesApiFp = function (configuration) {
|
|
|
30397
30490
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30398
30491
|
});
|
|
30399
30492
|
},
|
|
30493
|
+
/**
|
|
30494
|
+
* Undo Checkin Event Pass endpoint
|
|
30495
|
+
* @summary Undo Checkin Event Pass
|
|
30496
|
+
* @param {string} eventId The event identifier
|
|
30497
|
+
* @param {string} passId The pass identifier
|
|
30498
|
+
* @param {*} [options] Override http request option.
|
|
30499
|
+
* @throws {RequiredError}
|
|
30500
|
+
*/
|
|
30501
|
+
undoCheckinEventPass(eventId, passId, options) {
|
|
30502
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
30503
|
+
var _a, _b, _c;
|
|
30504
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.undoCheckinEventPass(eventId, passId, options);
|
|
30505
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
30506
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EventsPassesApi.undoCheckinEventPass']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
30507
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30508
|
+
});
|
|
30509
|
+
},
|
|
30400
30510
|
/**
|
|
30401
30511
|
* Update Event Pass endpoint
|
|
30402
30512
|
* @summary Update Event Pass
|
|
@@ -30558,6 +30668,16 @@ export const EventsPassesApiFactory = function (configuration, basePath, axios)
|
|
|
30558
30668
|
cancelEventPass(requestParameters, options) {
|
|
30559
30669
|
return localVarFp.cancelEventPass(requestParameters.eventId, requestParameters.passId, requestParameters.sendEmail, options).then((request) => request(axios, basePath));
|
|
30560
30670
|
},
|
|
30671
|
+
/**
|
|
30672
|
+
* Checkin Event Pass endpoint
|
|
30673
|
+
* @summary Checkin Event Pass
|
|
30674
|
+
* @param {EventsPassesApiCheckinEventPassRequest} requestParameters Request parameters.
|
|
30675
|
+
* @param {*} [options] Override http request option.
|
|
30676
|
+
* @throws {RequiredError}
|
|
30677
|
+
*/
|
|
30678
|
+
checkinEventPass(requestParameters, options) {
|
|
30679
|
+
return localVarFp.checkinEventPass(requestParameters.eventId, requestParameters.passId, options).then((request) => request(axios, basePath));
|
|
30680
|
+
},
|
|
30561
30681
|
/**
|
|
30562
30682
|
* Create Event Pass endpoint
|
|
30563
30683
|
* @summary Create Event Pass
|
|
@@ -30748,6 +30868,16 @@ export const EventsPassesApiFactory = function (configuration, basePath, axios)
|
|
|
30748
30868
|
transferEventPass(requestParameters, options) {
|
|
30749
30869
|
return localVarFp.transferEventPass(requestParameters.eventId, requestParameters.accountId, requestParameters.passId, requestParameters.receiverId, options).then((request) => request(axios, basePath));
|
|
30750
30870
|
},
|
|
30871
|
+
/**
|
|
30872
|
+
* Undo Checkin Event Pass endpoint
|
|
30873
|
+
* @summary Undo Checkin Event Pass
|
|
30874
|
+
* @param {EventsPassesApiUndoCheckinEventPassRequest} requestParameters Request parameters.
|
|
30875
|
+
* @param {*} [options] Override http request option.
|
|
30876
|
+
* @throws {RequiredError}
|
|
30877
|
+
*/
|
|
30878
|
+
undoCheckinEventPass(requestParameters, options) {
|
|
30879
|
+
return localVarFp.undoCheckinEventPass(requestParameters.eventId, requestParameters.passId, options).then((request) => request(axios, basePath));
|
|
30880
|
+
},
|
|
30751
30881
|
/**
|
|
30752
30882
|
* Update Event Pass endpoint
|
|
30753
30883
|
* @summary Update Event Pass
|
|
@@ -30844,6 +30974,16 @@ export class EventsPassesApi extends BaseAPI {
|
|
|
30844
30974
|
cancelEventPass(requestParameters, options) {
|
|
30845
30975
|
return EventsPassesApiFp(this.configuration).cancelEventPass(requestParameters.eventId, requestParameters.passId, requestParameters.sendEmail, options).then((request) => request(this.axios, this.basePath));
|
|
30846
30976
|
}
|
|
30977
|
+
/**
|
|
30978
|
+
* Checkin Event Pass endpoint
|
|
30979
|
+
* @summary Checkin Event Pass
|
|
30980
|
+
* @param {EventsPassesApiCheckinEventPassRequest} requestParameters Request parameters.
|
|
30981
|
+
* @param {*} [options] Override http request option.
|
|
30982
|
+
* @throws {RequiredError}
|
|
30983
|
+
*/
|
|
30984
|
+
checkinEventPass(requestParameters, options) {
|
|
30985
|
+
return EventsPassesApiFp(this.configuration).checkinEventPass(requestParameters.eventId, requestParameters.passId, options).then((request) => request(this.axios, this.basePath));
|
|
30986
|
+
}
|
|
30847
30987
|
/**
|
|
30848
30988
|
* Create Event Pass endpoint
|
|
30849
30989
|
* @summary Create Event Pass
|
|
@@ -31034,6 +31174,16 @@ export class EventsPassesApi extends BaseAPI {
|
|
|
31034
31174
|
transferEventPass(requestParameters, options) {
|
|
31035
31175
|
return EventsPassesApiFp(this.configuration).transferEventPass(requestParameters.eventId, requestParameters.accountId, requestParameters.passId, requestParameters.receiverId, options).then((request) => request(this.axios, this.basePath));
|
|
31036
31176
|
}
|
|
31177
|
+
/**
|
|
31178
|
+
* Undo Checkin Event Pass endpoint
|
|
31179
|
+
* @summary Undo Checkin Event Pass
|
|
31180
|
+
* @param {EventsPassesApiUndoCheckinEventPassRequest} requestParameters Request parameters.
|
|
31181
|
+
* @param {*} [options] Override http request option.
|
|
31182
|
+
* @throws {RequiredError}
|
|
31183
|
+
*/
|
|
31184
|
+
undoCheckinEventPass(requestParameters, options) {
|
|
31185
|
+
return EventsPassesApiFp(this.configuration).undoCheckinEventPass(requestParameters.eventId, requestParameters.passId, options).then((request) => request(this.axios, this.basePath));
|
|
31186
|
+
}
|
|
31037
31187
|
/**
|
|
31038
31188
|
* Update Event Pass endpoint
|
|
31039
31189
|
* @summary Update Event Pass
|
|
@@ -69983,13 +70133,13 @@ export const StorageImagesApiAxiosParamCreator = function (configuration) {
|
|
|
69983
70133
|
/**
|
|
69984
70134
|
* Delete Many Images endpoint
|
|
69985
70135
|
* @summary Delete Many Images
|
|
69986
|
-
* @param {
|
|
70136
|
+
* @param {DeleteManyImagesInput} deleteManyImagesInput
|
|
69987
70137
|
* @param {*} [options] Override http request option.
|
|
69988
70138
|
* @throws {RequiredError}
|
|
69989
70139
|
*/
|
|
69990
|
-
deleteManyImages: (
|
|
69991
|
-
// verify required parameter '
|
|
69992
|
-
assertParamExists('deleteManyImages', '
|
|
70140
|
+
deleteManyImages: (deleteManyImagesInput_1, ...args_1) => __awaiter(this, [deleteManyImagesInput_1, ...args_1], void 0, function* (deleteManyImagesInput, options = {}) {
|
|
70141
|
+
// verify required parameter 'deleteManyImagesInput' is not null or undefined
|
|
70142
|
+
assertParamExists('deleteManyImages', 'deleteManyImagesInput', deleteManyImagesInput);
|
|
69993
70143
|
const localVarPath = `/images/delete`;
|
|
69994
70144
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
69995
70145
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -70004,13 +70154,12 @@ export const StorageImagesApiAxiosParamCreator = function (configuration) {
|
|
|
70004
70154
|
yield setApiKeyToObject(localVarHeaderParameter, "api-key", configuration);
|
|
70005
70155
|
// authentication OrganizationId required
|
|
70006
70156
|
yield setApiKeyToObject(localVarHeaderParameter, "organization", configuration);
|
|
70007
|
-
|
|
70008
|
-
localVarQueryParameter['imageIds'] = imageIds;
|
|
70009
|
-
}
|
|
70157
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
70010
70158
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
70011
70159
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
70012
70160
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
70013
70161
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
70162
|
+
localVarRequestOptions.data = serializeDataIfNeeded(deleteManyImagesInput, localVarRequestOptions, configuration);
|
|
70014
70163
|
return {
|
|
70015
70164
|
url: toPathString(localVarUrlObj),
|
|
70016
70165
|
options: localVarRequestOptions,
|
|
@@ -70258,14 +70407,14 @@ export const StorageImagesApiFp = function (configuration) {
|
|
|
70258
70407
|
/**
|
|
70259
70408
|
* Delete Many Images endpoint
|
|
70260
70409
|
* @summary Delete Many Images
|
|
70261
|
-
* @param {
|
|
70410
|
+
* @param {DeleteManyImagesInput} deleteManyImagesInput
|
|
70262
70411
|
* @param {*} [options] Override http request option.
|
|
70263
70412
|
* @throws {RequiredError}
|
|
70264
70413
|
*/
|
|
70265
|
-
deleteManyImages(
|
|
70414
|
+
deleteManyImages(deleteManyImagesInput, options) {
|
|
70266
70415
|
return __awaiter(this, void 0, void 0, function* () {
|
|
70267
70416
|
var _a, _b, _c;
|
|
70268
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyImages(
|
|
70417
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyImages(deleteManyImagesInput, options);
|
|
70269
70418
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
70270
70419
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['StorageImagesApi.deleteManyImages']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
70271
70420
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -70393,7 +70542,7 @@ export const StorageImagesApiFactory = function (configuration, basePath, axios)
|
|
|
70393
70542
|
* @throws {RequiredError}
|
|
70394
70543
|
*/
|
|
70395
70544
|
deleteManyImages(requestParameters, options) {
|
|
70396
|
-
return localVarFp.deleteManyImages(requestParameters.
|
|
70545
|
+
return localVarFp.deleteManyImages(requestParameters.deleteManyImagesInput, options).then((request) => request(axios, basePath));
|
|
70397
70546
|
},
|
|
70398
70547
|
/**
|
|
70399
70548
|
* Get Image endpoint
|
|
@@ -70479,7 +70628,7 @@ export class StorageImagesApi extends BaseAPI {
|
|
|
70479
70628
|
* @throws {RequiredError}
|
|
70480
70629
|
*/
|
|
70481
70630
|
deleteManyImages(requestParameters, options) {
|
|
70482
|
-
return StorageImagesApiFp(this.configuration).deleteManyImages(requestParameters.
|
|
70631
|
+
return StorageImagesApiFp(this.configuration).deleteManyImages(requestParameters.deleteManyImagesInput, options).then((request) => request(this.axios, this.basePath));
|
|
70483
70632
|
}
|
|
70484
70633
|
/**
|
|
70485
70634
|
* Get Image endpoint
|
|
@@ -70540,13 +70689,13 @@ export const StorageVideosApiAxiosParamCreator = function (configuration) {
|
|
|
70540
70689
|
/**
|
|
70541
70690
|
* Delete Many Videos endpoint
|
|
70542
70691
|
* @summary Delete Many Videos
|
|
70543
|
-
* @param {
|
|
70692
|
+
* @param {DeleteManyVideosInput} deleteManyVideosInput
|
|
70544
70693
|
* @param {*} [options] Override http request option.
|
|
70545
70694
|
* @throws {RequiredError}
|
|
70546
70695
|
*/
|
|
70547
|
-
deleteManyVideos: (
|
|
70548
|
-
// verify required parameter '
|
|
70549
|
-
assertParamExists('deleteManyVideos', '
|
|
70696
|
+
deleteManyVideos: (deleteManyVideosInput_1, ...args_1) => __awaiter(this, [deleteManyVideosInput_1, ...args_1], void 0, function* (deleteManyVideosInput, options = {}) {
|
|
70697
|
+
// verify required parameter 'deleteManyVideosInput' is not null or undefined
|
|
70698
|
+
assertParamExists('deleteManyVideos', 'deleteManyVideosInput', deleteManyVideosInput);
|
|
70550
70699
|
const localVarPath = `/videos/delete`;
|
|
70551
70700
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
70552
70701
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -70561,13 +70710,12 @@ export const StorageVideosApiAxiosParamCreator = function (configuration) {
|
|
|
70561
70710
|
yield setApiKeyToObject(localVarHeaderParameter, "api-key", configuration);
|
|
70562
70711
|
// authentication OrganizationId required
|
|
70563
70712
|
yield setApiKeyToObject(localVarHeaderParameter, "organization", configuration);
|
|
70564
|
-
|
|
70565
|
-
localVarQueryParameter['videoIds'] = videoIds;
|
|
70566
|
-
}
|
|
70713
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
70567
70714
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
70568
70715
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
70569
70716
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
70570
70717
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
70718
|
+
localVarRequestOptions.data = serializeDataIfNeeded(deleteManyVideosInput, localVarRequestOptions, configuration);
|
|
70571
70719
|
return {
|
|
70572
70720
|
url: toPathString(localVarUrlObj),
|
|
70573
70721
|
options: localVarRequestOptions,
|
|
@@ -70809,14 +70957,14 @@ export const StorageVideosApiFp = function (configuration) {
|
|
|
70809
70957
|
/**
|
|
70810
70958
|
* Delete Many Videos endpoint
|
|
70811
70959
|
* @summary Delete Many Videos
|
|
70812
|
-
* @param {
|
|
70960
|
+
* @param {DeleteManyVideosInput} deleteManyVideosInput
|
|
70813
70961
|
* @param {*} [options] Override http request option.
|
|
70814
70962
|
* @throws {RequiredError}
|
|
70815
70963
|
*/
|
|
70816
|
-
deleteManyVideos(
|
|
70964
|
+
deleteManyVideos(deleteManyVideosInput, options) {
|
|
70817
70965
|
return __awaiter(this, void 0, void 0, function* () {
|
|
70818
70966
|
var _a, _b, _c;
|
|
70819
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyVideos(
|
|
70967
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteManyVideos(deleteManyVideosInput, options);
|
|
70820
70968
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
70821
70969
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['StorageVideosApi.deleteManyVideos']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
70822
70970
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -70939,7 +71087,7 @@ export const StorageVideosApiFactory = function (configuration, basePath, axios)
|
|
|
70939
71087
|
* @throws {RequiredError}
|
|
70940
71088
|
*/
|
|
70941
71089
|
deleteManyVideos(requestParameters, options) {
|
|
70942
|
-
return localVarFp.deleteManyVideos(requestParameters.
|
|
71090
|
+
return localVarFp.deleteManyVideos(requestParameters.deleteManyVideosInput, options).then((request) => request(axios, basePath));
|
|
70943
71091
|
},
|
|
70944
71092
|
/**
|
|
70945
71093
|
* Delete Video endpoint
|
|
@@ -71015,7 +71163,7 @@ export class StorageVideosApi extends BaseAPI {
|
|
|
71015
71163
|
* @throws {RequiredError}
|
|
71016
71164
|
*/
|
|
71017
71165
|
deleteManyVideos(requestParameters, options) {
|
|
71018
|
-
return StorageVideosApiFp(this.configuration).deleteManyVideos(requestParameters.
|
|
71166
|
+
return StorageVideosApiFp(this.configuration).deleteManyVideos(requestParameters.deleteManyVideosInput, options).then((request) => request(this.axios, this.basePath));
|
|
71019
71167
|
}
|
|
71020
71168
|
/**
|
|
71021
71169
|
* Delete Video endpoint
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# DeleteManyImagesInput
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**imageIds** | **Array<string>** | | [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<string>** | | [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)
|