@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.
- package/build/cjs/index.d.ts +22 -11
- package/build/cjs/index.js +64 -13
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +212 -10
- package/build/cjs/index.typings.js +64 -13
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.d.mts +22 -11
- package/build/es/index.mjs +57 -13
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +212 -10
- package/build/es/index.typings.mjs +57 -13
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +22 -11
- package/build/internal/cjs/index.js +64 -13
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +212 -10
- package/build/internal/cjs/index.typings.js +64 -13
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.d.mts +22 -11
- package/build/internal/es/index.mjs +57 -13
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +212 -10
- package/build/internal/es/index.typings.mjs +57 -13
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1123,7 +1123,7 @@ interface Money {
|
|
|
1123
1123
|
*/
|
|
1124
1124
|
amount?: string;
|
|
1125
1125
|
/**
|
|
1126
|
-
*
|
|
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?:
|
|
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
|
|
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
|
|
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?:
|
|
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
|
|
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
|
|
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
|
|
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?:
|
|
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,
|
|
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 };
|
|
@@ -22,18 +22,22 @@ var index_typings_exports = {};
|
|
|
22
22
|
__export(index_typings_exports, {
|
|
23
23
|
Alignment: () => Alignment,
|
|
24
24
|
AppType: () => AppType,
|
|
25
|
+
AspectRatio: () => AspectRatio,
|
|
25
26
|
BackgroundType: () => BackgroundType,
|
|
26
27
|
ButtonDataType: () => ButtonDataType,
|
|
28
|
+
CardStylesType: () => CardStylesType,
|
|
27
29
|
ConferenceType: () => ConferenceType,
|
|
28
30
|
Crop: () => Crop,
|
|
29
31
|
DecorationType: () => DecorationType,
|
|
30
32
|
Direction: () => Direction,
|
|
33
|
+
DividerDataAlignment: () => DividerDataAlignment,
|
|
31
34
|
EventStatus: () => EventStatus,
|
|
32
35
|
EventType: () => EventType,
|
|
33
36
|
FontType: () => FontType,
|
|
34
37
|
GIFType: () => GIFType,
|
|
35
38
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
36
39
|
InputControlType: () => InputControlType,
|
|
40
|
+
Layout: () => Layout,
|
|
37
41
|
LayoutType: () => LayoutType,
|
|
38
42
|
LineStyle: () => LineStyle,
|
|
39
43
|
LocationType: () => LocationType,
|
|
@@ -41,16 +45,19 @@ __export(index_typings_exports, {
|
|
|
41
45
|
NodeType: () => NodeType,
|
|
42
46
|
NullValue: () => NullValue,
|
|
43
47
|
Orientation: () => Orientation,
|
|
48
|
+
Placement: () => Placement,
|
|
44
49
|
PluginContainerDataAlignment: () => PluginContainerDataAlignment,
|
|
45
50
|
PollLayoutDirection: () => PollLayoutDirection,
|
|
46
51
|
PollLayoutType: () => PollLayoutType,
|
|
47
52
|
Position: () => Position,
|
|
48
53
|
RegistrationStatus: () => RegistrationStatus,
|
|
49
54
|
RequestedFields: () => RequestedFields,
|
|
55
|
+
Resizing: () => Resizing,
|
|
50
56
|
RsvpStatusOptions: () => RsvpStatusOptions,
|
|
51
57
|
Source: () => Source,
|
|
52
58
|
State: () => State,
|
|
53
59
|
Status: () => Status,
|
|
60
|
+
StylesPosition: () => StylesPosition,
|
|
54
61
|
SubdivisionType: () => SubdivisionType,
|
|
55
62
|
Target: () => Target,
|
|
56
63
|
TaxType: () => TaxType,
|
|
@@ -897,12 +904,12 @@ var Width = /* @__PURE__ */ ((Width2) => {
|
|
|
897
904
|
Width2["SMALL"] = "SMALL";
|
|
898
905
|
return Width2;
|
|
899
906
|
})(Width || {});
|
|
900
|
-
var
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
return
|
|
905
|
-
})(
|
|
907
|
+
var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
|
|
908
|
+
DividerDataAlignment2["CENTER"] = "CENTER";
|
|
909
|
+
DividerDataAlignment2["LEFT"] = "LEFT";
|
|
910
|
+
DividerDataAlignment2["RIGHT"] = "RIGHT";
|
|
911
|
+
return DividerDataAlignment2;
|
|
912
|
+
})(DividerDataAlignment || {});
|
|
906
913
|
var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
|
|
907
914
|
ViewMode2["NONE"] = "NONE";
|
|
908
915
|
ViewMode2["FULL"] = "FULL";
|
|
@@ -950,13 +957,13 @@ var Source = /* @__PURE__ */ ((Source2) => {
|
|
|
950
957
|
Source2["ADSENSE"] = "ADSENSE";
|
|
951
958
|
return Source2;
|
|
952
959
|
})(Source || {});
|
|
953
|
-
var
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
return
|
|
959
|
-
})(
|
|
960
|
+
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
961
|
+
StylesPosition2["START"] = "START";
|
|
962
|
+
StylesPosition2["END"] = "END";
|
|
963
|
+
StylesPosition2["TOP"] = "TOP";
|
|
964
|
+
StylesPosition2["HIDDEN"] = "HIDDEN";
|
|
965
|
+
return StylesPosition2;
|
|
966
|
+
})(StylesPosition || {});
|
|
960
967
|
var MapType = /* @__PURE__ */ ((MapType2) => {
|
|
961
968
|
MapType2["ROADMAP"] = "ROADMAP";
|
|
962
969
|
MapType2["SATELITE"] = "SATELITE";
|
|
@@ -1012,6 +1019,43 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
|
1012
1019
|
FontType2["EM"] = "EM";
|
|
1013
1020
|
return FontType2;
|
|
1014
1021
|
})(FontType || {});
|
|
1022
|
+
var Position = /* @__PURE__ */ ((Position2) => {
|
|
1023
|
+
Position2["START"] = "START";
|
|
1024
|
+
Position2["END"] = "END";
|
|
1025
|
+
Position2["TOP"] = "TOP";
|
|
1026
|
+
return Position2;
|
|
1027
|
+
})(Position || {});
|
|
1028
|
+
var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
|
|
1029
|
+
AspectRatio2["SQUARE"] = "SQUARE";
|
|
1030
|
+
AspectRatio2["RECTANGLE"] = "RECTANGLE";
|
|
1031
|
+
return AspectRatio2;
|
|
1032
|
+
})(AspectRatio || {});
|
|
1033
|
+
var Resizing = /* @__PURE__ */ ((Resizing2) => {
|
|
1034
|
+
Resizing2["FILL"] = "FILL";
|
|
1035
|
+
Resizing2["FIT"] = "FIT";
|
|
1036
|
+
return Resizing2;
|
|
1037
|
+
})(Resizing || {});
|
|
1038
|
+
var Placement = /* @__PURE__ */ ((Placement2) => {
|
|
1039
|
+
Placement2["IMAGE"] = "IMAGE";
|
|
1040
|
+
Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
|
|
1041
|
+
return Placement2;
|
|
1042
|
+
})(Placement || {});
|
|
1043
|
+
var CardStylesType = /* @__PURE__ */ ((CardStylesType2) => {
|
|
1044
|
+
CardStylesType2["CONTAINED"] = "CONTAINED";
|
|
1045
|
+
CardStylesType2["FRAMELESS"] = "FRAMELESS";
|
|
1046
|
+
return CardStylesType2;
|
|
1047
|
+
})(CardStylesType || {});
|
|
1048
|
+
var Alignment = /* @__PURE__ */ ((Alignment2) => {
|
|
1049
|
+
Alignment2["START"] = "START";
|
|
1050
|
+
Alignment2["CENTER"] = "CENTER";
|
|
1051
|
+
Alignment2["END"] = "END";
|
|
1052
|
+
return Alignment2;
|
|
1053
|
+
})(Alignment || {});
|
|
1054
|
+
var Layout = /* @__PURE__ */ ((Layout2) => {
|
|
1055
|
+
Layout2["STACKED"] = "STACKED";
|
|
1056
|
+
Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
|
|
1057
|
+
return Layout2;
|
|
1058
|
+
})(Layout || {});
|
|
1015
1059
|
var AppType = /* @__PURE__ */ ((AppType2) => {
|
|
1016
1060
|
AppType2["PRODUCT"] = "PRODUCT";
|
|
1017
1061
|
AppType2["EVENT"] = "EVENT";
|
|
@@ -1277,18 +1321,22 @@ async function discardDraft2(eventId) {
|
|
|
1277
1321
|
0 && (module.exports = {
|
|
1278
1322
|
Alignment,
|
|
1279
1323
|
AppType,
|
|
1324
|
+
AspectRatio,
|
|
1280
1325
|
BackgroundType,
|
|
1281
1326
|
ButtonDataType,
|
|
1327
|
+
CardStylesType,
|
|
1282
1328
|
ConferenceType,
|
|
1283
1329
|
Crop,
|
|
1284
1330
|
DecorationType,
|
|
1285
1331
|
Direction,
|
|
1332
|
+
DividerDataAlignment,
|
|
1286
1333
|
EventStatus,
|
|
1287
1334
|
EventType,
|
|
1288
1335
|
FontType,
|
|
1289
1336
|
GIFType,
|
|
1290
1337
|
InitialExpandedItems,
|
|
1291
1338
|
InputControlType,
|
|
1339
|
+
Layout,
|
|
1292
1340
|
LayoutType,
|
|
1293
1341
|
LineStyle,
|
|
1294
1342
|
LocationType,
|
|
@@ -1296,16 +1344,19 @@ async function discardDraft2(eventId) {
|
|
|
1296
1344
|
NodeType,
|
|
1297
1345
|
NullValue,
|
|
1298
1346
|
Orientation,
|
|
1347
|
+
Placement,
|
|
1299
1348
|
PluginContainerDataAlignment,
|
|
1300
1349
|
PollLayoutDirection,
|
|
1301
1350
|
PollLayoutType,
|
|
1302
1351
|
Position,
|
|
1303
1352
|
RegistrationStatus,
|
|
1304
1353
|
RequestedFields,
|
|
1354
|
+
Resizing,
|
|
1305
1355
|
RsvpStatusOptions,
|
|
1306
1356
|
Source,
|
|
1307
1357
|
State,
|
|
1308
1358
|
Status,
|
|
1359
|
+
StylesPosition,
|
|
1309
1360
|
SubdivisionType,
|
|
1310
1361
|
Target,
|
|
1311
1362
|
TaxType,
|