@connectedxm/admin-sdk 7.3.1 → 7.4.1
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 -2
- package/AdminApi.ts +3 -0
- package/README.md +3 -2
- package/api.ts +275 -16
- package/dist/AdminApi.d.ts +2 -1
- package/dist/AdminApi.js +1 -0
- package/dist/api.d.ts +150 -16
- 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 +150 -16
- package/dist/esm/api.js +197 -0
- package/docs/BaseEventPass.md +2 -2
- package/docs/EventPass.md +2 -2
- package/docs/EventsTransfersApi.md +126 -0
- package/docs/GetEventPassTransfers200Response.md +26 -0
- package/docs/Transfer.md +14 -6
- package/package.json +1 -1
- package/docs/BaseEventPassTransfer.md +0 -24
- package/docs/BaseTransfer.md +0 -26
package/.openapi-generator/FILES
CHANGED
|
@@ -132,7 +132,6 @@ docs/BaseEventPage.md
|
|
|
132
132
|
docs/BaseEventPass.md
|
|
133
133
|
docs/BaseEventPassAttendee.md
|
|
134
134
|
docs/BaseEventPassAttendeeAccount.md
|
|
135
|
-
docs/BaseEventPassTransfer.md
|
|
136
135
|
docs/BaseEventPassType.md
|
|
137
136
|
docs/BaseEventPassTypePriceSchedule.md
|
|
138
137
|
docs/BaseEventPassTypeRefundSchedule.md
|
|
@@ -250,7 +249,6 @@ docs/BaseThreadMessage.md
|
|
|
250
249
|
docs/BaseThreadMessageEntity.md
|
|
251
250
|
docs/BaseThreadMessageReaction.md
|
|
252
251
|
docs/BaseTier.md
|
|
253
|
-
docs/BaseTransfer.md
|
|
254
252
|
docs/BaseTransferLog.md
|
|
255
253
|
docs/BaseUser.md
|
|
256
254
|
docs/BaseVideo.md
|
|
@@ -708,6 +706,7 @@ docs/EventsSponsorshipsTranslationsApi.md
|
|
|
708
706
|
docs/EventsTemplatesApi.md
|
|
709
707
|
docs/EventsTracksApi.md
|
|
710
708
|
docs/EventsTracksTranslationsApi.md
|
|
709
|
+
docs/EventsTransfersApi.md
|
|
711
710
|
docs/EventsTranslationsApi.md
|
|
712
711
|
docs/ExportStatus.md
|
|
713
712
|
docs/Faq.md
|
|
@@ -842,6 +841,7 @@ docs/GetEventPassQuestionSections200Response.md
|
|
|
842
841
|
docs/GetEventPassResponse200Response.md
|
|
843
842
|
docs/GetEventPassResponseChanges200Response.md
|
|
844
843
|
docs/GetEventPassResponses200Response.md
|
|
844
|
+
docs/GetEventPassTransfers200Response.md
|
|
845
845
|
docs/GetEventPassTypePriceSchedule200Response.md
|
|
846
846
|
docs/GetEventPassTypePriceSchedules200Response.md
|
|
847
847
|
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
|
|
@@ -1371,7 +1373,6 @@ Class | Method | HTTP request | Description
|
|
|
1371
1373
|
- [BaseEventPass](docs/BaseEventPass.md)
|
|
1372
1374
|
- [BaseEventPassAttendee](docs/BaseEventPassAttendee.md)
|
|
1373
1375
|
- [BaseEventPassAttendeeAccount](docs/BaseEventPassAttendeeAccount.md)
|
|
1374
|
-
- [BaseEventPassTransfer](docs/BaseEventPassTransfer.md)
|
|
1375
1376
|
- [BaseEventPassType](docs/BaseEventPassType.md)
|
|
1376
1377
|
- [BaseEventPassTypePriceSchedule](docs/BaseEventPassTypePriceSchedule.md)
|
|
1377
1378
|
- [BaseEventPassTypeRefundSchedule](docs/BaseEventPassTypeRefundSchedule.md)
|
|
@@ -1489,7 +1490,6 @@ Class | Method | HTTP request | Description
|
|
|
1489
1490
|
- [BaseThreadMessageEntity](docs/BaseThreadMessageEntity.md)
|
|
1490
1491
|
- [BaseThreadMessageReaction](docs/BaseThreadMessageReaction.md)
|
|
1491
1492
|
- [BaseTier](docs/BaseTier.md)
|
|
1492
|
-
- [BaseTransfer](docs/BaseTransfer.md)
|
|
1493
1493
|
- [BaseTransferLog](docs/BaseTransferLog.md)
|
|
1494
1494
|
- [BaseUser](docs/BaseUser.md)
|
|
1495
1495
|
- [BaseVideo](docs/BaseVideo.md)
|
|
@@ -1989,6 +1989,7 @@ Class | Method | HTTP request | Description
|
|
|
1989
1989
|
- [GetEventPassResponse200Response](docs/GetEventPassResponse200Response.md)
|
|
1990
1990
|
- [GetEventPassResponseChanges200Response](docs/GetEventPassResponseChanges200Response.md)
|
|
1991
1991
|
- [GetEventPassResponses200Response](docs/GetEventPassResponses200Response.md)
|
|
1992
|
+
- [GetEventPassTransfers200Response](docs/GetEventPassTransfers200Response.md)
|
|
1992
1993
|
- [GetEventPassTypePriceSchedule200Response](docs/GetEventPassTypePriceSchedule200Response.md)
|
|
1993
1994
|
- [GetEventPassTypePriceSchedules200Response](docs/GetEventPassTypePriceSchedules200Response.md)
|
|
1994
1995
|
- [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
|
-
'
|
|
1376
|
+
'transferId': string | null;
|
|
1377
1377
|
'responses': Array<BaseRegistrationQuestionResponse>;
|
|
1378
1378
|
'status': PurchaseStatus;
|
|
1379
1379
|
'reservationId': string | null;
|
|
@@ -1398,11 +1398,6 @@ export interface BaseEventPassAttendeeAccount {
|
|
|
1398
1398
|
'lastName': string | null;
|
|
1399
1399
|
'email': string;
|
|
1400
1400
|
}
|
|
1401
|
-
export interface BaseEventPassTransfer {
|
|
1402
|
-
'id': string;
|
|
1403
|
-
'email': string;
|
|
1404
|
-
'createdAt': string;
|
|
1405
|
-
}
|
|
1406
1401
|
export interface BaseEventPassType {
|
|
1407
1402
|
'id': string;
|
|
1408
1403
|
'slug': string;
|
|
@@ -2583,12 +2578,6 @@ export interface BaseTier {
|
|
|
2583
2578
|
'imageId': string | null;
|
|
2584
2579
|
'image': BaseImage | null;
|
|
2585
2580
|
}
|
|
2586
|
-
export interface BaseTransfer {
|
|
2587
|
-
'id': string;
|
|
2588
|
-
'email': string;
|
|
2589
|
-
'purchaseId': string;
|
|
2590
|
-
'purchase': BaseEventPass;
|
|
2591
|
-
}
|
|
2592
2581
|
export interface BaseTransferLog {
|
|
2593
2582
|
'id': number;
|
|
2594
2583
|
'fromRegistrationId': string;
|
|
@@ -5380,7 +5369,7 @@ export interface EventPass {
|
|
|
5380
5369
|
'ticket': BaseEventPassType;
|
|
5381
5370
|
'location': string | null;
|
|
5382
5371
|
'usedAt': string | null;
|
|
5383
|
-
'
|
|
5372
|
+
'transferId': string | null;
|
|
5384
5373
|
'responses': Array<BaseRegistrationQuestionResponse>;
|
|
5385
5374
|
'status': PurchaseStatus;
|
|
5386
5375
|
'reservationId': string | null;
|
|
@@ -7958,6 +7947,17 @@ export enum GetEventPassResponses200ResponseStatusEnum {
|
|
|
7958
7947
|
Ok = 'ok'
|
|
7959
7948
|
}
|
|
7960
7949
|
|
|
7950
|
+
export interface GetEventPassTransfers200Response {
|
|
7951
|
+
'status': GetEventPassTransfers200ResponseStatusEnum;
|
|
7952
|
+
'message': string;
|
|
7953
|
+
'data': Array<Transfer>;
|
|
7954
|
+
'count'?: number;
|
|
7955
|
+
}
|
|
7956
|
+
|
|
7957
|
+
export enum GetEventPassTransfers200ResponseStatusEnum {
|
|
7958
|
+
Ok = 'ok'
|
|
7959
|
+
}
|
|
7960
|
+
|
|
7961
7961
|
export interface GetEventPassTypePriceSchedule200Response {
|
|
7962
7962
|
'status': GetEventPassTypePriceSchedule200ResponseStatusEnum;
|
|
7963
7963
|
'message': string;
|
|
@@ -13833,11 +13833,15 @@ export interface TierUpdateInputs {
|
|
|
13833
13833
|
}
|
|
13834
13834
|
export interface Transfer {
|
|
13835
13835
|
'id': string;
|
|
13836
|
+
'passId': string;
|
|
13836
13837
|
'email': string;
|
|
13837
|
-
'
|
|
13838
|
-
'purchase': BaseEventPass;
|
|
13838
|
+
'message': string | null;
|
|
13839
13839
|
'createdAt': string;
|
|
13840
|
-
'
|
|
13840
|
+
'eventId': string;
|
|
13841
|
+
'event': BaseEvent;
|
|
13842
|
+
'fromAccountId': string;
|
|
13843
|
+
'fromAccount': OrganizationAllOfOAuth;
|
|
13844
|
+
'pass': BaseEventPass;
|
|
13841
13845
|
}
|
|
13842
13846
|
export interface TransferLog {
|
|
13843
13847
|
'id': number;
|
|
@@ -101977,6 +101981,261 @@ export class EventsTracksTranslationsApi extends BaseAPI {
|
|
|
101977
101981
|
|
|
101978
101982
|
|
|
101979
101983
|
|
|
101984
|
+
/**
|
|
101985
|
+
* EventsTransfersApi - axios parameter creator
|
|
101986
|
+
*/
|
|
101987
|
+
export const EventsTransfersApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
101988
|
+
return {
|
|
101989
|
+
/**
|
|
101990
|
+
* Cancel Event Pass Transfer endpoint
|
|
101991
|
+
* @summary Cancel Event Pass Transfer
|
|
101992
|
+
* @param {string} eventId The event identifier
|
|
101993
|
+
* @param {string} transferId The transfer identifier
|
|
101994
|
+
* @param {*} [options] Override http request option.
|
|
101995
|
+
* @throws {RequiredError}
|
|
101996
|
+
*/
|
|
101997
|
+
cancelEventPassTransfer: async (eventId: string, transferId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
101998
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
101999
|
+
assertParamExists('cancelEventPassTransfer', 'eventId', eventId)
|
|
102000
|
+
// verify required parameter 'transferId' is not null or undefined
|
|
102001
|
+
assertParamExists('cancelEventPassTransfer', 'transferId', transferId)
|
|
102002
|
+
const localVarPath = `/events/{eventId}/transfers/{transferId}`
|
|
102003
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)))
|
|
102004
|
+
.replace(`{${"transferId"}}`, encodeURIComponent(String(transferId)));
|
|
102005
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
102006
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
102007
|
+
let baseOptions;
|
|
102008
|
+
if (configuration) {
|
|
102009
|
+
baseOptions = configuration.baseOptions;
|
|
102010
|
+
}
|
|
102011
|
+
|
|
102012
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
102013
|
+
const localVarHeaderParameter = {} as any;
|
|
102014
|
+
const localVarQueryParameter = {} as any;
|
|
102015
|
+
|
|
102016
|
+
// authentication ApiKeyAuth required
|
|
102017
|
+
await setApiKeyToObject(localVarHeaderParameter, "api-key", configuration)
|
|
102018
|
+
|
|
102019
|
+
// authentication OrganizationId required
|
|
102020
|
+
await setApiKeyToObject(localVarHeaderParameter, "organization", configuration)
|
|
102021
|
+
|
|
102022
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
102023
|
+
|
|
102024
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
102025
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
102026
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
102027
|
+
|
|
102028
|
+
return {
|
|
102029
|
+
url: toPathString(localVarUrlObj),
|
|
102030
|
+
options: localVarRequestOptions,
|
|
102031
|
+
};
|
|
102032
|
+
},
|
|
102033
|
+
/**
|
|
102034
|
+
* Get Event Pass Transfers endpoint
|
|
102035
|
+
* @summary Get Event Pass Transfers
|
|
102036
|
+
* @param {string} eventId The event identifier
|
|
102037
|
+
* @param {number} [page] Page number
|
|
102038
|
+
* @param {number} [pageSize] Number of items per page
|
|
102039
|
+
* @param {string} [orderBy] Field to order by
|
|
102040
|
+
* @param {string} [search] Search query
|
|
102041
|
+
* @param {*} [options] Override http request option.
|
|
102042
|
+
* @throws {RequiredError}
|
|
102043
|
+
*/
|
|
102044
|
+
getEventPassTransfers: async (eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
102045
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
102046
|
+
assertParamExists('getEventPassTransfers', 'eventId', eventId)
|
|
102047
|
+
const localVarPath = `/events/{eventId}/transfers`
|
|
102048
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)));
|
|
102049
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
102050
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
102051
|
+
let baseOptions;
|
|
102052
|
+
if (configuration) {
|
|
102053
|
+
baseOptions = configuration.baseOptions;
|
|
102054
|
+
}
|
|
102055
|
+
|
|
102056
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
102057
|
+
const localVarHeaderParameter = {} as any;
|
|
102058
|
+
const localVarQueryParameter = {} as any;
|
|
102059
|
+
|
|
102060
|
+
// authentication ApiKeyAuth required
|
|
102061
|
+
await setApiKeyToObject(localVarHeaderParameter, "api-key", configuration)
|
|
102062
|
+
|
|
102063
|
+
// authentication OrganizationId required
|
|
102064
|
+
await setApiKeyToObject(localVarHeaderParameter, "organization", configuration)
|
|
102065
|
+
|
|
102066
|
+
if (page !== undefined) {
|
|
102067
|
+
localVarQueryParameter['page'] = page;
|
|
102068
|
+
}
|
|
102069
|
+
|
|
102070
|
+
if (pageSize !== undefined) {
|
|
102071
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
102072
|
+
}
|
|
102073
|
+
|
|
102074
|
+
if (orderBy !== undefined) {
|
|
102075
|
+
localVarQueryParameter['orderBy'] = orderBy;
|
|
102076
|
+
}
|
|
102077
|
+
|
|
102078
|
+
if (search !== undefined) {
|
|
102079
|
+
localVarQueryParameter['search'] = search;
|
|
102080
|
+
}
|
|
102081
|
+
|
|
102082
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
102083
|
+
|
|
102084
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
102085
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
102086
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
102087
|
+
|
|
102088
|
+
return {
|
|
102089
|
+
url: toPathString(localVarUrlObj),
|
|
102090
|
+
options: localVarRequestOptions,
|
|
102091
|
+
};
|
|
102092
|
+
},
|
|
102093
|
+
}
|
|
102094
|
+
};
|
|
102095
|
+
|
|
102096
|
+
/**
|
|
102097
|
+
* EventsTransfersApi - functional programming interface
|
|
102098
|
+
*/
|
|
102099
|
+
export const EventsTransfersApiFp = function(configuration?: Configuration) {
|
|
102100
|
+
const localVarAxiosParamCreator = EventsTransfersApiAxiosParamCreator(configuration)
|
|
102101
|
+
return {
|
|
102102
|
+
/**
|
|
102103
|
+
* Cancel Event Pass Transfer endpoint
|
|
102104
|
+
* @summary Cancel Event Pass Transfer
|
|
102105
|
+
* @param {string} eventId The event identifier
|
|
102106
|
+
* @param {string} transferId The transfer identifier
|
|
102107
|
+
* @param {*} [options] Override http request option.
|
|
102108
|
+
* @throws {RequiredError}
|
|
102109
|
+
*/
|
|
102110
|
+
async cancelEventPassTransfer(eventId: string, transferId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SyncAccounts200Response>> {
|
|
102111
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.cancelEventPassTransfer(eventId, transferId, options);
|
|
102112
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
102113
|
+
const localVarOperationServerBasePath = operationServerMap['EventsTransfersApi.cancelEventPassTransfer']?.[localVarOperationServerIndex]?.url;
|
|
102114
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
102115
|
+
},
|
|
102116
|
+
/**
|
|
102117
|
+
* Get Event Pass Transfers endpoint
|
|
102118
|
+
* @summary Get Event Pass Transfers
|
|
102119
|
+
* @param {string} eventId The event identifier
|
|
102120
|
+
* @param {number} [page] Page number
|
|
102121
|
+
* @param {number} [pageSize] Number of items per page
|
|
102122
|
+
* @param {string} [orderBy] Field to order by
|
|
102123
|
+
* @param {string} [search] Search query
|
|
102124
|
+
* @param {*} [options] Override http request option.
|
|
102125
|
+
* @throws {RequiredError}
|
|
102126
|
+
*/
|
|
102127
|
+
async getEventPassTransfers(eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventPassTransfers200Response>> {
|
|
102128
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getEventPassTransfers(eventId, page, pageSize, orderBy, search, options);
|
|
102129
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
102130
|
+
const localVarOperationServerBasePath = operationServerMap['EventsTransfersApi.getEventPassTransfers']?.[localVarOperationServerIndex]?.url;
|
|
102131
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
102132
|
+
},
|
|
102133
|
+
}
|
|
102134
|
+
};
|
|
102135
|
+
|
|
102136
|
+
/**
|
|
102137
|
+
* EventsTransfersApi - factory interface
|
|
102138
|
+
*/
|
|
102139
|
+
export const EventsTransfersApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
102140
|
+
const localVarFp = EventsTransfersApiFp(configuration)
|
|
102141
|
+
return {
|
|
102142
|
+
/**
|
|
102143
|
+
* Cancel Event Pass Transfer endpoint
|
|
102144
|
+
* @summary Cancel Event Pass Transfer
|
|
102145
|
+
* @param {EventsTransfersApiCancelEventPassTransferRequest} requestParameters Request parameters.
|
|
102146
|
+
* @param {*} [options] Override http request option.
|
|
102147
|
+
* @throws {RequiredError}
|
|
102148
|
+
*/
|
|
102149
|
+
cancelEventPassTransfer(requestParameters: EventsTransfersApiCancelEventPassTransferRequest, options?: RawAxiosRequestConfig): AxiosPromise<SyncAccounts200Response> {
|
|
102150
|
+
return localVarFp.cancelEventPassTransfer(requestParameters.eventId, requestParameters.transferId, options).then((request) => request(axios, basePath));
|
|
102151
|
+
},
|
|
102152
|
+
/**
|
|
102153
|
+
* Get Event Pass Transfers endpoint
|
|
102154
|
+
* @summary Get Event Pass Transfers
|
|
102155
|
+
* @param {EventsTransfersApiGetEventPassTransfersRequest} requestParameters Request parameters.
|
|
102156
|
+
* @param {*} [options] Override http request option.
|
|
102157
|
+
* @throws {RequiredError}
|
|
102158
|
+
*/
|
|
102159
|
+
getEventPassTransfers(requestParameters: EventsTransfersApiGetEventPassTransfersRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventPassTransfers200Response> {
|
|
102160
|
+
return localVarFp.getEventPassTransfers(requestParameters.eventId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
102161
|
+
},
|
|
102162
|
+
};
|
|
102163
|
+
};
|
|
102164
|
+
|
|
102165
|
+
/**
|
|
102166
|
+
* Request parameters for cancelEventPassTransfer operation in EventsTransfersApi.
|
|
102167
|
+
*/
|
|
102168
|
+
export interface EventsTransfersApiCancelEventPassTransferRequest {
|
|
102169
|
+
/**
|
|
102170
|
+
* The event identifier
|
|
102171
|
+
*/
|
|
102172
|
+
readonly eventId: string
|
|
102173
|
+
|
|
102174
|
+
/**
|
|
102175
|
+
* The transfer identifier
|
|
102176
|
+
*/
|
|
102177
|
+
readonly transferId: string
|
|
102178
|
+
}
|
|
102179
|
+
|
|
102180
|
+
/**
|
|
102181
|
+
* Request parameters for getEventPassTransfers operation in EventsTransfersApi.
|
|
102182
|
+
*/
|
|
102183
|
+
export interface EventsTransfersApiGetEventPassTransfersRequest {
|
|
102184
|
+
/**
|
|
102185
|
+
* The event identifier
|
|
102186
|
+
*/
|
|
102187
|
+
readonly eventId: string
|
|
102188
|
+
|
|
102189
|
+
/**
|
|
102190
|
+
* Page number
|
|
102191
|
+
*/
|
|
102192
|
+
readonly page?: number
|
|
102193
|
+
|
|
102194
|
+
/**
|
|
102195
|
+
* Number of items per page
|
|
102196
|
+
*/
|
|
102197
|
+
readonly pageSize?: number
|
|
102198
|
+
|
|
102199
|
+
/**
|
|
102200
|
+
* Field to order by
|
|
102201
|
+
*/
|
|
102202
|
+
readonly orderBy?: string
|
|
102203
|
+
|
|
102204
|
+
/**
|
|
102205
|
+
* Search query
|
|
102206
|
+
*/
|
|
102207
|
+
readonly search?: string
|
|
102208
|
+
}
|
|
102209
|
+
|
|
102210
|
+
/**
|
|
102211
|
+
* EventsTransfersApi - object-oriented interface
|
|
102212
|
+
*/
|
|
102213
|
+
export class EventsTransfersApi extends BaseAPI {
|
|
102214
|
+
/**
|
|
102215
|
+
* Cancel Event Pass Transfer endpoint
|
|
102216
|
+
* @summary Cancel Event Pass Transfer
|
|
102217
|
+
* @param {EventsTransfersApiCancelEventPassTransferRequest} requestParameters Request parameters.
|
|
102218
|
+
* @param {*} [options] Override http request option.
|
|
102219
|
+
* @throws {RequiredError}
|
|
102220
|
+
*/
|
|
102221
|
+
public cancelEventPassTransfer(requestParameters: EventsTransfersApiCancelEventPassTransferRequest, options?: RawAxiosRequestConfig) {
|
|
102222
|
+
return EventsTransfersApiFp(this.configuration).cancelEventPassTransfer(requestParameters.eventId, requestParameters.transferId, options).then((request) => request(this.axios, this.basePath));
|
|
102223
|
+
}
|
|
102224
|
+
|
|
102225
|
+
/**
|
|
102226
|
+
* Get Event Pass Transfers endpoint
|
|
102227
|
+
* @summary Get Event Pass Transfers
|
|
102228
|
+
* @param {EventsTransfersApiGetEventPassTransfersRequest} requestParameters Request parameters.
|
|
102229
|
+
* @param {*} [options] Override http request option.
|
|
102230
|
+
* @throws {RequiredError}
|
|
102231
|
+
*/
|
|
102232
|
+
public getEventPassTransfers(requestParameters: EventsTransfersApiGetEventPassTransfersRequest, options?: RawAxiosRequestConfig) {
|
|
102233
|
+
return EventsTransfersApiFp(this.configuration).getEventPassTransfers(requestParameters.eventId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
|
|
102234
|
+
}
|
|
102235
|
+
}
|
|
102236
|
+
|
|
102237
|
+
|
|
102238
|
+
|
|
101980
102239
|
/**
|
|
101981
102240
|
* EventsTranslationsApi - axios parameter creator
|
|
101982
102241
|
*/
|
package/dist/AdminApi.d.ts
CHANGED
|
@@ -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);
|