@wix/auto_sdk_events_forms 1.0.102 → 1.0.104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +36 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +113 -4
- package/build/cjs/index.typings.js +36 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +113 -4
- package/build/cjs/meta.js +37 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +34 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +113 -4
- package/build/es/index.typings.mjs +34 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +113 -4
- package/build/es/meta.mjs +35 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +36 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +321 -7
- package/build/internal/cjs/index.typings.js +36 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +357 -8
- package/build/internal/cjs/meta.js +37 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +34 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +321 -7
- package/build/internal/es/index.typings.mjs +34 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +357 -8
- package/build/internal/es/meta.mjs +35 -0
- package/build/internal/es/meta.mjs.map +1 -1
- 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
|
/**
|
|
@@ -1481,6 +1633,13 @@ interface Category {
|
|
|
1481
1633
|
* @readonly
|
|
1482
1634
|
*/
|
|
1483
1635
|
_createdDate?: Date | null;
|
|
1636
|
+
/**
|
|
1637
|
+
* Assigned events count. Deleted events are excluded.
|
|
1638
|
+
* @internal
|
|
1639
|
+
* @readonly
|
|
1640
|
+
* @deprecated
|
|
1641
|
+
*/
|
|
1642
|
+
assignedEventsCount?: number | null;
|
|
1484
1643
|
/**
|
|
1485
1644
|
* The total number of draft and published events assigned to the category.
|
|
1486
1645
|
* @readonly
|
|
@@ -1495,6 +1654,12 @@ interface Category {
|
|
|
1495
1654
|
* @maxSize 3
|
|
1496
1655
|
*/
|
|
1497
1656
|
states?: StateWithLiterals[];
|
|
1657
|
+
/**
|
|
1658
|
+
* Optionally client defined external ID.
|
|
1659
|
+
* @internal
|
|
1660
|
+
* @maxLength 100
|
|
1661
|
+
*/
|
|
1662
|
+
externalId?: string | null;
|
|
1498
1663
|
}
|
|
1499
1664
|
interface CategoryCounts {
|
|
1500
1665
|
/** Total number of draft events assigned to the category. */
|
|
@@ -1510,7 +1675,12 @@ declare enum State {
|
|
|
1510
1675
|
/** Category is created automatically when publishing recurring events. */
|
|
1511
1676
|
RECURRING_EVENT = "RECURRING_EVENT",
|
|
1512
1677
|
/** Category is hidden. */
|
|
1513
|
-
HIDDEN = "HIDDEN"
|
|
1678
|
+
HIDDEN = "HIDDEN",
|
|
1679
|
+
/**
|
|
1680
|
+
* Category is used to store component events.
|
|
1681
|
+
* @internal
|
|
1682
|
+
*/
|
|
1683
|
+
COMPONENT = "COMPONENT"
|
|
1514
1684
|
}
|
|
1515
1685
|
/** @enumType */
|
|
1516
1686
|
type StateWithLiterals = State | 'MANUAL' | 'AUTO' | 'RECURRING_EVENT' | 'HIDDEN';
|
|
@@ -1521,6 +1691,17 @@ interface EventDisplaySettings {
|
|
|
1521
1691
|
hideEventDetailsPage?: boolean | null;
|
|
1522
1692
|
}
|
|
1523
1693
|
interface LabellingSettings {
|
|
1694
|
+
/**
|
|
1695
|
+
* @internal
|
|
1696
|
+
* @readonly
|
|
1697
|
+
* @maxLength 180
|
|
1698
|
+
*/
|
|
1699
|
+
assignedContactsLegacyLabelId?: string | null;
|
|
1700
|
+
/**
|
|
1701
|
+
* @internal
|
|
1702
|
+
* @readonly
|
|
1703
|
+
*/
|
|
1704
|
+
assignedContactsLabelDeleted?: boolean | null;
|
|
1524
1705
|
}
|
|
1525
1706
|
interface RichContent {
|
|
1526
1707
|
/** Node objects representing a rich content document. */
|
|
@@ -2027,15 +2208,27 @@ interface Rel {
|
|
|
2027
2208
|
interface Animation {
|
|
2028
2209
|
/** Animation kind. */
|
|
2029
2210
|
type?: AnimationTypeWithLiterals;
|
|
2030
|
-
/** Entrance animation, played once when the node first enters the viewport. */
|
|
2211
|
+
/** Entrance animation, played once when the node first enters the viewport (VIEW). */
|
|
2031
2212
|
entrance?: EntranceAnimation;
|
|
2213
|
+
/** Looping animation, repeated indefinitely while the node is on the page. When combined with entrance, the loop starts after the entrance finishes (VIEW). */
|
|
2214
|
+
loop?: LoopAnimation;
|
|
2215
|
+
/**
|
|
2216
|
+
* POINTER carries its fields directly on the union member in the JTD wall, hence
|
|
2217
|
+
* flat fields here (ts-proto camelCase must equal the JTD property names). A future
|
|
2218
|
+
* SCROLL variant will contend for the `effect` JSON name — resolve when it lands.
|
|
2219
|
+
*/
|
|
2220
|
+
effect?: PointerEffect;
|
|
2221
|
+
/** How quickly the node settles toward the pointer, in milliseconds (POINTER). */
|
|
2222
|
+
transitionDuration?: number | null;
|
|
2032
2223
|
}
|
|
2033
2224
|
declare enum AnimationType {
|
|
2034
2225
|
/** Animations that play while the node is in view. */
|
|
2035
|
-
VIEW = "VIEW"
|
|
2226
|
+
VIEW = "VIEW",
|
|
2227
|
+
/** Animations driven by the visitor's mouse position. */
|
|
2228
|
+
POINTER = "POINTER"
|
|
2036
2229
|
}
|
|
2037
2230
|
/** @enumType */
|
|
2038
|
-
type AnimationTypeWithLiterals = AnimationType | 'VIEW';
|
|
2231
|
+
type AnimationTypeWithLiterals = AnimationType | 'VIEW' | 'POINTER';
|
|
2039
2232
|
interface EntranceAnimation {
|
|
2040
2233
|
/** The entrance effect to play. */
|
|
2041
2234
|
effect?: EntranceEffect;
|
|
@@ -2103,6 +2296,101 @@ declare enum EntranceEffectType {
|
|
|
2103
2296
|
}
|
|
2104
2297
|
/** @enumType */
|
|
2105
2298
|
type EntranceEffectTypeWithLiterals = EntranceEffectType | 'FADE' | 'ARC' | 'BLUR' | 'BOUNCE' | 'DROP' | 'EXPAND' | 'FLIP' | 'FLOAT' | 'FOLD' | 'GLIDE' | 'REVEAL' | 'SHAPE' | 'SHUTTERS' | 'SLIDE' | 'SPIN' | 'TILT' | 'TURN' | 'WINK';
|
|
2299
|
+
interface LoopAnimation {
|
|
2300
|
+
/** The looping effect to repeat. */
|
|
2301
|
+
effect?: LoopEffect;
|
|
2302
|
+
/** Duration of a single iteration in milliseconds. Each effect has its own default. */
|
|
2303
|
+
duration?: number | null;
|
|
2304
|
+
/** Pause between iterations in milliseconds. */
|
|
2305
|
+
iterationDelay?: number | null;
|
|
2306
|
+
}
|
|
2307
|
+
interface LoopEffect {
|
|
2308
|
+
/** The looping effect type. */
|
|
2309
|
+
type?: LoopEffectTypeWithLiterals;
|
|
2310
|
+
/**
|
|
2311
|
+
* Direction of the effect. Allowed values depend on the effect type (e.g. TOP/RIGHT/BOTTOM/LEFT, LEFT/RIGHT, HORIZONTAL/VERTICAL with or without CENTER, CLOCKWISE/COUNTER_CLOCKWISE).
|
|
2312
|
+
* @maxLength 20
|
|
2313
|
+
*/
|
|
2314
|
+
direction?: string | null;
|
|
2315
|
+
/**
|
|
2316
|
+
* Motion style: GENTLE, MODERATE, or INTENSE. Only the effects that expose one accept it.
|
|
2317
|
+
* @maxLength 100
|
|
2318
|
+
*/
|
|
2319
|
+
easing?: string | null;
|
|
2320
|
+
}
|
|
2321
|
+
declare enum LoopEffectType {
|
|
2322
|
+
/** Bounces up and down in place. */
|
|
2323
|
+
BOUNCE = "BOUNCE",
|
|
2324
|
+
/** Scales gently in and out along an axis. */
|
|
2325
|
+
BREATHE = "BREATHE",
|
|
2326
|
+
/** Drifts toward one side, then re-enters from the opposite side. */
|
|
2327
|
+
CROSS = "CROSS",
|
|
2328
|
+
/** Fades out to fully transparent and back in. */
|
|
2329
|
+
FLASH = "FLASH",
|
|
2330
|
+
/** Rotates a full turn around its horizontal or vertical axis. */
|
|
2331
|
+
FLIP = "FLIP",
|
|
2332
|
+
/** Folds back and forth around a hinged edge. */
|
|
2333
|
+
FOLD = "FOLD",
|
|
2334
|
+
/** Wobbles with a jelly-like skew. */
|
|
2335
|
+
JELLO = "JELLO",
|
|
2336
|
+
/** Nudges repeatedly toward a direction. */
|
|
2337
|
+
POKE = "POKE",
|
|
2338
|
+
/** Scales up and back down rhythmically. */
|
|
2339
|
+
PULSE = "PULSE",
|
|
2340
|
+
/** Stretches and squashes like a rubber band. */
|
|
2341
|
+
RUBBER = "RUBBER",
|
|
2342
|
+
/** Rotates continuously around its center. */
|
|
2343
|
+
SPIN = "SPIN",
|
|
2344
|
+
/** Swings back and forth around an edge pivot. */
|
|
2345
|
+
SWING = "SWING",
|
|
2346
|
+
/** Rocks side to side with an accumulating rotation. */
|
|
2347
|
+
WIGGLE = "WIGGLE"
|
|
2348
|
+
}
|
|
2349
|
+
/** @enumType */
|
|
2350
|
+
type LoopEffectTypeWithLiterals = LoopEffectType | 'BOUNCE' | 'BREATHE' | 'CROSS' | 'FLASH' | 'FLIP' | 'FOLD' | 'JELLO' | 'POKE' | 'PULSE' | 'RUBBER' | 'SPIN' | 'SWING' | 'WIGGLE';
|
|
2351
|
+
interface PointerEffect {
|
|
2352
|
+
/** The mouse effect type. */
|
|
2353
|
+
type?: PointerEffectTypeWithLiterals;
|
|
2354
|
+
/** Reacts away from the pointer instead of toward it. */
|
|
2355
|
+
inverted?: boolean | null;
|
|
2356
|
+
/**
|
|
2357
|
+
* 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.
|
|
2358
|
+
* @maxLength 20
|
|
2359
|
+
*/
|
|
2360
|
+
axis?: string | null;
|
|
2361
|
+
/**
|
|
2362
|
+
* Whether the node grows or shrinks as the pointer nears: UP or DOWN (SCALE).
|
|
2363
|
+
* @maxLength 8
|
|
2364
|
+
*/
|
|
2365
|
+
direction?: string | null;
|
|
2366
|
+
/**
|
|
2367
|
+
* Motion style: GENTLE, MODERATE, or INTENSE.
|
|
2368
|
+
* @maxLength 100
|
|
2369
|
+
*/
|
|
2370
|
+
easing?: string | null;
|
|
2371
|
+
}
|
|
2372
|
+
declare enum PointerEffectType {
|
|
2373
|
+
/** Drifts loosely after the pointer with a light rotation. */
|
|
2374
|
+
AIRY = "AIRY",
|
|
2375
|
+
/** Squashes and stretches toward the pointer. */
|
|
2376
|
+
BLOB = "BLOB",
|
|
2377
|
+
/** Shifts after the pointer while blurring. */
|
|
2378
|
+
BLUR = "BLUR",
|
|
2379
|
+
/** Scales as the pointer approaches. */
|
|
2380
|
+
SCALE = "SCALE",
|
|
2381
|
+
/** Skews toward the pointer. */
|
|
2382
|
+
SKEW = "SKEW",
|
|
2383
|
+
/** Rotates around a pivot edge or axis, following the pointer. */
|
|
2384
|
+
SWIVEL = "SWIVEL",
|
|
2385
|
+
/** Tilts in 3D perspective toward the pointer. */
|
|
2386
|
+
TILT_3D = "TILT_3D",
|
|
2387
|
+
/** Follows the pointer's position. */
|
|
2388
|
+
TRACK = "TRACK",
|
|
2389
|
+
/** Follows the pointer with a 3D depth motion. */
|
|
2390
|
+
TRACK_3D = "TRACK_3D"
|
|
2391
|
+
}
|
|
2392
|
+
/** @enumType */
|
|
2393
|
+
type PointerEffectTypeWithLiterals = PointerEffectType | 'AIRY' | 'BLOB' | 'BLUR' | 'SCALE' | 'SKEW' | 'SWIVEL' | 'TILT_3D' | 'TRACK' | 'TRACK_3D';
|
|
2106
2394
|
interface CodeBlockData {
|
|
2107
2395
|
/** Styling for the code block's text. */
|
|
2108
2396
|
textStyle?: TextStyle;
|
|
@@ -2959,6 +3247,8 @@ interface MentionData {
|
|
|
2959
3247
|
slug?: string;
|
|
2960
3248
|
/** Mentioned user's ID. */
|
|
2961
3249
|
id?: string | null;
|
|
3250
|
+
/** The kind of entity the mention refers to. Any value is accepted, and it's usually used to mark a mention as a group mention (for example, `group`). When empty, the mention refers to a member. */
|
|
3251
|
+
type?: string | null;
|
|
2962
3252
|
}
|
|
2963
3253
|
interface FontSizeData {
|
|
2964
3254
|
/** The units used for the font size. */
|
|
@@ -4067,6 +4357,12 @@ interface Badge {
|
|
|
4067
4357
|
* @maxLength 50
|
|
4068
4358
|
*/
|
|
4069
4359
|
text?: string | null;
|
|
4360
|
+
/**
|
|
4361
|
+
* The date when function that yielded this badge was last edited.
|
|
4362
|
+
* Used to resolve priority when two or more badges have the same type.
|
|
4363
|
+
* @internal
|
|
4364
|
+
*/
|
|
4365
|
+
functionUpdateDate?: Date | null;
|
|
4070
4366
|
}
|
|
4071
4367
|
declare enum Type {
|
|
4072
4368
|
/** 1st priority badge type. */
|
|
@@ -4391,6 +4687,12 @@ interface AddControlOptionsControlOneOf {
|
|
|
4391
4687
|
additionalGuests?: AdditionalGuestsControl;
|
|
4392
4688
|
/** Single-choice dropdown style input control. */
|
|
4393
4689
|
dropdown?: DropdownControl;
|
|
4690
|
+
/**
|
|
4691
|
+
* *Deprecated:**. Use `radioButton` instead.
|
|
4692
|
+
* @internal
|
|
4693
|
+
* @deprecated
|
|
4694
|
+
*/
|
|
4695
|
+
radio?: RadioButtonControl;
|
|
4394
4696
|
/** Multiple-choice checkbox style input control. */
|
|
4395
4697
|
checkbox?: CheckboxControl;
|
|
4396
4698
|
/** Free-form text input control. */
|
|
@@ -4432,6 +4734,12 @@ interface UpdateControlIdentifiersControlOneOf {
|
|
|
4432
4734
|
additionalGuests?: AdditionalGuestsControl;
|
|
4433
4735
|
/** Single-choice dropdown style input control. */
|
|
4434
4736
|
dropdown?: DropdownControl;
|
|
4737
|
+
/**
|
|
4738
|
+
* Single-choice radio style input control.
|
|
4739
|
+
* @internal
|
|
4740
|
+
* @deprecated
|
|
4741
|
+
*/
|
|
4742
|
+
radio?: RadioButtonControl;
|
|
4435
4743
|
/** Multiple-choice checkbox style input control. */
|
|
4436
4744
|
checkbox?: CheckboxControl;
|
|
4437
4745
|
/** Free-form text input control. */
|
|
@@ -4479,6 +4787,12 @@ interface UpdateControlOptionsControlOneOf {
|
|
|
4479
4787
|
additionalGuests?: AdditionalGuestsControl;
|
|
4480
4788
|
/** Single-choice dropdown style input control. */
|
|
4481
4789
|
dropdown?: DropdownControl;
|
|
4790
|
+
/**
|
|
4791
|
+
* Single-choice radio style input control.
|
|
4792
|
+
* @internal
|
|
4793
|
+
* @deprecated
|
|
4794
|
+
*/
|
|
4795
|
+
radio?: RadioButtonControl;
|
|
4482
4796
|
/** Multiple-choice checkbox style input control. */
|
|
4483
4797
|
checkbox?: CheckboxControl;
|
|
4484
4798
|
/** Free-form text input control. */
|
|
@@ -4557,4 +4871,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
|
|
|
4557
4871
|
*/
|
|
4558
4872
|
declare function discardDraft(eventId: string): Promise<void>;
|
|
4559
4873
|
|
|
4560
|
-
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 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 };
|
|
4874
|
+
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) => {
|
|
@@ -834,6 +838,34 @@ var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
|
|
|
834
838
|
EntranceEffectType2["WINK"] = "WINK";
|
|
835
839
|
return EntranceEffectType2;
|
|
836
840
|
})(EntranceEffectType || {});
|
|
841
|
+
var LoopEffectType = /* @__PURE__ */ ((LoopEffectType2) => {
|
|
842
|
+
LoopEffectType2["BOUNCE"] = "BOUNCE";
|
|
843
|
+
LoopEffectType2["BREATHE"] = "BREATHE";
|
|
844
|
+
LoopEffectType2["CROSS"] = "CROSS";
|
|
845
|
+
LoopEffectType2["FLASH"] = "FLASH";
|
|
846
|
+
LoopEffectType2["FLIP"] = "FLIP";
|
|
847
|
+
LoopEffectType2["FOLD"] = "FOLD";
|
|
848
|
+
LoopEffectType2["JELLO"] = "JELLO";
|
|
849
|
+
LoopEffectType2["POKE"] = "POKE";
|
|
850
|
+
LoopEffectType2["PULSE"] = "PULSE";
|
|
851
|
+
LoopEffectType2["RUBBER"] = "RUBBER";
|
|
852
|
+
LoopEffectType2["SPIN"] = "SPIN";
|
|
853
|
+
LoopEffectType2["SWING"] = "SWING";
|
|
854
|
+
LoopEffectType2["WIGGLE"] = "WIGGLE";
|
|
855
|
+
return LoopEffectType2;
|
|
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 || {});
|
|
837
869
|
var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
838
870
|
TextAlignment2["AUTO"] = "AUTO";
|
|
839
871
|
TextAlignment2["LEFT"] = "LEFT";
|
|
@@ -1446,6 +1478,7 @@ export {
|
|
|
1446
1478
|
LineStyle,
|
|
1447
1479
|
ListStyle,
|
|
1448
1480
|
LocationType,
|
|
1481
|
+
LoopEffectType,
|
|
1449
1482
|
MapType,
|
|
1450
1483
|
NodeType,
|
|
1451
1484
|
NullValue,
|
|
@@ -1453,6 +1486,7 @@ export {
|
|
|
1453
1486
|
Origin,
|
|
1454
1487
|
Placement,
|
|
1455
1488
|
PluginContainerDataAlignment,
|
|
1489
|
+
PointerEffectType,
|
|
1456
1490
|
PollDesignBackgroundType,
|
|
1457
1491
|
PollLayoutDirection,
|
|
1458
1492
|
PollLayoutType,
|