@connectedxm/admin-sdk 7.3.0 → 7.4.0
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 -1
- package/AdminApi.ts +3 -0
- package/README.md +3 -1
- package/api.ts +281 -19
- package/dist/AdminApi.d.ts +2 -1
- package/dist/AdminApi.js +1 -0
- package/dist/api.d.ts +156 -19
- package/dist/api.js +224 -22
- package/dist/esm/AdminApi.d.ts +2 -1
- package/dist/esm/AdminApi.js +2 -1
- package/dist/esm/api.d.ts +156 -19
- package/dist/esm/api.js +197 -0
- package/docs/BaseEventPassTransfer.md +0 -4
- package/docs/EventsTransfersApi.md +126 -0
- package/docs/GetEventPassTransfers200Response.md +26 -0
- package/docs/MeetingSessionChatDownload.md +2 -2
- package/docs/MeetingSessionSummaryDownload.md +2 -2
- package/docs/MeetingSessionTranscriptDownload.md +2 -2
- package/docs/Transfer.md +14 -6
- package/package.json +1 -1
- package/docs/BaseTransfer.md +0 -26
package/dist/api.d.ts
CHANGED
|
@@ -1260,7 +1260,7 @@ export interface BaseEventPass {
|
|
|
1260
1260
|
'ticket': BaseEventPassType;
|
|
1261
1261
|
'location': string | null;
|
|
1262
1262
|
'usedAt': string | null;
|
|
1263
|
-
'transfer': BaseEventPassTransfer;
|
|
1263
|
+
'transfer': BaseEventPassTransfer | null;
|
|
1264
1264
|
'responses': Array<BaseRegistrationQuestionResponse>;
|
|
1265
1265
|
'status': PurchaseStatus;
|
|
1266
1266
|
'reservationId': string | null;
|
|
@@ -1285,8 +1285,6 @@ export interface BaseEventPassAttendeeAccount {
|
|
|
1285
1285
|
}
|
|
1286
1286
|
export interface BaseEventPassTransfer {
|
|
1287
1287
|
'id': string;
|
|
1288
|
-
'email': string;
|
|
1289
|
-
'createdAt': string;
|
|
1290
1288
|
}
|
|
1291
1289
|
export interface BaseEventPassType {
|
|
1292
1290
|
'id': string;
|
|
@@ -2399,12 +2397,6 @@ export interface BaseTier {
|
|
|
2399
2397
|
'imageId': string | null;
|
|
2400
2398
|
'image': BaseImage | null;
|
|
2401
2399
|
}
|
|
2402
|
-
export interface BaseTransfer {
|
|
2403
|
-
'id': string;
|
|
2404
|
-
'email': string;
|
|
2405
|
-
'purchaseId': string;
|
|
2406
|
-
'purchase': BaseEventPass;
|
|
2407
|
-
}
|
|
2408
2400
|
export interface BaseTransferLog {
|
|
2409
2401
|
'id': number;
|
|
2410
2402
|
'fromRegistrationId': string;
|
|
@@ -4897,7 +4889,7 @@ export interface EventPass {
|
|
|
4897
4889
|
'ticket': BaseEventPassType;
|
|
4898
4890
|
'location': string | null;
|
|
4899
4891
|
'usedAt': string | null;
|
|
4900
|
-
'transfer': BaseEventPassTransfer;
|
|
4892
|
+
'transfer': BaseEventPassTransfer | null;
|
|
4901
4893
|
'responses': Array<BaseRegistrationQuestionResponse>;
|
|
4902
4894
|
'status': PurchaseStatus;
|
|
4903
4895
|
'reservationId': string | null;
|
|
@@ -7166,6 +7158,15 @@ export interface GetEventPassResponses200Response {
|
|
|
7166
7158
|
export declare enum GetEventPassResponses200ResponseStatusEnum {
|
|
7167
7159
|
Ok = "ok"
|
|
7168
7160
|
}
|
|
7161
|
+
export interface GetEventPassTransfers200Response {
|
|
7162
|
+
'status': GetEventPassTransfers200ResponseStatusEnum;
|
|
7163
|
+
'message': string;
|
|
7164
|
+
'data': Array<Transfer>;
|
|
7165
|
+
'count'?: number;
|
|
7166
|
+
}
|
|
7167
|
+
export declare enum GetEventPassTransfers200ResponseStatusEnum {
|
|
7168
|
+
Ok = "ok"
|
|
7169
|
+
}
|
|
7169
7170
|
export interface GetEventPassTypePriceSchedule200Response {
|
|
7170
7171
|
'status': GetEventPassTypePriceSchedule200ResponseStatusEnum;
|
|
7171
7172
|
'message': string;
|
|
@@ -9534,8 +9535,8 @@ export declare enum MeetingSessionStatusEnum {
|
|
|
9534
9535
|
Ended = "ENDED"
|
|
9535
9536
|
}
|
|
9536
9537
|
export interface MeetingSessionChatDownload {
|
|
9537
|
-
'chat_download_url'
|
|
9538
|
-
'chat_download_url_expiry'
|
|
9538
|
+
'chat_download_url'?: string;
|
|
9539
|
+
'chat_download_url_expiry'?: string;
|
|
9539
9540
|
}
|
|
9540
9541
|
export interface MeetingSessionParticipant {
|
|
9541
9542
|
'id': string;
|
|
@@ -9632,13 +9633,13 @@ export interface MeetingSessionParticipantAllOfVideoStats {
|
|
|
9632
9633
|
}
|
|
9633
9634
|
export interface MeetingSessionSummaryDownload {
|
|
9634
9635
|
'sessionId': string;
|
|
9635
|
-
'summary_download_url'
|
|
9636
|
-
'summary_download_url_expiry'
|
|
9636
|
+
'summary_download_url'?: string;
|
|
9637
|
+
'summary_download_url_expiry'?: string;
|
|
9637
9638
|
}
|
|
9638
9639
|
export interface MeetingSessionTranscriptDownload {
|
|
9639
9640
|
'sessionId': string;
|
|
9640
|
-
'transcript_download_url'
|
|
9641
|
-
'transcript_download_url_expiry'
|
|
9641
|
+
'transcript_download_url'?: string;
|
|
9642
|
+
'transcript_download_url_expiry'?: string;
|
|
9642
9643
|
}
|
|
9643
9644
|
export declare enum MeetingType {
|
|
9644
9645
|
GroupCall = "GROUP_CALL",
|
|
@@ -12321,11 +12322,15 @@ export interface TierUpdateInputs {
|
|
|
12321
12322
|
}
|
|
12322
12323
|
export interface Transfer {
|
|
12323
12324
|
'id': string;
|
|
12325
|
+
'passId': string;
|
|
12324
12326
|
'email': string;
|
|
12325
|
-
'
|
|
12326
|
-
'purchase': BaseEventPass;
|
|
12327
|
+
'message': string | null;
|
|
12327
12328
|
'createdAt': string;
|
|
12328
|
-
'
|
|
12329
|
+
'eventId': string;
|
|
12330
|
+
'event': BaseEvent;
|
|
12331
|
+
'fromAccountId': string;
|
|
12332
|
+
'fromAccount': OrganizationAllOfOAuth;
|
|
12333
|
+
'pass': BaseEventPass;
|
|
12329
12334
|
}
|
|
12330
12335
|
export interface TransferLog {
|
|
12331
12336
|
'id': number;
|
|
@@ -57286,6 +57291,138 @@ export declare class EventsTracksTranslationsApi extends BaseAPI {
|
|
|
57286
57291
|
*/
|
|
57287
57292
|
updateEventTrackTranslation(requestParameters: EventsTracksTranslationsApiUpdateEventTrackTranslationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
57288
57293
|
}
|
|
57294
|
+
/**
|
|
57295
|
+
* EventsTransfersApi - axios parameter creator
|
|
57296
|
+
*/
|
|
57297
|
+
export declare const EventsTransfersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
57298
|
+
/**
|
|
57299
|
+
* Cancel Event Pass Transfer endpoint
|
|
57300
|
+
* @summary Cancel Event Pass Transfer
|
|
57301
|
+
* @param {string} eventId The event identifier
|
|
57302
|
+
* @param {string} transferId The transfer identifier
|
|
57303
|
+
* @param {*} [options] Override http request option.
|
|
57304
|
+
* @throws {RequiredError}
|
|
57305
|
+
*/
|
|
57306
|
+
cancelEventPassTransfer: (eventId: string, transferId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57307
|
+
/**
|
|
57308
|
+
* Get Event Pass Transfers endpoint
|
|
57309
|
+
* @summary Get Event Pass Transfers
|
|
57310
|
+
* @param {string} eventId The event identifier
|
|
57311
|
+
* @param {number} [page] Page number
|
|
57312
|
+
* @param {number} [pageSize] Number of items per page
|
|
57313
|
+
* @param {string} [orderBy] Field to order by
|
|
57314
|
+
* @param {string} [search] Search query
|
|
57315
|
+
* @param {*} [options] Override http request option.
|
|
57316
|
+
* @throws {RequiredError}
|
|
57317
|
+
*/
|
|
57318
|
+
getEventPassTransfers: (eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
57319
|
+
};
|
|
57320
|
+
/**
|
|
57321
|
+
* EventsTransfersApi - functional programming interface
|
|
57322
|
+
*/
|
|
57323
|
+
export declare const EventsTransfersApiFp: (configuration?: Configuration) => {
|
|
57324
|
+
/**
|
|
57325
|
+
* Cancel Event Pass Transfer endpoint
|
|
57326
|
+
* @summary Cancel Event Pass Transfer
|
|
57327
|
+
* @param {string} eventId The event identifier
|
|
57328
|
+
* @param {string} transferId The transfer identifier
|
|
57329
|
+
* @param {*} [options] Override http request option.
|
|
57330
|
+
* @throws {RequiredError}
|
|
57331
|
+
*/
|
|
57332
|
+
cancelEventPassTransfer(eventId: string, transferId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>>;
|
|
57333
|
+
/**
|
|
57334
|
+
* Get Event Pass Transfers endpoint
|
|
57335
|
+
* @summary Get Event Pass Transfers
|
|
57336
|
+
* @param {string} eventId The event identifier
|
|
57337
|
+
* @param {number} [page] Page number
|
|
57338
|
+
* @param {number} [pageSize] Number of items per page
|
|
57339
|
+
* @param {string} [orderBy] Field to order by
|
|
57340
|
+
* @param {string} [search] Search query
|
|
57341
|
+
* @param {*} [options] Override http request option.
|
|
57342
|
+
* @throws {RequiredError}
|
|
57343
|
+
*/
|
|
57344
|
+
getEventPassTransfers(eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventPassTransfers200Response>>;
|
|
57345
|
+
};
|
|
57346
|
+
/**
|
|
57347
|
+
* EventsTransfersApi - factory interface
|
|
57348
|
+
*/
|
|
57349
|
+
export declare const EventsTransfersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
57350
|
+
/**
|
|
57351
|
+
* Cancel Event Pass Transfer endpoint
|
|
57352
|
+
* @summary Cancel Event Pass Transfer
|
|
57353
|
+
* @param {EventsTransfersApiCancelEventPassTransferRequest} requestParameters Request parameters.
|
|
57354
|
+
* @param {*} [options] Override http request option.
|
|
57355
|
+
* @throws {RequiredError}
|
|
57356
|
+
*/
|
|
57357
|
+
cancelEventPassTransfer(requestParameters: EventsTransfersApiCancelEventPassTransferRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response>;
|
|
57358
|
+
/**
|
|
57359
|
+
* Get Event Pass Transfers endpoint
|
|
57360
|
+
* @summary Get Event Pass Transfers
|
|
57361
|
+
* @param {EventsTransfersApiGetEventPassTransfersRequest} requestParameters Request parameters.
|
|
57362
|
+
* @param {*} [options] Override http request option.
|
|
57363
|
+
* @throws {RequiredError}
|
|
57364
|
+
*/
|
|
57365
|
+
getEventPassTransfers(requestParameters: EventsTransfersApiGetEventPassTransfersRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventPassTransfers200Response>;
|
|
57366
|
+
};
|
|
57367
|
+
/**
|
|
57368
|
+
* Request parameters for cancelEventPassTransfer operation in EventsTransfersApi.
|
|
57369
|
+
*/
|
|
57370
|
+
export interface EventsTransfersApiCancelEventPassTransferRequest {
|
|
57371
|
+
/**
|
|
57372
|
+
* The event identifier
|
|
57373
|
+
*/
|
|
57374
|
+
readonly eventId: string;
|
|
57375
|
+
/**
|
|
57376
|
+
* The transfer identifier
|
|
57377
|
+
*/
|
|
57378
|
+
readonly transferId: string;
|
|
57379
|
+
}
|
|
57380
|
+
/**
|
|
57381
|
+
* Request parameters for getEventPassTransfers operation in EventsTransfersApi.
|
|
57382
|
+
*/
|
|
57383
|
+
export interface EventsTransfersApiGetEventPassTransfersRequest {
|
|
57384
|
+
/**
|
|
57385
|
+
* The event identifier
|
|
57386
|
+
*/
|
|
57387
|
+
readonly eventId: string;
|
|
57388
|
+
/**
|
|
57389
|
+
* Page number
|
|
57390
|
+
*/
|
|
57391
|
+
readonly page?: number;
|
|
57392
|
+
/**
|
|
57393
|
+
* Number of items per page
|
|
57394
|
+
*/
|
|
57395
|
+
readonly pageSize?: number;
|
|
57396
|
+
/**
|
|
57397
|
+
* Field to order by
|
|
57398
|
+
*/
|
|
57399
|
+
readonly orderBy?: string;
|
|
57400
|
+
/**
|
|
57401
|
+
* Search query
|
|
57402
|
+
*/
|
|
57403
|
+
readonly search?: string;
|
|
57404
|
+
}
|
|
57405
|
+
/**
|
|
57406
|
+
* EventsTransfersApi - object-oriented interface
|
|
57407
|
+
*/
|
|
57408
|
+
export declare class EventsTransfersApi extends BaseAPI {
|
|
57409
|
+
/**
|
|
57410
|
+
* Cancel Event Pass Transfer endpoint
|
|
57411
|
+
* @summary Cancel Event Pass Transfer
|
|
57412
|
+
* @param {EventsTransfersApiCancelEventPassTransferRequest} requestParameters Request parameters.
|
|
57413
|
+
* @param {*} [options] Override http request option.
|
|
57414
|
+
* @throws {RequiredError}
|
|
57415
|
+
*/
|
|
57416
|
+
cancelEventPassTransfer(requestParameters: EventsTransfersApiCancelEventPassTransferRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SyncAccounts200Response, any, {}>>;
|
|
57417
|
+
/**
|
|
57418
|
+
* Get Event Pass Transfers endpoint
|
|
57419
|
+
* @summary Get Event Pass Transfers
|
|
57420
|
+
* @param {EventsTransfersApiGetEventPassTransfersRequest} requestParameters Request parameters.
|
|
57421
|
+
* @param {*} [options] Override http request option.
|
|
57422
|
+
* @throws {RequiredError}
|
|
57423
|
+
*/
|
|
57424
|
+
getEventPassTransfers(requestParameters: EventsTransfersApiGetEventPassTransfersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventPassTransfers200Response, any, {}>>;
|
|
57425
|
+
}
|
|
57289
57426
|
/**
|
|
57290
57427
|
* EventsTranslationsApi - axios parameter creator
|
|
57291
57428
|
*/
|