@connectedxm/admin-sdk 7.8.1 → 7.9.2

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/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;
@@ -1840,6 +1860,15 @@ export interface BasePassAttributeAttribute {
1840
1860
  'id': string;
1841
1861
  'name': string;
1842
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
+ }
1843
1872
  export interface BasePayment {
1844
1873
  'id': number;
1845
1874
  'type': PaymentType;
@@ -4283,6 +4312,7 @@ export interface Event {
4283
4312
  'groupId': string | null;
4284
4313
  'group': BaseGroup | null;
4285
4314
  'groupOnly': boolean;
4315
+ 'guestRegistration': boolean;
4286
4316
  'backgroundImageId': string | null;
4287
4317
  'backgroundImage': BaseImage | null;
4288
4318
  'registrationHeaderImageId': string | null;
@@ -4626,6 +4656,7 @@ export interface EventCreateInputs {
4626
4656
  'streamReplayId'?: string | null;
4627
4657
  'groupId'?: string | null;
4628
4658
  'groupOnly'?: boolean;
4659
+ 'guestRegistration'?: boolean;
4629
4660
  'passSupply'?: AdvertisementCreateInputsWeight | null;
4630
4661
  'passLimitPerAccount'?: EventCreateInputsPassLimitPerAccount | null;
4631
4662
  'roundName'?: string | null;
@@ -4975,6 +5006,20 @@ export interface EventPassType {
4975
5006
  export interface EventPassTypeAllOfCount {
4976
5007
  'purchases': number;
4977
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
+ }
4978
5023
  export interface EventPassTypePriceSchedule {
4979
5024
  'id': string;
4980
5025
  'ticketId': string;
@@ -6027,6 +6072,7 @@ export interface EventUpdateInputs {
6027
6072
  'streamReplayId'?: string | null;
6028
6073
  'groupId'?: string | null;
6029
6074
  'groupOnly'?: boolean;
6075
+ 'guestRegistration'?: boolean;
6030
6076
  'passSupply'?: AdvertisementCreateInputsWeight | null;
6031
6077
  'passLimitPerAccount'?: EventCreateInputsPassLimitPerAccount | null;
6032
6078
  'roundName'?: string | null;
@@ -6046,6 +6092,11 @@ export interface EventVariantCouponCreateInputs {
6046
6092
  export interface EventVariantCouponSyncInputs {
6047
6093
  'fields'?: Array<string>;
6048
6094
  }
6095
+ export declare enum ExchangeType {
6096
+ Upgrade = "upgrade",
6097
+ Downgrade = "downgrade",
6098
+ Swap = "swap"
6099
+ }
6049
6100
  export declare enum ExportStatus {
6050
6101
  Pending = "pending",
6051
6102
  Resolved = "resolved",
@@ -7186,6 +7237,24 @@ export interface GetEventPassTransfers200Response {
7186
7237
  export declare enum GetEventPassTransfers200ResponseStatusEnum {
7187
7238
  Ok = "ok"
7188
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
+ }
7189
7258
  export interface GetEventPassTypePriceSchedule200Response {
7190
7259
  'status': GetEventPassTypePriceSchedule200ResponseStatusEnum;
7191
7260
  'message': string;
@@ -8981,14 +9050,6 @@ export interface ImageWCopyUri {
8981
9050
  'updatedAt': string;
8982
9051
  'copyUri': string;
8983
9052
  }
8984
- export interface ImpersonateAccount200Response {
8985
- 'status': ImpersonateAccount200ResponseStatusEnum;
8986
- 'message': string;
8987
- 'data': string;
8988
- }
8989
- export declare enum ImpersonateAccount200ResponseStatusEnum {
8990
- Ok = "ok"
8991
- }
8992
9053
  export interface Import {
8993
9054
  'id': string;
8994
9055
  'type': string;
@@ -9194,6 +9255,14 @@ export interface InvoiceUpdateInputs {
9194
9255
  'eventId'?: string | null;
9195
9256
  'paymentIntegrationId'?: string | null;
9196
9257
  }
9258
+ export interface JoinMeeting200Response {
9259
+ 'status': JoinMeeting200ResponseStatusEnum;
9260
+ 'message': string;
9261
+ 'data': string;
9262
+ }
9263
+ export declare enum JoinMeeting200ResponseStatusEnum {
9264
+ Ok = "ok"
9265
+ }
9197
9266
  export interface Lead {
9198
9267
  'id': string;
9199
9268
  'firstName': string | null;
@@ -10183,6 +10252,18 @@ export interface PassAttributesUpdateInputsValuesInner {
10183
10252
  'attributeId': string;
10184
10253
  'value': string;
10185
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
+ }
10186
10267
  export declare enum PassTypeAccessLevel {
10187
10268
  Regular = "regular",
10188
10269
  Virtual = "virtual",
@@ -10219,6 +10300,21 @@ export interface PassTypeCreateInputs {
10219
10300
  'badgeColor'?: string | null;
10220
10301
  'requiresApproval'?: boolean;
10221
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
+ }
10222
10318
  export interface PassTypePriceScheduleCreateInputs {
10223
10319
  'ticketId'?: string | null;
10224
10320
  'price'?: string | null;
@@ -10340,6 +10436,7 @@ export interface Payment {
10340
10436
  'coupon': BaseCoupon | null;
10341
10437
  'invoice': BaseInvoice | null;
10342
10438
  'series': BaseSeries | null;
10439
+ 'exchangeTarget': BaseEventPassTypeExchangeTarget | null;
10343
10440
  'metadata'?: object;
10344
10441
  }
10345
10442
  export interface PaymentAllOfIntegration {
@@ -12090,6 +12187,7 @@ export interface TaxIntegration {
12090
12187
  'id': string;
12091
12188
  'type': TaxIntegrationType;
12092
12189
  'connectionId': string;
12190
+ 'instanceUrl': string | null;
12093
12191
  'sandbox': boolean;
12094
12192
  'enabled': boolean;
12095
12193
  'companyCode': string;
@@ -12111,6 +12209,10 @@ export interface TaxIntegrationCreateInputs {
12111
12209
  'apiKey'?: string;
12112
12210
  'accountId'?: string;
12113
12211
  'licenseKey'?: string;
12212
+ 'clientId'?: string;
12213
+ 'clientSecret'?: string;
12214
+ 'instanceUrl'?: string;
12215
+ 'companyCode'?: string;
12114
12216
  }
12115
12217
  export interface TaxIntegrationLog {
12116
12218
  'id': string;
@@ -12135,6 +12237,7 @@ export declare enum TaxIntegrationType {
12135
12237
  }
12136
12238
  export interface TaxIntegrationUpdateInputs {
12137
12239
  'companyCode'?: string | null;
12240
+ 'instanceUrl'?: string | null;
12138
12241
  'commit'?: boolean;
12139
12242
  'logging'?: boolean;
12140
12243
  'passTaxCode'?: string | null;
@@ -12846,15 +12949,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
12846
12949
  * @throws {RequiredError}
12847
12950
  */
12848
12951
  getAccountsByInternalRefId: (internalRefId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12849
- /**
12850
- * 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.
12851
- * @summary Impersonate account
12852
- * @param {string} accountId The account identifier
12853
- * @param {string} username The username identifier
12854
- * @param {*} [options] Override http request option.
12855
- * @throws {RequiredError}
12856
- */
12857
- impersonateAccount: (accountId: string, username: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12858
12952
  /**
12859
12953
  * Enqueues a background job to resync the given account\'s data, requiring update permission on accounts.
12860
12954
  * @summary Sync a single account
@@ -13068,15 +13162,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
13068
13162
  * @throws {RequiredError}
13069
13163
  */
13070
13164
  getAccountsByInternalRefId(internalRefId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountsByInternalRefId200Response>>;
13071
- /**
13072
- * 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.
13073
- * @summary Impersonate account
13074
- * @param {string} accountId The account identifier
13075
- * @param {string} username The username identifier
13076
- * @param {*} [options] Override http request option.
13077
- * @throws {RequiredError}
13078
- */
13079
- impersonateAccount(accountId: string, username: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImpersonateAccount200Response>>;
13080
13165
  /**
13081
13166
  * Enqueues a background job to resync the given account\'s data, requiring update permission on accounts.
13082
13167
  * @summary Sync a single account
@@ -13242,14 +13327,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
13242
13327
  * @throws {RequiredError}
13243
13328
  */
13244
13329
  getAccountsByInternalRefId(requestParameters: AccountsApiGetAccountsByInternalRefIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountsByInternalRefId200Response>;
13245
- /**
13246
- * 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.
13247
- * @summary Impersonate account
13248
- * @param {AccountsApiImpersonateAccountRequest} requestParameters Request parameters.
13249
- * @param {*} [options] Override http request option.
13250
- * @throws {RequiredError}
13251
- */
13252
- impersonateAccount(requestParameters: AccountsApiImpersonateAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImpersonateAccount200Response>;
13253
13330
  /**
13254
13331
  * Enqueues a background job to resync the given account\'s data, requiring update permission on accounts.
13255
13332
  * @summary Sync a single account
@@ -13616,19 +13693,6 @@ export interface AccountsApiGetAccountsByInternalRefIdRequest {
13616
13693
  */
13617
13694
  readonly internalRefId: string;
13618
13695
  }
13619
- /**
13620
- * Request parameters for impersonateAccount operation in AccountsApi.
13621
- */
13622
- export interface AccountsApiImpersonateAccountRequest {
13623
- /**
13624
- * The account identifier
13625
- */
13626
- readonly accountId: string;
13627
- /**
13628
- * The username identifier
13629
- */
13630
- readonly username: string;
13631
- }
13632
13696
  /**
13633
13697
  * Request parameters for syncAccount operation in AccountsApi.
13634
13698
  */
@@ -13788,14 +13852,6 @@ export declare class AccountsApi extends BaseAPI {
13788
13852
  * @throws {RequiredError}
13789
13853
  */
13790
13854
  getAccountsByInternalRefId(requestParameters: AccountsApiGetAccountsByInternalRefIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountsByInternalRefId200Response, any, {}>>;
13791
- /**
13792
- * 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.
13793
- * @summary Impersonate account
13794
- * @param {AccountsApiImpersonateAccountRequest} requestParameters Request parameters.
13795
- * @param {*} [options] Override http request option.
13796
- * @throws {RequiredError}
13797
- */
13798
- impersonateAccount(requestParameters: AccountsApiImpersonateAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImpersonateAccount200Response, any, {}>>;
13799
13855
  /**
13800
13856
  * Enqueues a background job to resync the given account\'s data, requiring update permission on accounts.
13801
13857
  * @summary Sync a single account
@@ -41042,6 +41098,410 @@ export declare class EventsPasstypesApi extends BaseAPI {
41042
41098
  */
41043
41099
  updateEventPassType(requestParameters: EventsPasstypesApiUpdateEventPassTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventPassType200Response, any, {}>>;
41044
41100
  }
41101
+ /**
41102
+ * EventsPasstypesExchangetargetsApi - axios parameter creator
41103
+ */
41104
+ export declare const EventsPasstypesExchangetargetsApiAxiosParamCreator: (configuration?: Configuration) => {
41105
+ /**
41106
+ * Add Event Pass Type Exchange Target endpoint
41107
+ * @summary Add Event Pass Type Exchange Target
41108
+ * @param {string} eventId The event identifier
41109
+ * @param {string} passTypeId The passType identifier
41110
+ * @param {PassTypeExchangeTargetCreateInputs} passTypeExchangeTargetCreateInputs
41111
+ * @param {*} [options] Override http request option.
41112
+ * @throws {RequiredError}
41113
+ */
41114
+ addEventPassTypeExchangeTarget: (eventId: string, passTypeId: string, passTypeExchangeTargetCreateInputs: PassTypeExchangeTargetCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41115
+ /**
41116
+ * Get Event Pass Type Exchange Target Exchanges endpoint
41117
+ * @summary Get Event Pass Type Exchange Target Exchanges
41118
+ * @param {string} eventId The event identifier
41119
+ * @param {string} passTypeId The passType identifier
41120
+ * @param {string} exchangeTargetId The exchangeTarget identifier
41121
+ * @param {number} [page] Page number
41122
+ * @param {number} [pageSize] Number of items per page
41123
+ * @param {string} [orderBy] Field to order by
41124
+ * @param {string} [search] Search query
41125
+ * @param {*} [options] Override http request option.
41126
+ * @throws {RequiredError}
41127
+ */
41128
+ getEventPassTypeExchangeTargetExchanges: (eventId: string, passTypeId: string, exchangeTargetId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41129
+ /**
41130
+ * Get Event Pass Type Exchange Target Payments endpoint
41131
+ * @summary Get Event Pass Type Exchange Target Payments
41132
+ * @param {string} eventId The event identifier
41133
+ * @param {string} passTypeId The passType identifier
41134
+ * @param {string} exchangeTargetId The exchangeTarget identifier
41135
+ * @param {number} [page] Page number
41136
+ * @param {number} [pageSize] Number of items per page
41137
+ * @param {string} [orderBy] Field to order by
41138
+ * @param {string} [search] Search query
41139
+ * @param {*} [options] Override http request option.
41140
+ * @throws {RequiredError}
41141
+ */
41142
+ getEventPassTypeExchangeTargetPayments: (eventId: string, passTypeId: string, exchangeTargetId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41143
+ /**
41144
+ * Get Event Pass Type Exchange Targets endpoint
41145
+ * @summary Get Event Pass Type Exchange Targets
41146
+ * @param {string} eventId The event identifier
41147
+ * @param {string} passTypeId The passType identifier
41148
+ * @param {number} [page] Page number
41149
+ * @param {number} [pageSize] Number of items per page
41150
+ * @param {string} [orderBy] Field to order by
41151
+ * @param {string} [search] Search query
41152
+ * @param {*} [options] Override http request option.
41153
+ * @throws {RequiredError}
41154
+ */
41155
+ getEventPassTypeExchangeTargets: (eventId: string, passTypeId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41156
+ /**
41157
+ * Remove Event Pass Type Exchange Target endpoint
41158
+ * @summary Remove Event Pass Type Exchange Target
41159
+ * @param {string} eventId The event identifier
41160
+ * @param {string} passTypeId The passType identifier
41161
+ * @param {string} exchangeTargetId The exchangeTarget identifier
41162
+ * @param {*} [options] Override http request option.
41163
+ * @throws {RequiredError}
41164
+ */
41165
+ removeEventPassTypeExchangeTarget: (eventId: string, passTypeId: string, exchangeTargetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41166
+ /**
41167
+ * Update Event Pass Type Exchange Target endpoint
41168
+ * @summary Update Event Pass Type Exchange Target
41169
+ * @param {string} eventId The event identifier
41170
+ * @param {string} passTypeId The passType identifier
41171
+ * @param {string} exchangeTargetId The exchangeTarget identifier
41172
+ * @param {PassTypeExchangeTargetUpdateInputs} passTypeExchangeTargetUpdateInputs
41173
+ * @param {*} [options] Override http request option.
41174
+ * @throws {RequiredError}
41175
+ */
41176
+ updateEventPassTypeExchangeTarget: (eventId: string, passTypeId: string, exchangeTargetId: string, passTypeExchangeTargetUpdateInputs: PassTypeExchangeTargetUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41177
+ };
41178
+ /**
41179
+ * EventsPasstypesExchangetargetsApi - functional programming interface
41180
+ */
41181
+ export declare const EventsPasstypesExchangetargetsApiFp: (configuration?: Configuration) => {
41182
+ /**
41183
+ * Add Event Pass Type Exchange Target endpoint
41184
+ * @summary Add Event Pass Type Exchange Target
41185
+ * @param {string} eventId The event identifier
41186
+ * @param {string} passTypeId The passType identifier
41187
+ * @param {PassTypeExchangeTargetCreateInputs} passTypeExchangeTargetCreateInputs
41188
+ * @param {*} [options] Override http request option.
41189
+ * @throws {RequiredError}
41190
+ */
41191
+ addEventPassTypeExchangeTarget(eventId: string, passTypeId: string, passTypeExchangeTargetCreateInputs: PassTypeExchangeTargetCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddEventPassTypeExchangeTarget200Response>>;
41192
+ /**
41193
+ * Get Event Pass Type Exchange Target Exchanges endpoint
41194
+ * @summary Get Event Pass Type Exchange Target Exchanges
41195
+ * @param {string} eventId The event identifier
41196
+ * @param {string} passTypeId The passType identifier
41197
+ * @param {string} exchangeTargetId The exchangeTarget identifier
41198
+ * @param {number} [page] Page number
41199
+ * @param {number} [pageSize] Number of items per page
41200
+ * @param {string} [orderBy] Field to order by
41201
+ * @param {string} [search] Search query
41202
+ * @param {*} [options] Override http request option.
41203
+ * @throws {RequiredError}
41204
+ */
41205
+ getEventPassTypeExchangeTargetExchanges(eventId: string, passTypeId: string, exchangeTargetId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventPassTypeExchangeTargetExchanges200Response>>;
41206
+ /**
41207
+ * Get Event Pass Type Exchange Target Payments endpoint
41208
+ * @summary Get Event Pass Type Exchange Target Payments
41209
+ * @param {string} eventId The event identifier
41210
+ * @param {string} passTypeId The passType identifier
41211
+ * @param {string} exchangeTargetId The exchangeTarget identifier
41212
+ * @param {number} [page] Page number
41213
+ * @param {number} [pageSize] Number of items per page
41214
+ * @param {string} [orderBy] Field to order by
41215
+ * @param {string} [search] Search query
41216
+ * @param {*} [options] Override http request option.
41217
+ * @throws {RequiredError}
41218
+ */
41219
+ getEventPassTypeExchangeTargetPayments(eventId: string, passTypeId: string, exchangeTargetId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountPayments200Response>>;
41220
+ /**
41221
+ * Get Event Pass Type Exchange Targets endpoint
41222
+ * @summary Get Event Pass Type Exchange Targets
41223
+ * @param {string} eventId The event identifier
41224
+ * @param {string} passTypeId The passType identifier
41225
+ * @param {number} [page] Page number
41226
+ * @param {number} [pageSize] Number of items per page
41227
+ * @param {string} [orderBy] Field to order by
41228
+ * @param {string} [search] Search query
41229
+ * @param {*} [options] Override http request option.
41230
+ * @throws {RequiredError}
41231
+ */
41232
+ getEventPassTypeExchangeTargets(eventId: string, passTypeId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventPassTypeExchangeTargets200Response>>;
41233
+ /**
41234
+ * Remove Event Pass Type Exchange Target endpoint
41235
+ * @summary Remove Event Pass Type Exchange Target
41236
+ * @param {string} eventId The event identifier
41237
+ * @param {string} passTypeId The passType identifier
41238
+ * @param {string} exchangeTargetId The exchangeTarget identifier
41239
+ * @param {*} [options] Override http request option.
41240
+ * @throws {RequiredError}
41241
+ */
41242
+ removeEventPassTypeExchangeTarget(eventId: string, passTypeId: string, exchangeTargetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddEventPassTypeExchangeTarget200Response>>;
41243
+ /**
41244
+ * Update Event Pass Type Exchange Target endpoint
41245
+ * @summary Update Event Pass Type Exchange Target
41246
+ * @param {string} eventId The event identifier
41247
+ * @param {string} passTypeId The passType identifier
41248
+ * @param {string} exchangeTargetId The exchangeTarget identifier
41249
+ * @param {PassTypeExchangeTargetUpdateInputs} passTypeExchangeTargetUpdateInputs
41250
+ * @param {*} [options] Override http request option.
41251
+ * @throws {RequiredError}
41252
+ */
41253
+ updateEventPassTypeExchangeTarget(eventId: string, passTypeId: string, exchangeTargetId: string, passTypeExchangeTargetUpdateInputs: PassTypeExchangeTargetUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddEventPassTypeExchangeTarget200Response>>;
41254
+ };
41255
+ /**
41256
+ * EventsPasstypesExchangetargetsApi - factory interface
41257
+ */
41258
+ export declare const EventsPasstypesExchangetargetsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
41259
+ /**
41260
+ * Add Event Pass Type Exchange Target endpoint
41261
+ * @summary Add Event Pass Type Exchange Target
41262
+ * @param {EventsPasstypesExchangetargetsApiAddEventPassTypeExchangeTargetRequest} requestParameters Request parameters.
41263
+ * @param {*} [options] Override http request option.
41264
+ * @throws {RequiredError}
41265
+ */
41266
+ addEventPassTypeExchangeTarget(requestParameters: EventsPasstypesExchangetargetsApiAddEventPassTypeExchangeTargetRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddEventPassTypeExchangeTarget200Response>;
41267
+ /**
41268
+ * Get Event Pass Type Exchange Target Exchanges endpoint
41269
+ * @summary Get Event Pass Type Exchange Target Exchanges
41270
+ * @param {EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetExchangesRequest} requestParameters Request parameters.
41271
+ * @param {*} [options] Override http request option.
41272
+ * @throws {RequiredError}
41273
+ */
41274
+ getEventPassTypeExchangeTargetExchanges(requestParameters: EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetExchangesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventPassTypeExchangeTargetExchanges200Response>;
41275
+ /**
41276
+ * Get Event Pass Type Exchange Target Payments endpoint
41277
+ * @summary Get Event Pass Type Exchange Target Payments
41278
+ * @param {EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetPaymentsRequest} requestParameters Request parameters.
41279
+ * @param {*} [options] Override http request option.
41280
+ * @throws {RequiredError}
41281
+ */
41282
+ getEventPassTypeExchangeTargetPayments(requestParameters: EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetPaymentsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountPayments200Response>;
41283
+ /**
41284
+ * Get Event Pass Type Exchange Targets endpoint
41285
+ * @summary Get Event Pass Type Exchange Targets
41286
+ * @param {EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetsRequest} requestParameters Request parameters.
41287
+ * @param {*} [options] Override http request option.
41288
+ * @throws {RequiredError}
41289
+ */
41290
+ getEventPassTypeExchangeTargets(requestParameters: EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventPassTypeExchangeTargets200Response>;
41291
+ /**
41292
+ * Remove Event Pass Type Exchange Target endpoint
41293
+ * @summary Remove Event Pass Type Exchange Target
41294
+ * @param {EventsPasstypesExchangetargetsApiRemoveEventPassTypeExchangeTargetRequest} requestParameters Request parameters.
41295
+ * @param {*} [options] Override http request option.
41296
+ * @throws {RequiredError}
41297
+ */
41298
+ removeEventPassTypeExchangeTarget(requestParameters: EventsPasstypesExchangetargetsApiRemoveEventPassTypeExchangeTargetRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddEventPassTypeExchangeTarget200Response>;
41299
+ /**
41300
+ * Update Event Pass Type Exchange Target endpoint
41301
+ * @summary Update Event Pass Type Exchange Target
41302
+ * @param {EventsPasstypesExchangetargetsApiUpdateEventPassTypeExchangeTargetRequest} requestParameters Request parameters.
41303
+ * @param {*} [options] Override http request option.
41304
+ * @throws {RequiredError}
41305
+ */
41306
+ updateEventPassTypeExchangeTarget(requestParameters: EventsPasstypesExchangetargetsApiUpdateEventPassTypeExchangeTargetRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddEventPassTypeExchangeTarget200Response>;
41307
+ };
41308
+ /**
41309
+ * Request parameters for addEventPassTypeExchangeTarget operation in EventsPasstypesExchangetargetsApi.
41310
+ */
41311
+ export interface EventsPasstypesExchangetargetsApiAddEventPassTypeExchangeTargetRequest {
41312
+ /**
41313
+ * The event identifier
41314
+ */
41315
+ readonly eventId: string;
41316
+ /**
41317
+ * The passType identifier
41318
+ */
41319
+ readonly passTypeId: string;
41320
+ readonly passTypeExchangeTargetCreateInputs: PassTypeExchangeTargetCreateInputs;
41321
+ }
41322
+ /**
41323
+ * Request parameters for getEventPassTypeExchangeTargetExchanges operation in EventsPasstypesExchangetargetsApi.
41324
+ */
41325
+ export interface EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetExchangesRequest {
41326
+ /**
41327
+ * The event identifier
41328
+ */
41329
+ readonly eventId: string;
41330
+ /**
41331
+ * The passType identifier
41332
+ */
41333
+ readonly passTypeId: string;
41334
+ /**
41335
+ * The exchangeTarget identifier
41336
+ */
41337
+ readonly exchangeTargetId: string;
41338
+ /**
41339
+ * Page number
41340
+ */
41341
+ readonly page?: number;
41342
+ /**
41343
+ * Number of items per page
41344
+ */
41345
+ readonly pageSize?: number;
41346
+ /**
41347
+ * Field to order by
41348
+ */
41349
+ readonly orderBy?: string;
41350
+ /**
41351
+ * Search query
41352
+ */
41353
+ readonly search?: string;
41354
+ }
41355
+ /**
41356
+ * Request parameters for getEventPassTypeExchangeTargetPayments operation in EventsPasstypesExchangetargetsApi.
41357
+ */
41358
+ export interface EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetPaymentsRequest {
41359
+ /**
41360
+ * The event identifier
41361
+ */
41362
+ readonly eventId: string;
41363
+ /**
41364
+ * The passType identifier
41365
+ */
41366
+ readonly passTypeId: string;
41367
+ /**
41368
+ * The exchangeTarget identifier
41369
+ */
41370
+ readonly exchangeTargetId: string;
41371
+ /**
41372
+ * Page number
41373
+ */
41374
+ readonly page?: number;
41375
+ /**
41376
+ * Number of items per page
41377
+ */
41378
+ readonly pageSize?: number;
41379
+ /**
41380
+ * Field to order by
41381
+ */
41382
+ readonly orderBy?: string;
41383
+ /**
41384
+ * Search query
41385
+ */
41386
+ readonly search?: string;
41387
+ }
41388
+ /**
41389
+ * Request parameters for getEventPassTypeExchangeTargets operation in EventsPasstypesExchangetargetsApi.
41390
+ */
41391
+ export interface EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetsRequest {
41392
+ /**
41393
+ * The event identifier
41394
+ */
41395
+ readonly eventId: string;
41396
+ /**
41397
+ * The passType identifier
41398
+ */
41399
+ readonly passTypeId: string;
41400
+ /**
41401
+ * Page number
41402
+ */
41403
+ readonly page?: number;
41404
+ /**
41405
+ * Number of items per page
41406
+ */
41407
+ readonly pageSize?: number;
41408
+ /**
41409
+ * Field to order by
41410
+ */
41411
+ readonly orderBy?: string;
41412
+ /**
41413
+ * Search query
41414
+ */
41415
+ readonly search?: string;
41416
+ }
41417
+ /**
41418
+ * Request parameters for removeEventPassTypeExchangeTarget operation in EventsPasstypesExchangetargetsApi.
41419
+ */
41420
+ export interface EventsPasstypesExchangetargetsApiRemoveEventPassTypeExchangeTargetRequest {
41421
+ /**
41422
+ * The event identifier
41423
+ */
41424
+ readonly eventId: string;
41425
+ /**
41426
+ * The passType identifier
41427
+ */
41428
+ readonly passTypeId: string;
41429
+ /**
41430
+ * The exchangeTarget identifier
41431
+ */
41432
+ readonly exchangeTargetId: string;
41433
+ }
41434
+ /**
41435
+ * Request parameters for updateEventPassTypeExchangeTarget operation in EventsPasstypesExchangetargetsApi.
41436
+ */
41437
+ export interface EventsPasstypesExchangetargetsApiUpdateEventPassTypeExchangeTargetRequest {
41438
+ /**
41439
+ * The event identifier
41440
+ */
41441
+ readonly eventId: string;
41442
+ /**
41443
+ * The passType identifier
41444
+ */
41445
+ readonly passTypeId: string;
41446
+ /**
41447
+ * The exchangeTarget identifier
41448
+ */
41449
+ readonly exchangeTargetId: string;
41450
+ readonly passTypeExchangeTargetUpdateInputs: PassTypeExchangeTargetUpdateInputs;
41451
+ }
41452
+ /**
41453
+ * EventsPasstypesExchangetargetsApi - object-oriented interface
41454
+ */
41455
+ export declare class EventsPasstypesExchangetargetsApi extends BaseAPI {
41456
+ /**
41457
+ * Add Event Pass Type Exchange Target endpoint
41458
+ * @summary Add Event Pass Type Exchange Target
41459
+ * @param {EventsPasstypesExchangetargetsApiAddEventPassTypeExchangeTargetRequest} requestParameters Request parameters.
41460
+ * @param {*} [options] Override http request option.
41461
+ * @throws {RequiredError}
41462
+ */
41463
+ addEventPassTypeExchangeTarget(requestParameters: EventsPasstypesExchangetargetsApiAddEventPassTypeExchangeTargetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddEventPassTypeExchangeTarget200Response, any, {}>>;
41464
+ /**
41465
+ * Get Event Pass Type Exchange Target Exchanges endpoint
41466
+ * @summary Get Event Pass Type Exchange Target Exchanges
41467
+ * @param {EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetExchangesRequest} requestParameters Request parameters.
41468
+ * @param {*} [options] Override http request option.
41469
+ * @throws {RequiredError}
41470
+ */
41471
+ getEventPassTypeExchangeTargetExchanges(requestParameters: EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetExchangesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventPassTypeExchangeTargetExchanges200Response, any, {}>>;
41472
+ /**
41473
+ * Get Event Pass Type Exchange Target Payments endpoint
41474
+ * @summary Get Event Pass Type Exchange Target Payments
41475
+ * @param {EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetPaymentsRequest} requestParameters Request parameters.
41476
+ * @param {*} [options] Override http request option.
41477
+ * @throws {RequiredError}
41478
+ */
41479
+ getEventPassTypeExchangeTargetPayments(requestParameters: EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetPaymentsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountPayments200Response, any, {}>>;
41480
+ /**
41481
+ * Get Event Pass Type Exchange Targets endpoint
41482
+ * @summary Get Event Pass Type Exchange Targets
41483
+ * @param {EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetsRequest} requestParameters Request parameters.
41484
+ * @param {*} [options] Override http request option.
41485
+ * @throws {RequiredError}
41486
+ */
41487
+ getEventPassTypeExchangeTargets(requestParameters: EventsPasstypesExchangetargetsApiGetEventPassTypeExchangeTargetsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventPassTypeExchangeTargets200Response, any, {}>>;
41488
+ /**
41489
+ * Remove Event Pass Type Exchange Target endpoint
41490
+ * @summary Remove Event Pass Type Exchange Target
41491
+ * @param {EventsPasstypesExchangetargetsApiRemoveEventPassTypeExchangeTargetRequest} requestParameters Request parameters.
41492
+ * @param {*} [options] Override http request option.
41493
+ * @throws {RequiredError}
41494
+ */
41495
+ removeEventPassTypeExchangeTarget(requestParameters: EventsPasstypesExchangetargetsApiRemoveEventPassTypeExchangeTargetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddEventPassTypeExchangeTarget200Response, any, {}>>;
41496
+ /**
41497
+ * Update Event Pass Type Exchange Target endpoint
41498
+ * @summary Update Event Pass Type Exchange Target
41499
+ * @param {EventsPasstypesExchangetargetsApiUpdateEventPassTypeExchangeTargetRequest} requestParameters Request parameters.
41500
+ * @param {*} [options] Override http request option.
41501
+ * @throws {RequiredError}
41502
+ */
41503
+ updateEventPassTypeExchangeTarget(requestParameters: EventsPasstypesExchangetargetsApiUpdateEventPassTypeExchangeTargetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddEventPassTypeExchangeTarget200Response, any, {}>>;
41504
+ }
41045
41505
  /**
41046
41506
  * EventsPasstypesPriceschedulesApi - axios parameter creator
41047
41507
  */
@@ -62477,7 +62937,7 @@ export declare const MeetingsApiFp: (configuration?: Configuration) => {
62477
62937
  * @param {*} [options] Override http request option.
62478
62938
  * @throws {RequiredError}
62479
62939
  */
62480
- joinMeeting(meetingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImpersonateAccount200Response>>;
62940
+ joinMeeting(meetingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JoinMeeting200Response>>;
62481
62941
  /**
62482
62942
  * Updates the settings of an existing meeting, such as its title, recording, chat, livestream, or AI configuration, requiring the \"update\" permission on meetings.
62483
62943
  * @summary Update a meeting
@@ -62539,7 +62999,7 @@ export declare const MeetingsApiFactory: (configuration?: Configuration, basePat
62539
62999
  * @param {*} [options] Override http request option.
62540
63000
  * @throws {RequiredError}
62541
63001
  */
62542
- joinMeeting(requestParameters: MeetingsApiJoinMeetingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImpersonateAccount200Response>;
63002
+ joinMeeting(requestParameters: MeetingsApiJoinMeetingRequest, options?: RawAxiosRequestConfig): AxiosPromise<JoinMeeting200Response>;
62543
63003
  /**
62544
63004
  * Updates the settings of an existing meeting, such as its title, recording, chat, livestream, or AI configuration, requiring the \"update\" permission on meetings.
62545
63005
  * @summary Update a meeting
@@ -62673,7 +63133,7 @@ export declare class MeetingsApi extends BaseAPI {
62673
63133
  * @param {*} [options] Override http request option.
62674
63134
  * @throws {RequiredError}
62675
63135
  */
62676
- joinMeeting(requestParameters: MeetingsApiJoinMeetingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImpersonateAccount200Response, any, {}>>;
63136
+ joinMeeting(requestParameters: MeetingsApiJoinMeetingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JoinMeeting200Response, any, {}>>;
62677
63137
  /**
62678
63138
  * Updates the settings of an existing meeting, such as its title, recording, chat, livestream, or AI configuration, requiring the \"update\" permission on meetings.
62679
63139
  * @summary Update a meeting