@connectedxm/admin-sdk 6.7.7 → 6.9.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.
Files changed (44) hide show
  1. package/.openapi-generator/FILES +13 -0
  2. package/AdminApi.ts +9 -1
  3. package/README.md +28 -0
  4. package/api.ts +2619 -564
  5. package/dist/AdminApi.d.ts +5 -1
  6. package/dist/AdminApi.js +4 -1
  7. package/dist/api.d.ts +1122 -30
  8. package/dist/api.js +1759 -286
  9. package/dist/esm/AdminApi.d.ts +5 -1
  10. package/dist/esm/AdminApi.js +5 -2
  11. package/dist/esm/api.d.ts +1122 -30
  12. package/dist/esm/api.js +1729 -264
  13. package/docs/AccountCreateInputs.md +2 -0
  14. package/docs/AccountUpdateInputs.md +2 -0
  15. package/docs/BaseEventActivation.md +2 -0
  16. package/docs/BaseEventBlock.md +28 -0
  17. package/docs/BaseSeriesRegistration.md +32 -0
  18. package/docs/BaseSurvey.md +2 -0
  19. package/docs/BaseSurveySubmission.md +6 -0
  20. package/docs/CreateEventBlock200Response.md +24 -0
  21. package/docs/EventActivation.md +2 -0
  22. package/docs/EventBlock.md +36 -0
  23. package/docs/EventBlockCreateInputs.md +26 -0
  24. package/docs/EventBlockUpdateInputs.md +26 -0
  25. package/docs/EventSession.md +2 -0
  26. package/docs/EventsBlocksApi.md +479 -0
  27. package/docs/EventsCouponsApi.md +3 -0
  28. package/docs/EventsSessionsApi.md +183 -0
  29. package/docs/GetEventBlocks200Response.md +26 -0
  30. package/docs/Series.md +8 -0
  31. package/docs/SeriesCreateInputs.md +10 -0
  32. package/docs/SeriesRegistration.md +36 -0
  33. package/docs/SeriesRegistrationCreateInputs.md +20 -0
  34. package/docs/SeriesRegistrationUpdateInputs.md +20 -0
  35. package/docs/SeriesRegistrationsApi.md +354 -0
  36. package/docs/SeriesUpdateInputs.md +10 -0
  37. package/docs/Survey.md +18 -0
  38. package/docs/SurveyAllOfCount.md +20 -0
  39. package/docs/SurveyCreateInputs.md +8 -0
  40. package/docs/SurveySubmission.md +6 -0
  41. package/docs/SurveySubmissionUpdateInputs.md +4 -0
  42. package/docs/SurveyUpdateInputs.md +8 -0
  43. package/docs/SurveysApi.md +6 -0
  44. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -215,6 +215,7 @@ export interface AccountCreateInputs {
215
215
  'attributes'?: {
216
216
  [key: string]: any;
217
217
  } | null;
218
+ 'confirmationEmailCount'?: number;
218
219
  }
