@connectedxm/admin-sdk 7.8.0 → 7.9.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 +12 -1
- package/AdminApi.ts +3 -0
- package/README.md +17 -2
- package/api.ts +915 -106
- package/dist/AdminApi.d.ts +2 -1
- package/dist/AdminApi.js +1 -0
- package/dist/api.d.ts +520 -58
- package/dist/api.js +624 -107
- package/dist/esm/AdminApi.d.ts +2 -1
- package/dist/esm/AdminApi.js +2 -1
- package/dist/esm/api.d.ts +520 -58
- package/dist/esm/api.js +592 -79
- package/docs/AccountsApi.md +0 -55
- package/docs/AddEventPassTypeExchangeTarget200Response.md +24 -0
- package/docs/BaseEventPassTypeExchangeTarget.md +38 -0
- package/docs/BaseEventSessionLocation.md +2 -0
- package/docs/BasePassExchange.md +32 -0
- package/docs/Event.md +2 -0
- package/docs/EventCreateInputs.md +2 -0
- package/docs/EventPassTypeExchangeTarget.md +42 -0
- package/docs/EventSessionLocation.md +2 -0
- package/docs/EventSessionLocationCreateInputs.md +6 -0
- package/docs/EventSessionLocationUpdateInputs.md +6 -0
- package/docs/EventUpdateInputs.md +2 -0
- package/docs/EventsPasstypesExchangetargetsApi.md +393 -0
- package/docs/ExchangeType.md +12 -0
- package/docs/GetEventPassTypeExchangeTargetExchanges200Response.md +26 -0
- package/docs/GetEventPassTypeExchangeTargets200Response.md +26 -0
- package/docs/{ImpersonateAccount200Response.md → JoinMeeting200Response.md} +3 -3
- package/docs/MeetingsApi.md +2 -2
- package/docs/PassExchange.md +38 -0
- package/docs/PassTypeExchangeTargetCreateInputs.md +30 -0
- package/docs/PassTypeExchangeTargetUpdateInputs.md +28 -0
- package/docs/Payment.md +2 -0
- package/package.json +1 -1
package/dist/esm/api.d.ts
CHANGED
|
@@ -386,6 +386,14 @@ export interface AddChannelSubscriber200Response {
|
|
|
386
386
|
export declare enum AddChannelSubscriber200ResponseStatusEnum {
|
|
387
387
|
Ok = "ok"
|
|
388
388
|
}
|
|
389
|
+
export interface AddEventPassTypeExchangeTarget200Response {
|
|
390
|
+
'status': AddEventPassTypeExchangeTarget200ResponseStatusEnum;
|
|
391
|
+
'message': string;
|
|
392
|
+
'data': EventPassTypeExchangeTarget;
|
|
393
|
+
}
|
|
394
|
+
export declare enum AddEventPassTypeExchangeTarget200ResponseStatusEnum {
|
|
395
|
+
Ok = "ok"
|
|
396
|
+
}
|
|
389
397
|
export interface AddOrganizationUser200Response {
|
|
390
398
|
'status': AddOrganizationUser200ResponseStatusEnum;
|
|
391
399
|
'message': string;
|
|
@@ -1317,6 +1325,18 @@ export interface BaseEventPassType {
|
|
|
1317
1325
|
'requiredPassTypeId': string | null;
|
|
1318
1326
|
'requiresApproval': boolean;
|
|
1319
1327
|
}
|
|
1328
|
+
export interface BaseEventPassTypeExchangeTarget {
|
|
1329
|
+
'id': string;
|
|
1330
|
+
'enabled': boolean;
|
|
1331
|
+
'sourcePassTypeId': string;
|
|
1332
|
+
'sourcePassType': BaseEventPassType;
|
|
1333
|
+
'targetPassTypeId': string;
|
|
1334
|
+
'targetPassType': BaseEventPassType;
|
|
1335
|
+
'fixedPricing': boolean;
|
|
1336
|
+
'amount': number;
|
|
1337
|
+
'startDate': string | null;
|
|
1338
|
+
'endDate': string | null;
|
|
1339
|
+
}
|
|
1320
1340
|
export interface BaseEventPassTypePriceSchedule {
|
|
1321
1341
|
'id': string;
|
|
1322
1342
|
'ticketId': string;
|
|
@@ -1422,6 +1442,7 @@ export interface BaseEventSessionAccess {
|
|
|
1422
1442
|
export interface BaseEventSessionLocation {
|
|
1423
1443
|
'id': string;
|
|
1424
1444
|
'name': string;
|
|
1445
|
+
'room': string | null;
|
|
1425
1446
|
'address1': string | null;
|
|
1426
1447
|
'address2': string | null;
|
|
1427
1448
|
'zip': string | null;
|
|
@@ -1839,6 +1860,15 @@ export interface BasePassAttributeAttribute {
|
|
|
1839
1860
|
'id': string;
|
|
1840
1861
|
'name': string;
|
|
1841
1862
|
}
|
|
1863
|
+
export interface BasePassExchange {
|
|
1864
|
+
'id': string;
|
|
1865
|
+
'accountId': string;
|
|
1866
|
+
'passId': string;
|
|
1867
|
+
'exchangeType': ExchangeType;
|
|
1868
|
+
'exchangeTargetId': string;
|
|
1869
|
+
'exchangeTarget': EventPassTypeExchangeTarget;
|
|
1870
|
+
'lineItem': BasePaymentLineItem | null;
|
|
1871
|
+
}
|
|
1842
1872
|
export interface BasePayment {
|
|
1843
1873
|
'id': number;
|
|
1844
1874
|
'type': PaymentType;
|
|
@@ -4282,6 +4312,7 @@ export interface Event {
|
|
|
4282
4312
|
'groupId': string | null;
|
|
4283
4313
|
'group': BaseGroup | null;
|
|
4284
4314
|
'groupOnly': boolean;
|
|
4315
|
+
'guestRegistration': boolean;
|
|
4285
4316
|
'backgroundImageId': string | null;
|
|
4286
4317
|
'backgroundImage': BaseImage | null;
|
|
4287
4318
|
'registrationHeaderImageId': string | null;
|
|
@@ -4625,6 +4656,7 @@ export interface EventCreateInputs {
|
|
|
4625
4656
|
'streamReplayId'?: string | null;
|
|
4626
4657
|
'groupId'?: string | null;
|
|
4627
4658
|
'groupOnly'?: boolean;
|
|
4659
|
+
'guestRegistration'?: boolean;
|
|
4628
4660
|
'passSupply'?: AdvertisementCreateInputsWeight | null;
|
|
4629
4661
|
'passLimitPerAccount'?: EventCreateInputsPassLimitPerAccount | null;
|
|
4630
4662
|
'roundName'?: string | null;
|
|
@@ -4974,6 +5006,20 @@ export interface EventPassType {
|
|
|
4974
5006
|
export interface EventPassTypeAllOfCount {
|
|
4975
5007
|
'purchases': number;
|
|
4976
5008
|
}
|
|
5009
|
+
export interface EventPassTypeExchangeTarget {
|
|
5010
|
+
'id': string;
|
|
5011
|
+
'enabled': boolean;
|
|
5012
|
+
'sourcePassTypeId': string;
|
|
5013
|
+
'sourcePassType': BaseEventPassType;
|
|
5014
|
+
'targetPassTypeId': string;
|
|
5015
|
+
'targetPassType': BaseEventPassType;
|
|
5016
|
+
'fixedPricing': boolean;
|
|
5017
|
+
'amount': number;
|
|
5018
|
+
'startDate': string | null;
|
|
5019
|
+
'endDate': string | null;
|
|
5020
|
+
'createdAt': string;
|
|
5021
|
+
'updatedAt': string;
|
|
5022
|
+
}
|
|
4977
5023
|
export interface EventPassTypePriceSchedule {
|
|
4978
5024
|
'id': string;
|
|
4979
5025
|
'ticketId': string;
|
|
@@ -5383,6 +5429,7 @@ export interface EventSessionCreateInputs {
|
|
|
5383
5429
|
export interface EventSessionLocation {
|
|
5384
5430
|
'id': string;
|
|
5385
5431
|
'name': string;
|
|
5432
|
+
'room': string | null;
|
|
5386
5433
|
'address1': string | null;
|
|
5387
5434
|
'address2': string | null;
|
|
5388
5435
|
'zip': string | null;
|
|
@@ -5400,6 +5447,7 @@ export interface EventSessionLocation {
|
|
|
5400
5447
|
export interface EventSessionLocationCreateInputs {
|
|
5401
5448
|
'location'?: string | null;
|
|
5402
5449
|
'name': string;
|
|
5450
|
+
'room'?: string | null;
|
|
5403
5451
|
'description'?: string | null;
|
|
5404
5452
|
'imageId'?: string | null;
|
|
5405
5453
|
'address1'?: string | null;
|
|
@@ -5408,6 +5456,8 @@ export interface EventSessionLocationCreateInputs {
|
|
|
5408
5456
|
'state'?: string | null;
|
|
5409
5457
|
'country'?: string | null;
|
|
5410
5458
|
'zip'?: string | null;
|
|
5459
|
+
'latitude'?: number | null;
|
|
5460
|
+
'longitude'?: number | null;
|
|
5411
5461
|
}
|
|
5412
5462
|
export interface EventSessionLocationTranslation {
|
|
5413
5463
|
'id': string;
|
|
@@ -5424,6 +5474,7 @@ export interface EventSessionLocationTranslationUpdateInputs {
|
|
|
5424
5474
|
export interface EventSessionLocationUpdateInputs {
|
|
5425
5475
|
'location'?: string | null;
|
|
5426
5476
|
'name'?: string;
|
|
5477
|
+
'room'?: string | null;
|
|
5427
5478
|
'description'?: string | null;
|
|
5428
5479
|
'imageId'?: string | null;
|
|
5429
5480
|
'address1'?: string | null;
|
|
@@ -5432,6 +5483,8 @@ export interface EventSessionLocationUpdateInputs {
|
|
|
5432
5483
|
'state'?: string | null;
|
|
5433
5484
|
'country'?: string | null;
|
|
5434
5485
|
'zip'?: string | null;
|
|
5486
|
+
'latitude'?: number | null;
|
|
5487
|
+
'longitude'?: number | null;
|
|
5435
5488
|
}
|
|
5436
5489
|
export interface EventSessionPrice {
|
|
5437
5490
|
'id': string;
|
|
@@ -6019,6 +6072,7 @@ export interface EventUpdateInputs {
|
|
|
6019
6072
|
'streamReplayId'?: string | null;
|
|
6020
6073
|
'groupId'?: string | null;
|
|
6021
6074
|
'groupOnly'?: boolean;
|
|
6075
|
+
'guestRegistration'?: boolean;
|
|
6022
6076
|
'passSupply'?: AdvertisementCreateInputsWeight | null;
|
|
6023
6077
|
'passLimitPerAccount'?: EventCreateInputsPassLimitPerAccount | null;
|
|
6024
6078
|
'roundName'?: string | null;
|
|
@@ -6038,6 +6092,11 @@ export interface EventVariantCouponCreateInputs {
|
|
|
6038
6092
|
export interface EventVariantCouponSyncInputs {
|
|
6039
6093
|
'fields'?: Array<string>;
|
|
6040
6094
|
}
|
|
6095
|
+
export declare enum ExchangeType {
|
|
6096
|
+
Upgrade = "upgrade",
|
|
6097
|
+
Downgrade = "downgrade",
|
|
6098
|
+
Swap = "swap"
|
|
6099
|
+
}
|
|
6041
6100
|
export declare enum ExportStatus {
|
|
6042
6101
|
Pending = "pending",
|
|
6043
6102
|
Resolved = "resolved",
|
|
@@ -7178,6 +7237,24 @@ export interface GetEventPassTransfers200Response {
|
|
|
7178
7237
|
export declare enum GetEventPassTransfers200ResponseStatusEnum {
|
|
7179
7238
|
Ok = "ok"
|
|
7180
7239
|
}
|
|
7240
|
+
export interface GetEventPassTypeExchangeTargetExchanges200Response {
|
|
7241
|
+
'status': GetEventPassTypeExchangeTargetExchanges200ResponseStatusEnum;
|
|
7242
|
+
'message': string;
|
|
7243
|
+
'data': Array<PassExchange>;
|
|
7244
|
+
'count'?: number;
|
|
7245
|
+
}
|
|
7246
|
+
export declare enum GetEventPassTypeExchangeTargetExchanges200ResponseStatusEnum {
|
|
7247
|
+
Ok = "ok"
|
|
7248
|
+
}
|
|
7249
|
+
export interface GetEventPassTypeExchangeTargets200Response {
|
|
7250
|
+
'status': GetEventPassTypeExchangeTargets200ResponseStatusEnum;
|
|
7251
|
+
'message': string;
|
|
7252
|
+
'data': Array<EventPassTypeExchangeTarget>;
|
|
7253
|
+
'count'?: number;
|
|
7254
|
+
}
|
|
7255
|
+
export declare enum GetEventPassTypeExchangeTargets200ResponseStatusEnum {
|
|
7256
|
+
Ok = "ok"
|
|
7257
|
+
}
|
|
7181
7258
|
export interface GetEventPassTypePriceSchedule200Response {
|
|
7182
7259
|
'status': GetEventPassTypePriceSchedule200ResponseStatusEnum;
|
|
7183
7260
|
'message': string;
|
|
@@ -8973,14 +9050,6 @@ export interface ImageWCopyUri {
|
|
|
8973
9050
|
'updatedAt': string;
|
|
8974
9051
|
'copyUri': string;
|
|
8975
9052
|
}
|
|
8976
|
-
export interface ImpersonateAccount200Response {
|
|
8977
|
-
'status': ImpersonateAccount200ResponseStatusEnum;
|
|
8978
|
-
'message': string;
|
|
8979
|
-
'data': string;
|
|
8980
|
-
}
|
|
8981
|
-
export declare enum ImpersonateAccount200ResponseStatusEnum {
|
|
8982
|
-
Ok = "ok"
|
|
8983
|
-
}
|
|
8984
9053
|
export interface Import {
|
|
8985
9054
|
'id': string;
|
|
8986
9055
|
'type': string;
|
|
@@ -9186,6 +9255,14 @@ export interface InvoiceUpdateInputs {
|
|
|
9186
9255
|
'eventId'?: string | null;
|
|
9187
9256
|
'paymentIntegrationId'?: string | null;
|
|
9188
9257
|
}
|
|
9258
|
+
export interface JoinMeeting200Response {
|
|
9259
|
+
'status': JoinMeeting200ResponseStatusEnum;
|
|
9260
|
+
'message': string;
|
|
9261
|
+
'data': string;
|
|
9262
|
+
}
|
|
9263
|
+
export declare enum JoinMeeting200ResponseStatusEnum {
|
|
9264
|
+
Ok = "ok"
|
|
9265
|
+
}
|
|
9189
9266
|
export interface Lead {
|
|
9190
9267
|
'id': string;
|
|
9191
9268
|
'firstName': string | null;
|
|
@@ -10175,6 +10252,18 @@ export interface PassAttributesUpdateInputsValuesInner {
|
|
|
10175
10252
|
'attributeId': string;
|
|
10176
10253
|
'value': string;
|
|
10177
10254
|
}
|
|
10255
|
+
export interface PassExchange {
|
|
10256
|
+
'id': string;
|
|
10257
|
+
'accountId': string;
|
|
10258
|
+
'passId': string;
|
|
10259
|
+
'exchangeType': ExchangeType;
|
|
10260
|
+
'exchangeTargetId': string;
|
|
10261
|
+
'exchangeTarget': EventPassTypeExchangeTarget;
|
|
10262
|
+
'lineItem': BasePaymentLineItem | null;
|
|
10263
|
+
'account': BaseAccount;
|
|
10264
|
+
'pass': BaseEventPass;
|
|
10265
|
+
'createdAt': string;
|
|
10266
|
+
}
|
|
10178
10267
|
export declare enum PassTypeAccessLevel {
|
|
10179
10268
|
Regular = "regular",
|
|
10180
10269
|
Virtual = "virtual",
|
|
@@ -10211,6 +10300,21 @@ export interface PassTypeCreateInputs {
|
|
|
10211
10300
|
'badgeColor'?: string | null;
|
|
10212
10301
|
'requiresApproval'?: boolean;
|
|
10213
10302
|
}
|
|
10303
|
+
export interface PassTypeExchangeTargetCreateInputs {
|
|
10304
|
+
'enabled': boolean;
|
|
10305
|
+
'targetPassTypeId': string;
|
|
10306
|
+
'fixedPricing'?: boolean;
|
|
10307
|
+
'amount'?: number;
|
|
10308
|
+
'startDate'?: string | null;
|
|
10309
|
+
'endDate'?: string | null;
|
|
10310
|
+
}
|
|
10311
|
+
export interface PassTypeExchangeTargetUpdateInputs {
|
|
10312
|
+
'enabled'?: boolean;
|
|
10313
|
+
'fixedPricing'?: boolean;
|
|
10314
|
+
'amount'?: number;
|
|
10315
|
+
'startDate'?: string | null;
|
|
10316
|
+
'endDate'?: string | null;
|
|
10317
|
+
}
|
|
10214
10318
|
export interface PassTypePriceScheduleCreateInputs {
|
|
10215
10319
|
'ticketId'?: string | null;
|
|
10216
10320
|
'price'?: string | null;
|
|
@@ -10332,6 +10436,7 @@ export interface Payment {
|
|
|
10332
10436
|
'coupon': BaseCoupon | null;
|
|
10333
10437
|
'invoice': BaseInvoice | null;
|
|
10334
10438
|
'series': BaseSeries | null;
|
|
10439
|
+
'exchangeTarget': BaseEventPassTypeExchangeTarget | null;
|
|
10335
10440
|
'metadata'?: object;
|
|
10336
10441
|
}
|
|
10337
10442
|
export interface PaymentAllOfIntegration {
|
|
@@ -12838,15 +12943,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12838
12943
|
* @throws {RequiredError}
|
|
12839
12944
|
*/
|
|
12840
12945
|
getAccountsByInternalRefId: (internalRefId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12841
|
-
/**
|
|
12842
|
-
* Starts an admin impersonation session for the specified account, returning a token that lets an admin act as the given user identified by account ID and username.
|
|
12843
|
-
* @summary Impersonate account
|
|
12844
|
-
* @param {string} accountId The account identifier
|
|
12845
|
-
* @param {string} username The username identifier
|
|
12846
|
-
* @param {*} [options] Override http request option.
|
|
12847
|
-
* @throws {RequiredError}
|
|
12848
|
-
*/
|
|
12849
|
-
impersonateAccount: (accountId: string, username: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12850
12946
|
/**
|
|
12851
12947
|
* Enqueues a background job to resync the given account\'s data, requiring update permission on accounts.
|
|
12852
12948
|
* @summary Sync a single account
|
|
@@ -13060,15 +13156,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
13060
13156
|
* @throws {RequiredError}
|
|
13061
13157
|
*/
|
|
13062
13158
|
getAccountsByInternalRefId(internalRefId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountsByInternalRefId200Response>>;
|
|
13063
|
-
/**
|
|
13064
|
-
* Starts an admin impersonation session for the specified account, returning a token that lets an admin act as the given user identified by account ID and username.
|
|
13065
|
-
* @summary Impersonate account
|
|
13066
|
-
* @param {string} accountId The account identifier
|
|
13067
|
-
* @param {string} username The username identifier
|
|
13068
|
-
* @param {*} [options] Override http request option.
|
|
13069
|
-
* @throws {RequiredError}
|
|
13070
|
-
*/
|
|
13071
|
-
impersonateAccount(accountId: string, username: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImpersonateAccount200Response>>;
|
|
13072
13159
|
/**
|
|
13073
13160
|
* Enqueues a background job to resync the given account\'s data, requiring update permission on accounts.
|
|
13074
13161
|
* @summary Sync a single account
|
|
@@ -13234,14 +13321,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
13234
13321
|
* @throws {RequiredError}
|
|
13235
13322
|
*/
|
|
13236
13323
|
getAccountsByInternalRefId(requestParameters: AccountsApiGetAccountsByInternalRefIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountsByInternalRefId200Response>;
|
|
13237
|
-
/**
|
|
13238
|
-
* Starts an admin impersonation session for the specified account, returning a token that lets an admin act as the given user identified by account ID and username.
|
|
13239
|
-
* @summary Impersonate account
|
|
13240
|
-
* @param {AccountsApiImpersonateAccountRequest} requestParameters Request parameters.
|
|
13241
|
-
* @param {*} [options] Override http request option.
|
|
13242
|
-
* @throws {RequiredError}
|
|
13243
|
-
*/
|
|
13244
|
-
impersonateAccount(requestParameters: AccountsApiImpersonateAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImpersonateAccount200Response>;
|
|
13245
13324
|
/**
|
|
13246
13325
|
* Enqueues a background job to resync the given account\'s data, requiring update permission on accounts.
|
|
13247
13326
|
* @summary Sync a single account
|
|
@@ -13608,19 +13687,6 @@ export interface AccountsApiGetAccountsByInternalRefIdRequest {
|
|
|
13608
13687
|
*/
|
|
13609
13688
|
readonly internalRefId: string;
|
|
13610
13689
|
}
|
|
13611
|
-
/**
|
|
13612
|
-
* Request parameters for impersonateAccount operation in AccountsApi.
|
|
13613
|
-
*/
|
|
13614
|
-
export interface AccountsApiImpersonateAccountRequest {
|
|
13615
|
-
/**
|
|
13616
|
-
* The account identifier
|
|
13617
|
-
*/
|
|
13618
|
-
readonly accountId: string;
|
|
13619
|
-
/**
|
|
13620
|
-
* The username identifier
|
|
13621
|
-
*/
|
|
13622
|
-
readonly username: string;
|
|
13623
|
-
}
|
|
13624
13690
|
/**
|
|
13625
13691
|
* Request parameters for syncAccount operation in AccountsApi.
|
|
13626
13692
|
*/
|
|
@@ -13780,14 +13846,6 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
13780
13846
|
* @throws {RequiredError}
|
|
13781
13847
|
*/
|
|
13782
13848
|
getAccountsByInternalRefId(requestParameters: AccountsApiGetAccountsByInternalRefIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountsByInternalRefId200Response, any, {}>>;
|
|
13783
|
-
/**
|
|
13784
|
-
* Starts an admin impersonation session for the specified account, returning a token that lets an admin act as the given user identified by account ID and username.
|
|
13785
|
-
* @summary Impersonate account
|
|
13786
|
-
* @param {AccountsApiImpersonateAccountRequest} requestParameters Request parameters.
|
|
13787
|
-
* @param {*} [options] Override http request option.
|
|
13788
|
-
* @throws {RequiredError}
|
|
13789
|
-
*/
|
|
13790
|
-
impersonateAccount(requestParameters: AccountsApiImpersonateAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImpersonateAccount200Response, any, {}>>;
|
|
13791
13849
|
/**
|
|
13792
13850
|
* Enqueues a background job to resync the given account\'s data, requiring update permission on accounts.
|
|
13793
13851
|
* @summary Sync a single account
|
|
@@ -41034,6 +41092,410 @@ export declare class EventsPasstypesApi extends BaseAPI {
|
|
|
41034
41092
|
*/
|
|
41035
41093
|
updateEventPassType(requestParameters: EventsPasstypesApiUpdateEventPassTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventPassType200Response, any, {}>>;
|
|
41036
41094
|
}
|
|
41095
|
+
/**
|
|
41096
|
+
* EventsPasstypesExchangetargetsApi - axios parameter creator
|
|
41097
|
+
*/
|
|
41098
|
+
export declare const EventsPasstypesExchangetargetsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
41099
|
+
/**
|
|
41100
|
+
* Add Event Pass Type Exchange Target endpoint
|
|
41101
|
+
* @summary Add Event Pass Type Exchange Target
|
|
41102
|
+
* @param {string} eventId The event identifier
|
|
41103
|
+
* @param {string} passTypeId The passType identifier
|
|
41104
|
+
* @param {PassTypeExchangeTargetCreateInputs} passTypeExchangeTargetCreateInputs
|
|
41105
|
+
* @param {*} [options] Override http request option.
|
|
41106
|
+
* @throws {RequiredError}
|
|
41107
|
+
*/
|
|
41108
|
+
addEventPassTypeExchangeTarget: (eventId: string, passTypeId: string, passTypeExchangeTargetCreateInputs: PassTypeExchangeTargetCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41109
|
+
/**
|
|
41110
|
+
* Get Event Pass Type Exchange Target Exchanges endpoint
|
|
41111
|
+
* @summary Get Event Pass Type Exchange Target Exchanges
|
|
41112
|
+
* @param {string} eventId The event identifier
|
|
41113
|
+
* @param {string} passTypeId The passType identifier
|
|
41114
|
+
* @param {string} exchangeTargetId The exchangeTarget identifier
|
|
41115
|
+
* @param {number} [page] Page number
|
|
41116
|
+
* @param {number} [pageSize] Number of items per page
|
|
41117
|
+
* @param {string} [orderBy] Field to order by
|
|
41118
|
+
* @param {string} [search] Search query
|
|
41119
|
+
* @param {*} [options] Override http request option.
|
|
41120
|
+
* @throws {RequiredError}
|
|
41121
|
+
*/
|
|
41122
|
+
getEventPassTypeExchangeTargetExchanges: (eventId: string, passTypeId: string, exchangeTargetId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41123
|
+
/**
|
|
41124
|
+
* Get Event Pass Type Exchange Target Payments endpoint
|
|
41125
|
+
* @summary Get Event Pass Type Exchange Target Payments
|
|
41126
|
+
* @param {string} eventId The event identifier
|
|
41127
|
+
* @param {string} passTypeId The passType identifier
|
|
41128
|
+
* @param {string} exchangeTargetId The exchangeTarget identifier
|
|
41129
|
+
* @param {number} [page] Page number
|
|
41130
|
+
* @param {number} [pageSize] Number of items per page
|
|
41131
|
+
* @param {string} [orderBy] Field to order by
|
|
41132
|
+
* @param {string} [search] Search query
|
|
41133
|
+
* @param {*} [options] Override http request option.
|
|
41134
|
+
* @throws {RequiredError}
|
|
41135
|
+
*/
|
|
41136
|
+
getEventPassTypeExchangeTargetPayments: (eventId: string, passTypeId: string, exchangeTargetId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41137
|
+
/**
|
|
41138
|
+
* Get Event Pass Type Exchange Targets endpoint
|
|
41139
|
+
* @summary Get Event Pass Type Exchange Targets
|
|
41140
|
+
* @param {string} eventId The event identifier
|
|
41141
|
+
* @param {string} passTypeId The passType identifier
|
|
41142
|
+
* @param {number} [page] Page number
|
|
41143
|
+
* @param {number} [pageSize] Number of items per page
|
|
41144
|
+
* @param {string} [orderBy] Field to order by
|
|
41145
|
+
* @param {string} [search] Search query
|
|
41146
|
+
* @param {*} [options] Override http request option.
|
|
41147
|
+
* @throws {RequiredError}
|
|
41148
|
+
*/
|
|
41149
|
+
getEventPassTypeExchangeTargets: (eventId: string, passTypeId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41150
|
+
/**
|
|
41151
|
+
* Remove Event Pass Type Exchange Target endpoint
|
|
41152
|
+
* @summary Remove Event Pass Type Exchange Target
|
|
41153
|
+
* @param {string} eventId The event identifier
|
|
41154
|
+
* @param {string} passTypeId The passType identifier
|
|
41155
|
+
* @param {string} exchangeTargetId The exchangeTarget identifier
|
|
41156
|
+
* @param {*} [options] Override http request option.
|
|
41157
|
+
* @throws {RequiredError}
|
|
41158
|
+
*/
|
|
41159
|
+
removeEventPassTypeExchangeTarget: (eventId: string, passTypeId: string, exchangeTargetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41160
|
+
/**
|
|
41161
|
+
* Update Event Pass Type Exchange Target endpoint
|
|
41162
|
+
* @summary Update Event Pass Type Exchange Target
|
|
41163
|
+
* @param {string} eventId The event identifier
|
|
41164
|
+
* @param {string} passTypeId The passType identifier
|
|
41165
|
+
* @param {string} exchangeTargetId The exchangeTarget identifier
|
|
41166
|
+
* @param {PassTypeExchangeTargetUpdateInputs} passTypeExchangeTargetUpdateInputs
|
|
41167
|
+
* @param {*} [options] Override http request option.
|
|
41168
|
+
* @throws {RequiredError}
|
|
41169
|
+
*/
|
|
41170
|
+
updateEventPassTypeExchangeTarget: (eventId: string, passTypeId: string, exchangeTargetId: string, passTypeExchangeTargetUpdateInputs: PassTypeExchangeTargetUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41171
|
+
};
|
|
41172
|
+
/**
|
|
41173
|
+
* EventsPasstypesExchangetargetsApi - functional programming interface
|
|
41174
|
+
*/
|
|
41175
|
+
export declare const EventsPasstypesExchangetargetsApiFp: (configuration?: Configuration) => {
|
|
41176
|
+
/**
|
|
41177
|
+
* Add Event Pass Type Exchange Target endpoint
|
|
41178
|
+
* @summary Add Event Pass Type Exchange Target
|
|
41179
|
+
* @param {string} eventId The event identifier
|
|
41180
|
+
* @param {string} passTypeId The passType identifier
|
|
41181
|
+
* @param {PassTypeExchangeTargetCreateInputs} passTypeExchangeTargetCreateInputs
|
|
41182
|
+
* @param {*} [options] Override http request option.
|
|
41183
|
+
* @throws {RequiredError}
|
|
41184
|
+
*/
|
|
41185
|
+
addEventPassTypeExchangeTarget(eventId: string, passTypeId: string, passTypeExchangeTargetCreateInputs: PassTypeExchangeTargetCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddEventPassTypeExchangeTarget200Response>>;
|
|
41186
|
+
/**
|
|
41187
|
+
* Get Event Pass Type Exchange Target Exchanges endpoint
|
|
41188
|
+
* @summary Get Event Pass Type Exchange Target Exchanges
|
|
41189
|
+
* @param {string} eventId The event identifier
|
|
41190
|
+
* @param {string} passTypeId The passType identifier
|
|
41191
|
+
* @param {string} exchangeTargetId The exchangeTarget identifier
|
|
41192
|
+
* @param {number} [page] Page number
|
|
41193
|
+
* @param {number} [pageSize] Number of items per page
|
|
41194
|
+
* @param {string} [orderBy] Field to order by
|
|
41195
|
+
* @param {string} [search] Search query
|
|
41196
|
+
* @param {*} [options] Override http request option.
|
|
41197
|
+
* @throws {RequiredError}
|
|
41198
|
+
*/
|
|
41199
|
+
getEventPassTypeExchangeTargetExchanges(eventId: string, passTypeId: string, exchangeTargetId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventPassTypeExchangeTargetExchanges200Response>>;
|
|
41200
|
+
/**
|
|
41201
|
+
* Get Event Pass Type Exchange Target Payments endpoint
|
|
41202
|
+
* @summary Get Event Pass Type Exchange Target Payments
|
|
41203
|
+
* @param {string} eventId The event identifier
|
|
41204
|
+
* @param {string} passTypeId The passType identifier
|
|
41205
|
+
* @param {string} exchangeTargetId The exchangeTarget identifier
|
|
41206
|
+
* @param {number} [page] Page number
|
|
41207
|
+
* @param {number} [pageSize] Number of items per page
|
|
41208
|
+
* @param {string} [orderBy] Field to order by
|
|
41209
|
+
* @param {string} [search] Search query
|
|
41210
|
+
* @param {*} [options] Override http request option.
|
|
41211
|
+
* @throws {RequiredError}
|
|
41212
|
+
*/
|
|
41213
|
+
getEventPassTypeExchangeTargetPayments(eventId: string, passTypeId: string, exchangeTargetId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountPayments200Response>>;
|
|
41214
|
+
/**
|
|
41215
|
+
* Get Event Pass Type Exchange Targets endpoint
|
|
41216
|
+
* @summary Get Event Pass Type Exchange Targets
|
|
41217
|
+
* @param {string} eventId The event identifier
|
|
41218
|
+
* @param {string} passTypeId The passType identifier
|
|
41219
|
+
* @param {number} [page] Page number
|
|
41220
|
+
* @param {number} [pageSize] Number of items per page
|
|
41221
|
+
* @param {string} [orderBy] Field to order by
|
|
41222
|
+
* @param {string} [search] Search query
|
|
41223
|
+
* @param {*} [options] Override http request option.
|
|
41224
|
+
* @throws {RequiredError}
|
|
41225
|
+
*/
|
|
41226
|
+
getEventPassTypeExchangeTargets(eventId: string, passTypeId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventPassTypeExchangeTargets200Response>>;
|
|
41227
|
+
/**
|
|
41228
|
+
* Remove Event Pass Type Exchange Target endpoint
|
|
41229
|
+
* @summary Remove Event Pass Type Exchange Target
|
|
41230
|
+
* @param {string} eventId The event identifier
|
|
41231
|
+
* @param {string} passTypeId The passType identifier
|
|
41232
|
+
* @param {string} exchangeTargetId The exchangeTarget identifier
|
|
41233
|
+
* @param {*} [options] Override http request option.
|
|
41234
|
+
* @throws {RequiredError}
|
|
41235
|
+
*/
|
|
41236
|
+
removeEventPassTypeExchangeTarget(eventId: string, passTypeId: string, exchangeTargetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddEventPassTypeExchangeTarget200Response>>;
|
|
41237
|
+
/**
|
|
41238
|
+
* Update Event Pass Type Exchange Target endpoint
|
|
41239
|
+
* @summary Update Event Pass Type Exchange Target
|
|
41240
|
+
* @param {string} eventId The event identifier
|
|
41241
|
+
* @param {string} passTypeId The passType identifier
|
|
41242
|
+
* @param {string} exchangeTargetId The exchangeTarget identifier
|
|
41243
|
+
* @param {PassTypeExchangeTargetUpdateInputs} passTypeExchangeTargetUpdateInputs
|
|
41244
|
+
* @param {*} [options] Override http request option.
|
|
41245
|
+
* @throws {RequiredError}
|
|
41246
|
+
*/
|
|
41247
|
+
updateEventPassTypeExchangeTarget(eventId: string, passTypeId: string, exchangeTargetId: string, passTypeExchangeTargetUpdateInputs: PassTypeExchangeTargetUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddEventPassTypeExchangeTarget200Response>>;
|
|
41248
|
+
};
|
|
41249
|
+
/**
|
|
41250
|
+
* EventsPasstypesExchangetargetsApi - factory interface
|
|
41251
|
+
*/
|
|
41252
|
+
export declare const EventsPasstypesExchangetargetsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
41253
|
+
/**
|
|
41254
|
+
* Add Event Pass Type Exchange Target endpoint
|
|
41255
|
+
* @summary Add Event Pass Type Exchange Target
|
|
41256
|
+
* @param {EventsPasstypesExchangetargetsApiAddEventPassTypeExchangeTargetRequest} requestParameters Request parameters.
|
|
41257
|
+
* @param {*} [options] Override http request option.
|
|
41258
|
+
* @throws {RequiredError}
|
|
41259
|
+
*/
|
|
41260
|
+
addEventPassTypeExchangeTarget(requestParameters: EventsPasstypesExchangetargetsApiAddEventPassTypeExchangeTargetRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddEventPassTypeExchangeTarget200Response>;
|
|
41261
|
+
/**
|
|
41262
|
+
* Get Event Pass Type Exchange Target Exchanges endpoint
|
|
41263
|
+
* @summary Get Event Pass Type Exchange Target Exchanges
|
|
41264
|
+
* @param {EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetExchangesRequest} requestParameters Request parameters.
|
|
41265
|
+
* @param {*} [options] Override http request option.
|
|
41266
|
+
* @throws {RequiredError}
|
|
41267
|
+
*/
|
|
41268
|
+
getEventPassTypeExchangeTargetExchanges(requestParameters: EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetExchangesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventPassTypeExchangeTargetExchanges200Response>;
|
|
41269
|
+
/**
|
|
41270
|
+
* Get Event Pass Type Exchange Target Payments endpoint
|
|
41271
|
+
* @summary Get Event Pass Type Exchange Target Payments
|
|
41272
|
+
* @param {EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetPaymentsRequest} requestParameters Request parameters.
|
|
41273
|
+
* @param {*} [options] Override http request option.
|
|
41274
|
+
* @throws {RequiredError}
|
|
41275
|
+
*/
|
|
41276
|
+
getEventPassTypeExchangeTargetPayments(requestParameters: EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetPaymentsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountPayments200Response>;
|
|
41277
|
+
/**
|
|
41278
|
+
* Get Event Pass Type Exchange Targets endpoint
|
|
41279
|
+
* @summary Get Event Pass Type Exchange Targets
|
|
41280
|
+
* @param {EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetsRequest} requestParameters Request parameters.
|
|
41281
|
+
* @param {*} [options] Override http request option.
|
|
41282
|
+
* @throws {RequiredError}
|
|
41283
|
+
*/
|
|
41284
|
+
getEventPassTypeExchangeTargets(requestParameters: EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventPassTypeExchangeTargets200Response>;
|
|
41285
|
+
/**
|
|
41286
|
+
* Remove Event Pass Type Exchange Target endpoint
|
|
41287
|
+
* @summary Remove Event Pass Type Exchange Target
|
|
41288
|
+
* @param {EventsPasstypesExchangetargetsApiRemoveEventPassTypeExchangeTargetRequest} requestParameters Request parameters.
|
|
41289
|
+
* @param {*} [options] Override http request option.
|
|
41290
|
+
* @throws {RequiredError}
|
|
41291
|
+
*/
|
|
41292
|
+
removeEventPassTypeExchangeTarget(requestParameters: EventsPasstypesExchangetargetsApiRemoveEventPassTypeExchangeTargetRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddEventPassTypeExchangeTarget200Response>;
|
|
41293
|
+
/**
|
|
41294
|
+
* Update Event Pass Type Exchange Target endpoint
|
|
41295
|
+
* @summary Update Event Pass Type Exchange Target
|
|
41296
|
+
* @param {EventsPasstypesExchangetargetsApiUpdateEventPassTypeExchangeTargetRequest} requestParameters Request parameters.
|
|
41297
|
+
* @param {*} [options] Override http request option.
|
|
41298
|
+
* @throws {RequiredError}
|
|
41299
|
+
*/
|
|
41300
|
+
updateEventPassTypeExchangeTarget(requestParameters: EventsPasstypesExchangetargetsApiUpdateEventPassTypeExchangeTargetRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddEventPassTypeExchangeTarget200Response>;
|
|
41301
|
+
};
|
|
41302
|
+
/**
|
|
41303
|
+
* Request parameters for addEventPassTypeExchangeTarget operation in EventsPasstypesExchangetargetsApi.
|
|
41304
|
+
*/
|
|
41305
|
+
export interface EventsPasstypesExchangetargetsApiAddEventPassTypeExchangeTargetRequest {
|
|
41306
|
+
/**
|
|
41307
|
+
* The event identifier
|
|
41308
|
+
*/
|
|
41309
|
+
readonly eventId: string;
|
|
41310
|
+
/**
|
|
41311
|
+
* The passType identifier
|
|
41312
|
+
*/
|
|
41313
|
+
readonly passTypeId: string;
|
|
41314
|
+
readonly passTypeExchangeTargetCreateInputs: PassTypeExchangeTargetCreateInputs;
|
|
41315
|
+
}
|
|
41316
|
+
/**
|
|
41317
|
+
* Request parameters for getEventPassTypeExchangeTargetExchanges operation in EventsPasstypesExchangetargetsApi.
|
|
41318
|
+
*/
|
|
41319
|
+
export interface EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetExchangesRequest {
|
|
41320
|
+
/**
|
|
41321
|
+
* The event identifier
|
|
41322
|
+
*/
|
|
41323
|
+
readonly eventId: string;
|
|
41324
|
+
/**
|
|
41325
|
+
* The passType identifier
|
|
41326
|
+
*/
|
|
41327
|
+
readonly passTypeId: string;
|
|
41328
|
+
/**
|
|
41329
|
+
* The exchangeTarget identifier
|
|
41330
|
+
*/
|
|
41331
|
+
readonly exchangeTargetId: string;
|
|
41332
|
+
/**
|
|
41333
|
+
* Page number
|
|
41334
|
+
*/
|
|
41335
|
+
readonly page?: number;
|
|
41336
|
+
/**
|
|
41337
|
+
* Number of items per page
|
|
41338
|
+
*/
|
|
41339
|
+
readonly pageSize?: number;
|
|
41340
|
+
/**
|
|
41341
|
+
* Field to order by
|
|
41342
|
+
*/
|
|
41343
|
+
readonly orderBy?: string;
|
|
41344
|
+
/**
|
|
41345
|
+
* Search query
|
|
41346
|
+
*/
|
|
41347
|
+
readonly search?: string;
|
|
41348
|
+
}
|
|
41349
|
+
/**
|
|
41350
|
+
* Request parameters for getEventPassTypeExchangeTargetPayments operation in EventsPasstypesExchangetargetsApi.
|
|
41351
|
+
*/
|
|
41352
|
+
export interface EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetPaymentsRequest {
|
|
41353
|
+
/**
|
|
41354
|
+
* The event identifier
|
|
41355
|
+
*/
|
|
41356
|
+
readonly eventId: string;
|
|
41357
|
+
/**
|
|
41358
|
+
* The passType identifier
|
|
41359
|
+
*/
|
|
41360
|
+
readonly passTypeId: string;
|
|
41361
|
+
/**
|
|
41362
|
+
* The exchangeTarget identifier
|
|
41363
|
+
*/
|
|
41364
|
+
readonly exchangeTargetId: string;
|
|
41365
|
+
/**
|
|
41366
|
+
* Page number
|
|
41367
|
+
*/
|
|
41368
|
+
readonly page?: number;
|
|
41369
|
+
/**
|
|
41370
|
+
* Number of items per page
|
|
41371
|
+
*/
|
|
41372
|
+
readonly pageSize?: number;
|
|
41373
|
+
/**
|
|
41374
|
+
* Field to order by
|
|
41375
|
+
*/
|
|
41376
|
+
readonly orderBy?: string;
|
|
41377
|
+
/**
|
|
41378
|
+
* Search query
|
|
41379
|
+
*/
|
|
41380
|
+
readonly search?: string;
|
|
41381
|
+
}
|
|
41382
|
+
/**
|
|
41383
|
+
* Request parameters for getEventPassTypeExchangeTargets operation in EventsPasstypesExchangetargetsApi.
|
|
41384
|
+
*/
|
|
41385
|
+
export interface EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetsRequest {
|
|
41386
|
+
/**
|
|
41387
|
+
* The event identifier
|
|
41388
|
+
*/
|
|
41389
|
+
readonly eventId: string;
|
|
41390
|
+
/**
|
|
41391
|
+
* The passType identifier
|
|
41392
|
+
*/
|
|
41393
|
+
readonly passTypeId: string;
|
|
41394
|
+
/**
|
|
41395
|
+
* Page number
|
|
41396
|
+
*/
|
|
41397
|
+
readonly page?: number;
|
|
41398
|
+
/**
|
|
41399
|
+
* Number of items per page
|
|
41400
|
+
*/
|
|
41401
|
+
readonly pageSize?: number;
|
|
41402
|
+
/**
|
|
41403
|
+
* Field to order by
|
|
41404
|
+
*/
|
|
41405
|
+
readonly orderBy?: string;
|
|
41406
|
+
/**
|
|
41407
|
+
* Search query
|
|
41408
|
+
*/
|
|
41409
|
+
readonly search?: string;
|
|
41410
|
+
}
|
|
41411
|
+
/**
|
|
41412
|
+
* Request parameters for removeEventPassTypeExchangeTarget operation in EventsPasstypesExchangetargetsApi.
|
|
41413
|
+
*/
|
|
41414
|
+
export interface EventsPasstypesExchangetargetsApiRemoveEventPassTypeExchangeTargetRequest {
|
|
41415
|
+
/**
|
|
41416
|
+
* The event identifier
|
|
41417
|
+
*/
|
|
41418
|
+
readonly eventId: string;
|
|
41419
|
+
/**
|
|
41420
|
+
* The passType identifier
|
|
41421
|
+
*/
|
|
41422
|
+
readonly passTypeId: string;
|
|
41423
|
+
/**
|
|
41424
|
+
* The exchangeTarget identifier
|
|
41425
|
+
*/
|
|
41426
|
+
readonly exchangeTargetId: string;
|
|
41427
|
+
}
|
|
41428
|
+
/**
|
|
41429
|
+
* Request parameters for updateEventPassTypeExchangeTarget operation in EventsPasstypesExchangetargetsApi.
|
|
41430
|
+
*/
|
|
41431
|
+
export interface EventsPasstypesExchangetargetsApiUpdateEventPassTypeExchangeTargetRequest {
|
|
41432
|
+
/**
|
|
41433
|
+
* The event identifier
|
|
41434
|
+
*/
|
|
41435
|
+
readonly eventId: string;
|
|
41436
|
+
/**
|
|
41437
|
+
* The passType identifier
|
|
41438
|
+
*/
|
|
41439
|
+
readonly passTypeId: string;
|
|
41440
|
+
/**
|
|
41441
|
+
* The exchangeTarget identifier
|
|
41442
|
+
*/
|
|
41443
|
+
readonly exchangeTargetId: string;
|
|
41444
|
+
readonly passTypeExchangeTargetUpdateInputs: PassTypeExchangeTargetUpdateInputs;
|
|
41445
|
+
}
|
|
41446
|
+
/**
|
|
41447
|
+
* EventsPasstypesExchangetargetsApi - object-oriented interface
|
|
41448
|
+
*/
|
|
41449
|
+
export declare class EventsPasstypesExchangetargetsApi extends BaseAPI {
|
|
41450
|
+
/**
|
|
41451
|
+
* Add Event Pass Type Exchange Target endpoint
|
|
41452
|
+
* @summary Add Event Pass Type Exchange Target
|
|
41453
|
+
* @param {EventsPasstypesExchangetargetsApiAddEventPassTypeExchangeTargetRequest} requestParameters Request parameters.
|
|
41454
|
+
* @param {*} [options] Override http request option.
|
|
41455
|
+
* @throws {RequiredError}
|
|
41456
|
+
*/
|
|
41457
|
+
addEventPassTypeExchangeTarget(requestParameters: EventsPasstypesExchangetargetsApiAddEventPassTypeExchangeTargetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddEventPassTypeExchangeTarget200Response, any, {}>>;
|
|
41458
|
+
/**
|
|
41459
|
+
* Get Event Pass Type Exchange Target Exchanges endpoint
|
|
41460
|
+
* @summary Get Event Pass Type Exchange Target Exchanges
|
|
41461
|
+
* @param {EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetExchangesRequest} requestParameters Request parameters.
|
|
41462
|
+
* @param {*} [options] Override http request option.
|
|
41463
|
+
* @throws {RequiredError}
|
|
41464
|
+
*/
|
|
41465
|
+
getEventPassTypeExchangeTargetExchanges(requestParameters: EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetExchangesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventPassTypeExchangeTargetExchanges200Response, any, {}>>;
|
|
41466
|
+
/**
|
|
41467
|
+
* Get Event Pass Type Exchange Target Payments endpoint
|
|
41468
|
+
* @summary Get Event Pass Type Exchange Target Payments
|
|
41469
|
+
* @param {EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetPaymentsRequest} requestParameters Request parameters.
|
|
41470
|
+
* @param {*} [options] Override http request option.
|
|
41471
|
+
* @throws {RequiredError}
|
|
41472
|
+
*/
|
|
41473
|
+
getEventPassTypeExchangeTargetPayments(requestParameters: EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetPaymentsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountPayments200Response, any, {}>>;
|
|
41474
|
+
/**
|
|
41475
|
+
* Get Event Pass Type Exchange Targets endpoint
|
|
41476
|
+
* @summary Get Event Pass Type Exchange Targets
|
|
41477
|
+
* @param {EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetsRequest} requestParameters Request parameters.
|
|
41478
|
+
* @param {*} [options] Override http request option.
|
|
41479
|
+
* @throws {RequiredError}
|
|
41480
|
+
*/
|
|
41481
|
+
getEventPassTypeExchangeTargets(requestParameters: EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventPassTypeExchangeTargets200Response, any, {}>>;
|
|
41482
|
+
/**
|
|
41483
|
+
* Remove Event Pass Type Exchange Target endpoint
|
|
41484
|
+
* @summary Remove Event Pass Type Exchange Target
|
|
41485
|
+
* @param {EventsPasstypesExchangetargetsApiRemoveEventPassTypeExchangeTargetRequest} requestParameters Request parameters.
|
|
41486
|
+
* @param {*} [options] Override http request option.
|
|
41487
|
+
* @throws {RequiredError}
|
|
41488
|
+
*/
|
|
41489
|
+
removeEventPassTypeExchangeTarget(requestParameters: EventsPasstypesExchangetargetsApiRemoveEventPassTypeExchangeTargetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddEventPassTypeExchangeTarget200Response, any, {}>>;
|
|
41490
|
+
/**
|
|
41491
|
+
* Update Event Pass Type Exchange Target endpoint
|
|
41492
|
+
* @summary Update Event Pass Type Exchange Target
|
|
41493
|
+
* @param {EventsPasstypesExchangetargetsApiUpdateEventPassTypeExchangeTargetRequest} requestParameters Request parameters.
|
|
41494
|
+
* @param {*} [options] Override http request option.
|
|
41495
|
+
* @throws {RequiredError}
|
|
41496
|
+
*/
|
|
41497
|
+
updateEventPassTypeExchangeTarget(requestParameters: EventsPasstypesExchangetargetsApiUpdateEventPassTypeExchangeTargetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddEventPassTypeExchangeTarget200Response, any, {}>>;
|
|
41498
|
+
}
|
|
41037
41499
|
/**
|
|
41038
41500
|
* EventsPasstypesPriceschedulesApi - axios parameter creator
|
|
41039
41501
|
*/
|
|
@@ -62469,7 +62931,7 @@ export declare const MeetingsApiFp: (configuration?: Configuration) => {
|
|
|
62469
62931
|
* @param {*} [options] Override http request option.
|
|
62470
62932
|
* @throws {RequiredError}
|
|
62471
62933
|
*/
|
|
62472
|
-
joinMeeting(meetingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
62934
|
+
joinMeeting(meetingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JoinMeeting200Response>>;
|
|
62473
62935
|
/**
|
|
62474
62936
|
* Updates the settings of an existing meeting, such as its title, recording, chat, livestream, or AI configuration, requiring the \"update\" permission on meetings.
|
|
62475
62937
|
* @summary Update a meeting
|
|
@@ -62531,7 +62993,7 @@ export declare const MeetingsApiFactory: (configuration?: Configuration, basePat
|
|
|
62531
62993
|
* @param {*} [options] Override http request option.
|
|
62532
62994
|
* @throws {RequiredError}
|
|
62533
62995
|
*/
|
|
62534
|
-
joinMeeting(requestParameters: MeetingsApiJoinMeetingRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
62996
|
+
joinMeeting(requestParameters: MeetingsApiJoinMeetingRequest, options?: RawAxiosRequestConfig): AxiosPromise<JoinMeeting200Response>;
|
|
62535
62997
|
/**
|
|
62536
62998
|
* Updates the settings of an existing meeting, such as its title, recording, chat, livestream, or AI configuration, requiring the \"update\" permission on meetings.
|
|
62537
62999
|
* @summary Update a meeting
|
|
@@ -62665,7 +63127,7 @@ export declare class MeetingsApi extends BaseAPI {
|
|
|
62665
63127
|
* @param {*} [options] Override http request option.
|
|
62666
63128
|
* @throws {RequiredError}
|
|
62667
63129
|
*/
|
|
62668
|
-
joinMeeting(requestParameters: MeetingsApiJoinMeetingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
63130
|
+
joinMeeting(requestParameters: MeetingsApiJoinMeetingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JoinMeeting200Response, any, {}>>;
|
|
62669
63131
|
/**
|
|
62670
63132
|
* Updates the settings of an existing meeting, such as its title, recording, chat, livestream, or AI configuration, requiring the \"update\" permission on meetings.
|
|
62671
63133
|
* @summary Update a meeting
|