@connectedxm/admin-sdk 6.27.0 → 6.27.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/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;
@@ -1380,6 +1381,7 @@ export interface BaseEventSession {
1380
1381
  'location': BaseEventSessionLocation | null;
1381
1382
  'registrationEnabled': boolean;
1382
1383
  'price': number | null;
1384
+ 'prices': Array<EventSessionPrice>;
1383
1385
  'limit': number | null;
1384
1386
  'taxCode': string | null;
1385
1387
  'taxIncluded': boolean;
@@ -5276,6 +5278,7 @@ export interface EventSession {
5276
5278
  'startTime': string;
5277
5279
  'endTime': string;
5278
5280
  'registrationEnd'?: string;
5281
+ 'onsiteRegistration': boolean;
5279
5282
  'allowQuickRegister': boolean;
5280
5283
  'tracks': Array<BaseEventTrack>;
5281
5284
  'nonSession': boolean;
@@ -5283,6 +5286,7 @@ export interface EventSession {
5283
5286
  'location': BaseEventSessionLocation | null;
5284
5287
  'registrationEnabled': boolean;
5285
5288
  'price': number | null;
5289
+ 'prices': Array<EventSessionPrice>;
5286
5290
  'limit': number | null;
5287
5291
  'taxCode': string | null;
5288
5292
  'taxIncluded': boolean;
@@ -5335,6 +5339,7 @@ export interface EventSessionCreateInputs {
5335
5339
  'visibility'?: EventSessionVisibility;
5336
5340
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5337
5341
  'registrationEnabled'?: boolean;
5342
+ 'onsiteRegistration'?: boolean;
5338
5343
  'allowQuickRegister'?: boolean;
5339
5344
  'limit'?: AdvertisementCreateInputsWeight | null;
5340
5345
  'price'?: AdvertisementCreateInputsWeight | null;
@@ -5397,6 +5402,11 @@ export interface EventSessionLocationUpdateInputs {
5397
5402
  'country'?: string | null;
5398
5403
  'zip'?: string | null;
5399
5404
  }
5405
+ export interface EventSessionPrice {
5406
+ 'id': string;
5407
+ 'passTypeId': string;
5408
+ 'price': number;
5409
+ }
5400
5410
  export interface EventSessionQuestion {
5401
5411
  'id': string;
5402
5412
  'eventId': string;
@@ -5686,6 +5696,7 @@ export interface EventSessionUpdateInputs {
5686
5696
  'visibility'?: EventSessionVisibility;
5687
5697
  'sortOrder'?: AdvertisementCreateInputsWeight | null;
5688
5698
  'registrationEnabled'?: boolean;
5699
+ 'onsiteRegistration'?: boolean;
5689
5700
  'allowQuickRegister'?: boolean;
5690
5701
  'limit'?: AdvertisementCreateInputsWeight | null;
5691
5702
  'price'?: AdvertisementCreateInputsWeight | null;
@@ -49640,6 +49651,203 @@ export declare class EventsSessionsMatchesApi extends BaseAPI {
49640
49651
  */
49641
49652
  updateEventSessionRoundQuestion(requestParameters: EventsSessionsMatchesApiUpdateEventSessionRoundQuestionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateEventSessionRoundQuestion200Response, any, {}>>;
49642
49653
  }
49654
+ /**
49655
+ * EventsSessionsPricesApi - axios parameter creator
49656
+ */
49657
+ export declare const EventsSessionsPricesApiAxiosParamCreator: (configuration?: Configuration) => {
49658
+ /**
49659
+ * Create Event Session Price endpoint
49660
+ * @summary Create Event Session Price
49661
+ * @param {string} eventId The event identifier
49662
+ * @param {string} sessionId The session identifier
49663
+ * @param {string} passTypeId Filter by passTypeId
49664
+ * @param {number} price Filter by price
49665
+ * @param {*} [options] Override http request option.
49666
+ * @throws {RequiredError}
49667
+ */
49668
+ createEventSessionPrice: (eventId: string, sessionId: string, passTypeId: string, price: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
49669
+ /**
49670
+ * Delete Event Session Price endpoint
49671
+ * @summary Delete Event Session Price
49672
+ * @param {string} eventId The event identifier
49673
+ * @param {string} sessionId The session identifier
49674
+ * @param {string} priceId The price identifier
49675
+ * @param {*} [options] Override http request option.
49676
+ * @throws {RequiredError}
49677
+ */
49678
+ deleteEventSessionPrice: (eventId: string, sessionId: string, priceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
49679
+ /**
49680
+ * Update Event Session Price endpoint
49681
+ * @summary Update Event Session Price
49682
+ * @param {string} eventId The event identifier
49683
+ * @param {string} sessionId The session identifier
49684
+ * @param {string} priceId The price identifier
49685
+ * @param {string} [passTypeId] Filter by passTypeId
49686
+ * @param {number} [price] Filter by price
49687
+ * @param {*} [options] Override http request option.
49688
+ * @throws {RequiredError}
49689
+ */
49690
+ updateEventSessionPrice: (eventId: string, sessionId: string, priceId: string, passTypeId?: string, price?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
49691
+ };
49692
+ /**
49693
+ * EventsSessionsPricesApi - functional programming interface
49694
+ */
49695
+ export declare const EventsSessionsPricesApiFp: (configuration?: Configuration) => {
49696
+ /**
49697
+ * Create Event Session Price endpoint
49698
+ * @summary Create Event Session Price
49699
+ * @param {string} eventId The event identifier
49700
+ * @param {string} sessionId The session identifier
49701
+ * @param {string} passTypeId Filter by passTypeId
49702
+ * @param {number} price Filter by price
49703
+ * @param {*} [options] Override http request option.
49704
+ * @throws {RequiredError}
49705
+ */
49706
+ createEventSessionPrice(eventId: string, sessionId: string, passTypeId: string, price: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
49707
+ /**
49708
+ * Delete Event Session Price endpoint
49709
+ * @summary Delete Event Session Price
49710
+ * @param {string} eventId The event identifier
49711
+ * @param {string} sessionId The session identifier
49712
+ * @param {string} priceId The price identifier
49713
+ * @param {*} [options] Override http request option.
49714
+ * @throws {RequiredError}
49715
+ */
49716
+ deleteEventSessionPrice(eventId: string, sessionId: string, priceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
49717
+ /**
49718
+ * Update Event Session Price endpoint
49719
+ * @summary Update Event Session Price
49720
+ * @param {string} eventId The event identifier
49721
+ * @param {string} sessionId The session identifier
49722
+ * @param {string} priceId The price identifier
49723
+ * @param {string} [passTypeId] Filter by passTypeId
49724
+ * @param {number} [price] Filter by price
49725
+ * @param {*} [options] Override http request option.
49726
+ * @throws {RequiredError}
49727
+ */
49728
+ updateEventSessionPrice(eventId: string, sessionId: string, priceId: string, passTypeId?: string, price?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
49729
+ };
49730
+ /**
49731
+ * EventsSessionsPricesApi - factory interface
49732
+ */
49733
+ export declare const EventsSessionsPricesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
49734
+ /**
49735
+ * Create Event Session Price endpoint
49736
+ * @summary Create Event Session Price
49737
+ * @param {EventsSessionsPricesApiCreateEventSessionPriceRequest} requestParameters Request parameters.
49738
+ * @param {*} [options] Override http request option.
49739
+ * @throws {RequiredError}
49740
+ */
49741
+ createEventSessionPrice(requestParameters: EventsSessionsPricesApiCreateEventSessionPriceRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
49742
+ /**
49743
+ * Delete Event Session Price endpoint
49744
+ * @summary Delete Event Session Price
49745
+ * @param {EventsSessionsPricesApiDeleteEventSessionPriceRequest} requestParameters Request parameters.
49746
+ * @param {*} [options] Override http request option.
49747
+ * @throws {RequiredError}
49748
+ */
49749
+ deleteEventSessionPrice(requestParameters: EventsSessionsPricesApiDeleteEventSessionPriceRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
49750
+ /**
49751
+ * Update Event Session Price endpoint
49752
+ * @summary Update Event Session Price
49753
+ * @param {EventsSessionsPricesApiUpdateEventSessionPriceRequest} requestParameters Request parameters.
49754
+ * @param {*} [options] Override http request option.
49755
+ * @throws {RequiredError}
49756
+ */
49757
+ updateEventSessionPrice(requestParameters: EventsSessionsPricesApiUpdateEventSessionPriceRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
49758
+ };
49759
+ /**
49760
+ * Request parameters for createEventSessionPrice operation in EventsSessionsPricesApi.
49761
+ */
49762
+ export interface EventsSessionsPricesApiCreateEventSessionPriceRequest {
49763
+ /**
49764
+ * The event identifier
49765
+ */
49766
+ readonly eventId: string;
49767
+ /**
49768
+ * The session identifier
49769
+ */
49770
+ readonly sessionId: string;
49771
+ /**
49772
+ * Filter by passTypeId
49773
+ */
49774
+ readonly passTypeId: string;
49775
+ /**
49776
+ * Filter by price
49777
+ */
49778
+ readonly price: number;
49779
+ }
49780
+ /**
49781
+ * Request parameters for deleteEventSessionPrice operation in EventsSessionsPricesApi.
49782
+ */
49783
+ export interface EventsSessionsPricesApiDeleteEventSessionPriceRequest {
49784
+ /**
49785
+ * The event identifier
49786
+ */
49787
+ readonly eventId: string;
49788
+ /**
49789
+ * The session identifier
49790
+ */
49791
+ readonly sessionId: string;
49792
+ /**
49793
+ * The price identifier
49794
+ */
49795
+ readonly priceId: string;
49796
+ }
49797
+ /**
49798
+ * Request parameters for updateEventSessionPrice operation in EventsSessionsPricesApi.
49799
+ */
49800
+ export interface EventsSessionsPricesApiUpdateEventSessionPriceRequest {
49801
+ /**
49802
+ * The event identifier
49803
+ */
49804
+ readonly eventId: string;
49805
+ /**
49806
+ * The session identifier
49807
+ */
49808
+ readonly sessionId: string;
49809
+ /**
49810
+ * The price identifier
49811
+ */
49812
+ readonly priceId: string;
49813
+ /**
49814
+ * Filter by passTypeId
49815
+ */
49816
+ readonly passTypeId?: string;
49817
+ /**
49818
+ * Filter by price
49819
+ */
49820
+ readonly price?: number;
49821
+ }
49822
+ /**
49823
+ * EventsSessionsPricesApi - object-oriented interface
49824
+ */
49825
+ export declare class EventsSessionsPricesApi extends BaseAPI {
49826
+ /**
49827
+ * Create Event Session Price endpoint
49828
+ * @summary Create Event Session Price
49829
+ * @param {EventsSessionsPricesApiCreateEventSessionPriceRequest} requestParameters Request parameters.
49830
+ * @param {*} [options] Override http request option.
49831
+ * @throws {RequiredError}
49832
+ */
49833
+ createEventSessionPrice(requestParameters: EventsSessionsPricesApiCreateEventSessionPriceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
49834
+ /**
49835
+ * Delete Event Session Price endpoint
49836
+ * @summary Delete Event Session Price
49837
+ * @param {EventsSessionsPricesApiDeleteEventSessionPriceRequest} requestParameters Request parameters.
49838
+ * @param {*} [options] Override http request option.
49839
+ * @throws {RequiredError}
49840
+ */
49841
+ deleteEventSessionPrice(requestParameters: EventsSessionsPricesApiDeleteEventSessionPriceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
49842
+ /**
49843
+ * Update Event Session Price endpoint
49844
+ * @summary Update Event Session Price
49845
+ * @param {EventsSessionsPricesApiUpdateEventSessionPriceRequest} requestParameters Request parameters.
49846
+ * @param {*} [options] Override http request option.
49847
+ * @throws {RequiredError}
49848
+ */
49849
+ updateEventSessionPrice(requestParameters: EventsSessionsPricesApiUpdateEventSessionPriceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
49850
+ }
49643
49851
  /**
49644
49852
  * EventsSessionsQuestionsApi - axios parameter creator
49645
49853
  */