@wix/auto_sdk_events_wix-events-v-2 1.0.59 → 1.0.61
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 +140 -12
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +112 -5
- package/build/cjs/index.typings.js +120 -10
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +112 -5
- package/build/cjs/meta.js +120 -10
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +136 -12
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +112 -5
- package/build/es/index.typings.mjs +116 -10
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +112 -5
- package/build/es/meta.mjs +116 -10
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +140 -12
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +112 -5
- package/build/internal/cjs/index.typings.js +120 -10
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +112 -5
- package/build/internal/cjs/meta.js +120 -10
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +136 -12
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +112 -5
- package/build/internal/es/index.typings.mjs +116 -10
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +112 -5
- package/build/internal/es/meta.mjs +116 -10
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1282,7 +1282,9 @@ interface Node extends NodeDataOneOf {
|
|
|
1282
1282
|
blockquoteData?: BlockquoteData;
|
|
1283
1283
|
/** Data for a caption node. */
|
|
1284
1284
|
captionData?: CaptionData;
|
|
1285
|
-
/**
|
|
1285
|
+
/** Data for a layout node. Reserved for future use. */
|
|
1286
|
+
layoutData?: LayoutData;
|
|
1287
|
+
/** Data for a cell node. */
|
|
1286
1288
|
layoutCellData?: LayoutCellData;
|
|
1287
1289
|
/** 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. */
|
|
1288
1290
|
type?: NodeTypeWithLiterals;
|
|
@@ -1347,7 +1349,9 @@ interface NodeDataOneOf {
|
|
|
1347
1349
|
blockquoteData?: BlockquoteData;
|
|
1348
1350
|
/** Data for a caption node. */
|
|
1349
1351
|
captionData?: CaptionData;
|
|
1350
|
-
/**
|
|
1352
|
+
/** Data for a layout node. Reserved for future use. */
|
|
1353
|
+
layoutData?: LayoutData;
|
|
1354
|
+
/** Data for a cell node. */
|
|
1351
1355
|
layoutCellData?: LayoutCellData;
|
|
1352
1356
|
}
|
|
1353
1357
|
declare enum NodeType {
|
|
@@ -1970,10 +1974,11 @@ interface HTMLDataDataOneOf {
|
|
|
1970
1974
|
}
|
|
1971
1975
|
declare enum Source {
|
|
1972
1976
|
HTML = "HTML",
|
|
1973
|
-
ADSENSE = "ADSENSE"
|
|
1977
|
+
ADSENSE = "ADSENSE",
|
|
1978
|
+
AI = "AI"
|
|
1974
1979
|
}
|
|
1975
1980
|
/** @enumType */
|
|
1976
|
-
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE';
|
|
1981
|
+
type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
|
|
1977
1982
|
interface ImageData {
|
|
1978
1983
|
/** Styling for the image's container. */
|
|
1979
1984
|
containerData?: PluginContainerData;
|
|
@@ -2903,6 +2908,108 @@ interface BlockquoteData {
|
|
|
2903
2908
|
interface CaptionData {
|
|
2904
2909
|
textStyle?: TextStyle;
|
|
2905
2910
|
}
|
|
2911
|
+
interface LayoutData {
|
|
2912
|
+
/**
|
|
2913
|
+
* Background color as a hexadecimal value.
|
|
2914
|
+
* @format COLOR_HEX
|
|
2915
|
+
*/
|
|
2916
|
+
backgroundColor?: string | null;
|
|
2917
|
+
/** Background image. */
|
|
2918
|
+
backgroundImage?: BackgroundImage;
|
|
2919
|
+
/**
|
|
2920
|
+
* Border color as a hexadecimal value.
|
|
2921
|
+
* @format COLOR_HEX
|
|
2922
|
+
*/
|
|
2923
|
+
borderColor?: string | null;
|
|
2924
|
+
/** Border width in pixels. */
|
|
2925
|
+
borderWidth?: number | null;
|
|
2926
|
+
/** Border */
|
|
2927
|
+
borderRadius?: number | null;
|
|
2928
|
+
/**
|
|
2929
|
+
* Backdrop color as a hexadecimal value.
|
|
2930
|
+
* @format COLOR_HEX
|
|
2931
|
+
*/
|
|
2932
|
+
backdropColor?: string | null;
|
|
2933
|
+
/** Backdrop image.radius in pixels. */
|
|
2934
|
+
backdropImage?: BackgroundImage;
|
|
2935
|
+
/** Backdrop top padding. */
|
|
2936
|
+
backdropPaddingTop?: number | null;
|
|
2937
|
+
/** Backdrop bottom padding */
|
|
2938
|
+
backdropPaddingBottom?: number | null;
|
|
2939
|
+
/** Horizontal and vertical gap between columns */
|
|
2940
|
+
gap?: number | null;
|
|
2941
|
+
/**
|
|
2942
|
+
* Padding in pixels for cells. Follows CSS order: top, right, bottom, left
|
|
2943
|
+
* @maxSize 4
|
|
2944
|
+
*/
|
|
2945
|
+
cellPadding?: number[];
|
|
2946
|
+
/** Vertical alignment for the cell's items. */
|
|
2947
|
+
cellVerticalAlignment?: VerticalAlignmentAlignmentWithLiterals;
|
|
2948
|
+
/** Responsiveness behaviour of columns when responsiveness applies. Either stacks or wrappers. */
|
|
2949
|
+
responsivenessBehaviour?: ResponsivenessBehaviourWithLiterals;
|
|
2950
|
+
/** Size in pixels when responsiveness_behaviour applies */
|
|
2951
|
+
responsivenessBreakpoint?: number | null;
|
|
2952
|
+
}
|
|
2953
|
+
declare enum Scaling {
|
|
2954
|
+
/** Auto image scaling */
|
|
2955
|
+
AUTO = "AUTO",
|
|
2956
|
+
/** Contain image scaling */
|
|
2957
|
+
CONTAIN = "CONTAIN",
|
|
2958
|
+
/** Cover image scaling */
|
|
2959
|
+
COVER = "COVER"
|
|
2960
|
+
}
|
|
2961
|
+
/** @enumType */
|
|
2962
|
+
type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
|
|
2963
|
+
declare enum ImagePosition {
|
|
2964
|
+
/** Image positioned at the center */
|
|
2965
|
+
CENTER = "CENTER",
|
|
2966
|
+
/** Image positioned on the left */
|
|
2967
|
+
CENTER_LEFT = "CENTER_LEFT",
|
|
2968
|
+
/** Image positioned on the right */
|
|
2969
|
+
CENTER_RIGHT = "CENTER_RIGHT",
|
|
2970
|
+
/** Image positioned at the center top */
|
|
2971
|
+
TOP = "TOP",
|
|
2972
|
+
/** Image positioned at the top left */
|
|
2973
|
+
TOP_LEFT = "TOP_LEFT",
|
|
2974
|
+
/** Image positioned at the top right */
|
|
2975
|
+
TOP_RIGHT = "TOP_RIGHT",
|
|
2976
|
+
/** Image positioned at the center bottom */
|
|
2977
|
+
BOTTOM = "BOTTOM",
|
|
2978
|
+
/** Image positioned at the bottom left */
|
|
2979
|
+
BOTTOM_LEFT = "BOTTOM_LEFT",
|
|
2980
|
+
/** Image positioned at the bottom right */
|
|
2981
|
+
BOTTOM_RIGHT = "BOTTOM_RIGHT"
|
|
2982
|
+
}
|
|
2983
|
+
/** @enumType */
|
|
2984
|
+
type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
|
|
2985
|
+
interface BackgroundImage {
|
|
2986
|
+
/** Background image. */
|
|
2987
|
+
media?: Media;
|
|
2988
|
+
/** Background image opacity. */
|
|
2989
|
+
opacity?: number | null;
|
|
2990
|
+
/** Background image scaling. */
|
|
2991
|
+
scaling?: ScalingWithLiterals;
|
|
2992
|
+
/** Position of background. Defaults to `CENTER`. */
|
|
2993
|
+
position?: ImagePositionWithLiterals;
|
|
2994
|
+
}
|
|
2995
|
+
declare enum VerticalAlignmentAlignment {
|
|
2996
|
+
/** Top alignment */
|
|
2997
|
+
TOP = "TOP",
|
|
2998
|
+
/** Middle alignment */
|
|
2999
|
+
MIDDLE = "MIDDLE",
|
|
3000
|
+
/** Bottom alignment */
|
|
3001
|
+
BOTTOM = "BOTTOM"
|
|
3002
|
+
}
|
|
3003
|
+
/** @enumType */
|
|
3004
|
+
type VerticalAlignmentAlignmentWithLiterals = VerticalAlignmentAlignment | 'TOP' | 'MIDDLE' | 'BOTTOM';
|
|
3005
|
+
declare enum ResponsivenessBehaviour {
|
|
3006
|
+
/** Stacking of columns */
|
|
3007
|
+
STACK = "STACK",
|
|
3008
|
+
/** Wrapping of columns */
|
|
3009
|
+
WRAP = "WRAP"
|
|
3010
|
+
}
|
|
3011
|
+
/** @enumType */
|
|
3012
|
+
type ResponsivenessBehaviourWithLiterals = ResponsivenessBehaviour | 'STACK' | 'WRAP';
|
|
2906
3013
|
interface LayoutCellData {
|
|
2907
3014
|
/** Size of the cell in 12 columns grid. */
|
|
2908
3015
|
colSpan?: number | null;
|
|
@@ -4708,4 +4815,4 @@ interface GetEventBySlugOptions {
|
|
|
4708
4815
|
fields?: RequestedFieldsWithLiterals[];
|
|
4709
4816
|
}
|
|
4710
4817
|
|
|
4711
|
-
export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type AgendaSettings, 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 BadgeList, BadgeTypeType, type BadgeTypeTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkCancelEventsByFilterOptions, type BulkCancelEventsByFilterRequest, type BulkCancelEventsByFilterResponse, type BulkDeleteEventsByFilterOptions, type BulkDeleteEventsByFilterRequest, type BulkDeleteEventsByFilterResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarUrls, type CancelEventApplicationErrors, type CancelEventOptions, type CancelEventRequest, type CancelEventResponse, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CloneEventFromOtherSiteRequest, type CloneEventFromOtherSiteResponse, type CloneEventOptions, type CloneEventRequest, type CloneEventResponse, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonCursors, type CommonPaging, type CommonPagingMetadataV2, type CommonQueryV2, type CommonQueryV2PagingMethodOneOf, CommonSortOrder, type CommonSortOrderWithLiterals, type CommonSorting, ConferenceTypeType, type ConferenceTypeTypeWithLiterals, type CountEventsByStatusApplicationErrors, type CountEventsByStatusOptions, type CountEventsByStatusRequest, type CountEventsByStatusResponse, type CreateEventApplicationErrors, type CreateEventOptions, type CreateEventRequest, type CreateEventResponse, type CreateEventValidationErrors, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type DateAndTimeSettings, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteEventRequest, type DeleteEventResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCanceledEnvelope, type EventCategories, type EventCategory, type EventCloned, type EventClonedEnvelope, type EventCreatedEnvelope, type EventData, type EventDeletedEnvelope, type EventDisplaySettings, type EventEnded, type EventEndedEnvelope, type EventMetadata, type EventPublished, type EventPublishedEnvelope, type EventReminder, type EventReminderEnvelope, type EventStarted, type EventStartedEnvelope, type EventUpdatedEnvelope, type EventsMoney, type EventsQueryBuilder, type EventsQueryResult, type ExportEventsRequest, type ExportEventsResponse, type ExternalRegistration, type FacetCounts, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FindEventRequest, type FindEventRequestFindByOneOf, type FindEventResponse, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type Formatted, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetEventBySlugOptions, type GetEventBySlugRequest, type GetEventBySlugResponse, type GetEventOptions, type GetEventRequest, type GetEventResponse, type Gradient, type GuestListSettings, GuestTypeType, type GuestTypeTypeWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, InitialRegistrationTypeType, type InitialRegistrationTypeTypeWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, Layout, type LayoutCellData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListEventsByCategoryOptions, type ListEventsByCategoryRequest, type ListEventsByCategoryResponse, type ListUserEventsRequest, type ListUserEventsResponse, type ListValue, type Location, LocationType, type LocationTypeWithLiterals, 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, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, 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, type PublishDraftEventApplicationErrors, type PublishDraftEventOptions, type PublishDraftEventRequest, type PublishDraftEventResponse, type QueryEventsApplicationErrors, type QueryEventsOptions, type QueryEventsRequest, type QueryEventsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatusStatus, type RegistrationStatusStatusWithLiterals, RegistrationTypeType, type RegistrationTypeTypeWithLiterals, type Rel, Relation, type RelationWithLiterals, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponseType, type ResponseTypeWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpConfirmationMessages, type RsvpFormMessages, type RsvpFormMessagesNegativeResponseConfirmation, type RsvpFormMessagesPositiveResponseConfirmation, type RsvpRegistration, type Rsvps, type SeoSchema, type SeoSettings, type Settings, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type Summaries, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxSettings, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Tickets, type TicketsConfirmationMessages, type TicketsRegistration, type TicketsUnavailableMessages, type TimeDuration, Type, type TypeWithLiterals, type UpdateEventApplicationErrors, type UpdateEventOptions, type UpdateEventRequest, type UpdateEventResponse, type UpdateEventValidationErrors, type UserFilter, ValueType, type ValueTypeWithLiterals, VerticalAlignment, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkCancelEventsByFilter, bulkDeleteEventsByFilter, cancelEvent, cloneEvent, countEventsByStatus, createEvent, deleteEvent, getEvent, getEventBySlug, listEventsByCategory, onEventCanceled, onEventCloned, onEventCreated, onEventDeleted, onEventEnded, onEventPublished, onEventReminder, onEventStarted, onEventUpdated, publishDraftEvent, queryEvents, updateEvent };
|
|
4818
|
+
export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type AgendaSettings, 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 BadgeList, BadgeTypeType, type BadgeTypeTypeWithLiterals, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkCancelEventsByFilterOptions, type BulkCancelEventsByFilterRequest, type BulkCancelEventsByFilterResponse, type BulkDeleteEventsByFilterOptions, type BulkDeleteEventsByFilterRequest, type BulkDeleteEventsByFilterResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarUrls, type CancelEventApplicationErrors, type CancelEventOptions, type CancelEventRequest, type CancelEventResponse, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type CellStyle, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CloneEventFromOtherSiteRequest, type CloneEventFromOtherSiteResponse, type CloneEventOptions, type CloneEventRequest, type CloneEventResponse, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonCursors, type CommonPaging, type CommonPagingMetadataV2, type CommonQueryV2, type CommonQueryV2PagingMethodOneOf, CommonSortOrder, type CommonSortOrderWithLiterals, type CommonSorting, ConferenceTypeType, type ConferenceTypeTypeWithLiterals, type CountEventsByStatusApplicationErrors, type CountEventsByStatusOptions, type CountEventsByStatusRequest, type CountEventsByStatusResponse, type CreateEventApplicationErrors, type CreateEventOptions, type CreateEventRequest, type CreateEventResponse, type CreateEventValidationErrors, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type DateAndTimeSettings, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteEventRequest, type DeleteEventResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCanceledEnvelope, type EventCategories, type EventCategory, type EventCloned, type EventClonedEnvelope, type EventCreatedEnvelope, type EventData, type EventDeletedEnvelope, type EventDisplaySettings, type EventEnded, type EventEndedEnvelope, type EventMetadata, type EventPublished, type EventPublishedEnvelope, type EventReminder, type EventReminderEnvelope, type EventStarted, type EventStartedEnvelope, type EventUpdatedEnvelope, type EventsMoney, type EventsQueryBuilder, type EventsQueryResult, type ExportEventsRequest, type ExportEventsResponse, type ExternalRegistration, type FacetCounts, type Feed, type FileData, type FileSource, type FileSourceDataOneOf, type FindEventRequest, type FindEventRequestFindByOneOf, type FindEventResponse, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type Formatted, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetEventBySlugOptions, type GetEventBySlugRequest, type GetEventBySlugResponse, type GetEventOptions, type GetEventRequest, type GetEventResponse, type Gradient, type GuestListSettings, GuestTypeType, type GuestTypeTypeWithLiterals, 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, InitialRegistrationTypeType, type InitialRegistrationTypeTypeWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type Item, type ItemDataOneOf, 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 LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListEventsByCategoryOptions, type ListEventsByCategoryRequest, type ListEventsByCategoryResponse, type ListUserEventsRequest, type ListUserEventsResponse, type ListValue, type Location, LocationType, type LocationTypeWithLiterals, 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, NullValue, type NullValueWithLiterals, type Occurrence, type Oembed, type OnlineConferencing, type OnlineConferencingSession, type Option, type OptionDesign, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type Paging, type PagingMetadataV2, type ParagraphData, 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, type PublishDraftEventApplicationErrors, type PublishDraftEventOptions, type PublishDraftEventRequest, type PublishDraftEventResponse, type QueryEventsApplicationErrors, type QueryEventsOptions, type QueryEventsRequest, type QueryEventsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatusStatus, type RegistrationStatusStatusWithLiterals, RegistrationTypeType, type RegistrationTypeTypeWithLiterals, type Rel, Relation, type RelationWithLiterals, RequestedFields, type RequestedFieldsWithLiterals, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponseType, type ResponseTypeWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpConfirmationMessages, type RsvpFormMessages, type RsvpFormMessagesNegativeResponseConfirmation, type RsvpFormMessagesPositiveResponseConfirmation, type RsvpRegistration, type Rsvps, Scaling, type ScalingWithLiterals, type SeoSchema, type SeoSettings, type Settings, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, Status, type StatusWithLiterals, type StreetAddress, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionType, type SubdivisionTypeWithLiterals, type Summaries, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxSettings, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type Tickets, type TicketsConfirmationMessages, type TicketsRegistration, type TicketsUnavailableMessages, type TimeDuration, Type, type TypeWithLiterals, type UpdateEventApplicationErrors, type UpdateEventOptions, type UpdateEventRequest, type UpdateEventResponse, type UpdateEventValidationErrors, type UserFilter, ValueType, type ValueTypeWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, bulkCancelEventsByFilter, bulkDeleteEventsByFilter, cancelEvent, cloneEvent, countEventsByStatus, createEvent, deleteEvent, getEvent, getEventBySlug, listEventsByCategory, onEventCanceled, onEventCloned, onEventCreated, onEventDeleted, onEventEnded, onEventPublished, onEventReminder, onEventStarted, onEventUpdated, publishDraftEvent, queryEvents, updateEvent };
|
|
@@ -134,7 +134,13 @@ function createEvent(payload) {
|
|
|
134
134
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
135
135
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
136
136
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
137
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
137
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
138
|
+
{
|
|
139
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
143
|
+
}
|
|
138
144
|
]
|
|
139
145
|
}
|
|
140
146
|
]);
|
|
@@ -207,7 +213,13 @@ function createEvent(payload) {
|
|
|
207
213
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
208
214
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
209
215
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
210
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
216
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
217
|
+
{
|
|
218
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
222
|
+
}
|
|
211
223
|
]
|
|
212
224
|
}
|
|
213
225
|
])
|
|
@@ -275,7 +287,13 @@ function cloneEvent(payload) {
|
|
|
275
287
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
276
288
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
277
289
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
278
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
290
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
291
|
+
{
|
|
292
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
296
|
+
}
|
|
279
297
|
]
|
|
280
298
|
}
|
|
281
299
|
]);
|
|
@@ -348,7 +366,13 @@ function cloneEvent(payload) {
|
|
|
348
366
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
349
367
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
350
368
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
351
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
369
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
370
|
+
{
|
|
371
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
375
|
+
}
|
|
352
376
|
]
|
|
353
377
|
}
|
|
354
378
|
])
|
|
@@ -416,7 +440,13 @@ function updateEvent(payload) {
|
|
|
416
440
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
417
441
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
418
442
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
419
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
443
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
444
|
+
{
|
|
445
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
449
|
+
}
|
|
420
450
|
]
|
|
421
451
|
}
|
|
422
452
|
]);
|
|
@@ -489,7 +519,13 @@ function updateEvent(payload) {
|
|
|
489
519
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
490
520
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
491
521
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
492
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
522
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
523
|
+
{
|
|
524
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
528
|
+
}
|
|
493
529
|
]
|
|
494
530
|
}
|
|
495
531
|
])
|
|
@@ -569,7 +605,13 @@ function publishDraftEvent(payload) {
|
|
|
569
605
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
570
606
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
571
607
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
572
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
608
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
609
|
+
{
|
|
610
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
614
|
+
}
|
|
573
615
|
]
|
|
574
616
|
}
|
|
575
617
|
])
|
|
@@ -649,7 +691,13 @@ function cancelEvent(payload) {
|
|
|
649
691
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
650
692
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
651
693
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
652
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
694
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
695
|
+
{
|
|
696
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
700
|
+
}
|
|
653
701
|
]
|
|
654
702
|
}
|
|
655
703
|
])
|
|
@@ -794,6 +842,12 @@ function queryEvents(payload) {
|
|
|
794
842
|
{ path: "events.description.nodes.audioData.audio.duration" },
|
|
795
843
|
{
|
|
796
844
|
path: "events.description.nodes.audioData.coverImage.duration"
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
path: "events.description.nodes.layoutData.backgroundImage.media.duration"
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
path: "events.description.nodes.layoutData.backdropImage.media.duration"
|
|
797
851
|
}
|
|
798
852
|
]
|
|
799
853
|
}
|
|
@@ -897,6 +951,12 @@ function listEventsByCategory(payload) {
|
|
|
897
951
|
{ path: "events.description.nodes.audioData.audio.duration" },
|
|
898
952
|
{
|
|
899
953
|
path: "events.description.nodes.audioData.coverImage.duration"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
path: "events.description.nodes.layoutData.backgroundImage.media.duration"
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
path: "events.description.nodes.layoutData.backdropImage.media.duration"
|
|
900
960
|
}
|
|
901
961
|
]
|
|
902
962
|
}
|
|
@@ -977,7 +1037,13 @@ function getEvent(payload) {
|
|
|
977
1037
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
978
1038
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
979
1039
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
980
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
1040
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
1041
|
+
{
|
|
1042
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
1046
|
+
}
|
|
981
1047
|
]
|
|
982
1048
|
}
|
|
983
1049
|
])
|
|
@@ -1057,7 +1123,13 @@ function getEventBySlug(payload) {
|
|
|
1057
1123
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
1058
1124
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
1059
1125
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
1060
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
1126
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
1127
|
+
{
|
|
1128
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
1132
|
+
}
|
|
1061
1133
|
]
|
|
1062
1134
|
}
|
|
1063
1135
|
])
|
|
@@ -1323,6 +1395,7 @@ var GIFType = /* @__PURE__ */ ((GIFType2) => {
|
|
|
1323
1395
|
var Source = /* @__PURE__ */ ((Source2) => {
|
|
1324
1396
|
Source2["HTML"] = "HTML";
|
|
1325
1397
|
Source2["ADSENSE"] = "ADSENSE";
|
|
1398
|
+
Source2["AI"] = "AI";
|
|
1326
1399
|
return Source2;
|
|
1327
1400
|
})(Source || {});
|
|
1328
1401
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -1451,6 +1524,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
1451
1524
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
1452
1525
|
return NullValue2;
|
|
1453
1526
|
})(NullValue || {});
|
|
1527
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
1528
|
+
Scaling2["AUTO"] = "AUTO";
|
|
1529
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
1530
|
+
Scaling2["COVER"] = "COVER";
|
|
1531
|
+
return Scaling2;
|
|
1532
|
+
})(Scaling || {});
|
|
1533
|
+
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1534
|
+
ImagePosition2["CENTER"] = "CENTER";
|
|
1535
|
+
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
1536
|
+
ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
1537
|
+
ImagePosition2["TOP"] = "TOP";
|
|
1538
|
+
ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
1539
|
+
ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
1540
|
+
ImagePosition2["BOTTOM"] = "BOTTOM";
|
|
1541
|
+
ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
1542
|
+
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
1543
|
+
return ImagePosition2;
|
|
1544
|
+
})(ImagePosition || {});
|
|
1545
|
+
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
1546
|
+
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
1547
|
+
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
1548
|
+
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
1549
|
+
return VerticalAlignmentAlignment2;
|
|
1550
|
+
})(VerticalAlignmentAlignment || {});
|
|
1551
|
+
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
1552
|
+
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
1553
|
+
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
1554
|
+
return ResponsivenessBehaviour2;
|
|
1555
|
+
})(ResponsivenessBehaviour || {});
|
|
1454
1556
|
var BadgeTypeType = /* @__PURE__ */ ((BadgeTypeType2) => {
|
|
1455
1557
|
BadgeTypeType2["UNKNOWN_BADGE_TYPE"] = "UNKNOWN_BADGE_TYPE";
|
|
1456
1558
|
BadgeTypeType2["FIRST_PRIORITY"] = "FIRST_PRIORITY";
|
|
@@ -2127,6 +2229,7 @@ export {
|
|
|
2127
2229
|
FontType,
|
|
2128
2230
|
GIFType,
|
|
2129
2231
|
GuestTypeType,
|
|
2232
|
+
ImagePosition,
|
|
2130
2233
|
InitialExpandedItems,
|
|
2131
2234
|
InitialRegistrationTypeType,
|
|
2132
2235
|
InputControlType,
|
|
@@ -2150,6 +2253,8 @@ export {
|
|
|
2150
2253
|
RequestedFields,
|
|
2151
2254
|
Resizing,
|
|
2152
2255
|
ResponseType,
|
|
2256
|
+
ResponsivenessBehaviour,
|
|
2257
|
+
Scaling,
|
|
2153
2258
|
SortOrder,
|
|
2154
2259
|
Source,
|
|
2155
2260
|
Status,
|
|
@@ -2162,6 +2267,7 @@ export {
|
|
|
2162
2267
|
Type,
|
|
2163
2268
|
ValueType,
|
|
2164
2269
|
VerticalAlignment,
|
|
2270
|
+
VerticalAlignmentAlignment,
|
|
2165
2271
|
ViewMode,
|
|
2166
2272
|
ViewRole,
|
|
2167
2273
|
VoteRole,
|