@connectedxm/admin-sdk 6.26.0 → 6.27.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/README.md +6 -0
- package/api.ts +1079 -382
- package/dist/api.d.ts +359 -0
- package/dist/api.js +511 -0
- package/dist/esm/api.d.ts +359 -0
- package/dist/esm/api.js +511 -0
- package/docs/BaseEventSession.md +2 -0
- package/docs/EventSession.md +2 -0
- package/docs/EventSessionCreateInputs.md +2 -0
- package/docs/EventSessionUpdateInputs.md +2 -0
- package/docs/EventSessionVisibility.md +2 -0
- package/docs/EventsSessionsApi.md +366 -0
- package/package.json +1 -1
package/dist/esm/api.d.ts
CHANGED
|
@@ -1373,6 +1373,7 @@ export interface BaseEventSession {
|
|
|
1373
1373
|
'startTime': string;
|
|
1374
1374
|
'endTime': string;
|
|
1375
1375
|
'registrationEnd'?: string;
|
|
1376
|
+
'onsiteRegistration': boolean;
|
|
1376
1377
|
'allowQuickRegister': boolean;
|
|
1377
1378
|
'tracks': Array<BaseEventTrack>;
|
|
1378
1379
|
'nonSession': boolean;
|
|
@@ -5276,6 +5277,7 @@ export interface EventSession {
|
|
|
5276
5277
|
'startTime': string;
|
|
5277
5278
|
'endTime': string;
|
|
5278
5279
|
'registrationEnd'?: string;
|
|
5280
|
+
'onsiteRegistration': boolean;
|
|
5279
5281
|
'allowQuickRegister': boolean;
|
|
5280
5282
|
'tracks': Array<BaseEventTrack>;
|
|
5281
5283
|
'nonSession': boolean;
|
|
@@ -5335,6 +5337,7 @@ export interface EventSessionCreateInputs {
|
|
|
5335
5337
|
'visibility'?: EventSessionVisibility;
|
|
5336
5338
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
5337
5339
|
'registrationEnabled'?: boolean;
|
|
5340
|
+
'onsiteRegistration'?: boolean;
|
|
5338
5341
|
'allowQuickRegister'?: boolean;
|
|
5339
5342
|
'limit'?: AdvertisementCreateInputsWeight | null;
|
|
5340
5343
|
'price'?: AdvertisementCreateInputsWeight | null;
|
|
@@ -5686,6 +5689,7 @@ export interface EventSessionUpdateInputs {
|
|
|
5686
5689
|
'visibility'?: EventSessionVisibility;
|
|
5687
5690
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
5688
5691
|
'registrationEnabled'?: boolean;
|
|
5692
|
+
'onsiteRegistration'?: boolean;
|
|
5689
5693
|
'allowQuickRegister'?: boolean;
|
|
5690
5694
|
'limit'?: AdvertisementCreateInputsWeight | null;
|
|
5691
5695
|
'price'?: AdvertisementCreateInputsWeight | null;
|
|
@@ -5702,6 +5706,7 @@ export interface EventSessionUpdateInputs {
|
|
|
5702
5706
|
}
|
|
5703
5707
|
export declare enum EventSessionVisibility {
|
|
5704
5708
|
Public = "PUBLIC",
|
|
5709
|
+
Preview = "PREVIEW",
|
|
5705
5710
|
Restricted = "RESTRICTED",
|
|
5706
5711
|
Registered = "REGISTERED",
|
|
5707
5712
|
Hidden = "HIDDEN"
|
|
@@ -45683,6 +45688,26 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
|
|
|
45683
45688
|
* @throws {RequiredError}
|
|
45684
45689
|
*/
|
|
45685
45690
|
addEventSessionTrack: (eventId: string, sessionId: string, trackId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45691
|
+
/**
|
|
45692
|
+
* Add Event Session Visible Pass Type endpoint
|
|
45693
|
+
* @summary Add Event Session Visible Pass Type
|
|
45694
|
+
* @param {string} eventId The event identifier
|
|
45695
|
+
* @param {string} sessionId The session identifier
|
|
45696
|
+
* @param {string} passTypeId The passType identifier
|
|
45697
|
+
* @param {*} [options] Override http request option.
|
|
45698
|
+
* @throws {RequiredError}
|
|
45699
|
+
*/
|
|
45700
|
+
addEventSessionVisiblePassType: (eventId: string, sessionId: string, passTypeId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45701
|
+
/**
|
|
45702
|
+
* Add Event Session Visible Tier endpoint
|
|
45703
|
+
* @summary Add Event Session Visible Tier
|
|
45704
|
+
* @param {string} eventId The event identifier
|
|
45705
|
+
* @param {string} sessionId The session identifier
|
|
45706
|
+
* @param {string} tierId The tier identifier
|
|
45707
|
+
* @param {*} [options] Override http request option.
|
|
45708
|
+
* @throws {RequiredError}
|
|
45709
|
+
*/
|
|
45710
|
+
addEventSessionVisibleTier: (eventId: string, sessionId: string, tierId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45686
45711
|
/**
|
|
45687
45712
|
* Clone Event Session endpoint
|
|
45688
45713
|
* @summary Clone Event Session
|
|
@@ -45838,6 +45863,32 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
|
|
|
45838
45863
|
* @throws {RequiredError}
|
|
45839
45864
|
*/
|
|
45840
45865
|
getEventSessionTracks: (eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45866
|
+
/**
|
|
45867
|
+
* Get Event Session Visible Pass Types endpoint
|
|
45868
|
+
* @summary Get Event Session Visible Pass Types
|
|
45869
|
+
* @param {string} eventId The event identifier
|
|
45870
|
+
* @param {string} sessionId The session identifier
|
|
45871
|
+
* @param {number} [page] Page number
|
|
45872
|
+
* @param {number} [pageSize] Number of items per page
|
|
45873
|
+
* @param {string} [orderBy] Field to order by
|
|
45874
|
+
* @param {string} [search] Search query
|
|
45875
|
+
* @param {*} [options] Override http request option.
|
|
45876
|
+
* @throws {RequiredError}
|
|
45877
|
+
*/
|
|
45878
|
+
getEventSessionVisiblePassTypes: (eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45879
|
+
/**
|
|
45880
|
+
* Get Event Session Visible Tiers endpoint
|
|
45881
|
+
* @summary Get Event Session Visible Tiers
|
|
45882
|
+
* @param {string} eventId The event identifier
|
|
45883
|
+
* @param {string} sessionId The session identifier
|
|
45884
|
+
* @param {number} [page] Page number
|
|
45885
|
+
* @param {number} [pageSize] Number of items per page
|
|
45886
|
+
* @param {string} [orderBy] Field to order by
|
|
45887
|
+
* @param {string} [search] Search query
|
|
45888
|
+
* @param {*} [options] Override http request option.
|
|
45889
|
+
* @throws {RequiredError}
|
|
45890
|
+
*/
|
|
45891
|
+
getEventSessionVisibleTiers: (eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45841
45892
|
/**
|
|
45842
45893
|
* Get Event Sessions endpoint
|
|
45843
45894
|
* @summary Get Event Sessions
|
|
@@ -45920,6 +45971,26 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
|
|
|
45920
45971
|
* @throws {RequiredError}
|
|
45921
45972
|
*/
|
|
45922
45973
|
removeEventSessionTrack: (eventId: string, sessionId: string, trackId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45974
|
+
/**
|
|
45975
|
+
* Remove Event Session Visible Pass Type endpoint
|
|
45976
|
+
* @summary Remove Event Session Visible Pass Type
|
|
45977
|
+
* @param {string} eventId The event identifier
|
|
45978
|
+
* @param {string} sessionId The session identifier
|
|
45979
|
+
* @param {string} passTypeId The passType identifier
|
|
45980
|
+
* @param {*} [options] Override http request option.
|
|
45981
|
+
* @throws {RequiredError}
|
|
45982
|
+
*/
|
|
45983
|
+
removeEventSessionVisiblePassType: (eventId: string, sessionId: string, passTypeId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45984
|
+
/**
|
|
45985
|
+
* Remove Event Session Visible Tier endpoint
|
|
45986
|
+
* @summary Remove Event Session Visible Tier
|
|
45987
|
+
* @param {string} eventId The event identifier
|
|
45988
|
+
* @param {string} sessionId The session identifier
|
|
45989
|
+
* @param {string} tierId The tier identifier
|
|
45990
|
+
* @param {*} [options] Override http request option.
|
|
45991
|
+
* @throws {RequiredError}
|
|
45992
|
+
*/
|
|
45993
|
+
removeEventSessionVisibleTier: (eventId: string, sessionId: string, tierId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45923
45994
|
/**
|
|
45924
45995
|
* Update Event Session endpoint
|
|
45925
45996
|
* @summary Update Event Session
|
|
@@ -46005,6 +46076,26 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
|
|
|
46005
46076
|
* @throws {RequiredError}
|
|
46006
46077
|
*/
|
|
46007
46078
|
addEventSessionTrack(eventId: string, sessionId: string, trackId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
|
|
46079
|
+
/**
|
|
46080
|
+
* Add Event Session Visible Pass Type endpoint
|
|
46081
|
+
* @summary Add Event Session Visible Pass Type
|
|
46082
|
+
* @param {string} eventId The event identifier
|
|
46083
|
+
* @param {string} sessionId The session identifier
|
|
46084
|
+
* @param {string} passTypeId The passType identifier
|
|
46085
|
+
* @param {*} [options] Override http request option.
|
|
46086
|
+
* @throws {RequiredError}
|
|
46087
|
+
*/
|
|
46088
|
+
addEventSessionVisiblePassType(eventId: string, sessionId: string, passTypeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
|
|
46089
|
+
/**
|
|
46090
|
+
* Add Event Session Visible Tier endpoint
|
|
46091
|
+
* @summary Add Event Session Visible Tier
|
|
46092
|
+
* @param {string} eventId The event identifier
|
|
46093
|
+
* @param {string} sessionId The session identifier
|
|
46094
|
+
* @param {string} tierId The tier identifier
|
|
46095
|
+
* @param {*} [options] Override http request option.
|
|
46096
|
+
* @throws {RequiredError}
|
|
46097
|
+
*/
|
|
46098
|
+
addEventSessionVisibleTier(eventId: string, sessionId: string, tierId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
|
|
46008
46099
|
/**
|
|
46009
46100
|
* Clone Event Session endpoint
|
|
46010
46101
|
* @summary Clone Event Session
|
|
@@ -46160,6 +46251,32 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
|
|
|
46160
46251
|
* @throws {RequiredError}
|
|
46161
46252
|
*/
|
|
46162
46253
|
getEventSessionTracks(eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventSessionTracks200Response>>;
|
|
46254
|
+
/**
|
|
46255
|
+
* Get Event Session Visible Pass Types endpoint
|
|
46256
|
+
* @summary Get Event Session Visible Pass Types
|
|
46257
|
+
* @param {string} eventId The event identifier
|
|
46258
|
+
* @param {string} sessionId The session identifier
|
|
46259
|
+
* @param {number} [page] Page number
|
|
46260
|
+
* @param {number} [pageSize] Number of items per page
|
|
46261
|
+
* @param {string} [orderBy] Field to order by
|
|
46262
|
+
* @param {string} [search] Search query
|
|
46263
|
+
* @param {*} [options] Override http request option.
|
|
46264
|
+
* @throws {RequiredError}
|
|
46265
|
+
*/
|
|
46266
|
+
getEventSessionVisiblePassTypes(eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventAddOnPassTypes200Response>>;
|
|
46267
|
+
/**
|
|
46268
|
+
* Get Event Session Visible Tiers endpoint
|
|
46269
|
+
* @summary Get Event Session Visible Tiers
|
|
46270
|
+
* @param {string} eventId The event identifier
|
|
46271
|
+
* @param {string} sessionId The session identifier
|
|
46272
|
+
* @param {number} [page] Page number
|
|
46273
|
+
* @param {number} [pageSize] Number of items per page
|
|
46274
|
+
* @param {string} [orderBy] Field to order by
|
|
46275
|
+
* @param {string} [search] Search query
|
|
46276
|
+
* @param {*} [options] Override http request option.
|
|
46277
|
+
* @throws {RequiredError}
|
|
46278
|
+
*/
|
|
46279
|
+
getEventSessionVisibleTiers(eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountTiers200Response>>;
|
|
46163
46280
|
/**
|
|
46164
46281
|
* Get Event Sessions endpoint
|
|
46165
46282
|
* @summary Get Event Sessions
|
|
@@ -46242,6 +46359,26 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
|
|
|
46242
46359
|
* @throws {RequiredError}
|
|
46243
46360
|
*/
|
|
46244
46361
|
removeEventSessionTrack(eventId: string, sessionId: string, trackId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
|
|
46362
|
+
/**
|
|
46363
|
+
* Remove Event Session Visible Pass Type endpoint
|
|
46364
|
+
* @summary Remove Event Session Visible Pass Type
|
|
46365
|
+
* @param {string} eventId The event identifier
|
|
46366
|
+
* @param {string} sessionId The session identifier
|
|
46367
|
+
* @param {string} passTypeId The passType identifier
|
|
46368
|
+
* @param {*} [options] Override http request option.
|
|
46369
|
+
* @throws {RequiredError}
|
|
46370
|
+
*/
|
|
46371
|
+
removeEventSessionVisiblePassType(eventId: string, sessionId: string, passTypeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
|
|
46372
|
+
/**
|
|
46373
|
+
* Remove Event Session Visible Tier endpoint
|
|
46374
|
+
* @summary Remove Event Session Visible Tier
|
|
46375
|
+
* @param {string} eventId The event identifier
|
|
46376
|
+
* @param {string} sessionId The session identifier
|
|
46377
|
+
* @param {string} tierId The tier identifier
|
|
46378
|
+
* @param {*} [options] Override http request option.
|
|
46379
|
+
* @throws {RequiredError}
|
|
46380
|
+
*/
|
|
46381
|
+
removeEventSessionVisibleTier(eventId: string, sessionId: string, tierId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
|
|
46245
46382
|
/**
|
|
46246
46383
|
* Update Event Session endpoint
|
|
46247
46384
|
* @summary Update Event Session
|
|
@@ -46313,6 +46450,22 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
|
|
|
46313
46450
|
* @throws {RequiredError}
|
|
46314
46451
|
*/
|
|
46315
46452
|
addEventSessionTrack(requestParameters: EventsSessionsApiAddEventSessionTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
|
|
46453
|
+
/**
|
|
46454
|
+
* Add Event Session Visible Pass Type endpoint
|
|
46455
|
+
* @summary Add Event Session Visible Pass Type
|
|
46456
|
+
* @param {EventsSessionsApiAddEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
|
|
46457
|
+
* @param {*} [options] Override http request option.
|
|
46458
|
+
* @throws {RequiredError}
|
|
46459
|
+
*/
|
|
46460
|
+
addEventSessionVisiblePassType(requestParameters: EventsSessionsApiAddEventSessionVisiblePassTypeRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
|
|
46461
|
+
/**
|
|
46462
|
+
* Add Event Session Visible Tier endpoint
|
|
46463
|
+
* @summary Add Event Session Visible Tier
|
|
46464
|
+
* @param {EventsSessionsApiAddEventSessionVisibleTierRequest} requestParameters Request parameters.
|
|
46465
|
+
* @param {*} [options] Override http request option.
|
|
46466
|
+
* @throws {RequiredError}
|
|
46467
|
+
*/
|
|
46468
|
+
addEventSessionVisibleTier(requestParameters: EventsSessionsApiAddEventSessionVisibleTierRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
|
|
46316
46469
|
/**
|
|
46317
46470
|
* Clone Event Session endpoint
|
|
46318
46471
|
* @summary Clone Event Session
|
|
@@ -46417,6 +46570,22 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
|
|
|
46417
46570
|
* @throws {RequiredError}
|
|
46418
46571
|
*/
|
|
46419
46572
|
getEventSessionTracks(requestParameters: EventsSessionsApiGetEventSessionTracksRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventSessionTracks200Response>;
|
|
46573
|
+
/**
|
|
46574
|
+
* Get Event Session Visible Pass Types endpoint
|
|
46575
|
+
* @summary Get Event Session Visible Pass Types
|
|
46576
|
+
* @param {EventsSessionsApiGetEventSessionVisiblePassTypesRequest} requestParameters Request parameters.
|
|
46577
|
+
* @param {*} [options] Override http request option.
|
|
46578
|
+
* @throws {RequiredError}
|
|
46579
|
+
*/
|
|
46580
|
+
getEventSessionVisiblePassTypes(requestParameters: EventsSessionsApiGetEventSessionVisiblePassTypesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventAddOnPassTypes200Response>;
|
|
46581
|
+
/**
|
|
46582
|
+
* Get Event Session Visible Tiers endpoint
|
|
46583
|
+
* @summary Get Event Session Visible Tiers
|
|
46584
|
+
* @param {EventsSessionsApiGetEventSessionVisibleTiersRequest} requestParameters Request parameters.
|
|
46585
|
+
* @param {*} [options] Override http request option.
|
|
46586
|
+
* @throws {RequiredError}
|
|
46587
|
+
*/
|
|
46588
|
+
getEventSessionVisibleTiers(requestParameters: EventsSessionsApiGetEventSessionVisibleTiersRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountTiers200Response>;
|
|
46420
46589
|
/**
|
|
46421
46590
|
* Get Event Sessions endpoint
|
|
46422
46591
|
* @summary Get Event Sessions
|
|
@@ -46481,6 +46650,22 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
|
|
|
46481
46650
|
* @throws {RequiredError}
|
|
46482
46651
|
*/
|
|
46483
46652
|
removeEventSessionTrack(requestParameters: EventsSessionsApiRemoveEventSessionTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
|
|
46653
|
+
/**
|
|
46654
|
+
* Remove Event Session Visible Pass Type endpoint
|
|
46655
|
+
* @summary Remove Event Session Visible Pass Type
|
|
46656
|
+
* @param {EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
|
|
46657
|
+
* @param {*} [options] Override http request option.
|
|
46658
|
+
* @throws {RequiredError}
|
|
46659
|
+
*/
|
|
46660
|
+
removeEventSessionVisiblePassType(requestParameters: EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
|
|
46661
|
+
/**
|
|
46662
|
+
* Remove Event Session Visible Tier endpoint
|
|
46663
|
+
* @summary Remove Event Session Visible Tier
|
|
46664
|
+
* @param {EventsSessionsApiRemoveEventSessionVisibleTierRequest} requestParameters Request parameters.
|
|
46665
|
+
* @param {*} [options] Override http request option.
|
|
46666
|
+
* @throws {RequiredError}
|
|
46667
|
+
*/
|
|
46668
|
+
removeEventSessionVisibleTier(requestParameters: EventsSessionsApiRemoveEventSessionVisibleTierRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
|
|
46484
46669
|
/**
|
|
46485
46670
|
* Update Event Session endpoint
|
|
46486
46671
|
* @summary Update Event Session
|
|
@@ -46609,6 +46794,40 @@ export interface EventsSessionsApiAddEventSessionTrackRequest {
|
|
|
46609
46794
|
*/
|
|
46610
46795
|
readonly trackId: string;
|
|
46611
46796
|
}
|
|
46797
|
+
/**
|
|
46798
|
+
* Request parameters for addEventSessionVisiblePassType operation in EventsSessionsApi.
|
|
46799
|
+
*/
|
|
46800
|
+
export interface EventsSessionsApiAddEventSessionVisiblePassTypeRequest {
|
|
46801
|
+
/**
|
|
46802
|
+
* The event identifier
|
|
46803
|
+
*/
|
|
46804
|
+
readonly eventId: string;
|
|
46805
|
+
/**
|
|
46806
|
+
* The session identifier
|
|
46807
|
+
*/
|
|
46808
|
+
readonly sessionId: string;
|
|
46809
|
+
/**
|
|
46810
|
+
* The passType identifier
|
|
46811
|
+
*/
|
|
46812
|
+
readonly passTypeId: string;
|
|
46813
|
+
}
|
|
46814
|
+
/**
|
|
46815
|
+
* Request parameters for addEventSessionVisibleTier operation in EventsSessionsApi.
|
|
46816
|
+
*/
|
|
46817
|
+
export interface EventsSessionsApiAddEventSessionVisibleTierRequest {
|
|
46818
|
+
/**
|
|
46819
|
+
* The event identifier
|
|
46820
|
+
*/
|
|
46821
|
+
readonly eventId: string;
|
|
46822
|
+
/**
|
|
46823
|
+
* The session identifier
|
|
46824
|
+
*/
|
|
46825
|
+
readonly sessionId: string;
|
|
46826
|
+
/**
|
|
46827
|
+
* The tier identifier
|
|
46828
|
+
*/
|
|
46829
|
+
readonly tierId: string;
|
|
46830
|
+
}
|
|
46612
46831
|
/**
|
|
46613
46832
|
* Request parameters for cloneEventSession operation in EventsSessionsApi.
|
|
46614
46833
|
*/
|
|
@@ -46924,6 +47143,64 @@ export interface EventsSessionsApiGetEventSessionTracksRequest {
|
|
|
46924
47143
|
*/
|
|
46925
47144
|
readonly search?: string;
|
|
46926
47145
|
}
|
|
47146
|
+
/**
|
|
47147
|
+
* Request parameters for getEventSessionVisiblePassTypes operation in EventsSessionsApi.
|
|
47148
|
+
*/
|
|
47149
|
+
export interface EventsSessionsApiGetEventSessionVisiblePassTypesRequest {
|
|
47150
|
+
/**
|
|
47151
|
+
* The event identifier
|
|
47152
|
+
*/
|
|
47153
|
+
readonly eventId: string;
|
|
47154
|
+
/**
|
|
47155
|
+
* The session identifier
|
|
47156
|
+
*/
|
|
47157
|
+
readonly sessionId: string;
|
|
47158
|
+
/**
|
|
47159
|
+
* Page number
|
|
47160
|
+
*/
|
|
47161
|
+
readonly page?: number;
|
|
47162
|
+
/**
|
|
47163
|
+
* Number of items per page
|
|
47164
|
+
*/
|
|
47165
|
+
readonly pageSize?: number;
|
|
47166
|
+
/**
|
|
47167
|
+
* Field to order by
|
|
47168
|
+
*/
|
|
47169
|
+
readonly orderBy?: string;
|
|
47170
|
+
/**
|
|
47171
|
+
* Search query
|
|
47172
|
+
*/
|
|
47173
|
+
readonly search?: string;
|
|
47174
|
+
}
|
|
47175
|
+
/**
|
|
47176
|
+
* Request parameters for getEventSessionVisibleTiers operation in EventsSessionsApi.
|
|
47177
|
+
*/
|
|
47178
|
+
export interface EventsSessionsApiGetEventSessionVisibleTiersRequest {
|
|
47179
|
+
/**
|
|
47180
|
+
* The event identifier
|
|
47181
|
+
*/
|
|
47182
|
+
readonly eventId: string;
|
|
47183
|
+
/**
|
|
47184
|
+
* The session identifier
|
|
47185
|
+
*/
|
|
47186
|
+
readonly sessionId: string;
|
|
47187
|
+
/**
|
|
47188
|
+
* Page number
|
|
47189
|
+
*/
|
|
47190
|
+
readonly page?: number;
|
|
47191
|
+
/**
|
|
47192
|
+
* Number of items per page
|
|
47193
|
+
*/
|
|
47194
|
+
readonly pageSize?: number;
|
|
47195
|
+
/**
|
|
47196
|
+
* Field to order by
|
|
47197
|
+
*/
|
|
47198
|
+
readonly orderBy?: string;
|
|
47199
|
+
/**
|
|
47200
|
+
* Search query
|
|
47201
|
+
*/
|
|
47202
|
+
readonly search?: string;
|
|
47203
|
+
}
|
|
46927
47204
|
/**
|
|
46928
47205
|
* Request parameters for getEventSessions operation in EventsSessionsApi.
|
|
46929
47206
|
*/
|
|
@@ -47068,6 +47345,40 @@ export interface EventsSessionsApiRemoveEventSessionTrackRequest {
|
|
|
47068
47345
|
*/
|
|
47069
47346
|
readonly trackId: string;
|
|
47070
47347
|
}
|
|
47348
|
+
/**
|
|
47349
|
+
* Request parameters for removeEventSessionVisiblePassType operation in EventsSessionsApi.
|
|
47350
|
+
*/
|
|
47351
|
+
export interface EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest {
|
|
47352
|
+
/**
|
|
47353
|
+
* The event identifier
|
|
47354
|
+
*/
|
|
47355
|
+
readonly eventId: string;
|
|
47356
|
+
/**
|
|
47357
|
+
* The session identifier
|
|
47358
|
+
*/
|
|
47359
|
+
readonly sessionId: string;
|
|
47360
|
+
/**
|
|
47361
|
+
* The passType identifier
|
|
47362
|
+
*/
|
|
47363
|
+
readonly passTypeId: string;
|
|
47364
|
+
}
|
|
47365
|
+
/**
|
|
47366
|
+
* Request parameters for removeEventSessionVisibleTier operation in EventsSessionsApi.
|
|
47367
|
+
*/
|
|
47368
|
+
export interface EventsSessionsApiRemoveEventSessionVisibleTierRequest {
|
|
47369
|
+
/**
|
|
47370
|
+
* The event identifier
|
|
47371
|
+
*/
|
|
47372
|
+
readonly eventId: string;
|
|
47373
|
+
/**
|
|
47374
|
+
* The session identifier
|
|
47375
|
+
*/
|
|
47376
|
+
readonly sessionId: string;
|
|
47377
|
+
/**
|
|
47378
|
+
* The tier identifier
|
|
47379
|
+
*/
|
|
47380
|
+
readonly tierId: string;
|
|
47381
|
+
}
|
|
47071
47382
|
/**
|
|
47072
47383
|
* Request parameters for updateEventSession operation in EventsSessionsApi.
|
|
47073
47384
|
*/
|
|
@@ -47145,6 +47456,22 @@ export declare class EventsSessionsApi extends BaseAPI {
|
|
|
47145
47456
|
* @throws {RequiredError}
|
|
47146
47457
|
*/
|
|
47147
47458
|
addEventSessionTrack(requestParameters: EventsSessionsApiAddEventSessionTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
|
|
47459
|
+
/**
|
|
47460
|
+
* Add Event Session Visible Pass Type endpoint
|
|
47461
|
+
* @summary Add Event Session Visible Pass Type
|
|
47462
|
+
* @param {EventsSessionsApiAddEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
|
|
47463
|
+
* @param {*} [options] Override http request option.
|
|
47464
|
+
* @throws {RequiredError}
|
|
47465
|
+
*/
|
|
47466
|
+
addEventSessionVisiblePassType(requestParameters: EventsSessionsApiAddEventSessionVisiblePassTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
|
|
47467
|
+
/**
|
|
47468
|
+
* Add Event Session Visible Tier endpoint
|
|
47469
|
+
* @summary Add Event Session Visible Tier
|
|
47470
|
+
* @param {EventsSessionsApiAddEventSessionVisibleTierRequest} requestParameters Request parameters.
|
|
47471
|
+
* @param {*} [options] Override http request option.
|
|
47472
|
+
* @throws {RequiredError}
|
|
47473
|
+
*/
|
|
47474
|
+
addEventSessionVisibleTier(requestParameters: EventsSessionsApiAddEventSessionVisibleTierRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
|
|
47148
47475
|
/**
|
|
47149
47476
|
* Clone Event Session endpoint
|
|
47150
47477
|
* @summary Clone Event Session
|
|
@@ -47249,6 +47576,22 @@ export declare class EventsSessionsApi extends BaseAPI {
|
|
|
47249
47576
|
* @throws {RequiredError}
|
|
47250
47577
|
*/
|
|
47251
47578
|
getEventSessionTracks(requestParameters: EventsSessionsApiGetEventSessionTracksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventSessionTracks200Response, any, {}>>;
|
|
47579
|
+
/**
|
|
47580
|
+
* Get Event Session Visible Pass Types endpoint
|
|
47581
|
+
* @summary Get Event Session Visible Pass Types
|
|
47582
|
+
* @param {EventsSessionsApiGetEventSessionVisiblePassTypesRequest} requestParameters Request parameters.
|
|
47583
|
+
* @param {*} [options] Override http request option.
|
|
47584
|
+
* @throws {RequiredError}
|
|
47585
|
+
*/
|
|
47586
|
+
getEventSessionVisiblePassTypes(requestParameters: EventsSessionsApiGetEventSessionVisiblePassTypesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventAddOnPassTypes200Response, any, {}>>;
|
|
47587
|
+
/**
|
|
47588
|
+
* Get Event Session Visible Tiers endpoint
|
|
47589
|
+
* @summary Get Event Session Visible Tiers
|
|
47590
|
+
* @param {EventsSessionsApiGetEventSessionVisibleTiersRequest} requestParameters Request parameters.
|
|
47591
|
+
* @param {*} [options] Override http request option.
|
|
47592
|
+
* @throws {RequiredError}
|
|
47593
|
+
*/
|
|
47594
|
+
getEventSessionVisibleTiers(requestParameters: EventsSessionsApiGetEventSessionVisibleTiersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountTiers200Response, any, {}>>;
|
|
47252
47595
|
/**
|
|
47253
47596
|
* Get Event Sessions endpoint
|
|
47254
47597
|
* @summary Get Event Sessions
|
|
@@ -47313,6 +47656,22 @@ export declare class EventsSessionsApi extends BaseAPI {
|
|
|
47313
47656
|
* @throws {RequiredError}
|
|
47314
47657
|
*/
|
|
47315
47658
|
removeEventSessionTrack(requestParameters: EventsSessionsApiRemoveEventSessionTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
|
|
47659
|
+
/**
|
|
47660
|
+
* Remove Event Session Visible Pass Type endpoint
|
|
47661
|
+
* @summary Remove Event Session Visible Pass Type
|
|
47662
|
+
* @param {EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
|
|
47663
|
+
* @param {*} [options] Override http request option.
|
|
47664
|
+
* @throws {RequiredError}
|
|
47665
|
+
*/
|
|
47666
|
+
removeEventSessionVisiblePassType(requestParameters: EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
|
|
47667
|
+
/**
|
|
47668
|
+
* Remove Event Session Visible Tier endpoint
|
|
47669
|
+
* @summary Remove Event Session Visible Tier
|
|
47670
|
+
* @param {EventsSessionsApiRemoveEventSessionVisibleTierRequest} requestParameters Request parameters.
|
|
47671
|
+
* @param {*} [options] Override http request option.
|
|
47672
|
+
* @throws {RequiredError}
|
|
47673
|
+
*/
|
|
47674
|
+
removeEventSessionVisibleTier(requestParameters: EventsSessionsApiRemoveEventSessionVisibleTierRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
|
|
47316
47675
|
/**
|
|
47317
47676
|
* Update Event Session endpoint
|
|
47318
47677
|
* @summary Update Event Session
|