@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.
@@ -250,7 +250,6 @@ docs/BaseThreadMessage.md
250
250
  docs/BaseThreadMessageEntity.md
251
251
  docs/BaseThreadMessageReaction.md
252
252
  docs/BaseTier.md
253
- docs/BaseTransfer.md
254
253
  docs/BaseTransferLog.md
255
254
  docs/BaseUser.md
256
255
  docs/BaseVideo.md
@@ -708,6 +707,7 @@ docs/EventsSponsorshipsTranslationsApi.md
708
707
  docs/EventsTemplatesApi.md
709
708
  docs/EventsTracksApi.md
710
709
  docs/EventsTracksTranslationsApi.md
710
+ docs/EventsTransfersApi.md
711
711
  docs/EventsTranslationsApi.md
712
712
  docs/ExportStatus.md
713
713
  docs/Faq.md
@@ -842,6 +842,7 @@ docs/GetEventPassQuestionSections200Response.md
842
842
  docs/GetEventPassResponse200Response.md
843
843
  docs/GetEventPassResponseChanges200Response.md
844
844
  docs/GetEventPassResponses200Response.md
845
+ docs/GetEventPassTransfers200Response.md
845
846
  docs/GetEventPassTypePriceSchedule200Response.md
846
847
  docs/GetEventPassTypePriceSchedules200Response.md
847
848
  docs/GetEventPassTypeRefundSchedule200Response.md
