@wix/auto_sdk_events_notifications 1.0.46 → 1.0.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +37 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +109 -3
- package/build/cjs/index.typings.js +37 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +109 -3
- package/build/cjs/meta.js +37 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +33 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +109 -3
- package/build/es/index.typings.mjs +33 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +109 -3
- package/build/es/meta.mjs +33 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +37 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +109 -3
- package/build/internal/cjs/index.typings.js +37 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +109 -3
- package/build/internal/cjs/meta.js +37 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +33 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +109 -3
- package/build/internal/es/index.typings.mjs +33 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +109 -3
- package/build/internal/es/meta.mjs +33 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1472,7 +1472,9 @@ interface Node extends NodeDataOneOf {
|
|
|
1472
1472
|
blockquoteData?: BlockquoteData;
|
|
1473
1473
|
/** Data for a caption node. */
|
|
1474
1474
|
captionData?: CaptionData;
|
|
1475
|
-
/**
|
|
1475
|
+
/** Data for a layout node. Reserved for future use. */
|
|
1476
|
+
layoutData?: LayoutData;
|
|
1477
|
+
/** Data for a cell node. */
|
|
1476
1478
|
layoutCellData?: LayoutCellData;
|
|
1477
1479
|
/** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
|
|
1478
1480
|
type?: NodeTypeWithLiterals;
|
|
@@ -1537,7 +1539,9 @@ interface NodeDataOneOf {
|
|
|
1537
1539
|
blockquoteData?: BlockquoteData;
|
|
1538
1540
|
/** Data for a caption node. */
|
|
1539
1541
|
captionData?: CaptionData;
|
|
1540
|
-
/**
|
|
1542
|
+
/** Data for a layout node. Reserved for future use. */
|
|
1543
|
+
layoutData?: LayoutData;
|
|
1544
|
+
/** Data for a cell node. */
|
|
1541
1545
|
layoutCellData?: LayoutCellData;
|
|
1542
1546
|
}
|
|
1543
1547
|
declare enum NodeType {
|
|
@@ -3094,6 +3098,108 @@ interface BlockquoteData {
|
|
|
3094
3098
|
interface CaptionData {
|
|
3095
3099
|
textStyle?: TextStyle;
|
|
3096
3100
|
}
|
|
3101
|
+
interface LayoutData {
|
|
3102
|
+
/**
|
|
3103
|
+
* Background color as a hexadecimal value.
|
|
3104
|
+
* @format COLOR_HEX
|
|
3105
|
+
*/
|
|
3106
|
+
backgroundColor?: string | null;
|
|
3107
|
+
/** Background image. */
|
|
3108
|
+
backgroundImage?: BackgroundImage;
|
|
3109
|
+
/**
|
|
3110
|
+
* Border color as a hexadecimal value.
|
|
3111
|
+
* @format COLOR_HEX
|
|
3112
|
+
*/
|
|
3113
|
+
borderColor?: string | null;
|
|
3114
|
+
/** Border width in pixels. */
|
|
3115
|
+
borderWidth?: number | null;
|
|
3116
|
+
/** Border */
|
|
3117
|
+
borderRadius?: number | null;
|
|
3118
|
+
/**
|
|
3119
|
+
* Backdrop color as a hexadecimal value.
|
|
3120
|
+
* @format COLOR_HEX
|
|
3121
|
+
*/
|
|
3122
|
+
backdropColor?: string | null;
|
|
3123
|
+
/** Backdrop image.radius in pixels. */
|
|
3124
|
+
backdropImage?: BackgroundImage;
|
|
3125
|
+
/** Backdrop top padding. */
|
|
3126
|
+
backdropPaddingTop?: number | null;
|
|
3127
|
+
/** Backdrop bottom padding */
|
|
3128
|
+
backdropPaddingBottom?: number | null;
|
|
3129
|
+
/** Horizontal and vertical gap between columns */
|
|
3130
|
+
gap?: number | null;
|
|
3131
|
+
/**
|
|
3132
|
+
* Padding in pixels for cells. Follows CSS order: top, right, bottom, left
|
|
3133
|
+
* @maxSize 4
|
|
3134
|
+
*/
|
|
3135
|
+
cellPadding?: number[];
|
|
3136
|
+
/** Vertical alignment for the cell's items. */
|
|
3137
|
+
cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;
|
|
3138
|
+
/** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */
|
|
3139
|
+
responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
|
|
3140
|
+
/** Size in pixels when responsiveness_behaviour applies */
|
|
3141
|
+
responsivenessBreakpoint?: number | null;
|
|
3142
|
+
}
|
|
3143
|
+
declare enum Scaling {
|
|
3144
|
+
/** Auto image scaling */
|
|
3145
|
+
AUTO = "AUTO",
|
|
3146
|
+
/** Contain image scaling */
|
|
3147
|
+
CONTAIN = "CONTAIN",
|
|
3148
|
+
/** Cover image scaling */
|
|
3149
|
+
COVER = "COVER"
|
|
3150
|
+
}
|
|
3151
|
+
/** @enumType */
|
|
3152
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
3153
|
+
declare enum ImagePosition {
|
|
3154
|
+
/** Image positioned at the center */
|
|
3155
|
+
CENTER = "CENTER",
|
|
3156
|
+
/** Image positioned on the left */
|
|
3157
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
3158
|
+
/** Image positioned on the right */
|
|
3159
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
3160
|
+
/** Image positioned at the center top */
|
|
3161
|
+
TOP = "TOP",
|
|
3162
|
+
/** Image positioned at the top left */
|
|
3163
|
+
TOP_LEFT = "TOP_LEFT",
|
|
3164
|
+
/** Image positioned at the top right */
|
|
3165
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
3166
|
+
/** Image positioned at the center bottom */
|
|
3167
|
+
BOTTOM = "BOTTOM",
|
|
3168
|
+
/** Image positioned at the bottom left */
|
|
3169
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
3170
|
+
/** Image positioned at the bottom right */
|
|
3171
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
3172
|
+
}
|
|
3173
|
+
/** @enumType */
|
|
3174
|
+
type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
3175
|
+
interface BackgroundImage {
|
|
3176
|
+
/** Background image. */
|
|
3177
|
+
media?: Media;
|
|
3178
|
+
/** Background image opacity. */
|
|
3179
|
+
opacity?: number | null;
|
|
3180
|
+
/** Background image scaling. */
|
|
3181
|
+
scaling?: ScalingWithLiterals;
|
|
3182
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
3183
|
+
position?: ImagePositionWithLiterals;
|
|
3184
|
+
}
|
|
3185
|
+
declare enum VerticalAlignmentAlignment {
|
|
3186
|
+
/** Top alignment */
|
|
3187
|
+
TOP = "TOP",
|
|
3188
|
+
/** Middle alignment */
|
|
3189
|
+
MIDDLE = "MIDDLE",
|
|
3190
|
+
/** Bottom alignment */
|
|
3191
|
+
BOTTOM = "BOTTOM"
|
|
3192
|
+
}
|
|
3193
|
+
/** @enumType */
|
|
3194
|
+
type VerticalAlignmentAlignmentWithLiterals = VerticalAlignmentAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
|
|
3195
|
+
declare enum ResponsivenessBehaviour {
|
|
3196
|
+
/** Stacking of columns */
|
|
3197
|
+
STACK = "STACK",
|
|
3198
|
+
/** Wrapping of columns */
|
|
3199
|
+
WRAP = "WRAP"
|
|
3200
|
+
}
|
|
3201
|
+
/** @enumType */
|
|
3202
|
+
type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
|
|
3097
3203
|
interface LayoutCellData {
|
|
3098
3204
|
/** Size of the cell in 12 columns grid. */
|
|
3099
3205
|
colSpan?: number | null;
|
|
@@ -4251,4 +4357,4 @@ interface UpsertNotificationConfig {
|
|
|
4251
4357
|
orderConfirmationWithTicketsLink?: EmailNotificationConfig;
|
|
4252
4358
|
}
|
|
4253
4359
|
|
|
4254
|
-
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, CheckoutType, type CheckoutTypeWithLiterals, 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, type PricingData, 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 RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, 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 TicketsConfirmationMessages, 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 };
|
|
4360
|
+
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, type BackgroundImage, 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, CheckoutType, type CheckoutTypeWithLiterals, 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, ImagePosition, type ImagePositionWithLiterals, 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, type LayoutData, 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, type PricingData, 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, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, type RsvpGuest, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, Scaling, type ScalingWithLiterals, 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 TicketsConfirmationMessages, 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, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, onNotificationConfigCreated, onNotificationConfigUpdated, resolveNotificationConfig, triggerNotification, upsertNotificationConfig };
|
|
@@ -571,6 +571,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
571
571
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
572
572
|
return NullValue2;
|
|
573
573
|
})(NullValue || {});
|
|
574
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
575
|
+
Scaling2["AUTO"] = "AUTO";
|
|
576
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
577
|
+
Scaling2["COVER"] = "COVER";
|
|
578
|
+
return Scaling2;
|
|
579
|
+
})(Scaling || {});
|
|
580
|
+
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
581
|
+
ImagePosition2["CENTER"] = "CENTER";
|
|
582
|
+
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
583
|
+
ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
584
|
+
ImagePosition2["TOP"] = "TOP";
|
|
585
|
+
ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
586
|
+
ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
587
|
+
ImagePosition2["BOTTOM"] = "BOTTOM";
|
|
588
|
+
ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
589
|
+
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
590
|
+
return ImagePosition2;
|
|
591
|
+
})(ImagePosition || {});
|
|
592
|
+
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
593
|
+
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
594
|
+
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
595
|
+
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
596
|
+
return VerticalAlignmentAlignment2;
|
|
597
|
+
})(VerticalAlignmentAlignment || {});
|
|
598
|
+
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
599
|
+
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
600
|
+
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
601
|
+
return ResponsivenessBehaviour2;
|
|
602
|
+
})(ResponsivenessBehaviour || {});
|
|
574
603
|
var Type = /* @__PURE__ */ ((Type2) => {
|
|
575
604
|
Type2["UNKNOWN_BADGE_TYPE"] = "UNKNOWN_BADGE_TYPE";
|
|
576
605
|
Type2["FIRST_PRIORITY"] = "FIRST_PRIORITY";
|
|
@@ -723,6 +752,7 @@ export {
|
|
|
723
752
|
FeeType,
|
|
724
753
|
FontType,
|
|
725
754
|
GIFType,
|
|
755
|
+
ImagePosition,
|
|
726
756
|
InitialExpandedItems,
|
|
727
757
|
InputControlType,
|
|
728
758
|
Layout,
|
|
@@ -742,7 +772,9 @@ export {
|
|
|
742
772
|
PushNotificationType,
|
|
743
773
|
RegistrationStatus,
|
|
744
774
|
Resizing,
|
|
775
|
+
ResponsivenessBehaviour,
|
|
745
776
|
RsvpStatusOptions,
|
|
777
|
+
Scaling,
|
|
746
778
|
Source,
|
|
747
779
|
State,
|
|
748
780
|
Status,
|
|
@@ -755,6 +787,7 @@ export {
|
|
|
755
787
|
Type,
|
|
756
788
|
ValueType,
|
|
757
789
|
VerticalAlignment,
|
|
790
|
+
VerticalAlignmentAlignment,
|
|
758
791
|
ViewMode,
|
|
759
792
|
ViewRole,
|
|
760
793
|
VisitorType,
|