@wix/auto_sdk_events_forms 1.0.103 → 1.0.105

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +18 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +67 -6
  5. package/build/cjs/index.typings.js +18 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +67 -6
  8. package/build/cjs/meta.js +19 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +17 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +67 -6
  14. package/build/es/index.typings.mjs +17 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +67 -6
  17. package/build/es/meta.mjs +18 -0
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +18 -0
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +275 -9
  23. package/build/internal/cjs/index.typings.js +18 -0
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +311 -10
  26. package/build/internal/cjs/meta.js +19 -0
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +17 -0
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +275 -9
  32. package/build/internal/es/index.typings.mjs +17 -0
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +311 -10
  35. package/build/internal/es/meta.mjs +18 -0
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +4 -4
@@ -283,6 +283,12 @@ interface GetFormRequest {
283
283
  * @format GUID
284
284
  */
285
285
  eventId: string;
286
+ /**
287
+ * Whether to return additional data with the response.
288
+ * @internal
289
+ * @maxSize 1
290
+ */
291
+ fields?: RequestedFieldsWithLiterals[];
286
292
  }
287
293
  declare enum RequestedFields {
288
294
  /** Include soft deleted input controls in the response. */
@@ -314,6 +320,12 @@ interface AddControlRequest extends AddControlRequestControlOneOf {
314
320
  additionalGuests?: AdditionalGuestsControl;
315
321
  /** Single-choice dropdown style input control. */
316
322
  dropdown?: DropdownControl;
323
+ /**
324
+ * *Deprecated:**. Use `radioButton` instead.
325
+ * @internal
326
+ * @deprecated
327
+ */
328
+ radio?: RadioButtonControl;
317
329
  /** Multiple-choice checkbox style input control. */
318
330
  checkbox?: CheckboxControl;
319
331
  /** Free-form text input control. */
@@ -338,6 +350,12 @@ interface AddControlRequestControlOneOf {
338
350
  additionalGuests?: AdditionalGuestsControl;
339
351
  /** Single-choice dropdown style input control. */
340
352
  dropdown?: DropdownControl;
353
+ /**
354
+ * *Deprecated:**. Use `radioButton` instead.
355
+ * @internal
356
+ * @deprecated
357
+ */
358
+ radio?: RadioButtonControl;
341
359
  /** Multiple-choice checkbox style input control. */
342
360
  checkbox?: CheckboxControl;
343
361
  /** Free-form text input control. */
@@ -462,6 +480,11 @@ interface RadioButtonControl {
462
480
  * @maxLength 200
463
481
  */
464
482
  options?: string[];
483
+ /**
484
+ * Whether a choice is required.
485
+ * @internal
486
+ */
487
+ mandatory?: boolean | null;
465
488
  }
466
489
  interface CheckboxControl {
467
490
  /**
@@ -514,6 +537,12 @@ interface UpdateControlRequest extends UpdateControlRequestControlOneOf {
514
537
  additionalGuests?: AdditionalGuestsControl;
515
538
  /** Single-choice dropdown style input control. */
516
539
  dropdown?: DropdownControl;
540
+ /**
541
+ * Single-choice radio style input control.
542
+ * @internal
543
+ * @deprecated
544
+ */
545
+ radio?: RadioButtonControl;
517
546
  /** Multiple-choice checkbox style input control. */
518
547
  checkbox?: CheckboxControl;
519
548
  /** Free-form text input control. */
@@ -546,6 +575,12 @@ interface UpdateControlRequestControlOneOf {
546
575
  additionalGuests?: AdditionalGuestsControl;
547
576
  /** Single-choice dropdown style input control. */
548
577
  dropdown?: DropdownControl;
578
+ /**
579
+ * Single-choice radio style input control.
580
+ * @internal
581
+ * @deprecated
582
+ */
583
+ radio?: RadioButtonControl;
549
584
  /** Multiple-choice checkbox style input control. */
550
585
  checkbox?: CheckboxControl;
551
586
  /** Free-form text input control. */
@@ -649,6 +684,16 @@ interface EventUpdated {
649
684
  * @deprecated
650
685
  */
651
686
  scheduleConfigUpdated?: boolean;
687
+ /**
688
+ * The set of properties which were updated. For example 'title' or 'location'
689
+ * @internal
690
+ */
691
+ fields?: string[];
692
+ /**
693
+ * Whether event has opened new spots with this update.
694
+ * @internal
695
+ */
696
+ newSpotsOpened?: boolean | null;
652
697
  /** Updated event */
653
698
  event?: Event;
654
699
  }
@@ -749,6 +794,11 @@ interface StreetAddress {
749
794
  number?: string;
750
795
  /** street name */
751
796
  name?: string;
797
+ /**
798
+ * apartment number
799
+ * @internal
800
+ */
801
+ apt?: string;
752
802
  }
753
803
  interface AddressLocation {
754
804
  /**
@@ -769,6 +819,16 @@ interface Subdivision {
769
819
  code?: string;
770
820
  /** subdivision full-name */
771
821
  name?: string;
822
+ /**
823
+ * subdivision level
824
+ * @internal
825
+ */
826
+ type?: SubdivisionTypeWithLiterals;
827
+ /**
828
+ * free text description of subdivision type
829
+ * @internal
830
+ */
831
+ typeInfo?: string | null;
772
832
  }
773
833
  declare enum SubdivisionType {
774
834
  UNKNOWN_SUBDIVISION_TYPE = "UNKNOWN_SUBDIVISION_TYPE",
@@ -921,6 +981,16 @@ interface Event {
921
981
  categories?: Category[];
922
982
  /** Visual settings for event. */
923
983
  eventDisplaySettings?: EventDisplaySettings;
984
+ /**
985
+ * @internal
986
+ * @readonly
987
+ */
988
+ customizableTickets?: boolean | null;
989
+ /**
990
+ * Labelling related data.
991
+ * @internal
992
+ */
993
+ labellingSettings?: LabellingSettings;
924
994
  /** Rich content that are displayed in a site's "About Event" section. Successor to `about` field. */
925
995
  longDescription?: RichContent;
926
996
  /**
@@ -928,6 +998,12 @@ interface Event {
928
998
  * @readonly
929
999
  */
930
1000
  publishedDate?: Date | null;
1001
+ /**
1002
+ * Event badges.
1003
+ * @internal
1004
+ * @maxSize 10
1005
+ */
1006
+ badges?: Badge[];
931
1007
  }
932
1008
  interface Scheduling {
933
1009
  /** Schedule configuration. */
@@ -987,7 +1063,13 @@ declare enum EventType {
987
1063
  /** External registration */
988
1064
  EXTERNAL = "EXTERNAL",
989
1065
  /** Registration not available */
990
- NO_REGISTRATION = "NO_REGISTRATION"
1066
+ NO_REGISTRATION = "NO_REGISTRATION",
1067
+ /**
1068
+ * Registration via RSVP or ticket purchase
1069
+ * @documentationMaturity preview
1070
+ * @internal
1071
+ */
1072
+ RSVP_AND_TICKETS = "RSVP_AND_TICKETS"
991
1073
  }
992
1074
  /** @enumType */
993
1075
  type EventTypeWithLiterals = EventType | 'NA_EVENT_TYPE' | 'RSVP' | 'TICKETS' | 'EXTERNAL' | 'NO_REGISTRATION';
@@ -1007,7 +1089,13 @@ declare enum RegistrationStatus {
1007
1089
  /** Registration is open via external URL */
1008
1090
  OPEN_EXTERNAL = "OPEN_EXTERNAL",
1009
1091
  /** Registration will be open via RSVP */
1010
- SCHEDULED_RSVP = "SCHEDULED_RSVP"
1092
+ SCHEDULED_RSVP = "SCHEDULED_RSVP",
1093
+ /**
1094
+ * Registration is open via RSVP and via ticket purchase
1095
+ * @documentationMaturity preview
1096
+ * @internal
1097
+ */
1098
+ OPEN_RSVP_AND_TICKETS = "OPEN_RSVP_AND_TICKETS"
1011
1099
  }
1012
1100
  /** @enumType */
1013
1101
  type RegistrationStatusWithLiterals = RegistrationStatus | 'NA_REGISTRATION_STATUS' | 'CLOSED' | 'CLOSED_MANUALLY' | 'OPEN_RSVP' | 'OPEN_RSVP_WAITLIST' | 'OPEN_TICKETS' | 'OPEN_EXTERNAL' | 'SCHEDULED_RSVP';
@@ -1029,6 +1117,18 @@ interface RsvpCollectionConfig {
1029
1117
  startDate?: Date | null;
1030
1118
  /** Registration end timestamp. */
1031
1119
  endDate?: Date | null;
1120
+ /**
1121
+ * Confirmation messages shown after the registration.
1122
+ * @internal
1123
+ */
1124
+ confirmationMessages?: RsvpConfirmationMessages;
1125
+ /**
1126
+ * Form id. Present only for RSVP event.
1127
+ * @internal
1128
+ * @readonly
1129
+ * @format GUID
1130
+ */
1131
+ formId?: string | null;
1032
1132
  }
1033
1133
  declare enum RsvpStatusOptions {
1034
1134
  /** Only YES RSVP status is available for RSVP registration */
@@ -1133,12 +1233,58 @@ interface TicketingConfig {
1133
1233
  * @max 50
1134
1234
  */
1135
1235
  ticketLimitPerOrder?: number;
1236
+ /**
1237
+ * App Id for external ticket stock management.
1238
+ * By default tickets stock is defined in TicketDefinition object.
1239
+ * If defined then limitation from TicketDefinition is ignored.
1240
+ * @internal
1241
+ * @format GUID
1242
+ */
1243
+ stockManagerAppId?: string | null;
1136
1244
  /**
1137
1245
  * Duration for which the tickets being bought are reserved.
1138
1246
  * @min 5
1139
1247
  * @max 30
1140
1248
  */
1141
1249
  reservationDurationInMinutes?: number | null;
1250
+ /**
1251
+ * Grace period for which ticket reservation is extended.
1252
+ * @internal
1253
+ * @max 120
1254
+ */
1255
+ gracePeriodInMinutes?: number | null;
1256
+ /**
1257
+ * Confirmation messages shown after the registration.
1258
+ * @internal
1259
+ */
1260
+ confirmationMessages?: TicketsConfirmationMessages;
1261
+ /**
1262
+ * Buyer form id. Present only for ticketed event.
1263
+ * @internal
1264
+ * @readonly
1265
+ * @format GUID
1266
+ */
1267
+ buyerFormId?: string | null;
1268
+ /**
1269
+ * Ticket holder form id. Present only for ticketed event with assigned tickets enabled.
1270
+ * @internal
1271
+ * @readonly
1272
+ * @format GUID
1273
+ */
1274
+ ticketHolderFormId?: string | null;
1275
+ /**
1276
+ * Checkout type.
1277
+ * @internal
1278
+ * @readonly
1279
+ */
1280
+ checkoutType?: CheckoutTypeWithLiterals;
1281
+ /**
1282
+ * Inactive buyer form id. This is used when guest_assigned_tickets is false.
1283
+ * @internal
1284
+ * @readonly
1285
+ * @format GUID
1286
+ */
1287
+ inactiveBuyerFormId?: string | null;
1142
1288
  }
1143
1289
  interface TaxConfig {
1144
1290
  /** Tax application settings. */
@@ -1325,6 +1471,12 @@ interface Feed {
1325
1471
  interface OnlineConferencing {
1326
1472
  config?: OnlineConferencingConfig;
1327
1473
  session?: OnlineConferencingSession;
1474
+ /**
1475
+ * Configured conferencing provider name.
1476
+ * @internal
1477
+ * @readonly
1478
+ */
1479
+ providerName?: string;
1328
1480
  }
1329
1481
  interface OnlineConferencingConfig {
1330
1482
  /**
@@ -1428,7 +1580,15 @@ interface Tag {
1428
1580
  meta?: Record<string, any> | null;
1429
1581
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
1430
1582
  children?: string;
1431
- /** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */
1583
+ /**
1584
+ * Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages).
1585
+ *
1586
+ * Limitation: when `ResolveStaticPageSeoTags` is called without `seoData`, the per-page SEO data is read
1587
+ * only from the Vibe/Wix-managed-headless override store. That store holds nothing for classic Wix Editor
1588
+ * or Wix Studio pages, so custom tags saved on those pages are missing from the response entirely. For
1589
+ * those pages `false` therefore does not mean "not a custom tag" — it means this API could not tell.
1590
+ * Pass `seoData` explicitly to resolve against a known set of tags.
1591
+ */
1432
1592
  custom?: boolean;
1433
1593
  /** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
1434
1594
  disabled?: boolean;
@@ -1481,6 +1641,13 @@ interface Category {
1481
1641
  * @readonly
1482
1642
  */
1483
1643
  _createdDate?: Date | null;
1644
+ /**
1645
+ * Assigned events count. Deleted events are excluded.
1646
+ * @internal
1647
+ * @readonly
1648
+ * @deprecated
1649
+ */
1650
+ assignedEventsCount?: number | null;
1484
1651
  /**
1485
1652
  * The total number of draft and published events assigned to the category.
1486
1653
  * @readonly
@@ -1495,6 +1662,12 @@ interface Category {
1495
1662
  * @maxSize 3
1496
1663
  */
1497
1664
  states?: StateWithLiterals[];
1665
+ /**
1666
+ * Optionally client defined external ID.
1667
+ * @internal
1668
+ * @maxLength 100
1669
+ */
1670
+ externalId?: string | null;
1498
1671
  }
1499
1672
  interface CategoryCounts {
1500
1673
  /** Total number of draft events assigned to the category. */
@@ -1510,7 +1683,12 @@ declare enum State {
1510
1683
  /** Category is created automatically when publishing recurring events. */
1511
1684
  RECURRING_EVENT = "RECURRING_EVENT",
1512
1685
  /** Category is hidden. */
1513
- HIDDEN = "HIDDEN"
1686
+ HIDDEN = "HIDDEN",
1687
+ /**
1688
+ * Category is used to store component events.
1689
+ * @internal
1690
+ */
1691
+ COMPONENT = "COMPONENT"
1514
1692
  }
1515
1693
  /** @enumType */
1516
1694
  type StateWithLiterals = State | 'MANUAL' | 'AUTO' | 'RECURRING_EVENT' | 'HIDDEN';
@@ -1521,6 +1699,17 @@ interface EventDisplaySettings {
1521
1699
  hideEventDetailsPage?: boolean | null;
1522
1700
  }
1523
1701
  interface LabellingSettings {
1702
+ /**
1703
+ * @internal
1704
+ * @readonly
1705
+ * @maxLength 180
1706
+ */
1707
+ assignedContactsLegacyLabelId?: string | null;
1708
+ /**
1709
+ * @internal
1710
+ * @readonly
1711
+ */
1712
+ assignedContactsLabelDeleted?: boolean | null;
1524
1713
  }
1525
1714
  interface RichContent {
1526
1715
  /** Node objects representing a rich content document. */
@@ -2027,17 +2216,27 @@ interface Rel {
2027
2216
  interface Animation {
2028
2217
  /** Animation kind. */
2029
2218
  type?: AnimationTypeWithLiterals;
2030
- /** Entrance animation, played once when the node first enters the viewport. */
2219
+ /** Entrance animation, played once when the node first enters the viewport (VIEW). */
2031
2220
  entrance?: EntranceAnimation;
2032
- /** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes. */
2221
+ /** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes (VIEW). */
2033
2222
  loop?: LoopAnimation;
2223
+ /**
2224
+ * POINTER carries its fields directly on the union member in the JTD wall, hence
2225
+ * flat fields here (ts-proto camelCase must equal the JTD property names). A future
2226
+ * SCROLL variant will contend for the `effect` JSON name — resolve when it lands.
2227
+ */
2228
+ effect?: PointerEffect;
2229
+ /** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
2230
+ transitionDuration?: number | null;
2034
2231
  }
2035
2232
  declare enum AnimationType {
2036
2233
  /** Animations that play while the node is in view. */
2037
- VIEW = "VIEW"
2234
+ VIEW = "VIEW",
2235
+ /** Animations driven by the visitor's mouse position. */
2236
+ POINTER = "POINTER"
2038
2237
  }
2039
2238
  /** @enumType */
2040
- type AnimationTypeWithLiterals = AnimationType | 'VIEW';
2239
+ type AnimationTypeWithLiterals = AnimationType | 'VIEW' | 'POINTER';
2041
2240
  interface EntranceAnimation {
2042
2241
  /** The entrance effect to play. */
2043
2242
  effect?: EntranceEffect;
@@ -2157,6 +2356,49 @@ declare enum LoopEffectType {
2157
2356
  }
2158
2357
  /** @enumType */
2159
2358
  type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
2359
+ interface PointerEffect {
2360
+ /** The mouse effect type. */
2361
+ type?: PointerEffectTypeWithLiterals;
2362
+ /** Reacts away from the pointer instead of toward it. */
2363
+ inverted?: boolean | null;
2364
+ /**
2365
+ * One field, two value spaces (the effect type says which): the axis the movement is constrained to — HORIZONTAL, VERTICAL, or BOTH (AIRY, SCALE, SKEW, TRACK, TRACK_3D) — or the edge/center axis the node swivels around — TOP, BOTTOM, LEFT, RIGHT, CENTER_HORIZONTAL, or CENTER_VERTICAL (SWIVEL). Only the effects that expose one accept it.
2366
+ * @maxLength 20
2367
+ */
2368
+ axis?: string | null;
2369
+ /**
2370
+ * Whether the node grows or shrinks as the pointer nears: UP or DOWN (SCALE).
2371
+ * @maxLength 8
2372
+ */
2373
+ direction?: string | null;
2374
+ /**
2375
+ * Motion style: GENTLE, MODERATE, or INTENSE.
2376
+ * @maxLength 100
2377
+ */
2378
+ easing?: string | null;
2379
+ }
2380
+ declare enum PointerEffectType {
2381
+ /** Drifts loosely after the pointer with a light rotation. */
2382
+ AIRY = "AIRY",
2383
+ /** Squashes and stretches toward the pointer. */
2384
+ BLOB = "BLOB",
2385
+ /** Shifts after the pointer while blurring. */
2386
+ BLUR = "BLUR",
2387
+ /** Scales as the pointer approaches. */
2388
+ SCALE = "SCALE",
2389
+ /** Skews toward the pointer. */
2390
+ SKEW = "SKEW",
2391
+ /** Rotates around a pivot edge or axis, following the pointer. */
2392
+ SWIVEL = "SWIVEL",
2393
+ /** Tilts in 3D perspective toward the pointer. */
2394
+ TILT_3D = "TILT_3D",
2395
+ /** Follows the pointer's position. */
2396
+ TRACK = "TRACK",
2397
+ /** Follows the pointer with a 3D depth motion. */
2398
+ TRACK_3D = "TRACK_3D"
2399
+ }
2400
+ /** @enumType */
2401
+ type PointerEffectTypeWithLiterals = PointerEffectType | 'AIRY' | 'BLOB' | 'BLUR' | 'SCALE' | 'SKEW' | 'SWIVEL' | 'TILT_3D' | 'TRACK' | 'TRACK_3D';
2160
2402
  interface CodeBlockData {
2161
2403
  /** Styling for the code block's text. */
2162
2404
  textStyle?: TextStyle;
@@ -4123,6 +4365,12 @@ interface Badge {
4123
4365
  * @maxLength 50
4124
4366
  */
4125
4367
  text?: string | null;
4368
+ /**
4369
+ * The date when function that yielded this badge was last edited.
4370
+ * Used to resolve priority when two or more badges have the same type.
4371
+ * @internal
4372
+ */
4373
+ functionUpdateDate?: Date | null;
4126
4374
  }
4127
4375
  declare enum Type {
4128
4376
  /** 1st priority badge type. */
@@ -4447,6 +4695,12 @@ interface AddControlOptionsControlOneOf {
4447
4695
  additionalGuests?: AdditionalGuestsControl;
4448
4696
  /** Single-choice dropdown style input control. */
4449
4697
  dropdown?: DropdownControl;
4698
+ /**
4699
+ * *Deprecated:**. Use `radioButton` instead.
4700
+ * @internal
4701
+ * @deprecated
4702
+ */
4703
+ radio?: RadioButtonControl;
4450
4704
  /** Multiple-choice checkbox style input control. */
4451
4705
  checkbox?: CheckboxControl;
4452
4706
  /** Free-form text input control. */
@@ -4488,6 +4742,12 @@ interface UpdateControlIdentifiersControlOneOf {
4488
4742
  additionalGuests?: AdditionalGuestsControl;
4489
4743
  /** Single-choice dropdown style input control. */
4490
4744
  dropdown?: DropdownControl;
4745
+ /**
4746
+ * Single-choice radio style input control.
4747
+ * @internal
4748
+ * @deprecated
4749
+ */
4750
+ radio?: RadioButtonControl;
4491
4751
  /** Multiple-choice checkbox style input control. */
4492
4752
  checkbox?: CheckboxControl;
4493
4753
  /** Free-form text input control. */
@@ -4535,6 +4795,12 @@ interface UpdateControlOptionsControlOneOf {
4535
4795
  additionalGuests?: AdditionalGuestsControl;
4536
4796
  /** Single-choice dropdown style input control. */
4537
4797
  dropdown?: DropdownControl;
4798
+ /**
4799
+ * Single-choice radio style input control.
4800
+ * @internal
4801
+ * @deprecated
4802
+ */
4803
+ radio?: RadioButtonControl;
4538
4804
  /** Multiple-choice checkbox style input control. */
4539
4805
  checkbox?: CheckboxControl;
4540
4806
  /** Free-form text input control. */
@@ -4613,4 +4879,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
4613
4879
  */
4614
4880
  declare function discardDraft(eventId: string): Promise<void>;
4615
4881
 
4616
- export { type AccountInfo, type ActionEvent, type AddControlApplicationErrors, type AddControlOptions, type AddControlOptionsControlOneOf, type AddControlRequest, type AddControlRequestControlOneOf, type AddControlResponse, type AdditionalGuestsControl, type Address, type AddressControl, type AddressControlLabels, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type Animation, AnimationType, type AnimationTypeWithLiterals, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type Banner, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, CancellationActorType, type CancellationActorTypeWithLiterals, type CancellationInfo, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckboxListData, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, ConferenceType, type ConferenceTypeWithLiterals, Crop, type CropWithLiterals, type Dashboard, type DateControl, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteControlApplicationErrors, type DeleteControlIdentifiers, type DeleteControlRequest, type DeleteControlResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DividerDataStyles, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DropdownControl, type EmailControl, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EntranceAnimation, type EntranceEffect, EntranceEffectType, type EntranceEffectTypeWithLiterals, type Event, type EventData, type EventDisplaySettings, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormEventUpdatedEnvelope, type FormInputControlAdded, type FormInputControlDeleted, type FormInputControlUpdated, type FormMessages, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetFormRequest, type GetFormResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataCrop, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, type Labels, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineCap, type LineCapWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListItemNodeData, ListStyle, type ListStyleWithLiterals, type ListValue, type Location, LocationType, type LocationTypeWithLiterals, type LoopAnimation, type LoopEffect, LoopEffectType, type LoopEffectTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Money, type NameControl, type NameControlLabels, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, type PhoneControl, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingData, type PublishDraftRequest, type PublishDraftResponse, type RadioButtonControl, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, Scaling, type ScalingWithLiterals, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type ShapeData, type ShapeDataStyles, type SiteUrl, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type Stop, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextControl, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, type TocData, Type, type TypeWithLiterals, type UpdateControlApplicationErrors, type UpdateControlIdentifiers, type UpdateControlIdentifiersControlOneOf, type UpdateControlOptions, type UpdateControlOptionsControlOneOf, type UpdateControlRequest, type UpdateControlRequestControlOneOf, type UpdateControlResponse, type UpdateMessagesOptions, type UpdateMessagesRequest, type UpdateMessagesResponse, ValueType, type ValueTypeWithLiterals, Variant, type VariantWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, addControl, deleteControl, discardDraft, getForm, onFormEventUpdated, publishDraft, updateControl, updateMessages };
4882
+ export { type AccountInfo, type ActionEvent, type AddControlApplicationErrors, type AddControlOptions, type AddControlOptionsControlOneOf, type AddControlRequest, type AddControlRequestControlOneOf, type AddControlResponse, type AdditionalGuestsControl, type Address, type AddressControl, type AddressControlLabels, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type Animation, AnimationType, type AnimationTypeWithLiterals, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type Banner, BannerPosition, type BannerPositionWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, CancellationActorType, type CancellationActorTypeWithLiterals, type CancellationInfo, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckboxListData, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, ColumnSize, type ColumnSizeWithLiterals, ConferenceType, type ConferenceTypeWithLiterals, Crop, type CropWithLiterals, type Dashboard, type DateControl, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteControlApplicationErrors, type DeleteControlIdentifiers, type DeleteControlRequest, type DeleteControlResponse, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DividerDataStyles, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DropdownControl, type EmailControl, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EntranceAnimation, type EntranceEffect, EntranceEffectType, type EntranceEffectTypeWithLiterals, type Event, type EventData, type EventDisplaySettings, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormEventUpdatedEnvelope, type FormInputControlAdded, type FormInputControlDeleted, type FormInputControlUpdated, type FormMessages, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetFormRequest, type GetFormResponse, type Gradient, GradientType, type GradientTypeWithLiterals, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataCrop, type ImageDataStyles, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, type Labels, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineCap, type LineCapWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListItemNodeData, ListStyle, type ListStyleWithLiterals, type ListValue, type Location, LocationType, type LocationTypeWithLiterals, type LoopAnimation, type LoopEffect, LoopEffectType, type LoopEffectTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Money, type NameControl, type NameControlLabels, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, type PhoneControl, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type PointerEffect, PointerEffectType, type PointerEffectTypeWithLiterals, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingData, type PublishDraftRequest, type PublishDraftResponse, type RadioButtonControl, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, Scaling, type ScalingWithLiterals, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type ShapeData, type ShapeDataStyles, type SiteUrl, type SketchData, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type Stop, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextControl, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, type TocData, Type, type TypeWithLiterals, type UpdateControlApplicationErrors, type UpdateControlIdentifiers, type UpdateControlIdentifiersControlOneOf, type UpdateControlOptions, type UpdateControlOptionsControlOneOf, type UpdateControlRequest, type UpdateControlRequestControlOneOf, type UpdateControlResponse, type UpdateMessagesOptions, type UpdateMessagesRequest, type UpdateMessagesResponse, ValueType, type ValueTypeWithLiterals, Variant, type VariantWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, addControl, deleteControl, discardDraft, getForm, onFormEventUpdated, publishDraft, updateControl, updateMessages };
@@ -679,6 +679,7 @@ var EventType = /* @__PURE__ */ ((EventType2) => {
679
679
  EventType2["TICKETS"] = "TICKETS";
680
680
  EventType2["EXTERNAL"] = "EXTERNAL";
681
681
  EventType2["NO_REGISTRATION"] = "NO_REGISTRATION";
682
+ EventType2["RSVP_AND_TICKETS"] = "RSVP_AND_TICKETS";
682
683
  return EventType2;
683
684
  })(EventType || {});
684
685
  var RegistrationStatus = /* @__PURE__ */ ((RegistrationStatus2) => {
@@ -690,6 +691,7 @@ var RegistrationStatus = /* @__PURE__ */ ((RegistrationStatus2) => {
690
691
  RegistrationStatus2["OPEN_TICKETS"] = "OPEN_TICKETS";
691
692
  RegistrationStatus2["OPEN_EXTERNAL"] = "OPEN_EXTERNAL";
692
693
  RegistrationStatus2["SCHEDULED_RSVP"] = "SCHEDULED_RSVP";
694
+ RegistrationStatus2["OPEN_RSVP_AND_TICKETS"] = "OPEN_RSVP_AND_TICKETS";
693
695
  return RegistrationStatus2;
694
696
  })(RegistrationStatus || {});
695
697
  var RsvpStatusOptions = /* @__PURE__ */ ((RsvpStatusOptions2) => {
@@ -730,6 +732,7 @@ var State = /* @__PURE__ */ ((State2) => {
730
732
  State2["AUTO"] = "AUTO";
731
733
  State2["RECURRING_EVENT"] = "RECURRING_EVENT";
732
734
  State2["HIDDEN"] = "HIDDEN";
735
+ State2["COMPONENT"] = "COMPONENT";
733
736
  return State2;
734
737
  })(State || {});
735
738
  var NodeType = /* @__PURE__ */ ((NodeType2) => {
@@ -811,6 +814,7 @@ var Target = /* @__PURE__ */ ((Target2) => {
811
814
  })(Target || {});
812
815
  var AnimationType = /* @__PURE__ */ ((AnimationType2) => {
813
816
  AnimationType2["VIEW"] = "VIEW";
817
+ AnimationType2["POINTER"] = "POINTER";
814
818
  return AnimationType2;
815
819
  })(AnimationType || {});
816
820
  var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
@@ -850,6 +854,18 @@ var LoopEffectType = /* @__PURE__ */ ((LoopEffectType2) => {
850
854
  LoopEffectType2["WIGGLE"] = "WIGGLE";
851
855
  return LoopEffectType2;
852
856
  })(LoopEffectType || {});
857
+ var PointerEffectType = /* @__PURE__ */ ((PointerEffectType2) => {
858
+ PointerEffectType2["AIRY"] = "AIRY";
859
+ PointerEffectType2["BLOB"] = "BLOB";
860
+ PointerEffectType2["BLUR"] = "BLUR";
861
+ PointerEffectType2["SCALE"] = "SCALE";
862
+ PointerEffectType2["SKEW"] = "SKEW";
863
+ PointerEffectType2["SWIVEL"] = "SWIVEL";
864
+ PointerEffectType2["TILT_3D"] = "TILT_3D";
865
+ PointerEffectType2["TRACK"] = "TRACK";
866
+ PointerEffectType2["TRACK_3D"] = "TRACK_3D";
867
+ return PointerEffectType2;
868
+ })(PointerEffectType || {});
853
869
  var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
854
870
  TextAlignment2["AUTO"] = "AUTO";
855
871
  TextAlignment2["LEFT"] = "LEFT";
@@ -1470,6 +1486,7 @@ export {
1470
1486
  Origin,
1471
1487
  Placement,
1472
1488
  PluginContainerDataAlignment,
1489
+ PointerEffectType,
1473
1490
  PollDesignBackgroundType,
1474
1491
  PollLayoutDirection,
1475
1492
  PollLayoutType,