package/AdminApi.ts CHANGED
@@ -120,6 +120,7 @@ import {
120
120
  EventsTemplatesApi,
121
121
  EventsTracksApi,
122
122
  EventsTracksTranslationsApi,
123
+ EventsTransfersApi,
123
124
  EventsTranslationsApi,
124
125
  FilesApi,
125
126
  GroupsApi,
@@ -327,6 +328,7 @@ export class AdminApi {
327
328
  public readonly eventsTemplates: EventsTemplatesApi;
328
329
  public readonly eventsTracks: EventsTracksApi;
329
330
  public readonly eventsTracksTranslations: EventsTracksTranslationsApi;
331
+ public readonly eventsTransfers: EventsTransfersApi;
330
332
  public readonly eventsTranslations: EventsTranslationsApi;
331
333
  public readonly files: FilesApi;
332
334
  public readonly groups: GroupsApi;
@@ -532,6 +534,7 @@ export class AdminApi {
532
534
  this.eventsTemplates = new EventsTemplatesApi(this.config);
533
535
  this.eventsTracks = new EventsTracksApi(this.config);
534
536
  this.eventsTracksTranslations = new EventsTracksTranslationsApi(this.config);
537
+ this.eventsTransfers = new EventsTransfersApi(this.config);
535
538
  this.eventsTranslations = new EventsTranslationsApi(this.config);
536
539
  this.files = new FilesApi(this.config);
537
540
  this.groups = new GroupsApi(this.config);
package/README.md CHANGED
@@ -802,6 +802,8 @@ Class | Method | HTTP request | Description
802
802
  *EventsTracksTranslationsApi* | [**getEventTrackTranslation**](docs/EventsTracksTranslationsApi.md#geteventtracktranslation) | **GET** /events/{eventId}/tracks/{trackId}/translations/{locale} | Get Event Track Translation
803
803
  *EventsTracksTranslationsApi* | [**getEventTrackTranslations**](docs/EventsTracksTranslationsApi.md#geteventtracktranslations) | **GET** /events/{eventId}/tracks/{trackId}/translations | Get Event Track Translations
804
804
  *EventsTracksTranslationsApi* | [**updateEventTrackTranslation**](docs/EventsTracksTranslationsApi.md#updateeventtracktranslation) | **PUT** /events/{eventId}/tracks/{trackId}/translations/{locale} | Update Event Track Translation
805
+ *EventsTransfersApi* | [**cancelEventPassTransfer**](docs/EventsTransfersApi.md#canceleventpasstransfer) | **DELETE** /events/{eventId}/transfers/{transferId} | Cancel Event Pass Transfer
806
+ *EventsTransfersApi* | [**getEventPassTransfers**](docs/EventsTransfersApi.md#geteventpasstransfers) | **GET** /events/{eventId}/transfers | Get Event Pass Transfers
805
807
  *EventsTranslationsApi* | [**deleteEventTranslation**](docs/EventsTranslationsApi.md#deleteeventtranslation) | **DELETE** /events/{eventId}/translations/{locale} | Delete Event Translation
806
808
  *EventsTranslationsApi* | [**getEventTranslation**](docs/EventsTranslationsApi.md#geteventtranslation) | **GET** /events/{eventId}/translations/{locale} | Get Event Translation
807
809
  *EventsTranslationsApi* | [**getEventTranslations**](docs/EventsTranslationsApi.md#geteventtranslations) | **GET** /events/{eventId}/translations | Get Event Translations
@@ -1489,7 +1491,6 @@ Class | Method | HTTP request | Description
1489
1491
  - [BaseThreadMessageEntity](docs/BaseThreadMessageEntity.md)
1490
1492
  - [BaseThreadMessageReaction](docs/BaseThreadMessageReaction.md)
1491
1493
  - [BaseTier](docs/BaseTier.md)
1492
- - [BaseTransfer](docs/BaseTransfer.md)
1493
1494
  - [BaseTransferLog](docs/BaseTransferLog.md)
1494
1495
  - [BaseUser](docs/BaseUser.md)
1495
1496
  - [BaseVideo](docs/BaseVideo.md)
@@ -1989,6 +1990,7 @@ Class | Method | HTTP request | Description
1989
1990
  - [GetEventPassResponse200Response](docs/GetEventPassResponse200Response.md)
1990
1991
  - [GetEventPassResponseChanges200Response](docs/GetEventPassResponseChanges200Response.md)
1991
1992
  - [GetEventPassResponses200Response](docs/GetEventPassResponses200Response.md)
1993
+ - [GetEventPassTransfers200Response](docs/GetEventPassTransfers200Response.md)
1992
1994
  - [GetEventPassTypePriceSchedule200Response](docs/GetEventPassTypePriceSchedule200Response.md)
1993
1995
  - [GetEventPassTypePriceSchedules200Response](docs/GetEventPassTypePriceSchedules200Response.md)
1994
1996
  - [GetEventPassTypeRefundSchedule200Response](docs/GetEventPassTypeRefundSchedule200Response.md)
package/api.ts CHANGED
@@ -1373,7 +1373,7 @@ export interface BaseEventPass {
1373
1373
  'ticket': BaseEventPassType;
1374
1374
  'location': string | null;
1375
1375
  'usedAt': string | null;
1376
- 'transfer': BaseEventPassTransfer;
1376
+ 'transfer': BaseEventPassTransfer | null;
1377
1377
  'responses': Array<BaseRegistrationQuestionResponse>;
1378
1378
  'status': PurchaseStatus;
1379
1379
  'reservationId': string | null;
@@ -1400,8 +1400,6 @@ export interface BaseEventPassAttendeeAccount {
1400
1400
  }
1401
1401
  export interface BaseEventPassTransfer {
1402
1402
  'id': string;
1403
- 'email': string;
1404
- 'createdAt': string;
1405
1403
  }
1406
1404
  export interface BaseEventPassType {
1407
1405
  'id': string;
@@ -2583,12 +2581,6 @@ export interface BaseTier {
2583
2581
  'imageId': string | null;
2584
2582
  'image': BaseImage | null;
2585
2583
  }
2586
- export interface BaseTransfer {
2587
- 'id': string;
2588
- 'email': string;
2589
- 'purchaseId': string;
2590
- 'purchase': BaseEventPass;
2591
- }
2592
2584
  export interface BaseTransferLog {
2593
2585
  'id': number;
2594
2586
  'fromRegistrationId': string;
@@ -5380,7 +5372,7 @@ export interface EventPass {
5380
5372
  'ticket': BaseEventPassType;
5381
5373
  'location': string | null;
5382
5374
  'usedAt': string | null;
5383
- 'transfer': BaseEventPassTransfer;
5375
+ 'transfer': BaseEventPassTransfer | null;
5384
5376
  'responses': Array<BaseRegistrationQuestionResponse>;
5385
5377
  'status': PurchaseStatus;
5386
5378
  'reservationId': string | null;
@@ -7958,6 +7950,17 @@ export enum GetEventPassResponses200ResponseStatusEnum {
7958
7950
  Ok = 'ok'
7959
7951
  }
7960
7952
 
7953
+ export interface GetEventPassTransfers200Response {
7954
+ 'status': GetEventPassTransfers200ResponseStatusEnum;
7955
+ 'message': string;
7956
+ 'data': Array<Transfer>;
7957
+ 'count'?: number;
7958
+ }
7959
+
7960
+ export enum GetEventPassTransfers200ResponseStatusEnum {
7961
+ Ok = 'ok'
7962
+ }
7963
+
7961
7964
  export interface GetEventPassTypePriceSchedule200Response {
7962
7965
  'status': GetEventPassTypePriceSchedule200ResponseStatusEnum;
7963
7966
  'message': string;
@@ -10798,8 +10801,8 @@ export enum MeetingSessionStatusEnum {
10798
10801
  }
10799
10802
 
10800
10803
  export interface MeetingSessionChatDownload {
10801
- 'chat_download_url': string;
10802
- 'chat_download_url_expiry': string;
10804
+ 'chat_download_url'?: string;
10805
+ 'chat_download_url_expiry'?: string;
10803
10806
  }
10804
10807
  export interface MeetingSessionParticipant {
10805
10808
  'id': string;
@@ -10896,13 +10899,13 @@ export interface MeetingSessionParticipantAllOfVideoStats {
10896
10899
  }
10897
10900
  export interface MeetingSessionSummaryDownload {
10898
10901
  'sessionId': string;
10899
- 'summary_download_url': string;
10900
- 'summary_download_url_expiry': string;
10902
+ 'summary_download_url'?: string;
10903
+ 'summary_download_url_expiry'?: string;
10901
10904
  }
10902
10905
  export interface MeetingSessionTranscriptDownload {
10903
10906
  'sessionId': string;
10904
- 'transcript_download_url': string;
10905
- 'transcript_download_url_expiry': string;
10907
+ 'transcript_download_url'?: string;
10908
+ 'transcript_download_url_expiry'?: string;
10906
10909
  }
10907
10910
 
10908
10911
  export enum MeetingType {
@@ -13833,11 +13836,15 @@ export interface TierUpdateInputs {
13833
13836
  }
13834
13837
  export interface Transfer {
13835
13838
  'id': string;
13839
+ 'passId': string;
13836
13840
  'email': string;
13837
- 'purchaseId': string;
13838
- 'purchase': BaseEventPass;
13841
+ 'message': string | null;
13839
13842
  'createdAt': string;
13840
- 'updatedAt': string;
13843
+ 'eventId': string;
13844
+ 'event': BaseEvent;
13845
+ 'fromAccountId': string;
13846
+ 'fromAccount': OrganizationAllOfOAuth;
13847
+ 'pass': BaseEventPass;
13841
13848
  }
13842
13849
  export interface TransferLog {
13843
13850
  'id': number;
@@ -101977,6 +101984,261 @@ export class EventsTracksTranslationsApi extends BaseAPI {
101977
101984
 
101978
101985
 
101979
101986
 
101987
+ /**
101988
+ * EventsTransfersApi - axios parameter creator
101989
+ */
101990
+ export const EventsTransfersApiAxiosParamCreator = function (configuration?: Configuration) {
101991
+ return {
101992
+ /**
101993
+ * Cancel Event Pass Transfer endpoint
101994
+ * @summary Cancel Event Pass Transfer
101995
+ * @param {string} eventId The event identifier
101996
+ * @param {string} transferId The transfer identifier
101997
+ * @param {*} [options] Override http request option.
101998
+ * @throws {RequiredError}
101999
+ */
102000
+ cancelEventPassTransfer: async (eventId: string, transferId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
102001
+ // verify required parameter 'eventId' is not null or undefined
102002
+ assertParamExists('cancelEventPassTransfer', 'eventId', eventId)
102003
+ // verify required parameter 'transferId' is not null or undefined
102004
+ assertParamExists('cancelEventPassTransfer', 'transferId', transferId)
102005
+ const localVarPath = `/events/{eventId}/transfers/{transferId}`
102006
+ .replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)))
102007
+ .replace(`{${"transferId"}}`, encodeURIComponent(String(transferId)));
102008
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
102009
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
102010
+ let baseOptions;
102011
+ if (configuration) {
102012
+ baseOptions = configuration.baseOptions;
102013
+ }
102014
+
102015
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
102016
+ const localVarHeaderParameter = {} as any;
102017
+ const localVarQueryParameter = {} as any;
102018
+
102019
+ // authentication ApiKeyAuth required
102020
+ await setApiKeyToObject(localVarHeaderParameter, "api-key", configuration)
102021
+
102022
+ // authentication OrganizationId required
102023
+ await setApiKeyToObject(localVarHeaderParameter, "organization", configuration)
102024
+
102025
+ localVarHeaderParameter['Accept'] = 'application/json';
102026
+
102027
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
102028
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
102029
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
102030
+
102031
+ return {
102032
+ url: toPathString(localVarUrlObj),
102033
+ options: localVarRequestOptions,
102034
+ };
102035
+ },
102036
+ /**
102037
+ * Get Event Pass Transfers endpoint
102038
+ * @summary Get Event Pass Transfers
102039
+ * @param {string} eventId The event identifier
102040
+ * @param {number} [page] Page number
102041
+ * @param {number} [pageSize] Number of items per page
102042
+ * @param {string} [orderBy] Field to order by
102043
+ * @param {string} [search] Search query
102044
+ * @param {*} [options] Override http request option.
102045
+ * @throws {RequiredError}
102046
+ */
102047
+ getEventPassTransfers: async (eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
102048
+ // verify required parameter 'eventId' is not null or undefined
102049
+ assertParamExists('getEventPassTransfers', 'eventId', eventId)
102050
+ const localVarPath = `/events/{eventId}/transfers`
102051
+ .replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)));
102052
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
102053
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
102054
+ let baseOptions;
102055
+ if (configuration) {
102056
+ baseOptions = configuration.baseOptions;
102057
+ }
102058
+
102059
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
102060
+ const localVarHeaderParameter = {} as any;
102061
+ const localVarQueryParameter = {} as any;
102062
+
102063
+ // authentication ApiKeyAuth required
102064
+ await setApiKeyToObject(localVarHeaderParameter, "api-key", configuration)
102065
+
102066
+ // authentication OrganizationId required
102067
+ await setApiKeyToObject(localVarHeaderParameter, "organization", configuration)
102068
+
102069
+ if (page !== undefined) {
102070
+ localVarQueryParameter['page'] = page;
102071
+ }
102072
+
102073
+ if (pageSize !== undefined) {
102074
+ localVarQueryParameter['pageSize'] = pageSize;
102075
+ }
102076
+
102077
+ if (orderBy !== undefined) {
102078
+ localVarQueryParameter['orderBy'] = orderBy;
102079
+ }
102080
+
102081
+ if (search !== undefined) {
102082
+ localVarQueryParameter['search'] = search;
102083
+ }
102084
+
102085
+ localVarHeaderParameter['Accept'] = 'application/json';
102086
+
102087
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
102088
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
102089
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
102090
+
102091
+ return {
102092
+ url: toPathString(localVarUrlObj),
102093
+ options: localVarRequestOptions,
102094
+ };
102095
+ },
102096
+ }
102097
+ };
102098
+
102099
+ /**
102100
+ * EventsTransfersApi - functional programming interface
102101
+ */
102102
+ export const EventsTransfersApiFp = function(configuration?: Configuration) {
102103
+ const localVarAxiosParamCreator = EventsTransfersApiAxiosParamCreator(configuration)
102104
+ return {
102105
+ /**
102106
+ * Cancel Event Pass Transfer endpoint
102107
+ * @summary Cancel Event Pass Transfer
102108
+ * @param {string} eventId The event identifier
102109
+ * @param {string} transferId The transfer identifier
102110
+ * @param {*} [options] Override http request option.
102111
+ * @throws {RequiredError}
102112
+ */
102113
+ async cancelEventPassTransfer(eventId: string, transferId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
102114
+ const localVarAxiosArgs = await localVarAxiosParamCreator.cancelEventPassTransfer(eventId, transferId, options);
102115
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
102116
+ const localVarOperationServerBasePath = operationServerMap['EventsTransfersApi.cancelEventPassTransfer']?.[localVarOperationServerIndex]?.url;
102117
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
102118
+ },
102119
+ /**
102120
+ * Get Event Pass Transfers endpoint
102121
+ * @summary Get Event Pass Transfers
102122
+ * @param {string} eventId The event identifier
102123
+ * @param {number} [page] Page number
102124
+ * @param {number} [pageSize] Number of items per page
102125
+ * @param {string} [orderBy] Field to order by
102126
+ * @param {string} [search] Search query
102127
+ * @param {*} [options] Override http request option.
102128
+ * @throws {RequiredError}
102129
+ */
102130
+ async getEventPassTransfers(eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventPassTransfers200Response>> {
102131
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getEventPassTransfers(eventId, page, pageSize, orderBy, search, options);
102132
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
102133
+ const localVarOperationServerBasePath = operationServerMap['EventsTransfersApi.getEventPassTransfers']?.[localVarOperationServerIndex]?.url;
102134
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
102135
+ },
102136
+ }
102137
+ };
102138
+
102139
+ /**
102140
+ * EventsTransfersApi - factory interface
102141
+ */
102142
+ export const EventsTransfersApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
102143
+ const localVarFp = EventsTransfersApiFp(configuration)
102144
+ return {
102145
+ /**
102146
+ * Cancel Event Pass Transfer endpoint
102147
+ * @summary Cancel Event Pass Transfer
102148
+ * @param {EventsTransfersApiCancelEventPassTransferRequest} requestParameters Request parameters.
102149
+ * @param {*} [options] Override http request option.
102150
+ * @throws {RequiredError}
102151
+ */
102152
+ cancelEventPassTransfer(requestParameters: EventsTransfersApiCancelEventPassTransferRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
102153
+ return localVarFp.cancelEventPassTransfer(requestParameters.eventId, requestParameters.transferId, options).then((request) => request(axios, basePath));
102154
+ },
102155
+ /**
102156
+ * Get Event Pass Transfers endpoint
102157
+ * @summary Get Event Pass Transfers
102158
+ * @param {EventsTransfersApiGetEventPassTransfersRequest} requestParameters Request parameters.
102159
+ * @param {*} [options] Override http request option.
102160
+ * @throws {RequiredError}
102161
+ */
102162
+ getEventPassTransfers(requestParameters: EventsTransfersApiGetEventPassTransfersRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventPassTransfers200Response> {
102163
+ return localVarFp.getEventPassTransfers(requestParameters.eventId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(axios, basePath));
102164
+ },
102165
+ };
102166
+ };
102167
+
102168
+ /**
102169
+ * Request parameters for cancelEventPassTransfer operation in EventsTransfersApi.
102170
+ */
102171
+ export interface EventsTransfersApiCancelEventPassTransferRequest {
102172
+ /**
102173
+ * The event identifier
102174
+ */
102175
+ readonly eventId: string
102176
+
102177
+ /**
102178
+ * The transfer identifier
102179
+ */
102180
+ readonly transferId: string
102181
+ }
102182
+
102183
+ /**
102184
+ * Request parameters for getEventPassTransfers operation in EventsTransfersApi.
102185
+ */
102186
+ export interface EventsTransfersApiGetEventPassTransfersRequest {
102187
+ /**
102188
+ * The event identifier
102189
+ */
102190
+ readonly eventId: string
102191
+
102192
+ /**
102193
+ * Page number
102194
+ */
102195
+ readonly page?: number
102196
+
102197
+ /**
102198
+ * Number of items per page
102199
+ */
102200
+ readonly pageSize?: number
102201
+
102202
+ /**
102203
+ * Field to order by
102204
+ */
102205
+ readonly orderBy?: string
102206
+
102207
+ /**
102208
+ * Search query
102209
+ */
102210
+ readonly search?: string
102211
+ }
102212
+
102213
+ /**
102214
+ * EventsTransfersApi - object-oriented interface
102215
+ */
102216
+ export class EventsTransfersApi extends BaseAPI {
102217
+ /**
102218
+ * Cancel Event Pass Transfer endpoint
102219
+ * @summary Cancel Event Pass Transfer
102220
+ * @param {EventsTransfersApiCancelEventPassTransferRequest} requestParameters Request parameters.
102221
+ * @param {*} [options] Override http request option.
102222
+ * @throws {RequiredError}
102223
+ */
102224
+ public cancelEventPassTransfer(requestParameters: EventsTransfersApiCancelEventPassTransferRequest, options?: RawAxiosRequestConfig) {
102225
+ return EventsTransfersApiFp(this.configuration).cancelEventPassTransfer(requestParameters.eventId, requestParameters.transferId, options).then((request) => request(this.axios, this.basePath));
102226
+ }
102227
+
102228
+ /**
102229
+ * Get Event Pass Transfers endpoint
102230
+ * @summary Get Event Pass Transfers
102231
+ * @param {EventsTransfersApiGetEventPassTransfersRequest} requestParameters Request parameters.
102232
+ * @param {*} [options] Override http request option.
102233
+ * @throws {RequiredError}
102234
+ */
102235
+ public getEventPassTransfers(requestParameters: EventsTransfersApiGetEventPassTransfersRequest, options?: RawAxiosRequestConfig) {
102236
+ return EventsTransfersApiFp(this.configuration).getEventPassTransfers(requestParameters.eventId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
102237
+ }
102238
+ }
102239
+
102240
+
102241
+
101980
102242
  /**
101981
102243
  * EventsTranslationsApi - axios parameter creator
101982
102244
  */
@@ -9,7 +9,7 @@
9
9
  * const accounts = await adminApi.accounts.getAccounts();
10
10
  * const eventsPasses = await adminApi.eventsPasses.getEventPasses();
11
11
  */
12
- import { AccountsApi, AccountsAddressesApi, AccountsFollowersApi, AccountsFollowingApi, AccountsGroupsApi, AccountsInterestsApi, AccountsInvitationsApi, AccountsLeadsApi, AccountsTiersApi, ActivitiesApi, ActivitiesScheduleApi, AdvertisementsApi, AnnouncementsApi, AnnouncementsScheduleApi, AnnouncementsTranslationsApi, ApiLogsApi, AuthSessionsApi, BenefitsApi, BenefitsTranslationsApi, BookingsApi, BookingsAvailabilitiesApi, BookingsBlackoutsApi, BookingsPlacesApi, BookingsPlacesTranslationsApi, BookingsQuestionsApi, BookingsQuestionsChoicesApi, BookingsQuestionsChoicesTranslationsApi, BookingsQuestionsTranslationsApi, BookingsSpacesApi, BookingsSpacesTranslationsApi, ChannelsApi, ChannelsTranslationsApi, DashboardsApi, DashboardsWidgetsApi, EmailReceiptsApi, EventsApi, EventsAccessApi, EventsActivationsApi, EventsActivationsSessionsApi, EventsActivationsTranslationsApi, EventsAddonsApi, EventsAddonsTranslationsApi, EventsAttendeesApi, EventsAttendeesPackagesApi, EventsAttendeesReservationsApi, EventsAttributesApi, EventsBenefitsApi, EventsBlocksApi, EventsBypassApi, EventsCohostsApi, EventsCouponsApi, EventsEmailsApi, EventsEmailsTranslationsApi, EventsFaqsApi, EventsFaqsTranslationsApi, EventsFollowupsApi, EventsFollowupsTranslationsApi, EventsMatchesApi, EventsMediaApi, EventsMediaTranslationsApi, EventsOnSiteApi, EventsPackagesApi, EventsPackagesPassesApi, EventsPackagesTranslationsApi, EventsPagesApi, EventsPagesTranslationsApi, EventsPassesApi, EventsPassesAccessesApi, EventsPassesAddonsApi, EventsPassesAttributesApi, EventsPassesFollowupsApi, EventsPassesResponsesApi, EventsPasstypesApi, EventsPasstypesPriceschedulesApi, EventsPasstypesRefundschedulesApi, EventsPasstypesTranslationsApi, EventsQuestionsApi, EventsQuestionsTranslationsApi, EventsRoomsApi, EventsRoomtypesApi, EventsRoomtypesTranslationsApi, EventsSectionsApi, EventsSectionsTranslationsApi, EventsSessionsApi, EventsSessionsAccessesApi, EventsSessionsLocationsApi, EventsSessionsLocationsTranslationsApi, EventsSessionsMatchesApi, EventsSessionsPricesApi, EventsSessionsQuestionsApi, EventsSessionsQuestionsTranslationsApi, EventsSessionsSectionsApi, EventsSessionsSectionsTranslationsApi, EventsSessionsTimesApi, EventsSessionsTimesTranslationsApi, EventsSessionsTranslationsApi, EventsSpeakersApi, EventsSpeakersTranslationsApi, EventsSponsorsApi, EventsSponsorshiplevelsApi, EventsSponsorshiplevelsTranslationsApi, EventsSponsorshipsApi, EventsSponsorshipsTranslationsApi, EventsTemplatesApi, EventsTracksApi, EventsTracksTranslationsApi, EventsTranslationsApi, FilesApi, GroupsApi, GroupsEventsApi, GroupsInterestsApi, GroupsInvitationsApi, GroupsMembersApi, GroupsModeratorsApi, GroupsRequestsApi, GroupsSponsorsApi, GroupsTranslationsApi, ImportsApi, InterestsApi, InvoicesApi, InvoicesLineitemsApi, LoginsApi, LoginsAccountsApi, MeetingsApi, MeetingsLinksApi, MeetingsLivestreamsApi, MeetingsParticipantsApi, MeetingsPresetsApi, MeetingsRecordingsApi, MeetingsSessionsApi, NotificationsApi, OrganizationApi, OrganizationAttributesApi, OrganizationDomainsApi, OrganizationIntegrationsApi, OrganizationModulesApi, OrganizationModulesCustomApi, OrganizationModulesCustomTranslationsApi, OrganizationModulesSettingsApi, OrganizationModulesSettingsTranslationsApi, OrganizationModulesTiersApi, OrganizationPaymentsApi, OrganizationSideeffectsApi, OrganizationTaxApi, OrganizationTeammembersApi, OrganizationUsersApi, OrganizationWebhooksApi, PaymentsApi, PreferencesApi, PushDevicesApi, ReportsApi, ReportsUsersApi, SearchlistsApi, SearchlistsValuesApi, SelfApi, SelfApikeysApi, SelfImagesApi, SeriesApi, SeriesQuestionsApi, SeriesQuestionsChoicesApi, SeriesQuestionsTranslationsApi, SeriesRegistrationsApi, SeriesTranslationsApi, SponsorsApi, SponsorsAccountsApi, SponsorsTranslationsApi, StorageFilesApi, StorageImagesApi, StorageVideosApi, StorageVideosCaptionsApi, StreamsApi, StreamsOutputsApi, StreamsSessionsApi, SupportApi, SupportMessagesApi, SupportNotesApi, SurveysApi, SurveysQuestionsApi, SurveysQuestionsTranslationsApi, SurveysSectionsApi, SurveysSectionsTranslationsApi, SurveysSessionsApi, SurveysSubmissionsApi, SurveysTranslationsApi, ThreadsApi, ThreadsAccountsApi, ThreadsMessagesApi, ThreadsMessagesFilesApi, ThreadsMessagesImagesApi, ThreadsMessagesReactionsApi, ThreadsMessagesVideosApi, ThreadsStorageApi, TiersApi } from "./api";
12
+ import { AccountsApi, AccountsAddressesApi, AccountsFollowersApi, AccountsFollowingApi, AccountsGroupsApi, AccountsInterestsApi, AccountsInvitationsApi, AccountsLeadsApi, AccountsTiersApi, ActivitiesApi, ActivitiesScheduleApi, AdvertisementsApi, AnnouncementsApi, AnnouncementsScheduleApi, AnnouncementsTranslationsApi, ApiLogsApi, AuthSessionsApi, BenefitsApi, BenefitsTranslationsApi, BookingsApi, BookingsAvailabilitiesApi, BookingsBlackoutsApi, BookingsPlacesApi, BookingsPlacesTranslationsApi, BookingsQuestionsApi, BookingsQuestionsChoicesApi, BookingsQuestionsChoicesTranslationsApi, BookingsQuestionsTranslationsApi, BookingsSpacesApi, BookingsSpacesTranslationsApi, ChannelsApi, ChannelsTranslationsApi, DashboardsApi, DashboardsWidgetsApi, EmailReceiptsApi, EventsApi, EventsAccessApi, EventsActivationsApi, EventsActivationsSessionsApi, EventsActivationsTranslationsApi, EventsAddonsApi, EventsAddonsTranslationsApi, EventsAttendeesApi, EventsAttendeesPackagesApi, EventsAttendeesReservationsApi, EventsAttributesApi, EventsBenefitsApi, EventsBlocksApi, EventsBypassApi, EventsCohostsApi, EventsCouponsApi, EventsEmailsApi, EventsEmailsTranslationsApi, EventsFaqsApi, EventsFaqsTranslationsApi, EventsFollowupsApi, EventsFollowupsTranslationsApi, EventsMatchesApi, EventsMediaApi, EventsMediaTranslationsApi, EventsOnSiteApi, EventsPackagesApi, EventsPackagesPassesApi, EventsPackagesTranslationsApi, EventsPagesApi, EventsPagesTranslationsApi, EventsPassesApi, EventsPassesAccessesApi, EventsPassesAddonsApi, EventsPassesAttributesApi, EventsPassesFollowupsApi, EventsPassesResponsesApi, EventsPasstypesApi, EventsPasstypesPriceschedulesApi, EventsPasstypesRefundschedulesApi, EventsPasstypesTranslationsApi, EventsQuestionsApi, EventsQuestionsTranslationsApi, EventsRoomsApi, EventsRoomtypesApi, EventsRoomtypesTranslationsApi, EventsSectionsApi, EventsSectionsTranslationsApi, EventsSessionsApi, EventsSessionsAccessesApi, EventsSessionsLocationsApi, EventsSessionsLocationsTranslationsApi, EventsSessionsMatchesApi, EventsSessionsPricesApi, EventsSessionsQuestionsApi, EventsSessionsQuestionsTranslationsApi, EventsSessionsSectionsApi, EventsSessionsSectionsTranslationsApi, EventsSessionsTimesApi, EventsSessionsTimesTranslationsApi, EventsSessionsTranslationsApi, EventsSpeakersApi, EventsSpeakersTranslationsApi, EventsSponsorsApi, EventsSponsorshiplevelsApi, EventsSponsorshiplevelsTranslationsApi, EventsSponsorshipsApi, EventsSponsorshipsTranslationsApi, EventsTemplatesApi, EventsTracksApi, EventsTracksTranslationsApi, EventsTransfersApi, EventsTranslationsApi, FilesApi, GroupsApi, GroupsEventsApi, GroupsInterestsApi, GroupsInvitationsApi, GroupsMembersApi, GroupsModeratorsApi, GroupsRequestsApi, GroupsSponsorsApi, GroupsTranslationsApi, ImportsApi, InterestsApi, InvoicesApi, InvoicesLineitemsApi, LoginsApi, LoginsAccountsApi, MeetingsApi, MeetingsLinksApi, MeetingsLivestreamsApi, MeetingsParticipantsApi, MeetingsPresetsApi, MeetingsRecordingsApi, MeetingsSessionsApi, NotificationsApi, OrganizationApi, OrganizationAttributesApi, OrganizationDomainsApi, OrganizationIntegrationsApi, OrganizationModulesApi, OrganizationModulesCustomApi, OrganizationModulesCustomTranslationsApi, OrganizationModulesSettingsApi, OrganizationModulesSettingsTranslationsApi, OrganizationModulesTiersApi, OrganizationPaymentsApi, OrganizationSideeffectsApi, OrganizationTaxApi, OrganizationTeammembersApi, OrganizationUsersApi, OrganizationWebhooksApi, PaymentsApi, PreferencesApi, PushDevicesApi, ReportsApi, ReportsUsersApi, SearchlistsApi, SearchlistsValuesApi, SelfApi, SelfApikeysApi, SelfImagesApi, SeriesApi, SeriesQuestionsApi, SeriesQuestionsChoicesApi, SeriesQuestionsTranslationsApi, SeriesRegistrationsApi, SeriesTranslationsApi, SponsorsApi, SponsorsAccountsApi, SponsorsTranslationsApi, StorageFilesApi, StorageImagesApi, StorageVideosApi, StorageVideosCaptionsApi, StreamsApi, StreamsOutputsApi, StreamsSessionsApi, SupportApi, SupportMessagesApi, SupportNotesApi, SurveysApi, SurveysQuestionsApi, SurveysQuestionsTranslationsApi, SurveysSectionsApi, SurveysSectionsTranslationsApi, SurveysSessionsApi, SurveysSubmissionsApi, SurveysTranslationsApi, ThreadsApi, ThreadsAccountsApi, ThreadsMessagesApi, ThreadsMessagesFilesApi, ThreadsMessagesImagesApi, ThreadsMessagesReactionsApi, ThreadsMessagesVideosApi, ThreadsStorageApi, TiersApi } from "./api";
13
13
  export interface AdminApiConfig {
14
14
  /** Your API key for authentication */
15
15
  apiKey: string;
@@ -126,6 +126,7 @@ export declare class AdminApi {
126
126
  readonly eventsTemplates: EventsTemplatesApi;
127
127
  readonly eventsTracks: EventsTracksApi;
128
128
  readonly eventsTracksTranslations: EventsTracksTranslationsApi;
129
+ readonly eventsTransfers: EventsTransfersApi;
129
130
  readonly eventsTranslations: EventsTranslationsApi;
130
131
  readonly files: FilesApi;
131
132
  readonly groups: GroupsApi;
package/dist/AdminApi.js CHANGED
@@ -134,6 +134,7 @@ class AdminApi {
134
134
  this.eventsTemplates = new api_1.EventsTemplatesApi(this.config);
135
135
  this.eventsTracks = new api_1.EventsTracksApi(this.config);
136
136
  this.eventsTracksTranslations = new api_1.EventsTracksTranslationsApi(this.config);
137
+ this.eventsTransfers = new api_1.EventsTransfersApi(this.config);
137
138
  this.eventsTranslations = new api_1.EventsTranslationsApi(this.config);
138
139
  this.files = new api_1.FilesApi(this.config);
139
140
  this.groups = new api_1.GroupsApi(this.config);