219
220
  export interface AccountInvitation {
220
221
  'email': string;
@@ -249,6 +250,7 @@ export interface AccountUpdateInputs {
249
250
  'attributes'?: {
250
251
  [key: string]: any;
251
252
  } | null;
253
+ 'confirmationEmailCount'?: number;
252
254
  }
253
255
  export interface ActivationCompletion {
254
256
  'id': string;
@@ -1084,6 +1086,7 @@ export interface BaseEventActivation {
1084
1086
  'startAfter': string | null;
1085
1087
  'type': EventActivationType;
1086
1088
  'accessLevel': PassTypeAccessLevel;
1089
+ 'survey': BaseSurvey | null;
1087
1090
  }
1088
1091
  export interface BaseEventAddOn {
1089
1092
  'id': string;
@@ -1110,6 +1113,13 @@ export interface BaseEventAttendee {
1110
1113
  'eventId': string;
1111
1114
  'event': BaseEvent;
1112
1115
  }
1116
+ export interface BaseEventBlock {
1117
+ 'id': string;
1118
+ 'name': string;
1119
+ 'description': string | null;
1120
+ 'limit': number;
1121
+ 'grouped': boolean;
1122
+ }
1113
1123
  export interface BaseEventEmail {
1114
1124
  'type': EventEmailType;
1115
1125
  'eventId': string;
@@ -1999,6 +2009,15 @@ export interface BaseSeries {
1999
2009
  'imageId': string | null;
2000
2010
  'image': BaseImage | null;
2001
2011
  }
2012
+ export interface BaseSeriesRegistration {
2013
+ 'id': string;
2014
+ 'organizationId': string;
2015
+ 'seriesId': string;
2016
+ 'series': BaseSeries;
2017
+ 'accountId': string;
2018
+ 'account': BaseAccount;
2019
+ 'status': PurchaseStatus;
2020
+ }
2002
2021
  export interface BaseSideEffect {
2003
2022
  'id': string;
2004
2023
  'newPassOfPassTypeId': string | null;
@@ -2110,6 +2129,7 @@ export interface BaseSurvey {
2110
2129
  'id': string;
2111
2130
  'slug': string;
2112
2131
  'name': string;
2132
+ 'active': boolean;
2113
2133
  'description': string | null;
2114
2134
  'image': BaseImage;
2115
2135
  'requireAuth': boolean;
@@ -2192,7 +2212,10 @@ export interface BaseSurveySectionQuestion {
2192
2212
  }
2193
2213
  export interface BaseSurveySubmission {
2194
2214
  'id': string;
2215
+ 'accountId': string | null;
2195
2216
  'account': BaseAccount | null;
2217
+ 'passId': string | null;
2218
+ 'pass': BaseEventPass | null;
2196
2219
  'status': PurchaseStatus;
2197
2220
  'responses': Array<BaseSurveyQuestionResponse>;
2198
2221
  }
@@ -3101,6 +3124,14 @@ export interface CreateEventAttendee200Response {
3101
3124
  export declare enum CreateEventAttendee200ResponseStatusEnum {
3102
3125
  Ok = "ok"
3103
3126
  }
3127
+ export interface CreateEventBlock200Response {
3128
+ 'status': CreateEventBlock200ResponseStatusEnum;
3129
+ 'message': string;
3130
+ 'data': EventBlock;
3131
+ }
3132
+ export declare enum CreateEventBlock200ResponseStatusEnum {
3133
+ Ok = "ok"
3134
+ }
3104
3135
  export interface CreateEventCoupon200Response {
3105
3136
  'status': CreateEventCoupon200ResponseStatusEnum;
3106
3137
  'message': string;
@@ -3657,6 +3688,7 @@ export interface EventActivation {
3657
3688
  'startAfter': string | null;
3658
3689
  'type': EventActivationType;
3659
3690
  'accessLevel': PassTypeAccessLevel;
3691
+ 'survey': BaseSurvey | null;
3660
3692
  'eventId': string;
3661
3693
  'event': BaseEvent;
3662
3694
  'imageId': string | null;
@@ -3836,6 +3868,29 @@ export interface EventBadgeFieldUpdateInputs {
3836
3868
  'iconData'?: string | null;
3837
3869
  'sessionId'?: string | null;
3838
3870
  }
3871
+ export interface EventBlock {
3872
+ 'id': string;
3873
+ 'name': string;
3874
+ 'description': string | null;
3875
+ 'limit': number;
3876
+ 'grouped': boolean;
3877
+ 'event': BaseEvent;
3878
+ 'sessions': Array<BaseEventSession>;
3879
+ 'createdAt': string;
3880
+ 'updatedAt': string;
3881
+ }
3882
+ export interface EventBlockCreateInputs {
3883
+ 'name': string;
3884
+ 'description'?: string;
3885
+ 'limit'?: number;
3886
+ 'grouped'?: boolean;
3887
+ }
3888
+ export interface EventBlockUpdateInputs {
3889
+ 'name'?: string;
3890
+ 'description'?: string | null;
3891
+ 'limit'?: number;
3892
+ 'grouped'?: boolean;
3893
+ }
3839
3894
  export interface EventCouponCreateInputs {
3840
3895
  'code': string;
3841
3896
  'description'?: string | null;
@@ -4597,6 +4652,7 @@ export interface EventSession {
4597
4652
  'speakers': Array<BaseEventSpeaker>;
4598
4653
  'meetingId': string | null;
4599
4654
  'meeting': BaseMeeting | null;
4655
+ 'blocks': Array<BaseEventBlock> | null;
4600
4656
  }
4601
4657
  export interface EventSessionAccess {
4602
4658
  'id': string;
@@ -5652,6 +5708,15 @@ export interface GetEventAttendees200Response {
5652
5708
  export declare enum GetEventAttendees200ResponseStatusEnum {
5653
5709
  Ok = "ok"
5654
5710
  }
5711
+ export interface GetEventBlocks200Response {
5712
+ 'status': GetEventBlocks200ResponseStatusEnum;
5713
+ 'message': string;
5714
+ 'data': Array<EventBlock>;
5715
+ 'count'?: number;
5716
+ }
5717
+ export declare enum GetEventBlocks200ResponseStatusEnum {
5718
+ Ok = "ok"
5719
+ }
5655
5720
  export interface GetEventEmail200Response {
5656
5721
  'status': GetEventEmail200ResponseStatusEnum;
5657
5722
  'message': string;
@@ -8409,6 +8474,10 @@ export interface Series {
8409
8474
  'templateId': string;
8410
8475
  'template': BaseEvent;
8411
8476
  'sortOrder': number;
8477
+ 'price': number | null;
8478
+ 'taxCode': string | null;
8479
+ 'taxIncluded': boolean;
8480
+ 'taxLocation': TaxLocationType;
8412
8481
  'createdAt': string;
8413
8482
  'updatedAt': string;
8414
8483
  }
@@ -8421,6 +8490,28 @@ export interface SeriesCreateInputs {
8421
8490
  'templateId': string;
8422
8491
  'startDate'?: string | null;
8423
8492
  'endDate'?: string | null;
8493
+ 'registration'?: boolean;
8494
+ 'price'?: number;
8495
+ 'taxCode'?: string | null;
8496
+ 'taxIncluded'?: boolean;
8497
+ 'taxLocation'?: TaxLocationType;
8498
+ }
8499
+ export interface SeriesRegistration {
8500
+ 'id': string;
8501
+ 'organizationId': string;
8502
+ 'seriesId': string;
8503
+ 'series': BaseSeries;
8504
+ 'accountId': string;
8505
+ 'account': BaseAccount;
8506
+ 'status': PurchaseStatus;
8507
+ 'createdAt': string;
8508
+ 'updatedAt': string;
8509
+ }
8510
+ export interface SeriesRegistrationCreateInputs {
8511
+ 'accountId': string;
8512
+ }
8513
+ export interface SeriesRegistrationUpdateInputs {
8514
+ 'status'?: PurchaseStatus;
8424
8515
  }
8425
8516
  export interface SeriesUpdateInputs {
8426
8517
  'name'?: string | null;
@@ -8431,6 +8522,11 @@ export interface SeriesUpdateInputs {
8431
8522
  'templateId'?: string;
8432
8523
  'startDate'?: string | null;
8433
8524
  'endDate'?: string | null;
8525
+ 'registration'?: boolean;
8526
+ 'price'?: number;
8527
+ 'taxCode'?: string | null;
8528
+ 'taxIncluded'?: boolean;
8529
+ 'taxLocation'?: TaxLocationType;
8434
8530
  }
8435
8531
  export declare enum SessionAccess {
8436
8532
  Public = "PUBLIC",
@@ -8867,6 +8963,7 @@ export interface Survey {
8867
8963
  'id': string;
8868
8964
  'slug': string;
8869
8965
  'name': string;
8966
+ 'active': boolean;
8870
8967
  'description': string | null;
8871
8968
  'image': BaseImage;
8872
8969
  'requireAuth': boolean;
@@ -8875,16 +8972,31 @@ export interface Survey {
8875
8972
  'emailBody': string | null;
8876
8973
  'createdAt': string;
8877
8974
  'updatedAt': string;
8975
+ 'eventId': string | null;
8976
+ 'event': BaseEvent | null;
8977
+ 'sessionId': string | null;
8978
+ 'session': BaseEventSession | null;
8979
+ 'activationId': string | null;
8980
+ 'activation': BaseEventActivation | null;
8981
+ 'passTypes': Array<BaseEventPassType> | null;
8982
+ '_count': SurveyAllOfCount;
8983
+ }
8984
+ export interface SurveyAllOfCount {
8985
+ 'submissions': number;
8878
8986
  }
8879
8987
  export interface SurveyCreateInputs {
8880
8988
  'name': string;
8881
8989
  'slug'?: string;
8990
+ 'active'?: boolean;
8882
8991
  'description'?: string | null;
8883
8992
  'imageId'?: string | null;
8884
8993
  'requireAuth'?: boolean;
8885
8994
  'submissionsPerAccount'?: InvoiceLineItemCreateInputsQuantity;
8886
8995
  'replyTo'?: string | null;
8887
8996
  'emailBody'?: string | null;
8997
+ 'eventId'?: string | null;
8998
+ 'sessionId'?: string | null;
8999
+ 'activationId'?: string | null;
8888
9000
  }
8889
9001
  export interface SurveyQuestion {
8890
9002
  'id': string;
@@ -9106,7 +9218,10 @@ export interface SurveySectionUpdateInputs {
9106
9218
  }
9107
9219
  export interface SurveySubmission {
9108
9220
  'id': string;
9221
+ 'accountId': string | null;
9109
9222
  'account': BaseAccount | null;
9223
+ 'passId': string | null;
9224
+ 'pass': BaseEventPass | null;
9110
9225
  'status': PurchaseStatus;
9111
9226
  'responses': Array<BaseSurveyQuestionResponse>;
9112
9227
  'createdAt': string;
@@ -9114,6 +9229,8 @@ export interface SurveySubmission {
9114
9229
  }
9115
9230
  export interface SurveySubmissionUpdateInputs {
9116
9231
  'status'?: PurchaseStatus;
9232
+ 'accountId'?: string | null;
9233
+ 'passId'?: string | null;
9117
9234
  }
9118
9235
  export interface SurveyTranslation {
9119
9236
  'id': string;
@@ -9130,6 +9247,7 @@ export interface SurveyTranslationUpdateInputs {
9130
9247
  }
9131
9248
  export interface SurveyUpdateInputs {
9132
9249
  'name'?: string;
9250
+ 'active'?: boolean;
9133
9251
  'slug'?: string;
9134
9252
  'description'?: string | null;
9135
9253
  'imageId'?: string | null;
@@ -9137,6 +9255,9 @@ export interface SurveyUpdateInputs {
9137
9255
  'submissionsPerAccount'?: InvoiceLineItemCreateInputsQuantity;
9138
9256
  'replyTo'?: string | null;
9139
9257
  'emailBody'?: string | null;
9258
+ 'eventId'?: string | null;
9259
+ 'sessionId'?: string | null;
9260
+ 'activationId'?: string | null;
9140
9261
  }
9141
9262
  export interface SystemEventLog {
9142
9263
  'id': string;
@@ -21912,6 +22033,456 @@ export declare class EventsBenefitsApi extends BaseAPI {
21912
22033
  */
21913
22034
  removeEventBenefit(requestParameters: EventsBenefitsApiRemoveEventBenefitRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBenefit200Response, any, {}>>;
21914
22035
  }
22036
+ /**
22037
+ * EventsBlocksApi - axios parameter creator
22038
+ */
22039
+ export declare const EventsBlocksApiAxiosParamCreator: (configuration?: Configuration) => {
22040
+ /**
22041
+ * Add Event Block Session endpoint
22042
+ * @summary Add Event Block Session
22043
+ * @param {string} eventId The event identifier
22044
+ * @param {string} blockId The block identifier
22045
+ * @param {string} sessionId The session identifier
22046
+ * @param {*} [options] Override http request option.
22047
+ * @throws {RequiredError}
22048
+ */
22049
+ addEventBlockSession: (eventId: string, blockId: string, sessionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22050
+ /**
22051
+ * Create Event Block endpoint
22052
+ * @summary Create Event Block
22053
+ * @param {string} eventId The event identifier
22054
+ * @param {EventBlockCreateInputs} eventBlockCreateInputs
22055
+ * @param {*} [options] Override http request option.
22056
+ * @throws {RequiredError}
22057
+ */
22058
+ createEventBlock: (eventId: string, eventBlockCreateInputs: EventBlockCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22059
+ /**
22060
+ * Delete Event Block endpoint
22061
+ * @summary Delete Event Block
22062
+ * @param {string} eventId The event identifier
22063
+ * @param {string} blockId The block identifier
22064
+ * @param {*} [options] Override http request option.
22065
+ * @throws {RequiredError}
22066
+ */
22067
+ deleteEventBlock: (eventId: string, blockId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22068
+ /**
22069
+ * Get Event Block endpoint
22070
+ * @summary Get Event Block
22071
+ * @param {string} eventId The event identifier
22072
+ * @param {string} blockId The block identifier
22073
+ * @param {*} [options] Override http request option.
22074
+ * @throws {RequiredError}
22075
+ */
22076
+ getEventBlock: (eventId: string, blockId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22077
+ /**
22078
+ * Get Event Block Sessions endpoint
22079
+ * @summary Get Event Block Sessions
22080
+ * @param {string} eventId The event identifier
22081
+ * @param {string} blockId The block identifier
22082
+ * @param {number} [page] Page number
22083
+ * @param {number} [pageSize] Number of items per page
22084
+ * @param {string} [orderBy] Field to order by
22085
+ * @param {string} [search] Search query
22086
+ * @param {*} [options] Override http request option.
22087
+ * @throws {RequiredError}
22088
+ */
22089
+ getEventBlockSessions: (eventId: string, blockId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22090
+ /**
22091
+ * Get Event Blocks endpoint
22092
+ * @summary Get Event Blocks
22093
+ * @param {string} eventId The event identifier
22094
+ * @param {number} [page] Page number
22095
+ * @param {number} [pageSize] Number of items per page
22096
+ * @param {string} [orderBy] Field to order by
22097
+ * @param {string} [search] Search query
22098
+ * @param {*} [options] Override http request option.
22099
+ * @throws {RequiredError}
22100
+ */
22101
+ getEventBlocks: (eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22102
+ /**
22103
+ * Remove Event Block Session endpoint
22104
+ * @summary Remove Event Block Session
22105
+ * @param {string} eventId The event identifier
22106
+ * @param {string} blockId The block identifier
22107
+ * @param {string} sessionId The session identifier
22108
+ * @param {*} [options] Override http request option.
22109
+ * @throws {RequiredError}
22110
+ */
22111
+ removeEventBlockSession: (eventId: string, blockId: string, sessionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22112
+ /**
22113
+ * Update Event Block endpoint
22114
+ * @summary Update Event Block
22115
+ * @param {string} eventId The event identifier
22116
+ * @param {string} blockId The block identifier
22117
+ * @param {EventBlockUpdateInputs} eventBlockUpdateInputs
22118
+ * @param {*} [options] Override http request option.
22119
+ * @throws {RequiredError}
22120
+ */
22121
+ updateEventBlock: (eventId: string, blockId: string, eventBlockUpdateInputs: EventBlockUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22122
+ };
22123
+ /**
22124
+ * EventsBlocksApi - functional programming interface
22125
+ */
22126
+ export declare const EventsBlocksApiFp: (configuration?: Configuration) => {
22127
+ /**
22128
+ * Add Event Block Session endpoint
22129
+ * @summary Add Event Block Session
22130
+ * @param {string} eventId The event identifier
22131
+ * @param {string} blockId The block identifier
22132
+ * @param {string} sessionId The session identifier
22133
+ * @param {*} [options] Override http request option.
22134
+ * @throws {RequiredError}
22135
+ */
22136
+ addEventBlockSession(eventId: string, blockId: string, sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventBlock200Response>>;
22137
+ /**
22138
+ * Create Event Block endpoint
22139
+ * @summary Create Event Block
22140
+ * @param {string} eventId The event identifier
22141
+ * @param {EventBlockCreateInputs} eventBlockCreateInputs
22142
+ * @param {*} [options] Override http request option.
22143
+ * @throws {RequiredError}
22144
+ */
22145
+ createEventBlock(eventId: string, eventBlockCreateInputs: EventBlockCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventBlock200Response>>;
22146
+ /**
22147
+ * Delete Event Block endpoint
22148
+ * @summary Delete Event Block
22149
+ * @param {string} eventId The event identifier
22150
+ * @param {string} blockId The block identifier
22151
+ * @param {*} [options] Override http request option.
22152
+ * @throws {RequiredError}
22153
+ */
22154
+ deleteEventBlock(eventId: string, blockId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
22155
+ /**
22156
+ * Get Event Block endpoint
22157
+ * @summary Get Event Block
22158
+ * @param {string} eventId The event identifier
22159
+ * @param {string} blockId The block identifier
22160
+ * @param {*} [options] Override http request option.
22161
+ * @throws {RequiredError}
22162
+ */
22163
+ getEventBlock(eventId: string, blockId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventBlock200Response>>;
22164
+ /**
22165
+ * Get Event Block Sessions endpoint
22166
+ * @summary Get Event Block Sessions
22167
+ * @param {string} eventId The event identifier
22168
+ * @param {string} blockId The block identifier
22169
+ * @param {number} [page] Page number
22170
+ * @param {number} [pageSize] Number of items per page
22171
+ * @param {string} [orderBy] Field to order by
22172
+ * @param {string} [search] Search query
22173
+ * @param {*} [options] Override http request option.
22174
+ * @throws {RequiredError}
22175
+ */
22176
+ getEventBlockSessions(eventId: string, blockId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountInvitations200Response>>;
22177
+ /**
22178
+ * Get Event Blocks endpoint
22179
+ * @summary Get Event Blocks
22180
+ * @param {string} eventId The event identifier
22181
+ * @param {number} [page] Page number
22182
+ * @param {number} [pageSize] Number of items per page
22183
+ * @param {string} [orderBy] Field to order by
22184
+ * @param {string} [search] Search query
22185
+ * @param {*} [options] Override http request option.
22186
+ * @throws {RequiredError}
22187
+ */
22188
+ getEventBlocks(eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventBlocks200Response>>;
22189
+ /**
22190
+ * Remove Event Block Session endpoint
22191
+ * @summary Remove Event Block Session
22192
+ * @param {string} eventId The event identifier
22193
+ * @param {string} blockId The block identifier
22194
+ * @param {string} sessionId The session identifier
22195
+ * @param {*} [options] Override http request option.
22196
+ * @throws {RequiredError}
22197
+ */
22198
+ removeEventBlockSession(eventId: string, blockId: string, sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventBlock200Response>>;
22199
+ /**
22200
+ * Update Event Block endpoint
22201
+ * @summary Update Event Block
22202
+ * @param {string} eventId The event identifier
22203
+ * @param {string} blockId The block identifier
22204
+ * @param {EventBlockUpdateInputs} eventBlockUpdateInputs
22205
+ * @param {*} [options] Override http request option.
22206
+ * @throws {RequiredError}
22207
+ */
22208
+ updateEventBlock(eventId: string, blockId: string, eventBlockUpdateInputs: EventBlockUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventBlock200Response>>;
22209
+ };
22210
+ /**
22211
+ * EventsBlocksApi - factory interface
22212
+ */
22213
+ export declare const EventsBlocksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
22214
+ /**
22215
+ * Add Event Block Session endpoint
22216
+ * @summary Add Event Block Session
22217
+ * @param {EventsBlocksApiAddEventBlockSessionRequest} requestParameters Request parameters.
22218
+ * @param {*} [options] Override http request option.
22219
+ * @throws {RequiredError}
22220
+ */
22221
+ addEventBlockSession(requestParameters: EventsBlocksApiAddEventBlockSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventBlock200Response>;
22222
+ /**
22223
+ * Create Event Block endpoint
22224
+ * @summary Create Event Block
22225
+ * @param {EventsBlocksApiCreateEventBlockRequest} requestParameters Request parameters.
22226
+ * @param {*} [options] Override http request option.
22227
+ * @throws {RequiredError}
22228
+ */
22229
+ createEventBlock(requestParameters: EventsBlocksApiCreateEventBlockRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventBlock200Response>;
22230
+ /**
22231
+ * Delete Event Block endpoint
22232
+ * @summary Delete Event Block
22233
+ * @param {EventsBlocksApiDeleteEventBlockRequest} requestParameters Request parameters.
22234
+ * @param {*} [options] Override http request option.
22235
+ * @throws {RequiredError}
22236
+ */
22237
+ deleteEventBlock(requestParameters: EventsBlocksApiDeleteEventBlockRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
22238
+ /**
22239
+ * Get Event Block endpoint
22240
+ * @summary Get Event Block
22241
+ * @param {EventsBlocksApiGetEventBlockRequest} requestParameters Request parameters.
22242
+ * @param {*} [options] Override http request option.
22243
+ * @throws {RequiredError}
22244
+ */
22245
+ getEventBlock(requestParameters: EventsBlocksApiGetEventBlockRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventBlock200Response>;
22246
+ /**
22247
+ * Get Event Block Sessions endpoint
22248
+ * @summary Get Event Block Sessions
22249
+ * @param {EventsBlocksApiGetEventBlockSessionsRequest} requestParameters Request parameters.
22250
+ * @param {*} [options] Override http request option.
22251
+ * @throws {RequiredError}
22252
+ */
22253
+ getEventBlockSessions(requestParameters: EventsBlocksApiGetEventBlockSessionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountInvitations200Response>;
22254
+ /**
22255
+ * Get Event Blocks endpoint
22256
+ * @summary Get Event Blocks
22257
+ * @param {EventsBlocksApiGetEventBlocksRequest} requestParameters Request parameters.
22258
+ * @param {*} [options] Override http request option.
22259
+ * @throws {RequiredError}
22260
+ */
22261
+ getEventBlocks(requestParameters: EventsBlocksApiGetEventBlocksRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventBlocks200Response>;
22262
+ /**
22263
+ * Remove Event Block Session endpoint
22264
+ * @summary Remove Event Block Session
22265
+ * @param {EventsBlocksApiRemoveEventBlockSessionRequest} requestParameters Request parameters.
22266
+ * @param {*} [options] Override http request option.
22267
+ * @throws {RequiredError}
22268
+ */
22269
+ removeEventBlockSession(requestParameters: EventsBlocksApiRemoveEventBlockSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventBlock200Response>;
22270
+ /**
22271
+ * Update Event Block endpoint
22272
+ * @summary Update Event Block
22273
+ * @param {EventsBlocksApiUpdateEventBlockRequest} requestParameters Request parameters.
22274
+ * @param {*} [options] Override http request option.
22275
+ * @throws {RequiredError}
22276
+ */
22277
+ updateEventBlock(requestParameters: EventsBlocksApiUpdateEventBlockRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventBlock200Response>;
22278
+ };
22279
+ /**
22280
+ * Request parameters for addEventBlockSession operation in EventsBlocksApi.
22281
+ */
22282
+ export interface EventsBlocksApiAddEventBlockSessionRequest {
22283
+ /**
22284
+ * The event identifier
22285
+ */
22286
+ readonly eventId: string;
22287
+ /**
22288
+ * The block identifier
22289
+ */
22290
+ readonly blockId: string;
22291
+ /**
22292
+ * The session identifier
22293
+ */
22294
+ readonly sessionId: string;
22295
+ }
22296
+ /**
22297
+ * Request parameters for createEventBlock operation in EventsBlocksApi.
22298
+ */
22299
+ export interface EventsBlocksApiCreateEventBlockRequest {
22300
+ /**
22301
+ * The event identifier
22302
+ */
22303
+ readonly eventId: string;
22304
+ readonly eventBlockCreateInputs: EventBlockCreateInputs;
22305
+ }
22306
+ /**
22307
+ * Request parameters for deleteEventBlock operation in EventsBlocksApi.
22308
+ */
22309
+ export interface EventsBlocksApiDeleteEventBlockRequest {
22310
+ /**
22311
+ * The event identifier
22312
+ */
22313
+ readonly eventId: string;
22314
+ /**
22315
+ * The block identifier
22316
+ */
22317
+ readonly blockId: string;
22318
+ }
22319
+ /**
22320
+ * Request parameters for getEventBlock operation in EventsBlocksApi.
22321
+ */
22322
+ export interface EventsBlocksApiGetEventBlockRequest {
22323
+ /**
22324
+ * The event identifier
22325
+ */
22326
+ readonly eventId: string;
22327
+ /**
22328
+ * The block identifier
22329
+ */
22330
+ readonly blockId: string;
22331
+ }
22332
+ /**
22333
+ * Request parameters for getEventBlockSessions operation in EventsBlocksApi.
22334
+ */
22335
+ export interface EventsBlocksApiGetEventBlockSessionsRequest {
22336
+ /**
22337
+ * The event identifier
22338
+ */
22339
+ readonly eventId: string;
22340
+ /**
22341
+ * The block identifier
22342
+ */
22343
+ readonly blockId: string;
22344
+ /**
22345
+ * Page number
22346
+ */
22347
+ readonly page?: number;
22348
+ /**
22349
+ * Number of items per page
22350
+ */
22351
+ readonly pageSize?: number;
22352
+ /**
22353
+ * Field to order by
22354
+ */
22355
+ readonly orderBy?: string;
22356
+ /**
22357
+ * Search query
22358
+ */
22359
+ readonly search?: string;
22360
+ }
22361
+ /**
22362
+ * Request parameters for getEventBlocks operation in EventsBlocksApi.
22363
+ */
22364
+ export interface EventsBlocksApiGetEventBlocksRequest {
22365
+ /**
22366
+ * The event identifier
22367
+ */
22368
+ readonly eventId: string;
22369
+ /**
22370
+ * Page number
22371
+ */
22372
+ readonly page?: number;
22373
+ /**
22374
+ * Number of items per page
22375
+ */
22376
+ readonly pageSize?: number;
22377
+ /**
22378
+ * Field to order by
22379
+ */
22380
+ readonly orderBy?: string;
22381
+ /**
22382
+ * Search query
22383
+ */
22384
+ readonly search?: string;
22385
+ }
22386
+ /**
22387
+ * Request parameters for removeEventBlockSession operation in EventsBlocksApi.
22388
+ */
22389
+ export interface EventsBlocksApiRemoveEventBlockSessionRequest {
22390
+ /**
22391
+ * The event identifier
22392
+ */
22393
+ readonly eventId: string;
22394
+ /**
22395
+ * The block identifier
22396
+ */
22397
+ readonly blockId: string;
22398
+ /**
22399
+ * The session identifier
22400
+ */
22401
+ readonly sessionId: string;
22402
+ }
22403
+ /**
22404
+ * Request parameters for updateEventBlock operation in EventsBlocksApi.
22405
+ */
22406
+ export interface EventsBlocksApiUpdateEventBlockRequest {
22407
+ /**
22408
+ * The event identifier
22409
+ */
22410
+ readonly eventId: string;
22411
+ /**
22412
+ * The block identifier
22413
+ */
22414
+ readonly blockId: string;
22415
+ readonly eventBlockUpdateInputs: EventBlockUpdateInputs;
22416
+ }
22417
+ /**
22418
+ * EventsBlocksApi - object-oriented interface
22419
+ */
22420
+ export declare class EventsBlocksApi extends BaseAPI {
22421
+ /**
22422
+ * Add Event Block Session endpoint
22423
+ * @summary Add Event Block Session
22424
+ * @param {EventsBlocksApiAddEventBlockSessionRequest} requestParameters Request parameters.
22425
+ * @param {*} [options] Override http request option.
22426
+ * @throws {RequiredError}
22427
+ */
22428
+ addEventBlockSession(requestParameters: EventsBlocksApiAddEventBlockSessionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventBlock200Response, any, {}>>;
22429
+ /**
22430
+ * Create Event Block endpoint
22431
+ * @summary Create Event Block
22432
+ * @param {EventsBlocksApiCreateEventBlockRequest} requestParameters Request parameters.
22433
+ * @param {*} [options] Override http request option.
22434
+ * @throws {RequiredError}
22435
+ */
22436
+ createEventBlock(requestParameters: EventsBlocksApiCreateEventBlockRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventBlock200Response, any, {}>>;
22437
+ /**
22438
+ * Delete Event Block endpoint
22439
+ * @summary Delete Event Block
22440
+ * @param {EventsBlocksApiDeleteEventBlockRequest} requestParameters Request parameters.
22441
+ * @param {*} [options] Override http request option.
22442
+ * @throws {RequiredError}
22443
+ */
22444
+ deleteEventBlock(requestParameters: EventsBlocksApiDeleteEventBlockRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
22445
+ /**
22446
+ * Get Event Block endpoint
22447
+ * @summary Get Event Block
22448
+ * @param {EventsBlocksApiGetEventBlockRequest} requestParameters Request parameters.
22449
+ * @param {*} [options] Override http request option.
22450
+ * @throws {RequiredError}
22451
+ */
22452
+ getEventBlock(requestParameters: EventsBlocksApiGetEventBlockRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventBlock200Response, any, {}>>;
22453
+ /**
22454
+ * Get Event Block Sessions endpoint
22455
+ * @summary Get Event Block Sessions
22456
+ * @param {EventsBlocksApiGetEventBlockSessionsRequest} requestParameters Request parameters.
22457
+ * @param {*} [options] Override http request option.
22458
+ * @throws {RequiredError}
22459
+ */
22460
+ getEventBlockSessions(requestParameters: EventsBlocksApiGetEventBlockSessionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountInvitations200Response, any, {}>>;
22461
+ /**
22462
+ * Get Event Blocks endpoint
22463
+ * @summary Get Event Blocks
22464
+ * @param {EventsBlocksApiGetEventBlocksRequest} requestParameters Request parameters.
22465
+ * @param {*} [options] Override http request option.
22466
+ * @throws {RequiredError}
22467
+ */
22468
+ getEventBlocks(requestParameters: EventsBlocksApiGetEventBlocksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventBlocks200Response, any, {}>>;
22469
+ /**
22470
+ * Remove Event Block Session endpoint
22471
+ * @summary Remove Event Block Session
22472
+ * @param {EventsBlocksApiRemoveEventBlockSessionRequest} requestParameters Request parameters.
22473
+ * @param {*} [options] Override http request option.
22474
+ * @throws {RequiredError}
22475
+ */
22476
+ removeEventBlockSession(requestParameters: EventsBlocksApiRemoveEventBlockSessionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventBlock200Response, any, {}>>;
22477
+ /**
22478
+ * Update Event Block endpoint
22479
+ * @summary Update Event Block
22480
+ * @param {EventsBlocksApiUpdateEventBlockRequest} requestParameters Request parameters.
22481
+ * @param {*} [options] Override http request option.
22482
+ * @throws {RequiredError}
22483
+ */
22484
+ updateEventBlock(requestParameters: EventsBlocksApiUpdateEventBlockRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventBlock200Response, any, {}>>;
22485
+ }
21915
22486
  /**
21916
22487
  * EventsBypassApi - axios parameter creator
21917
22488
  */
@@ -22461,6 +23032,7 @@ export declare const EventsCouponsApiAxiosParamCreator: (configuration?: Configu
22461
23032
  * @summary Get Event Coupons
22462
23033
  * @param {string} eventId The event identifier
22463
23034
  * @param {boolean} [prePaid] Filter by prePaid
23035
+ * @param {object} [includeVariants] Filter by includeVariants
22464
23036
  * @param {number} [page] Page number
22465
23037
  * @param {number} [pageSize] Number of items per page
22466
23038
  * @param {string} [orderBy] Field to order by
@@ -22468,7 +23040,7 @@ export declare const EventsCouponsApiAxiosParamCreator: (configuration?: Configu
22468
23040
  * @param {*} [options] Override http request option.
22469
23041
  * @throws {RequiredError}
22470
23042
  */
22471
- getEventCoupons: (eventId: string, prePaid?: boolean, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23043
+ getEventCoupons: (eventId: string, prePaid?: boolean, includeVariants?: object, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22472
23044
  /**
22473
23045
  * Sync Event Coupon To Variants endpoint
22474
23046
  * @summary Sync Event Coupon To Variants
@@ -22584,6 +23156,7 @@ export declare const EventsCouponsApiFp: (configuration?: Configuration) => {
22584
23156
  * @summary Get Event Coupons
22585
23157
  * @param {string} eventId The event identifier
22586
23158
  * @param {boolean} [prePaid] Filter by prePaid
23159
+ * @param {object} [includeVariants] Filter by includeVariants
22587
23160
  * @param {number} [page] Page number
22588
23161
  * @param {number} [pageSize] Number of items per page
22589
23162
  * @param {string} [orderBy] Field to order by
@@ -22591,7 +23164,7 @@ export declare const EventsCouponsApiFp: (configuration?: Configuration) => {
22591
23164
  * @param {*} [options] Override http request option.
22592
23165
  * @throws {RequiredError}
22593
23166
  */
22594
- getEventCoupons(eventId: string, prePaid?: boolean, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventAttendeeCoupons200Response>>;
23167
+ getEventCoupons(eventId: string, prePaid?: boolean, includeVariants?: object, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventAttendeeCoupons200Response>>;
22595
23168
  /**
22596
23169
  * Sync Event Coupon To Variants endpoint
22597
23170
  * @summary Sync Event Coupon To Variants
@@ -22868,6 +23441,10 @@ export interface EventsCouponsApiGetEventCouponsRequest {
22868
23441
  * Filter by prePaid
22869
23442
  */
22870
23443
  readonly prePaid?: boolean;
23444
+ /**
23445
+ * Filter by includeVariants
23446
+ */
23447
+ readonly includeVariants?: object;
22871
23448
  /**
22872
23449
  * Page number
22873
23450
  */
@@ -34706,6 +35283,16 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
34706
35283
  * @throws {RequiredError}
34707
35284
  */
34708
35285
  addEventSessionAccount: (eventId: string, sessionId: string, accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35286
+ /**
35287
+ * Add Event Session Block endpoint
35288
+ * @summary Add Event Session Block
35289
+ * @param {string} eventId The event identifier
35290
+ * @param {string} sessionId The session identifier
35291
+ * @param {string} blockId The block identifier
35292
+ * @param {*} [options] Override http request option.
35293
+ * @throws {RequiredError}
35294
+ */
35295
+ addEventSessionBlock: (eventId: string, sessionId: string, blockId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
34709
35296
  /**
34710
35297
  * Add Event Session Pass Type endpoint
34711
35298
  * @summary Add Event Session Pass Type
@@ -34800,6 +35387,19 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
34800
35387
  * @throws {RequiredError}
34801
35388
  */
34802
35389
  getEventSessionAccounts: (eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35390
+ /**
35391
+ * Get Event Session Blocks endpoint
35392
+ * @summary Get Event Session Blocks
35393
+ * @param {string} eventId The event identifier
35394
+ * @param {string} sessionId The session identifier
35395
+ * @param {number} [page] Page number
35396
+ * @param {number} [pageSize] Number of items per page
35397
+ * @param {string} [orderBy] Field to order by
35398
+ * @param {string} [search] Search query
35399
+ * @param {*} [options] Override http request option.
35400
+ * @throws {RequiredError}
35401
+ */
35402
+ getEventSessionBlocks: (eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
34803
35403
  /**
34804
35404
  * Get Event Session Pass Types endpoint
34805
35405
  * @summary Get Event Session Pass Types
@@ -34887,6 +35487,16 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
34887
35487
  * @throws {RequiredError}
34888
35488
  */
34889
35489
  removeEventSessionAccount: (eventId: string, sessionId: string, accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35490
+ /**
35491
+ * Remove Event Session Block endpoint
35492
+ * @summary Remove Event Session Block
35493
+ * @param {string} eventId The event identifier
35494
+ * @param {string} sessionId The session identifier
35495
+ * @param {string} blockId The block identifier
35496
+ * @param {*} [options] Override http request option.
35497
+ * @throws {RequiredError}
35498
+ */
35499
+ removeEventSessionBlock: (eventId: string, sessionId: string, blockId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
34890
35500
  /**
34891
35501
  * Remove Event Session Pass Type endpoint
34892
35502
  * @summary Remove Event Session Pass Type
@@ -34952,6 +35562,16 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
34952
35562
  * @throws {RequiredError}
34953
35563
  */
34954
35564
  addEventSessionAccount(eventId: string, sessionId: string, accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
35565
+ /**
35566
+ * Add Event Session Block endpoint
35567
+ * @summary Add Event Session Block
35568
+ * @param {string} eventId The event identifier
35569
+ * @param {string} sessionId The session identifier
35570
+ * @param {string} blockId The block identifier
35571
+ * @param {*} [options] Override http request option.
35572
+ * @throws {RequiredError}
35573
+ */
35574
+ addEventSessionBlock(eventId: string, sessionId: string, blockId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
34955
35575
  /**
34956
35576
  * Add Event Session Pass Type endpoint
34957
35577
  * @summary Add Event Session Pass Type
@@ -35046,6 +35666,19 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
35046
35666
  * @throws {RequiredError}
35047
35667
  */
35048
35668
  getEventSessionAccounts(eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccounts200Response>>;
35669
+ /**
35670
+ * Get Event Session Blocks endpoint
35671
+ * @summary Get Event Session Blocks
35672
+ * @param {string} eventId The event identifier
35673
+ * @param {string} sessionId The session identifier
35674
+ * @param {number} [page] Page number
35675
+ * @param {number} [pageSize] Number of items per page
35676
+ * @param {string} [orderBy] Field to order by
35677
+ * @param {string} [search] Search query
35678
+ * @param {*} [options] Override http request option.
35679
+ * @throws {RequiredError}
35680
+ */
35681
+ getEventSessionBlocks(eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventBlocks200Response>>;
35049
35682
  /**
35050
35683
  * Get Event Session Pass Types endpoint
35051
35684
  * @summary Get Event Session Pass Types
@@ -35133,6 +35766,16 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
35133
35766
  * @throws {RequiredError}
35134
35767
  */
35135
35768
  removeEventSessionAccount(eventId: string, sessionId: string, accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
35769
+ /**
35770
+ * Remove Event Session Block endpoint
35771
+ * @summary Remove Event Session Block
35772
+ * @param {string} eventId The event identifier
35773
+ * @param {string} sessionId The session identifier
35774
+ * @param {string} blockId The block identifier
35775
+ * @param {*} [options] Override http request option.
35776
+ * @throws {RequiredError}
35777
+ */
35778
+ removeEventSessionBlock(eventId: string, sessionId: string, blockId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
35136
35779
  /**
35137
35780
  * Remove Event Session Pass Type endpoint
35138
35781
  * @summary Remove Event Session Pass Type
@@ -35196,6 +35839,14 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
35196
35839
  * @throws {RequiredError}
35197
35840
  */
35198
35841
  addEventSessionAccount(requestParameters: EventsSessionsApiAddEventSessionAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
35842
+ /**
35843
+ * Add Event Session Block endpoint
35844
+ * @summary Add Event Session Block
35845
+ * @param {EventsSessionsApiAddEventSessionBlockRequest} requestParameters Request parameters.
35846
+ * @param {*} [options] Override http request option.
35847
+ * @throws {RequiredError}
35848
+ */
35849
+ addEventSessionBlock(requestParameters: EventsSessionsApiAddEventSessionBlockRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
35199
35850
  /**
35200
35851
  * Add Event Session Pass Type endpoint
35201
35852
  * @summary Add Event Session Pass Type
@@ -35268,6 +35919,14 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
35268
35919
  * @throws {RequiredError}
35269
35920
  */
35270
35921
  getEventSessionAccounts(requestParameters: EventsSessionsApiGetEventSessionAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccounts200Response>;
35922
+ /**
35923
+ * Get Event Session Blocks endpoint
35924
+ * @summary Get Event Session Blocks
35925
+ * @param {EventsSessionsApiGetEventSessionBlocksRequest} requestParameters Request parameters.
35926
+ * @param {*} [options] Override http request option.
35927
+ * @throws {RequiredError}
35928
+ */
35929
+ getEventSessionBlocks(requestParameters: EventsSessionsApiGetEventSessionBlocksRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventBlocks200Response>;
35271
35930
  /**
35272
35931
  * Get Event Session Pass Types endpoint
35273
35932
  * @summary Get Event Session Pass Types
@@ -35324,6 +35983,14 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
35324
35983
  * @throws {RequiredError}
35325
35984
  */
35326
35985
  removeEventSessionAccount(requestParameters: EventsSessionsApiRemoveEventSessionAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
35986
+ /**
35987
+ * Remove Event Session Block endpoint
35988
+ * @summary Remove Event Session Block
35989
+ * @param {EventsSessionsApiRemoveEventSessionBlockRequest} requestParameters Request parameters.
35990
+ * @param {*} [options] Override http request option.
35991
+ * @throws {RequiredError}
35992
+ */
35993
+ removeEventSessionBlock(requestParameters: EventsSessionsApiRemoveEventSessionBlockRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
35327
35994
  /**
35328
35995
  * Remove Event Session Pass Type endpoint
35329
35996
  * @summary Remove Event Session Pass Type
@@ -35382,6 +36049,23 @@ export interface EventsSessionsApiAddEventSessionAccountRequest {
35382
36049
  */
35383
36050
  readonly accountId: string;
35384
36051
  }
36052
+ /**
36053
+ * Request parameters for addEventSessionBlock operation in EventsSessionsApi.
36054
+ */
36055
+ export interface EventsSessionsApiAddEventSessionBlockRequest {
36056
+ /**
36057
+ * The event identifier
36058
+ */
36059
+ readonly eventId: string;
36060
+ /**
36061
+ * The session identifier
36062
+ */
36063
+ readonly sessionId: string;
36064
+ /**
36065
+ * The block identifier
36066
+ */
36067
+ readonly blockId: string;
36068
+ }
35385
36069
  /**
35386
36070
  * Request parameters for addEventSessionPassType operation in EventsSessionsApi.
35387
36071
  */
@@ -35548,6 +36232,35 @@ export interface EventsSessionsApiGetEventSessionAccountsRequest {
35548
36232
  */
35549
36233
  readonly search?: string;
35550
36234
  }
36235
+ /**
36236
+ * Request parameters for getEventSessionBlocks operation in EventsSessionsApi.
36237
+ */
36238
+ export interface EventsSessionsApiGetEventSessionBlocksRequest {
36239
+ /**
36240
+ * The event identifier
36241
+ */
36242
+ readonly eventId: string;
36243
+ /**
36244
+ * The session identifier
36245
+ */
36246
+ readonly sessionId: string;
36247
+ /**
36248
+ * Page number
36249
+ */
36250
+ readonly page?: number;
36251
+ /**
36252
+ * Number of items per page
36253
+ */
36254
+ readonly pageSize?: number;
36255
+ /**
36256
+ * Field to order by
36257
+ */
36258
+ readonly orderBy?: string;
36259
+ /**
36260
+ * Search query
36261
+ */
36262
+ readonly search?: string;
36263
+ }
35551
36264
  /**
35552
36265
  * Request parameters for getEventSessionPassTypes operation in EventsSessionsApi.
35553
36266
  */
@@ -35636,9 +36349,38 @@ export interface EventsSessionsApiGetEventSessionSpeakersRequest {
35636
36349
  readonly search?: string;
35637
36350
  }
35638
36351
  /**
35639
- * Request parameters for getEventSessionSponsors operation in EventsSessionsApi.
36352
+ * Request parameters for getEventSessionSponsors operation in EventsSessionsApi.
36353
+ */
36354
+ export interface EventsSessionsApiGetEventSessionSponsorsRequest {
36355
+ /**
36356
+ * The event identifier
36357
+ */
36358
+ readonly eventId: string;
36359
+ /**
36360
+ * The session identifier
36361
+ */
36362
+ readonly sessionId: string;
36363
+ /**
36364
+ * Page number
36365
+ */
36366
+ readonly page?: number;
36367
+ /**
36368
+ * Number of items per page
36369
+ */
36370
+ readonly pageSize?: number;
36371
+ /**
36372
+ * Field to order by
36373
+ */
36374
+ readonly orderBy?: string;
36375
+ /**
36376
+ * Search query
36377
+ */
36378
+ readonly search?: string;
36379
+ }
36380
+ /**
36381
+ * Request parameters for getEventSessionTracks operation in EventsSessionsApi.
35640
36382
  */
35641
- export interface EventsSessionsApiGetEventSessionSponsorsRequest {
36383
+ export interface EventsSessionsApiGetEventSessionTracksRequest {
35642
36384
  /**
35643
36385
  * The event identifier
35644
36386
  */
@@ -35665,17 +36407,13 @@ export interface EventsSessionsApiGetEventSessionSponsorsRequest {
35665
36407
  readonly search?: string;
35666
36408
  }
35667
36409
  /**
35668
- * Request parameters for getEventSessionTracks operation in EventsSessionsApi.
36410
+ * Request parameters for getEventSessions operation in EventsSessionsApi.
35669
36411
  */
35670
- export interface EventsSessionsApiGetEventSessionTracksRequest {
36412
+ export interface EventsSessionsApiGetEventSessionsRequest {
35671
36413
  /**
35672
36414
  * The event identifier
35673
36415
  */
35674
36416
  readonly eventId: string;
35675
- /**
35676
- * The session identifier
35677
- */
35678
- readonly sessionId: string;
35679
36417
  /**
35680
36418
  * Page number
35681
36419
  */
@@ -35694,34 +36432,26 @@ export interface EventsSessionsApiGetEventSessionTracksRequest {
35694
36432
  readonly search?: string;
35695
36433
  }
35696
36434
  /**
35697
- * Request parameters for getEventSessions operation in EventsSessionsApi.
36435
+ * Request parameters for removeEventSessionAccount operation in EventsSessionsApi.
35698
36436
  */
35699
- export interface EventsSessionsApiGetEventSessionsRequest {
36437
+ export interface EventsSessionsApiRemoveEventSessionAccountRequest {
35700
36438
  /**
35701
36439
  * The event identifier
35702
36440
  */
35703
36441
  readonly eventId: string;
35704
36442
  /**
35705
- * Page number
35706
- */
35707
- readonly page?: number;
35708
- /**
35709
- * Number of items per page
35710
- */
35711
- readonly pageSize?: number;
35712
- /**
35713
- * Field to order by
36443
+ * The session identifier
35714
36444
  */
35715
- readonly orderBy?: string;
36445
+ readonly sessionId: string;
35716
36446
  /**
35717
- * Search query
36447
+ * The account identifier
35718
36448
  */
35719
- readonly search?: string;
36449
+ readonly accountId: string;
35720
36450
  }
35721
36451
  /**
35722
- * Request parameters for removeEventSessionAccount operation in EventsSessionsApi.
36452
+ * Request parameters for removeEventSessionBlock operation in EventsSessionsApi.
35723
36453
  */
35724
- export interface EventsSessionsApiRemoveEventSessionAccountRequest {
36454
+ export interface EventsSessionsApiRemoveEventSessionBlockRequest {
35725
36455
  /**
35726
36456
  * The event identifier
35727
36457
  */
@@ -35731,9 +36461,9 @@ export interface EventsSessionsApiRemoveEventSessionAccountRequest {
35731
36461
  */
35732
36462
  readonly sessionId: string;
35733
36463
  /**
35734
- * The account identifier
36464
+ * The block identifier
35735
36465
  */
35736
- readonly accountId: string;
36466
+ readonly blockId: string;
35737
36467
  }
35738
36468
  /**
35739
36469
  * Request parameters for removeEventSessionPassType operation in EventsSessionsApi.
@@ -35832,6 +36562,14 @@ export declare class EventsSessionsApi extends BaseAPI {
35832
36562
  * @throws {RequiredError}
35833
36563
  */
35834
36564
  addEventSessionAccount(requestParameters: EventsSessionsApiAddEventSessionAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
36565
+ /**
36566
+ * Add Event Session Block endpoint
36567
+ * @summary Add Event Session Block
36568
+ * @param {EventsSessionsApiAddEventSessionBlockRequest} requestParameters Request parameters.
36569
+ * @param {*} [options] Override http request option.
36570
+ * @throws {RequiredError}
36571
+ */
36572
+ addEventSessionBlock(requestParameters: EventsSessionsApiAddEventSessionBlockRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
35835
36573
  /**
35836
36574
  * Add Event Session Pass Type endpoint
35837
36575
  * @summary Add Event Session Pass Type
@@ -35904,6 +36642,14 @@ export declare class EventsSessionsApi extends BaseAPI {
35904
36642
  * @throws {RequiredError}
35905
36643
  */
35906
36644
  getEventSessionAccounts(requestParameters: EventsSessionsApiGetEventSessionAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccounts200Response, any, {}>>;
36645
+ /**
36646
+ * Get Event Session Blocks endpoint
36647
+ * @summary Get Event Session Blocks
36648
+ * @param {EventsSessionsApiGetEventSessionBlocksRequest} requestParameters Request parameters.
36649
+ * @param {*} [options] Override http request option.
36650
+ * @throws {RequiredError}
36651
+ */
36652
+ getEventSessionBlocks(requestParameters: EventsSessionsApiGetEventSessionBlocksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventBlocks200Response, any, {}>>;
35907
36653
  /**
35908
36654
  * Get Event Session Pass Types endpoint
35909
36655
  * @summary Get Event Session Pass Types
@@ -35960,6 +36706,14 @@ export declare class EventsSessionsApi extends BaseAPI {
35960
36706
  * @throws {RequiredError}
35961
36707
  */
35962
36708
  removeEventSessionAccount(requestParameters: EventsSessionsApiRemoveEventSessionAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
36709
+ /**
36710
+ * Remove Event Session Block endpoint
36711
+ * @summary Remove Event Session Block
36712
+ * @param {EventsSessionsApiRemoveEventSessionBlockRequest} requestParameters Request parameters.
36713
+ * @param {*} [options] Override http request option.
36714
+ * @throws {RequiredError}
36715
+ */
36716
+ removeEventSessionBlock(requestParameters: EventsSessionsApiRemoveEventSessionBlockRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
35963
36717
  /**
35964
36718
  * Remove Event Session Pass Type endpoint
35965
36719
  * @summary Remove Event Session Pass Type
@@ -54200,6 +54954,332 @@ export declare class SeriesApi extends BaseAPI {
54200
54954
  */
54201
54955
  updateSeries(requestParameters: SeriesApiUpdateSeriesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateSeries200Response, any, {}>>;
54202
54956
  }
54957
+ /**
54958
+ * SeriesRegistrationsApi - axios parameter creator
54959
+ */
54960
+ export declare const SeriesRegistrationsApiAxiosParamCreator: (configuration?: Configuration) => {
54961
+ /**
54962
+ * Create Series Registration endpoint
54963
+ * @summary Create Series Registration
54964
+ * @param {string} seriesId The series identifier
54965
+ * @param {SeriesRegistrationCreateInputs} seriesRegistrationCreateInputs
54966
+ * @param {*} [options] Override http request option.
54967
+ * @throws {RequiredError}
54968
+ */
54969
+ createSeriesRegistration: (seriesId: string, seriesRegistrationCreateInputs: SeriesRegistrationCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
54970
+ /**
54971
+ * Delete Series Registration endpoint
54972
+ * @summary Delete Series Registration
54973
+ * @param {string} seriesId The series identifier
54974
+ * @param {string} registrationId The registration identifier
54975
+ * @param {*} [options] Override http request option.
54976
+ * @throws {RequiredError}
54977
+ */
54978
+ deleteSeriesRegistration: (seriesId: string, registrationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
54979
+ /**
54980
+ * Get Series Registration endpoint
54981
+ * @summary Get Series Registration
54982
+ * @param {string} seriesId The series identifier
54983
+ * @param {string} registrationId The registration identifier
54984
+ * @param {*} [options] Override http request option.
54985
+ * @throws {RequiredError}
54986
+ */
54987
+ getSeriesRegistration: (seriesId: string, registrationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
54988
+ /**
54989
+ * Get Series Registration Passes endpoint
54990
+ * @summary Get Series Registration Passes
54991
+ * @param {string} seriesId The series identifier
54992
+ * @param {string} registrationId The registration identifier
54993
+ * @param {*} [options] Override http request option.
54994
+ * @throws {RequiredError}
54995
+ */
54996
+ getSeriesRegistrationPasses: (seriesId: string, registrationId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
54997
+ /**
54998
+ * Get Series Registrations endpoint
54999
+ * @summary Get Series Registrations
55000
+ * @param {string} seriesId The series identifier
55001
+ * @param {PurchaseStatus} [status] Filter by status
55002
+ * @param {number} [page] Page number
55003
+ * @param {number} [pageSize] Number of items per page
55004
+ * @param {string} [orderBy] Field to order by
55005
+ * @param {string} [search] Search query
55006
+ * @param {*} [options] Override http request option.
55007
+ * @throws {RequiredError}
55008
+ */
55009
+ getSeriesRegistrations: (seriesId: string, status?: PurchaseStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
55010
+ /**
55011
+ * Update Series Registration endpoint
55012
+ * @summary Update Series Registration
55013
+ * @param {string} seriesId The series identifier
55014
+ * @param {string} registrationId The registration identifier
55015
+ * @param {SeriesRegistrationUpdateInputs} seriesRegistrationUpdateInputs
55016
+ * @param {*} [options] Override http request option.
55017
+ * @throws {RequiredError}
55018
+ */
55019
+ updateSeriesRegistration: (seriesId: string, registrationId: string, seriesRegistrationUpdateInputs: SeriesRegistrationUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
55020
+ };
55021
+ /**
55022
+ * SeriesRegistrationsApi - functional programming interface
55023
+ */
55024
+ export declare const SeriesRegistrationsApiFp: (configuration?: Configuration) => {
55025
+ /**
55026
+ * Create Series Registration endpoint
55027
+ * @summary Create Series Registration
55028
+ * @param {string} seriesId The series identifier
55029
+ * @param {SeriesRegistrationCreateInputs} seriesRegistrationCreateInputs
55030
+ * @param {*} [options] Override http request option.
55031
+ * @throws {RequiredError}
55032
+ */
55033
+ createSeriesRegistration(seriesId: string, seriesRegistrationCreateInputs: SeriesRegistrationCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
55034
+ /**
55035
+ * Delete Series Registration endpoint
55036
+ * @summary Delete Series Registration
55037
+ * @param {string} seriesId The series identifier
55038
+ * @param {string} registrationId The registration identifier
55039
+ * @param {*} [options] Override http request option.
55040
+ * @throws {RequiredError}
55041
+ */
55042
+ deleteSeriesRegistration(seriesId: string, registrationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
55043
+ /**
55044
+ * Get Series Registration endpoint
55045
+ * @summary Get Series Registration
55046
+ * @param {string} seriesId The series identifier
55047
+ * @param {string} registrationId The registration identifier
55048
+ * @param {*} [options] Override http request option.
55049
+ * @throws {RequiredError}
55050
+ */
55051
+ getSeriesRegistration(seriesId: string, registrationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
55052
+ /**
55053
+ * Get Series Registration Passes endpoint
55054
+ * @summary Get Series Registration Passes
55055
+ * @param {string} seriesId The series identifier
55056
+ * @param {string} registrationId The registration identifier
55057
+ * @param {*} [options] Override http request option.
55058
+ * @throws {RequiredError}
55059
+ */
55060
+ getSeriesRegistrationPasses(seriesId: string, registrationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
55061
+ /**
55062
+ * Get Series Registrations endpoint
55063
+ * @summary Get Series Registrations
55064
+ * @param {string} seriesId The series identifier
55065
+ * @param {PurchaseStatus} [status] Filter by status
55066
+ * @param {number} [page] Page number
55067
+ * @param {number} [pageSize] Number of items per page
55068
+ * @param {string} [orderBy] Field to order by
55069
+ * @param {string} [search] Search query
55070
+ * @param {*} [options] Override http request option.
55071
+ * @throws {RequiredError}
55072
+ */
55073
+ getSeriesRegistrations(seriesId: string, status?: PurchaseStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountInvitations200Response>>;
55074
+ /**
55075
+ * Update Series Registration endpoint
55076
+ * @summary Update Series Registration
55077
+ * @param {string} seriesId The series identifier
55078
+ * @param {string} registrationId The registration identifier
55079
+ * @param {SeriesRegistrationUpdateInputs} seriesRegistrationUpdateInputs
55080
+ * @param {*} [options] Override http request option.
55081
+ * @throws {RequiredError}
55082
+ */
55083
+ updateSeriesRegistration(seriesId: string, registrationId: string, seriesRegistrationUpdateInputs: SeriesRegistrationUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
55084
+ };
55085
+ /**
55086
+ * SeriesRegistrationsApi - factory interface
55087
+ */
55088
+ export declare const SeriesRegistrationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
55089
+ /**
55090
+ * Create Series Registration endpoint
55091
+ * @summary Create Series Registration
55092
+ * @param {SeriesRegistrationsApiCreateSeriesRegistrationRequest} requestParameters Request parameters.
55093
+ * @param {*} [options] Override http request option.
55094
+ * @throws {RequiredError}
55095
+ */
55096
+ createSeriesRegistration(requestParameters: SeriesRegistrationsApiCreateSeriesRegistrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
55097
+ /**
55098
+ * Delete Series Registration endpoint
55099
+ * @summary Delete Series Registration
55100
+ * @param {SeriesRegistrationsApiDeleteSeriesRegistrationRequest} requestParameters Request parameters.
55101
+ * @param {*} [options] Override http request option.
55102
+ * @throws {RequiredError}
55103
+ */
55104
+ deleteSeriesRegistration(requestParameters: SeriesRegistrationsApiDeleteSeriesRegistrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
55105
+ /**
55106
+ * Get Series Registration endpoint
55107
+ * @summary Get Series Registration
55108
+ * @param {SeriesRegistrationsApiGetSeriesRegistrationRequest} requestParameters Request parameters.
55109
+ * @param {*} [options] Override http request option.
55110
+ * @throws {RequiredError}
55111
+ */
55112
+ getSeriesRegistration(requestParameters: SeriesRegistrationsApiGetSeriesRegistrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
55113
+ /**
55114
+ * Get Series Registration Passes endpoint
55115
+ * @summary Get Series Registration Passes
55116
+ * @param {SeriesRegistrationsApiGetSeriesRegistrationPassesRequest} requestParameters Request parameters.
55117
+ * @param {*} [options] Override http request option.
55118
+ * @throws {RequiredError}
55119
+ */
55120
+ getSeriesRegistrationPasses(requestParameters: SeriesRegistrationsApiGetSeriesRegistrationPassesRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
55121
+ /**
55122
+ * Get Series Registrations endpoint
55123
+ * @summary Get Series Registrations
55124
+ * @param {SeriesRegistrationsApiGetSeriesRegistrationsRequest} requestParameters Request parameters.
55125
+ * @param {*} [options] Override http request option.
55126
+ * @throws {RequiredError}
55127
+ */
55128
+ getSeriesRegistrations(requestParameters: SeriesRegistrationsApiGetSeriesRegistrationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountInvitations200Response>;
55129
+ /**
55130
+ * Update Series Registration endpoint
55131
+ * @summary Update Series Registration
55132
+ * @param {SeriesRegistrationsApiUpdateSeriesRegistrationRequest} requestParameters Request parameters.
55133
+ * @param {*} [options] Override http request option.
55134
+ * @throws {RequiredError}
55135
+ */
55136
+ updateSeriesRegistration(requestParameters: SeriesRegistrationsApiUpdateSeriesRegistrationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
55137
+ };
55138
+ /**
55139
+ * Request parameters for createSeriesRegistration operation in SeriesRegistrationsApi.
55140
+ */
55141
+ export interface SeriesRegistrationsApiCreateSeriesRegistrationRequest {
55142
+ /**
55143
+ * The series identifier
55144
+ */
55145
+ readonly seriesId: string;
55146
+ readonly seriesRegistrationCreateInputs: SeriesRegistrationCreateInputs;
55147
+ }
55148
+ /**
55149
+ * Request parameters for deleteSeriesRegistration operation in SeriesRegistrationsApi.
55150
+ */
55151
+ export interface SeriesRegistrationsApiDeleteSeriesRegistrationRequest {
55152
+ /**
55153
+ * The series identifier
55154
+ */
55155
+ readonly seriesId: string;
55156
+ /**
55157
+ * The registration identifier
55158
+ */
55159
+ readonly registrationId: string;
55160
+ }
55161
+ /**
55162
+ * Request parameters for getSeriesRegistration operation in SeriesRegistrationsApi.
55163
+ */
55164
+ export interface SeriesRegistrationsApiGetSeriesRegistrationRequest {
55165
+ /**
55166
+ * The series identifier
55167
+ */
55168
+ readonly seriesId: string;
55169
+ /**
55170
+ * The registration identifier
55171
+ */
55172
+ readonly registrationId: string;
55173
+ }
55174
+ /**
55175
+ * Request parameters for getSeriesRegistrationPasses operation in SeriesRegistrationsApi.
55176
+ */
55177
+ export interface SeriesRegistrationsApiGetSeriesRegistrationPassesRequest {
55178
+ /**
55179
+ * The series identifier
55180
+ */
55181
+ readonly seriesId: string;
55182
+ /**
55183
+ * The registration identifier
55184
+ */
55185
+ readonly registrationId: string;
55186
+ }
55187
+ /**
55188
+ * Request parameters for getSeriesRegistrations operation in SeriesRegistrationsApi.
55189
+ */
55190
+ export interface SeriesRegistrationsApiGetSeriesRegistrationsRequest {
55191
+ /**
55192
+ * The series identifier
55193
+ */
55194
+ readonly seriesId: string;
55195
+ /**
55196
+ * Filter by status
55197
+ */
55198
+ readonly status?: PurchaseStatus;
55199
+ /**
55200
+ * Page number
55201
+ */
55202
+ readonly page?: number;
55203
+ /**
55204
+ * Number of items per page
55205
+ */
55206
+ readonly pageSize?: number;
55207
+ /**
55208
+ * Field to order by
55209
+ */
55210
+ readonly orderBy?: string;
55211
+ /**
55212
+ * Search query
55213
+ */
55214
+ readonly search?: string;
55215
+ }
55216
+ /**
55217
+ * Request parameters for updateSeriesRegistration operation in SeriesRegistrationsApi.
55218
+ */
55219
+ export interface SeriesRegistrationsApiUpdateSeriesRegistrationRequest {
55220
+ /**
55221
+ * The series identifier
55222
+ */
55223
+ readonly seriesId: string;
55224
+ /**
55225
+ * The registration identifier
55226
+ */
55227
+ readonly registrationId: string;
55228
+ readonly seriesRegistrationUpdateInputs: SeriesRegistrationUpdateInputs;
55229
+ }
55230
+ /**
55231
+ * SeriesRegistrationsApi - object-oriented interface
55232
+ */
55233
+ export declare class SeriesRegistrationsApi extends BaseAPI {
55234
+ /**
55235
+ * Create Series Registration endpoint
55236
+ * @summary Create Series Registration
55237
+ * @param {SeriesRegistrationsApiCreateSeriesRegistrationRequest} requestParameters Request parameters.
55238
+ * @param {*} [options] Override http request option.
55239
+ * @throws {RequiredError}
55240
+ */
55241
+ createSeriesRegistration(requestParameters: SeriesRegistrationsApiCreateSeriesRegistrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
55242
+ /**
55243
+ * Delete Series Registration endpoint
55244
+ * @summary Delete Series Registration
55245
+ * @param {SeriesRegistrationsApiDeleteSeriesRegistrationRequest} requestParameters Request parameters.
55246
+ * @param {*} [options] Override http request option.
55247
+ * @throws {RequiredError}
55248
+ */
55249
+ deleteSeriesRegistration(requestParameters: SeriesRegistrationsApiDeleteSeriesRegistrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
55250
+ /**
55251
+ * Get Series Registration endpoint
55252
+ * @summary Get Series Registration
55253
+ * @param {SeriesRegistrationsApiGetSeriesRegistrationRequest} requestParameters Request parameters.
55254
+ * @param {*} [options] Override http request option.
55255
+ * @throws {RequiredError}
55256
+ */
55257
+ getSeriesRegistration(requestParameters: SeriesRegistrationsApiGetSeriesRegistrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
55258
+ /**
55259
+ * Get Series Registration Passes endpoint
55260
+ * @summary Get Series Registration Passes
55261
+ * @param {SeriesRegistrationsApiGetSeriesRegistrationPassesRequest} requestParameters Request parameters.
55262
+ * @param {*} [options] Override http request option.
55263
+ * @throws {RequiredError}
55264
+ */
55265
+ getSeriesRegistrationPasses(requestParameters: SeriesRegistrationsApiGetSeriesRegistrationPassesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
55266
+ /**
55267
+ * Get Series Registrations endpoint
55268
+ * @summary Get Series Registrations
55269
+ * @param {SeriesRegistrationsApiGetSeriesRegistrationsRequest} requestParameters Request parameters.
55270
+ * @param {*} [options] Override http request option.
55271
+ * @throws {RequiredError}
55272
+ */
55273
+ getSeriesRegistrations(requestParameters: SeriesRegistrationsApiGetSeriesRegistrationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountInvitations200Response, any, {}>>;
55274
+ /**
55275
+ * Update Series Registration endpoint
55276
+ * @summary Update Series Registration
55277
+ * @param {SeriesRegistrationsApiUpdateSeriesRegistrationRequest} requestParameters Request parameters.
55278
+ * @param {*} [options] Override http request option.
55279
+ * @throws {RequiredError}
55280
+ */
55281
+ updateSeriesRegistration(requestParameters: SeriesRegistrationsApiUpdateSeriesRegistrationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
55282
+ }
54203
55283
  /**
54204
55284
  * SponsorsApi - axios parameter creator
54205
55285
  */
@@ -57523,6 +58603,8 @@ export declare const SurveysApiAxiosParamCreator: (configuration?: Configuration
57523
58603
  /**
57524
58604
  * Get Surveys endpoint
57525
58605
  * @summary Get Surveys
58606
+ * @param {string} [eventId] Filter by eventId
58607
+ * @param {string} [sessionId] Filter by sessionId
57526
58608
  * @param {number} [page] Page number
57527
58609
  * @param {number} [pageSize] Number of items per page
57528
58610
  * @param {string} [orderBy] Field to order by
@@ -57530,7 +58612,7 @@ export declare const SurveysApiAxiosParamCreator: (configuration?: Configuration
57530
58612
  * @param {*} [options] Override http request option.
57531
58613
  * @throws {RequiredError}
57532
58614
  */
57533
- getSurveys: (page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58615
+ getSurveys: (eventId?: string, sessionId?: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
57534
58616
  /**
57535
58617
  * Update Survey endpoint
57536
58618
  * @summary Update Survey
@@ -57572,6 +58654,8 @@ export declare const SurveysApiFp: (configuration?: Configuration) => {
57572
58654
  /**
57573
58655
  * Get Surveys endpoint
57574
58656
  * @summary Get Surveys
58657
+ * @param {string} [eventId] Filter by eventId
58658
+ * @param {string} [sessionId] Filter by sessionId
57575
58659
  * @param {number} [page] Page number
57576
58660
  * @param {number} [pageSize] Number of items per page
57577
58661
  * @param {string} [orderBy] Field to order by
@@ -57579,7 +58663,7 @@ export declare const SurveysApiFp: (configuration?: Configuration) => {
57579
58663
  * @param {*} [options] Override http request option.
57580
58664
  * @throws {RequiredError}
57581
58665
  */
57582
- getSurveys(page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSurveys200Response>>;
58666
+ getSurveys(eventId?: string, sessionId?: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSurveys200Response>>;
57583
58667
  /**
57584
58668
  * Update Survey endpoint
57585
58669
  * @summary Update Survey
@@ -57663,6 +58747,14 @@ export interface SurveysApiGetSurveyRequest {
57663
58747
  * Request parameters for getSurveys operation in SurveysApi.
57664
58748
  */
57665
58749
  export interface SurveysApiGetSurveysRequest {
58750
+ /**
58751
+ * Filter by eventId
58752
+ */
58753
+ readonly eventId?: string;
58754
+ /**
58755
+ * Filter by sessionId
58756
+ */
58757
+ readonly sessionId?: string;
57666
58758
  /**
57667
58759
  * Page number
57668
58760
  */