@connectedxm/admin-sdk 6.27.1 → 6.28.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
@@ -1381,6 +1381,7 @@ export interface BaseEventSession {
1381
1381
  'location': BaseEventSessionLocation | null;
1382
1382
  'registrationEnabled': boolean;
1383
1383
  'price': number | null;
1384
+ 'prices': Array<EventSessionPrice>;
1384
1385
  'limit': number | null;
1385
1386
  'taxCode': string | null;
1386
1387
  'taxIncluded': boolean;
@@ -5285,6 +5286,7 @@ export interface EventSession {
5285
5286
  'location': BaseEventSessionLocation | null;
5286
5287
  'registrationEnabled': boolean;
5287
5288
  'price': number | null;
5289
+ 'prices': Array<EventSessionPrice>;
5288
5290
  'limit': number | null;
5289
5291
  'taxCode': string | null;
5290
5292
  'taxIncluded': boolean;
@@ -5298,6 +5300,8 @@ export interface EventSession {
5298
5300
  'event': BaseEvent;
5299
5301
  'speakers': Array<BaseEventSpeaker>;
5300
5302
  'meetingId': string | null;
5303
+ 'autoRefundEnabled': boolean;
5304
+ 'autoRefundPercentage': number | null;
5301
5305
  'meeting': BaseMeeting | null;
5302
5306
  'blocks': Array<BaseEventBlock> | null;
5303
5307
  'activationId': string | null;
@@ -5341,6 +5345,8 @@ export interface EventSessionCreateInputs {
5341
5345
  'allowQuickRegister'?: boolean;
5342
5346
  'limit'?: AdvertisementCreateInputsWeight | null;
5343
5347
  'price'?: AdvertisementCreateInputsWeight | null;
5348
+ 'autoRefundEnabled'?: boolean;
5349
+ 'autoRefundPercentage'?: number | null;
5344
5350
  'locationId'?: string | null;
5345
5351
  'roundName'?: string | null;
5346
5352
  'matchName'?: string | null;
@@ -5400,6 +5406,11 @@ export interface EventSessionLocationUpdateInputs {
5400
5406
  'country'?: string | null;
5401
5407
  'zip'?: string | null;
5402
5408
  }
5409
+ export interface EventSessionPrice {
5410
+ 'id': string;
5411
+ 'passTypeId': string;
5412
+ 'price': number;
5413
+ }
5403
5414
  export interface EventSessionQuestion {
5404
5415
  'id': string;
5405
5416
  'eventId': string;
@@ -5693,6 +5704,8 @@ export interface EventSessionUpdateInputs {
5693
5704
  'allowQuickRegister'?: boolean;
5694
5705
  'limit'?: AdvertisementCreateInputsWeight | null;
5695
5706
  'price'?: AdvertisementCreateInputsWeight | null;
5707
+ 'autoRefundEnabled'?: boolean;
5708
+ 'autoRefundPercentage'?: number | null;
5696
5709
  'locationId'?: string | null;
5697
5710
  'roundName'?: string | null;
5698
5711
  'matchName'?: string | null;
@@ -49644,6 +49657,203 @@ export declare class EventsSessionsMatchesApi extends BaseAPI {
49644
49657
  */
49645
49658
  updateEventSessionRoundQuestion(requestParameters: EventsSessionsMatchesApiUpdateEventSessionRoundQuestionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateEventSessionRoundQuestion200Response, any, {}>>;
49646
49659
  }
49660
+ /**
49661
+ * EventsSessionsPricesApi - axios parameter creator
49662
+ */
49663
+ export declare const EventsSessionsPricesApiAxiosParamCreator: (configuration?: Configuration) => {
49664
+ /**
49665
+ * Create Event Session Price endpoint
49666
+ * @summary Create Event Session Price
49667
+ * @param {string} eventId The event identifier
49668
+ * @param {string} sessionId The session identifier
49669
+ * @param {string} passTypeId Filter by passTypeId
49670
+ * @param {number} price Filter by price
49671
+ * @param {*} [options] Override http request option.
49672
+ * @throws {RequiredError}
49673
+ */
49674
+ createEventSessionPrice: (eventId: string, sessionId: string, passTypeId: string, price: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
49675
+ /**
49676
+ * Delete Event Session Price endpoint
49677
+ * @summary Delete Event Session Price
49678
+ * @param {string} eventId The event identifier
49679
+ * @param {string} sessionId The session identifier
49680
+ * @param {string} priceId The price identifier
49681
+ * @param {*} [options] Override http request option.
49682
+ * @throws {RequiredError}
49683
+ */
49684
+ deleteEventSessionPrice: (eventId: string, sessionId: string, priceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
49685
+ /**
49686
+ * Update Event Session Price endpoint
49687
+ * @summary Update Event Session Price
49688
+ * @param {string} eventId The event identifier
49689
+ * @param {string} sessionId The session identifier
49690
+ * @param {string} priceId The price identifier
49691
+ * @param {string} [passTypeId] Filter by passTypeId
49692
+ * @param {number} [price] Filter by price
49693
+ * @param {*} [options] Override http request option.
49694
+ * @throws {RequiredError}
49695
+ */
49696
+ updateEventSessionPrice: (eventId: string, sessionId: string, priceId: string, passTypeId?: string, price?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
49697
+ };
49698
+ /**
49699
+ * EventsSessionsPricesApi - functional programming interface
49700
+ */
49701
+ export declare const EventsSessionsPricesApiFp: (configuration?: Configuration) => {
49702
+ /**
49703
+ * Create Event Session Price endpoint
49704
+ * @summary Create Event Session Price
49705
+ * @param {string} eventId The event identifier
49706
+ * @param {string} sessionId The session identifier
49707
+ * @param {string} passTypeId Filter by passTypeId
49708
+ * @param {number} price Filter by price
49709
+ * @param {*} [options] Override http request option.
49710
+ * @throws {RequiredError}
49711
+ */
49712
+ createEventSessionPrice(eventId: string, sessionId: string, passTypeId: string, price: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
49713
+ /**
49714
+ * Delete Event Session Price endpoint
49715
+ * @summary Delete Event Session Price
49716
+ * @param {string} eventId The event identifier
49717
+ * @param {string} sessionId The session identifier
49718
+ * @param {string} priceId The price identifier
49719
+ * @param {*} [options] Override http request option.
49720
+ * @throws {RequiredError}
49721
+ */
49722
+ deleteEventSessionPrice(eventId: string, sessionId: string, priceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
49723
+ /**
49724
+ * Update Event Session Price endpoint
49725
+ * @summary Update Event Session Price
49726
+ * @param {string} eventId The event identifier
49727
+ * @param {string} sessionId The session identifier
49728
+ * @param {string} priceId The price identifier
49729
+ * @param {string} [passTypeId] Filter by passTypeId
49730
+ * @param {number} [price] Filter by price
49731
+ * @param {*} [options] Override http request option.
49732
+ * @throws {RequiredError}
49733
+ */
49734
+ updateEventSessionPrice(eventId: string, sessionId: string, priceId: string, passTypeId?: string, price?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
49735
+ };
49736
+ /**
49737
+ * EventsSessionsPricesApi - factory interface
49738
+ */
49739
+ export declare const EventsSessionsPricesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
49740
+ /**
49741
+ * Create Event Session Price endpoint
49742
+ * @summary Create Event Session Price
49743
+ * @param {EventsSessionsPricesApiCreateEventSessionPriceRequest} requestParameters Request parameters.
49744
+ * @param {*} [options] Override http request option.
49745
+ * @throws {RequiredError}
49746
+ */
49747
+ createEventSessionPrice(requestParameters: EventsSessionsPricesApiCreateEventSessionPriceRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
49748
+ /**
49749
+ * Delete Event Session Price endpoint
49750
+ * @summary Delete Event Session Price
49751
+ * @param {EventsSessionsPricesApiDeleteEventSessionPriceRequest} requestParameters Request parameters.
49752
+ * @param {*} [options] Override http request option.
49753
+ * @throws {RequiredError}
49754
+ */
49755
+ deleteEventSessionPrice(requestParameters: EventsSessionsPricesApiDeleteEventSessionPriceRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
49756
+ /**
49757
+ * Update Event Session Price endpoint
49758
+ * @summary Update Event Session Price
49759
+ * @param {EventsSessionsPricesApiUpdateEventSessionPriceRequest} requestParameters Request parameters.
49760
+ * @param {*} [options] Override http request option.
49761
+ * @throws {RequiredError}
49762
+ */
49763
+ updateEventSessionPrice(requestParameters: EventsSessionsPricesApiUpdateEventSessionPriceRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
49764
+ };
49765
+ /**
49766
+ * Request parameters for createEventSessionPrice operation in EventsSessionsPricesApi.
49767
+ */
49768
+ export interface EventsSessionsPricesApiCreateEventSessionPriceRequest {
49769
+ /**
49770
+ * The event identifier
49771
+ */
49772
+ readonly eventId: string;
49773
+ /**
49774
+ * The session identifier
49775
+ */
49776
+ readonly sessionId: string;
49777
+ /**
49778
+ * Filter by passTypeId
49779
+ */
49780
+ readonly passTypeId: string;
49781
+ /**
49782
+ * Filter by price
49783
+ */
49784
+ readonly price: number;
49785
+ }
49786
+ /**
49787
+ * Request parameters for deleteEventSessionPrice operation in EventsSessionsPricesApi.
49788
+ */
49789
+ export interface EventsSessionsPricesApiDeleteEventSessionPriceRequest {
49790
+ /**
49791
+ * The event identifier
49792
+ */
49793
+ readonly eventId: string;
49794
+ /**
49795
+ * The session identifier
49796
+ */
49797
+ readonly sessionId: string;
49798
+ /**
49799
+ * The price identifier
49800
+ */
49801
+ readonly priceId: string;
49802
+ }
49803
+ /**
49804
+ * Request parameters for updateEventSessionPrice operation in EventsSessionsPricesApi.
49805
+ */
49806
+ export interface EventsSessionsPricesApiUpdateEventSessionPriceRequest {
49807
+ /**
49808
+ * The event identifier
49809
+ */
49810
+ readonly eventId: string;
49811
+ /**
49812
+ * The session identifier
49813
+ */
49814
+ readonly sessionId: string;
49815
+ /**
49816
+ * The price identifier
49817
+ */
49818
+ readonly priceId: string;
49819
+ /**
49820
+ * Filter by passTypeId
49821
+ */
49822
+ readonly passTypeId?: string;
49823
+ /**
49824
+ * Filter by price
49825
+ */
49826
+ readonly price?: number;
49827
+ }
49828
+ /**
49829
+ * EventsSessionsPricesApi - object-oriented interface
49830
+ */
49831
+ export declare class EventsSessionsPricesApi extends BaseAPI {
49832
+ /**
49833
+ * Create Event Session Price endpoint
49834
+ * @summary Create Event Session Price
49835
+ * @param {EventsSessionsPricesApiCreateEventSessionPriceRequest} requestParameters Request parameters.
49836
+ * @param {*} [options] Override http request option.
49837
+ * @throws {RequiredError}
49838
+ */
49839
+ createEventSessionPrice(requestParameters: EventsSessionsPricesApiCreateEventSessionPriceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
49840
+ /**
49841
+ * Delete Event Session Price endpoint
49842
+ * @summary Delete Event Session Price
49843
+ * @param {EventsSessionsPricesApiDeleteEventSessionPriceRequest} requestParameters Request parameters.
49844
+ * @param {*} [options] Override http request option.
49845
+ * @throws {RequiredError}
49846
+ */
49847
+ deleteEventSessionPrice(requestParameters: EventsSessionsPricesApiDeleteEventSessionPriceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
49848
+ /**
49849
+ * Update Event Session Price endpoint
49850
+ * @summary Update Event Session Price
49851
+ * @param {EventsSessionsPricesApiUpdateEventSessionPriceRequest} requestParameters Request parameters.
49852
+ * @param {*} [options] Override http request option.
49853
+ * @throws {RequiredError}
49854
+ */
49855
+ updateEventSessionPrice(requestParameters: EventsSessionsPricesApiUpdateEventSessionPriceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
49856
+ }
49647
49857
  /**
49648
49858
  * EventsSessionsQuestionsApi - axios parameter creator
49649
49859
  */