@wix/auto_sdk_events_forms 1.0.36 → 1.0.37

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.
@@ -1123,7 +1123,7 @@ interface Money {
1123
1123
  */
1124
1124
  amount?: string;
1125
1125
  /**
1126
- * Three-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
1126
+ * 3-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format. For example, `USD`.
1127
1127
  * @format CURRENCY
1128
1128
  */
1129
1129
  currency?: string;
@@ -1830,7 +1830,7 @@ interface DividerData {
1830
1830
  /** Divider width. */
1831
1831
  width?: WidthWithLiterals;
1832
1832
  /** Divider alignment. */
1833
- alignment?: AlignmentWithLiterals;
1833
+ alignment?: DividerDataAlignmentWithLiterals;
1834
1834
  }
1835
1835
  declare enum LineStyle {
1836
1836
  /** Single Line */
@@ -1854,7 +1854,7 @@ declare enum Width {
1854
1854
  }
1855
1855
  /** @enumType */
1856
1856
  type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
1857
- declare enum Alignment {
1857
+ declare enum DividerDataAlignment {
1858
1858
  /** Center alignment */
1859
1859
  CENTER = "CENTER",
1860
1860
  /** Left alignment */
@@ -1863,7 +1863,7 @@ declare enum Alignment {
1863
1863
  RIGHT = "RIGHT"
1864
1864
  }
1865
1865
  /** @enumType */
1866
- type AlignmentWithLiterals = Alignment | 'CENTER' | 'LEFT' | 'RIGHT';
1866
+ type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
1867
1867
  interface FileData {
1868
1868
  /** Styling for the file's container. */
1869
1869
  containerData?: PluginContainerData;
@@ -1988,7 +1988,7 @@ interface ItemDataOneOf {
1988
1988
  }
1989
1989
  interface GalleryOptions {
1990
1990
  /** Gallery layout. */
1991
- layout?: Layout;
1991
+ layout?: GalleryOptionsLayout;
1992
1992
  /** Styling for gallery items. */
1993
1993
  item?: ItemStyle;
1994
1994
  /** Styling for gallery thumbnail images. */
@@ -2048,7 +2048,7 @@ declare enum ThumbnailsAlignment {
2048
2048
  }
2049
2049
  /** @enumType */
2050
2050
  type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
2051
- interface Layout {
2051
+ interface GalleryOptionsLayout {
2052
2052
  /** Gallery layout type. */
2053
2053
  type?: LayoutTypeWithLiterals;
2054
2054
  /** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
@@ -2210,7 +2210,7 @@ interface LinkPreviewData {
2210
2210
  /** Styling for the link preview. */
2211
2211
  styles?: LinkPreviewDataStyles;
2212
2212
  }
2213
- declare enum Position {
2213
+ declare enum StylesPosition {
2214
2214
  /** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
2215
2215
  START = "START",
2216
2216
  /** Thumbnail positioned at the end (right in LTR layouts, left in RTL layouts) */
@@ -2221,7 +2221,7 @@ declare enum Position {
2221
2221
  HIDDEN = "HIDDEN"
2222
2222
  }
2223
2223
  /** @enumType */
2224
- type PositionWithLiterals = Position | 'START' | 'END' | 'TOP' | 'HIDDEN';
2224
+ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HIDDEN';
2225
2225
  interface LinkPreviewDataStyles {
2226
2226
  /**
2227
2227
  * Background color as a hexadecimal value.
@@ -2253,7 +2253,7 @@ interface LinkPreviewDataStyles {
2253
2253
  */
2254
2254
  borderColor?: string | null;
2255
2255
  /** Position of thumbnail. Defaults to `START`. */
2256
- thumbnailPosition?: PositionWithLiterals;
2256
+ thumbnailPosition?: StylesPositionWithLiterals;
2257
2257
  }
2258
2258
  interface MapData {
2259
2259
  /** Styling for the map's container. */
@@ -2607,6 +2607,32 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
2607
2607
  url?: string | null;
2608
2608
  /** An image for the embedded content. */
2609
2609
  image?: Media;
2610
+ /** Whether to hide the image. */
2611
+ hideImage?: boolean | null;
2612
+ /** Whether to hide the title. */
2613
+ hideTitle?: boolean | null;
2614
+ /** Whether to hide the price. */
2615
+ hidePrice?: boolean | null;
2616
+ /** Whether to hide the description (Event and Booking). */
2617
+ hideDescription?: boolean | null;
2618
+ /** Whether to hide the date and time (Event). */
2619
+ hideDateTime?: boolean | null;
2620
+ /** Whether to hide the location (Event). */
2621
+ hideLocation?: boolean | null;
2622
+ /** Whether to hide the duration (Booking). */
2623
+ hideDuration?: boolean | null;
2624
+ /** Whether to hide the button. */
2625
+ hideButton?: boolean | null;
2626
+ /** Whether to hide the ribbon. */
2627
+ hideRibbon?: boolean | null;
2628
+ /** Button styling options. */
2629
+ buttonStyles?: ButtonStyles;
2630
+ /** Image styling options. */
2631
+ imageStyles?: ImageStyles;
2632
+ /** Ribbon styling options. */
2633
+ ribbonStyles?: RibbonStyles;
2634
+ /** Card styling options. */
2635
+ cardStyles?: CardStyles;
2610
2636
  }
2611
2637
  /** @oneof */
2612
2638
  interface AppEmbedDataAppDataOneOf {
@@ -2615,6 +2641,66 @@ interface AppEmbedDataAppDataOneOf {
2615
2641
  /** Data for embedded Wix Events content. */
2616
2642
  eventData?: EventData;
2617
2643
  }
2644
+ declare enum Position {
2645
+ /** Image positioned at the start (left in LTR layouts, right in RTL layouts) */
2646
+ START = "START",
2647
+ /** Image positioned at the end (right in LTR layouts, left in RTL layouts) */
2648
+ END = "END",
2649
+ /** Image positioned at the top */
2650
+ TOP = "TOP"
2651
+ }
2652
+ /** @enumType */
2653
+ type PositionWithLiterals = Position | 'START' | 'END' | 'TOP';
2654
+ declare enum AspectRatio {
2655
+ /** 1:1 aspect ratio */
2656
+ SQUARE = "SQUARE",
2657
+ /** 16:9 aspect ratio */
2658
+ RECTANGLE = "RECTANGLE"
2659
+ }
2660
+ /** @enumType */
2661
+ type AspectRatioWithLiterals = AspectRatio | 'SQUARE' | 'RECTANGLE';
2662
+ declare enum Resizing {
2663
+ /** Fill the container, may crop the image */
2664
+ FILL = "FILL",
2665
+ /** Fit the image within the container */
2666
+ FIT = "FIT"
2667
+ }
2668
+ /** @enumType */
2669
+ type ResizingWithLiterals = Resizing | 'FILL' | 'FIT';
2670
+ declare enum Placement {
2671
+ /** Ribbon placed on the image */
2672
+ IMAGE = "IMAGE",
2673
+ /** Ribbon placed on the product information */
2674
+ PRODUCT_INFO = "PRODUCT_INFO"
2675
+ }
2676
+ /** @enumType */
2677
+ type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
2678
+ declare enum CardStylesType {
2679
+ /** Card with visible border and background */
2680
+ CONTAINED = "CONTAINED",
2681
+ /** Card without visible border */
2682
+ FRAMELESS = "FRAMELESS"
2683
+ }
2684
+ /** @enumType */
2685
+ type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
2686
+ declare enum Alignment {
2687
+ /** Content aligned to start (left in LTR layouts, right in RTL layouts) */
2688
+ START = "START",
2689
+ /** Content centered */
2690
+ CENTER = "CENTER",
2691
+ /** Content aligned to end (right in LTR layouts, left in RTL layouts) */
2692
+ END = "END"
2693
+ }
2694
+ /** @enumType */
2695
+ type AlignmentWithLiterals = Alignment | 'START' | 'CENTER' | 'END';
2696
+ declare enum Layout {
2697
+ /** Elements stacked vertically */
2698
+ STACKED = "STACKED",
2699
+ /** Elements arranged horizontally */
2700
+ SIDE_BY_SIDE = "SIDE_BY_SIDE"
2701
+ }
2702
+ /** @enumType */
2703
+ type LayoutWithLiterals = Layout | 'STACKED' | 'SIDE_BY_SIDE';
2618
2704
  declare enum AppType {
2619
2705
  PRODUCT = "PRODUCT",
2620
2706
  EVENT = "EVENT",
@@ -2632,6 +2718,122 @@ interface EventData {
2632
2718
  /** Event location. */
2633
2719
  location?: string | null;
2634
2720
  }
2721
+ interface ButtonStyles {
2722
+ /** Text to display on the button. */
2723
+ buttonText?: string | null;
2724
+ /** Border width in pixels. */
2725
+ borderWidth?: number | null;
2726
+ /** Border radius in pixels. */
2727
+ borderRadius?: number | null;
2728
+ /**
2729
+ * Border color as a hexadecimal value.
2730
+ * @format COLOR_HEX
2731
+ */
2732
+ borderColor?: string | null;
2733
+ /**
2734
+ * Text color as a hexadecimal value.
2735
+ * @format COLOR_HEX
2736
+ */
2737
+ textColor?: string | null;
2738
+ /**
2739
+ * Background color as a hexadecimal value.
2740
+ * @format COLOR_HEX
2741
+ */
2742
+ backgroundColor?: string | null;
2743
+ /**
2744
+ * Border color as a hexadecimal value (hover state).
2745
+ * @format COLOR_HEX
2746
+ */
2747
+ borderColorHover?: string | null;
2748
+ /**
2749
+ * Text color as a hexadecimal value (hover state).
2750
+ * @format COLOR_HEX
2751
+ */
2752
+ textColorHover?: string | null;
2753
+ /**
2754
+ * Background color as a hexadecimal value (hover state).
2755
+ * @format COLOR_HEX
2756
+ */
2757
+ backgroundColorHover?: string | null;
2758
+ /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
2759
+ buttonSize?: string | null;
2760
+ }
2761
+ interface ImageStyles {
2762
+ /** Whether to hide the image. */
2763
+ hideImage?: boolean | null;
2764
+ /** Position of image. Defaults to `START`. */
2765
+ imagePosition?: PositionWithLiterals;
2766
+ /** Aspect ratio for the image. Defaults to `SQUARE`. */
2767
+ aspectRatio?: AspectRatioWithLiterals;
2768
+ /** How the image should be resized. Defaults to `FILL`. */
2769
+ resizing?: ResizingWithLiterals;
2770
+ /**
2771
+ * Image border color as a hexadecimal value.
2772
+ * @format COLOR_HEX
2773
+ */
2774
+ borderColor?: string | null;
2775
+ /** Image border width in pixels. */
2776
+ borderWidth?: number | null;
2777
+ /** Image border radius in pixels. */
2778
+ borderRadius?: number | null;
2779
+ }
2780
+ interface RibbonStyles {
2781
+ /** Text to display on the ribbon. */
2782
+ ribbonText?: string | null;
2783
+ /**
2784
+ * Ribbon background color as a hexadecimal value.
2785
+ * @format COLOR_HEX
2786
+ */
2787
+ backgroundColor?: string | null;
2788
+ /**
2789
+ * Ribbon text color as a hexadecimal value.
2790
+ * @format COLOR_HEX
2791
+ */
2792
+ textColor?: string | null;
2793
+ /**
2794
+ * Ribbon border color as a hexadecimal value.
2795
+ * @format COLOR_HEX
2796
+ */
2797
+ borderColor?: string | null;
2798
+ /** Ribbon border width in pixels. */
2799
+ borderWidth?: number | null;
2800
+ /** Ribbon border radius in pixels. */
2801
+ borderRadius?: number | null;
2802
+ /** Placement of the ribbon. Defaults to `IMAGE`. */
2803
+ ribbonPlacement?: PlacementWithLiterals;
2804
+ }
2805
+ interface CardStyles {
2806
+ /**
2807
+ * Card background color as a hexadecimal value.
2808
+ * @format COLOR_HEX
2809
+ */
2810
+ backgroundColor?: string | null;
2811
+ /**
2812
+ * Card border color as a hexadecimal value.
2813
+ * @format COLOR_HEX
2814
+ */
2815
+ borderColor?: string | null;
2816
+ /** Card border width in pixels. */
2817
+ borderWidth?: number | null;
2818
+ /** Card border radius in pixels. */
2819
+ borderRadius?: number | null;
2820
+ /** Card type. Defaults to `CONTAINED`. */
2821
+ type?: CardStylesTypeWithLiterals;
2822
+ /** Content alignment. Defaults to `START`. */
2823
+ alignment?: AlignmentWithLiterals;
2824
+ /** Layout for title and price. Defaults to `STACKED`. */
2825
+ titlePriceLayout?: LayoutWithLiterals;
2826
+ /**
2827
+ * Title text color as a hexadecimal value.
2828
+ * @format COLOR_HEX
2829
+ */
2830
+ titleColor?: string | null;
2831
+ /**
2832
+ * Text color as a hexadecimal value.
2833
+ * @format COLOR_HEX
2834
+ */
2835
+ textColor?: string | null;
2836
+ }
2635
2837
  interface VideoData {
2636
2838
  /** Styling for the video's container. */
2637
2839
  containerData?: PluginContainerData;
@@ -3382,4 +3584,4 @@ declare function publishDraft(eventId: string): Promise<NonNullablePaths<Publish
3382
3584
  */
3383
3585
  declare function discardDraft(eventId: string): Promise<void>;
3384
3586
 
3385
- export { 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 AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type CalendarLinks, type CaptionData, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckoutFormMessages, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, 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, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DropdownControl, type EmailControl, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, 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 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 GetFormRequest, type GetFormResponse, type Gradient, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, type Labels, type Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, 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, type PDFSettings, type ParagraphData, type Permissions, type PhoneControl, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PublishDraftRequest, type PublishDraftResponse, type RadioButtonControl, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, RequestedFields, type RequestedFieldsWithLiterals, type ResponseConfirmation, type RestoreInfo, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type SiteUrl, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type Styles, type StylesBorder, 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 TicketsUnavailableMessages, 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, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, addControl, deleteControl, discardDraft, getForm, onFormEventUpdated, publishDraft, updateControl, updateMessages };
3587
+ export { 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 AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Background, type BackgroundBackgroundOneOf, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CellStyle, type CheckboxControl, type CheckoutFormMessages, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, 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, type Dimensions, Direction, type DirectionWithLiterals, type DiscardDraftRequest, type DiscardDraftResponse, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type DropdownControl, type EmailControl, type EmbedData, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, 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 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, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, 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, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, 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, 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 PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, 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, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type SiteUrl, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, 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 TicketsUnavailableMessages, 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, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, addControl, deleteControl, discardDraft, getForm, onFormEventUpdated, publishDraft, updateControl, updateMessages };
@@ -822,12 +822,12 @@ var Width = /* @__PURE__ */ ((Width2) => {
822
822
  Width2["SMALL"] = "SMALL";
823
823
  return Width2;
824
824
  })(Width || {});
825
- var Alignment = /* @__PURE__ */ ((Alignment2) => {
826
- Alignment2["CENTER"] = "CENTER";
827
- Alignment2["LEFT"] = "LEFT";
828
- Alignment2["RIGHT"] = "RIGHT";
829
- return Alignment2;
830
- })(Alignment || {});
825
+ var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
826
+ DividerDataAlignment2["CENTER"] = "CENTER";
827
+ DividerDataAlignment2["LEFT"] = "LEFT";
828
+ DividerDataAlignment2["RIGHT"] = "RIGHT";
829
+ return DividerDataAlignment2;
830
+ })(DividerDataAlignment || {});
831
831
  var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
832
832
  ViewMode2["NONE"] = "NONE";
833
833
  ViewMode2["FULL"] = "FULL";
@@ -875,13 +875,13 @@ var Source = /* @__PURE__ */ ((Source2) => {
875
875
  Source2["ADSENSE"] = "ADSENSE";
876
876
  return Source2;
877
877
  })(Source || {});
878
- var Position = /* @__PURE__ */ ((Position2) => {
879
- Position2["START"] = "START";
880
- Position2["END"] = "END";
881
- Position2["TOP"] = "TOP";
882
- Position2["HIDDEN"] = "HIDDEN";
883
- return Position2;
884
- })(Position || {});
878
+ var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
879
+ StylesPosition2["START"] = "START";
880
+ StylesPosition2["END"] = "END";
881
+ StylesPosition2["TOP"] = "TOP";
882
+ StylesPosition2["HIDDEN"] = "HIDDEN";
883
+ return StylesPosition2;
884
+ })(StylesPosition || {});
885
885
  var MapType = /* @__PURE__ */ ((MapType2) => {
886
886
  MapType2["ROADMAP"] = "ROADMAP";
887
887
  MapType2["SATELITE"] = "SATELITE";
@@ -937,6 +937,43 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
937
937
  FontType2["EM"] = "EM";
938
938
  return FontType2;
939
939
  })(FontType || {});
940
+ var Position = /* @__PURE__ */ ((Position2) => {
941
+ Position2["START"] = "START";
942
+ Position2["END"] = "END";
943
+ Position2["TOP"] = "TOP";
944
+ return Position2;
945
+ })(Position || {});
946
+ var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
947
+ AspectRatio2["SQUARE"] = "SQUARE";
948
+ AspectRatio2["RECTANGLE"] = "RECTANGLE";
949
+ return AspectRatio2;
950
+ })(AspectRatio || {});
951
+ var Resizing = /* @__PURE__ */ ((Resizing2) => {
952
+ Resizing2["FILL"] = "FILL";
953
+ Resizing2["FIT"] = "FIT";
954
+ return Resizing2;
955
+ })(Resizing || {});
956
+ var Placement = /* @__PURE__ */ ((Placement2) => {
957
+ Placement2["IMAGE"] = "IMAGE";
958
+ Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
959
+ return Placement2;
960
+ })(Placement || {});
961
+ var CardStylesType = /* @__PURE__ */ ((CardStylesType2) => {
962
+ CardStylesType2["CONTAINED"] = "CONTAINED";
963
+ CardStylesType2["FRAMELESS"] = "FRAMELESS";
964
+ return CardStylesType2;
965
+ })(CardStylesType || {});
966
+ var Alignment = /* @__PURE__ */ ((Alignment2) => {
967
+ Alignment2["START"] = "START";
968
+ Alignment2["CENTER"] = "CENTER";
969
+ Alignment2["END"] = "END";
970
+ return Alignment2;
971
+ })(Alignment || {});
972
+ var Layout = /* @__PURE__ */ ((Layout2) => {
973
+ Layout2["STACKED"] = "STACKED";
974
+ Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
975
+ return Layout2;
976
+ })(Layout || {});
940
977
  var AppType = /* @__PURE__ */ ((AppType2) => {
941
978
  AppType2["PRODUCT"] = "PRODUCT";
942
979
  AppType2["EVENT"] = "EVENT";
@@ -1201,18 +1238,22 @@ async function discardDraft2(eventId) {
1201
1238
  export {
1202
1239
  Alignment,
1203
1240
  AppType,
1241
+ AspectRatio,
1204
1242
  BackgroundType,
1205
1243
  ButtonDataType,
1244
+ CardStylesType,
1206
1245
  ConferenceType,
1207
1246
  Crop,
1208
1247
  DecorationType,
1209
1248
  Direction,
1249
+ DividerDataAlignment,
1210
1250
  EventStatus,
1211
1251
  EventType,
1212
1252
  FontType,
1213
1253
  GIFType,
1214
1254
  InitialExpandedItems,
1215
1255
  InputControlType,
1256
+ Layout,
1216
1257
  LayoutType,
1217
1258
  LineStyle,
1218
1259
  LocationType,
@@ -1220,16 +1261,19 @@ export {
1220
1261
  NodeType,
1221
1262
  NullValue,
1222
1263
  Orientation,
1264
+ Placement,
1223
1265
  PluginContainerDataAlignment,
1224
1266
  PollLayoutDirection,
1225
1267
  PollLayoutType,
1226
1268
  Position,
1227
1269
  RegistrationStatus,
1228
1270
  RequestedFields,
1271
+ Resizing,
1229
1272
  RsvpStatusOptions,
1230
1273
  Source,
1231
1274
  State,
1232
1275
  Status,
1276
+ StylesPosition,
1233
1277
  SubdivisionType,
1234
1278
  Target,
1235
1279
  TaxType,