@wix/auto_sdk_events_notifications 1.0.27 → 1.0.29

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.
@@ -783,7 +783,7 @@ interface Money {
783
783
  */
784
784
  amount?: string;
785
785
  /**
786
- * Three-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.
786
+ * 3-letter currency code in [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format. For example, `USD`.
787
787
  * @format CURRENCY
788
788
  */
789
789
  currency?: string;
@@ -1749,7 +1749,7 @@ interface DividerData {
1749
1749
  /** Divider width. */
1750
1750
  width?: WidthWithLiterals;
1751
1751
  /** Divider alignment. */
1752
- alignment?: AlignmentWithLiterals;
1752
+ alignment?: DividerDataAlignmentWithLiterals;
1753
1753
  }
1754
1754
  declare enum LineStyle {
1755
1755
  /** Single Line */
@@ -1773,7 +1773,7 @@ declare enum Width {
1773
1773
  }
1774
1774
  /** @enumType */
1775
1775
  type WidthWithLiterals = Width | 'LARGE' | 'MEDIUM' | 'SMALL';
1776
- declare enum Alignment {
1776
+ declare enum DividerDataAlignment {
1777
1777
  /** Center alignment */
1778
1778
  CENTER = "CENTER",
1779
1779
  /** Left alignment */
@@ -1782,7 +1782,7 @@ declare enum Alignment {
1782
1782
  RIGHT = "RIGHT"
1783
1783
  }
1784
1784
  /** @enumType */
1785
- type AlignmentWithLiterals = Alignment | 'CENTER' | 'LEFT' | 'RIGHT';
1785
+ type DividerDataAlignmentWithLiterals = DividerDataAlignment | 'CENTER' | 'LEFT' | 'RIGHT';
1786
1786
  interface FileData {
1787
1787
  /** Styling for the file's container. */
1788
1788
  containerData?: PluginContainerData;
@@ -1907,7 +1907,7 @@ interface GalleryDataItemDataOneOf {
1907
1907
  }
1908
1908
  interface GalleryOptions {
1909
1909
  /** Gallery layout. */
1910
- layout?: Layout;
1910
+ layout?: GalleryOptionsLayout;
1911
1911
  /** Styling for gallery items. */
1912
1912
  item?: ItemStyle;
1913
1913
  /** Styling for gallery thumbnail images. */
@@ -1967,7 +1967,7 @@ declare enum ThumbnailsAlignment {
1967
1967
  }
1968
1968
  /** @enumType */
1969
1969
  type ThumbnailsAlignmentWithLiterals = ThumbnailsAlignment | 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT' | 'NONE';
1970
- interface Layout {
1970
+ interface GalleryOptionsLayout {
1971
1971
  /** Gallery layout type. */
1972
1972
  type?: LayoutTypeWithLiterals;
1973
1973
  /** Sets whether horizontal scroll is enabled. Defaults to `true` unless the layout `type` is set to `GRID` or `COLLAGE`. */
@@ -2129,7 +2129,7 @@ interface LinkPreviewData {
2129
2129
  /** Styling for the link preview. */
2130
2130
  styles?: LinkPreviewDataStyles;
2131
2131
  }
2132
- declare enum Position {
2132
+ declare enum StylesPosition {
2133
2133
  /** Thumbnail positioned at the start (left in LTR layouts, right in RTL layouts) */
2134
2134
  START = "START",
2135
2135
  /** Thumbnail positioned at the end (right in LTR layouts, left in RTL layouts) */
@@ -2140,7 +2140,7 @@ declare enum Position {
2140
2140
  HIDDEN = "HIDDEN"
2141
2141
  }
2142
2142
  /** @enumType */
2143
- type PositionWithLiterals = Position | 'START' | 'END' | 'TOP' | 'HIDDEN';
2143
+ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HIDDEN';
2144
2144
  interface LinkPreviewDataStyles {
2145
2145
  /**
2146
2146
  * Background color as a hexadecimal value.
@@ -2172,7 +2172,7 @@ interface LinkPreviewDataStyles {
2172
2172
  */
2173
2173
  borderColor?: string | null;
2174
2174
  /** Position of thumbnail. Defaults to `START`. */
2175
- thumbnailPosition?: PositionWithLiterals;
2175
+ thumbnailPosition?: StylesPositionWithLiterals;
2176
2176
  }
2177
2177
  interface MapData {
2178
2178
  /** Styling for the map's container. */
@@ -2526,6 +2526,32 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
2526
2526
  url?: string | null;
2527
2527
  /** An image for the embedded content. */
2528
2528
  image?: Media;
2529
+ /** Whether to hide the image. */
2530
+ hideImage?: boolean | null;
2531
+ /** Whether to hide the title. */
2532
+ hideTitle?: boolean | null;
2533
+ /** Whether to hide the price. */
2534
+ hidePrice?: boolean | null;
2535
+ /** Whether to hide the description (Event and Booking). */
2536
+ hideDescription?: boolean | null;
2537
+ /** Whether to hide the date and time (Event). */
2538
+ hideDateTime?: boolean | null;
2539
+ /** Whether to hide the location (Event). */
2540
+ hideLocation?: boolean | null;
2541
+ /** Whether to hide the duration (Booking). */
2542
+ hideDuration?: boolean | null;
2543
+ /** Whether to hide the button. */
2544
+ hideButton?: boolean | null;
2545
+ /** Whether to hide the ribbon. */
2546
+ hideRibbon?: boolean | null;
2547
+ /** Button styling options. */
2548
+ buttonStyles?: ButtonStyles;
2549
+ /** Image styling options. */
2550
+ imageStyles?: ImageStyles;
2551
+ /** Ribbon styling options. */
2552
+ ribbonStyles?: RibbonStyles;
2553
+ /** Card styling options. */
2554
+ cardStyles?: CardStyles;
2529
2555
  }
2530
2556
  /** @oneof */
2531
2557
  interface AppEmbedDataAppDataOneOf {
@@ -2534,6 +2560,66 @@ interface AppEmbedDataAppDataOneOf {
2534
2560
  /** Data for embedded Wix Events content. */
2535
2561
  eventData?: EventData;
2536
2562
  }
2563
+ declare enum Position {
2564
+ /** Image positioned at the start (left in LTR layouts, right in RTL layouts) */
2565
+ START = "START",
2566
+ /** Image positioned at the end (right in LTR layouts, left in RTL layouts) */
2567
+ END = "END",
2568
+ /** Image positioned at the top */
2569
+ TOP = "TOP"
2570
+ }
2571
+ /** @enumType */
2572
+ type PositionWithLiterals = Position | 'START' | 'END' | 'TOP';
2573
+ declare enum AspectRatio {
2574
+ /** 1:1 aspect ratio */
2575
+ SQUARE = "SQUARE",
2576
+ /** 16:9 aspect ratio */
2577
+ RECTANGLE = "RECTANGLE"
2578
+ }
2579
+ /** @enumType */
2580
+ type AspectRatioWithLiterals = AspectRatio | 'SQUARE' | 'RECTANGLE';
2581
+ declare enum Resizing {
2582
+ /** Fill the container, may crop the image */
2583
+ FILL = "FILL",
2584
+ /** Fit the image within the container */
2585
+ FIT = "FIT"
2586
+ }
2587
+ /** @enumType */
2588
+ type ResizingWithLiterals = Resizing | 'FILL' | 'FIT';
2589
+ declare enum Placement {
2590
+ /** Ribbon placed on the image */
2591
+ IMAGE = "IMAGE",
2592
+ /** Ribbon placed on the product information */
2593
+ PRODUCT_INFO = "PRODUCT_INFO"
2594
+ }
2595
+ /** @enumType */
2596
+ type PlacementWithLiterals = Placement | 'IMAGE' | 'PRODUCT_INFO';
2597
+ declare enum CardStylesType {
2598
+ /** Card with visible border and background */
2599
+ CONTAINED = "CONTAINED",
2600
+ /** Card without visible border */
2601
+ FRAMELESS = "FRAMELESS"
2602
+ }
2603
+ /** @enumType */
2604
+ type CardStylesTypeWithLiterals = CardStylesType | 'CONTAINED' | 'FRAMELESS';
2605
+ declare enum Alignment {
2606
+ /** Content aligned to start (left in LTR layouts, right in RTL layouts) */
2607
+ START = "START",
2608
+ /** Content centered */
2609
+ CENTER = "CENTER",
2610
+ /** Content aligned to end (right in LTR layouts, left in RTL layouts) */
2611
+ END = "END"
2612
+ }
2613
+ /** @enumType */
2614
+ type AlignmentWithLiterals = Alignment | 'START' | 'CENTER' | 'END';
2615
+ declare enum Layout {
2616
+ /** Elements stacked vertically */
2617
+ STACKED = "STACKED",
2618
+ /** Elements arranged horizontally */
2619
+ SIDE_BY_SIDE = "SIDE_BY_SIDE"
2620
+ }
2621
+ /** @enumType */
2622
+ type LayoutWithLiterals = Layout | 'STACKED' | 'SIDE_BY_SIDE';
2537
2623
  declare enum AppType {
2538
2624
  PRODUCT = "PRODUCT",
2539
2625
  EVENT = "EVENT",
@@ -2551,6 +2637,122 @@ interface EventData {
2551
2637
  /** Event location. */
2552
2638
  location?: string | null;
2553
2639
  }
2640
+ interface ButtonStyles {
2641
+ /** Text to display on the button. */
2642
+ buttonText?: string | null;
2643
+ /** Border width in pixels. */
2644
+ borderWidth?: number | null;
2645
+ /** Border radius in pixels. */
2646
+ borderRadius?: number | null;
2647
+ /**
2648
+ * Border color as a hexadecimal value.
2649
+ * @format COLOR_HEX
2650
+ */
2651
+ borderColor?: string | null;
2652
+ /**
2653
+ * Text color as a hexadecimal value.
2654
+ * @format COLOR_HEX
2655
+ */
2656
+ textColor?: string | null;
2657
+ /**
2658
+ * Background color as a hexadecimal value.
2659
+ * @format COLOR_HEX
2660
+ */
2661
+ backgroundColor?: string | null;
2662
+ /**
2663
+ * Border color as a hexadecimal value (hover state).
2664
+ * @format COLOR_HEX
2665
+ */
2666
+ borderColorHover?: string | null;
2667
+ /**
2668
+ * Text color as a hexadecimal value (hover state).
2669
+ * @format COLOR_HEX
2670
+ */
2671
+ textColorHover?: string | null;
2672
+ /**
2673
+ * Background color as a hexadecimal value (hover state).
2674
+ * @format COLOR_HEX
2675
+ */
2676
+ backgroundColorHover?: string | null;
2677
+ /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
2678
+ buttonSize?: string | null;
2679
+ }
2680
+ interface ImageStyles {
2681
+ /** Whether to hide the image. */
2682
+ hideImage?: boolean | null;
2683
+ /** Position of image. Defaults to `START`. */
2684
+ imagePosition?: PositionWithLiterals;
2685
+ /** Aspect ratio for the image. Defaults to `SQUARE`. */
2686
+ aspectRatio?: AspectRatioWithLiterals;
2687
+ /** How the image should be resized. Defaults to `FILL`. */
2688
+ resizing?: ResizingWithLiterals;
2689
+ /**
2690
+ * Image border color as a hexadecimal value.
2691
+ * @format COLOR_HEX
2692
+ */
2693
+ borderColor?: string | null;
2694
+ /** Image border width in pixels. */
2695
+ borderWidth?: number | null;
2696
+ /** Image border radius in pixels. */
2697
+ borderRadius?: number | null;
2698
+ }
2699
+ interface RibbonStyles {
2700
+ /** Text to display on the ribbon. */
2701
+ ribbonText?: string | null;
2702
+ /**
2703
+ * Ribbon background color as a hexadecimal value.
2704
+ * @format COLOR_HEX
2705
+ */
2706
+ backgroundColor?: string | null;
2707
+ /**
2708
+ * Ribbon text color as a hexadecimal value.
2709
+ * @format COLOR_HEX
2710
+ */
2711
+ textColor?: string | null;
2712
+ /**
2713
+ * Ribbon border color as a hexadecimal value.
2714
+ * @format COLOR_HEX
2715
+ */
2716
+ borderColor?: string | null;
2717
+ /** Ribbon border width in pixels. */
2718
+ borderWidth?: number | null;
2719
+ /** Ribbon border radius in pixels. */
2720
+ borderRadius?: number | null;
2721
+ /** Placement of the ribbon. Defaults to `IMAGE`. */
2722
+ ribbonPlacement?: PlacementWithLiterals;
2723
+ }
2724
+ interface CardStyles {
2725
+ /**
2726
+ * Card background color as a hexadecimal value.
2727
+ * @format COLOR_HEX
2728
+ */
2729
+ backgroundColor?: string | null;
2730
+ /**
2731
+ * Card border color as a hexadecimal value.
2732
+ * @format COLOR_HEX
2733
+ */
2734
+ borderColor?: string | null;
2735
+ /** Card border width in pixels. */
2736
+ borderWidth?: number | null;
2737
+ /** Card border radius in pixels. */
2738
+ borderRadius?: number | null;
2739
+ /** Card type. Defaults to `CONTAINED`. */
2740
+ type?: CardStylesTypeWithLiterals;
2741
+ /** Content alignment. Defaults to `START`. */
2742
+ alignment?: AlignmentWithLiterals;
2743
+ /** Layout for title and price. Defaults to `STACKED`. */
2744
+ titlePriceLayout?: LayoutWithLiterals;
2745
+ /**
2746
+ * Title text color as a hexadecimal value.
2747
+ * @format COLOR_HEX
2748
+ */
2749
+ titleColor?: string | null;
2750
+ /**
2751
+ * Text color as a hexadecimal value.
2752
+ * @format COLOR_HEX
2753
+ */
2754
+ textColor?: string | null;
2755
+ }
2554
2756
  interface VideoData {
2555
2757
  /** Styling for the video's container. */
2556
2758
  containerData?: PluginContainerData;
@@ -2897,24 +3099,24 @@ interface OrderConfirmed {
2897
3099
  }
2898
3100
  interface FormResponse {
2899
3101
  /**
2900
- * Input values entered when filling the form.
3102
+ * Form field inputs.
2901
3103
  * @maxSize 200
2902
3104
  */
2903
3105
  inputValues?: InputValue[];
2904
3106
  }
2905
3107
  interface InputValue {
2906
3108
  /**
2907
- * Input field name.
3109
+ * Form field input name.
2908
3110
  * @maxLength 100
2909
3111
  */
2910
3112
  inputName?: string;
2911
3113
  /**
2912
- * Text entered into the input field.
3114
+ * Form field value.
2913
3115
  * @maxLength 5000
2914
3116
  */
2915
3117
  value?: string;
2916
3118
  /**
2917
- * Multiple input values. For example, the array is filled if several checkboxes are ticked.
3119
+ * Form field values.
2918
3120
  * @maxSize 100
2919
3121
  * @maxLength 5000
2920
3122
  */
@@ -2922,11 +3124,11 @@ interface InputValue {
2922
3124
  }
2923
3125
  interface FormattedAddress {
2924
3126
  /**
2925
- * One line address representation.
3127
+ * 1-line address representation.
2926
3128
  * @maxLength 200
2927
3129
  */
2928
3130
  formatted?: string;
2929
- /** Address components (optional). */
3131
+ /** Address components. */
2930
3132
  address?: CommonAddress;
2931
3133
  }
2932
3134
  /** Physical address */
@@ -2983,7 +3185,7 @@ interface StandardDetails {
2983
3185
  iso31662?: string | null;
2984
3186
  }
2985
3187
  declare enum OrderStatus {
2986
- /** Order status is not available for this request fieldset. */
3188
+ /** Order status isn't available for this request fieldset. */
2987
3189
  NA_ORDER_STATUS = "NA_ORDER_STATUS",
2988
3190
  /** Order is confirmed, no payment is required. */
2989
3191
  FREE = "FREE",
@@ -2991,9 +3193,9 @@ declare enum OrderStatus {
2991
3193
  PENDING = "PENDING",
2992
3194
  /** Order is paid. */
2993
3195
  PAID = "PAID",
2994
- /** Order is confirmed but has be paid via offline payment. Status needs to be manually updated to `"PAID"`. */
3196
+ /** Order is confirmed but must be paid via offline payment. Status needs to be manually updated to `"PAID"`. */
2995
3197
  OFFLINE_PENDING = "OFFLINE_PENDING",
2996
- /** Order is awaiting for payment at the cashier. */
3198
+ /** Order is waiting for payment at the cashier. */
2997
3199
  INITIATED = "INITIATED",
2998
3200
  /** Order is canceled. */
2999
3201
  CANCELED = "CANCELED",
@@ -3057,7 +3259,7 @@ interface Ticket {
3057
3259
  canceled?: boolean | null;
3058
3260
  }
3059
3261
  interface CheckIn {
3060
- /** Time of check-in. */
3262
+ /** Time of a ticket's check-in. */
3061
3263
  created?: Date | null;
3062
3264
  }
3063
3265
  interface OnlineConferencingLogin {
@@ -3090,8 +3292,8 @@ interface Invoice {
3090
3292
  * Total amount of a cart after discount, tax, and fees.
3091
3293
  * Grand total is calculated in the following order:
3092
3294
  * 1. Total prices of all items in the cart are calculated.
3093
- * 2. Discount is subtracted from the cart (if applicable).
3094
- * 3. Tax is added (if applicable).
3295
+ * 2. Discount is subtracted from the cart, if applicable.
3296
+ * 3. Tax is added, if applicable.
3095
3297
  * 4. Wix ticket service fee is added.
3096
3298
  */
3097
3299
  grandTotal?: Money;
@@ -3100,7 +3302,7 @@ interface Invoice {
3100
3302
  * @readonly
3101
3303
  */
3102
3304
  fees?: Fee[];
3103
- /** Total revenue, excluding fees. (Taxes and payment provider fees are not deducted). */
3305
+ /** Total revenue, excluding fees. Taxes and payment provider fees aren't deducted. */
3104
3306
  revenue?: Money;
3105
3307
  /** Invoice preview URL. Only returned if the order is paid. */
3106
3308
  previewUrl?: string | null;
@@ -3933,4 +4135,4 @@ interface UpsertNotificationConfig {
3933
4135
  orderConfirmationWithTicketsLink?: EmailNotificationConfig;
3934
4136
  }
3935
4137
 
3936
- export { type ActionEvent, type Address, 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 CheckIn, type CheckoutFormMessages, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonStreetAddress, type CommonSubdivision, ConferenceType, type ConferenceTypeWithLiterals, type CouponDiscount, Crop, type CropWithLiterals, type Dashboard, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, type Dimensions, Direction, type DirectionWithLiterals, type Discount, type DiscountItem, type DiscountItemDiscountOneOf, type DividerData, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmailNotificationConfig, EmailNotificationReminderTime, type EmailNotificationReminderTimeWithLiterals, EmailNotificationType, type EmailNotificationTypeWithLiterals, type EmailTemplate, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCopied, type EventData, type EventDeleted, type EventDisplaySettings, type EventEnded, type EventGuests, type EventMetadata, type EventReminder, type EventStarted, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Fee, FeeName, type FeeNameWithLiterals, FeeType, type FeeTypeWithLiterals, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type FormResponse, type FormattedAddress, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryDataItem, type GalleryDataItemDataOneOf, type GalleryOptions, 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 InputValue, type Invoice, type Item, type ItemStyle, type Keyword, type Label, type LabellingSettings, type Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, 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 Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationConfig, type NotificationConfigCreatedEnvelope, type NotificationConfigUpdatedEnvelope, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingLogin, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderCanceled, type OrderConfirmed, type OrderEmailAdded, type OrderGuest, type OrderPaid, OrderStatus, type OrderStatusWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf, type ParagraphData, type PercentDiscount, type Permissions, 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, PushNotificationType, type PushNotificationTypeWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, type ResolveEmailNotificationConfigRequest, type ResolveEmailNotificationConfigResponse, type ResolveNotificationConfigRequest, type ResolveNotificationConfigResponse, type ResponseConfirmation, type RestoreInfo, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpFormMessages, type RsvpGuest, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type SiteUrl, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type StandardDetails, 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 Tax, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticket, type TicketGuest, type TicketPdfResolveDelayed, type TicketPdfResolved, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsUnavailableMessages, type TimeDuration, type TriggerNotificationOptions, type TriggerNotificationOptionsGuestsOneOf, type TriggerNotificationOptionsNotificationOneOf, type TriggerNotificationRequest, type TriggerNotificationRequestGuestsOneOf, type TriggerNotificationRequestNotificationOneOf, type TriggerNotificationResponse, Type, type TypeWithLiterals, type UpsertNotificationConfig, type UpsertNotificationConfigRequest, type UpsertNotificationConfigResponse, type V1Link, type V1LinkDataOneOf, 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, onNotificationConfigCreated, onNotificationConfigUpdated, resolveNotificationConfig, triggerNotification, upsertNotificationConfig };
4138
+ export { type ActionEvent, type Address, 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 CheckIn, type CheckoutFormMessages, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonStreetAddress, type CommonSubdivision, ConferenceType, type ConferenceTypeWithLiterals, type CouponDiscount, Crop, type CropWithLiterals, type Dashboard, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, type Dimensions, Direction, type DirectionWithLiterals, type Discount, type DiscountItem, type DiscountItemDiscountOneOf, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmailNotificationConfig, EmailNotificationReminderTime, type EmailNotificationReminderTimeWithLiterals, EmailNotificationType, type EmailNotificationTypeWithLiterals, type EmailTemplate, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCopied, type EventData, type EventDeleted, type EventDisplaySettings, type EventEnded, type EventGuests, type EventMetadata, type EventReminder, type EventStarted, EventStatus, type EventStatusWithLiterals, EventType, type EventTypeWithLiterals, type EventUpdated, type ExternalEvent, type Fee, FeeName, type FeeNameWithLiterals, FeeType, type FeeTypeWithLiterals, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type FormResponse, type FormattedAddress, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryDataItem, type GalleryDataItemDataOneOf, type GalleryOptions, type GalleryOptionsLayout, 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 InputValue, type Invoice, type Item, type ItemStyle, type Keyword, type Label, type LabellingSettings, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, 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 Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, type NotificationConfig, type NotificationConfigCreatedEnvelope, type NotificationConfigUpdatedEnvelope, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingLogin, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderCanceled, type OrderConfirmed, type OrderEmailAdded, type OrderGuest, type OrderPaid, OrderStatus, type OrderStatusWithLiterals, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type PaidPlanDiscount, type PaidPlanDiscountDiscountOneOf, type ParagraphData, type PercentDiscount, type Permissions, 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, PushNotificationType, type PushNotificationTypeWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, Resizing, type ResizingWithLiterals, type ResolveEmailNotificationConfigRequest, type ResolveEmailNotificationConfigResponse, type ResolveNotificationConfigRequest, type ResolveNotificationConfigResponse, type ResponseConfirmation, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpFormMessages, type RsvpGuest, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type ScheduleConfig, type Scheduling, type SeoSchema, type SeoSettings, type Settings, type SiteUrl, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type StandardDetails, 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 Tax, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Ticket, type TicketGuest, type TicketPdfResolveDelayed, type TicketPdfResolved, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsUnavailableMessages, type TimeDuration, type TriggerNotificationOptions, type TriggerNotificationOptionsGuestsOneOf, type TriggerNotificationOptionsNotificationOneOf, type TriggerNotificationRequest, type TriggerNotificationRequestGuestsOneOf, type TriggerNotificationRequestNotificationOneOf, type TriggerNotificationResponse, Type, type TypeWithLiterals, type UpsertNotificationConfig, type UpsertNotificationConfigRequest, type UpsertNotificationConfigResponse, type V1Link, type V1LinkDataOneOf, 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, onNotificationConfigCreated, onNotificationConfigUpdated, resolveNotificationConfig, triggerNotification, upsertNotificationConfig };
@@ -376,12 +376,12 @@ var Width = /* @__PURE__ */ ((Width2) => {
376
376
  Width2["SMALL"] = "SMALL";
377
377
  return Width2;
378
378
  })(Width || {});
379
- var Alignment = /* @__PURE__ */ ((Alignment2) => {
380
- Alignment2["CENTER"] = "CENTER";
381
- Alignment2["LEFT"] = "LEFT";
382
- Alignment2["RIGHT"] = "RIGHT";
383
- return Alignment2;
384
- })(Alignment || {});
379
+ var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
380
+ DividerDataAlignment2["CENTER"] = "CENTER";
381
+ DividerDataAlignment2["LEFT"] = "LEFT";
382
+ DividerDataAlignment2["RIGHT"] = "RIGHT";
383
+ return DividerDataAlignment2;
384
+ })(DividerDataAlignment || {});
385
385
  var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
386
386
  ViewMode2["NONE"] = "NONE";
387
387
  ViewMode2["FULL"] = "FULL";
@@ -429,13 +429,13 @@ var Source = /* @__PURE__ */ ((Source2) => {
429
429
  Source2["ADSENSE"] = "ADSENSE";
430
430
  return Source2;
431
431
  })(Source || {});
432
- var Position = /* @__PURE__ */ ((Position2) => {
433
- Position2["START"] = "START";
434
- Position2["END"] = "END";
435
- Position2["TOP"] = "TOP";
436
- Position2["HIDDEN"] = "HIDDEN";
437
- return Position2;
438
- })(Position || {});
432
+ var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
433
+ StylesPosition2["START"] = "START";
434
+ StylesPosition2["END"] = "END";
435
+ StylesPosition2["TOP"] = "TOP";
436
+ StylesPosition2["HIDDEN"] = "HIDDEN";
437
+ return StylesPosition2;
438
+ })(StylesPosition || {});
439
439
  var MapType = /* @__PURE__ */ ((MapType2) => {
440
440
  MapType2["ROADMAP"] = "ROADMAP";
441
441
  MapType2["SATELITE"] = "SATELITE";
@@ -491,6 +491,43 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
491
491
  FontType2["EM"] = "EM";
492
492
  return FontType2;
493
493
  })(FontType || {});
494
+ var Position = /* @__PURE__ */ ((Position2) => {
495
+ Position2["START"] = "START";
496
+ Position2["END"] = "END";
497
+ Position2["TOP"] = "TOP";
498
+ return Position2;
499
+ })(Position || {});
500
+ var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
501
+ AspectRatio2["SQUARE"] = "SQUARE";
502
+ AspectRatio2["RECTANGLE"] = "RECTANGLE";
503
+ return AspectRatio2;
504
+ })(AspectRatio || {});
505
+ var Resizing = /* @__PURE__ */ ((Resizing2) => {
506
+ Resizing2["FILL"] = "FILL";
507
+ Resizing2["FIT"] = "FIT";
508
+ return Resizing2;
509
+ })(Resizing || {});
510
+ var Placement = /* @__PURE__ */ ((Placement2) => {
511
+ Placement2["IMAGE"] = "IMAGE";
512
+ Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
513
+ return Placement2;
514
+ })(Placement || {});
515
+ var CardStylesType = /* @__PURE__ */ ((CardStylesType2) => {
516
+ CardStylesType2["CONTAINED"] = "CONTAINED";
517
+ CardStylesType2["FRAMELESS"] = "FRAMELESS";
518
+ return CardStylesType2;
519
+ })(CardStylesType || {});
520
+ var Alignment = /* @__PURE__ */ ((Alignment2) => {
521
+ Alignment2["START"] = "START";
522
+ Alignment2["CENTER"] = "CENTER";
523
+ Alignment2["END"] = "END";
524
+ return Alignment2;
525
+ })(Alignment || {});
526
+ var Layout = /* @__PURE__ */ ((Layout2) => {
527
+ Layout2["STACKED"] = "STACKED";
528
+ Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
529
+ return Layout2;
530
+ })(Layout || {});
494
531
  var AppType = /* @__PURE__ */ ((AppType2) => {
495
532
  AppType2["PRODUCT"] = "PRODUCT";
496
533
  AppType2["EVENT"] = "EVENT";
@@ -652,12 +689,15 @@ async function upsertNotificationConfig2(_id, notificationConfig) {
652
689
  export {
653
690
  Alignment,
654
691
  AppType,
692
+ AspectRatio,
655
693
  BackgroundType,
656
694
  ButtonDataType,
695
+ CardStylesType,
657
696
  ConferenceType,
658
697
  Crop,
659
698
  DecorationType,
660
699
  Direction,
700
+ DividerDataAlignment,
661
701
  EmailNotificationReminderTime,
662
702
  EmailNotificationType,
663
703
  EventStatus,
@@ -668,6 +708,7 @@ export {
668
708
  GIFType,
669
709
  InitialExpandedItems,
670
710
  InputControlType,
711
+ Layout,
671
712
  LayoutType,
672
713
  LineStyle,
673
714
  LocationType,
@@ -676,16 +717,19 @@ export {
676
717
  NullValue,
677
718
  OrderStatus,
678
719
  Orientation,
720
+ Placement,
679
721
  PluginContainerDataAlignment,
680
722
  PollLayoutDirection,
681
723
  PollLayoutType,
682
724
  Position,
683
725
  PushNotificationType,
684
726
  RegistrationStatus,
727
+ Resizing,
685
728
  RsvpStatusOptions,
686
729
  Source,
687
730
  State,
688
731
  Status,
732
+ StylesPosition,
689
733
  SubdivisionType,
690
734
  Target,
691
735
  TaxType,