@connectedxm/admin-sdk 6.7.6 → 6.8.6

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
@@ -1084,6 +1084,7 @@ export interface BaseEventActivation {
1084
1084
  'startAfter': string | null;
1085
1085
  'type': EventActivationType;
1086
1086
  'accessLevel': PassTypeAccessLevel;
1087
+ 'survey': BaseSurvey | null;
1087
1088
  }
1088
1089
  export interface BaseEventAddOn {
1089
1090
  'id': string;
@@ -1110,6 +1111,11 @@ export interface BaseEventAttendee {
1110
1111
  'eventId': string;
1111
1112
  'event': BaseEvent;
1112
1113
  }
1114
+ export interface BaseEventBlock {
1115
+ 'id': string;
1116
+ 'name': string;
1117
+ 'limit': number;
1118
+ }
1113
1119
  export interface BaseEventEmail {
1114
1120
  'type': EventEmailType;
1115
1121
  'eventId': string;
@@ -2110,6 +2116,7 @@ export interface BaseSurvey {
2110
2116
  'id': string;
2111
2117
  'slug': string;
2112
2118
  'name': string;
2119
+ 'active': boolean;
2113
2120
  'description': string | null;
2114
2121
  'image': BaseImage;
2115
2122
  'requireAuth': boolean;
@@ -2192,7 +2199,10 @@ export interface BaseSurveySectionQuestion {
2192
2199
  }
2193
2200
  export interface BaseSurveySubmission {
2194
2201
  'id': string;
2202
+ 'accountId': string | null;
2195
2203
  'account': BaseAccount | null;
2204
+ 'passId': string | null;
2205
+ 'pass': BaseEventPass | null;
2196
2206
  'status': PurchaseStatus;
2197
2207
  'responses': Array<BaseSurveyQuestionResponse>;
2198
2208
  }
@@ -3101,6 +3111,14 @@ export interface CreateEventAttendee200Response {
3101
3111
  export declare enum CreateEventAttendee200ResponseStatusEnum {
3102
3112
  Ok = "ok"
3103
3113
  }
3114
+ export interface CreateEventBlock200Response {
3115
+ 'status': CreateEventBlock200ResponseStatusEnum;
3116
+ 'message': string;
3117
+ 'data': EventBlock;
3118
+ }
3119
+ export declare enum CreateEventBlock200ResponseStatusEnum {
3120
+ Ok = "ok"
3121
+ }
3104
3122
  export interface CreateEventCoupon200Response {
3105
3123
  'status': CreateEventCoupon200ResponseStatusEnum;
3106
3124
  'message': string;
@@ -3657,6 +3675,7 @@ export interface EventActivation {
3657
3675
  'startAfter': string | null;
3658
3676
  'type': EventActivationType;
3659
3677
  'accessLevel': PassTypeAccessLevel;
3678
+ 'survey': BaseSurvey | null;
3660
3679
  'eventId': string;
3661
3680
  'event': BaseEvent;
3662
3681
  'imageId': string | null;
@@ -3836,6 +3855,23 @@ export interface EventBadgeFieldUpdateInputs {
3836
3855
  'iconData'?: string | null;
3837
3856
  'sessionId'?: string | null;
3838
3857
  }
3858
+ export interface EventBlock {
3859
+ 'id': string;
3860
+ 'name': string;
3861
+ 'limit': number;
3862
+ 'event': BaseEvent;
3863
+ 'sessions': Array<BaseEventSession>;
3864
+ 'createdAt': string;
3865
+ 'updatedAt': string;
3866
+ }
3867
+ export interface EventBlockCreateInputs {
3868
+ 'name': string;
3869
+ 'limit'?: number;
3870
+ }
3871
+ export interface EventBlockUpdateInputs {
3872
+ 'name'?: string;
3873
+ 'limit'?: number;
3874
+ }
3839
3875
  export interface EventCouponCreateInputs {
3840
3876
  'code': string;
3841
3877
  'description'?: string | null;
@@ -4597,6 +4633,7 @@ export interface EventSession {
4597
4633
  'speakers': Array<BaseEventSpeaker>;
4598
4634
  'meetingId': string | null;
4599
4635
  'meeting': BaseMeeting | null;
4636
+ 'blocks': Array<BaseEventBlock> | null;
4600
4637
  }
4601
4638
  export interface EventSessionAccess {
4602
4639
  'id': string;
@@ -5652,6 +5689,15 @@ export interface GetEventAttendees200Response {
5652
5689
  export declare enum GetEventAttendees200ResponseStatusEnum {
5653
5690
  Ok = "ok"
5654
5691
  }
5692
+ export interface GetEventBlocks200Response {
5693
+ 'status': GetEventBlocks200ResponseStatusEnum;
5694
+ 'message': string;
5695
+ 'data': Array<EventBlock>;
5696
+ 'count'?: number;
5697
+ }
5698
+ export declare enum GetEventBlocks200ResponseStatusEnum {
5699
+ Ok = "ok"
5700
+ }
5655
5701
  export interface GetEventEmail200Response {
5656
5702
  'status': GetEventEmail200ResponseStatusEnum;
5657
5703
  'message': string;
@@ -8867,6 +8913,7 @@ export interface Survey {
8867
8913
  'id': string;
8868
8914
  'slug': string;
8869
8915
  'name': string;
8916
+ 'active': boolean;
8870
8917
  'description': string | null;
8871
8918
  'image': BaseImage;
8872
8919
  'requireAuth': boolean;
@@ -8875,16 +8922,31 @@ export interface Survey {
8875
8922
  'emailBody': string | null;
8876
8923
  'createdAt': string;
8877
8924
  'updatedAt': string;
8925
+ 'eventId': string | null;
8926
+ 'event': BaseEvent | null;
8927
+ 'sessionId': string | null;
8928
+ 'session': BaseEventSession | null;
8929
+ 'activationId': string | null;
8930
+ 'activation': BaseEventActivation | null;
8931
+ 'passTypes': Array<BaseEventPassType> | null;
8932
+ '_count': SurveyAllOfCount;
8933
+ }
8934
+ export interface SurveyAllOfCount {
8935
+ 'submissions': number;
8878
8936
  }
8879
8937
  export interface SurveyCreateInputs {
8880
8938
  'name': string;
8881
8939
  'slug'?: string;
8940
+ 'active'?: boolean;
8882
8941
  'description'?: string | null;
8883
8942
  'imageId'?: string | null;
8884
8943
  'requireAuth'?: boolean;
8885
8944
  'submissionsPerAccount'?: InvoiceLineItemCreateInputsQuantity;
8886
8945
  'replyTo'?: string | null;
8887
8946
  'emailBody'?: string | null;
8947
+ 'eventId'?: string | null;
8948
+ 'sessionId'?: string | null;
8949
+ 'activationId'?: string | null;
8888
8950
  }
8889
8951
  export interface SurveyQuestion {
8890
8952
  'id': string;
@@ -9106,7 +9168,10 @@ export interface SurveySectionUpdateInputs {
9106
9168
  }
9107
9169
  export interface SurveySubmission {
9108
9170
  'id': string;
9171
+ 'accountId': string | null;
9109
9172
  'account': BaseAccount | null;
9173
+ 'passId': string | null;
9174
+ 'pass': BaseEventPass | null;
9110
9175
  'status': PurchaseStatus;
9111
9176
  'responses': Array<BaseSurveyQuestionResponse>;
9112
9177
  'createdAt': string;
@@ -9114,6 +9179,8 @@ export interface SurveySubmission {
9114
9179
  }
9115
9180
  export interface SurveySubmissionUpdateInputs {
9116
9181
  'status'?: PurchaseStatus;
9182
+ 'accountId'?: string | null;
9183
+ 'passId'?: string | null;
9117
9184
  }
9118
9185
  export interface SurveyTranslation {
9119
9186
  'id': string;
@@ -9130,6 +9197,7 @@ export interface SurveyTranslationUpdateInputs {
9130
9197
  }
9131
9198
  export interface SurveyUpdateInputs {
9132
9199
  'name'?: string;
9200
+ 'active'?: boolean;
9133
9201
  'slug'?: string;
9134
9202
  'description'?: string | null;
9135
9203
  'imageId'?: string | null;
@@ -9137,6 +9205,9 @@ export interface SurveyUpdateInputs {
9137
9205
  'submissionsPerAccount'?: InvoiceLineItemCreateInputsQuantity;
9138
9206
  'replyTo'?: string | null;
9139
9207
  'emailBody'?: string | null;
9208
+ 'eventId'?: string | null;
9209
+ 'sessionId'?: string | null;
9210
+ 'activationId'?: string | null;
9140
9211
  }
9141
9212
  export interface SystemEventLog {
9142
9213
  'id': string;
@@ -21912,6 +21983,456 @@ export declare class EventsBenefitsApi extends BaseAPI {
21912
21983
  */
21913
21984
  removeEventBenefit(requestParameters: EventsBenefitsApiRemoveEventBenefitRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBenefit200Response, any, {}>>;
21914
21985
  }
21986
+ /**
21987
+ * EventsBlocksApi - axios parameter creator
21988
+ */
21989
+ export declare const EventsBlocksApiAxiosParamCreator: (configuration?: Configuration) => {
21990
+ /**
21991
+ * Add Event Block Session endpoint
21992
+ * @summary Add Event Block Session
21993
+ * @param {string} eventId The event identifier
21994
+ * @param {string} blockId The block identifier
21995
+ * @param {string} sessionId The session identifier
21996
+ * @param {*} [options] Override http request option.
21997
+ * @throws {RequiredError}
21998
+ */
21999
+ addEventBlockSession: (eventId: string, blockId: string, sessionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22000
+ /**
22001
+ * Create Event Block endpoint
22002
+ * @summary Create Event Block
22003
+ * @param {string} eventId The event identifier
22004
+ * @param {EventBlockCreateInputs} eventBlockCreateInputs
22005
+ * @param {*} [options] Override http request option.
22006
+ * @throws {RequiredError}
22007
+ */
22008
+ createEventBlock: (eventId: string, eventBlockCreateInputs: EventBlockCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22009
+ /**
22010
+ * Delete Event Block endpoint
22011
+ * @summary Delete Event Block
22012
+ * @param {string} eventId The event identifier
22013
+ * @param {string} blockId The block identifier
22014
+ * @param {*} [options] Override http request option.
22015
+ * @throws {RequiredError}
22016
+ */
22017
+ deleteEventBlock: (eventId: string, blockId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22018
+ /**
22019
+ * Get Event Block endpoint
22020
+ * @summary Get Event Block
22021
+ * @param {string} eventId The event identifier
22022
+ * @param {string} blockId The block identifier
22023
+ * @param {*} [options] Override http request option.
22024
+ * @throws {RequiredError}
22025
+ */
22026
+ getEventBlock: (eventId: string, blockId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22027
+ /**
22028
+ * Get Event Block Sessions endpoint
22029
+ * @summary Get Event Block Sessions
22030
+ * @param {string} eventId The event identifier
22031
+ * @param {string} blockId The block identifier
22032
+ * @param {number} [page] Page number
22033
+ * @param {number} [pageSize] Number of items per page
22034
+ * @param {string} [orderBy] Field to order by
22035
+ * @param {string} [search] Search query
22036
+ * @param {*} [options] Override http request option.
22037
+ * @throws {RequiredError}
22038
+ */
22039
+ getEventBlockSessions: (eventId: string, blockId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22040
+ /**
22041
+ * Get Event Blocks endpoint
22042
+ * @summary Get Event Blocks
22043
+ * @param {string} eventId The event identifier
22044
+ * @param {number} [page] Page number
22045
+ * @param {number} [pageSize] Number of items per page
22046
+ * @param {string} [orderBy] Field to order by
22047
+ * @param {string} [search] Search query
22048
+ * @param {*} [options] Override http request option.
22049
+ * @throws {RequiredError}
22050
+ */
22051
+ getEventBlocks: (eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22052
+ /**
22053
+ * Remove Event Block Session endpoint
22054
+ * @summary Remove Event Block Session
22055
+ * @param {string} eventId The event identifier
22056
+ * @param {string} blockId The block identifier
22057
+ * @param {string} sessionId The session identifier
22058
+ * @param {*} [options] Override http request option.
22059
+ * @throws {RequiredError}
22060
+ */
22061
+ removeEventBlockSession: (eventId: string, blockId: string, sessionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22062
+ /**
22063
+ * Update Event Block endpoint
22064
+ * @summary Update Event Block
22065
+ * @param {string} eventId The event identifier
22066
+ * @param {string} blockId The block identifier
22067
+ * @param {EventBlockUpdateInputs} eventBlockUpdateInputs
22068
+ * @param {*} [options] Override http request option.
22069
+ * @throws {RequiredError}
22070
+ */
22071
+ updateEventBlock: (eventId: string, blockId: string, eventBlockUpdateInputs: EventBlockUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22072
+ };
22073
+ /**
22074
+ * EventsBlocksApi - functional programming interface
22075
+ */
22076
+ export declare const EventsBlocksApiFp: (configuration?: Configuration) => {
22077
+ /**
22078
+ * Add Event Block Session endpoint
22079
+ * @summary Add Event Block Session
22080
+ * @param {string} eventId The event identifier
22081
+ * @param {string} blockId The block identifier
22082
+ * @param {string} sessionId The session identifier
22083
+ * @param {*} [options] Override http request option.
22084
+ * @throws {RequiredError}
22085
+ */
22086
+ addEventBlockSession(eventId: string, blockId: string, sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventBlock200Response>>;
22087
+ /**
22088
+ * Create Event Block endpoint
22089
+ * @summary Create Event Block
22090
+ * @param {string} eventId The event identifier
22091
+ * @param {EventBlockCreateInputs} eventBlockCreateInputs
22092
+ * @param {*} [options] Override http request option.
22093
+ * @throws {RequiredError}
22094
+ */
22095
+ createEventBlock(eventId: string, eventBlockCreateInputs: EventBlockCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventBlock200Response>>;
22096
+ /**
22097
+ * Delete Event Block endpoint
22098
+ * @summary Delete Event Block
22099
+ * @param {string} eventId The event identifier
22100
+ * @param {string} blockId The block identifier
22101
+ * @param {*} [options] Override http request option.
22102
+ * @throws {RequiredError}
22103
+ */
22104
+ deleteEventBlock(eventId: string, blockId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
22105
+ /**
22106
+ * Get Event Block endpoint
22107
+ * @summary Get Event Block
22108
+ * @param {string} eventId The event identifier
22109
+ * @param {string} blockId The block identifier
22110
+ * @param {*} [options] Override http request option.
22111
+ * @throws {RequiredError}
22112
+ */
22113
+ getEventBlock(eventId: string, blockId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventBlock200Response>>;
22114
+ /**
22115
+ * Get Event Block Sessions endpoint
22116
+ * @summary Get Event Block Sessions
22117
+ * @param {string} eventId The event identifier
22118
+ * @param {string} blockId The block identifier
22119
+ * @param {number} [page] Page number
22120
+ * @param {number} [pageSize] Number of items per page
22121
+ * @param {string} [orderBy] Field to order by
22122
+ * @param {string} [search] Search query
22123
+ * @param {*} [options] Override http request option.
22124
+ * @throws {RequiredError}
22125
+ */
22126
+ getEventBlockSessions(eventId: string, blockId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountInvitations200Response>>;
22127
+ /**
22128
+ * Get Event Blocks endpoint
22129
+ * @summary Get Event Blocks
22130
+ * @param {string} eventId The event identifier
22131
+ * @param {number} [page] Page number
22132
+ * @param {number} [pageSize] Number of items per page
22133
+ * @param {string} [orderBy] Field to order by
22134
+ * @param {string} [search] Search query
22135
+ * @param {*} [options] Override http request option.
22136
+ * @throws {RequiredError}
22137
+ */
22138
+ getEventBlocks(eventId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventBlocks200Response>>;
22139
+ /**
22140
+ * Remove Event Block Session endpoint
22141
+ * @summary Remove Event Block Session
22142
+ * @param {string} eventId The event identifier
22143
+ * @param {string} blockId The block identifier
22144
+ * @param {string} sessionId The session identifier
22145
+ * @param {*} [options] Override http request option.
22146
+ * @throws {RequiredError}
22147
+ */
22148
+ removeEventBlockSession(eventId: string, blockId: string, sessionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventBlock200Response>>;
22149
+ /**
22150
+ * Update Event Block endpoint
22151
+ * @summary Update Event Block
22152
+ * @param {string} eventId The event identifier
22153
+ * @param {string} blockId The block identifier
22154
+ * @param {EventBlockUpdateInputs} eventBlockUpdateInputs
22155
+ * @param {*} [options] Override http request option.
22156
+ * @throws {RequiredError}
22157
+ */
22158
+ updateEventBlock(eventId: string, blockId: string, eventBlockUpdateInputs: EventBlockUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventBlock200Response>>;
22159
+ };
22160
+ /**
22161
+ * EventsBlocksApi - factory interface
22162
+ */
22163
+ export declare const EventsBlocksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
22164
+ /**
22165
+ * Add Event Block Session endpoint
22166
+ * @summary Add Event Block Session
22167
+ * @param {EventsBlocksApiAddEventBlockSessionRequest} requestParameters Request parameters.
22168
+ * @param {*} [options] Override http request option.
22169
+ * @throws {RequiredError}
22170
+ */
22171
+ addEventBlockSession(requestParameters: EventsBlocksApiAddEventBlockSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventBlock200Response>;
22172
+ /**
22173
+ * Create Event Block endpoint
22174
+ * @summary Create Event Block
22175
+ * @param {EventsBlocksApiCreateEventBlockRequest} requestParameters Request parameters.
22176
+ * @param {*} [options] Override http request option.
22177
+ * @throws {RequiredError}
22178
+ */
22179
+ createEventBlock(requestParameters: EventsBlocksApiCreateEventBlockRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventBlock200Response>;
22180
+ /**
22181
+ * Delete Event Block endpoint
22182
+ * @summary Delete Event Block
22183
+ * @param {EventsBlocksApiDeleteEventBlockRequest} requestParameters Request parameters.
22184
+ * @param {*} [options] Override http request option.
22185
+ * @throws {RequiredError}
22186
+ */
22187
+ deleteEventBlock(requestParameters: EventsBlocksApiDeleteEventBlockRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
22188
+ /**
22189
+ * Get Event Block endpoint
22190
+ * @summary Get Event Block
22191
+ * @param {EventsBlocksApiGetEventBlockRequest} requestParameters Request parameters.
22192
+ * @param {*} [options] Override http request option.
22193
+ * @throws {RequiredError}
22194
+ */
22195
+ getEventBlock(requestParameters: EventsBlocksApiGetEventBlockRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventBlock200Response>;
22196
+ /**
22197
+ * Get Event Block Sessions endpoint
22198
+ * @summary Get Event Block Sessions
22199
+ * @param {EventsBlocksApiGetEventBlockSessionsRequest} requestParameters Request parameters.
22200
+ * @param {*} [options] Override http request option.
22201
+ * @throws {RequiredError}
22202
+ */
22203
+ getEventBlockSessions(requestParameters: EventsBlocksApiGetEventBlockSessionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountInvitations200Response>;
22204
+ /**
22205
+ * Get Event Blocks endpoint
22206
+ * @summary Get Event Blocks
22207
+ * @param {EventsBlocksApiGetEventBlocksRequest} requestParameters Request parameters.
22208
+ * @param {*} [options] Override http request option.
22209
+ * @throws {RequiredError}
22210
+ */
22211
+ getEventBlocks(requestParameters: EventsBlocksApiGetEventBlocksRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventBlocks200Response>;
22212
+ /**
22213
+ * Remove Event Block Session endpoint
22214
+ * @summary Remove Event Block Session
22215
+ * @param {EventsBlocksApiRemoveEventBlockSessionRequest} requestParameters Request parameters.
22216
+ * @param {*} [options] Override http request option.
22217
+ * @throws {RequiredError}
22218
+ */
22219
+ removeEventBlockSession(requestParameters: EventsBlocksApiRemoveEventBlockSessionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventBlock200Response>;
22220
+ /**
22221
+ * Update Event Block endpoint
22222
+ * @summary Update Event Block
22223
+ * @param {EventsBlocksApiUpdateEventBlockRequest} requestParameters Request parameters.
22224
+ * @param {*} [options] Override http request option.
22225
+ * @throws {RequiredError}
22226
+ */
22227
+ updateEventBlock(requestParameters: EventsBlocksApiUpdateEventBlockRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventBlock200Response>;
22228
+ };
22229
+ /**
22230
+ * Request parameters for addEventBlockSession operation in EventsBlocksApi.
22231
+ */
22232
+ export interface EventsBlocksApiAddEventBlockSessionRequest {
22233
+ /**
22234
+ * The event identifier
22235
+ */
22236
+ readonly eventId: string;
22237
+ /**
22238
+ * The block identifier
22239
+ */
22240
+ readonly blockId: string;
22241
+ /**
22242
+ * The session identifier
22243
+ */
22244
+ readonly sessionId: string;
22245
+ }
22246
+ /**
22247
+ * Request parameters for createEventBlock operation in EventsBlocksApi.
22248
+ */
22249
+ export interface EventsBlocksApiCreateEventBlockRequest {
22250
+ /**
22251
+ * The event identifier
22252
+ */
22253
+ readonly eventId: string;
22254
+ readonly eventBlockCreateInputs: EventBlockCreateInputs;
22255
+ }
22256
+ /**
22257
+ * Request parameters for deleteEventBlock operation in EventsBlocksApi.
22258
+ */
22259
+ export interface EventsBlocksApiDeleteEventBlockRequest {
22260
+ /**
22261
+ * The event identifier
22262
+ */
22263
+ readonly eventId: string;
22264
+ /**
22265
+ * The block identifier
22266
+ */
22267
+ readonly blockId: string;
22268
+ }
22269
+ /**
22270
+ * Request parameters for getEventBlock operation in EventsBlocksApi.
22271
+ */
22272
+ export interface EventsBlocksApiGetEventBlockRequest {
22273
+ /**
22274
+ * The event identifier
22275
+ */
22276
+ readonly eventId: string;
22277
+ /**
22278
+ * The block identifier
22279
+ */
22280
+ readonly blockId: string;
22281
+ }
22282
+ /**
22283
+ * Request parameters for getEventBlockSessions operation in EventsBlocksApi.
22284
+ */
22285
+ export interface EventsBlocksApiGetEventBlockSessionsRequest {
22286
+ /**
22287
+ * The event identifier
22288
+ */
22289
+ readonly eventId: string;
22290
+ /**
22291
+ * The block identifier
22292
+ */
22293
+ readonly blockId: string;
22294
+ /**
22295
+ * Page number
22296
+ */
22297
+ readonly page?: number;
22298
+ /**
22299
+ * Number of items per page
22300
+ */
22301
+ readonly pageSize?: number;
22302
+ /**
22303
+ * Field to order by
22304
+ */
22305
+ readonly orderBy?: string;
22306
+ /**
22307
+ * Search query
22308
+ */
22309
+ readonly search?: string;
22310
+ }
22311
+ /**
22312
+ * Request parameters for getEventBlocks operation in EventsBlocksApi.
22313
+ */
22314
+ export interface EventsBlocksApiGetEventBlocksRequest {
22315
+ /**
22316
+ * The event identifier
22317
+ */
22318
+ readonly eventId: string;
22319
+ /**
22320
+ * Page number
22321
+ */
22322
+ readonly page?: number;
22323
+ /**
22324
+ * Number of items per page
22325
+ */
22326
+ readonly pageSize?: number;
22327
+ /**
22328
+ * Field to order by
22329
+ */
22330
+ readonly orderBy?: string;
22331
+ /**
22332
+ * Search query
22333
+ */
22334
+ readonly search?: string;
22335
+ }
22336
+ /**
22337
+ * Request parameters for removeEventBlockSession operation in EventsBlocksApi.
22338
+ */
22339
+ export interface EventsBlocksApiRemoveEventBlockSessionRequest {
22340
+ /**
22341
+ * The event identifier
22342
+ */
22343
+ readonly eventId: string;
22344
+ /**
22345
+ * The block identifier
22346
+ */
22347
+ readonly blockId: string;
22348
+ /**
22349
+ * The session identifier
22350
+ */
22351
+ readonly sessionId: string;
22352
+ }
22353
+ /**
22354
+ * Request parameters for updateEventBlock operation in EventsBlocksApi.
22355
+ */
22356
+ export interface EventsBlocksApiUpdateEventBlockRequest {
22357
+ /**
22358
+ * The event identifier
22359
+ */
22360
+ readonly eventId: string;
22361
+ /**
22362
+ * The block identifier
22363
+ */
22364
+ readonly blockId: string;
22365
+ readonly eventBlockUpdateInputs: EventBlockUpdateInputs;
22366
+ }
22367
+ /**
22368
+ * EventsBlocksApi - object-oriented interface
22369
+ */
22370
+ export declare class EventsBlocksApi extends BaseAPI {
22371
+ /**
22372
+ * Add Event Block Session endpoint
22373
+ * @summary Add Event Block Session
22374
+ * @param {EventsBlocksApiAddEventBlockSessionRequest} requestParameters Request parameters.
22375
+ * @param {*} [options] Override http request option.
22376
+ * @throws {RequiredError}
22377
+ */
22378
+ addEventBlockSession(requestParameters: EventsBlocksApiAddEventBlockSessionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventBlock200Response, any, {}>>;
22379
+ /**
22380
+ * Create Event Block endpoint
22381
+ * @summary Create Event Block
22382
+ * @param {EventsBlocksApiCreateEventBlockRequest} requestParameters Request parameters.
22383
+ * @param {*} [options] Override http request option.
22384
+ * @throws {RequiredError}
22385
+ */
22386
+ createEventBlock(requestParameters: EventsBlocksApiCreateEventBlockRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventBlock200Response, any, {}>>;
22387
+ /**
22388
+ * Delete Event Block endpoint
22389
+ * @summary Delete Event Block
22390
+ * @param {EventsBlocksApiDeleteEventBlockRequest} requestParameters Request parameters.
22391
+ * @param {*} [options] Override http request option.
22392
+ * @throws {RequiredError}
22393
+ */
22394
+ deleteEventBlock(requestParameters: EventsBlocksApiDeleteEventBlockRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
22395
+ /**
22396
+ * Get Event Block endpoint
22397
+ * @summary Get Event Block
22398
+ * @param {EventsBlocksApiGetEventBlockRequest} requestParameters Request parameters.
22399
+ * @param {*} [options] Override http request option.
22400
+ * @throws {RequiredError}
22401
+ */
22402
+ getEventBlock(requestParameters: EventsBlocksApiGetEventBlockRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventBlock200Response, any, {}>>;
22403
+ /**
22404
+ * Get Event Block Sessions endpoint
22405
+ * @summary Get Event Block Sessions
22406
+ * @param {EventsBlocksApiGetEventBlockSessionsRequest} requestParameters Request parameters.
22407
+ * @param {*} [options] Override http request option.
22408
+ * @throws {RequiredError}
22409
+ */
22410
+ getEventBlockSessions(requestParameters: EventsBlocksApiGetEventBlockSessionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountInvitations200Response, any, {}>>;
22411
+ /**
22412
+ * Get Event Blocks endpoint
22413
+ * @summary Get Event Blocks
22414
+ * @param {EventsBlocksApiGetEventBlocksRequest} requestParameters Request parameters.
22415
+ * @param {*} [options] Override http request option.
22416
+ * @throws {RequiredError}
22417
+ */
22418
+ getEventBlocks(requestParameters: EventsBlocksApiGetEventBlocksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventBlocks200Response, any, {}>>;
22419
+ /**
22420
+ * Remove Event Block Session endpoint
22421
+ * @summary Remove Event Block Session
22422
+ * @param {EventsBlocksApiRemoveEventBlockSessionRequest} requestParameters Request parameters.
22423
+ * @param {*} [options] Override http request option.
22424
+ * @throws {RequiredError}
22425
+ */
22426
+ removeEventBlockSession(requestParameters: EventsBlocksApiRemoveEventBlockSessionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventBlock200Response, any, {}>>;
22427
+ /**
22428
+ * Update Event Block endpoint
22429
+ * @summary Update Event Block
22430
+ * @param {EventsBlocksApiUpdateEventBlockRequest} requestParameters Request parameters.
22431
+ * @param {*} [options] Override http request option.
22432
+ * @throws {RequiredError}
22433
+ */
22434
+ updateEventBlock(requestParameters: EventsBlocksApiUpdateEventBlockRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventBlock200Response, any, {}>>;
22435
+ }
21915
22436
  /**
21916
22437
  * EventsBypassApi - axios parameter creator
21917
22438
  */
@@ -22461,6 +22982,7 @@ export declare const EventsCouponsApiAxiosParamCreator: (configuration?: Configu
22461
22982
  * @summary Get Event Coupons
22462
22983
  * @param {string} eventId The event identifier
22463
22984
  * @param {boolean} [prePaid] Filter by prePaid
22985
+ * @param {object} [includeVariants] Filter by includeVariants
22464
22986
  * @param {number} [page] Page number
22465
22987
  * @param {number} [pageSize] Number of items per page
22466
22988
  * @param {string} [orderBy] Field to order by
@@ -22468,7 +22990,7 @@ export declare const EventsCouponsApiAxiosParamCreator: (configuration?: Configu
22468
22990
  * @param {*} [options] Override http request option.
22469
22991
  * @throws {RequiredError}
22470
22992
  */
22471
- getEventCoupons: (eventId: string, prePaid?: boolean, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22993
+ getEventCoupons: (eventId: string, prePaid?: boolean, includeVariants?: object, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22472
22994
  /**
22473
22995
  * Sync Event Coupon To Variants endpoint
22474
22996
  * @summary Sync Event Coupon To Variants
@@ -22584,6 +23106,7 @@ export declare const EventsCouponsApiFp: (configuration?: Configuration) => {
22584
23106
  * @summary Get Event Coupons
22585
23107
  * @param {string} eventId The event identifier
22586
23108
  * @param {boolean} [prePaid] Filter by prePaid
23109
+ * @param {object} [includeVariants] Filter by includeVariants
22587
23110
  * @param {number} [page] Page number
22588
23111
  * @param {number} [pageSize] Number of items per page
22589
23112
  * @param {string} [orderBy] Field to order by
@@ -22591,7 +23114,7 @@ export declare const EventsCouponsApiFp: (configuration?: Configuration) => {
22591
23114
  * @param {*} [options] Override http request option.
22592
23115
  * @throws {RequiredError}
22593
23116
  */
22594
- getEventCoupons(eventId: string, prePaid?: boolean, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventAttendeeCoupons200Response>>;
23117
+ 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
23118
  /**
22596
23119
  * Sync Event Coupon To Variants endpoint
22597
23120
  * @summary Sync Event Coupon To Variants
@@ -22868,6 +23391,10 @@ export interface EventsCouponsApiGetEventCouponsRequest {
22868
23391
  * Filter by prePaid
22869
23392
  */
22870
23393
  readonly prePaid?: boolean;
23394
+ /**
23395
+ * Filter by includeVariants
23396
+ */
23397
+ readonly includeVariants?: object;
22871
23398
  /**
22872
23399
  * Page number
22873
23400
  */
@@ -27658,6 +28185,15 @@ export declare const EventsPassesApiAxiosParamCreator: (configuration?: Configur
27658
28185
  * @throws {RequiredError}
27659
28186
  */
27660
28187
  cancelEventPass: (eventId: string, passId: string, sendEmail?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
28188
+ /**
28189
+ * Checkin Event Pass endpoint
28190
+ * @summary Checkin Event Pass
28191
+ * @param {string} eventId The event identifier
28192
+ * @param {string} passId The pass identifier
28193
+ * @param {*} [options] Override http request option.
28194
+ * @throws {RequiredError}
28195
+ */
28196
+ checkinEventPass: (eventId: string, passId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27661
28197
  /**
27662
28198
  * Create Event Pass endpoint
27663
28199
  * @summary Create Event Pass
@@ -27877,6 +28413,15 @@ export declare const EventsPassesApiAxiosParamCreator: (configuration?: Configur
27877
28413
  * @throws {RequiredError}
27878
28414
  */
27879
28415
  transferEventPass: (eventId: string, accountId: string, passId: string, receiverId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
28416
+ /**
28417
+ * Undo Checkin Event Pass endpoint
28418
+ * @summary Undo Checkin Event Pass
28419
+ * @param {string} eventId The event identifier
28420
+ * @param {string} passId The pass identifier
28421
+ * @param {*} [options] Override http request option.
28422
+ * @throws {RequiredError}
28423
+ */
28424
+ undoCheckinEventPass: (eventId: string, passId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27880
28425
  /**
27881
28426
  * Update Event Pass endpoint
27882
28427
  * @summary Update Event Pass
@@ -27979,6 +28524,15 @@ export declare const EventsPassesApiFp: (configuration?: Configuration) => {
27979
28524
  * @throws {RequiredError}
27980
28525
  */
27981
28526
  cancelEventPass(eventId: string, passId: string, sendEmail?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventPass200Response>>;
28527
+ /**
28528
+ * Checkin Event Pass endpoint
28529
+ * @summary Checkin Event Pass
28530
+ * @param {string} eventId The event identifier
28531
+ * @param {string} passId The pass identifier
28532
+ * @param {*} [options] Override http request option.
28533
+ * @throws {RequiredError}
28534
+ */
28535
+ checkinEventPass(eventId: string, passId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventPass200Response>>;
27982
28536
  /**
27983
28537
  * Create Event Pass endpoint
27984
28538
  * @summary Create Event Pass
@@ -28198,6 +28752,15 @@ export declare const EventsPassesApiFp: (configuration?: Configuration) => {
28198
28752
  * @throws {RequiredError}
28199
28753
  */
28200
28754
  transferEventPass(eventId: string, accountId: string, passId: string, receiverId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
28755
+ /**
28756
+ * Undo Checkin Event Pass endpoint
28757
+ * @summary Undo Checkin Event Pass
28758
+ * @param {string} eventId The event identifier
28759
+ * @param {string} passId The pass identifier
28760
+ * @param {*} [options] Override http request option.
28761
+ * @throws {RequiredError}
28762
+ */
28763
+ undoCheckinEventPass(eventId: string, passId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventPass200Response>>;
28201
28764
  /**
28202
28765
  * Update Event Pass endpoint
28203
28766
  * @summary Update Event Pass
@@ -28296,6 +28859,14 @@ export declare const EventsPassesApiFactory: (configuration?: Configuration, bas
28296
28859
  * @throws {RequiredError}
28297
28860
  */
28298
28861
  cancelEventPass(requestParameters: EventsPassesApiCancelEventPassRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventPass200Response>;
28862
+ /**
28863
+ * Checkin Event Pass endpoint
28864
+ * @summary Checkin Event Pass
28865
+ * @param {EventsPassesApiCheckinEventPassRequest} requestParameters Request parameters.
28866
+ * @param {*} [options] Override http request option.
28867
+ * @throws {RequiredError}
28868
+ */
28869
+ checkinEventPass(requestParameters: EventsPassesApiCheckinEventPassRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventPass200Response>;
28299
28870
  /**
28300
28871
  * Create Event Pass endpoint
28301
28872
  * @summary Create Event Pass
@@ -28448,6 +29019,14 @@ export declare const EventsPassesApiFactory: (configuration?: Configuration, bas
28448
29019
  * @throws {RequiredError}
28449
29020
  */
28450
29021
  transferEventPass(requestParameters: EventsPassesApiTransferEventPassRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
29022
+ /**
29023
+ * Undo Checkin Event Pass endpoint
29024
+ * @summary Undo Checkin Event Pass
29025
+ * @param {EventsPassesApiUndoCheckinEventPassRequest} requestParameters Request parameters.
29026
+ * @param {*} [options] Override http request option.
29027
+ * @throws {RequiredError}
29028
+ */
29029
+ undoCheckinEventPass(requestParameters: EventsPassesApiUndoCheckinEventPassRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventPass200Response>;
28451
29030
  /**
28452
29031
  * Update Event Pass endpoint
28453
29032
  * @summary Update Event Pass
@@ -28539,6 +29118,19 @@ export interface EventsPassesApiCancelEventPassRequest {
28539
29118
  */
28540
29119
  readonly sendEmail?: boolean;
28541
29120
  }
29121
+ /**
29122
+ * Request parameters for checkinEventPass operation in EventsPassesApi.
29123
+ */
29124
+ export interface EventsPassesApiCheckinEventPassRequest {
29125
+ /**
29126
+ * The event identifier
29127
+ */
29128
+ readonly eventId: string;
29129
+ /**
29130
+ * The pass identifier
29131
+ */
29132
+ readonly passId: string;
29133
+ }
28542
29134
  /**
28543
29135
  * Request parameters for createEventPass operation in EventsPassesApi.
28544
29136
  */
@@ -28975,6 +29567,19 @@ export interface EventsPassesApiTransferEventPassRequest {
28975
29567
  */
28976
29568
  readonly receiverId: string;
28977
29569
  }
29570
+ /**
29571
+ * Request parameters for undoCheckinEventPass operation in EventsPassesApi.
29572
+ */
29573
+ export interface EventsPassesApiUndoCheckinEventPassRequest {
29574
+ /**
29575
+ * The event identifier
29576
+ */
29577
+ readonly eventId: string;
29578
+ /**
29579
+ * The pass identifier
29580
+ */
29581
+ readonly passId: string;
29582
+ }
28978
29583
  /**
28979
29584
  * Request parameters for updateEventPass operation in EventsPassesApi.
28980
29585
  */
@@ -29130,6 +29735,14 @@ export declare class EventsPassesApi extends BaseAPI {
29130
29735
  * @throws {RequiredError}
29131
29736
  */
29132
29737
  cancelEventPass(requestParameters: EventsPassesApiCancelEventPassRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventPass200Response, any, {}>>;
29738
+ /**
29739
+ * Checkin Event Pass endpoint
29740
+ * @summary Checkin Event Pass
29741
+ * @param {EventsPassesApiCheckinEventPassRequest} requestParameters Request parameters.
29742
+ * @param {*} [options] Override http request option.
29743
+ * @throws {RequiredError}
29744
+ */
29745
+ checkinEventPass(requestParameters: EventsPassesApiCheckinEventPassRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventPass200Response, any, {}>>;
29133
29746
  /**
29134
29747
  * Create Event Pass endpoint
29135
29748
  * @summary Create Event Pass
@@ -29282,6 +29895,14 @@ export declare class EventsPassesApi extends BaseAPI {
29282
29895
  * @throws {RequiredError}
29283
29896
  */
29284
29897
  transferEventPass(requestParameters: EventsPassesApiTransferEventPassRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
29898
+ /**
29899
+ * Undo Checkin Event Pass endpoint
29900
+ * @summary Undo Checkin Event Pass
29901
+ * @param {EventsPassesApiUndoCheckinEventPassRequest} requestParameters Request parameters.
29902
+ * @param {*} [options] Override http request option.
29903
+ * @throws {RequiredError}
29904
+ */
29905
+ undoCheckinEventPass(requestParameters: EventsPassesApiUndoCheckinEventPassRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventPass200Response, any, {}>>;
29285
29906
  /**
29286
29907
  * Update Event Pass endpoint
29287
29908
  * @summary Update Event Pass
@@ -34612,6 +35233,16 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
34612
35233
  * @throws {RequiredError}
34613
35234
  */
34614
35235
  addEventSessionAccount: (eventId: string, sessionId: string, accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35236
+ /**
35237
+ * Add Event Session Block endpoint
35238
+ * @summary Add Event Session Block
35239
+ * @param {string} eventId The event identifier
35240
+ * @param {string} sessionId The session identifier
35241
+ * @param {string} blockId The block identifier
35242
+ * @param {*} [options] Override http request option.
35243
+ * @throws {RequiredError}
35244
+ */
35245
+ addEventSessionBlock: (eventId: string, sessionId: string, blockId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
34615
35246
  /**
34616
35247
  * Add Event Session Pass Type endpoint
34617
35248
  * @summary Add Event Session Pass Type
@@ -34706,6 +35337,19 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
34706
35337
  * @throws {RequiredError}
34707
35338
  */
34708
35339
  getEventSessionAccounts: (eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35340
+ /**
35341
+ * Get Event Session Blocks endpoint
35342
+ * @summary Get Event Session Blocks
35343
+ * @param {string} eventId The event identifier
35344
+ * @param {string} sessionId The session identifier
35345
+ * @param {number} [page] Page number
35346
+ * @param {number} [pageSize] Number of items per page
35347
+ * @param {string} [orderBy] Field to order by
35348
+ * @param {string} [search] Search query
35349
+ * @param {*} [options] Override http request option.
35350
+ * @throws {RequiredError}
35351
+ */
35352
+ getEventSessionBlocks: (eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
34709
35353
  /**
34710
35354
  * Get Event Session Pass Types endpoint
34711
35355
  * @summary Get Event Session Pass Types
@@ -34793,6 +35437,16 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
34793
35437
  * @throws {RequiredError}
34794
35438
  */
34795
35439
  removeEventSessionAccount: (eventId: string, sessionId: string, accountId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35440
+ /**
35441
+ * Remove Event Session Block endpoint
35442
+ * @summary Remove Event Session Block
35443
+ * @param {string} eventId The event identifier
35444
+ * @param {string} sessionId The session identifier
35445
+ * @param {string} blockId The block identifier
35446
+ * @param {*} [options] Override http request option.
35447
+ * @throws {RequiredError}
35448
+ */
35449
+ removeEventSessionBlock: (eventId: string, sessionId: string, blockId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
34796
35450
  /**
34797
35451
  * Remove Event Session Pass Type endpoint
34798
35452
  * @summary Remove Event Session Pass Type
@@ -34858,6 +35512,16 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
34858
35512
  * @throws {RequiredError}
34859
35513
  */
34860
35514
  addEventSessionAccount(eventId: string, sessionId: string, accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
35515
+ /**
35516
+ * Add Event Session Block endpoint
35517
+ * @summary Add Event Session Block
35518
+ * @param {string} eventId The event identifier
35519
+ * @param {string} sessionId The session identifier
35520
+ * @param {string} blockId The block identifier
35521
+ * @param {*} [options] Override http request option.
35522
+ * @throws {RequiredError}
35523
+ */
35524
+ addEventSessionBlock(eventId: string, sessionId: string, blockId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
34861
35525
  /**
34862
35526
  * Add Event Session Pass Type endpoint
34863
35527
  * @summary Add Event Session Pass Type
@@ -34952,6 +35616,19 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
34952
35616
  * @throws {RequiredError}
34953
35617
  */
34954
35618
  getEventSessionAccounts(eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccounts200Response>>;
35619
+ /**
35620
+ * Get Event Session Blocks endpoint
35621
+ * @summary Get Event Session Blocks
35622
+ * @param {string} eventId The event identifier
35623
+ * @param {string} sessionId The session identifier
35624
+ * @param {number} [page] Page number
35625
+ * @param {number} [pageSize] Number of items per page
35626
+ * @param {string} [orderBy] Field to order by
35627
+ * @param {string} [search] Search query
35628
+ * @param {*} [options] Override http request option.
35629
+ * @throws {RequiredError}
35630
+ */
35631
+ getEventSessionBlocks(eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventBlocks200Response>>;
34955
35632
  /**
34956
35633
  * Get Event Session Pass Types endpoint
34957
35634
  * @summary Get Event Session Pass Types
@@ -35039,6 +35716,16 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
35039
35716
  * @throws {RequiredError}
35040
35717
  */
35041
35718
  removeEventSessionAccount(eventId: string, sessionId: string, accountId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
35719
+ /**
35720
+ * Remove Event Session Block endpoint
35721
+ * @summary Remove Event Session Block
35722
+ * @param {string} eventId The event identifier
35723
+ * @param {string} sessionId The session identifier
35724
+ * @param {string} blockId The block identifier
35725
+ * @param {*} [options] Override http request option.
35726
+ * @throws {RequiredError}
35727
+ */
35728
+ removeEventSessionBlock(eventId: string, sessionId: string, blockId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
35042
35729
  /**
35043
35730
  * Remove Event Session Pass Type endpoint
35044
35731
  * @summary Remove Event Session Pass Type
@@ -35102,6 +35789,14 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
35102
35789
  * @throws {RequiredError}
35103
35790
  */
35104
35791
  addEventSessionAccount(requestParameters: EventsSessionsApiAddEventSessionAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
35792
+ /**
35793
+ * Add Event Session Block endpoint
35794
+ * @summary Add Event Session Block
35795
+ * @param {EventsSessionsApiAddEventSessionBlockRequest} requestParameters Request parameters.
35796
+ * @param {*} [options] Override http request option.
35797
+ * @throws {RequiredError}
35798
+ */
35799
+ addEventSessionBlock(requestParameters: EventsSessionsApiAddEventSessionBlockRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
35105
35800
  /**
35106
35801
  * Add Event Session Pass Type endpoint
35107
35802
  * @summary Add Event Session Pass Type
@@ -35174,6 +35869,14 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
35174
35869
  * @throws {RequiredError}
35175
35870
  */
35176
35871
  getEventSessionAccounts(requestParameters: EventsSessionsApiGetEventSessionAccountsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccounts200Response>;
35872
+ /**
35873
+ * Get Event Session Blocks endpoint
35874
+ * @summary Get Event Session Blocks
35875
+ * @param {EventsSessionsApiGetEventSessionBlocksRequest} requestParameters Request parameters.
35876
+ * @param {*} [options] Override http request option.
35877
+ * @throws {RequiredError}
35878
+ */
35879
+ getEventSessionBlocks(requestParameters: EventsSessionsApiGetEventSessionBlocksRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventBlocks200Response>;
35177
35880
  /**
35178
35881
  * Get Event Session Pass Types endpoint
35179
35882
  * @summary Get Event Session Pass Types
@@ -35230,6 +35933,14 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
35230
35933
  * @throws {RequiredError}
35231
35934
  */
35232
35935
  removeEventSessionAccount(requestParameters: EventsSessionsApiRemoveEventSessionAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
35936
+ /**
35937
+ * Remove Event Session Block endpoint
35938
+ * @summary Remove Event Session Block
35939
+ * @param {EventsSessionsApiRemoveEventSessionBlockRequest} requestParameters Request parameters.
35940
+ * @param {*} [options] Override http request option.
35941
+ * @throws {RequiredError}
35942
+ */
35943
+ removeEventSessionBlock(requestParameters: EventsSessionsApiRemoveEventSessionBlockRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
35233
35944
  /**
35234
35945
  * Remove Event Session Pass Type endpoint
35235
35946
  * @summary Remove Event Session Pass Type
@@ -35288,6 +35999,23 @@ export interface EventsSessionsApiAddEventSessionAccountRequest {
35288
35999
  */
35289
36000
  readonly accountId: string;
35290
36001
  }
36002
+ /**
36003
+ * Request parameters for addEventSessionBlock operation in EventsSessionsApi.
36004
+ */
36005
+ export interface EventsSessionsApiAddEventSessionBlockRequest {
36006
+ /**
36007
+ * The event identifier
36008
+ */
36009
+ readonly eventId: string;
36010
+ /**
36011
+ * The session identifier
36012
+ */
36013
+ readonly sessionId: string;
36014
+ /**
36015
+ * The block identifier
36016
+ */
36017
+ readonly blockId: string;
36018
+ }
35291
36019
  /**
35292
36020
  * Request parameters for addEventSessionPassType operation in EventsSessionsApi.
35293
36021
  */
@@ -35454,6 +36182,35 @@ export interface EventsSessionsApiGetEventSessionAccountsRequest {
35454
36182
  */
35455
36183
  readonly search?: string;
35456
36184
  }
36185
+ /**
36186
+ * Request parameters for getEventSessionBlocks operation in EventsSessionsApi.
36187
+ */
36188
+ export interface EventsSessionsApiGetEventSessionBlocksRequest {
36189
+ /**
36190
+ * The event identifier
36191
+ */
36192
+ readonly eventId: string;
36193
+ /**
36194
+ * The session identifier
36195
+ */
36196
+ readonly sessionId: string;
36197
+ /**
36198
+ * Page number
36199
+ */
36200
+ readonly page?: number;
36201
+ /**
36202
+ * Number of items per page
36203
+ */
36204
+ readonly pageSize?: number;
36205
+ /**
36206
+ * Field to order by
36207
+ */
36208
+ readonly orderBy?: string;
36209
+ /**
36210
+ * Search query
36211
+ */
36212
+ readonly search?: string;
36213
+ }
35457
36214
  /**
35458
36215
  * Request parameters for getEventSessionPassTypes operation in EventsSessionsApi.
35459
36216
  */
@@ -35641,6 +36398,23 @@ export interface EventsSessionsApiRemoveEventSessionAccountRequest {
35641
36398
  */
35642
36399
  readonly accountId: string;
35643
36400
  }
36401
+ /**
36402
+ * Request parameters for removeEventSessionBlock operation in EventsSessionsApi.
36403
+ */
36404
+ export interface EventsSessionsApiRemoveEventSessionBlockRequest {
36405
+ /**
36406
+ * The event identifier
36407
+ */
36408
+ readonly eventId: string;
36409
+ /**
36410
+ * The session identifier
36411
+ */
36412
+ readonly sessionId: string;
36413
+ /**
36414
+ * The block identifier
36415
+ */
36416
+ readonly blockId: string;
36417
+ }
35644
36418
  /**
35645
36419
  * Request parameters for removeEventSessionPassType operation in EventsSessionsApi.
35646
36420
  */
@@ -35738,6 +36512,14 @@ export declare class EventsSessionsApi extends BaseAPI {
35738
36512
  * @throws {RequiredError}
35739
36513
  */
35740
36514
  addEventSessionAccount(requestParameters: EventsSessionsApiAddEventSessionAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
36515
+ /**
36516
+ * Add Event Session Block endpoint
36517
+ * @summary Add Event Session Block
36518
+ * @param {EventsSessionsApiAddEventSessionBlockRequest} requestParameters Request parameters.
36519
+ * @param {*} [options] Override http request option.
36520
+ * @throws {RequiredError}
36521
+ */
36522
+ addEventSessionBlock(requestParameters: EventsSessionsApiAddEventSessionBlockRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
35741
36523
  /**
35742
36524
  * Add Event Session Pass Type endpoint
35743
36525
  * @summary Add Event Session Pass Type
@@ -35810,6 +36592,14 @@ export declare class EventsSessionsApi extends BaseAPI {
35810
36592
  * @throws {RequiredError}
35811
36593
  */
35812
36594
  getEventSessionAccounts(requestParameters: EventsSessionsApiGetEventSessionAccountsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccounts200Response, any, {}>>;
36595
+ /**
36596
+ * Get Event Session Blocks endpoint
36597
+ * @summary Get Event Session Blocks
36598
+ * @param {EventsSessionsApiGetEventSessionBlocksRequest} requestParameters Request parameters.
36599
+ * @param {*} [options] Override http request option.
36600
+ * @throws {RequiredError}
36601
+ */
36602
+ getEventSessionBlocks(requestParameters: EventsSessionsApiGetEventSessionBlocksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventBlocks200Response, any, {}>>;
35813
36603
  /**
35814
36604
  * Get Event Session Pass Types endpoint
35815
36605
  * @summary Get Event Session Pass Types
@@ -35866,6 +36656,14 @@ export declare class EventsSessionsApi extends BaseAPI {
35866
36656
  * @throws {RequiredError}
35867
36657
  */
35868
36658
  removeEventSessionAccount(requestParameters: EventsSessionsApiRemoveEventSessionAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
36659
+ /**
36660
+ * Remove Event Session Block endpoint
36661
+ * @summary Remove Event Session Block
36662
+ * @param {EventsSessionsApiRemoveEventSessionBlockRequest} requestParameters Request parameters.
36663
+ * @param {*} [options] Override http request option.
36664
+ * @throws {RequiredError}
36665
+ */
36666
+ removeEventSessionBlock(requestParameters: EventsSessionsApiRemoveEventSessionBlockRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
35869
36667
  /**
35870
36668
  * Remove Event Session Pass Type endpoint
35871
36669
  * @summary Remove Event Session Pass Type
@@ -57429,6 +58227,8 @@ export declare const SurveysApiAxiosParamCreator: (configuration?: Configuration
57429
58227
  /**
57430
58228
  * Get Surveys endpoint
57431
58229
  * @summary Get Surveys
58230
+ * @param {string} [eventId] Filter by eventId
58231
+ * @param {string} [sessionId] Filter by sessionId
57432
58232
  * @param {number} [page] Page number
57433
58233
  * @param {number} [pageSize] Number of items per page
57434
58234
  * @param {string} [orderBy] Field to order by
@@ -57436,7 +58236,7 @@ export declare const SurveysApiAxiosParamCreator: (configuration?: Configuration
57436
58236
  * @param {*} [options] Override http request option.
57437
58237
  * @throws {RequiredError}
57438
58238
  */
57439
- getSurveys: (page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58239
+ getSurveys: (eventId?: string, sessionId?: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
57440
58240
  /**
57441
58241
  * Update Survey endpoint
57442
58242
  * @summary Update Survey
@@ -57478,6 +58278,8 @@ export declare const SurveysApiFp: (configuration?: Configuration) => {
57478
58278
  /**
57479
58279
  * Get Surveys endpoint
57480
58280
  * @summary Get Surveys
58281
+ * @param {string} [eventId] Filter by eventId
58282
+ * @param {string} [sessionId] Filter by sessionId
57481
58283
  * @param {number} [page] Page number
57482
58284
  * @param {number} [pageSize] Number of items per page
57483
58285
  * @param {string} [orderBy] Field to order by
@@ -57485,7 +58287,7 @@ export declare const SurveysApiFp: (configuration?: Configuration) => {
57485
58287
  * @param {*} [options] Override http request option.
57486
58288
  * @throws {RequiredError}
57487
58289
  */
57488
- getSurveys(page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSurveys200Response>>;
58290
+ getSurveys(eventId?: string, sessionId?: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSurveys200Response>>;
57489
58291
  /**
57490
58292
  * Update Survey endpoint
57491
58293
  * @summary Update Survey
@@ -57569,6 +58371,14 @@ export interface SurveysApiGetSurveyRequest {
57569
58371
  * Request parameters for getSurveys operation in SurveysApi.
57570
58372
  */
57571
58373
  export interface SurveysApiGetSurveysRequest {
58374
+ /**
58375
+ * Filter by eventId
58376
+ */
58377
+ readonly eventId?: string;
58378
+ /**
58379
+ * Filter by sessionId
58380
+ */
58381
+ readonly sessionId?: string;
57572
58382
  /**
57573
58383
  * Page number
57574
58384
  */