@connectedxm/admin-sdk 6.7.7 → 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/.openapi-generator/FILES +8 -0
- package/AdminApi.ts +3 -0
- package/README.md +18 -0
- package/api.ts +1666 -321
- package/dist/AdminApi.d.ts +2 -1
- package/dist/AdminApi.js +1 -0
- package/dist/api.d.ts +720 -4
- package/dist/api.js +992 -28
- package/dist/esm/AdminApi.d.ts +2 -1
- package/dist/esm/AdminApi.js +2 -1
- package/dist/esm/api.d.ts +720 -4
- package/dist/esm/api.js +970 -10
- package/docs/BaseEventActivation.md +2 -0
- package/docs/BaseEventBlock.md +24 -0
- package/docs/BaseSurvey.md +2 -0
- package/docs/BaseSurveySubmission.md +6 -0
- package/docs/CreateEventBlock200Response.md +24 -0
- package/docs/EventActivation.md +2 -0
- package/docs/EventBlock.md +32 -0
- package/docs/EventBlockCreateInputs.md +22 -0
- package/docs/EventBlockUpdateInputs.md +22 -0
- package/docs/EventSession.md +2 -0
- package/docs/EventsBlocksApi.md +479 -0
- package/docs/EventsCouponsApi.md +3 -0
- package/docs/EventsSessionsApi.md +183 -0
- package/docs/GetEventBlocks200Response.md +26 -0
- package/docs/Survey.md +18 -0
- package/docs/SurveyAllOfCount.md +20 -0
- package/docs/SurveyCreateInputs.md +8 -0
- package/docs/SurveySubmission.md +6 -0
- package/docs/SurveySubmissionUpdateInputs.md +4 -0
- package/docs/SurveyUpdateInputs.md +8 -0
- package/docs/SurveysApi.md +6 -0
- package/package.json +1 -1
package/dist/esm/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
|
*/
|
|
@@ -34706,6 +35233,16 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
|
|
|
34706
35233
|
* @throws {RequiredError}
|
|
34707
35234
|
*/
|
|
34708
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>;
|
|
34709
35246
|
/**
|
|
34710
35247
|
* Add Event Session Pass Type endpoint
|
|
34711
35248
|
* @summary Add Event Session Pass Type
|
|
@@ -34800,6 +35337,19 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
|
|
|
34800
35337
|
* @throws {RequiredError}
|
|
34801
35338
|
*/
|
|
34802
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>;
|
|
34803
35353
|
/**
|
|
34804
35354
|
* Get Event Session Pass Types endpoint
|
|
34805
35355
|
* @summary Get Event Session Pass Types
|
|
@@ -34887,6 +35437,16 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
|
|
|
34887
35437
|
* @throws {RequiredError}
|
|
34888
35438
|
*/
|
|
34889
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>;
|
|
34890
35450
|
/**
|
|
34891
35451
|
* Remove Event Session Pass Type endpoint
|
|
34892
35452
|
* @summary Remove Event Session Pass Type
|
|
@@ -34952,6 +35512,16 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
|
|
|
34952
35512
|
* @throws {RequiredError}
|
|
34953
35513
|
*/
|
|
34954
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>>;
|
|
34955
35525
|
/**
|
|
34956
35526
|
* Add Event Session Pass Type endpoint
|
|
34957
35527
|
* @summary Add Event Session Pass Type
|
|
@@ -35046,6 +35616,19 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
|
|
|
35046
35616
|
* @throws {RequiredError}
|
|
35047
35617
|
*/
|
|
35048
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>>;
|
|
35049
35632
|
/**
|
|
35050
35633
|
* Get Event Session Pass Types endpoint
|
|
35051
35634
|
* @summary Get Event Session Pass Types
|
|
@@ -35133,6 +35716,16 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
|
|
|
35133
35716
|
* @throws {RequiredError}
|
|
35134
35717
|
*/
|
|
35135
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>>;
|
|
35136
35729
|
/**
|
|
35137
35730
|
* Remove Event Session Pass Type endpoint
|
|
35138
35731
|
* @summary Remove Event Session Pass Type
|
|
@@ -35196,6 +35789,14 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
|
|
|
35196
35789
|
* @throws {RequiredError}
|
|
35197
35790
|
*/
|
|
35198
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>;
|
|
35199
35800
|
/**
|
|
35200
35801
|
* Add Event Session Pass Type endpoint
|
|
35201
35802
|
* @summary Add Event Session Pass Type
|
|
@@ -35268,6 +35869,14 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
|
|
|
35268
35869
|
* @throws {RequiredError}
|
|
35269
35870
|
*/
|
|
35270
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>;
|
|
35271
35880
|
/**
|
|
35272
35881
|
* Get Event Session Pass Types endpoint
|
|
35273
35882
|
* @summary Get Event Session Pass Types
|
|
@@ -35324,6 +35933,14 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
|
|
|
35324
35933
|
* @throws {RequiredError}
|
|
35325
35934
|
*/
|
|
35326
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>;
|
|
35327
35944
|
/**
|
|
35328
35945
|
* Remove Event Session Pass Type endpoint
|
|
35329
35946
|
* @summary Remove Event Session Pass Type
|
|
@@ -35382,6 +35999,23 @@ export interface EventsSessionsApiAddEventSessionAccountRequest {
|
|
|
35382
35999
|
*/
|
|
35383
36000
|
readonly accountId: string;
|
|
35384
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
|
+
}
|
|
35385
36019
|
/**
|
|
35386
36020
|
* Request parameters for addEventSessionPassType operation in EventsSessionsApi.
|
|
35387
36021
|
*/
|
|
@@ -35548,6 +36182,35 @@ export interface EventsSessionsApiGetEventSessionAccountsRequest {
|
|
|
35548
36182
|
*/
|
|
35549
36183
|
readonly search?: string;
|
|
35550
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
|
+
}
|
|
35551
36214
|
/**
|
|
35552
36215
|
* Request parameters for getEventSessionPassTypes operation in EventsSessionsApi.
|
|
35553
36216
|
*/
|
|
@@ -35735,6 +36398,23 @@ export interface EventsSessionsApiRemoveEventSessionAccountRequest {
|
|
|
35735
36398
|
*/
|
|
35736
36399
|
readonly accountId: string;
|
|
35737
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
|
+
}
|
|
35738
36418
|
/**
|
|
35739
36419
|
* Request parameters for removeEventSessionPassType operation in EventsSessionsApi.
|
|
35740
36420
|
*/
|
|
@@ -35832,6 +36512,14 @@ export declare class EventsSessionsApi extends BaseAPI {
|
|
|
35832
36512
|
* @throws {RequiredError}
|
|
35833
36513
|
*/
|
|
35834
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, {}>>;
|
|
35835
36523
|
/**
|
|
35836
36524
|
* Add Event Session Pass Type endpoint
|
|
35837
36525
|
* @summary Add Event Session Pass Type
|
|
@@ -35904,6 +36592,14 @@ export declare class EventsSessionsApi extends BaseAPI {
|
|
|
35904
36592
|
* @throws {RequiredError}
|
|
35905
36593
|
*/
|
|
35906
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, {}>>;
|
|
35907
36603
|
/**
|
|
35908
36604
|
* Get Event Session Pass Types endpoint
|
|
35909
36605
|
* @summary Get Event Session Pass Types
|
|
@@ -35960,6 +36656,14 @@ export declare class EventsSessionsApi extends BaseAPI {
|
|
|
35960
36656
|
* @throws {RequiredError}
|
|
35961
36657
|
*/
|
|
35962
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, {}>>;
|
|
35963
36667
|
/**
|
|
35964
36668
|
* Remove Event Session Pass Type endpoint
|
|
35965
36669
|
* @summary Remove Event Session Pass Type
|
|
@@ -57523,6 +58227,8 @@ export declare const SurveysApiAxiosParamCreator: (configuration?: Configuration
|
|
|
57523
58227
|
/**
|
|
57524
58228
|
* Get Surveys endpoint
|
|
57525
58229
|
* @summary Get Surveys
|
|
58230
|
+
* @param {string} [eventId] Filter by eventId
|
|
58231
|
+
* @param {string} [sessionId] Filter by sessionId
|
|
57526
58232
|
* @param {number} [page] Page number
|
|
57527
58233
|
* @param {number} [pageSize] Number of items per page
|
|
57528
58234
|
* @param {string} [orderBy] Field to order by
|
|
@@ -57530,7 +58236,7 @@ export declare const SurveysApiAxiosParamCreator: (configuration?: Configuration
|
|
|
57530
58236
|
* @param {*} [options] Override http request option.
|
|
57531
58237
|
* @throws {RequiredError}
|
|
57532
58238
|
*/
|
|
57533
|
-
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>;
|
|
57534
58240
|
/**
|
|
57535
58241
|
* Update Survey endpoint
|
|
57536
58242
|
* @summary Update Survey
|
|
@@ -57572,6 +58278,8 @@ export declare const SurveysApiFp: (configuration?: Configuration) => {
|
|
|
57572
58278
|
/**
|
|
57573
58279
|
* Get Surveys endpoint
|
|
57574
58280
|
* @summary Get Surveys
|
|
58281
|
+
* @param {string} [eventId] Filter by eventId
|
|
58282
|
+
* @param {string} [sessionId] Filter by sessionId
|
|
57575
58283
|
* @param {number} [page] Page number
|
|
57576
58284
|
* @param {number} [pageSize] Number of items per page
|
|
57577
58285
|
* @param {string} [orderBy] Field to order by
|
|
@@ -57579,7 +58287,7 @@ export declare const SurveysApiFp: (configuration?: Configuration) => {
|
|
|
57579
58287
|
* @param {*} [options] Override http request option.
|
|
57580
58288
|
* @throws {RequiredError}
|
|
57581
58289
|
*/
|
|
57582
|
-
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>>;
|
|
57583
58291
|
/**
|
|
57584
58292
|
* Update Survey endpoint
|
|
57585
58293
|
* @summary Update Survey
|
|
@@ -57663,6 +58371,14 @@ export interface SurveysApiGetSurveyRequest {
|
|
|
57663
58371
|
* Request parameters for getSurveys operation in SurveysApi.
|
|
57664
58372
|
*/
|
|
57665
58373
|
export interface SurveysApiGetSurveysRequest {
|
|
58374
|
+
/**
|
|
58375
|
+
* Filter by eventId
|
|
58376
|
+
*/
|
|
58377
|
+
readonly eventId?: string;
|
|
58378
|
+
/**
|
|
58379
|
+
* Filter by sessionId
|
|
58380
|
+
*/
|
|
58381
|
+
readonly sessionId?: string;
|
|
57666
58382
|
/**
|
|
57667
58383
|
* Page number
|
|
57668
58384
|
*/
|