@wix/auto_sdk_events_ticket-definitions-v-2 1.0.56 → 1.0.57

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.
@@ -352,6 +352,49 @@ interface CommonStreetAddress {
352
352
  */
353
353
  name?: string;
354
354
  }
355
+ interface CommonAddressLocation {
356
+ /**
357
+ * Address latitude coordinates.
358
+ * @min -90
359
+ * @max 90
360
+ */
361
+ latitude?: number | null;
362
+ /**
363
+ * Address longitude coordinates.
364
+ * @min -180
365
+ * @max 180
366
+ */
367
+ longitude?: number | null;
368
+ }
369
+ interface CommonSubdivision {
370
+ /**
371
+ * Short subdivision code.
372
+ * @maxLength 100
373
+ */
374
+ code?: string;
375
+ /**
376
+ * Subdivision full name.
377
+ * @maxLength 250
378
+ */
379
+ name?: string;
380
+ }
381
+ declare enum SubdivisionSubdivisionType {
382
+ UNKNOWN_SUBDIVISION_TYPE = "UNKNOWN_SUBDIVISION_TYPE",
383
+ /** State */
384
+ ADMINISTRATIVE_AREA_LEVEL_1 = "ADMINISTRATIVE_AREA_LEVEL_1",
385
+ /** County */
386
+ ADMINISTRATIVE_AREA_LEVEL_2 = "ADMINISTRATIVE_AREA_LEVEL_2",
387
+ /** City/town */
388
+ ADMINISTRATIVE_AREA_LEVEL_3 = "ADMINISTRATIVE_AREA_LEVEL_3",
389
+ /** Neighborhood/quarter */
390
+ ADMINISTRATIVE_AREA_LEVEL_4 = "ADMINISTRATIVE_AREA_LEVEL_4",
391
+ /** Street/block */
392
+ ADMINISTRATIVE_AREA_LEVEL_5 = "ADMINISTRATIVE_AREA_LEVEL_5",
393
+ /** ADMINISTRATIVE_AREA_LEVEL_0. Indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
394
+ COUNTRY = "COUNTRY"
395
+ }
396
+ /** @enumType */
397
+ type SubdivisionSubdivisionTypeWithLiterals = SubdivisionSubdivisionType | 'UNKNOWN_SUBDIVISION_TYPE' | 'ADMINISTRATIVE_AREA_LEVEL_1' | 'ADMINISTRATIVE_AREA_LEVEL_2' | 'ADMINISTRATIVE_AREA_LEVEL_3' | 'ADMINISTRATIVE_AREA_LEVEL_4' | 'ADMINISTRATIVE_AREA_LEVEL_5' | 'COUNTRY';
355
398
  interface DateAndTimeSettings {
356
399
  /** Whether the event date and time are TBD. */
357
400
  dateAndTimeTbd?: boolean | null;
@@ -499,6 +542,133 @@ declare enum Status {
499
542
  }
500
543
  /** @enumType */
501
544
  type StatusWithLiterals = Status | 'UNKNOWN_EVENT_STATUS' | 'UPCOMING' | 'STARTED' | 'ENDED' | 'CANCELED' | 'DRAFT';
545
+ interface InvalidateCache extends InvalidateCacheGetByOneOf {
546
+ /**
547
+ * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
548
+ * @format GUID
549
+ */
550
+ metaSiteId?: string;
551
+ /**
552
+ * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
553
+ * @format GUID
554
+ */
555
+ siteId?: string;
556
+ /** Invalidate by App */
557
+ app?: App;
558
+ /** Invalidate by page id */
559
+ page?: Page;
560
+ /** Invalidate by URI path */
561
+ uri?: URI;
562
+ /** Invalidate by file (for media files such as PDFs) */
563
+ file?: File;
564
+ /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
565
+ customTag?: CustomTag;
566
+ /**
567
+ * tell us why you're invalidating the cache. You don't need to add your app name
568
+ * @maxLength 256
569
+ */
570
+ reason?: string | null;
571
+ /** Is local DS */
572
+ localDc?: boolean;
573
+ hardPurge?: boolean;
574
+ }
575
+ /** @oneof */
576
+ interface InvalidateCacheGetByOneOf {
577
+ /**
578
+ * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
579
+ * @format GUID
580
+ */
581
+ metaSiteId?: string;
582
+ /**
583
+ * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
584
+ * @format GUID
585
+ */
586
+ siteId?: string;
587
+ /** Invalidate by App */
588
+ app?: App;
589
+ /** Invalidate by page id */
590
+ page?: Page;
591
+ /** Invalidate by URI path */
592
+ uri?: URI;
593
+ /** Invalidate by file (for media files such as PDFs) */
594
+ file?: File;
595
+ /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
596
+ customTag?: CustomTag;
597
+ }
598
+ interface App {
599
+ /**
600
+ * The AppDefId
601
+ * @minLength 1
602
+ */
603
+ appDefId?: string;
604
+ /**
605
+ * The instance Id
606
+ * @format GUID
607
+ */
608
+ instanceId?: string;
609
+ }
610
+ interface Page {
611
+ /**
612
+ * the msid the page is on
613
+ * @format GUID
614
+ */
615
+ metaSiteId?: string;
616
+ /**
617
+ * Invalidate by Page ID
618
+ * @minLength 1
619
+ */
620
+ pageId?: string;
621
+ }
622
+ interface URI {
623
+ /**
624
+ * the msid the URI is on
625
+ * @format GUID
626
+ */
627
+ metaSiteId?: string;
628
+ /**
629
+ * URI path to invalidate (e.g. page/my/path) - without leading/trailing slashes
630
+ * @minLength 1
631
+ */
632
+ uriPath?: string;
633
+ }
634
+ interface File {
635
+ /**
636
+ * the msid the file is related to
637
+ * @format GUID
638
+ */
639
+ metaSiteId?: string;
640
+ /**
641
+ * Invalidate by filename (for media files such as PDFs)
642
+ * @minLength 1
643
+ * @maxLength 256
644
+ */
645
+ fileName?: string;
646
+ }
647
+ interface CustomTag {
648
+ /**
649
+ * the msid the tag is related to
650
+ * @format GUID
651
+ */
652
+ metaSiteId?: string;
653
+ /**
654
+ * Tag to invalidate by
655
+ * @minLength 1
656
+ * @maxLength 256
657
+ */
658
+ tag?: string;
659
+ }
660
+ interface SalePeriodUpdated {
661
+ /** Ticket definition sale period after update. */
662
+ afterUpdate?: SalePeriod;
663
+ }
664
+ interface TicketDefinitionSaleStarted {
665
+ /** Ticket definition. */
666
+ ticketDefinition?: TicketDefinition;
667
+ }
668
+ interface TicketDefinitionSaleEnded {
669
+ /** Ticket definition. */
670
+ ticketDefinition?: TicketDefinition;
671
+ }
502
672
  interface CreateTicketDefinitionRequest {
503
673
  /** Ticket definition info. */
504
674
  ticketDefinition: TicketDefinition;
@@ -597,6 +767,26 @@ interface ReorderTicketDefinitionsRequestReferenceDefinitionOneOf {
597
767
  }
598
768
  interface ReorderTicketDefinitionsResponse {
599
769
  }
770
+ interface UpdateTicketDefinitionSortIndexRequest {
771
+ /**
772
+ * Ticket definition ID
773
+ * @format GUID
774
+ */
775
+ ticketDefinitionId?: string;
776
+ /** The revision of the ticket definition */
777
+ revision?: string;
778
+ /** the sort index of a ticket definition to set */
779
+ sortIndex?: number;
780
+ /**
781
+ * Requested fields.
782
+ * @maxSize 5
783
+ */
784
+ fields?: FieldWithLiterals[];
785
+ }
786
+ interface UpdateTicketDefinitionSortIndexResponse {
787
+ /** the updated ticket definition */
788
+ ticketDefinition?: TicketDefinition;
789
+ }
600
790
  interface QueryTicketDefinitionsRequest {
601
791
  /** Query options. See [API Query Language](https://dev.wix.com/docs/rest/articles/get-started/api-query-language) for more details. */
602
792
  query: QueryV2;
@@ -758,6 +948,3844 @@ interface ChangeCurrencyRequest {
758
948
  }
759
949
  interface ChangeCurrencyResponse {
760
950
  }
951
+ interface BulkCopyTicketDefinitionsByEventIdRequest {
952
+ /**
953
+ * Origin instance ID.
954
+ * @format GUID
955
+ */
956
+ originInstanceId?: string | null;
957
+ /**
958
+ * Origin Event ID.
959
+ * @format GUID
960
+ */
961
+ originEventId?: string;
962
+ /**
963
+ * Target Event ID.
964
+ * @format GUID
965
+ */
966
+ targetEventId?: string;
967
+ }
968
+ interface BulkCopyTicketDefinitionsByEventIdResponse {
969
+ /** Copied ticket definitions. */
970
+ definitions?: CopiedTicketDefinition[];
971
+ }
972
+ interface CopiedTicketDefinition {
973
+ /**
974
+ * Origin Ticket definition ID.
975
+ * @format GUID
976
+ */
977
+ originTicketDefinitionId?: string;
978
+ /**
979
+ * Ticket definition ID.
980
+ * @format GUID
981
+ */
982
+ ticketDefinitionId?: string;
983
+ }
984
+ interface UpdateFeeTypesBasedOnSettingsRequest {
985
+ /** Query options. See [API Query Language](https://dev.wix.com/docs/rest/articles/get-started/api-query-language) for more details. */
986
+ query?: QueryV2;
987
+ }
988
+ interface UpdateFeeTypesBasedOnSettingsResponse {
989
+ }
990
+ interface EventDeleted {
991
+ /** Event deleted timestamp in ISO UTC format. */
992
+ timestamp?: Date | null;
993
+ /**
994
+ * Event ID.
995
+ * @format GUID
996
+ */
997
+ eventId?: string;
998
+ /** Event title. */
999
+ title?: string;
1000
+ /**
1001
+ * Event creator user ID.
1002
+ * @format GUID
1003
+ */
1004
+ userId?: string | null;
1005
+ }
1006
+ interface Empty {
1007
+ }
1008
+ interface EventCanceled {
1009
+ /** Event canceled timestamp in ISO UTC format. */
1010
+ timestamp?: Date | null;
1011
+ /**
1012
+ * Event ID.
1013
+ * @format GUID
1014
+ */
1015
+ eventId?: string;
1016
+ /** Event title */
1017
+ title?: string;
1018
+ /**
1019
+ * Event creator user ID.
1020
+ * @format GUID
1021
+ */
1022
+ userId?: string | null;
1023
+ /** True if at least one guest is registered to the event with any attendance status. */
1024
+ hasGuests?: boolean | null;
1025
+ }
1026
+ interface EventEnded {
1027
+ /** Event end timestamp in ISO UTC format. */
1028
+ timestamp?: Date | null;
1029
+ /**
1030
+ * Event ID.
1031
+ * @format GUID
1032
+ */
1033
+ eventId?: string;
1034
+ /** True if at least one guest is registered to the event with any attendance status. */
1035
+ hasGuests?: boolean | null;
1036
+ }
1037
+ interface EventCreated {
1038
+ /** Event created timestamp in ISO UTC format. */
1039
+ timestamp?: Date | null;
1040
+ /**
1041
+ * Event ID.
1042
+ * @format GUID
1043
+ */
1044
+ eventId?: string;
1045
+ /** Event location. */
1046
+ location?: EventsLocation;
1047
+ /** Event schedule configuration. */
1048
+ scheduleConfig?: ScheduleConfig;
1049
+ /** Event title. */
1050
+ title?: string;
1051
+ /**
1052
+ * Event creator user ID.
1053
+ * @maxLength 36
1054
+ */
1055
+ userId?: string | null;
1056
+ /** Event status. */
1057
+ status?: EventStatusWithLiterals;
1058
+ /**
1059
+ * Instance ID. Indicates the original app instance which current event was derived from.
1060
+ * @format GUID
1061
+ */
1062
+ derivedFromInstanceId?: string | null;
1063
+ /**
1064
+ * Event ID. Indicates the original event which current event was derived from.
1065
+ * @format GUID
1066
+ */
1067
+ derivedFromEventId?: string | null;
1068
+ /** Event that was created. */
1069
+ event?: Event;
1070
+ }
1071
+ interface EventsLocation {
1072
+ /**
1073
+ * Location name.
1074
+ * @maxLength 50
1075
+ */
1076
+ name?: string | null;
1077
+ /** Location map coordinates. */
1078
+ coordinates?: MapCoordinates;
1079
+ /**
1080
+ * Single line address representation.
1081
+ * @maxLength 300
1082
+ */
1083
+ address?: string | null;
1084
+ /** Location type. */
1085
+ type?: LocationLocationTypeWithLiterals;
1086
+ /**
1087
+ * Full address derived from formatted single line `address`.
1088
+ * When `full_address` is used to create or update the event, deprecated `address` and `coordinates` are ignored.
1089
+ * If provided `full_address` has empty `formatted_address` or `coordinates`, it will be auto-completed using Atlas service.
1090
+ *
1091
+ * Migration notes:
1092
+ * - `full_address.formatted_address` is equivalent to `address`.
1093
+ * - `full_address.geocode` is equivalent to `coordinates`.
1094
+ */
1095
+ fullAddress?: Address;
1096
+ /**
1097
+ * Defines event location as TBD (To Be Determined).
1098
+ * When event location is not yet defined, `name` is displayed instead of location address.
1099
+ * `coordinates`, `address`, `type` and `full_address` are not required when location is TBD.
1100
+ */
1101
+ tbd?: boolean | null;
1102
+ }
1103
+ interface MapCoordinates {
1104
+ /**
1105
+ * Latitude.
1106
+ * @min -90
1107
+ * @max 90
1108
+ */
1109
+ lat?: number;
1110
+ /**
1111
+ * Longitude.
1112
+ * @min -180
1113
+ * @max 180
1114
+ */
1115
+ lng?: number;
1116
+ }
1117
+ declare enum LocationLocationType {
1118
+ VENUE = "VENUE",
1119
+ ONLINE = "ONLINE"
1120
+ }
1121
+ /** @enumType */
1122
+ type LocationLocationTypeWithLiterals = LocationLocationType | 'VENUE' | 'ONLINE';
1123
+ /** Physical address */
1124
+ interface Address extends AddressStreetOneOf {
1125
+ /** a break down of the street to number and street name */
1126
+ streetAddress?: StreetAddress;
1127
+ /** Main address line (usually street and number) as free text */
1128
+ addressLine?: string | null;
1129
+ /**
1130
+ * country code
1131
+ * @format COUNTRY
1132
+ */
1133
+ country?: string | null;
1134
+ /** subdivision (usually state or region) code according to ISO 3166-2 */
1135
+ subdivision?: string | null;
1136
+ /** city name */
1137
+ city?: string | null;
1138
+ /** zip/postal code */
1139
+ postalCode?: string | null;
1140
+ /** Free text providing more detailed address info. Usually contains Apt, Suite, Floor */
1141
+ addressLine2?: string | null;
1142
+ /** A string containing the human-readable address of this location */
1143
+ formattedAddress?: string | null;
1144
+ /** Free text for human-to-human textual orientation aid purposes */
1145
+ hint?: string | null;
1146
+ /** coordinates of the physical address */
1147
+ geocode?: AddressLocation;
1148
+ /** country full-name */
1149
+ countryFullname?: string | null;
1150
+ /**
1151
+ * multi-level subdivisions from top to bottom
1152
+ * @maxSize 6
1153
+ */
1154
+ subdivisions?: Subdivision[];
1155
+ }
1156
+ /** @oneof */
1157
+ interface AddressStreetOneOf {
1158
+ /** a break down of the street to number and street name */
1159
+ streetAddress?: StreetAddress;
1160
+ /** Main address line (usually street and number) as free text */
1161
+ addressLine?: string | null;
1162
+ }
1163
+ interface StreetAddress {
1164
+ /** street number */
1165
+ number?: string;
1166
+ /** street name */
1167
+ name?: string;
1168
+ }
1169
+ interface AddressLocation {
1170
+ /**
1171
+ * address latitude coordinates
1172
+ * @min -90
1173
+ * @max 90
1174
+ */
1175
+ latitude?: number | null;
1176
+ /**
1177
+ * address longitude coordinates
1178
+ * @min -180
1179
+ * @max 180
1180
+ */
1181
+ longitude?: number | null;
1182
+ }
1183
+ interface Subdivision {
1184
+ /** subdivision short code */
1185
+ code?: string;
1186
+ /** subdivision full-name */
1187
+ name?: string;
1188
+ }
1189
+ declare enum SubdivisionType {
1190
+ UNKNOWN_SUBDIVISION_TYPE = "UNKNOWN_SUBDIVISION_TYPE",
1191
+ /** State */
1192
+ ADMINISTRATIVE_AREA_LEVEL_1 = "ADMINISTRATIVE_AREA_LEVEL_1",
1193
+ /** County */
1194
+ ADMINISTRATIVE_AREA_LEVEL_2 = "ADMINISTRATIVE_AREA_LEVEL_2",
1195
+ /** City/town */
1196
+ ADMINISTRATIVE_AREA_LEVEL_3 = "ADMINISTRATIVE_AREA_LEVEL_3",
1197
+ /** Neighborhood/quarter */
1198
+ ADMINISTRATIVE_AREA_LEVEL_4 = "ADMINISTRATIVE_AREA_LEVEL_4",
1199
+ /** Street/block */
1200
+ ADMINISTRATIVE_AREA_LEVEL_5 = "ADMINISTRATIVE_AREA_LEVEL_5",
1201
+ /** ADMINISTRATIVE_AREA_LEVEL_0. Indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
1202
+ COUNTRY = "COUNTRY"
1203
+ }
1204
+ /** @enumType */
1205
+ 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';
1206
+ interface ScheduleConfig {
1207
+ /**
1208
+ * Defines event as TBD (To Be Determined) schedule.
1209
+ * When event time is not yet defined, TBD message is displayed instead of event start and end times.
1210
+ * `startDate`, `endDate` and `timeZoneId` are not required when schedule is TBD.
1211
+ */
1212
+ scheduleTbd?: boolean;
1213
+ /**
1214
+ * TBD message.
1215
+ * @maxLength 100
1216
+ */
1217
+ scheduleTbdMessage?: string | null;
1218
+ /** Event start timestamp. */
1219
+ startDate?: Date | null;
1220
+ /** Event end timestamp. */
1221
+ endDate?: Date | null;
1222
+ /**
1223
+ * Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`.
1224
+ * @maxLength 100
1225
+ */
1226
+ timeZoneId?: string | null;
1227
+ /** Whether end date is hidden in the formatted schedule. */
1228
+ endDateHidden?: boolean;
1229
+ /** Whether time zone is displayed in formatted schedule. */
1230
+ showTimeZone?: boolean;
1231
+ /** Event recurrences. */
1232
+ recurrences?: EventsRecurrences;
1233
+ }
1234
+ interface EventsRecurrences {
1235
+ /**
1236
+ * Event occurrences.
1237
+ * @maxSize 1000
1238
+ */
1239
+ occurrences?: EventsOccurrence[];
1240
+ /**
1241
+ * Recurring event category ID.
1242
+ * @readonly
1243
+ */
1244
+ categoryId?: string | null;
1245
+ /**
1246
+ * Recurrence status.
1247
+ * @readonly
1248
+ */
1249
+ status?: EventsRecurrenceStatusStatusWithLiterals;
1250
+ }
1251
+ interface EventsOccurrence {
1252
+ /** Event start timestamp. */
1253
+ startDate?: Date | null;
1254
+ /** Event end timestamp. */
1255
+ endDate?: Date | null;
1256
+ /**
1257
+ * Event time zone ID in TZ database format, e.g., `EST`, `America/Los_Angeles`.
1258
+ * @maxLength 100
1259
+ */
1260
+ timeZoneId?: string | null;
1261
+ /** Whether time zone is displayed in formatted schedule. */
1262
+ showTimeZone?: boolean;
1263
+ }
1264
+ declare enum EventsRecurrenceStatusStatus {
1265
+ /** Event occurs only once. */
1266
+ ONE_TIME = "ONE_TIME",
1267
+ /** Event is recurring. */
1268
+ RECURRING = "RECURRING",
1269
+ /** Marks the next upcoming occurrence of the recurring event. */
1270
+ RECURRING_NEXT = "RECURRING_NEXT",
1271
+ /** Marks the most recent ended occurrence of the recurring event. */
1272
+ RECURRING_LAST_ENDED = "RECURRING_LAST_ENDED",
1273
+ /** Marks the most recent canceled occurrence of the recurring event. */
1274
+ RECURRING_LAST_CANCELED = "RECURRING_LAST_CANCELED"
1275
+ }
1276
+ /** @enumType */
1277
+ type EventsRecurrenceStatusStatusWithLiterals = EventsRecurrenceStatusStatus | 'ONE_TIME' | 'RECURRING' | 'RECURRING_NEXT' | 'RECURRING_LAST_ENDED' | 'RECURRING_LAST_CANCELED';
1278
+ declare enum EventStatus {
1279
+ /** Event is public and scheduled to start */
1280
+ SCHEDULED = "SCHEDULED",
1281
+ /** Event has started */
1282
+ STARTED = "STARTED",
1283
+ /** Event has ended */
1284
+ ENDED = "ENDED",
1285
+ /** Event was canceled */
1286
+ CANCELED = "CANCELED"
1287
+ }
1288
+ /** @enumType */
1289
+ type EventStatusWithLiterals = EventStatus | 'SCHEDULED' | 'STARTED' | 'ENDED' | 'CANCELED';
1290
+ interface Event {
1291
+ /**
1292
+ * Event ID.
1293
+ * @format GUID
1294
+ * @readonly
1295
+ */
1296
+ id?: string;
1297
+ /** Event location. */
1298
+ location?: EventsLocation;
1299
+ /** Event scheduling. */
1300
+ scheduling?: Scheduling;
1301
+ /** Event title. */
1302
+ title?: string;
1303
+ /** Event description. */
1304
+ description?: string;
1305
+ /** Rich-text content that are displayed in a site's "About Event" section (HTML). */
1306
+ about?: string;
1307
+ /** Main event image. */
1308
+ mainImage?: Image;
1309
+ /** Event slug URL (generated from event title). */
1310
+ slug?: string;
1311
+ /** ISO 639-1 language code of the event (used in content translations). */
1312
+ language?: string;
1313
+ /** Event creation timestamp. */
1314
+ created?: Date | null;
1315
+ /** Event modified timestamp. */
1316
+ modified?: Date | null;
1317
+ /** Event status. */
1318
+ status?: EventStatusWithLiterals;
1319
+ /** RSVP or ticketing registration details. */
1320
+ registration?: Registration;
1321
+ /** "Add to calendar" URLs. */
1322
+ calendarLinks?: CalendarLinks;
1323
+ /** Event page URL components. */
1324
+ eventPageUrl?: SiteUrl;
1325
+ /** Event registration form. */
1326
+ form?: Form;
1327
+ /** Event dashboard summary of RSVP / ticket sales. */
1328
+ dashboard?: Dashboard;
1329
+ /** Instance ID of the site where event is hosted. */
1330
+ instanceId?: string;
1331
+ /** Guest list configuration. */
1332
+ guestListConfig?: GuestListConfig;
1333
+ /**
1334
+ * Event creator user ID.
1335
+ * @maxLength 36
1336
+ */
1337
+ userId?: string;
1338
+ /** Event discussion feed. For internal use. */
1339
+ feed?: Feed;
1340
+ /** Online conferencing details. */
1341
+ onlineConferencing?: OnlineConferencing;
1342
+ /** SEO settings. */
1343
+ seoSettings?: SeoSettings;
1344
+ /** Assigned contacts label key. */
1345
+ assignedContactsLabel?: string | null;
1346
+ /** Agenda details. */
1347
+ agenda?: Agenda;
1348
+ /** Categories this event is assigned to. */
1349
+ categories?: Category[];
1350
+ /** Visual settings for event. */
1351
+ eventDisplaySettings?: EventDisplaySettings;
1352
+ /** Rich content that are displayed in a site's "About Event" section. Successor to `about` field. */
1353
+ longDescription?: RichContent;
1354
+ /**
1355
+ * Event publish timestamp.
1356
+ * @readonly
1357
+ */
1358
+ publishedDate?: Date | null;
1359
+ }
1360
+ interface Scheduling {
1361
+ /** Schedule configuration. */
1362
+ config?: ScheduleConfig;
1363
+ /** Formatted schedule representation. */
1364
+ formatted?: string;
1365
+ /** Formatted start date of the event (empty for TBD schedules). */
1366
+ startDateFormatted?: string;
1367
+ /** Formatted start time of the event (empty for TBD schedules). */
1368
+ startTimeFormatted?: string;
1369
+ /** Formatted end date of the event (empty for TBD schedules or when end date is hidden). */
1370
+ endDateFormatted?: string;
1371
+ /** Formatted end time of the event (empty for TBD schedules or when end date is hidden). */
1372
+ endTimeFormatted?: string;
1373
+ }
1374
+ interface Image {
1375
+ /**
1376
+ * WixMedia image ID.
1377
+ * @minLength 1
1378
+ * @maxLength 200
1379
+ */
1380
+ id?: string | null;
1381
+ /** Image URL. */
1382
+ url?: string;
1383
+ /** Original image height. */
1384
+ height?: number | null;
1385
+ /** Original image width. */
1386
+ width?: number | null;
1387
+ /** Image alt text. Optional. */
1388
+ altText?: string | null;
1389
+ }
1390
+ interface Registration {
1391
+ /** Event type. */
1392
+ type?: EventTypeWithLiterals;
1393
+ /** Event registration status. */
1394
+ status?: RegistrationStatusWithLiterals;
1395
+ /** RSVP collection details. */
1396
+ rsvpCollection?: RsvpCollection;
1397
+ /** Ticketing details. */
1398
+ ticketing?: Ticketing;
1399
+ /** External registration details. */
1400
+ external?: ExternalEvent;
1401
+ /** Types of users allowed to register. */
1402
+ restrictedTo?: VisitorTypeWithLiterals;
1403
+ /** Initial event type which was set when creating an event. */
1404
+ initialType?: EventTypeWithLiterals;
1405
+ }
1406
+ declare enum EventType {
1407
+ /** Type not available for this request fieldset */
1408
+ NA_EVENT_TYPE = "NA_EVENT_TYPE",
1409
+ /** Registration via RSVP */
1410
+ RSVP = "RSVP",
1411
+ /** Registration via ticket purchase */
1412
+ TICKETS = "TICKETS",
1413
+ /** External registration */
1414
+ EXTERNAL = "EXTERNAL",
1415
+ /** Registration not available */
1416
+ NO_REGISTRATION = "NO_REGISTRATION"
1417
+ }
1418
+ /** @enumType */
1419
+ type EventTypeWithLiterals = EventType | 'NA_EVENT_TYPE' | 'RSVP' | 'TICKETS' | 'EXTERNAL' | 'NO_REGISTRATION';
1420
+ declare enum RegistrationStatus {
1421
+ /** Registration status is not applicable */
1422
+ NA_REGISTRATION_STATUS = "NA_REGISTRATION_STATUS",
1423
+ /** Registration to event is closed */
1424
+ CLOSED = "CLOSED",
1425
+ /** Registration to event is closed manually */
1426
+ CLOSED_MANUALLY = "CLOSED_MANUALLY",
1427
+ /** Registration is open via RSVP */
1428
+ OPEN_RSVP = "OPEN_RSVP",
1429
+ /** Registration to event waitlist is open via RSVP */
1430
+ OPEN_RSVP_WAITLIST = "OPEN_RSVP_WAITLIST",
1431
+ /** Registration is open via ticket purchase */
1432
+ OPEN_TICKETS = "OPEN_TICKETS",
1433
+ /** Registration is open via external URL */
1434
+ OPEN_EXTERNAL = "OPEN_EXTERNAL",
1435
+ /** Registration will be open via RSVP */
1436
+ SCHEDULED_RSVP = "SCHEDULED_RSVP"
1437
+ }
1438
+ /** @enumType */
1439
+ type RegistrationStatusWithLiterals = RegistrationStatus | 'NA_REGISTRATION_STATUS' | 'CLOSED' | 'CLOSED_MANUALLY' | 'OPEN_RSVP' | 'OPEN_RSVP_WAITLIST' | 'OPEN_TICKETS' | 'OPEN_EXTERNAL' | 'SCHEDULED_RSVP';
1440
+ interface RsvpCollection {
1441
+ /** RSVP collection configuration. */
1442
+ config?: RsvpCollectionConfig;
1443
+ }
1444
+ interface RsvpCollectionConfig {
1445
+ /** Defines the supported RSVP statuses. */
1446
+ rsvpStatusOptions?: RsvpStatusOptionsWithLiterals;
1447
+ /**
1448
+ * Total guest limit available to register to the event.
1449
+ * Additional guests per RSVP are counted towards total guests.
1450
+ */
1451
+ limit?: number | null;
1452
+ /** Whether a waitlist is opened when total guest limit is reached, allowing guests to create RSVP with WAITING RSVP status. */
1453
+ waitlist?: boolean;
1454
+ /** Registration start timestamp. */
1455
+ startDate?: Date | null;
1456
+ /** Registration end timestamp. */
1457
+ endDate?: Date | null;
1458
+ }
1459
+ declare enum RsvpStatusOptions {
1460
+ /** Only YES RSVP status is available for RSVP registration */
1461
+ YES_ONLY = "YES_ONLY",
1462
+ /** YES and NO RSVP status options are available for the registration */
1463
+ YES_AND_NO = "YES_AND_NO"
1464
+ }
1465
+ /** @enumType */
1466
+ type RsvpStatusOptionsWithLiterals = RsvpStatusOptions | 'YES_ONLY' | 'YES_AND_NO';
1467
+ interface RsvpConfirmationMessages {
1468
+ /** Messages displayed when an RSVP's `status` is set to `"YES"`. */
1469
+ positiveConfirmation?: RsvpConfirmationMessagesPositiveResponseConfirmation;
1470
+ /** Messages displayed when an RSVP's `status` is set to `"WAITLIST"`, for when the event is full and a waitlist is available). */
1471
+ waitlistMessages?: RsvpConfirmationMessagesPositiveResponseConfirmation;
1472
+ /** Messages displayed when an RSVP's `status` is set to `"NO"`. */
1473
+ negativeMessages?: RsvpConfirmationMessagesNegativeResponseConfirmation;
1474
+ }
1475
+ /** Confirmation shown after then registration when RSVP response is positive. */
1476
+ interface RsvpConfirmationMessagesPositiveResponseConfirmation {
1477
+ /**
1478
+ * Confirmation message title.
1479
+ * @maxLength 150
1480
+ */
1481
+ title?: string | null;
1482
+ /**
1483
+ * Confirmation message text.
1484
+ * @maxLength 350
1485
+ */
1486
+ message?: string | null;
1487
+ /**
1488
+ * "Add to calendar" call-to-action label text.
1489
+ * @maxLength 50
1490
+ */
1491
+ addToCalendarActionLabel?: string | null;
1492
+ /**
1493
+ * "Share event" call-to-action label text.
1494
+ * @maxLength 50
1495
+ */
1496
+ shareActionLabel?: string | null;
1497
+ }
1498
+ /** Confirmation shown after then registration when RSVP response is negative. */
1499
+ interface RsvpConfirmationMessagesNegativeResponseConfirmation {
1500
+ /**
1501
+ * Confirmation message title.
1502
+ * @maxLength 150
1503
+ */
1504
+ title?: string | null;
1505
+ /**
1506
+ * "Share event" call-to-action label text.
1507
+ * @maxLength 50
1508
+ */
1509
+ shareActionLabel?: string | null;
1510
+ }
1511
+ interface Ticketing {
1512
+ /**
1513
+ * Deprecated.
1514
+ * @deprecated
1515
+ */
1516
+ lowestPrice?: string | null;
1517
+ /**
1518
+ * Deprecated.
1519
+ * @deprecated
1520
+ */
1521
+ highestPrice?: string | null;
1522
+ /** Currency used in event transactions. */
1523
+ currency?: string | null;
1524
+ /** Ticketing configuration. */
1525
+ config?: TicketingConfig;
1526
+ /**
1527
+ * Price of lowest priced ticket.
1528
+ * @readonly
1529
+ */
1530
+ lowestTicketPrice?: Money;
1531
+ /**
1532
+ * Price of highest priced ticket.
1533
+ * @readonly
1534
+ */
1535
+ highestTicketPrice?: Money;
1536
+ /**
1537
+ * Formatted price of lowest priced ticket.
1538
+ * @readonly
1539
+ */
1540
+ lowestTicketPriceFormatted?: string | null;
1541
+ /**
1542
+ * Formatted price of highest priced ticket.
1543
+ * @readonly
1544
+ */
1545
+ highestTicketPriceFormatted?: string | null;
1546
+ /**
1547
+ * Whether all tickets are sold for this event.
1548
+ * @readonly
1549
+ */
1550
+ soldOut?: boolean | null;
1551
+ }
1552
+ interface TicketingConfig {
1553
+ /** Whether the form must be filled out separately for each ticket. */
1554
+ guestAssignedTickets?: boolean;
1555
+ /** Tax configuration. */
1556
+ taxConfig?: TaxConfig;
1557
+ /**
1558
+ * Limit of tickets that can be purchased per order, default 20.
1559
+ * @max 50
1560
+ */
1561
+ ticketLimitPerOrder?: number;
1562
+ /**
1563
+ * Duration for which the tickets being bought are reserved.
1564
+ * @min 5
1565
+ * @max 30
1566
+ */
1567
+ reservationDurationInMinutes?: number | null;
1568
+ }
1569
+ interface TaxConfig {
1570
+ /** Tax application settings. */
1571
+ type?: TaxTypeWithLiterals;
1572
+ /**
1573
+ * Tax name.
1574
+ * @minLength 1
1575
+ * @maxLength 10
1576
+ */
1577
+ name?: string | null;
1578
+ /**
1579
+ * Tax rate (e.g.,`21.55`).
1580
+ * @decimalValue options { gte:0.001, lte:100, maxScale:3 }
1581
+ */
1582
+ rate?: string | null;
1583
+ /** Applies taxes for donations, default true. */
1584
+ appliesToDonations?: boolean | null;
1585
+ }
1586
+ declare enum TaxType {
1587
+ /** Tax is included in the ticket price. */
1588
+ INCLUDED = "INCLUDED",
1589
+ /** Tax is added to the order at the checkout. */
1590
+ ADDED = "ADDED",
1591
+ /** Tax is added to the final total at the checkout. */
1592
+ ADDED_AT_CHECKOUT = "ADDED_AT_CHECKOUT"
1593
+ }
1594
+ /** @enumType */
1595
+ type TaxTypeWithLiterals = TaxType | 'INCLUDED' | 'ADDED' | 'ADDED_AT_CHECKOUT';
1596
+ interface TicketsConfirmationMessages {
1597
+ /**
1598
+ * Confirmation message title.
1599
+ * @maxLength 150
1600
+ */
1601
+ title?: string | null;
1602
+ /**
1603
+ * Confirmation message text.
1604
+ * @maxLength 350
1605
+ */
1606
+ message?: string | null;
1607
+ /**
1608
+ * "Download tickets" call-to-action label text.
1609
+ * @maxLength 50
1610
+ */
1611
+ downloadTicketsLabel?: string | null;
1612
+ /**
1613
+ * "Add to calendar" call-to-action label text.
1614
+ * @maxLength 50
1615
+ */
1616
+ addToCalendarActionLabel?: string | null;
1617
+ /**
1618
+ * "Share event" call-to-action label text.
1619
+ * @maxLength 50
1620
+ */
1621
+ shareActionLabel?: string | null;
1622
+ }
1623
+ declare enum CheckoutType {
1624
+ UNKNOWN_CHECKOUT_TYPE = "UNKNOWN_CHECKOUT_TYPE",
1625
+ /** Checkout using Events App. */
1626
+ EVENTS_APP = "EVENTS_APP",
1627
+ /** Checkout using Ecomm Platform. */
1628
+ ECOMM_PLATFORM = "ECOMM_PLATFORM"
1629
+ }
1630
+ /** @enumType */
1631
+ type CheckoutTypeWithLiterals = CheckoutType | 'UNKNOWN_CHECKOUT_TYPE' | 'EVENTS_APP' | 'ECOMM_PLATFORM';
1632
+ interface Money {
1633
+ /**
1634
+ * *Deprecated:** Use `value` instead.
1635
+ * @format DECIMAL_VALUE
1636
+ * @deprecated
1637
+ */
1638
+ amount?: string;
1639
+ /**
1640
+ * 3-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format. For example, `USD`.
1641
+ * @format CURRENCY
1642
+ */
1643
+ currency?: string;
1644
+ /**
1645
+ * Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, starts with a single (-), to indicate that the amount is negative.
1646
+ * @format DECIMAL_VALUE
1647
+ */
1648
+ value?: string | null;
1649
+ }
1650
+ interface ExternalEvent {
1651
+ /** External event registration URL. */
1652
+ registration?: string;
1653
+ }
1654
+ declare enum VisitorType {
1655
+ /** Site visitor (including member) */
1656
+ VISITOR = "VISITOR",
1657
+ /** Site member */
1658
+ MEMBER = "MEMBER",
1659
+ /** Site visitor or member */
1660
+ VISITOR_OR_MEMBER = "VISITOR_OR_MEMBER"
1661
+ }
1662
+ /** @enumType */
1663
+ type VisitorTypeWithLiterals = VisitorType | 'VISITOR' | 'MEMBER' | 'VISITOR_OR_MEMBER';
1664
+ interface CalendarLinks {
1665
+ /** "Add to Google calendar" URL. */
1666
+ google?: string;
1667
+ /** "Download ICS calendar file" URL. */
1668
+ ics?: string;
1669
+ }
1670
+ /** Site URL components */
1671
+ interface SiteUrl {
1672
+ /**
1673
+ * Base URL. For premium sites, this will be the domain.
1674
+ * For free sites, this would be site URL (e.g `mysite.wixsite.com/mysite`)
1675
+ */
1676
+ base?: string;
1677
+ /** The path to that page - e.g `/my-events/weekly-meetup-2` */
1678
+ path?: string;
1679
+ }
1680
+ /**
1681
+ * The form defines which elements are displayed to a site visitor during the registration process (RSVP or checkout).
1682
+ * It also contains customizable messages and labels.
1683
+ *
1684
+ *
1685
+ * A form is an ordered list of controls (blocks), which accept guest information into a field input.
1686
+ *
1687
+ * Each control contains one or more nested inputs. For example, `Name` control has two inputs:
1688
+ * - First Name
1689
+ * - Last Name
1690
+ *
1691
+ * By default, name and email controls are always required and are pinned to the top of the form.
1692
+ */
1693
+ interface Form {
1694
+ /** Nested fields as an ordered list. */
1695
+ controls?: InputControl[];
1696
+ /**
1697
+ * Set of defined form messages displayed in the UI before, during, and after a registration flow.
1698
+ * Includes the configuration of form titles, response labels, "thank you" messages, and call-to-action texts.
1699
+ */
1700
+ messages?: FormMessages;
1701
+ }
1702
+ /**
1703
+ * A block of nested fields.
1704
+ * Used to aggregate similar inputs like First Name and Last Name.
1705
+ */
1706
+ interface InputControl {
1707
+ /** Field control type. */
1708
+ type?: InputControlTypeWithLiterals;
1709
+ /** Whether the control is mandatory (such as `name` & `email`). When `true`, only the label can be changed. */
1710
+ system?: boolean;
1711
+ /**
1712
+ * Deprecated: Use `id` or `_id`.
1713
+ * @deprecated
1714
+ */
1715
+ name?: string;
1716
+ /** Child inputs. */
1717
+ inputs?: Input[];
1718
+ /**
1719
+ * *Deprecated:** Use `controls.inputs.label`.
1720
+ * @deprecated
1721
+ */
1722
+ label?: string;
1723
+ /** Field controls are sorted by this value in ascending order. */
1724
+ orderIndex?: number;
1725
+ /** Unique control ID. */
1726
+ id?: string;
1727
+ /**
1728
+ * Whether the input control is deleted.
1729
+ * @readonly
1730
+ */
1731
+ deleted?: boolean | null;
1732
+ }
1733
+ declare enum InputControlType {
1734
+ /** Single text value field. */
1735
+ INPUT = "INPUT",
1736
+ /** Single text value field with multiple lines. */
1737
+ TEXTAREA = "TEXTAREA",
1738
+ /** Single-choice field with predefined values. */
1739
+ DROPDOWN = "DROPDOWN",
1740
+ /** Single-choice field with predefined values. */
1741
+ RADIO = "RADIO",
1742
+ /** Multiple-choice field with predefined values. */
1743
+ CHECKBOX = "CHECKBOX",
1744
+ /** Fields for entering first and last names. */
1745
+ NAME = "NAME",
1746
+ /** Fields for additional guests and their respective names. */
1747
+ GUEST_CONTROL = "GUEST_CONTROL",
1748
+ /** Single-line address field. */
1749
+ ADDRESS_SHORT = "ADDRESS_SHORT",
1750
+ /** Full address field with multiple lines. */
1751
+ ADDRESS_FULL = "ADDRESS_FULL",
1752
+ /** Fields for entering year, month, and day. */
1753
+ DATE = "DATE"
1754
+ }
1755
+ /** @enumType */
1756
+ type InputControlTypeWithLiterals = InputControlType | 'INPUT' | 'TEXTAREA' | 'DROPDOWN' | 'RADIO' | 'CHECKBOX' | 'NAME' | 'GUEST_CONTROL' | 'ADDRESS_SHORT' | 'ADDRESS_FULL' | 'DATE';
1757
+ /** Child inputs. */
1758
+ interface Input {
1759
+ /** Field name. */
1760
+ name?: string;
1761
+ /**
1762
+ * *Deprecated:** Use `controls.inputs.type.TEXT_ARRAY`.
1763
+ * @deprecated
1764
+ */
1765
+ array?: boolean;
1766
+ /** Main field label. */
1767
+ label?: string;
1768
+ /** Additional labels for multi-valued fields such as address. */
1769
+ additionalLabels?: Record<string, string>;
1770
+ /** Predefined choice options for fields, such as dropdown. */
1771
+ options?: string[];
1772
+ /** Whether field is mandatory. */
1773
+ mandatory?: boolean;
1774
+ /** Maximum number of accepted characters (relevant for text fields). */
1775
+ maxLength?: number;
1776
+ /**
1777
+ * Type which determines field format.
1778
+ * Used to validate submitted response.
1779
+ */
1780
+ type?: ValueTypeWithLiterals;
1781
+ /**
1782
+ * The maximum number of accepted values for array input.
1783
+ *
1784
+ * **Note:** Only applicable for `TEXT_ARRAY` input fields.
1785
+ */
1786
+ maxSize?: number | null;
1787
+ /**
1788
+ * Default option initially selected when an input has multiple choices.
1789
+ *
1790
+ * Defaults to first (0th) option, if not configured.
1791
+ * Currently only applicable for `type.dropdown`.
1792
+ */
1793
+ defaultOptionSelection?: OptionSelection;
1794
+ /**
1795
+ * Additional labels for multi-valued fields, such as address.
1796
+ * @readonly
1797
+ */
1798
+ labels?: Label[];
1799
+ }
1800
+ declare enum ValueType {
1801
+ TEXT = "TEXT",
1802
+ NUMBER = "NUMBER",
1803
+ TEXT_ARRAY = "TEXT_ARRAY",
1804
+ DATE_TIME = "DATE_TIME",
1805
+ ADDRESS = "ADDRESS"
1806
+ }
1807
+ /** @enumType */
1808
+ type ValueTypeWithLiterals = ValueType | 'TEXT' | 'NUMBER' | 'TEXT_ARRAY' | 'DATE_TIME' | 'ADDRESS';
1809
+ /**
1810
+ * Describes initially selected option when an input has multiple choices.
1811
+ * Defaults to first (0th) option if not configured.
1812
+ */
1813
+ interface OptionSelection extends OptionSelectionSelectedOptionOneOf {
1814
+ /**
1815
+ * 0-based index from predefined `controls.inputs.options` which is initial selection.
1816
+ * @max 199
1817
+ */
1818
+ optionIndex?: number;
1819
+ /**
1820
+ * Placeholder hint describing expected choices, such as "Please select".
1821
+ * Considered an empty choice.
1822
+ * @maxLength 200
1823
+ */
1824
+ placeholderText?: string;
1825
+ }
1826
+ /** @oneof */
1827
+ interface OptionSelectionSelectedOptionOneOf {
1828
+ /**
1829
+ * 0-based index from predefined `controls.inputs.options` which is initial selection.
1830
+ * @max 199
1831
+ */
1832
+ optionIndex?: number;
1833
+ /**
1834
+ * Placeholder hint describing expected choices, such as "Please select".
1835
+ * Considered an empty choice.
1836
+ * @maxLength 200
1837
+ */
1838
+ placeholderText?: string;
1839
+ }
1840
+ interface Label {
1841
+ /** Field name. */
1842
+ name?: string;
1843
+ /** Field label. */
1844
+ label?: string;
1845
+ }
1846
+ /**
1847
+ * Defines form messages shown in UI before, during, and after registration flow.
1848
+ * It enables configuration of form titles, response labels, "thank you" messages, and call-to-action texts.
1849
+ */
1850
+ interface FormMessages {
1851
+ /** RSVP form ([SDK](https://dev.wix.com/docs/sdk/backend-modules/events/rsvp-v2/introduction) | [REST](https://dev.wix.com/docs/rest/business-solutions/events/rsvp-v2/introduction)) messages. */
1852
+ rsvp?: RsvpFormMessages;
1853
+ /** Checkout form messages. */
1854
+ checkout?: CheckoutFormMessages;
1855
+ /** Messages shown when event registration is closed. */
1856
+ registrationClosed?: RegistrationClosedMessages;
1857
+ /** Messages shown when event tickets are unavailable. */
1858
+ ticketsUnavailable?: TicketsUnavailableMessages;
1859
+ }
1860
+ interface RsvpFormMessages {
1861
+ /** Label text indicating RSVP's `status` is `"YES"`. */
1862
+ rsvpYesOption?: string;
1863
+ /** Label text indicating RSVP's `status` is `"NO"`. */
1864
+ rsvpNoOption?: string;
1865
+ /** Messages displayed when an RSVP's `status` is set to `"YES"`. */
1866
+ positiveMessages?: Positive;
1867
+ /** Messages displayed when an RSVP's `status` is set to `"WAITLIST"`, for when the event is full and a waitlist is available). */
1868
+ waitlistMessages?: Positive;
1869
+ /** Messages displayed when an RSVP's `status` is set to `"NO"`. */
1870
+ negativeMessages?: Negative;
1871
+ /** "Submit form" call-to-action label text. */
1872
+ submitActionLabel?: string;
1873
+ }
1874
+ /** Confirmation messages shown after registration. */
1875
+ interface PositiveResponseConfirmation {
1876
+ /** Confirmation message title. */
1877
+ title?: string;
1878
+ /** Confirmation message text. */
1879
+ message?: string;
1880
+ /** "Add to calendar" call-to-action label text. */
1881
+ addToCalendarActionLabel?: string;
1882
+ /** "Share event" call-to-action label text. */
1883
+ shareActionLabel?: string;
1884
+ }
1885
+ /** Confirmation messages shown after registration. */
1886
+ interface NegativeResponseConfirmation {
1887
+ /** Confirmation message title. */
1888
+ title?: string;
1889
+ /** "Share event" call-to-action label text. */
1890
+ shareActionLabel?: string;
1891
+ }
1892
+ /** Set of messages shown during registration when RSVP response is positive. */
1893
+ interface Positive {
1894
+ /** Main form title for positive response. */
1895
+ title?: string;
1896
+ /** Confirmation messages shown after registration. */
1897
+ confirmation?: PositiveResponseConfirmation;
1898
+ }
1899
+ /** A set of messages shown during registration with negative response */
1900
+ interface Negative {
1901
+ /** Main form title for negative response. */
1902
+ title?: string;
1903
+ /** Confirmation messages shown after registration. */
1904
+ confirmation?: NegativeResponseConfirmation;
1905
+ }
1906
+ interface CheckoutFormMessages {
1907
+ /** Main form title for response. */
1908
+ title?: string;
1909
+ /** Submit form call-to-action label text. */
1910
+ submitActionLabel?: string;
1911
+ /** Confirmation messages shown after checkout. */
1912
+ confirmation?: ResponseConfirmation;
1913
+ }
1914
+ /** Confirmation messages shown after checkout. */
1915
+ interface ResponseConfirmation {
1916
+ /** Confirmation message title. */
1917
+ title?: string;
1918
+ /** Confirmation message text. */
1919
+ message?: string;
1920
+ /** "Download tickets" call-to-action label text. */
1921
+ downloadTicketsLabel?: string;
1922
+ /** "Add to calendar" call-to-action label text. */
1923
+ addToCalendarLabel?: string;
1924
+ /** "Share event" call-to-action label text. */
1925
+ shareEventLabel?: string;
1926
+ }
1927
+ interface RegistrationClosedMessages {
1928
+ /** Message shown when event registration is closed. */
1929
+ message?: string;
1930
+ /** "Explore other events" call-to-action label text. */
1931
+ exploreEventsActionLabel?: string;
1932
+ }
1933
+ interface TicketsUnavailableMessages {
1934
+ /** Message shown when event tickets are unavailable. */
1935
+ message?: string;
1936
+ /** "Explore other events" call-to-action label text. */
1937
+ exploreEventsActionLabel?: string;
1938
+ }
1939
+ interface Dashboard {
1940
+ /** Guest RSVP summary. */
1941
+ rsvpSummary?: RsvpSummary;
1942
+ /**
1943
+ * Summary of revenue and tickets sold.
1944
+ * (Archived orders are not included).
1945
+ */
1946
+ ticketingSummary?: TicketingSummary;
1947
+ }
1948
+ interface RsvpSummary {
1949
+ /** Total number of RSVPs. */
1950
+ total?: number;
1951
+ /** Number of RSVPs with status `YES`. */
1952
+ yes?: number;
1953
+ /** Number of RSVPs with status `NO`. */
1954
+ no?: number;
1955
+ /** Number of RSVPs in waitlist. */
1956
+ waitlist?: number;
1957
+ }
1958
+ interface TicketingSummary {
1959
+ /** Number of tickets sold. */
1960
+ tickets?: number;
1961
+ /**
1962
+ * Total revenue, excluding fees.
1963
+ * (taxes and payment provider fees are not deducted.)
1964
+ */
1965
+ revenue?: Money;
1966
+ /** Whether currency is locked and cannot be changed (generally occurs after the first order in the specified currency has been created). */
1967
+ currencyLocked?: boolean;
1968
+ /** Number of orders placed. */
1969
+ orders?: number;
1970
+ /** Total balance of confirmed transactions. */
1971
+ totalSales?: Money;
1972
+ }
1973
+ interface GuestListConfig {
1974
+ /** Whether members can see other members attending the event (defaults to true). */
1975
+ publicGuestList?: boolean;
1976
+ }
1977
+ interface Feed {
1978
+ /** Event discussion feed token. */
1979
+ token?: string;
1980
+ }
1981
+ interface OnlineConferencing {
1982
+ config?: OnlineConferencingConfig;
1983
+ session?: OnlineConferencingSession;
1984
+ }
1985
+ interface OnlineConferencingConfig {
1986
+ /**
1987
+ * Whether online conferencing is enabled (not supported for TBD schedules).
1988
+ * When enabled, links to join conferencing are generated and provided to guests.
1989
+ */
1990
+ enabled?: boolean;
1991
+ /**
1992
+ * Conferencing provider ID.
1993
+ * @format GUID
1994
+ */
1995
+ providerId?: string | null;
1996
+ /** Conference type */
1997
+ conferenceType?: ConferenceTypeWithLiterals;
1998
+ }
1999
+ declare enum ConferenceType {
2000
+ /** Everyone in the meeting can publish and subscribe video and audio. */
2001
+ MEETING = "MEETING",
2002
+ /** Guests can only subscribe to video and audio. */
2003
+ WEBINAR = "WEBINAR"
2004
+ }
2005
+ /** @enumType */
2006
+ type ConferenceTypeWithLiterals = ConferenceType | 'MEETING' | 'WEBINAR';
2007
+ interface OnlineConferencingSession {
2008
+ /**
2009
+ * Link for event host to start the online conference session.
2010
+ * @readonly
2011
+ */
2012
+ hostLink?: string;
2013
+ /**
2014
+ * Link for guests to join the online conference session.
2015
+ * @readonly
2016
+ */
2017
+ guestLink?: string;
2018
+ /**
2019
+ * The password required to join online conferencing session (when relevant).
2020
+ * @readonly
2021
+ */
2022
+ password?: string | null;
2023
+ /**
2024
+ * Indicates that session was created successfully on providers side.
2025
+ * @readonly
2026
+ */
2027
+ sessionCreated?: boolean | null;
2028
+ /**
2029
+ * Unique session id
2030
+ * @readonly
2031
+ */
2032
+ sessionId?: string | null;
2033
+ }
2034
+ interface SeoSettings {
2035
+ /**
2036
+ * URL slug
2037
+ * @maxLength 130
2038
+ */
2039
+ slug?: string;
2040
+ /** Advanced SEO data */
2041
+ advancedSeoData?: SeoSchema;
2042
+ /**
2043
+ * Hidden from SEO Site Map
2044
+ * @readonly
2045
+ */
2046
+ hidden?: boolean | null;
2047
+ }
2048
+ /**
2049
+ * The SEO schema object contains data about different types of meta tags. It makes sure that the information about your page is presented properly to search engines.
2050
+ * The search engines use this information for ranking purposes, or to display snippets in the search results.
2051
+ * This data will override other sources of tags (for example patterns) and will be included in the <head> section of the HTML document, while not being displayed on the page itself.
2052
+ */
2053
+ interface SeoSchema {
2054
+ /** SEO tag information. */
2055
+ tags?: Tag[];
2056
+ /** SEO general settings. */
2057
+ settings?: Settings;
2058
+ }
2059
+ interface Keyword {
2060
+ /** Keyword value. */
2061
+ term?: string;
2062
+ /** Whether the keyword is the main focus keyword. */
2063
+ isMain?: boolean;
2064
+ /**
2065
+ * The source that added the keyword terms to the SEO settings.
2066
+ * @maxLength 1000
2067
+ */
2068
+ origin?: string | null;
2069
+ }
2070
+ interface Tag {
2071
+ /**
2072
+ * SEO tag type.
2073
+ *
2074
+ *
2075
+ * Supported values: `title`, `meta`, `script`, `link`.
2076
+ */
2077
+ type?: string;
2078
+ /**
2079
+ * A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value.
2080
+ * For example: `{"name": "description", "content": "the description itself"}`.
2081
+ */
2082
+ props?: Record<string, any> | null;
2083
+ /** SEO tag metadata. For example, `{"height": 300, "width": 240}`. */
2084
+ meta?: Record<string, any> | null;
2085
+ /** SEO tag inner content. For example, `<title> inner content </title>`. */
2086
+ children?: string;
2087
+ /** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */
2088
+ custom?: boolean;
2089
+ /** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
2090
+ disabled?: boolean;
2091
+ }
2092
+ interface Settings {
2093
+ /**
2094
+ * Whether the [automatical redirect visits](https://support.wix.com/en/article/customizing-your-pages-seo-settings-in-the-seo-panel) from the old URL to the new one is enabled.
2095
+ *
2096
+ *
2097
+ * Default: `false` (automatical redirect is enabled).
2098
+ */
2099
+ preventAutoRedirect?: boolean;
2100
+ /**
2101
+ * User-selected keyword terms for a specific page.
2102
+ * @maxSize 5
2103
+ */
2104
+ keywords?: Keyword[];
2105
+ }
2106
+ interface Agenda {
2107
+ /** Whether the schedule is enabled for the event. */
2108
+ enabled?: boolean;
2109
+ /**
2110
+ * Agenda page URL.
2111
+ * @readonly
2112
+ */
2113
+ pageUrl?: SiteUrl;
2114
+ }
2115
+ /**
2116
+ * A Category is a classification object that groups related events on a site so you can organize and display them by themes, venues, or other facets.
2117
+ *
2118
+ * You can manage Categories, assign events to them, and use them to control the selection and order of events across different pages and widgets.
2119
+ *
2120
+ * Read more about [Categories](https://support.wix.com/en/article/creating-and-displaying-event-categories).
2121
+ */
2122
+ interface Category {
2123
+ /**
2124
+ * Category ID.
2125
+ * @format GUID
2126
+ * @readonly
2127
+ */
2128
+ id?: string;
2129
+ /**
2130
+ * Category name.
2131
+ * @minLength 1
2132
+ * @maxLength 30
2133
+ */
2134
+ name?: string;
2135
+ /**
2136
+ * Date and time when category was created.
2137
+ * @readonly
2138
+ */
2139
+ createdDate?: Date | null;
2140
+ /**
2141
+ * The total number of draft and published events assigned to the category.
2142
+ * @readonly
2143
+ */
2144
+ counts?: CategoryCounts;
2145
+ /**
2146
+ * Category state. Possible values:
2147
+ *
2148
+ * `MANUAL`: Category is created manually by the user.
2149
+ * `AUTO`: Category is created automatically.
2150
+ * `RECURRING_EVENT`: Category is created automatically when publishing recurring events.
2151
+ * `HIDDEN`: Category can't be seen.
2152
+ *
2153
+ * Default: `MANUAL`.
2154
+ *
2155
+ * **Note:** The WIX_EVENTS.MANAGE_AUTO_CATEGORIES permission scope is required to use states other than `MANUAL`.
2156
+ * @maxSize 3
2157
+ */
2158
+ states?: CategoryStateStateWithLiterals[];
2159
+ }
2160
+ interface CategoryCounts {
2161
+ /** Total number of draft events assigned to the category. */
2162
+ assignedEventsCount?: number | null;
2163
+ /** Total number of published events assigned to the category. Deleted events are excluded. */
2164
+ assignedDraftEventsCount?: number | null;
2165
+ }
2166
+ declare enum CategoryStateState {
2167
+ /** Created manually by the user. */
2168
+ MANUAL = "MANUAL",
2169
+ /** Created automatically. */
2170
+ AUTO = "AUTO",
2171
+ /** Created when publishing recurring events. */
2172
+ RECURRING_EVENT = "RECURRING_EVENT",
2173
+ /** Category is hidden. */
2174
+ HIDDEN = "HIDDEN"
2175
+ }
2176
+ /** @enumType */
2177
+ type CategoryStateStateWithLiterals = CategoryStateState | 'MANUAL' | 'AUTO' | 'RECURRING_EVENT' | 'HIDDEN';
2178
+ interface EventDisplaySettings {
2179
+ /** Whether event details button is hidden. Only available for events with no registration. */
2180
+ hideEventDetailsButton?: boolean | null;
2181
+ /** Disables event details page visibility. If event has an external registration configured visitors will be redirected from this page. */
2182
+ hideEventDetailsPage?: boolean | null;
2183
+ }
2184
+ interface LabellingSettings {
2185
+ }
2186
+ interface RichContent {
2187
+ /** Node objects representing a rich content document. */
2188
+ nodes?: Node[];
2189
+ /** Object metadata. */
2190
+ metadata?: Metadata;
2191
+ /** Global styling for header, paragraph, block quote, and code block nodes in the object. */
2192
+ documentStyle?: DocumentStyle;
2193
+ }
2194
+ interface Node extends NodeDataOneOf {
2195
+ /** Data for a button node. */
2196
+ buttonData?: ButtonData;
2197
+ /** Data for a code block node. */
2198
+ codeBlockData?: CodeBlockData;
2199
+ /** Data for a divider node. */
2200
+ dividerData?: DividerData;
2201
+ /** Data for a file node. */
2202
+ fileData?: FileData;
2203
+ /** Data for a gallery node. */
2204
+ galleryData?: GalleryData;
2205
+ /** Data for a GIF node. */
2206
+ gifData?: GIFData;
2207
+ /** Data for a heading node. */
2208
+ headingData?: HeadingData;
2209
+ /** Data for an embedded HTML node. */
2210
+ htmlData?: HTMLData;
2211
+ /** Data for an image node. */
2212
+ imageData?: ImageData;
2213
+ /** Data for a link preview node. */
2214
+ linkPreviewData?: LinkPreviewData;
2215
+ /** @deprecated */
2216
+ mapData?: MapData;
2217
+ /** Data for a paragraph node. */
2218
+ paragraphData?: ParagraphData;
2219
+ /** Data for a poll node. */
2220
+ pollData?: PollData;
2221
+ /** Data for a text node. Used to apply decorations to text. */
2222
+ textData?: TextData;
2223
+ /** Data for an app embed node. */
2224
+ appEmbedData?: AppEmbedData;
2225
+ /** Data for a video node. */
2226
+ videoData?: VideoData;
2227
+ /** Data for an oEmbed node. */
2228
+ embedData?: EmbedData;
2229
+ /** Data for a collapsible list node. */
2230
+ collapsibleListData?: CollapsibleListData;
2231
+ /** Data for a table node. */
2232
+ tableData?: TableData;
2233
+ /** Data for a table cell node. */
2234
+ tableCellData?: TableCellData;
2235
+ /** Data for a custom external node. */
2236
+ externalData?: Record<string, any> | null;
2237
+ /** Data for an audio node. */
2238
+ audioData?: AudioData;
2239
+ /** Data for an ordered list node. */
2240
+ orderedListData?: OrderedListData;
2241
+ /** Data for a bulleted list node. */
2242
+ bulletedListData?: BulletedListData;
2243
+ /** Data for a block quote node. */
2244
+ blockquoteData?: BlockquoteData;
2245
+ /** Data for a caption node. */
2246
+ captionData?: CaptionData;
2247
+ /** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
2248
+ layoutCellData?: LayoutCellData;
2249
+ /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
2250
+ type?: NodeTypeWithLiterals;
2251
+ /** Node ID. */
2252
+ id?: string;
2253
+ /** A list of child nodes. */
2254
+ nodes?: Node[];
2255
+ /** Padding and background color styling for the node. */
2256
+ style?: NodeStyle;
2257
+ }
2258
+ /** @oneof */
2259
+ interface NodeDataOneOf {
2260
+ /** Data for a button node. */
2261
+ buttonData?: ButtonData;
2262
+ /** Data for a code block node. */
2263
+ codeBlockData?: CodeBlockData;
2264
+ /** Data for a divider node. */
2265
+ dividerData?: DividerData;
2266
+ /** Data for a file node. */
2267
+ fileData?: FileData;
2268
+ /** Data for a gallery node. */
2269
+ galleryData?: GalleryData;
2270
+ /** Data for a GIF node. */
2271
+ gifData?: GIFData;
2272
+ /** Data for a heading node. */
2273
+ headingData?: HeadingData;
2274
+ /** Data for an embedded HTML node. */
2275
+ htmlData?: HTMLData;
2276
+ /** Data for an image node. */
2277
+ imageData?: ImageData;
2278
+ /** Data for a link preview node. */
2279
+ linkPreviewData?: LinkPreviewData;
2280
+ /** @deprecated */
2281
+ mapData?: MapData;
2282
+ /** Data for a paragraph node. */
2283
+ paragraphData?: ParagraphData;
2284
+ /** Data for a poll node. */
2285
+ pollData?: PollData;
2286
+ /** Data for a text node. Used to apply decorations to text. */
2287
+ textData?: TextData;
2288
+ /** Data for an app embed node. */
2289
+ appEmbedData?: AppEmbedData;
2290
+ /** Data for a video node. */
2291
+ videoData?: VideoData;
2292
+ /** Data for an oEmbed node. */
2293
+ embedData?: EmbedData;
2294
+ /** Data for a collapsible list node. */
2295
+ collapsibleListData?: CollapsibleListData;
2296
+ /** Data for a table node. */
2297
+ tableData?: TableData;
2298
+ /** Data for a table cell node. */
2299
+ tableCellData?: TableCellData;
2300
+ /** Data for a custom external node. */
2301
+ externalData?: Record<string, any> | null;
2302
+ /** Data for an audio node. */
2303
+ audioData?: AudioData;
2304
+ /** Data for an ordered list node. */
2305
+ orderedListData?: OrderedListData;
2306
+ /** Data for a bulleted list node. */
2307
+ bulletedListData?: BulletedListData;
2308
+ /** Data for a block quote node. */
2309
+ blockquoteData?: BlockquoteData;
2310
+ /** Data for a caption node. */
2311
+ captionData?: CaptionData;
2312
+ /** LayoutData layout_data = 31; // Data for a layout node. Reserved for future use. */
2313
+ layoutCellData?: LayoutCellData;
2314
+ }
2315
+ declare enum NodeType {
2316
+ PARAGRAPH = "PARAGRAPH",
2317
+ TEXT = "TEXT",
2318
+ HEADING = "HEADING",
2319
+ BULLETED_LIST = "BULLETED_LIST",
2320
+ ORDERED_LIST = "ORDERED_LIST",
2321
+ LIST_ITEM = "LIST_ITEM",
2322
+ BLOCKQUOTE = "BLOCKQUOTE",
2323
+ CODE_BLOCK = "CODE_BLOCK",
2324
+ VIDEO = "VIDEO",
2325
+ DIVIDER = "DIVIDER",
2326
+ FILE = "FILE",
2327
+ GALLERY = "GALLERY",
2328
+ GIF = "GIF",
2329
+ HTML = "HTML",
2330
+ IMAGE = "IMAGE",
2331
+ LINK_PREVIEW = "LINK_PREVIEW",
2332
+ /** @deprecated */
2333
+ MAP = "MAP",
2334
+ POLL = "POLL",
2335
+ APP_EMBED = "APP_EMBED",
2336
+ BUTTON = "BUTTON",
2337
+ COLLAPSIBLE_LIST = "COLLAPSIBLE_LIST",
2338
+ TABLE = "TABLE",
2339
+ EMBED = "EMBED",
2340
+ COLLAPSIBLE_ITEM = "COLLAPSIBLE_ITEM",
2341
+ COLLAPSIBLE_ITEM_TITLE = "COLLAPSIBLE_ITEM_TITLE",
2342
+ COLLAPSIBLE_ITEM_BODY = "COLLAPSIBLE_ITEM_BODY",
2343
+ TABLE_CELL = "TABLE_CELL",
2344
+ TABLE_ROW = "TABLE_ROW",
2345
+ EXTERNAL = "EXTERNAL",
2346
+ AUDIO = "AUDIO",
2347
+ CAPTION = "CAPTION",
2348
+ LAYOUT = "LAYOUT",
2349
+ LAYOUT_CELL = "LAYOUT_CELL"
2350
+ }
2351
+ /** @enumType */
2352
+ type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL';
2353
+ interface NodeStyle {
2354
+ /** The top padding value in pixels. */
2355
+ paddingTop?: string | null;
2356
+ /** The bottom padding value in pixels. */
2357
+ paddingBottom?: string | null;
2358
+ /** The background color as a hexadecimal value. */
2359
+ backgroundColor?: string | null;
2360
+ }
2361
+ interface ButtonData {
2362
+ /** Styling for the button's container. */
2363
+ containerData?: PluginContainerData;
2364
+ /** The button type. */
2365
+ type?: ButtonDataTypeWithLiterals;
2366
+ /** Styling for the button. */
2367
+ styles?: Styles;
2368
+ /** The text to display on the button. */
2369
+ text?: string | null;
2370
+ /** Button link details. */
2371
+ link?: Link;
2372
+ }
2373
+ interface Border {
2374
+ /**
2375
+ * Deprecated: Use `borderWidth` in `styles` instead.
2376
+ * @deprecated
2377
+ */
2378
+ width?: number | null;
2379
+ /**
2380
+ * Deprecated: Use `borderRadius` in `styles` instead.
2381
+ * @deprecated
2382
+ */
2383
+ radius?: number | null;
2384
+ }
2385
+ interface Colors {
2386
+ /**
2387
+ * Deprecated: Use `textColor` in `styles` instead.
2388
+ * @deprecated
2389
+ */
2390
+ text?: string | null;
2391
+ /**
2392
+ * Deprecated: Use `borderColor` in `styles` instead.
2393
+ * @deprecated
2394
+ */
2395
+ border?: string | null;
2396
+ /**
2397
+ * Deprecated: Use `backgroundColor` in `styles` instead.
2398
+ * @deprecated
2399
+ */
2400
+ background?: string | null;
2401
+ }
2402
+ interface PluginContainerData {
2403
+ /** The width of the node when it's displayed. */
2404
+ width?: PluginContainerDataWidth;
2405
+ /** The node's alignment within its container. */
2406
+ alignment?: PluginContainerDataAlignmentWithLiterals;
2407
+ /** Spoiler cover settings for the node. */
2408
+ spoiler?: Spoiler;
2409
+ /** The height of the node when it's displayed. */
2410
+ height?: Height;
2411
+ /** Sets whether text should wrap around this node when it's displayed. If `textWrap` is `false`, the node takes up the width of its container. Defaults to `true` for all node types except 'DIVIVDER' where it defaults to `false`. */
2412
+ textWrap?: boolean | null;
2413
+ }
2414
+ declare enum WidthType {
2415
+ /** Width matches the content width */
2416
+ CONTENT = "CONTENT",
2417
+ /** Small Width */
2418
+ SMALL = "SMALL",
2419
+ /** Width will match the original asset width */
2420
+ ORIGINAL = "ORIGINAL",
2421
+ /** coast-to-coast display */
2422
+ FULL_WIDTH = "FULL_WIDTH"
2423
+ }
2424
+ /** @enumType */
2425
+ type WidthTypeWithLiterals = WidthType | 'CONTENT' | 'SMALL' | 'ORIGINAL' | 'FULL_WIDTH';
2426
+ interface PluginContainerDataWidth extends PluginContainerDataWidthDataOneOf {
2427
+ /**
2428
+ * One of the following predefined width options:
2429
+ * `CONTENT`: The width of the container matches the content width.
2430
+ * `SMALL`: A small width.
2431
+ * `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.
2432
+ * `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.
2433
+ */
2434
+ size?: WidthTypeWithLiterals;
2435
+ /** A custom width value in pixels. */
2436
+ custom?: string | null;
2437
+ }
2438
+ /** @oneof */
2439
+ interface PluginContainerDataWidthDataOneOf {
2440
+ /**
2441
+ * One of the following predefined width options:
2442
+ * `CONTENT`: The width of the container matches the content width.
2443
+ * `SMALL`: A small width.
2444
+ * `ORIGINAL`: For `imageData` containers only. The width of the container matches the original image width.
2445
+ * `FULL_WIDTH`: For `imageData` containers only. The image container takes up the full width of the screen.
2446
+ */
2447
+ size?: WidthTypeWithLiterals;
2448
+ /** A custom width value in pixels. */
2449
+ custom?: string | null;
2450
+ }
2451
+ declare enum PluginContainerDataAlignment {
2452
+ /** Center Alignment */
2453
+ CENTER = "CENTER",
2454
+ /** Left Alignment */
2455
+ LEFT = "LEFT",
2456
+ /** Right Alignment */
2457
+ RIGHT = "RIGHT"
2458
+ }
2459
+ /** @enumType */
2460
+ type PluginContainerDataAlignmentWithLiterals = PluginContainerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
2461
+ interface Spoiler {
2462
+ /** Sets whether the spoiler cover is enabled for this node. Defaults to `false`. */
2463
+ enabled?: boolean | null;
2464
+ /** The description displayed on top of the spoiler cover. */
2465
+ description?: string | null;
2466
+ /** The text for the button used to remove the spoiler cover. */
2467
+ buttonText?: string | null;
2468
+ }
2469
+ interface Height {
2470
+ /** A custom height value in pixels. */
2471
+ custom?: string | null;
2472
+ }
2473
+ declare enum ButtonDataType {
2474
+ /** Regular link button */
2475
+ LINK = "LINK",
2476
+ /** Triggers custom action that is defined in plugin configuration by the consumer */
2477
+ ACTION = "ACTION"
2478
+ }
2479
+ /** @enumType */
2480
+ type ButtonDataTypeWithLiterals = ButtonDataType | 'LINK' | 'ACTION';
2481
+ interface Styles {
2482
+ /**
2483
+ * Deprecated: Use `borderWidth` and `borderRadius` instead.
2484
+ * @deprecated
2485
+ */
2486
+ border?: Border;
2487
+ /**
2488
+ * Deprecated: Use `textColor`, `borderColor` and `backgroundColor` instead.
2489
+ * @deprecated
2490
+ */
2491
+ colors?: Colors;
2492
+ /** Border width in pixels. */
2493
+ borderWidth?: number | null;
2494
+ /**
2495
+ * Deprecated: Use `borderWidth` for normal/hover states instead.
2496
+ * @deprecated
2497
+ */
2498
+ borderWidthHover?: number | null;
2499
+ /** Border radius in pixels. */
2500
+ borderRadius?: number | null;
2501
+ /**
2502
+ * Border color as a hexadecimal value.
2503
+ * @format COLOR_HEX
2504
+ */
2505
+ borderColor?: string | null;
2506
+ /**
2507
+ * Border color as a hexadecimal value (hover state).
2508
+ * @format COLOR_HEX
2509
+ */
2510
+ borderColorHover?: string | null;
2511
+ /**
2512
+ * Text color as a hexadecimal value.
2513
+ * @format COLOR_HEX
2514
+ */
2515
+ textColor?: string | null;
2516
+ /**
2517
+ * Text color as a hexadecimal value (hover state).
2518
+ * @format COLOR_HEX
2519
+ */
2520
+ textColorHover?: string | null;
2521
+ /**
2522
+ * Background color as a hexadecimal value.
2523
+ * @format COLOR_HEX
2524
+ */
2525
+ backgroundColor?: string | null;
2526
+ /**
2527
+ * Background color as a hexadecimal value (hover state).
2528
+ * @format COLOR_HEX
2529
+ */
2530
+ backgroundColorHover?: string | null;
2531
+ /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
2532
+ buttonSize?: string | null;
2533
+ }
2534
+ interface Link extends LinkDataOneOf {
2535
+ /** The absolute URL for the linked document. */
2536
+ url?: string;
2537
+ /** The target node's ID. Used for linking to another node in this object. */
2538
+ anchor?: string;
2539
+ /**
2540
+ * he HTML `target` attribute value for the link. This property defines where the linked document opens as follows:
2541
+ * `SELF` - Default. Opens the linked document in the same frame as the link.
2542
+ * `BLANK` - Opens the linked document in a new browser tab or window.
2543
+ * `PARENT` - Opens the linked document in the link's parent frame.
2544
+ * `TOP` - Opens the linked document in the full body of the link's browser tab or window.
2545
+ */
2546
+ target?: TargetWithLiterals;
2547
+ /** The HTML `rel` attribute value for the link. This object specifies the relationship between the current document and the linked document. */
2548
+ rel?: Rel;
2549
+ /** A serialized object used for a custom or external link panel. */
2550
+ customData?: string | null;
2551
+ }
2552
+ /** @oneof */
2553
+ interface LinkDataOneOf {
2554
+ /** The absolute URL for the linked document. */
2555
+ url?: string;
2556
+ /** The target node's ID. Used for linking to another node in this object. */
2557
+ anchor?: string;
2558
+ }
2559
+ declare enum Target {
2560
+ /** Opens the linked document in the same frame as it was clicked (this is default) */
2561
+ SELF = "SELF",
2562
+ /** Opens the linked document in a new window or tab */
2563
+ BLANK = "BLANK",
2564
+ /** Opens the linked document in the parent frame */
2565
+ PARENT = "PARENT",
2566
+ /** Opens the linked document in the full body of the window */
2567
+ TOP = "TOP"
2568
+ }
2569
+ /** @enumType */
2570
+ type TargetWithLiterals = Target | 'SELF' | 'BLANK' | 'PARENT' | 'TOP';
2571
+ interface Rel {
2572
+ /** Indicates to search engine crawlers not to follow the link. Defaults to `false`. */
2573
+ nofollow?: boolean | null;
2574
+ /** Indicates to search engine crawlers that the link is a paid placement such as sponsored content or an advertisement. Defaults to `false`. */
2575
+ sponsored?: boolean | null;
2576
+ /** Indicates that this link is user-generated content and isn't necessarily trusted or endorsed by the page’s author. For example, a link in a fourm post. Defaults to `false`. */
2577
+ ugc?: boolean | null;
2578
+ /** Indicates that this link protect referral information from being passed to the target website. */
2579
+ noreferrer?: boolean | null;
2580
+ }
2581
+ interface CodeBlockData {
2582
+ /** Styling for the code block's text. */
2583
+ textStyle?: TextStyle;
2584
+ }
2585
+ interface TextStyle {
2586
+ /** Text alignment. Defaults to `AUTO`. */
2587
+ textAlignment?: TextAlignmentWithLiterals;
2588
+ /** A CSS `line-height` value for the text expressed as a ratio relative to the font size. For example, if the font size is 20px, a `lineHeight` value of `'1.5'`` results in a line height of 30px. */
2589
+ lineHeight?: string | null;
2590
+ }
2591
+ declare enum TextAlignment {
2592
+ /** browser default, eqivalent to `initial` */
2593
+ AUTO = "AUTO",
2594
+ /** Left align */
2595
+ LEFT = "LEFT",
2596
+ /** Right align */
2597
+ RIGHT = "RIGHT",
2598
+ /** Center align */
2599
+ CENTER = "CENTER",
2600
+ /** Text is spaced to line up its left and right edges to the left and right edges of the line box, except for the last line */
2601
+ JUSTIFY = "JUSTIFY"
2602
+ }
2603
+ /** @enumType */
2604
+ type TextAlignmentWithLiterals = TextAlignment | 'AUTO' | 'LEFT' | 'RIGHT' | 'CENTER' | 'JUSTIFY';
2605
+ interface DividerData {
2606
+ /** Styling for the divider's container. */
2607
+ containerData?: PluginContainerData;
2608
+ /** Divider line style. */
2609
+ lineStyle?: LineStyleWithLiterals;
2610
+ /** Divider width. */
2611
+ width?: WidthWithLiterals;
2612
+ /** Divider alignment. */
2613
+ alignment?: DividerDataAlignmentWithLiterals;
2614
+ }
2615
+ declare enum LineStyle {
2616
+ /** Single Line */
2617
+ SINGLE = "SINGLE",
2618
+ /** Double Line */
2619
+ DOUBLE = "DOUBLE",
2620
+ /** Dashed Line */
2621
+ DASHED = "DASHED",
2622
+ /** Dotted Line */
2623
+ DOTTED = "DOTTED"
2624
+ }
2625
+ /** @enumType */
2626
+ type LineStyleWithLiterals = LineStyle | 'SINGLE' | 'DOUBLE' | 'DASHED' | 'DOTTED';
2627
+ declare enum Width {
2628
+ /** Large line */
2629
+ LARGE = "LARGE",
2630
+ /** Medium line */
2631
+ MEDIUM = "MEDIUM",
2632
+ /** Small line */
2633
+ SMALL = "SMALL"
2634
+ }
2635
+ /** @enumType */
2636
+ type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
2637
+ declare enum DividerDataAlignment {
2638
+ /** Center alignment */
2639
+ CENTER = "CENTER",
2640
+ /** Left alignment */
2641
+ LEFT = "LEFT",
2642
+ /** Right alignment */
2643
+ RIGHT = "RIGHT"
2644
+ }
2645
+ /** @enumType */
2646
+ type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
2647
+ interface FileData {
2648
+ /** Styling for the file's container. */
2649
+ containerData?: PluginContainerData;
2650
+ /** The source for the file's data. */
2651
+ src?: FileSource;
2652
+ /** File name. */
2653
+ name?: string | null;
2654
+ /** File type. */
2655
+ type?: string | null;
2656
+ /**
2657
+ * Use `sizeInKb` instead.
2658
+ * @deprecated
2659
+ */
2660
+ size?: number | null;
2661
+ /** Settings for PDF files. */
2662
+ pdfSettings?: PDFSettings;
2663
+ /** File MIME type. */
2664
+ mimeType?: string | null;
2665
+ /** File path. */
2666
+ path?: string | null;
2667
+ /** File size in KB. */
2668
+ sizeInKb?: string | null;
2669
+ }
2670
+ declare enum ViewMode {
2671
+ /** No PDF view */
2672
+ NONE = "NONE",
2673
+ /** Full PDF view */
2674
+ FULL = "FULL",
2675
+ /** Mini PDF view */
2676
+ MINI = "MINI"
2677
+ }
2678
+ /** @enumType */
2679
+ type ViewModeWithLiterals = ViewMode | 'NONE' | 'FULL' | 'MINI';
2680
+ interface FileSource extends FileSourceDataOneOf {
2681
+ /** The absolute URL for the file's source. */
2682
+ url?: string | null;
2683
+ /**
2684
+ * Custom ID. Use `id` instead.
2685
+ * @deprecated
2686
+ */
2687
+ custom?: string | null;
2688
+ /** An ID that's resolved to a URL by a resolver function. */
2689
+ id?: string | null;
2690
+ /** Indicates whether the file's source is private. Defaults to `false`. */
2691
+ private?: boolean | null;
2692
+ }
2693
+ /** @oneof */
2694
+ interface FileSourceDataOneOf {
2695
+ /** The absolute URL for the file's source. */
2696
+ url?: string | null;
2697
+ /**
2698
+ * Custom ID. Use `id` instead.
2699
+ * @deprecated
2700
+ */
2701
+ custom?: string | null;
2702
+ /** An ID that's resolved to a URL by a resolver function. */
2703
+ id?: string | null;
2704
+ }
2705
+ interface PDFSettings {
2706
+ /**
2707
+ * PDF view mode. One of the following:
2708
+ * `NONE` : The PDF isn't displayed.
2709
+ * `FULL` : A full page view of the PDF is displayed.
2710
+ * `MINI` : A mini view of the PDF is displayed.
2711
+ */
2712
+ viewMode?: ViewModeWithLiterals;
2713
+ /** Sets whether the PDF download button is disabled. Defaults to `false`. */
2714
+ disableDownload?: boolean | null;
2715
+ /** Sets whether the PDF print button is disabled. Defaults to `false`. */
2716
+ disablePrint?: boolean | null;
2717
+ }
2718
+ interface GalleryData {
2719
+ /** Styling for the gallery's container. */
2720
+ containerData?: PluginContainerData;
2721
+ /** The items in the gallery. */
2722
+ items?: Item[];
2723
+ /** Options for defining the gallery's appearance. */
2724
+ options?: GalleryOptions;
2725
+ /** Sets whether the gallery's expand button is disabled. Defaults to `false`. */
2726
+ disableExpand?: boolean | null;
2727
+ /** Sets whether the gallery's download button is disabled. Defaults to `false`. */
2728
+ disableDownload?: boolean | null;
2729
+ }
2730
+ interface Media {
2731
+ /** The source for the media's data. */
2732
+ src?: FileSource;
2733
+ /** Media width in pixels. */
2734
+ width?: number | null;
2735
+ /** Media height in pixels. */
2736
+ height?: number | null;
2737
+ /** Media duration in seconds. Only relevant for audio and video files. */
2738
+ duration?: number | null;
2739
+ }
2740
+ interface ItemImage {
2741
+ /** Image file details. */
2742
+ media?: Media;
2743
+ /** Link details for images that are links. */
2744
+ link?: Link;
2745
+ }
2746
+ interface Video {
2747
+ /** Video file details. */
2748
+ media?: Media;
2749
+ /** Video thumbnail file details. */
2750
+ thumbnail?: Media;
2751
+ }
2752
+ interface Item extends ItemDataOneOf {
2753
+ /** An image item. */
2754
+ image?: ItemImage;
2755
+ /** A video item. */
2756
+ video?: Video;
2757
+ /** Item title. */
2758
+ title?: string | null;
2759
+ /** Item's alternative text. */
2760
+ altText?: string | null;
2761
+ }
2762
+ /** @oneof */
2763
+ interface ItemDataOneOf {
2764
+ /** An image item. */
2765
+ image?: ItemImage;
2766
+ /** A video item. */
2767
+ video?: Video;
2768
+ }
2769
+ interface GalleryOptions {
2770
+ /** Gallery layout. */
2771
+ layout?: GalleryOptionsLayout;
2772
+ /** Styling for gallery items. */
2773
+ item?: ItemStyle;
2774
+ /** Styling for gallery thumbnail images. */
2775
+ thumbnails?: Thumbnails;
2776
+ }
2777
+ declare enum LayoutType {
2778
+ /** Collage type */
2779
+ COLLAGE = "COLLAGE",
2780
+ /** Masonry type */
2781
+ MASONRY = "MASONRY",
2782
+ /** Grid type */
2783
+ GRID = "GRID",
2784
+ /** Thumbnail type */
2785
+ THUMBNAIL = "THUMBNAIL",
2786
+ /** Slider type */
2787
+ SLIDER = "SLIDER",
2788
+ /** Slideshow type */
2789
+ SLIDESHOW = "SLIDESHOW",
2790
+ /** Panorama type */
2791
+ PANORAMA = "PANORAMA",
2792
+ /** Column type */
2793
+ COLUMN = "COLUMN",
2794
+ /** Magic type */
2795
+ MAGIC = "MAGIC",
2796
+ /** Fullsize images type */
2797
+ FULLSIZE = "FULLSIZE"
2798
+ }
2799
+ /** @enumType */
2800
+ type LayoutTypeWithLiterals = LayoutType | 'COLLAGE' | 'MASONRY' | 'GRID' | 'THUMBNAIL' | 'SLIDER' | 'SLIDESHOW' | 'PANORAMA' | 'COLUMN' | 'MAGIC' | 'FULLSIZE';
2801
+ declare enum Orientation {
2802
+ /** Rows Orientation */
2803
+ ROWS = "ROWS",
2804
+ /** Columns Orientation */
2805
+ COLUMNS = "COLUMNS"
2806
+ }
2807
+ /** @enumType */
2808
+ type OrientationWithLiterals = Orientation | 'ROWS' | 'COLUMNS';
2809
+ declare enum Crop {
2810
+ /** Crop to fill */
2811
+ FILL = "FILL",
2812
+ /** Crop to fit */
2813
+ FIT = "FIT"
2814
+ }
2815
+ /** @enumType */
2816
+ type CropWithLiterals = Crop | 'FILL' | 'FIT';
2817
+ declare enum ThumbnailsAlignment {
2818
+ /** Top alignment */
2819
+ TOP = "TOP",
2820
+ /** Right alignment */
2821
+ RIGHT = "RIGHT",
2822
+ /** Bottom alignment */
2823
+ BOTTOM = "BOTTOM",
2824
+ /** Left alignment */
2825
+ LEFT = "LEFT",
2826
+ /** No thumbnail */
2827
+ NONE = "NONE"
2828
+ }
2829
+ /** @enumType */
2830
+ type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
2831
+ interface GalleryOptionsLayout {
2832
+ /** Gallery layout type. */
2833
+ type?: LayoutTypeWithLiterals;
2834
+ /** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
2835
+ horizontalScroll?: boolean | null;
2836
+ /** Gallery orientation. */
2837
+ orientation?: OrientationWithLiterals;
2838
+ /** The number of columns to display on full size screens. */
2839
+ numberOfColumns?: number | null;
2840
+ /** The number of columns to display on mobile screens. */
2841
+ mobileNumberOfColumns?: number | null;
2842
+ }
2843
+ interface ItemStyle {
2844
+ /** Desirable dimension for each item in pixels (behvaior changes according to gallery type) */
2845
+ targetSize?: number | null;
2846
+ /** Item ratio */
2847
+ ratio?: number | null;
2848
+ /** Sets how item images are cropped. */
2849
+ crop?: CropWithLiterals;
2850
+ /** The spacing between items in pixels. */
2851
+ spacing?: number | null;
2852
+ }
2853
+ interface Thumbnails {
2854
+ /** Thumbnail alignment. */
2855
+ placement?: ThumbnailsAlignmentWithLiterals;
2856
+ /** Spacing between thumbnails in pixels. */
2857
+ spacing?: number | null;
2858
+ }
2859
+ interface GIFData {
2860
+ /** Styling for the GIF's container. */
2861
+ containerData?: PluginContainerData;
2862
+ /** The source of the full size GIF. */
2863
+ original?: GIF;
2864
+ /** The source of the downsized GIF. */
2865
+ downsized?: GIF;
2866
+ /** Height in pixels. */
2867
+ height?: number;
2868
+ /** Width in pixels. */
2869
+ width?: number;
2870
+ /** Type of GIF (Sticker or NORMAL). Defaults to `NORMAL`. */
2871
+ gifType?: GIFTypeWithLiterals;
2872
+ }
2873
+ interface GIF {
2874
+ /**
2875
+ * GIF format URL.
2876
+ * @format WEB_URL
2877
+ */
2878
+ gif?: string | null;
2879
+ /**
2880
+ * MP4 format URL.
2881
+ * @format WEB_URL
2882
+ */
2883
+ mp4?: string | null;
2884
+ /**
2885
+ * Thumbnail URL.
2886
+ * @format WEB_URL
2887
+ */
2888
+ still?: string | null;
2889
+ }
2890
+ declare enum GIFType {
2891
+ NORMAL = "NORMAL",
2892
+ STICKER = "STICKER"
2893
+ }
2894
+ /** @enumType */
2895
+ type GIFTypeWithLiterals = GIFType | 'NORMAL' | 'STICKER';
2896
+ interface HeadingData {
2897
+ /** Heading level from 1-6. */
2898
+ level?: number;
2899
+ /** Styling for the heading text. */
2900
+ textStyle?: TextStyle;
2901
+ /** Indentation level from 1-4. */
2902
+ indentation?: number | null;
2903
+ }
2904
+ interface HTMLData extends HTMLDataDataOneOf {
2905
+ /** The URL for the HTML code for the node. */
2906
+ url?: string;
2907
+ /** The HTML code for the node. */
2908
+ html?: string;
2909
+ /**
2910
+ * Whether this is an AdSense element. Use `source` instead.
2911
+ * @deprecated
2912
+ */
2913
+ isAdsense?: boolean | null;
2914
+ /** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
2915
+ containerData?: PluginContainerData;
2916
+ /** The type of HTML code. */
2917
+ source?: SourceWithLiterals;
2918
+ /** If container height is aligned with its content height. Defaults to `true`. */
2919
+ autoHeight?: boolean | null;
2920
+ }
2921
+ /** @oneof */
2922
+ interface HTMLDataDataOneOf {
2923
+ /** The URL for the HTML code for the node. */
2924
+ url?: string;
2925
+ /** The HTML code for the node. */
2926
+ html?: string;
2927
+ /**
2928
+ * Whether this is an AdSense element. Use `source` instead.
2929
+ * @deprecated
2930
+ */
2931
+ isAdsense?: boolean | null;
2932
+ }
2933
+ declare enum Source {
2934
+ HTML = "HTML",
2935
+ ADSENSE = "ADSENSE"
2936
+ }
2937
+ /** @enumType */
2938
+ type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
2939
+ interface ImageData {
2940
+ /** Styling for the image's container. */
2941
+ containerData?: PluginContainerData;
2942
+ /** Image file details. */
2943
+ image?: Media;
2944
+ /** Link details for images that are links. */
2945
+ link?: Link;
2946
+ /** Sets whether the image expands to full screen when clicked. Defaults to `false`. */
2947
+ disableExpand?: boolean | null;
2948
+ /** Image's alternative text. */
2949
+ altText?: string | null;
2950
+ /**
2951
+ * Deprecated: use Caption node instead.
2952
+ * @deprecated
2953
+ */
2954
+ caption?: string | null;
2955
+ /** Sets whether the image's download button is disabled. Defaults to `false`. */
2956
+ disableDownload?: boolean | null;
2957
+ /** Sets whether the image is decorative and does not need an explanation. Defaults to `false`. */
2958
+ decorative?: boolean | null;
2959
+ /** Styling for the image. */
2960
+ styles?: ImageDataStyles;
2961
+ }
2962
+ interface StylesBorder {
2963
+ /** Border width in pixels. */
2964
+ width?: number | null;
2965
+ /**
2966
+ * Border color as a hexadecimal value.
2967
+ * @format COLOR_HEX
2968
+ */
2969
+ color?: string | null;
2970
+ /** Border radius in pixels. */
2971
+ radius?: number | null;
2972
+ }
2973
+ interface ImageDataStyles {
2974
+ /** Border attributes. */
2975
+ border?: StylesBorder;
2976
+ }
2977
+ interface LinkPreviewData {
2978
+ /** Styling for the link preview's container. */
2979
+ containerData?: PluginContainerData;
2980
+ /** Link details. */
2981
+ link?: Link;
2982
+ /** Preview title. */
2983
+ title?: string | null;
2984
+ /** Preview thumbnail URL. */
2985
+ thumbnailUrl?: string | null;
2986
+ /** Preview description. */
2987
+ description?: string | null;
2988
+ /** The preview content as HTML. */
2989
+ html?: string | null;
2990
+ /** Styling for the link preview. */
2991
+ styles?: LinkPreviewDataStyles;
2992
+ }
2993
+ declare enum StylesPosition {
2994
+ /** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
2995
+ START = "START",
2996
+ /** Thumbnail positioned at the end (right in LTR layouts, left in RTL layouts) */
2997
+ END = "END",
2998
+ /** Thumbnail positioned at the top */
2999
+ TOP = "TOP",
3000
+ /** Thumbnail hidden and not displayed */
3001
+ HIDDEN = "HIDDEN"
3002
+ }
3003
+ /** @enumType */
3004
+ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HIDDEN';
3005
+ interface LinkPreviewDataStyles {
3006
+ /**
3007
+ * Background color as a hexadecimal value.
3008
+ * @format COLOR_HEX
3009
+ */
3010
+ backgroundColor?: string | null;
3011
+ /**
3012
+ * Title color as a hexadecimal value.
3013
+ * @format COLOR_HEX
3014
+ */
3015
+ titleColor?: string | null;
3016
+ /**
3017
+ * Subtitle color as a hexadecimal value.
3018
+ * @format COLOR_HEX
3019
+ */
3020
+ subtitleColor?: string | null;
3021
+ /**
3022
+ * Link color as a hexadecimal value.
3023
+ * @format COLOR_HEX
3024
+ */
3025
+ linkColor?: string | null;
3026
+ /** Border width in pixels. */
3027
+ borderWidth?: number | null;
3028
+ /** Border radius in pixels. */
3029
+ borderRadius?: number | null;
3030
+ /**
3031
+ * Border color as a hexadecimal value.
3032
+ * @format COLOR_HEX
3033
+ */
3034
+ borderColor?: string | null;
3035
+ /** Position of thumbnail. Defaults to `START`. */
3036
+ thumbnailPosition?: StylesPositionWithLiterals;
3037
+ }
3038
+ interface MapData {
3039
+ /** Styling for the map's container. */
3040
+ containerData?: PluginContainerData;
3041
+ /** Map settings. */
3042
+ mapSettings?: MapSettings;
3043
+ }
3044
+ interface MapSettings {
3045
+ /** The address to display on the map. */
3046
+ address?: string | null;
3047
+ /** Sets whether the map is draggable. */
3048
+ draggable?: boolean | null;
3049
+ /** Sets whether the location marker is visible. */
3050
+ marker?: boolean | null;
3051
+ /** Sets whether street view control is enabled. */
3052
+ streetViewControl?: boolean | null;
3053
+ /** Sets whether zoom control is enabled. */
3054
+ zoomControl?: boolean | null;
3055
+ /** Location latitude. */
3056
+ lat?: number | null;
3057
+ /** Location longitude. */
3058
+ lng?: number | null;
3059
+ /** Location name. */
3060
+ locationName?: string | null;
3061
+ /** Sets whether view mode control is enabled. */
3062
+ viewModeControl?: boolean | null;
3063
+ /** Initial zoom value. */
3064
+ initialZoom?: number | null;
3065
+ /** Map type. `HYBRID` is a combination of the `ROADMAP` and `SATELLITE` map types. */
3066
+ mapType?: MapTypeWithLiterals;
3067
+ }
3068
+ declare enum MapType {
3069
+ /** Roadmap map type */
3070
+ ROADMAP = "ROADMAP",
3071
+ /** Satellite map type */
3072
+ SATELITE = "SATELITE",
3073
+ /** Hybrid map type */
3074
+ HYBRID = "HYBRID",
3075
+ /** Terrain map type */
3076
+ TERRAIN = "TERRAIN"
3077
+ }
3078
+ /** @enumType */
3079
+ type MapTypeWithLiterals = MapType | 'ROADMAP' | 'SATELITE' | 'HYBRID' | 'TERRAIN';
3080
+ interface ParagraphData {
3081
+ /** Styling for the paragraph text. */
3082
+ textStyle?: TextStyle;
3083
+ /** Indentation level from 1-4. */
3084
+ indentation?: number | null;
3085
+ /** Paragraph level */
3086
+ level?: number | null;
3087
+ }
3088
+ interface PollData {
3089
+ /** Styling for the poll's container. */
3090
+ containerData?: PluginContainerData;
3091
+ /** Poll data. */
3092
+ poll?: Poll;
3093
+ /** Layout settings for the poll and voting options. */
3094
+ layout?: PollDataLayout;
3095
+ /** Styling for the poll and voting options. */
3096
+ design?: Design;
3097
+ }
3098
+ declare enum ViewRole {
3099
+ /** Only Poll creator can view the results */
3100
+ CREATOR = "CREATOR",
3101
+ /** Anyone who voted can see the results */
3102
+ VOTERS = "VOTERS",
3103
+ /** Anyone can see the results, even if one didn't vote */
3104
+ EVERYONE = "EVERYONE"
3105
+ }
3106
+ /** @enumType */
3107
+ type ViewRoleWithLiterals = ViewRole | 'CREATOR' | 'VOTERS' | 'EVERYONE';
3108
+ declare enum VoteRole {
3109
+ /** Logged in member */
3110
+ SITE_MEMBERS = "SITE_MEMBERS",
3111
+ /** Anyone */
3112
+ ALL = "ALL"
3113
+ }
3114
+ /** @enumType */
3115
+ type VoteRoleWithLiterals = VoteRole | 'SITE_MEMBERS' | 'ALL';
3116
+ interface Permissions {
3117
+ /** Sets who can view the poll results. */
3118
+ view?: ViewRoleWithLiterals;
3119
+ /** Sets who can vote. */
3120
+ vote?: VoteRoleWithLiterals;
3121
+ /** Sets whether one voter can vote multiple times. Defaults to `false`. */
3122
+ allowMultipleVotes?: boolean | null;
3123
+ }
3124
+ interface Option {
3125
+ /** Option ID. */
3126
+ id?: string | null;
3127
+ /** Option title. */
3128
+ title?: string | null;
3129
+ /** The image displayed with the option. */
3130
+ image?: Media;
3131
+ }
3132
+ interface PollSettings {
3133
+ /** Permissions settings for voting. */
3134
+ permissions?: Permissions;
3135
+ /** Sets whether voters are displayed in the vote results. Defaults to `true`. */
3136
+ showVoters?: boolean | null;
3137
+ /** Sets whether the vote count is displayed. Defaults to `true`. */
3138
+ showVotesCount?: boolean | null;
3139
+ }
3140
+ declare enum PollLayoutType {
3141
+ /** List */
3142
+ LIST = "LIST",
3143
+ /** Grid */
3144
+ GRID = "GRID"
3145
+ }
3146
+ /** @enumType */
3147
+ type PollLayoutTypeWithLiterals = PollLayoutType | 'LIST' | 'GRID';
3148
+ declare enum PollLayoutDirection {
3149
+ /** Left-to-right */
3150
+ LTR = "LTR",
3151
+ /** Right-to-left */
3152
+ RTL = "RTL"
3153
+ }
3154
+ /** @enumType */
3155
+ type PollLayoutDirectionWithLiterals = PollLayoutDirection | 'LTR' | 'RTL';
3156
+ interface PollLayout {
3157
+ /** The layout for displaying the voting options. */
3158
+ type?: PollLayoutTypeWithLiterals;
3159
+ /** The direction of the text displayed in the voting options. Text can be displayed either right-to-left or left-to-right. */
3160
+ direction?: PollLayoutDirectionWithLiterals;
3161
+ /** Sets whether to display the main poll image. Defaults to `false`. */
3162
+ enableImage?: boolean | null;
3163
+ }
3164
+ interface OptionLayout {
3165
+ /** Sets whether to display option images. Defaults to `false`. */
3166
+ enableImage?: boolean | null;
3167
+ }
3168
+ declare enum BackgroundType {
3169
+ /** Color background type */
3170
+ COLOR = "COLOR",
3171
+ /** Image background type */
3172
+ IMAGE = "IMAGE",
3173
+ /** Gradiant background type */
3174
+ GRADIENT = "GRADIENT"
3175
+ }
3176
+ /** @enumType */
3177
+ type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
3178
+ interface Gradient {
3179
+ /** The gradient angle in degrees. */
3180
+ angle?: number | null;
3181
+ /**
3182
+ * The start color as a hexademical value.
3183
+ * @format COLOR_HEX
3184
+ */
3185
+ startColor?: string | null;
3186
+ /**
3187
+ * The end color as a hexademical value.
3188
+ * @format COLOR_HEX
3189
+ */
3190
+ lastColor?: string | null;
3191
+ }
3192
+ interface Background extends BackgroundBackgroundOneOf {
3193
+ /**
3194
+ * The background color as a hexademical value.
3195
+ * @format COLOR_HEX
3196
+ */
3197
+ color?: string | null;
3198
+ /** An image to use for the background. */
3199
+ image?: Media;
3200
+ /** Details for a gradient background. */
3201
+ gradient?: Gradient;
3202
+ /** Background type. For each option, include the relevant details. */
3203
+ type?: BackgroundTypeWithLiterals;
3204
+ }
3205
+ /** @oneof */
3206
+ interface BackgroundBackgroundOneOf {
3207
+ /**
3208
+ * The background color as a hexademical value.
3209
+ * @format COLOR_HEX
3210
+ */
3211
+ color?: string | null;
3212
+ /** An image to use for the background. */
3213
+ image?: Media;
3214
+ /** Details for a gradient background. */
3215
+ gradient?: Gradient;
3216
+ }
3217
+ interface PollDesign {
3218
+ /** Background styling. */
3219
+ background?: Background;
3220
+ /** Border radius in pixels. */
3221
+ borderRadius?: number | null;
3222
+ }
3223
+ interface OptionDesign {
3224
+ /** Border radius in pixels. */
3225
+ borderRadius?: number | null;
3226
+ }
3227
+ interface Poll {
3228
+ /** Poll ID. */
3229
+ id?: string | null;
3230
+ /** Poll title. */
3231
+ title?: string | null;
3232
+ /** Poll creator ID. */
3233
+ creatorId?: string | null;
3234
+ /** Main poll image. */
3235
+ image?: Media;
3236
+ /** Voting options. */
3237
+ options?: Option[];
3238
+ /** The poll's permissions and display settings. */
3239
+ settings?: PollSettings;
3240
+ }
3241
+ interface PollDataLayout {
3242
+ /** Poll layout settings. */
3243
+ poll?: PollLayout;
3244
+ /** Voting otpions layout settings. */
3245
+ options?: OptionLayout;
3246
+ }
3247
+ interface Design {
3248
+ /** Styling for the poll. */
3249
+ poll?: PollDesign;
3250
+ /** Styling for voting options. */
3251
+ options?: OptionDesign;
3252
+ }
3253
+ interface TextData {
3254
+ /** The text to apply decorations to. */
3255
+ text?: string;
3256
+ /** The decorations to apply. */
3257
+ decorations?: Decoration[];
3258
+ }
3259
+ /** Adds appearence changes to text */
3260
+ interface Decoration extends DecorationDataOneOf {
3261
+ /** Data for an anchor link decoration. */
3262
+ anchorData?: AnchorData;
3263
+ /** Data for a color decoration. */
3264
+ colorData?: ColorData;
3265
+ /** Data for an external link decoration. */
3266
+ linkData?: LinkData;
3267
+ /** Data for a mention decoration. */
3268
+ mentionData?: MentionData;
3269
+ /** Data for a font size decoration. */
3270
+ fontSizeData?: FontSizeData;
3271
+ /** Font weight for a bold decoration. */
3272
+ fontWeightValue?: number | null;
3273
+ /** Data for an italic decoration. Defaults to `true`. */
3274
+ italicData?: boolean | null;
3275
+ /** Data for an underline decoration. Defaults to `true`. */
3276
+ underlineData?: boolean | null;
3277
+ /** Data for a spoiler decoration. */
3278
+ spoilerData?: SpoilerData;
3279
+ /** Data for a strikethrough decoration. Defaults to `true`. */
3280
+ strikethroughData?: boolean | null;
3281
+ /** Data for a superscript decoration. Defaults to `true`. */
3282
+ superscriptData?: boolean | null;
3283
+ /** Data for a subscript decoration. Defaults to `true`. */
3284
+ subscriptData?: boolean | null;
3285
+ /** The type of decoration to apply. */
3286
+ type?: DecorationTypeWithLiterals;
3287
+ }
3288
+ /** @oneof */
3289
+ interface DecorationDataOneOf {
3290
+ /** Data for an anchor link decoration. */
3291
+ anchorData?: AnchorData;
3292
+ /** Data for a color decoration. */
3293
+ colorData?: ColorData;
3294
+ /** Data for an external link decoration. */
3295
+ linkData?: LinkData;
3296
+ /** Data for a mention decoration. */
3297
+ mentionData?: MentionData;
3298
+ /** Data for a font size decoration. */
3299
+ fontSizeData?: FontSizeData;
3300
+ /** Font weight for a bold decoration. */
3301
+ fontWeightValue?: number | null;
3302
+ /** Data for an italic decoration. Defaults to `true`. */
3303
+ italicData?: boolean | null;
3304
+ /** Data for an underline decoration. Defaults to `true`. */
3305
+ underlineData?: boolean | null;
3306
+ /** Data for a spoiler decoration. */
3307
+ spoilerData?: SpoilerData;
3308
+ /** Data for a strikethrough decoration. Defaults to `true`. */
3309
+ strikethroughData?: boolean | null;
3310
+ /** Data for a superscript decoration. Defaults to `true`. */
3311
+ superscriptData?: boolean | null;
3312
+ /** Data for a subscript decoration. Defaults to `true`. */
3313
+ subscriptData?: boolean | null;
3314
+ }
3315
+ declare enum DecorationType {
3316
+ BOLD = "BOLD",
3317
+ ITALIC = "ITALIC",
3318
+ UNDERLINE = "UNDERLINE",
3319
+ SPOILER = "SPOILER",
3320
+ ANCHOR = "ANCHOR",
3321
+ MENTION = "MENTION",
3322
+ LINK = "LINK",
3323
+ COLOR = "COLOR",
3324
+ FONT_SIZE = "FONT_SIZE",
3325
+ EXTERNAL = "EXTERNAL",
3326
+ STRIKETHROUGH = "STRIKETHROUGH",
3327
+ SUPERSCRIPT = "SUPERSCRIPT",
3328
+ SUBSCRIPT = "SUBSCRIPT"
3329
+ }
3330
+ /** @enumType */
3331
+ type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT';
3332
+ interface AnchorData {
3333
+ /** The target node's ID. */
3334
+ anchor?: string;
3335
+ }
3336
+ interface ColorData {
3337
+ /** The text's background color as a hexadecimal value. */
3338
+ background?: string | null;
3339
+ /** The text's foreground color as a hexadecimal value. */
3340
+ foreground?: string | null;
3341
+ }
3342
+ interface LinkData {
3343
+ /** Link details. */
3344
+ link?: Link;
3345
+ }
3346
+ interface MentionData {
3347
+ /** The mentioned user's name. */
3348
+ name?: string;
3349
+ /** The version of the user's name that appears after the `@` character in the mention. */
3350
+ slug?: string;
3351
+ /** Mentioned user's ID. */
3352
+ id?: string | null;
3353
+ }
3354
+ interface FontSizeData {
3355
+ /** The units used for the font size. */
3356
+ unit?: FontTypeWithLiterals;
3357
+ /** Font size value. */
3358
+ value?: number | null;
3359
+ }
3360
+ declare enum FontType {
3361
+ PX = "PX",
3362
+ EM = "EM"
3363
+ }
3364
+ /** @enumType */
3365
+ type FontTypeWithLiterals = FontType | 'PX' | 'EM';
3366
+ interface SpoilerData {
3367
+ /** Spoiler ID. */
3368
+ id?: string | null;
3369
+ }
3370
+ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
3371
+ /** Data for embedded Wix Bookings content. */
3372
+ bookingData?: BookingData;
3373
+ /** Data for embedded Wix Events content. */
3374
+ eventData?: EventData;
3375
+ /** The type of Wix App content being embedded. */
3376
+ type?: AppTypeWithLiterals;
3377
+ /** The ID of the embedded content. */
3378
+ itemId?: string | null;
3379
+ /** The name of the embedded content. */
3380
+ name?: string | null;
3381
+ /**
3382
+ * Deprecated: Use `image` instead.
3383
+ * @deprecated
3384
+ */
3385
+ imageSrc?: string | null;
3386
+ /** The URL for the embedded content. */
3387
+ url?: string | null;
3388
+ /** An image for the embedded content. */
3389
+ image?: Media;
3390
+ /** Whether to hide the image. */
3391
+ hideImage?: boolean | null;
3392
+ /** Whether to hide the title. */
3393
+ hideTitle?: boolean | null;
3394
+ /** Whether to hide the price. */
3395
+ hidePrice?: boolean | null;
3396
+ /** Whether to hide the description (Event and Booking). */
3397
+ hideDescription?: boolean | null;
3398
+ /** Whether to hide the date and time (Event). */
3399
+ hideDateTime?: boolean | null;
3400
+ /** Whether to hide the location (Event). */
3401
+ hideLocation?: boolean | null;
3402
+ /** Whether to hide the duration (Booking). */
3403
+ hideDuration?: boolean | null;
3404
+ /** Whether to hide the button. */
3405
+ hideButton?: boolean | null;
3406
+ /** Whether to hide the ribbon. */
3407
+ hideRibbon?: boolean | null;
3408
+ /** Button styling options. */
3409
+ buttonStyles?: ButtonStyles;
3410
+ /** Image styling options. */
3411
+ imageStyles?: ImageStyles;
3412
+ /** Ribbon styling options. */
3413
+ ribbonStyles?: RibbonStyles;
3414
+ /** Card styling options. */
3415
+ cardStyles?: CardStyles;
3416
+ /** Styling for the app embed's container. */
3417
+ containerData?: PluginContainerData;
3418
+ /** Pricing data for embedded Wix App content. */
3419
+ pricingData?: PricingData;
3420
+ }
3421
+ /** @oneof */
3422
+ interface AppEmbedDataAppDataOneOf {
3423
+ /** Data for embedded Wix Bookings content. */
3424
+ bookingData?: BookingData;
3425
+ /** Data for embedded Wix Events content. */
3426
+ eventData?: EventData;
3427
+ }
3428
+ declare enum Position {
3429
+ /** Image positioned at the start (left in LTR layouts, right in RTL layouts) */
3430
+ START = "START",
3431
+ /** Image positioned at the end (right in LTR layouts, left in RTL layouts) */
3432
+ END = "END",
3433
+ /** Image positioned at the top */
3434
+ TOP = "TOP"
3435
+ }
3436
+ /** @enumType */
3437
+ type PositionWithLiterals = Position | 'START' | 'END' | 'TOP';
3438
+ declare enum AspectRatio {
3439
+ /** 1:1 aspect ratio */
3440
+ SQUARE = "SQUARE",
3441
+ /** 16:9 aspect ratio */
3442
+ RECTANGLE = "RECTANGLE"
3443
+ }
3444
+ /** @enumType */
3445
+ type AspectRatioWithLiterals = AspectRatio | 'SQUARE' | 'RECTANGLE';
3446
+ declare enum Resizing {
3447
+ /** Fill the container, may crop the image */
3448
+ FILL = "FILL",
3449
+ /** Fit the image within the container */
3450
+ FIT = "FIT"
3451
+ }
3452
+ /** @enumType */
3453
+ type ResizingWithLiterals = Resizing | 'FILL' | 'FIT';
3454
+ declare enum Placement {
3455
+ /** Ribbon placed on the image */
3456
+ IMAGE = "IMAGE",
3457
+ /** Ribbon placed on the product information */
3458
+ PRODUCT_INFO = "PRODUCT_INFO"
3459
+ }
3460
+ /** @enumType */
3461
+ type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
3462
+ declare enum CardStylesType {
3463
+ /** Card with visible border and background */
3464
+ CONTAINED = "CONTAINED",
3465
+ /** Card without visible border */
3466
+ FRAMELESS = "FRAMELESS"
3467
+ }
3468
+ /** @enumType */
3469
+ type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
3470
+ declare enum Alignment {
3471
+ /** Content aligned to start (left in LTR layouts, right in RTL layouts) */
3472
+ START = "START",
3473
+ /** Content centered */
3474
+ CENTER = "CENTER",
3475
+ /** Content aligned to end (right in LTR layouts, left in RTL layouts) */
3476
+ END = "END"
3477
+ }
3478
+ /** @enumType */
3479
+ type AlignmentWithLiterals = Alignment | 'START' | 'CENTER' | 'END';
3480
+ declare enum Layout {
3481
+ /** Elements stacked vertically */
3482
+ STACKED = "STACKED",
3483
+ /** Elements arranged horizontally */
3484
+ SIDE_BY_SIDE = "SIDE_BY_SIDE"
3485
+ }
3486
+ /** @enumType */
3487
+ type LayoutWithLiterals = Layout | 'STACKED' | 'SIDE_BY_SIDE';
3488
+ declare enum AppType {
3489
+ PRODUCT = "PRODUCT",
3490
+ EVENT = "EVENT",
3491
+ BOOKING = "BOOKING"
3492
+ }
3493
+ /** @enumType */
3494
+ type AppTypeWithLiterals = AppType | 'PRODUCT' | 'EVENT' | 'BOOKING';
3495
+ interface BookingData {
3496
+ /** Booking duration in minutes. */
3497
+ durations?: string | null;
3498
+ }
3499
+ interface EventData {
3500
+ /** Event schedule. */
3501
+ scheduling?: string | null;
3502
+ /** Event location. */
3503
+ location?: string | null;
3504
+ }
3505
+ interface ButtonStyles {
3506
+ /** Text to display on the button. */
3507
+ buttonText?: string | null;
3508
+ /** Border width in pixels. */
3509
+ borderWidth?: number | null;
3510
+ /** Border radius in pixels. */
3511
+ borderRadius?: number | null;
3512
+ /**
3513
+ * Border color as a hexadecimal value.
3514
+ * @format COLOR_HEX
3515
+ */
3516
+ borderColor?: string | null;
3517
+ /**
3518
+ * Text color as a hexadecimal value.
3519
+ * @format COLOR_HEX
3520
+ */
3521
+ textColor?: string | null;
3522
+ /**
3523
+ * Background color as a hexadecimal value.
3524
+ * @format COLOR_HEX
3525
+ */
3526
+ backgroundColor?: string | null;
3527
+ /**
3528
+ * Border color as a hexadecimal value (hover state).
3529
+ * @format COLOR_HEX
3530
+ */
3531
+ borderColorHover?: string | null;
3532
+ /**
3533
+ * Text color as a hexadecimal value (hover state).
3534
+ * @format COLOR_HEX
3535
+ */
3536
+ textColorHover?: string | null;
3537
+ /**
3538
+ * Background color as a hexadecimal value (hover state).
3539
+ * @format COLOR_HEX
3540
+ */
3541
+ backgroundColorHover?: string | null;
3542
+ /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
3543
+ buttonSize?: string | null;
3544
+ }
3545
+ interface ImageStyles {
3546
+ /** Whether to hide the image. */
3547
+ hideImage?: boolean | null;
3548
+ /** Position of image. Defaults to `START`. */
3549
+ imagePosition?: PositionWithLiterals;
3550
+ /** Aspect ratio for the image. Defaults to `SQUARE`. */
3551
+ aspectRatio?: AspectRatioWithLiterals;
3552
+ /** How the image should be resized. Defaults to `FILL`. */
3553
+ resizing?: ResizingWithLiterals;
3554
+ /**
3555
+ * Image border color as a hexadecimal value.
3556
+ * @format COLOR_HEX
3557
+ */
3558
+ borderColor?: string | null;
3559
+ /** Image border width in pixels. */
3560
+ borderWidth?: number | null;
3561
+ /** Image border radius in pixels. */
3562
+ borderRadius?: number | null;
3563
+ }
3564
+ interface RibbonStyles {
3565
+ /** Text to display on the ribbon. */
3566
+ ribbonText?: string | null;
3567
+ /**
3568
+ * Ribbon background color as a hexadecimal value.
3569
+ * @format COLOR_HEX
3570
+ */
3571
+ backgroundColor?: string | null;
3572
+ /**
3573
+ * Ribbon text color as a hexadecimal value.
3574
+ * @format COLOR_HEX
3575
+ */
3576
+ textColor?: string | null;
3577
+ /**
3578
+ * Ribbon border color as a hexadecimal value.
3579
+ * @format COLOR_HEX
3580
+ */
3581
+ borderColor?: string | null;
3582
+ /** Ribbon border width in pixels. */
3583
+ borderWidth?: number | null;
3584
+ /** Ribbon border radius in pixels. */
3585
+ borderRadius?: number | null;
3586
+ /** Placement of the ribbon. Defaults to `IMAGE`. */
3587
+ ribbonPlacement?: PlacementWithLiterals;
3588
+ }
3589
+ interface CardStyles {
3590
+ /**
3591
+ * Card background color as a hexadecimal value.
3592
+ * @format COLOR_HEX
3593
+ */
3594
+ backgroundColor?: string | null;
3595
+ /**
3596
+ * Card border color as a hexadecimal value.
3597
+ * @format COLOR_HEX
3598
+ */
3599
+ borderColor?: string | null;
3600
+ /** Card border width in pixels. */
3601
+ borderWidth?: number | null;
3602
+ /** Card border radius in pixels. */
3603
+ borderRadius?: number | null;
3604
+ /** Card type. Defaults to `CONTAINED`. */
3605
+ type?: CardStylesTypeWithLiterals;
3606
+ /** Content alignment. Defaults to `START`. */
3607
+ alignment?: AlignmentWithLiterals;
3608
+ /** Layout for title and price. Defaults to `STACKED`. */
3609
+ titlePriceLayout?: LayoutWithLiterals;
3610
+ /**
3611
+ * Title text color as a hexadecimal value.
3612
+ * @format COLOR_HEX
3613
+ */
3614
+ titleColor?: string | null;
3615
+ /**
3616
+ * Text color as a hexadecimal value.
3617
+ * @format COLOR_HEX
3618
+ */
3619
+ textColor?: string | null;
3620
+ }
3621
+ interface PricingData {
3622
+ /**
3623
+ * Minimum numeric price value as string (e.g., "10.99").
3624
+ * @decimalValue options { maxScale:2 }
3625
+ */
3626
+ valueFrom?: string | null;
3627
+ /**
3628
+ * Maximum numeric price value as string (e.g., "19.99").
3629
+ * @decimalValue options { maxScale:2 }
3630
+ */
3631
+ valueTo?: string | null;
3632
+ /**
3633
+ * Numeric price value as string after discount application (e.g., "15.99").
3634
+ * @decimalValue options { maxScale:2 }
3635
+ */
3636
+ discountedValue?: string | null;
3637
+ /**
3638
+ * Currency of the value in ISO 4217 format (e.g., "USD", "EUR").
3639
+ * @format CURRENCY
3640
+ */
3641
+ currency?: string | null;
3642
+ /**
3643
+ * Pricing plan ID.
3644
+ * @format GUID
3645
+ */
3646
+ pricingPlanId?: string | null;
3647
+ }
3648
+ interface VideoData {
3649
+ /** Styling for the video's container. */
3650
+ containerData?: PluginContainerData;
3651
+ /** Video details. */
3652
+ video?: Media;
3653
+ /** Video thumbnail details. */
3654
+ thumbnail?: Media;
3655
+ /** Sets whether the video's download button is disabled. Defaults to `false`. */
3656
+ disableDownload?: boolean | null;
3657
+ /** Video title. */
3658
+ title?: string | null;
3659
+ /** Video options. */
3660
+ options?: PlaybackOptions;
3661
+ }
3662
+ interface PlaybackOptions {
3663
+ /** Sets whether the media will automatically start playing. */
3664
+ autoPlay?: boolean | null;
3665
+ /** Sets whether media's will be looped. */
3666
+ playInLoop?: boolean | null;
3667
+ /** Sets whether media's controls will be shown. */
3668
+ showControls?: boolean | null;
3669
+ }
3670
+ interface EmbedData {
3671
+ /** Styling for the oEmbed node's container. */
3672
+ containerData?: PluginContainerData;
3673
+ /** An [oEmbed](https://www.oembed.com) object. */
3674
+ oembed?: Oembed;
3675
+ /** Origin asset source. */
3676
+ src?: string | null;
3677
+ }
3678
+ interface Oembed {
3679
+ /** The resource type. */
3680
+ type?: string | null;
3681
+ /** The width of the resource specified in the `url` property in pixels. */
3682
+ width?: number | null;
3683
+ /** The height of the resource specified in the `url` property in pixels. */
3684
+ height?: number | null;
3685
+ /** Resource title. */
3686
+ title?: string | null;
3687
+ /** The source URL for the resource. */
3688
+ url?: string | null;
3689
+ /** HTML for embedding a video player. The HTML should have no padding or margins. */
3690
+ html?: string | null;
3691
+ /** The name of the author or owner of the resource. */
3692
+ authorName?: string | null;
3693
+ /** The URL for the author or owner of the resource. */
3694
+ authorUrl?: string | null;
3695
+ /** The name of the resource provider. */
3696
+ providerName?: string | null;
3697
+ /** The URL for the resource provider. */
3698
+ providerUrl?: string | null;
3699
+ /** The URL for a thumbnail image for the resource. If this property is defined, `thumbnailWidth` and `thumbnailHeight` must also be defined. */
3700
+ thumbnailUrl?: string | null;
3701
+ /** The width of the resource's thumbnail image. If this property is defined, `thumbnailUrl` and `thumbnailHeight` must also be defined. */
3702
+ thumbnailWidth?: string | null;
3703
+ /** The height of the resource's thumbnail image. If this property is defined, `thumbnailUrl` and `thumbnailWidth`must also be defined. */
3704
+ thumbnailHeight?: string | null;
3705
+ /** The URL for an embedded viedo. */
3706
+ videoUrl?: string | null;
3707
+ /** The oEmbed version number. This value must be `1.0`. */
3708
+ version?: string | null;
3709
+ }
3710
+ interface CollapsibleListData {
3711
+ /** Styling for the collapsible list's container. */
3712
+ containerData?: PluginContainerData;
3713
+ /** If `true`, only one item can be expanded at a time. Defaults to `false`. */
3714
+ expandOnlyOne?: boolean | null;
3715
+ /** Sets which items are expanded when the page loads. */
3716
+ initialExpandedItems?: InitialExpandedItemsWithLiterals;
3717
+ /** The direction of the text in the list. Either left-to-right or right-to-left. */
3718
+ direction?: DirectionWithLiterals;
3719
+ /** If `true`, The collapsible item will appear in search results as an FAQ. */
3720
+ isQapageData?: boolean | null;
3721
+ }
3722
+ declare enum InitialExpandedItems {
3723
+ /** First item will be expended initally */
3724
+ FIRST = "FIRST",
3725
+ /** All items will expended initally */
3726
+ ALL = "ALL",
3727
+ /** All items collapsed initally */
3728
+ NONE = "NONE"
3729
+ }
3730
+ /** @enumType */
3731
+ type InitialExpandedItemsWithLiterals = InitialExpandedItems | 'FIRST' | 'ALL' | 'NONE';
3732
+ declare enum Direction {
3733
+ /** Left-to-right */
3734
+ LTR = "LTR",
3735
+ /** Right-to-left */
3736
+ RTL = "RTL"
3737
+ }
3738
+ /** @enumType */
3739
+ type DirectionWithLiterals = Direction | 'LTR' | 'RTL';
3740
+ interface TableData {
3741
+ /** Styling for the table's container. */
3742
+ containerData?: PluginContainerData;
3743
+ /** The table's dimensions. */
3744
+ dimensions?: Dimensions;
3745
+ /**
3746
+ * Deprecated: Use `rowHeader` and `columnHeader` instead.
3747
+ * @deprecated
3748
+ */
3749
+ header?: boolean | null;
3750
+ /** Sets whether the table's first row is a header. Defaults to `false`. */
3751
+ rowHeader?: boolean | null;
3752
+ /** Sets whether the table's first column is a header. Defaults to `false`. */
3753
+ columnHeader?: boolean | null;
3754
+ }
3755
+ interface Dimensions {
3756
+ /** An array representing relative width of each column in relation to the other columns. */
3757
+ colsWidthRatio?: number[];
3758
+ /** An array representing the height of each row in pixels. */
3759
+ rowsHeight?: number[];
3760
+ /** An array representing the minimum width of each column in pixels. */
3761
+ colsMinWidth?: number[];
3762
+ }
3763
+ interface TableCellData {
3764
+ /** Styling for the cell's background color and text alignment. */
3765
+ cellStyle?: CellStyle;
3766
+ /** The cell's border colors. */
3767
+ borderColors?: BorderColors;
3768
+ }
3769
+ declare enum VerticalAlignment {
3770
+ /** Top alignment */
3771
+ TOP = "TOP",
3772
+ /** Middle alignment */
3773
+ MIDDLE = "MIDDLE",
3774
+ /** Bottom alignment */
3775
+ BOTTOM = "BOTTOM"
3776
+ }
3777
+ /** @enumType */
3778
+ type VerticalAlignmentWithLiterals = VerticalAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
3779
+ interface CellStyle {
3780
+ /** Vertical alignment for the cell's text. */
3781
+ verticalAlignment?: VerticalAlignmentWithLiterals;
3782
+ /**
3783
+ * Cell background color as a hexadecimal value.
3784
+ * @format COLOR_HEX
3785
+ */
3786
+ backgroundColor?: string | null;
3787
+ }
3788
+ interface BorderColors {
3789
+ /**
3790
+ * Left border color as a hexadecimal value.
3791
+ * @format COLOR_HEX
3792
+ */
3793
+ left?: string | null;
3794
+ /**
3795
+ * Right border color as a hexadecimal value.
3796
+ * @format COLOR_HEX
3797
+ */
3798
+ right?: string | null;
3799
+ /**
3800
+ * Top border color as a hexadecimal value.
3801
+ * @format COLOR_HEX
3802
+ */
3803
+ top?: string | null;
3804
+ /**
3805
+ * Bottom border color as a hexadecimal value.
3806
+ * @format COLOR_HEX
3807
+ */
3808
+ bottom?: string | null;
3809
+ }
3810
+ /**
3811
+ * `NullValue` is a singleton enumeration to represent the null value for the
3812
+ * `Value` type union.
3813
+ *
3814
+ * The JSON representation for `NullValue` is JSON `null`.
3815
+ */
3816
+ declare enum NullValue {
3817
+ /** Null value. */
3818
+ NULL_VALUE = "NULL_VALUE"
3819
+ }
3820
+ /** @enumType */
3821
+ type NullValueWithLiterals = NullValue | 'NULL_VALUE';
3822
+ /**
3823
+ * `ListValue` is a wrapper around a repeated field of values.
3824
+ *
3825
+ * The JSON representation for `ListValue` is JSON array.
3826
+ */
3827
+ interface ListValue {
3828
+ /** Repeated field of dynamically typed values. */
3829
+ values?: any[];
3830
+ }
3831
+ interface AudioData {
3832
+ /** Styling for the audio node's container. */
3833
+ containerData?: PluginContainerData;
3834
+ /** Audio file details. */
3835
+ audio?: Media;
3836
+ /** Sets whether the audio node's download button is disabled. Defaults to `false`. */
3837
+ disableDownload?: boolean | null;
3838
+ /** Cover image. */
3839
+ coverImage?: Media;
3840
+ /** Track name. */
3841
+ name?: string | null;
3842
+ /** Author name. */
3843
+ authorName?: string | null;
3844
+ /** An HTML version of the audio node. */
3845
+ html?: string | null;
3846
+ }
3847
+ interface OrderedListData {
3848
+ /** Indentation level from 0-4. */
3849
+ indentation?: number;
3850
+ /** Offset level from 0-4. */
3851
+ offset?: number | null;
3852
+ /** List start number. */
3853
+ start?: number | null;
3854
+ }
3855
+ interface BulletedListData {
3856
+ /** Indentation level from 0-4. */
3857
+ indentation?: number;
3858
+ /** Offset level from 0-4. */
3859
+ offset?: number | null;
3860
+ }
3861
+ interface BlockquoteData {
3862
+ /** Indentation level from 1-4. */
3863
+ indentation?: number;
3864
+ }
3865
+ interface CaptionData {
3866
+ textStyle?: TextStyle;
3867
+ }
3868
+ interface LayoutCellData {
3869
+ /** Size of the cell in 12 columns grid. */
3870
+ colSpan?: number | null;
3871
+ }
3872
+ interface Metadata {
3873
+ /** Schema version. */
3874
+ version?: number;
3875
+ /**
3876
+ * When the object was created.
3877
+ * @readonly
3878
+ * @deprecated
3879
+ */
3880
+ createdTimestamp?: Date | null;
3881
+ /**
3882
+ * When the object was most recently updated.
3883
+ * @deprecated
3884
+ */
3885
+ updatedTimestamp?: Date | null;
3886
+ /** Object ID. */
3887
+ id?: string | null;
3888
+ }
3889
+ interface DocumentStyle {
3890
+ /** Styling for H1 nodes. */
3891
+ headerOne?: TextNodeStyle;
3892
+ /** Styling for H2 nodes. */
3893
+ headerTwo?: TextNodeStyle;
3894
+ /** Styling for H3 nodes. */
3895
+ headerThree?: TextNodeStyle;
3896
+ /** Styling for H4 nodes. */
3897
+ headerFour?: TextNodeStyle;
3898
+ /** Styling for H5 nodes. */
3899
+ headerFive?: TextNodeStyle;
3900
+ /** Styling for H6 nodes. */
3901
+ headerSix?: TextNodeStyle;
3902
+ /** Styling for paragraph nodes. */
3903
+ paragraph?: TextNodeStyle;
3904
+ /** Styling for block quote nodes. */
3905
+ blockquote?: TextNodeStyle;
3906
+ /** Styling for code block nodes. */
3907
+ codeBlock?: TextNodeStyle;
3908
+ }
3909
+ interface TextNodeStyle {
3910
+ /** The decorations to apply to the node. */
3911
+ decorations?: Decoration[];
3912
+ /** Padding and background color for the node. */
3913
+ nodeStyle?: NodeStyle;
3914
+ /** Line height for text in the node. */
3915
+ lineHeight?: string | null;
3916
+ }
3917
+ interface Badge {
3918
+ /** Badge type. */
3919
+ type?: TypeWithLiterals;
3920
+ /**
3921
+ * Badge text.
3922
+ * @maxLength 50
3923
+ */
3924
+ text?: string | null;
3925
+ }
3926
+ declare enum Type {
3927
+ /** Unknown badge type. */
3928
+ UNKNOWN_BADGE_TYPE = "UNKNOWN_BADGE_TYPE",
3929
+ /** 1st priority badge type. */
3930
+ FIRST_PRIORITY = "FIRST_PRIORITY",
3931
+ /** 2nd priority badge type. */
3932
+ SECOND_PRIORITY = "SECOND_PRIORITY",
3933
+ /** 3rd priority badge type. */
3934
+ THIRD_PRIORITY = "THIRD_PRIORITY"
3935
+ }
3936
+ /** @enumType */
3937
+ type TypeWithLiterals = Type | 'UNKNOWN_BADGE_TYPE' | 'FIRST_PRIORITY' | 'SECOND_PRIORITY' | 'THIRD_PRIORITY';
3938
+ interface EventUpdated {
3939
+ /** Event update timestamp in ISO UTC format. */
3940
+ timestamp?: Date | null;
3941
+ /**
3942
+ * Event ID.
3943
+ * @format GUID
3944
+ */
3945
+ eventId?: string;
3946
+ /** Event location. */
3947
+ location?: EventsLocation;
3948
+ /** Event schedule configuration. */
3949
+ scheduleConfig?: ScheduleConfig;
3950
+ /** Event title. */
3951
+ title?: string;
3952
+ /**
3953
+ * Whether schedule configuration was updated.
3954
+ * @deprecated
3955
+ */
3956
+ scheduleConfigUpdated?: boolean;
3957
+ /** Updated event */
3958
+ event?: Event;
3959
+ }
3960
+ interface SeatingPlanCategoriesSummaryUpdated {
3961
+ /**
3962
+ * Seating plan id
3963
+ * @format GUID
3964
+ */
3965
+ seatingPlanId?: string;
3966
+ /** External seating plan id */
3967
+ externalSeatingPlanId?: string | null;
3968
+ /**
3969
+ * Ticket counts by category
3970
+ * @maxSize 100
3971
+ */
3972
+ categories?: CategoryDetails[];
3973
+ /**
3974
+ * Summary revision.
3975
+ * @readonly
3976
+ */
3977
+ revision?: string | null;
3978
+ }
3979
+ interface CategoryDetails {
3980
+ /**
3981
+ * Seating plan id
3982
+ * @format GUID
3983
+ * @readonly
3984
+ */
3985
+ seatingPlanId?: string | null;
3986
+ /**
3987
+ * External seating plan id
3988
+ * @minLength 1
3989
+ * @maxLength 100
3990
+ * @readonly
3991
+ */
3992
+ externalSeatingPlanId?: string | null;
3993
+ /**
3994
+ * External category id
3995
+ * @minLength 1
3996
+ * @maxLength 100
3997
+ * @readonly
3998
+ */
3999
+ externalCategoryId?: string | null;
4000
+ /**
4001
+ * Total capacity in the category
4002
+ * @readonly
4003
+ */
4004
+ totalCapacity?: number | null;
4005
+ /**
4006
+ * Already reserved capacity
4007
+ * @readonly
4008
+ */
4009
+ reserved?: number | null;
4010
+ }
4011
+ interface DomainEvent extends DomainEventBodyOneOf {
4012
+ createdEvent?: EntityCreatedEvent;
4013
+ updatedEvent?: EntityUpdatedEvent;
4014
+ deletedEvent?: EntityDeletedEvent;
4015
+ actionEvent?: ActionEvent;
4016
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
4017
+ id?: string;
4018
+ /**
4019
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
4020
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
4021
+ */
4022
+ entityFqdn?: string;
4023
+ /**
4024
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
4025
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
4026
+ */
4027
+ slug?: string;
4028
+ /** ID of the entity associated with the event. */
4029
+ entityId?: string;
4030
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
4031
+ eventTime?: Date | null;
4032
+ /**
4033
+ * Whether the event was triggered as a result of a privacy regulation application
4034
+ * (for example, GDPR).
4035
+ */
4036
+ triggeredByAnonymizeRequest?: boolean | null;
4037
+ /** If present, indicates the action that triggered the event. */
4038
+ originatedFrom?: string | null;
4039
+ /**
4040
+ * 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.
4041
+ * 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.
4042
+ */
4043
+ entityEventSequence?: string | null;
4044
+ }
4045
+ /** @oneof */
4046
+ interface DomainEventBodyOneOf {
4047
+ createdEvent?: EntityCreatedEvent;
4048
+ updatedEvent?: EntityUpdatedEvent;
4049
+ deletedEvent?: EntityDeletedEvent;
4050
+ actionEvent?: ActionEvent;
4051
+ }
4052
+ interface EntityCreatedEvent {
4053
+ entityAsJson?: string;
4054
+ /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
4055
+ restoreInfo?: RestoreInfo;
4056
+ }
4057
+ interface RestoreInfo {
4058
+ deletedDate?: Date | null;
4059
+ }
4060
+ interface EntityUpdatedEvent {
4061
+ /**
4062
+ * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
4063
+ * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
4064
+ * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
4065
+ */
4066
+ currentEntityAsJson?: string;
4067
+ }
4068
+ interface EntityDeletedEvent {
4069
+ /** Entity that was deleted. */
4070
+ deletedEntityAsJson?: string | null;
4071
+ }
4072
+ interface ActionEvent {
4073
+ bodyAsJson?: string;
4074
+ }
4075
+ interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
4076
+ /** Emitted on a meta site creation. */
4077
+ siteCreated?: SiteCreated;
4078
+ /** Emitted on a meta site transfer completion. */
4079
+ siteTransferred?: SiteTransferred;
4080
+ /** Emitted on a meta site deletion. */
4081
+ siteDeleted?: SiteDeleted;
4082
+ /** Emitted on a meta site restoration. */
4083
+ siteUndeleted?: SiteUndeleted;
4084
+ /** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
4085
+ sitePublished?: SitePublished;
4086
+ /** Emitted on a meta site unpublish. */
4087
+ siteUnpublished?: SiteUnpublished;
4088
+ /** Emitted when meta site is marked as template. */
4089
+ siteMarkedAsTemplate?: SiteMarkedAsTemplate;
4090
+ /** Emitted when meta site is marked as a WixSite. */
4091
+ siteMarkedAsWixSite?: SiteMarkedAsWixSite;
4092
+ /** Emitted when an application is provisioned (installed). */
4093
+ serviceProvisioned?: ServiceProvisioned;
4094
+ /** Emitted when an application is removed (uninstalled). */
4095
+ serviceRemoved?: ServiceRemoved;
4096
+ /** Emitted when meta site name (URL slug) is changed. */
4097
+ siteRenamedPayload?: SiteRenamed;
4098
+ /** Emitted when meta site was permanently deleted. */
4099
+ hardDeleted?: SiteHardDeleted;
4100
+ /** Emitted on a namespace change. */
4101
+ namespaceChanged?: NamespaceChanged;
4102
+ /** Emitted when Studio is attached. */
4103
+ studioAssigned?: StudioAssigned;
4104
+ /** Emitted when Studio is detached. */
4105
+ studioUnassigned?: StudioUnassigned;
4106
+ /**
4107
+ * Emitted when one of the URLs is changed. After this event you may call `urls-server` to fetch
4108
+ * the actual URL.
4109
+ *
4110
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1732520791210559?thread_ts=1732027914.294059&cid=C0UHEBPFT
4111
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1744115197619459
4112
+ */
4113
+ urlChanged?: SiteUrlChanged;
4114
+ /** Site is marked as PurgedExternally */
4115
+ sitePurgedExternally?: SitePurgedExternally;
4116
+ /** Emitted when Odeditor is attached. */
4117
+ odeditorAssigned?: OdeditorAssigned;
4118
+ /** Emitted when Odeditor is detached. */
4119
+ odeditorUnassigned?: OdeditorUnassigned;
4120
+ /** Emitted when Picasso is attached. */
4121
+ picassoAssigned?: PicassoAssigned;
4122
+ /** Emitted when Picasso is detached. */
4123
+ picassoUnassigned?: PicassoUnassigned;
4124
+ /**
4125
+ * A meta site id.
4126
+ * @format GUID
4127
+ */
4128
+ metaSiteId?: string;
4129
+ /** A meta site version. Monotonically increasing. */
4130
+ version?: string;
4131
+ /** A timestamp of the event. */
4132
+ timestamp?: string;
4133
+ /**
4134
+ * TODO(meta-site): Change validation once validations are disabled for consumers
4135
+ * More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
4136
+ * @maxSize 4000
4137
+ */
4138
+ assets?: Asset[];
4139
+ }
4140
+ /** @oneof */
4141
+ interface MetaSiteSpecialEventPayloadOneOf {
4142
+ /** Emitted on a meta site creation. */
4143
+ siteCreated?: SiteCreated;
4144
+ /** Emitted on a meta site transfer completion. */
4145
+ siteTransferred?: SiteTransferred;
4146
+ /** Emitted on a meta site deletion. */
4147
+ siteDeleted?: SiteDeleted;
4148
+ /** Emitted on a meta site restoration. */
4149
+ siteUndeleted?: SiteUndeleted;
4150
+ /** Emitted on the first* publish of the meta site (* switching from unpublished to published state). */
4151
+ sitePublished?: SitePublished;
4152
+ /** Emitted on a meta site unpublish. */
4153
+ siteUnpublished?: SiteUnpublished;
4154
+ /** Emitted when meta site is marked as template. */
4155
+ siteMarkedAsTemplate?: SiteMarkedAsTemplate;
4156
+ /** Emitted when meta site is marked as a WixSite. */
4157
+ siteMarkedAsWixSite?: SiteMarkedAsWixSite;
4158
+ /** Emitted when an application is provisioned (installed). */
4159
+ serviceProvisioned?: ServiceProvisioned;
4160
+ /** Emitted when an application is removed (uninstalled). */
4161
+ serviceRemoved?: ServiceRemoved;
4162
+ /** Emitted when meta site name (URL slug) is changed. */
4163
+ siteRenamedPayload?: SiteRenamed;
4164
+ /** Emitted when meta site was permanently deleted. */
4165
+ hardDeleted?: SiteHardDeleted;
4166
+ /** Emitted on a namespace change. */
4167
+ namespaceChanged?: NamespaceChanged;
4168
+ /** Emitted when Studio is attached. */
4169
+ studioAssigned?: StudioAssigned;
4170
+ /** Emitted when Studio is detached. */
4171
+ studioUnassigned?: StudioUnassigned;
4172
+ /**
4173
+ * Emitted when one of the URLs is changed. After this event you may call `urls-server` to fetch
4174
+ * the actual URL.
4175
+ *
4176
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1732520791210559?thread_ts=1732027914.294059&cid=C0UHEBPFT
4177
+ * See: https://wix.slack.com/archives/C0UHEBPFT/p1744115197619459
4178
+ */
4179
+ urlChanged?: SiteUrlChanged;
4180
+ /** Site is marked as PurgedExternally */
4181
+ sitePurgedExternally?: SitePurgedExternally;
4182
+ /** Emitted when Odeditor is attached. */
4183
+ odeditorAssigned?: OdeditorAssigned;
4184
+ /** Emitted when Odeditor is detached. */
4185
+ odeditorUnassigned?: OdeditorUnassigned;
4186
+ /** Emitted when Picasso is attached. */
4187
+ picassoAssigned?: PicassoAssigned;
4188
+ /** Emitted when Picasso is detached. */
4189
+ picassoUnassigned?: PicassoUnassigned;
4190
+ }
4191
+ interface Asset {
4192
+ /**
4193
+ * An application definition id (app_id in dev-center). For legacy reasons may be UUID or a string (from Java Enum).
4194
+ * @maxLength 36
4195
+ */
4196
+ appDefId?: string;
4197
+ /**
4198
+ * An instance id. For legacy reasons may be UUID or a string.
4199
+ * @maxLength 200
4200
+ */
4201
+ instanceId?: string;
4202
+ /** An application state. */
4203
+ state?: StateWithLiterals;
4204
+ }
4205
+ declare enum State {
4206
+ UNKNOWN = "UNKNOWN",
4207
+ ENABLED = "ENABLED",
4208
+ DISABLED = "DISABLED",
4209
+ PENDING = "PENDING",
4210
+ DEMO = "DEMO"
4211
+ }
4212
+ /** @enumType */
4213
+ type StateWithLiterals = State | 'UNKNOWN' | 'ENABLED' | 'DISABLED' | 'PENDING' | 'DEMO';
4214
+ interface SiteCreated {
4215
+ /**
4216
+ * A template identifier (empty if not created from a template).
4217
+ * @maxLength 36
4218
+ */
4219
+ originTemplateId?: string;
4220
+ /**
4221
+ * An account id of the owner.
4222
+ * @format GUID
4223
+ */
4224
+ ownerId?: string;
4225
+ /** A context in which meta site was created. */
4226
+ context?: SiteCreatedContextWithLiterals;
4227
+ /**
4228
+ * A meta site id from which this site was created.
4229
+ *
4230
+ * In case of a creation from a template it's a template id.
4231
+ * In case of a site duplication ("Save As" in dashboard or duplicate in UM) it's an id of a source site.
4232
+ * @format GUID
4233
+ */
4234
+ originMetaSiteId?: string | null;
4235
+ /**
4236
+ * A meta site name (URL slug).
4237
+ * @maxLength 20
4238
+ */
4239
+ siteName?: string;
4240
+ /** A namespace. */
4241
+ namespace?: NamespaceWithLiterals;
4242
+ }
4243
+ declare enum SiteCreatedContext {
4244
+ /** A valid option, we don't expose all reasons why site might be created. */
4245
+ OTHER = "OTHER",
4246
+ /** A meta site was created from template. */
4247
+ FROM_TEMPLATE = "FROM_TEMPLATE",
4248
+ /** A meta site was created by copying of the transfferred meta site. */
4249
+ DUPLICATE_BY_SITE_TRANSFER = "DUPLICATE_BY_SITE_TRANSFER",
4250
+ /** A copy of existing meta site. */
4251
+ DUPLICATE = "DUPLICATE",
4252
+ /** A meta site was created as a transfferred site (copy of the original), old flow, should die soon. */
4253
+ OLD_SITE_TRANSFER = "OLD_SITE_TRANSFER",
4254
+ /** deprecated A meta site was created for Flash editor. */
4255
+ FLASH = "FLASH"
4256
+ }
4257
+ /** @enumType */
4258
+ type SiteCreatedContextWithLiterals = SiteCreatedContext | 'OTHER' | 'FROM_TEMPLATE' | 'DUPLICATE_BY_SITE_TRANSFER' | 'DUPLICATE' | 'OLD_SITE_TRANSFER' | 'FLASH';
4259
+ declare enum Namespace {
4260
+ UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
4261
+ /** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
4262
+ WIX = "WIX",
4263
+ /** ShoutOut stand alone product. These are siteless (no actual Wix site, no HtmlWeb). MetaSites with this namespace will *not* be shown in a user's site list by default. */
4264
+ SHOUT_OUT = "SHOUT_OUT",
4265
+ /** MetaSites created by the Albums product, they appear as part of the Albums app. MetaSites with this namespace will *not* be shown in a user's site list by default. */
4266
+ ALBUMS = "ALBUMS",
4267
+ /** Part of the WixStores migration flow, a user tries to migrate and gets this site to view and if the user likes it then stores removes this namespace and deletes the old site with the old stores. MetaSites with this namespace will *not* be shown in a user's site list by default. */
4268
+ WIX_STORES_TEST_DRIVE = "WIX_STORES_TEST_DRIVE",
4269
+ /** Hotels standalone (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
4270
+ HOTELS = "HOTELS",
4271
+ /** Clubs siteless MetaSites, a club without a wix website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
4272
+ CLUBS = "CLUBS",
4273
+ /** A partially created ADI website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
4274
+ ONBOARDING_DRAFT = "ONBOARDING_DRAFT",
4275
+ /** AppBuilder for AppStudio / shmite (c). MetaSites with this namespace will *not* be shown in a user's site list by default. */
4276
+ DEV_SITE = "DEV_SITE",
4277
+ /** LogoMaker websites offered to the user after logo purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
4278
+ LOGOS = "LOGOS",
4279
+ /** VideoMaker websites offered to the user after video purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
4280
+ VIDEO_MAKER = "VIDEO_MAKER",
4281
+ /** MetaSites with this namespace will *not* be shown in a user's site list by default. */
4282
+ PARTNER_DASHBOARD = "PARTNER_DASHBOARD",
4283
+ /** MetaSites with this namespace will *not* be shown in a user's site list by default. */
4284
+ DEV_CENTER_COMPANY = "DEV_CENTER_COMPANY",
4285
+ /**
4286
+ * A draft created by HTML editor on open. Upon "first save" it will be moved to be of WIX domain.
4287
+ *
4288
+ * Meta site with this namespace will *not* be shown in a user's site list by default.
4289
+ */
4290
+ HTML_DRAFT = "HTML_DRAFT",
4291
+ /**
4292
+ * the user-journey for Fitness users who want to start from managing their business instead of designing their website.
4293
+ * Will be accessible from Site List and will not have a website app.
4294
+ * Once the user attaches a site, the site will become a regular wixsite.
4295
+ */
4296
+ SITELESS_BUSINESS = "SITELESS_BUSINESS",
4297
+ /** Belongs to "strategic products" company. Supports new product in the creator's economy space. */
4298
+ CREATOR_ECONOMY = "CREATOR_ECONOMY",
4299
+ /** It is to be used in the Business First efforts. */
4300
+ DASHBOARD_FIRST = "DASHBOARD_FIRST",
4301
+ /** Bookings business flow with no site. */
4302
+ ANYWHERE = "ANYWHERE",
4303
+ /** Namespace for Headless Backoffice with no editor */
4304
+ HEADLESS = "HEADLESS",
4305
+ /**
4306
+ * Namespace for master site that will exist in parent account that will be referenced by subaccounts
4307
+ * The site will be used for account level CSM feature for enterprise
4308
+ */
4309
+ ACCOUNT_MASTER_CMS = "ACCOUNT_MASTER_CMS",
4310
+ /** Rise.ai Siteless account management for Gift Cards and Store Credit. */
4311
+ RISE = "RISE",
4312
+ /**
4313
+ * As part of the branded app new funnel, users now can create a meta site that will be branded app first.
4314
+ * There's a blank site behind the scene but it's blank).
4315
+ * The Mobile company will be the owner of this namespace.
4316
+ */
4317
+ BRANDED_FIRST = "BRANDED_FIRST",
4318
+ /** Nownia.com Siteless account management for Ai Scheduling Assistant. */
4319
+ NOWNIA = "NOWNIA",
4320
+ /**
4321
+ * UGC Templates are templates that are created by users for personal use and to sale to other users.
4322
+ * The Partners company owns this namespace.
4323
+ */
4324
+ UGC_TEMPLATE = "UGC_TEMPLATE",
4325
+ /** Codux Headless Sites */
4326
+ CODUX = "CODUX",
4327
+ /** Bobb - AI Design Creator. */
4328
+ MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR",
4329
+ /**
4330
+ * Shared Blog Site is a unique single site across Enterprise account,
4331
+ * This site will hold all Blog posts related to the Marketing product.
4332
+ */
4333
+ SHARED_BLOG_ENTERPRISE = "SHARED_BLOG_ENTERPRISE",
4334
+ /** Standalone forms (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
4335
+ STANDALONE_FORMS = "STANDALONE_FORMS",
4336
+ /** Standalone events (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
4337
+ STANDALONE_EVENTS = "STANDALONE_EVENTS",
4338
+ /** MIMIR - Siteless account for MIMIR Ai Job runner. */
4339
+ MIMIR = "MIMIR",
4340
+ /** Wix Twins platform. */
4341
+ TWINS = "TWINS",
4342
+ /** Wix Nano. */
4343
+ NANO = "NANO"
4344
+ }
4345
+ /** @enumType */
4346
+ type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR' | 'TWINS' | 'NANO';
4347
+ /** Site transferred to another user. */
4348
+ interface SiteTransferred {
4349
+ /**
4350
+ * A previous owner id (user that transfers meta site).
4351
+ * @format GUID
4352
+ */
4353
+ oldOwnerId?: string;
4354
+ /**
4355
+ * A new owner id (user that accepts meta site).
4356
+ * @format GUID
4357
+ */
4358
+ newOwnerId?: string;
4359
+ }
4360
+ /** Soft deletion of the meta site. Could be restored. */
4361
+ interface SiteDeleted {
4362
+ /** A deletion context. */
4363
+ deleteContext?: DeleteContext;
4364
+ }
4365
+ interface DeleteContext {
4366
+ /** When the meta site was deleted. */
4367
+ dateDeleted?: Date | null;
4368
+ /** A status. */
4369
+ deleteStatus?: DeleteStatusWithLiterals;
4370
+ /**
4371
+ * A reason (flow).
4372
+ * @maxLength 255
4373
+ */
4374
+ deleteOrigin?: string;
4375
+ /**
4376
+ * A service that deleted it.
4377
+ * @maxLength 255
4378
+ */
4379
+ initiatorId?: string | null;
4380
+ }
4381
+ declare enum DeleteStatus {
4382
+ UNKNOWN = "UNKNOWN",
4383
+ TRASH = "TRASH",
4384
+ DELETED = "DELETED",
4385
+ PENDING_PURGE = "PENDING_PURGE",
4386
+ PURGED_EXTERNALLY = "PURGED_EXTERNALLY"
4387
+ }
4388
+ /** @enumType */
4389
+ type DeleteStatusWithLiterals = DeleteStatus | 'UNKNOWN' | 'TRASH' | 'DELETED' | 'PENDING_PURGE' | 'PURGED_EXTERNALLY';
4390
+ /** Restoration of the meta site. */
4391
+ interface SiteUndeleted {
4392
+ }
4393
+ /** First publish of a meta site. Or subsequent publish after unpublish. */
4394
+ interface SitePublished {
4395
+ }
4396
+ interface SiteUnpublished {
4397
+ /**
4398
+ * A list of URLs previously associated with the meta site.
4399
+ * @maxLength 4000
4400
+ * @maxSize 10000
4401
+ */
4402
+ urls?: string[];
4403
+ }
4404
+ interface SiteMarkedAsTemplate {
4405
+ }
4406
+ interface SiteMarkedAsWixSite {
4407
+ }
4408
+ /**
4409
+ * Represents a service provisioned a site.
4410
+ *
4411
+ * Note on `origin_instance_id`:
4412
+ * There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
4413
+ * This is because of the following scenario:
4414
+ *
4415
+ * Imagine you have a template where a third-party application (TPA) includes some stub data,
4416
+ * such as a product catalog. When you create a site from this template, you inherit this
4417
+ * default product catalog. However, if the template's product catalog is modified,
4418
+ * your site will retain the catalog as it was at the time of site creation. This ensures that
4419
+ * your site remains consistent with what you initially received and does not include any
4420
+ * changes made to the original template afterward.
4421
+ * To ensure this, the TPA on the template gets a new instance_id.
4422
+ */
4423
+ interface ServiceProvisioned {
4424
+ /**
4425
+ * Either UUID or EmbeddedServiceType.
4426
+ * @maxLength 36
4427
+ */
4428
+ appDefId?: string;
4429
+ /**
4430
+ * Not only UUID. Something here could be something weird.
4431
+ * @maxLength 36
4432
+ */
4433
+ instanceId?: string;
4434
+ /**
4435
+ * An instance id from which this instance is originated.
4436
+ * @maxLength 36
4437
+ */
4438
+ originInstanceId?: string;
4439
+ /**
4440
+ * A version.
4441
+ * @maxLength 500
4442
+ */
4443
+ version?: string | null;
4444
+ /**
4445
+ * The origin meta site id
4446
+ * @format GUID
4447
+ */
4448
+ originMetaSiteId?: string | null;
4449
+ }
4450
+ interface ServiceRemoved {
4451
+ /**
4452
+ * Either UUID or EmbeddedServiceType.
4453
+ * @maxLength 36
4454
+ */
4455
+ appDefId?: string;
4456
+ /**
4457
+ * Not only UUID. Something here could be something weird.
4458
+ * @maxLength 36
4459
+ */
4460
+ instanceId?: string;
4461
+ /**
4462
+ * A version.
4463
+ * @maxLength 500
4464
+ */
4465
+ version?: string | null;
4466
+ }
4467
+ /** Rename of the site. Meaning, free public url has been changed as well. */
4468
+ interface SiteRenamed {
4469
+ /**
4470
+ * A new meta site name (URL slug).
4471
+ * @maxLength 20
4472
+ */
4473
+ newSiteName?: string;
4474
+ /**
4475
+ * A previous meta site name (URL slug).
4476
+ * @maxLength 255
4477
+ */
4478
+ oldSiteName?: string;
4479
+ }
4480
+ /**
4481
+ * Hard deletion of the meta site.
4482
+ *
4483
+ * Could not be restored. Therefore it's desirable to cleanup data.
4484
+ */
4485
+ interface SiteHardDeleted {
4486
+ /** A deletion context. */
4487
+ deleteContext?: DeleteContext;
4488
+ }
4489
+ interface NamespaceChanged {
4490
+ /** A previous namespace. */
4491
+ oldNamespace?: NamespaceWithLiterals;
4492
+ /** A new namespace. */
4493
+ newNamespace?: NamespaceWithLiterals;
4494
+ }
4495
+ /** Assigned Studio editor */
4496
+ interface StudioAssigned {
4497
+ }
4498
+ /** Unassigned Studio editor */
4499
+ interface StudioUnassigned {
4500
+ }
4501
+ /**
4502
+ * Fired in case site URLs were changed in any way: new secondary domain, published, account slug rename, site rename etc.
4503
+ *
4504
+ * This is an internal event, it's not propagated in special events, because it's non-actionable. If you need to keep up
4505
+ * with sites and its urls, you need to listen to another topic/event. Read about it:
4506
+ *
4507
+ * https://bo.wix.com/wix-docs/rest/meta-site/meta-site---urls-service
4508
+ */
4509
+ interface SiteUrlChanged {
4510
+ }
4511
+ /**
4512
+ * Used at the end of the deletion flow for both draft sites and when a user deletes a site.
4513
+ * Consumed by other teams to remove relevant data.
4514
+ */
4515
+ interface SitePurgedExternally {
4516
+ /**
4517
+ * @maxLength 2048
4518
+ * @maxSize 100
4519
+ * @deprecated
4520
+ * @targetRemovalDate 2025-04-15
4521
+ */
4522
+ appDefId?: string[];
4523
+ }
4524
+ /** Assigned Odeditor */
4525
+ interface OdeditorAssigned {
4526
+ }
4527
+ /** Unassigned Odeditor */
4528
+ interface OdeditorUnassigned {
4529
+ }
4530
+ /** Assigned Picasso editor */
4531
+ interface PicassoAssigned {
4532
+ }
4533
+ /** Unassigned Picasso */
4534
+ interface PicassoUnassigned {
4535
+ }
4536
+ interface GetTicketDefinitionFromTrashBinRequest {
4537
+ /**
4538
+ * Ticket definition ID.
4539
+ * @format GUID
4540
+ */
4541
+ ticketDefinitionId?: string;
4542
+ /**
4543
+ * Requested fields. Not implemented.
4544
+ * @maxSize 5
4545
+ */
4546
+ fields?: FieldWithLiterals[];
4547
+ }
4548
+ interface GetTicketDefinitionFromTrashBinResponse {
4549
+ /** The requested ticket definition. */
4550
+ ticketDefinition?: TicketDefinition;
4551
+ }
4552
+ interface ScheduleLegacyTimeCapsuleTaskRequest {
4553
+ /**
4554
+ * Definition ID.
4555
+ * @format GUID
4556
+ */
4557
+ ticketDefinitionId?: string;
4558
+ }
4559
+ interface MessageEnvelope {
4560
+ /**
4561
+ * App instance ID.
4562
+ * @format GUID
4563
+ */
4564
+ instanceId?: string | null;
4565
+ /**
4566
+ * Event type.
4567
+ * @maxLength 150
4568
+ */
4569
+ eventType?: string;
4570
+ /** The identification type and identity data. */
4571
+ identity?: IdentificationData;
4572
+ /** Stringify payload. */
4573
+ data?: string;
4574
+ }
4575
+ interface IdentificationData extends IdentificationDataIdOneOf {
4576
+ /**
4577
+ * ID of a site visitor that has not logged in to the site.
4578
+ * @format GUID
4579
+ */
4580
+ anonymousVisitorId?: string;
4581
+ /**
4582
+ * ID of a site visitor that has logged in to the site.
4583
+ * @format GUID
4584
+ */
4585
+ memberId?: string;
4586
+ /**
4587
+ * ID of a Wix user (site owner, contributor, etc.).
4588
+ * @format GUID
4589
+ */
4590
+ wixUserId?: string;
4591
+ /**
4592
+ * ID of an app.
4593
+ * @format GUID
4594
+ */
4595
+ appId?: string;
4596
+ /** @readonly */
4597
+ identityType?: WebhookIdentityTypeWithLiterals;
4598
+ }
4599
+ /** @oneof */
4600
+ interface IdentificationDataIdOneOf {
4601
+ /**
4602
+ * ID of a site visitor that has not logged in to the site.
4603
+ * @format GUID
4604
+ */
4605
+ anonymousVisitorId?: string;
4606
+ /**
4607
+ * ID of a site visitor that has logged in to the site.
4608
+ * @format GUID
4609
+ */
4610
+ memberId?: string;
4611
+ /**
4612
+ * ID of a Wix user (site owner, contributor, etc.).
4613
+ * @format GUID
4614
+ */
4615
+ wixUserId?: string;
4616
+ /**
4617
+ * ID of an app.
4618
+ * @format GUID
4619
+ */
4620
+ appId?: string;
4621
+ }
4622
+ declare enum WebhookIdentityType {
4623
+ UNKNOWN = "UNKNOWN",
4624
+ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
4625
+ MEMBER = "MEMBER",
4626
+ WIX_USER = "WIX_USER",
4627
+ APP = "APP"
4628
+ }
4629
+ /** @enumType */
4630
+ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
4631
+ interface GetTicketDefinitionSummaryRequest {
4632
+ /**
4633
+ * Ticket definition id.
4634
+ * @format GUID
4635
+ */
4636
+ ticketDefinitionId?: string | null;
4637
+ }
4638
+ interface GetTicketDefinitionSummaryResponse {
4639
+ /** Summary. */
4640
+ summary?: TicketDefinitionSummary;
4641
+ }
4642
+ interface TicketDefinitionSummary {
4643
+ /**
4644
+ * Ticket definition ID.
4645
+ * @format GUID
4646
+ * @readonly
4647
+ */
4648
+ definitionId?: string | null;
4649
+ /**
4650
+ * Event ID to which the ticket definition summary belongs.
4651
+ * @format GUID
4652
+ * @readonly
4653
+ */
4654
+ eventId?: string | null;
4655
+ /**
4656
+ * Date and time of the ticket definition summary latest update in `yyyy-mm-ddThh:mm:sssZ` format.
4657
+ * @readonly
4658
+ */
4659
+ updatedDate?: Date | null;
4660
+ /**
4661
+ * Reserved count.
4662
+ * @readonly
4663
+ */
4664
+ reservedCount?: number;
4665
+ /**
4666
+ * Sold count.
4667
+ * @readonly
4668
+ */
4669
+ soldCount?: number;
4670
+ /**
4671
+ * Paid exists.
4672
+ * @readonly
4673
+ */
4674
+ paidExists?: boolean;
4675
+ }
4676
+ interface ListEventTicketingSummaryRequest {
4677
+ /**
4678
+ * Event ID.
4679
+ * @format GUID
4680
+ * @minSize 1
4681
+ * @maxSize 1000
4682
+ */
4683
+ eventId?: string[];
4684
+ }
4685
+ interface ListEventTicketingSummaryResponse {
4686
+ /** Ticketing summaries. */
4687
+ summaries?: EventTicketingSummary[];
4688
+ }
4689
+ interface EventTicketingSummary {
4690
+ /**
4691
+ * Event ID to which the ticketing summary belongs.
4692
+ * @format GUID
4693
+ * @readonly
4694
+ */
4695
+ eventId?: string | null;
4696
+ /**
4697
+ * Date and time of the ticketing summary latest update in `yyyy-mm-ddThh:mm:sssZ` format.
4698
+ * @readonly
4699
+ */
4700
+ updatedDate?: Date | null;
4701
+ /**
4702
+ * Whether all tickets are sold out for this event.
4703
+ * @readonly
4704
+ */
4705
+ soldOut?: boolean | null;
4706
+ /**
4707
+ * Price of lowest priced ticket.
4708
+ * @readonly
4709
+ */
4710
+ lowestTicketPrice?: CommonMoney;
4711
+ /**
4712
+ * Price of highest priced ticket.
4713
+ * @readonly
4714
+ */
4715
+ highestTicketPrice?: CommonMoney;
4716
+ /**
4717
+ * Currency used in event transactions.
4718
+ * @minLength 3
4719
+ * @maxLength 3
4720
+ * @readonly
4721
+ */
4722
+ currency?: string | null;
4723
+ /**
4724
+ * Formatted price of lowest priced ticket.
4725
+ * @maxLength 50
4726
+ * @readonly
4727
+ */
4728
+ lowestTicketPriceFormatted?: string | null;
4729
+ /**
4730
+ * Formatted price of highest priced ticket.
4731
+ * @maxLength 50
4732
+ * @readonly
4733
+ */
4734
+ highestTicketPriceFormatted?: string | null;
4735
+ }
4736
+ interface UpdateEventTicketingSummaryRequest {
4737
+ /**
4738
+ * Event ID.
4739
+ * @format GUID
4740
+ */
4741
+ eventId?: string;
4742
+ }
4743
+ interface UpdateEventTicketingSummaryResponse {
4744
+ }
4745
+ /** @docsIgnore */
4746
+ type CreateTicketDefinitionApplicationErrors = {
4747
+ code?: 'INVALID_EVENT_TYPE';
4748
+ description?: string;
4749
+ data?: Record<string, any>;
4750
+ } | {
4751
+ code?: 'TICKET_DEFINITIONS_LIMIT_REACHED';
4752
+ description?: string;
4753
+ data?: Record<string, any>;
4754
+ } | {
4755
+ code?: 'INVALID_SALE_PERIOD';
4756
+ description?: string;
4757
+ data?: Record<string, any>;
4758
+ };
4759
+ /** @docsIgnore */
4760
+ type UpdateTicketDefinitionApplicationErrors = {
4761
+ code?: 'INVALID_SALE_PERIOD';
4762
+ description?: string;
4763
+ data?: Record<string, any>;
4764
+ };
4765
+ /** @docsIgnore */
4766
+ type ReorderTicketDefinitionsApplicationErrors = {
4767
+ code?: 'INVALID_REORDER_INSTRUCTION';
4768
+ description?: string;
4769
+ data?: Record<string, any>;
4770
+ };
4771
+ /** @docsIgnore */
4772
+ type CountTicketDefinitionsApplicationErrors = {
4773
+ code?: 'FILTER_PARSER_ERROR';
4774
+ description?: string;
4775
+ data?: Record<string, any>;
4776
+ };
4777
+ /** @docsIgnore */
4778
+ type CountAvailableTicketDefinitionsApplicationErrors = {
4779
+ code?: 'FILTER_PARSER_ERROR';
4780
+ description?: string;
4781
+ data?: Record<string, any>;
4782
+ };
4783
+ /** @docsIgnore */
4784
+ type ChangeCurrencyApplicationErrors = {
4785
+ code?: 'CURRENCY_LOCKED';
4786
+ description?: string;
4787
+ data?: Record<string, any>;
4788
+ };
761
4789
 
762
4790
  type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
763
4791
  getUrl: (context: any) => string;
@@ -787,4 +4815,4 @@ declare function countAvailableTicketDefinitions(): __PublicMethodMetaInfo<'POST
787
4815
  declare function bulkDeleteTicketDefinitionsByFilter(): __PublicMethodMetaInfo<'POST', {}, BulkDeleteTicketDefinitionsByFilterRequest$1, BulkDeleteTicketDefinitionsByFilterRequest, BulkDeleteTicketDefinitionsByFilterResponse$1, BulkDeleteTicketDefinitionsByFilterResponse>;
788
4816
  declare function changeCurrency(): __PublicMethodMetaInfo<'POST', {}, ChangeCurrencyRequest$1, ChangeCurrencyRequest, ChangeCurrencyResponse$1, ChangeCurrencyResponse>;
789
4817
 
790
- export { type __PublicMethodMetaInfo, bulkDeleteTicketDefinitionsByFilter, changeCurrency, countAvailableTicketDefinitions, countTicketDefinitions, createTicketDefinition, deleteTicketDefinition, getTicketDefinition, queryAvailableTicketDefinitions, queryTicketDefinitions, reorderTicketDefinitions, updateTicketDefinition };
4818
+ export { type ActionEvent as ActionEventOriginal, type AddressLocation as AddressLocationOriginal, type Address as AddressOriginal, type AddressStreetOneOf as AddressStreetOneOfOriginal, type Agenda as AgendaOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, type App as AppOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type Asset as AssetOriginal, type AudioData as AudioDataOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type Badge as BadgeOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BulkCopyTicketDefinitionsByEventIdRequest as BulkCopyTicketDefinitionsByEventIdRequestOriginal, type BulkCopyTicketDefinitionsByEventIdResponse as BulkCopyTicketDefinitionsByEventIdResponseOriginal, type BulkDeleteTicketDefinitionsByFilterRequest as BulkDeleteTicketDefinitionsByFilterRequestOriginal, type BulkDeleteTicketDefinitionsByFilterResponse as BulkDeleteTicketDefinitionsByFilterResponseOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CalendarLinks as CalendarLinksOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, CardStylesType as CardStylesTypeOriginal, type CardStylesTypeWithLiterals as CardStylesTypeWithLiteralsOriginal, type CategoryCounts as CategoryCountsOriginal, type CategoryDetails as CategoryDetailsOriginal, type Category as CategoryOriginal, CategoryStateState as CategoryStateStateOriginal, type CategoryStateStateWithLiterals as CategoryStateStateWithLiteralsOriginal, type CellStyle as CellStyleOriginal, type ChangeCurrencyApplicationErrors as ChangeCurrencyApplicationErrorsOriginal, type ChangeCurrencyRequest as ChangeCurrencyRequestOriginal, type ChangeCurrencyResponse as ChangeCurrencyResponseOriginal, type CheckoutFormMessages as CheckoutFormMessagesOriginal, CheckoutType as CheckoutTypeOriginal, type CheckoutTypeWithLiterals as CheckoutTypeWithLiteralsOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, type CommonAddressLocation as CommonAddressLocationOriginal, type CommonAddress as CommonAddressOriginal, type CommonAddressStreetOneOf as CommonAddressStreetOneOfOriginal, type CommonMoney as CommonMoneyOriginal, type CommonStreetAddress as CommonStreetAddressOriginal, type CommonSubdivision as CommonSubdivisionOriginal, ConferenceType as ConferenceTypeOriginal, type ConferenceTypeWithLiterals as ConferenceTypeWithLiteralsOriginal, type CopiedTicketDefinition as CopiedTicketDefinitionOriginal, type CountAvailableTicketDefinitionsApplicationErrors as CountAvailableTicketDefinitionsApplicationErrorsOriginal, type CountAvailableTicketDefinitionsRequest as CountAvailableTicketDefinitionsRequestOriginal, type CountAvailableTicketDefinitionsResponse as CountAvailableTicketDefinitionsResponseOriginal, type CountTicketDefinitionsApplicationErrors as CountTicketDefinitionsApplicationErrorsOriginal, type CountTicketDefinitionsRequest as CountTicketDefinitionsRequestOriginal, type CountTicketDefinitionsResponse as CountTicketDefinitionsResponseOriginal, type CreateTicketDefinitionApplicationErrors as CreateTicketDefinitionApplicationErrorsOriginal, type CreateTicketDefinitionRequest as CreateTicketDefinitionRequestOriginal, type CreateTicketDefinitionResponse as CreateTicketDefinitionResponseOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPaging as CursorPagingOriginal, type Cursors as CursorsOriginal, type CustomTag as CustomTagOriginal, type Dashboard as DashboardOriginal, type DateAndTimeSettings as DateAndTimeSettingsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeleteContext as DeleteContextOriginal, DeleteStatus as DeleteStatusOriginal, type DeleteStatusWithLiterals as DeleteStatusWithLiteralsOriginal, type DeleteTicketDefinitionRequest as DeleteTicketDefinitionRequestOriginal, type DeleteTicketDefinitionResponse as DeleteTicketDefinitionResponseOriginal, type Design as DesignOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EmbedData as EmbedDataOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventCanceled as EventCanceledOriginal, type EventCreated as EventCreatedOriginal, type EventData as EventDataOriginal, type EventDeleted as EventDeletedOriginal, type EventDetails as EventDetailsOriginal, type EventDisplaySettings as EventDisplaySettingsOriginal, type EventEnded as EventEndedOriginal, type Event as EventOriginal, EventStatus as EventStatusOriginal, type EventStatusWithLiterals as EventStatusWithLiteralsOriginal, type EventTicketingSummary as EventTicketingSummaryOriginal, EventType as EventTypeOriginal, type EventTypeWithLiterals as EventTypeWithLiteralsOriginal, type EventUpdated as EventUpdatedOriginal, type EventsLocation as EventsLocationOriginal, type EventsOccurrence as EventsOccurrenceOriginal, EventsRecurrenceStatusStatus as EventsRecurrenceStatusStatusOriginal, type EventsRecurrenceStatusStatusWithLiterals as EventsRecurrenceStatusStatusWithLiteralsOriginal, type EventsRecurrences as EventsRecurrencesOriginal, type ExtendedFields as ExtendedFieldsOriginal, type ExternalEvent as ExternalEventOriginal, type FacetCounts as FacetCountsOriginal, FeeTypeEnumType as FeeTypeEnumTypeOriginal, type FeeTypeEnumTypeWithLiterals as FeeTypeEnumTypeWithLiteralsOriginal, type Feed as FeedOriginal, Field as FieldOriginal, type FieldWithLiterals as FieldWithLiteralsOriginal, type FileData as FileDataOriginal, type File as FileOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type FormMessages as FormMessagesOriginal, type Form as FormOriginal, type Formatted as FormattedOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetTicketDefinitionFromTrashBinRequest as GetTicketDefinitionFromTrashBinRequestOriginal, type GetTicketDefinitionFromTrashBinResponse as GetTicketDefinitionFromTrashBinResponseOriginal, type GetTicketDefinitionRequest as GetTicketDefinitionRequestOriginal, type GetTicketDefinitionResponse as GetTicketDefinitionResponseOriginal, type GetTicketDefinitionSummaryRequest as GetTicketDefinitionSummaryRequestOriginal, type GetTicketDefinitionSummaryResponse as GetTicketDefinitionSummaryResponseOriginal, type Gradient as GradientOriginal, type GuestListConfig as GuestListConfigOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type InputControl as InputControlOriginal, InputControlType as InputControlTypeOriginal, type InputControlTypeWithLiterals as InputControlTypeWithLiteralsOriginal, type Input as InputOriginal, type InvalidateCacheGetByOneOf as InvalidateCacheGetByOneOfOriginal, type InvalidateCache as InvalidateCacheOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type Keyword as KeywordOriginal, type Label as LabelOriginal, type LabellingSettings as LabellingSettingsOriginal, type LayoutCellData as LayoutCellDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListEventTicketingSummaryRequest as ListEventTicketingSummaryRequestOriginal, type ListEventTicketingSummaryResponse as ListEventTicketingSummaryResponseOriginal, type ListValue as ListValueOriginal, LocationLocationType as LocationLocationTypeOriginal, type LocationLocationTypeWithLiterals as LocationLocationTypeWithLiteralsOriginal, type Location as LocationOriginal, LocationType as LocationTypeOriginal, type LocationTypeWithLiterals as LocationTypeWithLiteralsOriginal, type MapCoordinates as MapCoordinatesOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaSiteSpecialEvent as MetaSiteSpecialEventOriginal, type MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOfOriginal, type Metadata as MetadataOriginal, type Money as MoneyOriginal, type NamespaceChanged as NamespaceChangedOriginal, Namespace as NamespaceOriginal, type NamespaceWithLiterals as NamespaceWithLiteralsOriginal, type Negative as NegativeOriginal, type NegativeResponseConfirmation as NegativeResponseConfirmationOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Occurrence as OccurrenceOriginal, type OdeditorAssigned as OdeditorAssignedOriginal, type OdeditorUnassigned as OdeditorUnassignedOriginal, type Oembed as OembedOriginal, type OnlineConferencingConfig as OnlineConferencingConfigOriginal, type OnlineConferencing as OnlineConferencingOriginal, type OnlineConferencingSession as OnlineConferencingSessionOriginal, type OptionDesign as OptionDesignOriginal, type OptionDetails as OptionDetailsOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OptionSelection as OptionSelectionOriginal, type OptionSelectionSelectedOptionOneOf as OptionSelectionSelectedOptionOneOfOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type Page as PageOriginal, type PageUrl as PageUrlOriginal, type PagingMetadataV2 as PagingMetadataV2Original, type Paging as PagingOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, type PicassoAssigned as PicassoAssignedOriginal, type PicassoUnassigned as PicassoUnassignedOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, type PollSettings as PollSettingsOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type Positive as PositiveOriginal, type PositiveResponseConfirmation as PositiveResponseConfirmationOriginal, type PricingData as PricingDataOriginal, type PricingMethod as PricingMethodOriginal, type PricingMethodPriceOneOf as PricingMethodPriceOneOfOriginal, type PricingOptions as PricingOptionsOriginal, PricingTypeEnumType as PricingTypeEnumTypeOriginal, type PricingTypeEnumTypeWithLiterals as PricingTypeEnumTypeWithLiteralsOriginal, type QueryAvailableTicketDefinitionsRequest as QueryAvailableTicketDefinitionsRequestOriginal, type QueryAvailableTicketDefinitionsResponse as QueryAvailableTicketDefinitionsResponseOriginal, type QueryTicketDefinitionsRequest as QueryTicketDefinitionsRequestOriginal, type QueryTicketDefinitionsResponse as QueryTicketDefinitionsResponseOriginal, type QueryV2 as QueryV2Original, type QueryV2PagingMethodOneOf as QueryV2PagingMethodOneOfOriginal, RecurrenceStatusStatus as RecurrenceStatusStatusOriginal, type RecurrenceStatusStatusWithLiterals as RecurrenceStatusStatusWithLiteralsOriginal, type Recurrences as RecurrencesOriginal, type RegistrationClosedMessages as RegistrationClosedMessagesOriginal, type Registration as RegistrationOriginal, RegistrationStatus as RegistrationStatusOriginal, type RegistrationStatusWithLiterals as RegistrationStatusWithLiteralsOriginal, type Rel as RelOriginal, type ReorderTicketDefinitionsApplicationErrors as ReorderTicketDefinitionsApplicationErrorsOriginal, type ReorderTicketDefinitionsRequest as ReorderTicketDefinitionsRequestOriginal, type ReorderTicketDefinitionsRequestReferenceDefinitionOneOf as ReorderTicketDefinitionsRequestReferenceDefinitionOneOfOriginal, type ReorderTicketDefinitionsResponse as ReorderTicketDefinitionsResponseOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type ResponseConfirmation as ResponseConfirmationOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type RsvpCollectionConfig as RsvpCollectionConfigOriginal, type RsvpCollection as RsvpCollectionOriginal, type RsvpConfirmationMessagesNegativeResponseConfirmation as RsvpConfirmationMessagesNegativeResponseConfirmationOriginal, type RsvpConfirmationMessages as RsvpConfirmationMessagesOriginal, type RsvpConfirmationMessagesPositiveResponseConfirmation as RsvpConfirmationMessagesPositiveResponseConfirmationOriginal, type RsvpFormMessages as RsvpFormMessagesOriginal, RsvpStatusOptions as RsvpStatusOptionsOriginal, type RsvpStatusOptionsWithLiterals as RsvpStatusOptionsWithLiteralsOriginal, type RsvpSummary as RsvpSummaryOriginal, type SalePeriod as SalePeriodOriginal, type SalePeriodUpdated as SalePeriodUpdatedOriginal, SaleStatusEnumStatus as SaleStatusEnumStatusOriginal, type SaleStatusEnumStatusWithLiterals as SaleStatusEnumStatusWithLiteralsOriginal, type SalesDetails as SalesDetailsOriginal, type ScheduleConfig as ScheduleConfigOriginal, type ScheduleLegacyTimeCapsuleTaskRequest as ScheduleLegacyTimeCapsuleTaskRequestOriginal, type Scheduling as SchedulingOriginal, type SeatingPlanCategoriesSummaryUpdated as SeatingPlanCategoriesSummaryUpdatedOriginal, type SeoSchema as SeoSchemaOriginal, type SeoSettings as SeoSettingsOriginal, type ServiceProvisioned as ServiceProvisionedOriginal, type ServiceRemoved as ServiceRemovedOriginal, type Settings as SettingsOriginal, SiteCreatedContext as SiteCreatedContextOriginal, type SiteCreatedContextWithLiterals as SiteCreatedContextWithLiteralsOriginal, type SiteCreated as SiteCreatedOriginal, type SiteDeleted as SiteDeletedOriginal, type SiteHardDeleted as SiteHardDeletedOriginal, type SiteMarkedAsTemplate as SiteMarkedAsTemplateOriginal, type SiteMarkedAsWixSite as SiteMarkedAsWixSiteOriginal, type SitePublished as SitePublishedOriginal, type SitePurgedExternally as SitePurgedExternallyOriginal, type SiteRenamed as SiteRenamedOriginal, type SiteTransferred as SiteTransferredOriginal, type SiteUndeleted as SiteUndeletedOriginal, type SiteUnpublished as SiteUnpublishedOriginal, type SiteUrlChanged as SiteUrlChangedOriginal, type SiteUrl as SiteUrlOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, State as StateOriginal, type StateWithLiterals as StateWithLiteralsOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type StreetAddress as StreetAddressOriginal, type StudioAssigned as StudioAssignedOriginal, type StudioUnassigned as StudioUnassignedOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type Subdivision as SubdivisionOriginal, SubdivisionSubdivisionType as SubdivisionSubdivisionTypeOriginal, type SubdivisionSubdivisionTypeWithLiterals as SubdivisionSubdivisionTypeWithLiteralsOriginal, SubdivisionType as SubdivisionTypeOriginal, type SubdivisionTypeWithLiterals as SubdivisionTypeWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, type Tag as TagOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, type TaxConfig as TaxConfigOriginal, TaxType as TaxTypeOriginal, type TaxTypeWithLiterals as TaxTypeWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, type TicketDefinition as TicketDefinitionOriginal, type TicketDefinitionSaleEnded as TicketDefinitionSaleEndedOriginal, type TicketDefinitionSaleStarted as TicketDefinitionSaleStartedOriginal, type TicketDefinitionSummary as TicketDefinitionSummaryOriginal, type TicketingConfig as TicketingConfigOriginal, type Ticketing as TicketingOriginal, type TicketingSummary as TicketingSummaryOriginal, type TicketsConfirmationMessages as TicketsConfirmationMessagesOriginal, type TicketsUnavailableMessages as TicketsUnavailableMessagesOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, type URI as URIOriginal, type UpdateEventTicketingSummaryRequest as UpdateEventTicketingSummaryRequestOriginal, type UpdateEventTicketingSummaryResponse as UpdateEventTicketingSummaryResponseOriginal, type UpdateFeeTypesBasedOnSettingsRequest as UpdateFeeTypesBasedOnSettingsRequestOriginal, type UpdateFeeTypesBasedOnSettingsResponse as UpdateFeeTypesBasedOnSettingsResponseOriginal, type UpdateTicketDefinitionApplicationErrors as UpdateTicketDefinitionApplicationErrorsOriginal, type UpdateTicketDefinitionRequest as UpdateTicketDefinitionRequestOriginal, type UpdateTicketDefinitionResponse as UpdateTicketDefinitionResponseOriginal, type UpdateTicketDefinitionSortIndexRequest as UpdateTicketDefinitionSortIndexRequestOriginal, type UpdateTicketDefinitionSortIndexResponse as UpdateTicketDefinitionSortIndexResponseOriginal, ValueType as ValueTypeOriginal, type ValueTypeWithLiterals as ValueTypeWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VisitorType as VisitorTypeOriginal, type VisitorTypeWithLiterals as VisitorTypeWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkDeleteTicketDefinitionsByFilter, changeCurrency, countAvailableTicketDefinitions, countTicketDefinitions, createTicketDefinition, deleteTicketDefinition, getTicketDefinition, queryAvailableTicketDefinitions, queryTicketDefinitions, reorderTicketDefinitions, updateTicketDefinition };