@connectedxm/admin-sdk 7.8.1 → 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/dist/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 {
@@ -12846,15 +12943,6 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
12846
12943
  * @throws {RequiredError}
12847
12944
  */
12848
12945
  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
12946
  /**
12859
12947
  * Enqueues a background job to resync the given account\'s data, requiring update permission on accounts.
12860
12948
  * @summary Sync a single account
@@ -13068,15 +13156,6 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
13068
13156
  * @throws {RequiredError}
13069
13157
  */
13070
13158
  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
13159
  /**
13081
13160
  * Enqueues a background job to resync the given account\'s data, requiring update permission on accounts.
13082
13161
  * @summary Sync a single account
@@ -13242,14 +13321,6 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
13242
13321
  * @throws {RequiredError}
13243
13322
  */
13244
13323
  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
13324
  /**
13254
13325
  * Enqueues a background job to resync the given account\'s data, requiring update permission on accounts.
13255
13326
  * @summary Sync a single account
@@ -13616,19 +13687,6 @@ export interface AccountsApiGetAccountsByInternalRefIdRequest {
13616
13687
  */
13617
13688
  readonly internalRefId: string;
13618
13689
  }
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
13690
  /**
13633
13691
  * Request parameters for syncAccount operation in AccountsApi.
13634
13692
  */
@@ -13788,14 +13846,6 @@ export declare class AccountsApi extends BaseAPI {
13788
13846
  * @throws {RequiredError}
13789
13847
  */
13790
13848
  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
13849
  /**
13800
13850
  * Enqueues a background job to resync the given account\'s data, requiring update permission on accounts.
13801
13851
  * @summary Sync a single account
@@ -41042,6 +41092,410 @@ export declare class EventsPasstypesApi extends BaseAPI {
41042
41092
  */
41043
41093
  updateEventPassType(requestParameters: EventsPasstypesApiUpdateEventPassTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventPassType200Response, any, {}>>;
41044
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
+ }
41045
41499
  /**
41046
41500
  * EventsPasstypesPriceschedulesApi - axios parameter creator
41047
41501
  */
@@ -62477,7 +62931,7 @@ export declare const MeetingsApiFp: (configuration?: Configuration) => {
62477
62931
  * @param {*} [options] Override http request option.
62478
62932
  * @throws {RequiredError}
62479
62933
  */
62480
- joinMeeting(meetingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImpersonateAccount200Response>>;
62934
+ joinMeeting(meetingId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JoinMeeting200Response>>;
62481
62935
  /**
62482
62936
  * Updates the settings of an existing meeting, such as its title, recording, chat, livestream, or AI configuration, requiring the \"update\" permission on meetings.
62483
62937
  * @summary Update a meeting
@@ -62539,7 +62993,7 @@ export declare const MeetingsApiFactory: (configuration?: Configuration, basePat
62539
62993
  * @param {*} [options] Override http request option.
62540
62994
  * @throws {RequiredError}
62541
62995
  */
62542
- joinMeeting(requestParameters: MeetingsApiJoinMeetingRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImpersonateAccount200Response>;
62996
+ joinMeeting(requestParameters: MeetingsApiJoinMeetingRequest, options?: RawAxiosRequestConfig): AxiosPromise<JoinMeeting200Response>;
62543
62997
  /**
62544
62998
  * Updates the settings of an existing meeting, such as its title, recording, chat, livestream, or AI configuration, requiring the \"update\" permission on meetings.
62545
62999
  * @summary Update a meeting
@@ -62673,7 +63127,7 @@ export declare class MeetingsApi extends BaseAPI {
62673
63127
  * @param {*} [options] Override http request option.
62674
63128
  * @throws {RequiredError}
62675
63129
  */
62676
- joinMeeting(requestParameters: MeetingsApiJoinMeetingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImpersonateAccount200Response, any, {}>>;
63130
+ joinMeeting(requestParameters: MeetingsApiJoinMeetingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JoinMeeting200Response, any, {}>>;
62677
63131
  /**
62678
63132
  * Updates the settings of an existing meeting, such as its title, recording, chat, livestream, or AI configuration, requiring the \"update\" permission on meetings.
62679
63133
  * @summary Update a meeting