@connectedxm/admin-sdk 6.26.0 → 6.27.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/api.d.ts CHANGED
@@ -5702,6 +5702,7 @@ export interface EventSessionUpdateInputs {
5702
5702
  }
5703
5703
  export declare enum EventSessionVisibility {
5704
5704
  Public = "PUBLIC",
5705
+ Preview = "PREVIEW",
5705
5706
  Restricted = "RESTRICTED",
5706
5707
  Registered = "REGISTERED",
5707
5708
  Hidden = "HIDDEN"
@@ -45683,6 +45684,26 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
45683
45684
  * @throws {RequiredError}
45684
45685
  */
45685
45686
  addEventSessionTrack: (eventId: string, sessionId: string, trackId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45687
+ /**
45688
+ * Add Event Session Visible Pass Type endpoint
45689
+ * @summary Add Event Session Visible Pass Type
45690
+ * @param {string} eventId The event identifier
45691
+ * @param {string} sessionId The session identifier
45692
+ * @param {string} passTypeId The passType identifier
45693
+ * @param {*} [options] Override http request option.
45694
+ * @throws {RequiredError}
45695
+ */
45696
+ addEventSessionVisiblePassType: (eventId: string, sessionId: string, passTypeId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45697
+ /**
45698
+ * Add Event Session Visible Tier endpoint
45699
+ * @summary Add Event Session Visible Tier
45700
+ * @param {string} eventId The event identifier
45701
+ * @param {string} sessionId The session identifier
45702
+ * @param {string} tierId The tier identifier
45703
+ * @param {*} [options] Override http request option.
45704
+ * @throws {RequiredError}
45705
+ */
45706
+ addEventSessionVisibleTier: (eventId: string, sessionId: string, tierId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45686
45707
  /**
45687
45708
  * Clone Event Session endpoint
45688
45709
  * @summary Clone Event Session
@@ -45838,6 +45859,32 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
45838
45859
  * @throws {RequiredError}
45839
45860
  */
45840
45861
  getEventSessionTracks: (eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45862
+ /**
45863
+ * Get Event Session Visible Pass Types endpoint
45864
+ * @summary Get Event Session Visible Pass Types
45865
+ * @param {string} eventId The event identifier
45866
+ * @param {string} sessionId The session identifier
45867
+ * @param {number} [page] Page number
45868
+ * @param {number} [pageSize] Number of items per page
45869
+ * @param {string} [orderBy] Field to order by
45870
+ * @param {string} [search] Search query
45871
+ * @param {*} [options] Override http request option.
45872
+ * @throws {RequiredError}
45873
+ */
45874
+ getEventSessionVisiblePassTypes: (eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45875
+ /**
45876
+ * Get Event Session Visible Tiers endpoint
45877
+ * @summary Get Event Session Visible Tiers
45878
+ * @param {string} eventId The event identifier
45879
+ * @param {string} sessionId The session identifier
45880
+ * @param {number} [page] Page number
45881
+ * @param {number} [pageSize] Number of items per page
45882
+ * @param {string} [orderBy] Field to order by
45883
+ * @param {string} [search] Search query
45884
+ * @param {*} [options] Override http request option.
45885
+ * @throws {RequiredError}
45886
+ */
45887
+ getEventSessionVisibleTiers: (eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45841
45888
  /**
45842
45889
  * Get Event Sessions endpoint
45843
45890
  * @summary Get Event Sessions
@@ -45920,6 +45967,26 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
45920
45967
  * @throws {RequiredError}
45921
45968
  */
45922
45969
  removeEventSessionTrack: (eventId: string, sessionId: string, trackId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45970
+ /**
45971
+ * Remove Event Session Visible Pass Type endpoint
45972
+ * @summary Remove Event Session Visible Pass Type
45973
+ * @param {string} eventId The event identifier
45974
+ * @param {string} sessionId The session identifier
45975
+ * @param {string} passTypeId The passType identifier
45976
+ * @param {*} [options] Override http request option.
45977
+ * @throws {RequiredError}
45978
+ */
45979
+ removeEventSessionVisiblePassType: (eventId: string, sessionId: string, passTypeId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45980
+ /**
45981
+ * Remove Event Session Visible Tier endpoint
45982
+ * @summary Remove Event Session Visible Tier
45983
+ * @param {string} eventId The event identifier
45984
+ * @param {string} sessionId The session identifier
45985
+ * @param {string} tierId The tier identifier
45986
+ * @param {*} [options] Override http request option.
45987
+ * @throws {RequiredError}
45988
+ */
45989
+ removeEventSessionVisibleTier: (eventId: string, sessionId: string, tierId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45923
45990
  /**
45924
45991
  * Update Event Session endpoint
45925
45992
  * @summary Update Event Session
@@ -46005,6 +46072,26 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
46005
46072
  * @throws {RequiredError}
46006
46073
  */
46007
46074
  addEventSessionTrack(eventId: string, sessionId: string, trackId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
46075
+ /**
46076
+ * Add Event Session Visible Pass Type endpoint
46077
+ * @summary Add Event Session Visible Pass Type
46078
+ * @param {string} eventId The event identifier
46079
+ * @param {string} sessionId The session identifier
46080
+ * @param {string} passTypeId The passType identifier
46081
+ * @param {*} [options] Override http request option.
46082
+ * @throws {RequiredError}
46083
+ */
46084
+ addEventSessionVisiblePassType(eventId: string, sessionId: string, passTypeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
46085
+ /**
46086
+ * Add Event Session Visible Tier endpoint
46087
+ * @summary Add Event Session Visible Tier
46088
+ * @param {string} eventId The event identifier
46089
+ * @param {string} sessionId The session identifier
46090
+ * @param {string} tierId The tier identifier
46091
+ * @param {*} [options] Override http request option.
46092
+ * @throws {RequiredError}
46093
+ */
46094
+ addEventSessionVisibleTier(eventId: string, sessionId: string, tierId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
46008
46095
  /**
46009
46096
  * Clone Event Session endpoint
46010
46097
  * @summary Clone Event Session
@@ -46160,6 +46247,32 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
46160
46247
  * @throws {RequiredError}
46161
46248
  */
46162
46249
  getEventSessionTracks(eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventSessionTracks200Response>>;
46250
+ /**
46251
+ * Get Event Session Visible Pass Types endpoint
46252
+ * @summary Get Event Session Visible Pass Types
46253
+ * @param {string} eventId The event identifier
46254
+ * @param {string} sessionId The session identifier
46255
+ * @param {number} [page] Page number
46256
+ * @param {number} [pageSize] Number of items per page
46257
+ * @param {string} [orderBy] Field to order by
46258
+ * @param {string} [search] Search query
46259
+ * @param {*} [options] Override http request option.
46260
+ * @throws {RequiredError}
46261
+ */
46262
+ getEventSessionVisiblePassTypes(eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventAddOnPassTypes200Response>>;
46263
+ /**
46264
+ * Get Event Session Visible Tiers endpoint
46265
+ * @summary Get Event Session Visible Tiers
46266
+ * @param {string} eventId The event identifier
46267
+ * @param {string} sessionId The session identifier
46268
+ * @param {number} [page] Page number
46269
+ * @param {number} [pageSize] Number of items per page
46270
+ * @param {string} [orderBy] Field to order by
46271
+ * @param {string} [search] Search query
46272
+ * @param {*} [options] Override http request option.
46273
+ * @throws {RequiredError}
46274
+ */
46275
+ getEventSessionVisibleTiers(eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountTiers200Response>>;
46163
46276
  /**
46164
46277
  * Get Event Sessions endpoint
46165
46278
  * @summary Get Event Sessions
@@ -46242,6 +46355,26 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
46242
46355
  * @throws {RequiredError}
46243
46356
  */
46244
46357
  removeEventSessionTrack(eventId: string, sessionId: string, trackId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
46358
+ /**
46359
+ * Remove Event Session Visible Pass Type endpoint
46360
+ * @summary Remove Event Session Visible Pass Type
46361
+ * @param {string} eventId The event identifier
46362
+ * @param {string} sessionId The session identifier
46363
+ * @param {string} passTypeId The passType identifier
46364
+ * @param {*} [options] Override http request option.
46365
+ * @throws {RequiredError}
46366
+ */
46367
+ removeEventSessionVisiblePassType(eventId: string, sessionId: string, passTypeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
46368
+ /**
46369
+ * Remove Event Session Visible Tier endpoint
46370
+ * @summary Remove Event Session Visible Tier
46371
+ * @param {string} eventId The event identifier
46372
+ * @param {string} sessionId The session identifier
46373
+ * @param {string} tierId The tier identifier
46374
+ * @param {*} [options] Override http request option.
46375
+ * @throws {RequiredError}
46376
+ */
46377
+ removeEventSessionVisibleTier(eventId: string, sessionId: string, tierId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
46245
46378
  /**
46246
46379
  * Update Event Session endpoint
46247
46380
  * @summary Update Event Session
@@ -46313,6 +46446,22 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
46313
46446
  * @throws {RequiredError}
46314
46447
  */
46315
46448
  addEventSessionTrack(requestParameters: EventsSessionsApiAddEventSessionTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
46449
+ /**
46450
+ * Add Event Session Visible Pass Type endpoint
46451
+ * @summary Add Event Session Visible Pass Type
46452
+ * @param {EventsSessionsApiAddEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
46453
+ * @param {*} [options] Override http request option.
46454
+ * @throws {RequiredError}
46455
+ */
46456
+ addEventSessionVisiblePassType(requestParameters: EventsSessionsApiAddEventSessionVisiblePassTypeRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
46457
+ /**
46458
+ * Add Event Session Visible Tier endpoint
46459
+ * @summary Add Event Session Visible Tier
46460
+ * @param {EventsSessionsApiAddEventSessionVisibleTierRequest} requestParameters Request parameters.
46461
+ * @param {*} [options] Override http request option.
46462
+ * @throws {RequiredError}
46463
+ */
46464
+ addEventSessionVisibleTier(requestParameters: EventsSessionsApiAddEventSessionVisibleTierRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
46316
46465
  /**
46317
46466
  * Clone Event Session endpoint
46318
46467
  * @summary Clone Event Session
@@ -46417,6 +46566,22 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
46417
46566
  * @throws {RequiredError}
46418
46567
  */
46419
46568
  getEventSessionTracks(requestParameters: EventsSessionsApiGetEventSessionTracksRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventSessionTracks200Response>;
46569
+ /**
46570
+ * Get Event Session Visible Pass Types endpoint
46571
+ * @summary Get Event Session Visible Pass Types
46572
+ * @param {EventsSessionsApiGetEventSessionVisiblePassTypesRequest} requestParameters Request parameters.
46573
+ * @param {*} [options] Override http request option.
46574
+ * @throws {RequiredError}
46575
+ */
46576
+ getEventSessionVisiblePassTypes(requestParameters: EventsSessionsApiGetEventSessionVisiblePassTypesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventAddOnPassTypes200Response>;
46577
+ /**
46578
+ * Get Event Session Visible Tiers endpoint
46579
+ * @summary Get Event Session Visible Tiers
46580
+ * @param {EventsSessionsApiGetEventSessionVisibleTiersRequest} requestParameters Request parameters.
46581
+ * @param {*} [options] Override http request option.
46582
+ * @throws {RequiredError}
46583
+ */
46584
+ getEventSessionVisibleTiers(requestParameters: EventsSessionsApiGetEventSessionVisibleTiersRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountTiers200Response>;
46420
46585
  /**
46421
46586
  * Get Event Sessions endpoint
46422
46587
  * @summary Get Event Sessions
@@ -46481,6 +46646,22 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
46481
46646
  * @throws {RequiredError}
46482
46647
  */
46483
46648
  removeEventSessionTrack(requestParameters: EventsSessionsApiRemoveEventSessionTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
46649
+ /**
46650
+ * Remove Event Session Visible Pass Type endpoint
46651
+ * @summary Remove Event Session Visible Pass Type
46652
+ * @param {EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
46653
+ * @param {*} [options] Override http request option.
46654
+ * @throws {RequiredError}
46655
+ */
46656
+ removeEventSessionVisiblePassType(requestParameters: EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
46657
+ /**
46658
+ * Remove Event Session Visible Tier endpoint
46659
+ * @summary Remove Event Session Visible Tier
46660
+ * @param {EventsSessionsApiRemoveEventSessionVisibleTierRequest} requestParameters Request parameters.
46661
+ * @param {*} [options] Override http request option.
46662
+ * @throws {RequiredError}
46663
+ */
46664
+ removeEventSessionVisibleTier(requestParameters: EventsSessionsApiRemoveEventSessionVisibleTierRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
46484
46665
  /**
46485
46666
  * Update Event Session endpoint
46486
46667
  * @summary Update Event Session
@@ -46609,6 +46790,40 @@ export interface EventsSessionsApiAddEventSessionTrackRequest {
46609
46790
  */
46610
46791
  readonly trackId: string;
46611
46792
  }
46793
+ /**
46794
+ * Request parameters for addEventSessionVisiblePassType operation in EventsSessionsApi.
46795
+ */
46796
+ export interface EventsSessionsApiAddEventSessionVisiblePassTypeRequest {
46797
+ /**
46798
+ * The event identifier
46799
+ */
46800
+ readonly eventId: string;
46801
+ /**
46802
+ * The session identifier
46803
+ */
46804
+ readonly sessionId: string;
46805
+ /**
46806
+ * The passType identifier
46807
+ */
46808
+ readonly passTypeId: string;
46809
+ }
46810
+ /**
46811
+ * Request parameters for addEventSessionVisibleTier operation in EventsSessionsApi.
46812
+ */
46813
+ export interface EventsSessionsApiAddEventSessionVisibleTierRequest {
46814
+ /**
46815
+ * The event identifier
46816
+ */
46817
+ readonly eventId: string;
46818
+ /**
46819
+ * The session identifier
46820
+ */
46821
+ readonly sessionId: string;
46822
+ /**
46823
+ * The tier identifier
46824
+ */
46825
+ readonly tierId: string;
46826
+ }
46612
46827
  /**
46613
46828
  * Request parameters for cloneEventSession operation in EventsSessionsApi.
46614
46829
  */
@@ -46924,6 +47139,64 @@ export interface EventsSessionsApiGetEventSessionTracksRequest {
46924
47139
  */
46925
47140
  readonly search?: string;
46926
47141
  }
47142
+ /**
47143
+ * Request parameters for getEventSessionVisiblePassTypes operation in EventsSessionsApi.
47144
+ */
47145
+ export interface EventsSessionsApiGetEventSessionVisiblePassTypesRequest {
47146
+ /**
47147
+ * The event identifier
47148
+ */
47149
+ readonly eventId: string;
47150
+ /**
47151
+ * The session identifier
47152
+ */
47153
+ readonly sessionId: string;
47154
+ /**
47155
+ * Page number
47156
+ */
47157
+ readonly page?: number;
47158
+ /**
47159
+ * Number of items per page
47160
+ */
47161
+ readonly pageSize?: number;
47162
+ /**
47163
+ * Field to order by
47164
+ */
47165
+ readonly orderBy?: string;
47166
+ /**
47167
+ * Search query
47168
+ */
47169
+ readonly search?: string;
47170
+ }
47171
+ /**
47172
+ * Request parameters for getEventSessionVisibleTiers operation in EventsSessionsApi.
47173
+ */
47174
+ export interface EventsSessionsApiGetEventSessionVisibleTiersRequest {
47175
+ /**
47176
+ * The event identifier
47177
+ */
47178
+ readonly eventId: string;
47179
+ /**
47180
+ * The session identifier
47181
+ */
47182
+ readonly sessionId: string;
47183
+ /**
47184
+ * Page number
47185
+ */
47186
+ readonly page?: number;
47187
+ /**
47188
+ * Number of items per page
47189
+ */
47190
+ readonly pageSize?: number;
47191
+ /**
47192
+ * Field to order by
47193
+ */
47194
+ readonly orderBy?: string;
47195
+ /**
47196
+ * Search query
47197
+ */
47198
+ readonly search?: string;
47199
+ }
46927
47200
  /**
46928
47201
  * Request parameters for getEventSessions operation in EventsSessionsApi.
46929
47202
  */
@@ -47068,6 +47341,40 @@ export interface EventsSessionsApiRemoveEventSessionTrackRequest {
47068
47341
  */
47069
47342
  readonly trackId: string;
47070
47343
  }
47344
+ /**
47345
+ * Request parameters for removeEventSessionVisiblePassType operation in EventsSessionsApi.
47346
+ */
47347
+ export interface EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest {
47348
+ /**
47349
+ * The event identifier
47350
+ */
47351
+ readonly eventId: string;
47352
+ /**
47353
+ * The session identifier
47354
+ */
47355
+ readonly sessionId: string;
47356
+ /**
47357
+ * The passType identifier
47358
+ */
47359
+ readonly passTypeId: string;
47360
+ }
47361
+ /**
47362
+ * Request parameters for removeEventSessionVisibleTier operation in EventsSessionsApi.
47363
+ */
47364
+ export interface EventsSessionsApiRemoveEventSessionVisibleTierRequest {
47365
+ /**
47366
+ * The event identifier
47367
+ */
47368
+ readonly eventId: string;
47369
+ /**
47370
+ * The session identifier
47371
+ */
47372
+ readonly sessionId: string;
47373
+ /**
47374
+ * The tier identifier
47375
+ */
47376
+ readonly tierId: string;
47377
+ }
47071
47378
  /**
47072
47379
  * Request parameters for updateEventSession operation in EventsSessionsApi.
47073
47380
  */
@@ -47145,6 +47452,22 @@ export declare class EventsSessionsApi extends BaseAPI {
47145
47452
  * @throws {RequiredError}
47146
47453
  */
47147
47454
  addEventSessionTrack(requestParameters: EventsSessionsApiAddEventSessionTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
47455
+ /**
47456
+ * Add Event Session Visible Pass Type endpoint
47457
+ * @summary Add Event Session Visible Pass Type
47458
+ * @param {EventsSessionsApiAddEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
47459
+ * @param {*} [options] Override http request option.
47460
+ * @throws {RequiredError}
47461
+ */
47462
+ addEventSessionVisiblePassType(requestParameters: EventsSessionsApiAddEventSessionVisiblePassTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
47463
+ /**
47464
+ * Add Event Session Visible Tier endpoint
47465
+ * @summary Add Event Session Visible Tier
47466
+ * @param {EventsSessionsApiAddEventSessionVisibleTierRequest} requestParameters Request parameters.
47467
+ * @param {*} [options] Override http request option.
47468
+ * @throws {RequiredError}
47469
+ */
47470
+ addEventSessionVisibleTier(requestParameters: EventsSessionsApiAddEventSessionVisibleTierRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
47148
47471
  /**
47149
47472
  * Clone Event Session endpoint
47150
47473
  * @summary Clone Event Session
@@ -47249,6 +47572,22 @@ export declare class EventsSessionsApi extends BaseAPI {
47249
47572
  * @throws {RequiredError}
47250
47573
  */
47251
47574
  getEventSessionTracks(requestParameters: EventsSessionsApiGetEventSessionTracksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventSessionTracks200Response, any, {}>>;
47575
+ /**
47576
+ * Get Event Session Visible Pass Types endpoint
47577
+ * @summary Get Event Session Visible Pass Types
47578
+ * @param {EventsSessionsApiGetEventSessionVisiblePassTypesRequest} requestParameters Request parameters.
47579
+ * @param {*} [options] Override http request option.
47580
+ * @throws {RequiredError}
47581
+ */
47582
+ getEventSessionVisiblePassTypes(requestParameters: EventsSessionsApiGetEventSessionVisiblePassTypesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventAddOnPassTypes200Response, any, {}>>;
47583
+ /**
47584
+ * Get Event Session Visible Tiers endpoint
47585
+ * @summary Get Event Session Visible Tiers
47586
+ * @param {EventsSessionsApiGetEventSessionVisibleTiersRequest} requestParameters Request parameters.
47587
+ * @param {*} [options] Override http request option.
47588
+ * @throws {RequiredError}
47589
+ */
47590
+ getEventSessionVisibleTiers(requestParameters: EventsSessionsApiGetEventSessionVisibleTiersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountTiers200Response, any, {}>>;
47252
47591
  /**
47253
47592
  * Get Event Sessions endpoint
47254
47593
  * @summary Get Event Sessions
@@ -47313,6 +47652,22 @@ export declare class EventsSessionsApi extends BaseAPI {
47313
47652
  * @throws {RequiredError}
47314
47653
  */
47315
47654
  removeEventSessionTrack(requestParameters: EventsSessionsApiRemoveEventSessionTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
47655
+ /**
47656
+ * Remove Event Session Visible Pass Type endpoint
47657
+ * @summary Remove Event Session Visible Pass Type
47658
+ * @param {EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
47659
+ * @param {*} [options] Override http request option.
47660
+ * @throws {RequiredError}
47661
+ */
47662
+ removeEventSessionVisiblePassType(requestParameters: EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
47663
+ /**
47664
+ * Remove Event Session Visible Tier endpoint
47665
+ * @summary Remove Event Session Visible Tier
47666
+ * @param {EventsSessionsApiRemoveEventSessionVisibleTierRequest} requestParameters Request parameters.
47667
+ * @param {*} [options] Override http request option.
47668
+ * @throws {RequiredError}
47669
+ */
47670
+ removeEventSessionVisibleTier(requestParameters: EventsSessionsApiRemoveEventSessionVisibleTierRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
47316
47671
  /**
47317
47672
  * Update Event Session endpoint
47318
47673
  * @summary Update Event Session