@wix/auto_sdk_events_wix-events-v-2 1.0.50 → 1.0.52
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/build/cjs/index.d.ts +15 -15
- package/build/cjs/index.js +77 -184
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +138 -1107
- package/build/cjs/index.typings.js +77 -184
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +22 -22
- package/build/es/index.d.mts +15 -15
- package/build/es/index.mjs +77 -172
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +138 -1107
- package/build/es/index.typings.mjs +77 -172
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +22 -22
- package/build/internal/cjs/index.d.ts +15 -15
- package/build/internal/cjs/index.js +77 -184
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +138 -1107
- package/build/internal/cjs/index.typings.js +77 -184
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +22 -22
- package/build/internal/es/index.d.mts +15 -15
- package/build/internal/es/index.mjs +77 -172
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +138 -1107
- package/build/internal/es/index.typings.mjs +77 -172
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +22 -22
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { NonNullablePaths } from '@wix/sdk-types';
|
|
2
2
|
|
|
3
|
-
interface
|
|
3
|
+
interface Event {
|
|
4
4
|
/**
|
|
5
5
|
* Event ID.
|
|
6
6
|
* @format GUID
|
|
@@ -120,7 +120,7 @@ interface V3Event {
|
|
|
120
120
|
*/
|
|
121
121
|
agendaSettings?: AgendaSettings;
|
|
122
122
|
/** Visual settings for event. */
|
|
123
|
-
eventDisplaySettings?:
|
|
123
|
+
eventDisplaySettings?: EventDisplaySettings;
|
|
124
124
|
/** Event description. <widget src="https://apps.wix.com/_serverless/ricos-playground-services/goto/api-component" plugins="emoji,audio,codeBlock,collapsibleList,divider,emoji,file,gallery,giphy,hashtag,heading,html,image,indent,lineSpacing,link,linkPreview,spoiler,video" exampleid="9b569a8d-0fc1-40f4-987f-8bd40ecc72d0">Fallback Message for SSR and Error</widget> */
|
|
125
125
|
description?: RichContent;
|
|
126
126
|
/**
|
|
@@ -138,7 +138,7 @@ interface Location {
|
|
|
138
138
|
/** Location type. */
|
|
139
139
|
type?: LocationTypeWithLiterals;
|
|
140
140
|
/** Exact location address. */
|
|
141
|
-
address?:
|
|
141
|
+
address?: Address;
|
|
142
142
|
/** Whether the event location is TBD. */
|
|
143
143
|
locationTbd?: boolean | null;
|
|
144
144
|
}
|
|
@@ -153,9 +153,9 @@ declare enum LocationType {
|
|
|
153
153
|
/** @enumType */
|
|
154
154
|
type LocationTypeWithLiterals = LocationType | 'UNKNOWN_LOCATION' | 'VENUE' | 'ONLINE';
|
|
155
155
|
/** Physical address */
|
|
156
|
-
interface
|
|
156
|
+
interface Address extends AddressStreetOneOf {
|
|
157
157
|
/** Street address. */
|
|
158
|
-
streetAddress?:
|
|
158
|
+
streetAddress?: StreetAddress;
|
|
159
159
|
/**
|
|
160
160
|
* Primary address information (street and building number).
|
|
161
161
|
* @maxLength 250
|
|
@@ -188,16 +188,16 @@ interface CommonAddress extends CommonAddressStreetOneOf {
|
|
|
188
188
|
addressLine2?: string | null;
|
|
189
189
|
}
|
|
190
190
|
/** @oneof */
|
|
191
|
-
interface
|
|
191
|
+
interface AddressStreetOneOf {
|
|
192
192
|
/** Street address. */
|
|
193
|
-
streetAddress?:
|
|
193
|
+
streetAddress?: StreetAddress;
|
|
194
194
|
/**
|
|
195
195
|
* Primary address information (street and building number).
|
|
196
196
|
* @maxLength 250
|
|
197
197
|
*/
|
|
198
198
|
addressLine?: string | null;
|
|
199
199
|
}
|
|
200
|
-
interface
|
|
200
|
+
interface StreetAddress {
|
|
201
201
|
/**
|
|
202
202
|
* Street number.
|
|
203
203
|
* @maxLength 100
|
|
@@ -209,7 +209,7 @@ interface CommonStreetAddress {
|
|
|
209
209
|
*/
|
|
210
210
|
name?: string;
|
|
211
211
|
}
|
|
212
|
-
interface
|
|
212
|
+
interface AddressLocation {
|
|
213
213
|
/**
|
|
214
214
|
* Address latitude coordinates.
|
|
215
215
|
* @min -90
|
|
@@ -223,7 +223,7 @@ interface CommonAddressLocation {
|
|
|
223
223
|
*/
|
|
224
224
|
longitude?: number | null;
|
|
225
225
|
}
|
|
226
|
-
interface
|
|
226
|
+
interface Subdivision {
|
|
227
227
|
/**
|
|
228
228
|
* Short subdivision code.
|
|
229
229
|
* @maxLength 100
|
|
@@ -235,7 +235,7 @@ interface CommonSubdivision {
|
|
|
235
235
|
*/
|
|
236
236
|
name?: string;
|
|
237
237
|
}
|
|
238
|
-
declare enum
|
|
238
|
+
declare enum SubdivisionType {
|
|
239
239
|
UNKNOWN_SUBDIVISION_TYPE = "UNKNOWN_SUBDIVISION_TYPE",
|
|
240
240
|
/** State */
|
|
241
241
|
ADMINISTRATIVE_AREA_LEVEL_1 = "ADMINISTRATIVE_AREA_LEVEL_1",
|
|
@@ -251,7 +251,7 @@ declare enum SubdivisionSubdivisionType {
|
|
|
251
251
|
COUNTRY = "COUNTRY"
|
|
252
252
|
}
|
|
253
253
|
/** @enumType */
|
|
254
|
-
type
|
|
254
|
+
type SubdivisionTypeWithLiterals = SubdivisionType | 'UNKNOWN_SUBDIVISION_TYPE' | 'ADMINISTRATIVE_AREA_LEVEL_1' | 'ADMINISTRATIVE_AREA_LEVEL_2' | 'ADMINISTRATIVE_AREA_LEVEL_3' | 'ADMINISTRATIVE_AREA_LEVEL_4' | 'ADMINISTRATIVE_AREA_LEVEL_5' | 'COUNTRY';
|
|
255
255
|
interface DateAndTimeSettings {
|
|
256
256
|
/** Whether the event date and time are TBD. */
|
|
257
257
|
dateAndTimeTbd?: boolean | null;
|
|
@@ -1189,17 +1189,17 @@ interface EventCategory {
|
|
|
1189
1189
|
* Category type.
|
|
1190
1190
|
* @readonly
|
|
1191
1191
|
*/
|
|
1192
|
-
type?:
|
|
1192
|
+
type?: TypeWithLiterals;
|
|
1193
1193
|
}
|
|
1194
|
-
declare enum
|
|
1194
|
+
declare enum Type {
|
|
1195
1195
|
/** Created manually by the user. */
|
|
1196
1196
|
MANUAL = "MANUAL",
|
|
1197
1197
|
/** Created automatically when publishing recurring events. */
|
|
1198
1198
|
RECURRING_EVENT = "RECURRING_EVENT"
|
|
1199
1199
|
}
|
|
1200
1200
|
/** @enumType */
|
|
1201
|
-
type
|
|
1202
|
-
interface
|
|
1201
|
+
type TypeWithLiterals = Type | 'MANUAL' | 'RECURRING_EVENT';
|
|
1202
|
+
interface EventDisplaySettings {
|
|
1203
1203
|
/** Whether event details button is hidden. Only available for events with no registration. */
|
|
1204
1204
|
hideEventDetailsButton?: boolean | null;
|
|
1205
1205
|
/** Disables event details page visibility. If event has an external registration configured visitors will be redirected from this page. */
|
|
@@ -2943,9 +2943,9 @@ interface BadgeList {
|
|
|
2943
2943
|
* Events badges.
|
|
2944
2944
|
* @maxSize 10
|
|
2945
2945
|
*/
|
|
2946
|
-
badges?:
|
|
2946
|
+
badges?: Badge[];
|
|
2947
2947
|
}
|
|
2948
|
-
interface
|
|
2948
|
+
interface Badge {
|
|
2949
2949
|
/** Badge type. */
|
|
2950
2950
|
type?: BadgeTypeTypeWithLiterals;
|
|
2951
2951
|
/**
|
|
@@ -2966,7 +2966,7 @@ declare enum BadgeTypeType {
|
|
|
2966
2966
|
}
|
|
2967
2967
|
/** @enumType */
|
|
2968
2968
|
type BadgeTypeTypeWithLiterals = BadgeTypeType | 'UNKNOWN_BADGE_TYPE' | 'FIRST_PRIORITY' | 'SECOND_PRIORITY' | 'THIRD_PRIORITY';
|
|
2969
|
-
interface
|
|
2969
|
+
interface EventStarted {
|
|
2970
2970
|
/** Event schedule configuration. */
|
|
2971
2971
|
timestamp?: Date | null;
|
|
2972
2972
|
/**
|
|
@@ -2977,7 +2977,7 @@ interface EventEventStarted {
|
|
|
2977
2977
|
/** Whether at least 1 guest is registered to the event with any attendance status. */
|
|
2978
2978
|
hasGuests?: boolean | null;
|
|
2979
2979
|
}
|
|
2980
|
-
interface
|
|
2980
|
+
interface EventEnded {
|
|
2981
2981
|
/** Event end timestamp in ISO UTC format. */
|
|
2982
2982
|
timestamp?: Date | null;
|
|
2983
2983
|
/**
|
|
@@ -2988,7 +2988,7 @@ interface EventEventEnded {
|
|
|
2988
2988
|
/** Whether at least 1 guest is registered to the event with any attendance status. */
|
|
2989
2989
|
hasGuests?: boolean | null;
|
|
2990
2990
|
}
|
|
2991
|
-
interface
|
|
2991
|
+
interface EventReminder {
|
|
2992
2992
|
/** Reminder timestamp in ISO UTC format. */
|
|
2993
2993
|
timestamp?: Date | null;
|
|
2994
2994
|
/**
|
|
@@ -3016,7 +3016,7 @@ interface EventEventReminder {
|
|
|
3016
3016
|
/** Whether at least 1 guest is registered to the event with any attendance status. */
|
|
3017
3017
|
hasGuests?: boolean | null;
|
|
3018
3018
|
}
|
|
3019
|
-
interface
|
|
3019
|
+
interface EventPublished {
|
|
3020
3020
|
/** Event publishing timestamp in ISO UTC format. */
|
|
3021
3021
|
timestamp?: Date | null;
|
|
3022
3022
|
/**
|
|
@@ -3094,7 +3094,7 @@ interface EventCloned {
|
|
|
3094
3094
|
*/
|
|
3095
3095
|
ticketDefinitions?: Record<string, string>;
|
|
3096
3096
|
}
|
|
3097
|
-
interface
|
|
3097
|
+
interface EventCanceled {
|
|
3098
3098
|
/** Event cancellation timestamp in ISO UTC format. */
|
|
3099
3099
|
timestamp?: Date | null;
|
|
3100
3100
|
/**
|
|
@@ -3118,7 +3118,7 @@ interface EventEventCanceled {
|
|
|
3118
3118
|
}
|
|
3119
3119
|
interface CreateEventRequest {
|
|
3120
3120
|
/** Event data. */
|
|
3121
|
-
event:
|
|
3121
|
+
event: Event;
|
|
3122
3122
|
/** Whether to create the event as a draft. */
|
|
3123
3123
|
draft?: boolean;
|
|
3124
3124
|
/**
|
|
@@ -3157,7 +3157,7 @@ declare enum RequestedFields {
|
|
|
3157
3157
|
type RequestedFieldsWithLiterals = RequestedFields | 'UNKNOWN_REQUESTED_FIELD' | 'DETAILS' | 'TEXTS' | 'REGISTRATION' | 'URLS' | 'FORM' | 'DASHBOARD' | 'FEED' | 'ONLINE_CONFERENCING_SESSION' | 'SEO_SETTINGS' | 'AGENDA' | 'CATEGORIES';
|
|
3158
3158
|
interface CreateEventResponse {
|
|
3159
3159
|
/** Created event. */
|
|
3160
|
-
event?:
|
|
3160
|
+
event?: Event;
|
|
3161
3161
|
}
|
|
3162
3162
|
interface CloneEventRequest {
|
|
3163
3163
|
/**
|
|
@@ -3166,7 +3166,7 @@ interface CloneEventRequest {
|
|
|
3166
3166
|
*/
|
|
3167
3167
|
eventId: string;
|
|
3168
3168
|
/** Event info to change in the cloned event. */
|
|
3169
|
-
event?:
|
|
3169
|
+
event?: Event;
|
|
3170
3170
|
/** Whether to clone the event as a draft. */
|
|
3171
3171
|
draft?: boolean;
|
|
3172
3172
|
/**
|
|
@@ -3177,7 +3177,7 @@ interface CloneEventRequest {
|
|
|
3177
3177
|
}
|
|
3178
3178
|
interface CloneEventResponse {
|
|
3179
3179
|
/** Cloned event. */
|
|
3180
|
-
event?:
|
|
3180
|
+
event?: Event;
|
|
3181
3181
|
}
|
|
3182
3182
|
interface CloneEventFromOtherSiteRequest {
|
|
3183
3183
|
/**
|
|
@@ -3198,11 +3198,11 @@ interface CloneEventFromOtherSiteRequest {
|
|
|
3198
3198
|
}
|
|
3199
3199
|
interface CloneEventFromOtherSiteResponse {
|
|
3200
3200
|
/** Cloned event. */
|
|
3201
|
-
event?:
|
|
3201
|
+
event?: Event;
|
|
3202
3202
|
}
|
|
3203
3203
|
interface UpdateEventRequest {
|
|
3204
3204
|
/** Event info to update. */
|
|
3205
|
-
event?:
|
|
3205
|
+
event?: Event;
|
|
3206
3206
|
/**
|
|
3207
3207
|
* Predefined sets of fields to return.
|
|
3208
3208
|
* @maxSize 20
|
|
@@ -3211,7 +3211,7 @@ interface UpdateEventRequest {
|
|
|
3211
3211
|
}
|
|
3212
3212
|
interface UpdateEventResponse {
|
|
3213
3213
|
/** Updated event. */
|
|
3214
|
-
event?:
|
|
3214
|
+
event?: Event;
|
|
3215
3215
|
}
|
|
3216
3216
|
interface PublishDraftEventRequest {
|
|
3217
3217
|
/**
|
|
@@ -3227,7 +3227,7 @@ interface PublishDraftEventRequest {
|
|
|
3227
3227
|
}
|
|
3228
3228
|
interface PublishDraftEventResponse {
|
|
3229
3229
|
/** Published event. */
|
|
3230
|
-
event?:
|
|
3230
|
+
event?: Event;
|
|
3231
3231
|
}
|
|
3232
3232
|
interface CancelEventRequest {
|
|
3233
3233
|
/**
|
|
@@ -3243,7 +3243,7 @@ interface CancelEventRequest {
|
|
|
3243
3243
|
}
|
|
3244
3244
|
interface CancelEventResponse {
|
|
3245
3245
|
/** Canceled event. */
|
|
3246
|
-
event?:
|
|
3246
|
+
event?: Event;
|
|
3247
3247
|
}
|
|
3248
3248
|
interface BulkCancelEventsByFilterRequest {
|
|
3249
3249
|
/** Filter. For supported filters, see the table in [Query Events](https://dev.wix.com/docs/sdk/backend-modules/events/wix-events-v2/query-events). */
|
|
@@ -3341,7 +3341,7 @@ interface QueryEventsResponse {
|
|
|
3341
3341
|
/** Metadata for the paginated results. */
|
|
3342
3342
|
pagingMetadata?: CommonPagingMetadataV2;
|
|
3343
3343
|
/** List of events. */
|
|
3344
|
-
events?:
|
|
3344
|
+
events?: Event[];
|
|
3345
3345
|
}
|
|
3346
3346
|
interface CommonPagingMetadataV2 {
|
|
3347
3347
|
/** Number of items to return. See [Paging](https://dev.wix.com/api/rest/getting-started/sorting-and-paging#getting-started_sorting-and-paging_paging) for more information. */
|
|
@@ -3434,7 +3434,7 @@ interface ExportEventsResponse {
|
|
|
3434
3434
|
/** Metadata for the paginated results. */
|
|
3435
3435
|
pagingMetadata?: PagingMetadataV2;
|
|
3436
3436
|
/** List of events. */
|
|
3437
|
-
events?:
|
|
3437
|
+
events?: Event[];
|
|
3438
3438
|
}
|
|
3439
3439
|
interface PagingMetadataV2 {
|
|
3440
3440
|
/** Number of items returned in the response. */
|
|
@@ -3532,7 +3532,7 @@ interface ListUserEventsResponse {
|
|
|
3532
3532
|
/** Metadata for the paginated results. */
|
|
3533
3533
|
pagingMetadata?: CommonPagingMetadataV2;
|
|
3534
3534
|
/** List of events. */
|
|
3535
|
-
events?:
|
|
3535
|
+
events?: Event[];
|
|
3536
3536
|
/** Filter facets. */
|
|
3537
3537
|
facets?: Record<string, FacetCounts>;
|
|
3538
3538
|
}
|
|
@@ -3554,7 +3554,7 @@ interface ListEventsByCategoryResponse {
|
|
|
3554
3554
|
/** Metadata for the paginated results. */
|
|
3555
3555
|
pagingMetadata?: CommonPagingMetadataV2;
|
|
3556
3556
|
/** List of events. */
|
|
3557
|
-
events?:
|
|
3557
|
+
events?: Event[];
|
|
3558
3558
|
}
|
|
3559
3559
|
interface GetEventRequest {
|
|
3560
3560
|
/**
|
|
@@ -3570,7 +3570,7 @@ interface GetEventRequest {
|
|
|
3570
3570
|
}
|
|
3571
3571
|
interface GetEventResponse {
|
|
3572
3572
|
/** Event. */
|
|
3573
|
-
event?:
|
|
3573
|
+
event?: Event;
|
|
3574
3574
|
}
|
|
3575
3575
|
interface GetEventBySlugRequest {
|
|
3576
3576
|
/**
|
|
@@ -3584,7 +3584,7 @@ interface GetEventBySlugRequest {
|
|
|
3584
3584
|
}
|
|
3585
3585
|
interface GetEventBySlugResponse {
|
|
3586
3586
|
/** Event. */
|
|
3587
|
-
event?:
|
|
3587
|
+
event?: Event;
|
|
3588
3588
|
}
|
|
3589
3589
|
interface FindEventRequest extends FindEventRequestFindByOneOf {
|
|
3590
3590
|
/**
|
|
@@ -3620,1103 +3620,134 @@ interface FindEventRequestFindByOneOf {
|
|
|
3620
3620
|
}
|
|
3621
3621
|
interface FindEventResponse {
|
|
3622
3622
|
/** Event. */
|
|
3623
|
-
event?: V3Event;
|
|
3624
|
-
}
|
|
3625
|
-
interface EventCreated {
|
|
3626
|
-
/** Event created timestamp in ISO UTC format. */
|
|
3627
|
-
timestamp?: Date | null;
|
|
3628
|
-
/**
|
|
3629
|
-
* Event ID.
|
|
3630
|
-
* @format GUID
|
|
3631
|
-
*/
|
|
3632
|
-
eventId?: string;
|
|
3633
|
-
/** Event location. */
|
|
3634
|
-
location?: EventsLocation;
|
|
3635
|
-
/** Event schedule configuration. */
|
|
3636
|
-
scheduleConfig?: ScheduleConfig;
|
|
3637
|
-
/** Event title. */
|
|
3638
|
-
title?: string;
|
|
3639
|
-
/**
|
|
3640
|
-
* Event creator user ID.
|
|
3641
|
-
* @maxLength 36
|
|
3642
|
-
*/
|
|
3643
|
-
userId?: string | null;
|
|
3644
|
-
/** Event status. */
|
|
3645
|
-
status?: EventStatusWithLiterals;
|
|
3646
|
-
/**
|
|
3647
|
-
* Instance ID. Indicates the original app instance which current event was derived from.
|
|
3648
|
-
* @format GUID
|
|
3649
|
-
*/
|
|
3650
|
-
derivedFromInstanceId?: string | null;
|
|
3651
|
-
/**
|
|
3652
|
-
* Event ID. Indicates the original event which current event was derived from.
|
|
3653
|
-
* @format GUID
|
|
3654
|
-
*/
|
|
3655
|
-
derivedFromEventId?: string | null;
|
|
3656
|
-
/** Event that was created. */
|
|
3657
3623
|
event?: Event;
|
|
3658
3624
|
}
|
|
3659
|
-
interface
|
|
3660
|
-
/**
|
|
3661
|
-
* Location name.
|
|
3662
|
-
* @maxLength 50
|
|
3663
|
-
*/
|
|
3664
|
-
name?: string | null;
|
|
3665
|
-
/** Location map coordinates. */
|
|
3666
|
-
coordinates?: MapCoordinates;
|
|
3667
|
-
/**
|
|
3668
|
-
* Single line address representation.
|
|
3669
|
-
* @maxLength 300
|
|
3670
|
-
*/
|
|
3671
|
-
address?: string | null;
|
|
3672
|
-
/** Location type. */
|
|
3673
|
-
type?: LocationLocationTypeWithLiterals;
|
|
3674
|
-
/**
|
|
3675
|
-
* Full address derived from formatted single line `address`.
|
|
3676
|
-
* When `full_address` is used to create or update the event, deprecated `address` and `coordinates` are ignored.
|
|
3677
|
-
* If provided `full_address` has empty `formatted_address` or `coordinates`, it will be auto-completed using Atlas service.
|
|
3678
|
-
*
|
|
3679
|
-
* Migration notes:
|
|
3680
|
-
* - `full_address.formatted_address` is equivalent to `address`.
|
|
3681
|
-
* - `full_address.geocode` is equivalent to `coordinates`.
|
|
3682
|
-
*/
|
|
3683
|
-
fullAddress?: Address;
|
|
3684
|
-
/**
|
|
3685
|
-
* Defines event location as TBD (To Be Determined).
|
|
3686
|
-
* When event location is not yet defined, `name` is displayed instead of location address.
|
|
3687
|
-
* `coordinates`, `address`, `type` and `full_address` are not required when location is TBD.
|
|
3688
|
-
*/
|
|
3689
|
-
tbd?: boolean | null;
|
|
3625
|
+
interface Empty {
|
|
3690
3626
|
}
|
|
3691
|
-
interface
|
|
3627
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
3628
|
+
createdEvent?: EntityCreatedEvent;
|
|
3629
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
3630
|
+
deletedEvent?: EntityDeletedEvent;
|
|
3631
|
+
actionEvent?: ActionEvent;
|
|
3632
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
3633
|
+
_id?: string;
|
|
3692
3634
|
/**
|
|
3693
|
-
*
|
|
3694
|
-
*
|
|
3695
|
-
* @max 90
|
|
3635
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
3636
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
3696
3637
|
*/
|
|
3697
|
-
|
|
3638
|
+
entityFqdn?: string;
|
|
3698
3639
|
/**
|
|
3699
|
-
*
|
|
3700
|
-
*
|
|
3701
|
-
* @max 180
|
|
3640
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
3641
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
3702
3642
|
*/
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
}
|
|
3709
|
-
/** @enumType */
|
|
3710
|
-
type LocationLocationTypeWithLiterals = LocationLocationType | 'VENUE' | 'ONLINE';
|
|
3711
|
-
/** Physical address */
|
|
3712
|
-
interface Address extends AddressStreetOneOf {
|
|
3713
|
-
/** a break down of the street to number and street name */
|
|
3714
|
-
streetAddress?: StreetAddress;
|
|
3715
|
-
/** Main address line (usually street and number) as free text */
|
|
3716
|
-
addressLine1?: string | null;
|
|
3643
|
+
slug?: string;
|
|
3644
|
+
/** ID of the entity associated with the event. */
|
|
3645
|
+
entityId?: string;
|
|
3646
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
3647
|
+
eventTime?: Date | null;
|
|
3717
3648
|
/**
|
|
3718
|
-
*
|
|
3719
|
-
*
|
|
3649
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
3650
|
+
* (for example, GDPR).
|
|
3720
3651
|
*/
|
|
3721
|
-
|
|
3722
|
-
/**
|
|
3723
|
-
|
|
3724
|
-
/** city name */
|
|
3725
|
-
city?: string | null;
|
|
3726
|
-
/** zip/postal code */
|
|
3727
|
-
postalCode?: string | null;
|
|
3728
|
-
/** Free text providing more detailed address info. Usually contains Apt, Suite, Floor */
|
|
3729
|
-
addressLine2?: string | null;
|
|
3730
|
-
/** A string containing the human-readable address of this location */
|
|
3731
|
-
formatted?: string | null;
|
|
3732
|
-
/** coordinates of the physical address */
|
|
3733
|
-
location?: AddressLocation;
|
|
3734
|
-
/** country full-name */
|
|
3735
|
-
countryFullname?: string | null;
|
|
3652
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
3653
|
+
/** If present, indicates the action that triggered the event. */
|
|
3654
|
+
originatedFrom?: string | null;
|
|
3736
3655
|
/**
|
|
3737
|
-
*
|
|
3738
|
-
*
|
|
3656
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
3657
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
3739
3658
|
*/
|
|
3740
|
-
|
|
3659
|
+
entityEventSequence?: string | null;
|
|
3741
3660
|
}
|
|
3742
3661
|
/** @oneof */
|
|
3743
|
-
interface
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3662
|
+
interface DomainEventBodyOneOf {
|
|
3663
|
+
createdEvent?: EntityCreatedEvent;
|
|
3664
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
3665
|
+
deletedEvent?: EntityDeletedEvent;
|
|
3666
|
+
actionEvent?: ActionEvent;
|
|
3748
3667
|
}
|
|
3749
|
-
interface
|
|
3750
|
-
|
|
3751
|
-
number?: string;
|
|
3752
|
-
/** street name */
|
|
3753
|
-
name?: string;
|
|
3668
|
+
interface EntityCreatedEvent {
|
|
3669
|
+
entity?: string;
|
|
3754
3670
|
}
|
|
3755
|
-
interface
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
* @max 90
|
|
3760
|
-
*/
|
|
3761
|
-
latitude?: number | null;
|
|
3671
|
+
interface RestoreInfo {
|
|
3672
|
+
deletedDate?: Date | null;
|
|
3673
|
+
}
|
|
3674
|
+
interface EntityUpdatedEvent {
|
|
3762
3675
|
/**
|
|
3763
|
-
*
|
|
3764
|
-
*
|
|
3765
|
-
*
|
|
3676
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
3677
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
3678
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
3766
3679
|
*/
|
|
3767
|
-
|
|
3680
|
+
currentEntity?: string;
|
|
3768
3681
|
}
|
|
3769
|
-
interface
|
|
3770
|
-
/**
|
|
3771
|
-
|
|
3772
|
-
/** subdivision full-name */
|
|
3773
|
-
name?: string;
|
|
3682
|
+
interface EntityDeletedEvent {
|
|
3683
|
+
/** Entity that was deleted. */
|
|
3684
|
+
deletedEntity?: string | null;
|
|
3774
3685
|
}
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
/** State */
|
|
3778
|
-
ADMINISTRATIVE_AREA_LEVEL_1 = "ADMINISTRATIVE_AREA_LEVEL_1",
|
|
3779
|
-
/** County */
|
|
3780
|
-
ADMINISTRATIVE_AREA_LEVEL_2 = "ADMINISTRATIVE_AREA_LEVEL_2",
|
|
3781
|
-
/** City/town */
|
|
3782
|
-
ADMINISTRATIVE_AREA_LEVEL_3 = "ADMINISTRATIVE_AREA_LEVEL_3",
|
|
3783
|
-
/** Neighborhood/quarter */
|
|
3784
|
-
ADMINISTRATIVE_AREA_LEVEL_4 = "ADMINISTRATIVE_AREA_LEVEL_4",
|
|
3785
|
-
/** Street/block */
|
|
3786
|
-
ADMINISTRATIVE_AREA_LEVEL_5 = "ADMINISTRATIVE_AREA_LEVEL_5",
|
|
3787
|
-
/** ADMINISTRATIVE_AREA_LEVEL_0. Indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
|
|
3788
|
-
COUNTRY = "COUNTRY"
|
|
3686
|
+
interface ActionEvent {
|
|
3687
|
+
body?: string;
|
|
3789
3688
|
}
|
|
3790
|
-
|
|
3791
|
-
type SubdivisionTypeWithLiterals = SubdivisionType | 'UNKNOWN_SUBDIVISION_TYPE' | 'ADMINISTRATIVE_AREA_LEVEL_1' | 'ADMINISTRATIVE_AREA_LEVEL_2' | 'ADMINISTRATIVE_AREA_LEVEL_3' | 'ADMINISTRATIVE_AREA_LEVEL_4' | 'ADMINISTRATIVE_AREA_LEVEL_5' | 'COUNTRY';
|
|
3792
|
-
interface ScheduleConfig {
|
|
3689
|
+
interface MessageEnvelope {
|
|
3793
3690
|
/**
|
|
3794
|
-
*
|
|
3795
|
-
*
|
|
3796
|
-
* `startDate`, `endDate` and `timeZoneId` are not required when schedule is TBD.
|
|
3691
|
+
* App instance ID.
|
|
3692
|
+
* @format GUID
|
|
3797
3693
|
*/
|
|
3798
|
-
|
|
3694
|
+
instanceId?: string | null;
|
|
3799
3695
|
/**
|
|
3800
|
-
*
|
|
3801
|
-
* @maxLength
|
|
3696
|
+
* Event type.
|
|
3697
|
+
* @maxLength 150
|
|
3802
3698
|
*/
|
|
3803
|
-
|
|
3804
|
-
/**
|
|
3805
|
-
|
|
3806
|
-
/**
|
|
3807
|
-
|
|
3699
|
+
eventType?: string;
|
|
3700
|
+
/** The identification type and identity data. */
|
|
3701
|
+
identity?: IdentificationData;
|
|
3702
|
+
/** Stringify payload. */
|
|
3703
|
+
data?: string;
|
|
3704
|
+
}
|
|
3705
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
3808
3706
|
/**
|
|
3809
|
-
*
|
|
3810
|
-
* @
|
|
3707
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3708
|
+
* @format GUID
|
|
3811
3709
|
*/
|
|
3812
|
-
|
|
3813
|
-
/** Whether end date is hidden in the formatted schedule. */
|
|
3814
|
-
endDateHidden?: boolean;
|
|
3815
|
-
/** Whether time zone is displayed in formatted schedule. */
|
|
3816
|
-
showTimeZone?: boolean;
|
|
3817
|
-
/** Event recurrences. */
|
|
3818
|
-
recurrences?: EventsRecurrences;
|
|
3819
|
-
}
|
|
3820
|
-
interface EventsRecurrences {
|
|
3710
|
+
anonymousVisitorId?: string;
|
|
3821
3711
|
/**
|
|
3822
|
-
*
|
|
3823
|
-
* @
|
|
3712
|
+
* ID of a site visitor that has logged in to the site.
|
|
3713
|
+
* @format GUID
|
|
3824
3714
|
*/
|
|
3825
|
-
|
|
3715
|
+
memberId?: string;
|
|
3826
3716
|
/**
|
|
3827
|
-
*
|
|
3828
|
-
* @
|
|
3717
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3718
|
+
* @format GUID
|
|
3829
3719
|
*/
|
|
3830
|
-
|
|
3720
|
+
wixUserId?: string;
|
|
3831
3721
|
/**
|
|
3832
|
-
*
|
|
3833
|
-
* @
|
|
3722
|
+
* ID of an app.
|
|
3723
|
+
* @format GUID
|
|
3834
3724
|
*/
|
|
3835
|
-
|
|
3725
|
+
appId?: string;
|
|
3726
|
+
/** @readonly */
|
|
3727
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
3836
3728
|
}
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
startDate?: Date | null;
|
|
3840
|
-
/** Event end timestamp. */
|
|
3841
|
-
endDate?: Date | null;
|
|
3729
|
+
/** @oneof */
|
|
3730
|
+
interface IdentificationDataIdOneOf {
|
|
3842
3731
|
/**
|
|
3843
|
-
*
|
|
3844
|
-
* @
|
|
3732
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3733
|
+
* @format GUID
|
|
3845
3734
|
*/
|
|
3846
|
-
|
|
3847
|
-
/** Whether time zone is displayed in formatted schedule. */
|
|
3848
|
-
showTimeZone?: boolean;
|
|
3849
|
-
}
|
|
3850
|
-
declare enum EventsRecurrenceStatusStatus {
|
|
3851
|
-
/** Event occurs only once. */
|
|
3852
|
-
ONE_TIME = "ONE_TIME",
|
|
3853
|
-
/** Event is recurring. */
|
|
3854
|
-
RECURRING = "RECURRING",
|
|
3855
|
-
/** Marks the next upcoming occurrence of the recurring event. */
|
|
3856
|
-
RECURRING_NEXT = "RECURRING_NEXT",
|
|
3857
|
-
/** Marks the most recent ended occurrence of the recurring event. */
|
|
3858
|
-
RECURRING_LAST_ENDED = "RECURRING_LAST_ENDED",
|
|
3859
|
-
/** Marks the most recent canceled occurrence of the recurring event. */
|
|
3860
|
-
RECURRING_LAST_CANCELED = "RECURRING_LAST_CANCELED"
|
|
3861
|
-
}
|
|
3862
|
-
/** @enumType */
|
|
3863
|
-
type EventsRecurrenceStatusStatusWithLiterals = EventsRecurrenceStatusStatus | 'ONE_TIME' | 'RECURRING' | 'RECURRING_NEXT' | 'RECURRING_LAST_ENDED' | 'RECURRING_LAST_CANCELED';
|
|
3864
|
-
declare enum EventStatus {
|
|
3865
|
-
/** Event is public and scheduled to start */
|
|
3866
|
-
SCHEDULED = "SCHEDULED",
|
|
3867
|
-
/** Event has started */
|
|
3868
|
-
STARTED = "STARTED",
|
|
3869
|
-
/** Event has ended */
|
|
3870
|
-
ENDED = "ENDED",
|
|
3871
|
-
/** Event was canceled */
|
|
3872
|
-
CANCELED = "CANCELED"
|
|
3873
|
-
}
|
|
3874
|
-
/** @enumType */
|
|
3875
|
-
type EventStatusWithLiterals = EventStatus | 'SCHEDULED' | 'STARTED' | 'ENDED' | 'CANCELED';
|
|
3876
|
-
interface Event {
|
|
3735
|
+
anonymousVisitorId?: string;
|
|
3877
3736
|
/**
|
|
3878
|
-
*
|
|
3737
|
+
* ID of a site visitor that has logged in to the site.
|
|
3879
3738
|
* @format GUID
|
|
3880
|
-
* @readonly
|
|
3881
3739
|
*/
|
|
3882
|
-
|
|
3883
|
-
/** Event location. */
|
|
3884
|
-
location?: EventsLocation;
|
|
3885
|
-
/** Event scheduling. */
|
|
3886
|
-
scheduling?: Scheduling;
|
|
3887
|
-
/** Event title. */
|
|
3888
|
-
title?: string;
|
|
3889
|
-
/** Event description. */
|
|
3890
|
-
description?: string;
|
|
3891
|
-
/** Rich-text content that are displayed in a site's "About Event" section (HTML). */
|
|
3892
|
-
about?: string;
|
|
3893
|
-
/** Main event image. */
|
|
3894
|
-
mainImage?: string;
|
|
3895
|
-
/** Event slug URL (generated from event title). */
|
|
3896
|
-
slug?: string;
|
|
3897
|
-
/** ISO 639-1 language code of the event (used in content translations). */
|
|
3898
|
-
language?: string;
|
|
3899
|
-
/** Event creation timestamp. */
|
|
3900
|
-
created?: Date | null;
|
|
3901
|
-
/** Event modified timestamp. */
|
|
3902
|
-
modified?: Date | null;
|
|
3903
|
-
/** Event status. */
|
|
3904
|
-
status?: EventStatusWithLiterals;
|
|
3905
|
-
/** RSVP or ticketing registration details. */
|
|
3906
|
-
registration?: EventsRegistration;
|
|
3907
|
-
/** "Add to calendar" URLs. */
|
|
3908
|
-
calendarLinks?: CalendarLinks;
|
|
3909
|
-
/** Event page URL components. */
|
|
3910
|
-
eventPageUrl?: SiteUrl;
|
|
3911
|
-
/** Event registration form. */
|
|
3912
|
-
form?: Form;
|
|
3913
|
-
/** Event dashboard summary of RSVP / ticket sales. */
|
|
3914
|
-
dashboard?: Dashboard;
|
|
3915
|
-
/** Instance ID of the site where event is hosted. */
|
|
3916
|
-
instanceId?: string;
|
|
3917
|
-
/** Guest list configuration. */
|
|
3918
|
-
guestListConfig?: GuestListConfig;
|
|
3740
|
+
memberId?: string;
|
|
3919
3741
|
/**
|
|
3920
|
-
*
|
|
3921
|
-
* @
|
|
3742
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3743
|
+
* @format GUID
|
|
3922
3744
|
*/
|
|
3923
|
-
|
|
3924
|
-
/** Event discussion feed. For internal use. */
|
|
3925
|
-
feed?: EventsFeed;
|
|
3926
|
-
/** Online conferencing details. */
|
|
3927
|
-
onlineConferencing?: EventsOnlineConferencing;
|
|
3928
|
-
/** SEO settings. */
|
|
3929
|
-
seoSettings?: EventsSeoSettings;
|
|
3930
|
-
/** Assigned contacts label key. */
|
|
3931
|
-
assignedContactsLabel?: string | null;
|
|
3932
|
-
/** Agenda details. */
|
|
3933
|
-
agenda?: Agenda;
|
|
3934
|
-
/** Categories this event is assigned to. */
|
|
3935
|
-
categories?: Category[];
|
|
3936
|
-
/** Visual settings for event. */
|
|
3937
|
-
eventDisplaySettings?: EventDisplaySettings;
|
|
3938
|
-
/** Rich content that are displayed in a site's "About Event" section. Successor to `about` field. */
|
|
3939
|
-
longDescription?: RichContent;
|
|
3745
|
+
wixUserId?: string;
|
|
3940
3746
|
/**
|
|
3941
|
-
*
|
|
3942
|
-
* @
|
|
3747
|
+
* ID of an app.
|
|
3748
|
+
* @format GUID
|
|
3943
3749
|
*/
|
|
3944
|
-
|
|
3945
|
-
}
|
|
3946
|
-
interface Scheduling {
|
|
3947
|
-
/** Schedule configuration. */
|
|
3948
|
-
config?: ScheduleConfig;
|
|
3949
|
-
/** Formatted schedule representation. */
|
|
3950
|
-
formatted?: string;
|
|
3951
|
-
/** Formatted start date of the event (empty for TBD schedules). */
|
|
3952
|
-
startDateFormatted?: string;
|
|
3953
|
-
/** Formatted start time of the event (empty for TBD schedules). */
|
|
3954
|
-
startTimeFormatted?: string;
|
|
3955
|
-
/** Formatted end date of the event (empty for TBD schedules or when end date is hidden). */
|
|
3956
|
-
endDateFormatted?: string;
|
|
3957
|
-
/** Formatted end time of the event (empty for TBD schedules or when end date is hidden). */
|
|
3958
|
-
endTimeFormatted?: string;
|
|
3959
|
-
}
|
|
3960
|
-
interface EventsRegistration {
|
|
3961
|
-
/** Event type. */
|
|
3962
|
-
type?: EventTypeWithLiterals;
|
|
3963
|
-
/** Event registration status. */
|
|
3964
|
-
status?: RegistrationStatusWithLiterals;
|
|
3965
|
-
/** RSVP collection details. */
|
|
3966
|
-
rsvpCollection?: RsvpCollection;
|
|
3967
|
-
/** Ticketing details. */
|
|
3968
|
-
ticketing?: Ticketing;
|
|
3969
|
-
/** External registration details. */
|
|
3970
|
-
external?: ExternalEvent;
|
|
3971
|
-
/** Types of users allowed to register. */
|
|
3972
|
-
restrictedTo?: VisitorTypeWithLiterals;
|
|
3973
|
-
/** Initial event type which was set when creating an event. */
|
|
3974
|
-
initialType?: EventTypeWithLiterals;
|
|
3975
|
-
}
|
|
3976
|
-
declare enum EventType {
|
|
3977
|
-
/** Type not available for this request fieldset */
|
|
3978
|
-
NA_EVENT_TYPE = "NA_EVENT_TYPE",
|
|
3979
|
-
/** Registration via RSVP */
|
|
3980
|
-
RSVP = "RSVP",
|
|
3981
|
-
/** Registration via ticket purchase */
|
|
3982
|
-
TICKETS = "TICKETS",
|
|
3983
|
-
/** External registration */
|
|
3984
|
-
EXTERNAL = "EXTERNAL",
|
|
3985
|
-
/** Registration not available */
|
|
3986
|
-
NO_REGISTRATION = "NO_REGISTRATION"
|
|
3987
|
-
}
|
|
3988
|
-
/** @enumType */
|
|
3989
|
-
type EventTypeWithLiterals = EventType | 'NA_EVENT_TYPE' | 'RSVP' | 'TICKETS' | 'EXTERNAL' | 'NO_REGISTRATION';
|
|
3990
|
-
declare enum RegistrationStatus {
|
|
3991
|
-
/** Registration status is not applicable */
|
|
3992
|
-
NA_REGISTRATION_STATUS = "NA_REGISTRATION_STATUS",
|
|
3993
|
-
/** Registration to event is closed */
|
|
3994
|
-
CLOSED = "CLOSED",
|
|
3995
|
-
/** Registration to event is closed manually */
|
|
3996
|
-
CLOSED_MANUALLY = "CLOSED_MANUALLY",
|
|
3997
|
-
/** Registration is open via RSVP */
|
|
3998
|
-
OPEN_RSVP = "OPEN_RSVP",
|
|
3999
|
-
/** Registration to event waitlist is open via RSVP */
|
|
4000
|
-
OPEN_RSVP_WAITLIST = "OPEN_RSVP_WAITLIST",
|
|
4001
|
-
/** Registration is open via ticket purchase */
|
|
4002
|
-
OPEN_TICKETS = "OPEN_TICKETS",
|
|
4003
|
-
/** Registration is open via external URL */
|
|
4004
|
-
OPEN_EXTERNAL = "OPEN_EXTERNAL",
|
|
4005
|
-
/** Registration will be open via RSVP */
|
|
4006
|
-
SCHEDULED_RSVP = "SCHEDULED_RSVP"
|
|
4007
|
-
}
|
|
4008
|
-
/** @enumType */
|
|
4009
|
-
type RegistrationStatusWithLiterals = RegistrationStatus | 'NA_REGISTRATION_STATUS' | 'CLOSED' | 'CLOSED_MANUALLY' | 'OPEN_RSVP' | 'OPEN_RSVP_WAITLIST' | 'OPEN_TICKETS' | 'OPEN_EXTERNAL' | 'SCHEDULED_RSVP';
|
|
4010
|
-
interface RsvpCollection {
|
|
4011
|
-
/** RSVP collection configuration. */
|
|
4012
|
-
config?: RsvpCollectionConfig;
|
|
4013
|
-
}
|
|
4014
|
-
interface RsvpCollectionConfig {
|
|
4015
|
-
/** Defines the supported RSVP statuses. */
|
|
4016
|
-
rsvpStatusOptions?: RsvpStatusOptionsWithLiterals;
|
|
4017
|
-
/**
|
|
4018
|
-
* Total guest limit available to register to the event.
|
|
4019
|
-
* Additional guests per RSVP are counted towards total guests.
|
|
4020
|
-
*/
|
|
4021
|
-
limit?: number | null;
|
|
4022
|
-
/** Whether a waitlist is opened when total guest limit is reached, allowing guests to create RSVP with WAITING RSVP status. */
|
|
4023
|
-
waitlist?: boolean;
|
|
4024
|
-
/** Registration start timestamp. */
|
|
4025
|
-
startDate?: Date | null;
|
|
4026
|
-
/** Registration end timestamp. */
|
|
4027
|
-
endDate?: Date | null;
|
|
4028
|
-
}
|
|
4029
|
-
declare enum RsvpStatusOptions {
|
|
4030
|
-
/** Only YES RSVP status is available for RSVP registration */
|
|
4031
|
-
YES_ONLY = "YES_ONLY",
|
|
4032
|
-
/** YES and NO RSVP status options are available for the registration */
|
|
4033
|
-
YES_AND_NO = "YES_AND_NO"
|
|
4034
|
-
}
|
|
4035
|
-
/** @enumType */
|
|
4036
|
-
type RsvpStatusOptionsWithLiterals = RsvpStatusOptions | 'YES_ONLY' | 'YES_AND_NO';
|
|
4037
|
-
interface EventsRsvpConfirmationMessages {
|
|
4038
|
-
/** Messages displayed when an RSVP's `status` is set to `"YES"`. */
|
|
4039
|
-
positiveConfirmation?: RsvpConfirmationMessagesPositiveResponseConfirmation;
|
|
4040
|
-
/** Messages displayed when an RSVP's `status` is set to `"WAITLIST"`, for when the event is full and a waitlist is available). */
|
|
4041
|
-
waitlistMessages?: RsvpConfirmationMessagesPositiveResponseConfirmation;
|
|
4042
|
-
/** Messages displayed when an RSVP's `status` is set to `"NO"`. */
|
|
4043
|
-
negativeMessages?: RsvpConfirmationMessagesNegativeResponseConfirmation;
|
|
4044
|
-
}
|
|
4045
|
-
/** Confirmation shown after then registration when RSVP response is positive. */
|
|
4046
|
-
interface RsvpConfirmationMessagesPositiveResponseConfirmation {
|
|
4047
|
-
/**
|
|
4048
|
-
* Confirmation message title.
|
|
4049
|
-
* @maxLength 150
|
|
4050
|
-
*/
|
|
4051
|
-
title?: string | null;
|
|
4052
|
-
/**
|
|
4053
|
-
* Confirmation message text.
|
|
4054
|
-
* @maxLength 350
|
|
4055
|
-
*/
|
|
4056
|
-
message?: string | null;
|
|
4057
|
-
/**
|
|
4058
|
-
* "Add to calendar" call-to-action label text.
|
|
4059
|
-
* @maxLength 50
|
|
4060
|
-
*/
|
|
4061
|
-
addToCalendarActionLabel?: string | null;
|
|
4062
|
-
/**
|
|
4063
|
-
* "Share event" call-to-action label text.
|
|
4064
|
-
* @maxLength 50
|
|
4065
|
-
*/
|
|
4066
|
-
shareActionLabel?: string | null;
|
|
4067
|
-
}
|
|
4068
|
-
/** Confirmation shown after then registration when RSVP response is negative. */
|
|
4069
|
-
interface RsvpConfirmationMessagesNegativeResponseConfirmation {
|
|
4070
|
-
/**
|
|
4071
|
-
* Confirmation message title.
|
|
4072
|
-
* @maxLength 150
|
|
4073
|
-
*/
|
|
4074
|
-
title?: string | null;
|
|
4075
|
-
/**
|
|
4076
|
-
* "Share event" call-to-action label text.
|
|
4077
|
-
* @maxLength 50
|
|
4078
|
-
*/
|
|
4079
|
-
shareActionLabel?: string | null;
|
|
4080
|
-
}
|
|
4081
|
-
interface Ticketing {
|
|
4082
|
-
/**
|
|
4083
|
-
* Deprecated.
|
|
4084
|
-
* @deprecated
|
|
4085
|
-
*/
|
|
4086
|
-
lowestPrice?: string | null;
|
|
4087
|
-
/**
|
|
4088
|
-
* Deprecated.
|
|
4089
|
-
* @deprecated
|
|
4090
|
-
*/
|
|
4091
|
-
highestPrice?: string | null;
|
|
4092
|
-
/** Currency used in event transactions. */
|
|
4093
|
-
currency?: string | null;
|
|
4094
|
-
/** Ticketing configuration. */
|
|
4095
|
-
config?: TicketingConfig;
|
|
4096
|
-
/**
|
|
4097
|
-
* Price of lowest priced ticket.
|
|
4098
|
-
* @readonly
|
|
4099
|
-
*/
|
|
4100
|
-
lowestTicketPrice?: EventsMoney;
|
|
4101
|
-
/**
|
|
4102
|
-
* Price of highest priced ticket.
|
|
4103
|
-
* @readonly
|
|
4104
|
-
*/
|
|
4105
|
-
highestTicketPrice?: EventsMoney;
|
|
4106
|
-
/**
|
|
4107
|
-
* Formatted price of lowest priced ticket.
|
|
4108
|
-
* @readonly
|
|
4109
|
-
*/
|
|
4110
|
-
lowestTicketPriceFormatted?: string | null;
|
|
4111
|
-
/**
|
|
4112
|
-
* Formatted price of highest priced ticket.
|
|
4113
|
-
* @readonly
|
|
4114
|
-
*/
|
|
4115
|
-
highestTicketPriceFormatted?: string | null;
|
|
4116
|
-
/**
|
|
4117
|
-
* Whether all tickets are sold for this event.
|
|
4118
|
-
* @readonly
|
|
4119
|
-
*/
|
|
4120
|
-
soldOut?: boolean | null;
|
|
4121
|
-
}
|
|
4122
|
-
interface TicketingConfig {
|
|
4123
|
-
/** Whether the form must be filled out separately for each ticket. */
|
|
4124
|
-
guestAssignedTickets?: boolean;
|
|
4125
|
-
/** Tax configuration. */
|
|
4126
|
-
taxConfig?: TaxConfig;
|
|
4127
|
-
/**
|
|
4128
|
-
* Limit of tickets that can be purchased per order, default 20.
|
|
4129
|
-
* @max 50
|
|
4130
|
-
*/
|
|
4131
|
-
ticketLimitPerOrder?: number;
|
|
4132
|
-
/**
|
|
4133
|
-
* Duration for which the tickets being bought are reserved.
|
|
4134
|
-
* @min 5
|
|
4135
|
-
* @max 30
|
|
4136
|
-
*/
|
|
4137
|
-
reservationDurationInMinutes?: number | null;
|
|
4138
|
-
}
|
|
4139
|
-
interface TaxConfig {
|
|
4140
|
-
/** Tax application settings. */
|
|
4141
|
-
type?: EventsTaxTypeWithLiterals;
|
|
4142
|
-
/**
|
|
4143
|
-
* Tax name.
|
|
4144
|
-
* @minLength 1
|
|
4145
|
-
* @maxLength 10
|
|
4146
|
-
*/
|
|
4147
|
-
name?: string | null;
|
|
4148
|
-
/**
|
|
4149
|
-
* Tax rate (e.g.,`21.55`).
|
|
4150
|
-
* @decimalValue options { gte:0.001, lte:100, maxScale:3 }
|
|
4151
|
-
*/
|
|
4152
|
-
rate?: string | null;
|
|
4153
|
-
/** Applies taxes for donations, default true. */
|
|
4154
|
-
appliesToDonations?: boolean | null;
|
|
4155
|
-
}
|
|
4156
|
-
declare enum EventsTaxType {
|
|
4157
|
-
/** Tax is included in the ticket price. */
|
|
4158
|
-
INCLUDED = "INCLUDED",
|
|
4159
|
-
/** Tax is added to the order at the checkout. */
|
|
4160
|
-
ADDED = "ADDED",
|
|
4161
|
-
/** Tax is added to the final total at the checkout. */
|
|
4162
|
-
ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
|
|
4163
|
-
}
|
|
4164
|
-
/** @enumType */
|
|
4165
|
-
type EventsTaxTypeWithLiterals = EventsTaxType | 'INCLUDED' | 'ADDED' | 'ADDED_AT_CHECKOUT';
|
|
4166
|
-
interface EventsTicketsConfirmationMessages {
|
|
4167
|
-
/**
|
|
4168
|
-
* Confirmation message title.
|
|
4169
|
-
* @maxLength 150
|
|
4170
|
-
*/
|
|
4171
|
-
title?: string | null;
|
|
4172
|
-
/**
|
|
4173
|
-
* Confirmation message text.
|
|
4174
|
-
* @maxLength 350
|
|
4175
|
-
*/
|
|
4176
|
-
message?: string | null;
|
|
4177
|
-
/**
|
|
4178
|
-
* "Download tickets" call-to-action label text.
|
|
4179
|
-
* @maxLength 50
|
|
4180
|
-
*/
|
|
4181
|
-
downloadTicketsLabel?: string | null;
|
|
4182
|
-
/**
|
|
4183
|
-
* "Add to calendar" call-to-action label text.
|
|
4184
|
-
* @maxLength 50
|
|
4185
|
-
*/
|
|
4186
|
-
addToCalendarActionLabel?: string | null;
|
|
4187
|
-
/**
|
|
4188
|
-
* "Share event" call-to-action label text.
|
|
4189
|
-
* @maxLength 50
|
|
4190
|
-
*/
|
|
4191
|
-
shareActionLabel?: string | null;
|
|
4192
|
-
}
|
|
4193
|
-
interface ExternalEvent {
|
|
4194
|
-
/** External event registration URL. */
|
|
4195
|
-
registration?: string;
|
|
4196
|
-
}
|
|
4197
|
-
declare enum VisitorType {
|
|
4198
|
-
/** Site visitor (including member) */
|
|
4199
|
-
VISITOR = "VISITOR",
|
|
4200
|
-
/** Site member */
|
|
4201
|
-
MEMBER = "MEMBER",
|
|
4202
|
-
/** Site visitor or member */
|
|
4203
|
-
VISITOR_OR_MEMBER = "VISITOR_OR_MEMBER"
|
|
4204
|
-
}
|
|
4205
|
-
/** @enumType */
|
|
4206
|
-
type VisitorTypeWithLiterals = VisitorType | 'VISITOR' | 'MEMBER' | 'VISITOR_OR_MEMBER';
|
|
4207
|
-
interface CalendarLinks {
|
|
4208
|
-
/** "Add to Google calendar" URL. */
|
|
4209
|
-
google?: string;
|
|
4210
|
-
/** "Download ICS calendar file" URL. */
|
|
4211
|
-
ics?: string;
|
|
4212
|
-
}
|
|
4213
|
-
/** Site URL components */
|
|
4214
|
-
interface SiteUrl {
|
|
4215
|
-
/**
|
|
4216
|
-
* Base URL. For premium sites, this will be the domain.
|
|
4217
|
-
* For free sites, this would be site URL (e.g `mysite.wixsite.com/mysite`)
|
|
4218
|
-
*/
|
|
4219
|
-
base?: string;
|
|
4220
|
-
/** The path to that page - e.g `/my-events/weekly-meetup-2` */
|
|
4221
|
-
path?: string;
|
|
4222
|
-
}
|
|
4223
|
-
interface Dashboard {
|
|
4224
|
-
/** Guest RSVP summary. */
|
|
4225
|
-
rsvpSummary?: RsvpSummary;
|
|
4226
|
-
/**
|
|
4227
|
-
* Summary of revenue and tickets sold.
|
|
4228
|
-
* (Archived orders are not included).
|
|
4229
|
-
*/
|
|
4230
|
-
ticketingSummary?: TicketingSummary;
|
|
4231
|
-
}
|
|
4232
|
-
interface RsvpSummary {
|
|
4233
|
-
/** Total number of RSVPs. */
|
|
4234
|
-
total?: number;
|
|
4235
|
-
/** Number of RSVPs with status `YES`. */
|
|
4236
|
-
yes?: number;
|
|
4237
|
-
/** Number of RSVPs with status `NO`. */
|
|
4238
|
-
no?: number;
|
|
4239
|
-
/** Number of RSVPs in waitlist. */
|
|
4240
|
-
waitlist?: number;
|
|
4241
|
-
}
|
|
4242
|
-
interface TicketingSummary {
|
|
4243
|
-
/** Number of tickets sold. */
|
|
4244
|
-
tickets?: number;
|
|
4245
|
-
/**
|
|
4246
|
-
* Total revenue, excluding fees.
|
|
4247
|
-
* (taxes and payment provider fees are not deducted.)
|
|
4248
|
-
*/
|
|
4249
|
-
revenue?: EventsMoney;
|
|
4250
|
-
/** Whether currency is locked and cannot be changed (generally occurs after the first order in the specified currency has been created). */
|
|
4251
|
-
currencyLocked?: boolean;
|
|
4252
|
-
/** Number of orders placed. */
|
|
4253
|
-
orders?: number;
|
|
4254
|
-
/** Total balance of confirmed transactions. */
|
|
4255
|
-
totalSales?: EventsMoney;
|
|
4256
|
-
}
|
|
4257
|
-
interface GuestListConfig {
|
|
4258
|
-
/** Whether members can see other members attending the event (defaults to true). */
|
|
4259
|
-
publicGuestList?: boolean;
|
|
4260
|
-
}
|
|
4261
|
-
interface EventsFeed {
|
|
4262
|
-
/** Event discussion feed token. */
|
|
4263
|
-
token?: string;
|
|
4264
|
-
}
|
|
4265
|
-
interface EventsOnlineConferencing {
|
|
4266
|
-
config?: OnlineConferencingConfig;
|
|
4267
|
-
session?: EventsOnlineConferencingSession;
|
|
4268
|
-
}
|
|
4269
|
-
interface OnlineConferencingConfig {
|
|
4270
|
-
/**
|
|
4271
|
-
* Whether online conferencing is enabled (not supported for TBD schedules).
|
|
4272
|
-
* When enabled, links to join conferencing are generated and provided to guests.
|
|
4273
|
-
*/
|
|
4274
|
-
enabled?: boolean;
|
|
4275
|
-
/**
|
|
4276
|
-
* Conferencing provider ID.
|
|
4277
|
-
* @format GUID
|
|
4278
|
-
*/
|
|
4279
|
-
providerId?: string | null;
|
|
4280
|
-
/** Conference type */
|
|
4281
|
-
conferenceType?: ConferenceTypeWithLiterals;
|
|
4282
|
-
}
|
|
4283
|
-
declare enum ConferenceType {
|
|
4284
|
-
/** Everyone in the meeting can publish and subscribe video and audio. */
|
|
4285
|
-
MEETING = "MEETING",
|
|
4286
|
-
/** Guests can only subscribe to video and audio. */
|
|
4287
|
-
WEBINAR = "WEBINAR"
|
|
4288
|
-
}
|
|
4289
|
-
/** @enumType */
|
|
4290
|
-
type ConferenceTypeWithLiterals = ConferenceType | 'MEETING' | 'WEBINAR';
|
|
4291
|
-
interface EventsOnlineConferencingSession {
|
|
4292
|
-
/**
|
|
4293
|
-
* Link for event host to start the online conference session.
|
|
4294
|
-
* @readonly
|
|
4295
|
-
*/
|
|
4296
|
-
hostLink?: string;
|
|
4297
|
-
/**
|
|
4298
|
-
* Link for guests to join the online conference session.
|
|
4299
|
-
* @readonly
|
|
4300
|
-
*/
|
|
4301
|
-
guestLink?: string;
|
|
4302
|
-
/**
|
|
4303
|
-
* The password required to join online conferencing session (when relevant).
|
|
4304
|
-
* @readonly
|
|
4305
|
-
*/
|
|
4306
|
-
password?: string | null;
|
|
4307
|
-
/**
|
|
4308
|
-
* Indicates that session was created successfully on providers side.
|
|
4309
|
-
* @readonly
|
|
4310
|
-
*/
|
|
4311
|
-
sessionCreated?: boolean | null;
|
|
4312
|
-
/**
|
|
4313
|
-
* Unique session id
|
|
4314
|
-
* @readonly
|
|
4315
|
-
*/
|
|
4316
|
-
sessionId?: string | null;
|
|
4317
|
-
}
|
|
4318
|
-
interface EventsSeoSettings {
|
|
4319
|
-
/**
|
|
4320
|
-
* URL slug
|
|
4321
|
-
* @maxLength 130
|
|
4322
|
-
*/
|
|
4323
|
-
slug?: string;
|
|
4324
|
-
/** Advanced SEO data */
|
|
4325
|
-
advancedSeoData?: SeoSchema;
|
|
4326
|
-
/**
|
|
4327
|
-
* Hidden from SEO Site Map
|
|
4328
|
-
* @readonly
|
|
4329
|
-
*/
|
|
4330
|
-
hidden?: boolean | null;
|
|
4331
|
-
}
|
|
4332
|
-
interface Agenda {
|
|
4333
|
-
/** Whether the schedule is enabled for the event. */
|
|
4334
|
-
enabled?: boolean;
|
|
4335
|
-
/**
|
|
4336
|
-
* Agenda page URL.
|
|
4337
|
-
* @readonly
|
|
4338
|
-
*/
|
|
4339
|
-
pageUrl?: SiteUrl;
|
|
4340
|
-
}
|
|
4341
|
-
interface Category {
|
|
4342
|
-
/**
|
|
4343
|
-
* Category ID.
|
|
4344
|
-
* @format GUID
|
|
4345
|
-
* @readonly
|
|
4346
|
-
*/
|
|
4347
|
-
_id?: string;
|
|
4348
|
-
/**
|
|
4349
|
-
* Category name.
|
|
4350
|
-
* @minLength 1
|
|
4351
|
-
* @maxLength 30
|
|
4352
|
-
*/
|
|
4353
|
-
name?: string;
|
|
4354
|
-
/**
|
|
4355
|
-
* Date and time when category was created.
|
|
4356
|
-
* @readonly
|
|
4357
|
-
*/
|
|
4358
|
-
_createdDate?: Date | null;
|
|
4359
|
-
/**
|
|
4360
|
-
* The total number of draft and published events assigned to the category.
|
|
4361
|
-
* @readonly
|
|
4362
|
-
*/
|
|
4363
|
-
counts?: CategoryCounts;
|
|
4364
|
-
/**
|
|
4365
|
-
* Category state. Possible values:
|
|
4366
|
-
*
|
|
4367
|
-
* `MANUAL`: Category is created manually by the user.
|
|
4368
|
-
* `AUTO`: Category is created automatically.
|
|
4369
|
-
* `RECURRING_EVENT`: Category is created automatically when publishing recurring events.
|
|
4370
|
-
* `HIDDEN`: Category can't be seen.
|
|
4371
|
-
*
|
|
4372
|
-
* Default: `MANUAL`.
|
|
4373
|
-
*
|
|
4374
|
-
* **Note:** The WIX_EVENTS.MANAGE_AUTO_CATEGORIES permission scope is required to use states other than `MANUAL`.
|
|
4375
|
-
* @maxSize 3
|
|
4376
|
-
*/
|
|
4377
|
-
states?: StateWithLiterals[];
|
|
4378
|
-
}
|
|
4379
|
-
interface CategoryCounts {
|
|
4380
|
-
/** Total number of draft events assigned to the category. */
|
|
4381
|
-
assignedEventsCount?: number | null;
|
|
4382
|
-
/** Total number of published events assigned to the category. Deleted events are excluded. */
|
|
4383
|
-
assignedDraftEventsCount?: number | null;
|
|
4384
|
-
}
|
|
4385
|
-
declare enum State {
|
|
4386
|
-
/** Created manually by the user. */
|
|
4387
|
-
MANUAL = "MANUAL",
|
|
4388
|
-
/** Created automatically. */
|
|
4389
|
-
AUTO = "AUTO",
|
|
4390
|
-
/** Created when publishing recurring events. */
|
|
4391
|
-
RECURRING_EVENT = "RECURRING_EVENT",
|
|
4392
|
-
/** Category is hidden. */
|
|
4393
|
-
HIDDEN = "HIDDEN"
|
|
4394
|
-
}
|
|
4395
|
-
/** @enumType */
|
|
4396
|
-
type StateWithLiterals = State | 'MANUAL' | 'AUTO' | 'RECURRING_EVENT' | 'HIDDEN';
|
|
4397
|
-
interface EventDisplaySettings {
|
|
4398
|
-
/** Whether event details button is hidden. Only available for events with no registration. */
|
|
4399
|
-
hideEventDetailsButton?: boolean | null;
|
|
4400
|
-
/** Disables event details page visibility. If event has an external registration configured visitors will be redirected from this page. */
|
|
4401
|
-
hideEventDetailsPage?: boolean | null;
|
|
4402
|
-
}
|
|
4403
|
-
interface EventsLabellingSettings {
|
|
4404
|
-
}
|
|
4405
|
-
interface Badge {
|
|
4406
|
-
/** Badge type. */
|
|
4407
|
-
type?: TypeWithLiterals;
|
|
4408
|
-
/**
|
|
4409
|
-
* Badge text.
|
|
4410
|
-
* @maxLength 50
|
|
4411
|
-
*/
|
|
4412
|
-
text?: string | null;
|
|
4413
|
-
}
|
|
4414
|
-
declare enum Type {
|
|
4415
|
-
/** Unknown badge type. */
|
|
4416
|
-
UNKNOWN_BADGE_TYPE = "UNKNOWN_BADGE_TYPE",
|
|
4417
|
-
/** 1st priority badge type. */
|
|
4418
|
-
FIRST_PRIORITY = "FIRST_PRIORITY",
|
|
4419
|
-
/** 2nd priority badge type. */
|
|
4420
|
-
SECOND_PRIORITY = "SECOND_PRIORITY",
|
|
4421
|
-
/** 3rd priority badge type. */
|
|
4422
|
-
THIRD_PRIORITY = "THIRD_PRIORITY"
|
|
4423
|
-
}
|
|
4424
|
-
/** @enumType */
|
|
4425
|
-
type TypeWithLiterals = Type | 'UNKNOWN_BADGE_TYPE' | 'FIRST_PRIORITY' | 'SECOND_PRIORITY' | 'THIRD_PRIORITY';
|
|
4426
|
-
interface Empty {
|
|
4427
|
-
}
|
|
4428
|
-
interface EventUpdated {
|
|
4429
|
-
/** Event update timestamp in ISO UTC format. */
|
|
4430
|
-
timestamp?: Date | null;
|
|
4431
|
-
/**
|
|
4432
|
-
* Event ID.
|
|
4433
|
-
* @format GUID
|
|
4434
|
-
*/
|
|
4435
|
-
eventId?: string;
|
|
4436
|
-
/** Event location. */
|
|
4437
|
-
location?: EventsLocation;
|
|
4438
|
-
/** Event schedule configuration. */
|
|
4439
|
-
scheduleConfig?: ScheduleConfig;
|
|
4440
|
-
/** Event title. */
|
|
4441
|
-
title?: string;
|
|
4442
|
-
/**
|
|
4443
|
-
* Whether schedule configuration was updated.
|
|
4444
|
-
* @deprecated
|
|
4445
|
-
*/
|
|
4446
|
-
scheduleConfigUpdated?: boolean;
|
|
4447
|
-
/** Updated event */
|
|
4448
|
-
event?: Event;
|
|
4449
|
-
}
|
|
4450
|
-
interface EventDeleted {
|
|
4451
|
-
/** Event deleted timestamp in ISO UTC format. */
|
|
4452
|
-
timestamp?: Date | null;
|
|
4453
|
-
/**
|
|
4454
|
-
* Event ID.
|
|
4455
|
-
* @format GUID
|
|
4456
|
-
*/
|
|
4457
|
-
eventId?: string;
|
|
4458
|
-
/** Event title. */
|
|
4459
|
-
title?: string;
|
|
4460
|
-
/**
|
|
4461
|
-
* Event creator user ID.
|
|
4462
|
-
* @format GUID
|
|
4463
|
-
*/
|
|
4464
|
-
userId?: string | null;
|
|
4465
|
-
}
|
|
4466
|
-
interface EventCopied {
|
|
4467
|
-
/** Event created timestamp in ISO UTC format. */
|
|
4468
|
-
timestamp?: Date | null;
|
|
4469
|
-
/**
|
|
4470
|
-
* Event ID.
|
|
4471
|
-
* @format GUID
|
|
4472
|
-
*/
|
|
4473
|
-
eventId?: string;
|
|
4474
|
-
/** Event location. */
|
|
4475
|
-
location?: EventsLocation;
|
|
4476
|
-
/** Event schedule configuration. */
|
|
4477
|
-
scheduleConfig?: ScheduleConfig;
|
|
4478
|
-
/** Event title. */
|
|
4479
|
-
title?: string;
|
|
4480
|
-
/**
|
|
4481
|
-
* Event creator user ID.
|
|
4482
|
-
* @format GUID
|
|
4483
|
-
*/
|
|
4484
|
-
userId?: string | null;
|
|
4485
|
-
/** Event status. */
|
|
4486
|
-
status?: EventStatusWithLiterals;
|
|
4487
|
-
/**
|
|
4488
|
-
* Instance ID. Indicates the original app instance which current event was derived from.
|
|
4489
|
-
* @format GUID
|
|
4490
|
-
*/
|
|
4491
|
-
derivedFromInstanceId?: string | null;
|
|
4492
|
-
/**
|
|
4493
|
-
* Event ID. Indicates the original event which current event was derived from.
|
|
4494
|
-
* @format GUID
|
|
4495
|
-
*/
|
|
4496
|
-
derivedFromEventId?: string | null;
|
|
4497
|
-
/**
|
|
4498
|
-
* Map of copied ticket definitions from original event.
|
|
4499
|
-
* Key represents ticket def id in the original event.
|
|
4500
|
-
* Value represents ticket def id in the newly created event.
|
|
4501
|
-
*/
|
|
4502
|
-
ticketDefinitions?: Record<string, string>;
|
|
4503
|
-
}
|
|
4504
|
-
interface EventPublished {
|
|
4505
|
-
/** Event publish timestamp in ISO UTC format. */
|
|
4506
|
-
timestamp?: Date | null;
|
|
4507
|
-
/**
|
|
4508
|
-
* Event ID.
|
|
4509
|
-
* @format GUID
|
|
4510
|
-
*/
|
|
4511
|
-
eventId?: string;
|
|
4512
|
-
/** Event status. */
|
|
4513
|
-
status?: EventStatusWithLiterals;
|
|
4514
|
-
/**
|
|
4515
|
-
* Event ID. Indicates the original event which current event was derived from.
|
|
4516
|
-
* Can be used to track the original event and add missing information.
|
|
4517
|
-
*/
|
|
4518
|
-
derivedFromEventId?: string | null;
|
|
4519
|
-
/** Event title. */
|
|
4520
|
-
title?: string | null;
|
|
4521
|
-
/** Event description. */
|
|
4522
|
-
description?: string | null;
|
|
4523
|
-
/** Event location. */
|
|
4524
|
-
location?: EventsLocation;
|
|
4525
|
-
/** Event scheduling. */
|
|
4526
|
-
scheduling?: Scheduling;
|
|
4527
|
-
/** Event page URL components. */
|
|
4528
|
-
eventPageUrl?: SiteUrl;
|
|
4529
|
-
/** RSVP or ticketing registration details. */
|
|
4530
|
-
registration?: EventsRegistration;
|
|
4531
|
-
}
|
|
4532
|
-
interface EventCanceled {
|
|
4533
|
-
/** Event canceled timestamp in ISO UTC format. */
|
|
4534
|
-
timestamp?: Date | null;
|
|
4535
|
-
/**
|
|
4536
|
-
* Event ID.
|
|
4537
|
-
* @format GUID
|
|
4538
|
-
*/
|
|
4539
|
-
eventId?: string;
|
|
4540
|
-
/** Event title */
|
|
4541
|
-
title?: string;
|
|
4542
|
-
/**
|
|
4543
|
-
* Event creator user ID.
|
|
4544
|
-
* @format GUID
|
|
4545
|
-
*/
|
|
4546
|
-
userId?: string | null;
|
|
4547
|
-
/** True if at least one guest is registered to the event with any attendance status. */
|
|
4548
|
-
hasGuests?: boolean | null;
|
|
4549
|
-
}
|
|
4550
|
-
interface EventStarted {
|
|
4551
|
-
/** Event start timestamp in ISO UTC format. */
|
|
4552
|
-
timestamp?: Date | null;
|
|
4553
|
-
/**
|
|
4554
|
-
* Event ID.
|
|
4555
|
-
* @format GUID
|
|
4556
|
-
*/
|
|
4557
|
-
eventId?: string;
|
|
4558
|
-
/** True if at least one guest is registered to the event with any attendance status. */
|
|
4559
|
-
hasGuests?: boolean | null;
|
|
4560
|
-
}
|
|
4561
|
-
interface EventEnded {
|
|
4562
|
-
/** Event end timestamp in ISO UTC format. */
|
|
4563
|
-
timestamp?: Date | null;
|
|
4564
|
-
/**
|
|
4565
|
-
* Event ID.
|
|
4566
|
-
* @format GUID
|
|
4567
|
-
*/
|
|
4568
|
-
eventId?: string;
|
|
4569
|
-
/** True if at least one guest is registered to the event with any attendance status. */
|
|
4570
|
-
hasGuests?: boolean | null;
|
|
4571
|
-
}
|
|
4572
|
-
interface EventReminder {
|
|
4573
|
-
/** Reminder timestamp in ISO UTC format. */
|
|
4574
|
-
timestamp?: Date | null;
|
|
4575
|
-
/**
|
|
4576
|
-
* Event ID.
|
|
4577
|
-
* @format GUID
|
|
4578
|
-
*/
|
|
4579
|
-
eventId?: string;
|
|
4580
|
-
/** Event location. */
|
|
4581
|
-
location?: EventsLocation;
|
|
4582
|
-
/** Event schedule configuration. */
|
|
4583
|
-
scheduleConfig?: ScheduleConfig;
|
|
4584
|
-
/** Event title. */
|
|
4585
|
-
title?: string;
|
|
4586
|
-
/**
|
|
4587
|
-
* Event creator user ID.
|
|
4588
|
-
* @format GUID
|
|
4589
|
-
*/
|
|
4590
|
-
userId?: string | null;
|
|
4591
|
-
/** Time until the event starts (currently, reminder is triggered 1 day before event starts). */
|
|
4592
|
-
startsIn?: TimeDuration;
|
|
4593
|
-
/** True if at least one guest is registered to the event with any attendance status. */
|
|
4594
|
-
hasGuests?: boolean | null;
|
|
4595
|
-
}
|
|
4596
|
-
interface DomainEvent extends DomainEventBodyOneOf {
|
|
4597
|
-
createdEvent?: EntityCreatedEvent;
|
|
4598
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
4599
|
-
deletedEvent?: EntityDeletedEvent;
|
|
4600
|
-
actionEvent?: ActionEvent;
|
|
4601
|
-
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
4602
|
-
_id?: string;
|
|
4603
|
-
/**
|
|
4604
|
-
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
4605
|
-
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
4606
|
-
*/
|
|
4607
|
-
entityFqdn?: string;
|
|
4608
|
-
/**
|
|
4609
|
-
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
4610
|
-
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
4611
|
-
*/
|
|
4612
|
-
slug?: string;
|
|
4613
|
-
/** ID of the entity associated with the event. */
|
|
4614
|
-
entityId?: string;
|
|
4615
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
4616
|
-
eventTime?: Date | null;
|
|
4617
|
-
/**
|
|
4618
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
4619
|
-
* (for example, GDPR).
|
|
4620
|
-
*/
|
|
4621
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
4622
|
-
/** If present, indicates the action that triggered the event. */
|
|
4623
|
-
originatedFrom?: string | null;
|
|
4624
|
-
/**
|
|
4625
|
-
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
4626
|
-
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
4627
|
-
*/
|
|
4628
|
-
entityEventSequence?: string | null;
|
|
4629
|
-
}
|
|
4630
|
-
/** @oneof */
|
|
4631
|
-
interface DomainEventBodyOneOf {
|
|
4632
|
-
createdEvent?: EntityCreatedEvent;
|
|
4633
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
4634
|
-
deletedEvent?: EntityDeletedEvent;
|
|
4635
|
-
actionEvent?: ActionEvent;
|
|
4636
|
-
}
|
|
4637
|
-
interface EntityCreatedEvent {
|
|
4638
|
-
entity?: string;
|
|
4639
|
-
}
|
|
4640
|
-
interface RestoreInfo {
|
|
4641
|
-
deletedDate?: Date | null;
|
|
4642
|
-
}
|
|
4643
|
-
interface EntityUpdatedEvent {
|
|
4644
|
-
/**
|
|
4645
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
4646
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
4647
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
4648
|
-
*/
|
|
4649
|
-
currentEntity?: string;
|
|
4650
|
-
}
|
|
4651
|
-
interface EntityDeletedEvent {
|
|
4652
|
-
/** Entity that was deleted. */
|
|
4653
|
-
deletedEntity?: string | null;
|
|
4654
|
-
}
|
|
4655
|
-
interface ActionEvent {
|
|
4656
|
-
body?: string;
|
|
4657
|
-
}
|
|
4658
|
-
interface MessageEnvelope {
|
|
4659
|
-
/**
|
|
4660
|
-
* App instance ID.
|
|
4661
|
-
* @format GUID
|
|
4662
|
-
*/
|
|
4663
|
-
instanceId?: string | null;
|
|
4664
|
-
/**
|
|
4665
|
-
* Event type.
|
|
4666
|
-
* @maxLength 150
|
|
4667
|
-
*/
|
|
4668
|
-
eventType?: string;
|
|
4669
|
-
/** The identification type and identity data. */
|
|
4670
|
-
identity?: IdentificationData;
|
|
4671
|
-
/** Stringify payload. */
|
|
4672
|
-
data?: string;
|
|
4673
|
-
}
|
|
4674
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
4675
|
-
/**
|
|
4676
|
-
* ID of a site visitor that has not logged in to the site.
|
|
4677
|
-
* @format GUID
|
|
4678
|
-
*/
|
|
4679
|
-
anonymousVisitorId?: string;
|
|
4680
|
-
/**
|
|
4681
|
-
* ID of a site visitor that has logged in to the site.
|
|
4682
|
-
* @format GUID
|
|
4683
|
-
*/
|
|
4684
|
-
memberId?: string;
|
|
4685
|
-
/**
|
|
4686
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
4687
|
-
* @format GUID
|
|
4688
|
-
*/
|
|
4689
|
-
wixUserId?: string;
|
|
4690
|
-
/**
|
|
4691
|
-
* ID of an app.
|
|
4692
|
-
* @format GUID
|
|
4693
|
-
*/
|
|
4694
|
-
appId?: string;
|
|
4695
|
-
/** @readonly */
|
|
4696
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
4697
|
-
}
|
|
4698
|
-
/** @oneof */
|
|
4699
|
-
interface IdentificationDataIdOneOf {
|
|
4700
|
-
/**
|
|
4701
|
-
* ID of a site visitor that has not logged in to the site.
|
|
4702
|
-
* @format GUID
|
|
4703
|
-
*/
|
|
4704
|
-
anonymousVisitorId?: string;
|
|
4705
|
-
/**
|
|
4706
|
-
* ID of a site visitor that has logged in to the site.
|
|
4707
|
-
* @format GUID
|
|
4708
|
-
*/
|
|
4709
|
-
memberId?: string;
|
|
4710
|
-
/**
|
|
4711
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
4712
|
-
* @format GUID
|
|
4713
|
-
*/
|
|
4714
|
-
wixUserId?: string;
|
|
4715
|
-
/**
|
|
4716
|
-
* ID of an app.
|
|
4717
|
-
* @format GUID
|
|
4718
|
-
*/
|
|
4719
|
-
appId?: string;
|
|
3750
|
+
appId?: string;
|
|
4720
3751
|
}
|
|
4721
3752
|
declare enum WebhookIdentityType {
|
|
4722
3753
|
UNKNOWN = "UNKNOWN",
|
|
@@ -4836,7 +3867,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
4836
3867
|
entityEventSequence?: string | null;
|
|
4837
3868
|
}
|
|
4838
3869
|
interface EventCanceledEnvelope {
|
|
4839
|
-
data:
|
|
3870
|
+
data: EventCanceled;
|
|
4840
3871
|
metadata: EventMetadata;
|
|
4841
3872
|
}
|
|
4842
3873
|
/**
|
|
@@ -4920,7 +3951,7 @@ interface EventClonedEnvelope {
|
|
|
4920
3951
|
*/
|
|
4921
3952
|
declare function onEventCloned(handler: (event: EventClonedEnvelope) => void | Promise<void>): void;
|
|
4922
3953
|
interface EventCreatedEnvelope {
|
|
4923
|
-
entity:
|
|
3954
|
+
entity: Event;
|
|
4924
3955
|
metadata: EventMetadata;
|
|
4925
3956
|
}
|
|
4926
3957
|
/**
|
|
@@ -5003,7 +4034,7 @@ interface EventDeletedEnvelope {
|
|
|
5003
4034
|
*/
|
|
5004
4035
|
declare function onEventDeleted(handler: (event: EventDeletedEnvelope) => void | Promise<void>): void;
|
|
5005
4036
|
interface EventEndedEnvelope {
|
|
5006
|
-
data:
|
|
4037
|
+
data: EventEnded;
|
|
5007
4038
|
metadata: EventMetadata;
|
|
5008
4039
|
}
|
|
5009
4040
|
/**
|
|
@@ -5045,7 +4076,7 @@ interface EventEndedEnvelope {
|
|
|
5045
4076
|
*/
|
|
5046
4077
|
declare function onEventEnded(handler: (event: EventEndedEnvelope) => void | Promise<void>): void;
|
|
5047
4078
|
interface EventPublishedEnvelope {
|
|
5048
|
-
data:
|
|
4079
|
+
data: EventPublished;
|
|
5049
4080
|
metadata: EventMetadata;
|
|
5050
4081
|
}
|
|
5051
4082
|
/**
|
|
@@ -5087,7 +4118,7 @@ interface EventPublishedEnvelope {
|
|
|
5087
4118
|
*/
|
|
5088
4119
|
declare function onEventPublished(handler: (event: EventPublishedEnvelope) => void | Promise<void>): void;
|
|
5089
4120
|
interface EventReminderEnvelope {
|
|
5090
|
-
data:
|
|
4121
|
+
data: EventReminder;
|
|
5091
4122
|
metadata: EventMetadata;
|
|
5092
4123
|
}
|
|
5093
4124
|
/**
|
|
@@ -5135,7 +4166,7 @@ interface EventReminderEnvelope {
|
|
|
5135
4166
|
*/
|
|
5136
4167
|
declare function onEventReminder(handler: (event: EventReminderEnvelope) => void | Promise<void>): void;
|
|
5137
4168
|
interface EventStartedEnvelope {
|
|
5138
|
-
data:
|
|
4169
|
+
data: EventStarted;
|
|
5139
4170
|
metadata: EventMetadata;
|
|
5140
4171
|
}
|
|
5141
4172
|
/**
|
|
@@ -5177,7 +4208,7 @@ interface EventStartedEnvelope {
|
|
|
5177
4208
|
*/
|
|
5178
4209
|
declare function onEventStarted(handler: (event: EventStartedEnvelope) => void | Promise<void>): void;
|
|
5179
4210
|
interface EventUpdatedEnvelope {
|
|
5180
|
-
entity:
|
|
4211
|
+
entity: Event;
|
|
5181
4212
|
metadata: EventMetadata;
|
|
5182
4213
|
}
|
|
5183
4214
|
/**
|
|
@@ -5236,7 +4267,7 @@ declare function onEventUpdated(handler: (event: EventUpdatedEnvelope) => void |
|
|
|
5236
4267
|
* @returns Created event.
|
|
5237
4268
|
* @fqn wix.events.events.v3.EventManagement.CreateEvent
|
|
5238
4269
|
*/
|
|
5239
|
-
declare function createEvent(event: NonNullablePaths<
|
|
4270
|
+
declare function createEvent(event: NonNullablePaths<Event, `dateAndTimeSettings` | `location` | `registration.initialType` | `title`, 3>, options?: CreateEventOptions): Promise<NonNullablePaths<Event, `_id` | `location.type` | `location.address.streetAddress.number` | `location.address.streetAddress.name` | `dateAndTimeSettings.recurrenceStatus` | `dateAndTimeSettings.recurringEvents.individualEventDates` | `dateAndTimeSettings.recurringEvents.individualEventDates.${number}.showTimeZone` | `slug` | `status` | `registration.type` | `registration.status` | `registration.rsvp.responseType` | `registration.rsvp.waitlistEnabled` | `registration.tickets.guestsAssignedSeparately` | `registration.tickets.ticketLimitPerOrder` | `registration.tickets.lowestPrice.value` | `registration.tickets.lowestPrice.currency` | `registration.tickets.taxSettings.type` | `registration.allowedGuestTypes` | `registration.initialType` | `registration.registrationPaused` | `registration.registrationDisabled` | `calendarUrls.google` | `calendarUrls.ics` | `form.controls` | `form.controls.${number}.type` | `form.controls.${number}.system` | `form.controls.${number}.name` | `form.controls.${number}.label` | `form.controls.${number}.orderIndex` | `form.controls.${number}._id` | `form.messages.rsvp.rsvpYesOption` | `form.messages.rsvp.rsvpNoOption` | `form.messages.rsvp.positiveMessages.title` | `form.messages.rsvp.positiveMessages.confirmation.title` | `form.messages.rsvp.positiveMessages.confirmation.message` | `form.messages.rsvp.positiveMessages.confirmation.addToCalendarActionLabel` | `form.messages.rsvp.positiveMessages.confirmation.shareActionLabel` | `form.messages.rsvp.negativeMessages.title` | `form.messages.rsvp.negativeMessages.confirmation.title` | `form.messages.rsvp.negativeMessages.confirmation.shareActionLabel` | `form.messages.rsvp.submitActionLabel` | `form.messages.checkout.title` | `form.messages.checkout.submitActionLabel` | `form.messages.checkout.confirmation.title` | `form.messages.checkout.confirmation.message` | `form.messages.checkout.confirmation.downloadTicketsLabel` | `form.messages.checkout.confirmation.addToCalendarLabel` | `form.messages.checkout.confirmation.shareEventLabel` | `form.messages.registrationClosed.message` | `form.messages.registrationClosed.exploreEventsActionLabel` | `form.messages.ticketsUnavailable.message` | `form.messages.ticketsUnavailable.exploreEventsActionLabel` | `summaries.rsvps.totalCount` | `summaries.rsvps.yesCount` | `summaries.rsvps.noCount` | `summaries.rsvps.waitlistCount` | `summaries.tickets.ticketsSold` | `summaries.tickets.revenue.amount` | `summaries.tickets.revenue.currency` | `summaries.tickets.currencyLocked` | `summaries.tickets.totalOrders` | `instanceId` | `guestListSettings.displayedPublicly` | `userId` | `onlineConferencing.enabled` | `onlineConferencing.type` | `onlineConferencing.session.hostLink` | `onlineConferencing.session.guestLink` | `seoSettings.slug` | `seoSettings.advancedSeoData.tags` | `seoSettings.advancedSeoData.tags.${number}.type` | `seoSettings.advancedSeoData.tags.${number}.children` | `seoSettings.advancedSeoData.tags.${number}.custom` | `seoSettings.advancedSeoData.tags.${number}.disabled` | `seoSettings.advancedSeoData.settings.preventAutoRedirect` | `seoSettings.advancedSeoData.settings.keywords` | `seoSettings.advancedSeoData.settings.keywords.${number}.term` | `seoSettings.advancedSeoData.settings.keywords.${number}.isMain` | `agendaSettings.enabled`, 7> & {
|
|
5240
4271
|
__applicationErrorsType?: CreateEventApplicationErrors;
|
|
5241
4272
|
__validationErrorsType?: CreateEventValidationErrors;
|
|
5242
4273
|
}>;
|
|
@@ -5265,7 +4296,7 @@ interface CreateEventOptions {
|
|
|
5265
4296
|
declare function cloneEvent(eventId: string, options?: CloneEventOptions): Promise<NonNullablePaths<CloneEventResponse, `event._id` | `event.location.type` | `event.location.address.streetAddress.number` | `event.location.address.streetAddress.name` | `event.dateAndTimeSettings.recurrenceStatus` | `event.dateAndTimeSettings.recurringEvents.individualEventDates` | `event.dateAndTimeSettings.recurringEvents.individualEventDates.${number}.showTimeZone` | `event.slug` | `event.status` | `event.registration.type` | `event.registration.status` | `event.registration.rsvp.responseType` | `event.registration.rsvp.waitlistEnabled` | `event.registration.tickets.guestsAssignedSeparately` | `event.registration.tickets.ticketLimitPerOrder` | `event.registration.tickets.lowestPrice.value` | `event.registration.tickets.lowestPrice.currency` | `event.registration.tickets.taxSettings.type` | `event.registration.allowedGuestTypes` | `event.registration.initialType` | `event.registration.registrationPaused` | `event.registration.registrationDisabled` | `event.calendarUrls.google` | `event.calendarUrls.ics` | `event.form.controls` | `event.form.controls.${number}.type` | `event.form.controls.${number}.system` | `event.form.controls.${number}.name` | `event.form.controls.${number}.label` | `event.form.controls.${number}.orderIndex` | `event.form.controls.${number}._id` | `event.form.messages.rsvp.rsvpYesOption` | `event.form.messages.rsvp.rsvpNoOption` | `event.form.messages.rsvp.positiveMessages.title` | `event.form.messages.rsvp.positiveMessages.confirmation.title` | `event.form.messages.rsvp.positiveMessages.confirmation.message` | `event.form.messages.rsvp.positiveMessages.confirmation.addToCalendarActionLabel` | `event.form.messages.rsvp.positiveMessages.confirmation.shareActionLabel` | `event.form.messages.rsvp.negativeMessages.title` | `event.form.messages.rsvp.negativeMessages.confirmation.title` | `event.form.messages.rsvp.negativeMessages.confirmation.shareActionLabel` | `event.form.messages.rsvp.submitActionLabel` | `event.form.messages.checkout.title` | `event.form.messages.checkout.submitActionLabel` | `event.form.messages.checkout.confirmation.title` | `event.form.messages.checkout.confirmation.message` | `event.form.messages.checkout.confirmation.downloadTicketsLabel` | `event.form.messages.checkout.confirmation.addToCalendarLabel` | `event.form.messages.checkout.confirmation.shareEventLabel` | `event.form.messages.registrationClosed.message` | `event.form.messages.registrationClosed.exploreEventsActionLabel` | `event.form.messages.ticketsUnavailable.message` | `event.form.messages.ticketsUnavailable.exploreEventsActionLabel` | `event.summaries.rsvps.totalCount` | `event.summaries.rsvps.yesCount` | `event.summaries.rsvps.noCount` | `event.summaries.rsvps.waitlistCount` | `event.summaries.tickets.ticketsSold` | `event.summaries.tickets.revenue.amount` | `event.summaries.tickets.revenue.currency` | `event.summaries.tickets.currencyLocked` | `event.summaries.tickets.totalOrders` | `event.instanceId` | `event.guestListSettings.displayedPublicly` | `event.userId` | `event.onlineConferencing.enabled` | `event.onlineConferencing.type` | `event.onlineConferencing.session.hostLink` | `event.onlineConferencing.session.guestLink` | `event.seoSettings.slug` | `event.seoSettings.advancedSeoData.tags` | `event.seoSettings.advancedSeoData.tags.${number}.type` | `event.seoSettings.advancedSeoData.tags.${number}.children` | `event.seoSettings.advancedSeoData.tags.${number}.custom` | `event.seoSettings.advancedSeoData.tags.${number}.disabled` | `event.seoSettings.advancedSeoData.settings.preventAutoRedirect` | `event.seoSettings.advancedSeoData.settings.keywords` | `event.seoSettings.advancedSeoData.settings.keywords.${number}.term` | `event.seoSettings.advancedSeoData.settings.keywords.${number}.isMain` | `event.agendaSettings.enabled`, 8>>;
|
|
5266
4297
|
interface CloneEventOptions {
|
|
5267
4298
|
/** Event info to change in the cloned event. */
|
|
5268
|
-
event?:
|
|
4299
|
+
event?: Event;
|
|
5269
4300
|
/** Whether to clone the event as a draft. */
|
|
5270
4301
|
draft?: boolean;
|
|
5271
4302
|
/**
|
|
@@ -5285,7 +4316,7 @@ interface CloneEventOptions {
|
|
|
5285
4316
|
* @returns Updated event.
|
|
5286
4317
|
* @fqn wix.events.events.v3.EventManagement.UpdateEvent
|
|
5287
4318
|
*/
|
|
5288
|
-
declare function updateEvent(_id: string, options?: UpdateEventOptions): Promise<NonNullablePaths<
|
|
4319
|
+
declare function updateEvent(_id: string, options?: UpdateEventOptions): Promise<NonNullablePaths<Event, `_id` | `location.type` | `location.address.streetAddress.number` | `location.address.streetAddress.name` | `dateAndTimeSettings.recurrenceStatus` | `dateAndTimeSettings.recurringEvents.individualEventDates` | `dateAndTimeSettings.recurringEvents.individualEventDates.${number}.showTimeZone` | `slug` | `status` | `registration.type` | `registration.status` | `registration.rsvp.responseType` | `registration.rsvp.waitlistEnabled` | `registration.tickets.guestsAssignedSeparately` | `registration.tickets.ticketLimitPerOrder` | `registration.tickets.lowestPrice.value` | `registration.tickets.lowestPrice.currency` | `registration.tickets.taxSettings.type` | `registration.allowedGuestTypes` | `registration.initialType` | `registration.registrationPaused` | `registration.registrationDisabled` | `calendarUrls.google` | `calendarUrls.ics` | `form.controls` | `form.controls.${number}.type` | `form.controls.${number}.system` | `form.controls.${number}.name` | `form.controls.${number}.label` | `form.controls.${number}.orderIndex` | `form.controls.${number}._id` | `form.messages.rsvp.rsvpYesOption` | `form.messages.rsvp.rsvpNoOption` | `form.messages.rsvp.positiveMessages.title` | `form.messages.rsvp.positiveMessages.confirmation.title` | `form.messages.rsvp.positiveMessages.confirmation.message` | `form.messages.rsvp.positiveMessages.confirmation.addToCalendarActionLabel` | `form.messages.rsvp.positiveMessages.confirmation.shareActionLabel` | `form.messages.rsvp.negativeMessages.title` | `form.messages.rsvp.negativeMessages.confirmation.title` | `form.messages.rsvp.negativeMessages.confirmation.shareActionLabel` | `form.messages.rsvp.submitActionLabel` | `form.messages.checkout.title` | `form.messages.checkout.submitActionLabel` | `form.messages.checkout.confirmation.title` | `form.messages.checkout.confirmation.message` | `form.messages.checkout.confirmation.downloadTicketsLabel` | `form.messages.checkout.confirmation.addToCalendarLabel` | `form.messages.checkout.confirmation.shareEventLabel` | `form.messages.registrationClosed.message` | `form.messages.registrationClosed.exploreEventsActionLabel` | `form.messages.ticketsUnavailable.message` | `form.messages.ticketsUnavailable.exploreEventsActionLabel` | `summaries.rsvps.totalCount` | `summaries.rsvps.yesCount` | `summaries.rsvps.noCount` | `summaries.rsvps.waitlistCount` | `summaries.tickets.ticketsSold` | `summaries.tickets.revenue.amount` | `summaries.tickets.revenue.currency` | `summaries.tickets.currencyLocked` | `summaries.tickets.totalOrders` | `instanceId` | `guestListSettings.displayedPublicly` | `userId` | `onlineConferencing.enabled` | `onlineConferencing.type` | `onlineConferencing.session.hostLink` | `onlineConferencing.session.guestLink` | `seoSettings.slug` | `seoSettings.advancedSeoData.tags` | `seoSettings.advancedSeoData.tags.${number}.type` | `seoSettings.advancedSeoData.tags.${number}.children` | `seoSettings.advancedSeoData.tags.${number}.custom` | `seoSettings.advancedSeoData.tags.${number}.disabled` | `seoSettings.advancedSeoData.settings.preventAutoRedirect` | `seoSettings.advancedSeoData.settings.keywords` | `seoSettings.advancedSeoData.settings.keywords.${number}.term` | `seoSettings.advancedSeoData.settings.keywords.${number}.isMain` | `agendaSettings.enabled`, 7> & {
|
|
5289
4320
|
__applicationErrorsType?: UpdateEventApplicationErrors;
|
|
5290
4321
|
__validationErrorsType?: UpdateEventValidationErrors;
|
|
5291
4322
|
}>;
|
|
@@ -5410,7 +4441,7 @@ interface UpdateEventOptions {
|
|
|
5410
4441
|
*/
|
|
5411
4442
|
agendaSettings?: AgendaSettings;
|
|
5412
4443
|
/** Visual settings for event. */
|
|
5413
|
-
eventDisplaySettings?:
|
|
4444
|
+
eventDisplaySettings?: EventDisplaySettings;
|
|
5414
4445
|
/** Event description. <widget src="https://apps.wix.com/_serverless/ricos-playground-services/goto/api-component" plugins="emoji,audio,codeBlock,collapsibleList,divider,emoji,file,gallery,giphy,hashtag,heading,html,image,indent,lineSpacing,link,linkPreview,spoiler,video" exampleid="9b569a8d-0fc1-40f4-987f-8bd40ecc72d0">Fallback Message for SSR and Error</widget> */
|
|
5415
4446
|
description?: RichContent;
|
|
5416
4447
|
/**
|
|
@@ -5556,7 +4587,7 @@ interface QueryOffsetResult {
|
|
|
5556
4587
|
pageSize: number;
|
|
5557
4588
|
}
|
|
5558
4589
|
interface EventsQueryResult extends QueryOffsetResult {
|
|
5559
|
-
items:
|
|
4590
|
+
items: Event[];
|
|
5560
4591
|
query: EventsQueryBuilder;
|
|
5561
4592
|
next: () => Promise<EventsQueryResult>;
|
|
5562
4593
|
prev: () => Promise<EventsQueryResult>;
|
|
@@ -5634,7 +4665,7 @@ interface CountEventsByStatusOptions {
|
|
|
5634
4665
|
* @returns Event.
|
|
5635
4666
|
* @fqn wix.events.events.v3.EventManagement.GetEvent
|
|
5636
4667
|
*/
|
|
5637
|
-
declare function getEvent(eventId: string, options?: GetEventOptions): Promise<NonNullablePaths<
|
|
4668
|
+
declare function getEvent(eventId: string, options?: GetEventOptions): Promise<NonNullablePaths<Event, `_id` | `location.type` | `location.address.streetAddress.number` | `location.address.streetAddress.name` | `dateAndTimeSettings.recurrenceStatus` | `dateAndTimeSettings.recurringEvents.individualEventDates` | `dateAndTimeSettings.recurringEvents.individualEventDates.${number}.showTimeZone` | `slug` | `status` | `registration.type` | `registration.status` | `registration.rsvp.responseType` | `registration.rsvp.waitlistEnabled` | `registration.tickets.guestsAssignedSeparately` | `registration.tickets.ticketLimitPerOrder` | `registration.tickets.lowestPrice.value` | `registration.tickets.lowestPrice.currency` | `registration.tickets.taxSettings.type` | `registration.allowedGuestTypes` | `registration.initialType` | `registration.registrationPaused` | `registration.registrationDisabled` | `calendarUrls.google` | `calendarUrls.ics` | `form.controls` | `form.controls.${number}.type` | `form.controls.${number}.system` | `form.controls.${number}.name` | `form.controls.${number}.label` | `form.controls.${number}.orderIndex` | `form.controls.${number}._id` | `form.messages.rsvp.rsvpYesOption` | `form.messages.rsvp.rsvpNoOption` | `form.messages.rsvp.positiveMessages.title` | `form.messages.rsvp.positiveMessages.confirmation.title` | `form.messages.rsvp.positiveMessages.confirmation.message` | `form.messages.rsvp.positiveMessages.confirmation.addToCalendarActionLabel` | `form.messages.rsvp.positiveMessages.confirmation.shareActionLabel` | `form.messages.rsvp.negativeMessages.title` | `form.messages.rsvp.negativeMessages.confirmation.title` | `form.messages.rsvp.negativeMessages.confirmation.shareActionLabel` | `form.messages.rsvp.submitActionLabel` | `form.messages.checkout.title` | `form.messages.checkout.submitActionLabel` | `form.messages.checkout.confirmation.title` | `form.messages.checkout.confirmation.message` | `form.messages.checkout.confirmation.downloadTicketsLabel` | `form.messages.checkout.confirmation.addToCalendarLabel` | `form.messages.checkout.confirmation.shareEventLabel` | `form.messages.registrationClosed.message` | `form.messages.registrationClosed.exploreEventsActionLabel` | `form.messages.ticketsUnavailable.message` | `form.messages.ticketsUnavailable.exploreEventsActionLabel` | `summaries.rsvps.totalCount` | `summaries.rsvps.yesCount` | `summaries.rsvps.noCount` | `summaries.rsvps.waitlistCount` | `summaries.tickets.ticketsSold` | `summaries.tickets.revenue.amount` | `summaries.tickets.revenue.currency` | `summaries.tickets.currencyLocked` | `summaries.tickets.totalOrders` | `instanceId` | `guestListSettings.displayedPublicly` | `userId` | `onlineConferencing.enabled` | `onlineConferencing.type` | `onlineConferencing.session.hostLink` | `onlineConferencing.session.guestLink` | `seoSettings.slug` | `seoSettings.advancedSeoData.tags` | `seoSettings.advancedSeoData.tags.${number}.type` | `seoSettings.advancedSeoData.tags.${number}.children` | `seoSettings.advancedSeoData.tags.${number}.custom` | `seoSettings.advancedSeoData.tags.${number}.disabled` | `seoSettings.advancedSeoData.settings.preventAutoRedirect` | `seoSettings.advancedSeoData.settings.keywords` | `seoSettings.advancedSeoData.settings.keywords.${number}.term` | `seoSettings.advancedSeoData.settings.keywords.${number}.isMain` | `agendaSettings.enabled`, 7>>;
|
|
5638
4669
|
interface GetEventOptions {
|
|
5639
4670
|
/**
|
|
5640
4671
|
* Predefined sets of fields to return.
|
|
@@ -5660,4 +4691,4 @@ interface GetEventBySlugOptions {
|
|
|
5660
4691
|
fields?: RequestedFieldsWithLiterals[];
|
|
5661
4692
|
}
|
|
5662
4693
|
|
|
5663
|
-
export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type Agenda, type AgendaSettings, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BadgeList, BadgeTypeType, type BadgeTypeTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkCancelEventsByFilterOptions, type BulkCancelEventsByFilterRequest, type BulkCancelEventsByFilterResponse, type BulkDeleteEventsByFilterOptions, type BulkDeleteEventsByFilterRequest, type BulkDeleteEventsByFilterResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CalendarUrls, type CancelEventApplicationErrors, type CancelEventOptions, type CancelEventRequest, type CancelEventResponse, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, CategoryTypeType, type CategoryTypeTypeWithLiterals, type CellStyle, type CheckoutFormMessages, type CloneEventFromOtherSiteRequest, type CloneEventFromOtherSiteResponse, type CloneEventOptions, type CloneEventRequest, type CloneEventResponse, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonCursors, type CommonPaging, type CommonPagingMetadataV2, type CommonQueryV2, type CommonQueryV2PagingMethodOneOf, CommonSortOrder, type CommonSortOrderWithLiterals, type CommonSorting, type CommonStreetAddress, type CommonSubdivision, ConferenceType, ConferenceTypeType, type ConferenceTypeTypeWithLiterals, type ConferenceTypeWithLiterals, type CountEventsByStatusApplicationErrors, type CountEventsByStatusOptions, type CountEventsByStatusRequest, type CountEventsByStatusResponse, type CreateEventApplicationErrors, type CreateEventOptions, type CreateEventRequest, type CreateEventResponse, type CreateEventValidationErrors, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type Dashboard, type DateAndTimeSettings, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteEventRequest, type DeleteEventResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCanceledEnvelope, type EventCategories, type EventCategory, type EventCloned, type EventClonedEnvelope, type EventCopied, type EventCreated, type EventCreatedEnvelope, type EventData, type EventDeleted, type EventDeletedEnvelope, type EventDisplaySettings, type EventEnded, type EventEndedEnvelope, type EventEventCanceled, type EventEventEnded, type EventEventPublished, type EventEventReminder, type EventEventStarted, type EventMetadata, type EventPublished, type EventPublishedEnvelope, type EventReminder, type EventReminderEnvelope, type EventStarted, type EventStartedEnvelope, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type EventUpdatedEnvelope, type EventsFeed, type EventsLabellingSettings, type EventsLocation, type EventsMoney, type EventsOccurrence, type EventsOnlineConferencing, type EventsOnlineConferencingSession, type EventsQueryBuilder, type EventsQueryResult, EventsRecurrenceStatusStatus, type EventsRecurrenceStatusStatusWithLiterals, type EventsRecurrences, type EventsRegistration, type EventsRsvpConfirmationMessages, type EventsSeoSettings, EventsTaxType, type EventsTaxTypeWithLiterals, type EventsTicketsConfirmationMessages, type ExportEventsRequest, type ExportEventsResponse, type ExternalEvent, type ExternalRegistration, type FacetCounts, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FindEventRequest, type FindEventRequestFindByOneOf, type FindEventResponse, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type Formatted, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetEventBySlugOptions, type GetEventBySlugRequest, type GetEventBySlugResponse, type GetEventOptions, type GetEventRequest, type GetEventResponse, type Gradient, type GuestListConfig, type GuestListSettings, GuestTypeType, type GuestTypeTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, InitialRegistrationTypeType, type InitialRegistrationTypeTypeWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListEventsByCategoryRequest, type ListEventsByCategoryResponse, type ListUserEventsRequest, type ListUserEventsResponse, type ListValue, type Location, LocationLocationType, type LocationLocationTypeWithLiterals, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Money, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingData, type PublishDraftEventApplicationErrors, type PublishDraftEventOptions, type PublishDraftEventRequest, type PublishDraftEventResponse, type QueryEventsApplicationErrors, type QueryEventsOptions, type QueryEventsRequest, type QueryEventsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, RegistrationStatusStatus, type RegistrationStatusStatusWithLiterals, type RegistrationStatusWithLiterals, RegistrationTypeType, type RegistrationTypeTypeWithLiterals, type Rel, Relation, type RelationWithLiterals, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponseType, type ResponseTypeWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, type RsvpFormMessagesNegativeResponseConfirmation, type RsvpFormMessagesPositiveResponseConfirmation, type RsvpRegistration, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type Rsvps, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type SiteUrl, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionSubdivisionType, type SubdivisionSubdivisionTypeWithLiterals, SubdivisionType, type SubdivisionTypeWithLiterals, type Summaries, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, type TaxSettings, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticketing, type TicketingConfig, type TicketingSummary, type Tickets, type TicketsConfirmationMessages, type TicketsRegistration, type TicketsUnavailableMessages, type TimeDuration, Type, type TypeWithLiterals, type UpdateEventApplicationErrors, type UpdateEventOptions, type UpdateEventRequest, type UpdateEventResponse, type UpdateEventValidationErrors, type UserFilter, type V3Badge, type V3Event, type V3EventDisplaySettings, ValueType, type ValueTypeWithLiterals, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkCancelEventsByFilter, bulkDeleteEventsByFilter, cancelEvent, cloneEvent, countEventsByStatus, createEvent, deleteEvent, getEvent, getEventBySlug, onEventCanceled, onEventCloned, onEventCreated, onEventDeleted, onEventEnded, onEventPublished, onEventReminder, onEventStarted, onEventUpdated, publishDraftEvent, queryEvents, updateEvent };
|
|
4694
|
+
export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type AgendaSettings, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BadgeList, BadgeTypeType, type BadgeTypeTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkCancelEventsByFilterOptions, type BulkCancelEventsByFilterRequest, type BulkCancelEventsByFilterResponse, type BulkDeleteEventsByFilterOptions, type BulkDeleteEventsByFilterRequest, type BulkDeleteEventsByFilterResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarUrls, type CancelEventApplicationErrors, type CancelEventOptions, type CancelEventRequest, type CancelEventResponse, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CheckoutFormMessages, type CloneEventFromOtherSiteRequest, type CloneEventFromOtherSiteResponse, type CloneEventOptions, type CloneEventRequest, type CloneEventResponse, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonCursors, type CommonPaging, type CommonPagingMetadataV2, type CommonQueryV2, type CommonQueryV2PagingMethodOneOf, CommonSortOrder, type CommonSortOrderWithLiterals, type CommonSorting, ConferenceTypeType, type ConferenceTypeTypeWithLiterals, type CountEventsByStatusApplicationErrors, type CountEventsByStatusOptions, type CountEventsByStatusRequest, type CountEventsByStatusResponse, type CreateEventApplicationErrors, type CreateEventOptions, type CreateEventRequest, type CreateEventResponse, type CreateEventValidationErrors, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type DateAndTimeSettings, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteEventRequest, type DeleteEventResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCanceledEnvelope, type EventCategories, type EventCategory, type EventCloned, type EventClonedEnvelope, type EventCreatedEnvelope, type EventData, type EventDeletedEnvelope, type EventDisplaySettings, type EventEnded, type EventEndedEnvelope, type EventMetadata, type EventPublished, type EventPublishedEnvelope, type EventReminder, type EventReminderEnvelope, type EventStarted, type EventStartedEnvelope, type EventUpdatedEnvelope, type EventsMoney, type EventsQueryBuilder, type EventsQueryResult, type ExportEventsRequest, type ExportEventsResponse, type ExternalRegistration, type FacetCounts, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FindEventRequest, type FindEventRequestFindByOneOf, type FindEventResponse, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type Formatted, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetEventBySlugOptions, type GetEventBySlugRequest, type GetEventBySlugResponse, type GetEventOptions, type GetEventRequest, type GetEventResponse, type Gradient, type GuestListSettings, GuestTypeType, type GuestTypeTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, InitialRegistrationTypeType, type InitialRegistrationTypeTypeWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListEventsByCategoryRequest, type ListEventsByCategoryResponse, type ListUserEventsRequest, type ListUserEventsResponse, type ListValue, type Location, LocationType, type LocationTypeWithLiterals, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Money, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingData, type PublishDraftEventApplicationErrors, type PublishDraftEventOptions, type PublishDraftEventRequest, type PublishDraftEventResponse, type QueryEventsApplicationErrors, type QueryEventsOptions, type QueryEventsRequest, type QueryEventsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatusStatus, type RegistrationStatusStatusWithLiterals, RegistrationTypeType, type RegistrationTypeTypeWithLiterals, type Rel, Relation, type RelationWithLiterals, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponseType, type ResponseTypeWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpConfirmationMessages, type RsvpFormMessages, type RsvpFormMessagesNegativeResponseConfirmation, type RsvpFormMessagesPositiveResponseConfirmation, type RsvpRegistration, type Rsvps, type SeoSchema, type SeoSettings, type Settings, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type Summaries, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxSettings, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Tickets, type TicketsConfirmationMessages, type TicketsRegistration, type TicketsUnavailableMessages, type TimeDuration, Type, type TypeWithLiterals, type UpdateEventApplicationErrors, type UpdateEventOptions, type UpdateEventRequest, type UpdateEventResponse, type UpdateEventValidationErrors, type UserFilter, ValueType, type ValueTypeWithLiterals, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkCancelEventsByFilter, bulkDeleteEventsByFilter, cancelEvent, cloneEvent, countEventsByStatus, createEvent, deleteEvent, getEvent, getEventBySlug, onEventCanceled, onEventCloned, onEventCreated, onEventDeleted, onEventEnded, onEventPublished, onEventReminder, onEventStarted, onEventUpdated, publishDraftEvent, queryEvents, updateEvent };
|