@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 };
|
|
@@ -37,6 +37,7 @@ __export(index_typings_exports, {
|
|
|
37
37
|
FontType: () => FontType,
|
|
38
38
|
GIFType: () => GIFType,
|
|
39
39
|
GuestTypeType: () => GuestTypeType,
|
|
40
|
+
ImagePosition: () => ImagePosition,
|
|
40
41
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
41
42
|
InitialRegistrationTypeType: () => InitialRegistrationTypeType,
|
|
42
43
|
InputControlType: () => InputControlType,
|
|
@@ -60,6 +61,8 @@ __export(index_typings_exports, {
|
|
|
60
61
|
RequestedFields: () => RequestedFields,
|
|
61
62
|
Resizing: () => Resizing,
|
|
62
63
|
ResponseType: () => ResponseType,
|
|
64
|
+
ResponsivenessBehaviour: () => ResponsivenessBehaviour,
|
|
65
|
+
Scaling: () => Scaling,
|
|
63
66
|
SortOrder: () => SortOrder,
|
|
64
67
|
Source: () => Source,
|
|
65
68
|
Status: () => Status,
|
|
@@ -72,6 +75,7 @@ __export(index_typings_exports, {
|
|
|
72
75
|
Type: () => Type,
|
|
73
76
|
ValueType: () => ValueType,
|
|
74
77
|
VerticalAlignment: () => VerticalAlignment,
|
|
78
|
+
VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
|
|
75
79
|
ViewMode: () => ViewMode,
|
|
76
80
|
ViewRole: () => ViewRole,
|
|
77
81
|
VoteRole: () => VoteRole,
|
|
@@ -227,7 +231,13 @@ function createEvent(payload) {
|
|
|
227
231
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
228
232
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
229
233
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
230
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
234
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
235
|
+
{
|
|
236
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
240
|
+
}
|
|
231
241
|
]
|
|
232
242
|
}
|
|
233
243
|
]);
|
|
@@ -300,7 +310,13 @@ function createEvent(payload) {
|
|
|
300
310
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
301
311
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
302
312
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
303
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
313
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
314
|
+
{
|
|
315
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
319
|
+
}
|
|
304
320
|
]
|
|
305
321
|
}
|
|
306
322
|
])
|
|
@@ -368,7 +384,13 @@ function cloneEvent(payload) {
|
|
|
368
384
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
369
385
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
370
386
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
371
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
387
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
388
|
+
{
|
|
389
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
393
|
+
}
|
|
372
394
|
]
|
|
373
395
|
}
|
|
374
396
|
]);
|
|
@@ -441,7 +463,13 @@ function cloneEvent(payload) {
|
|
|
441
463
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
442
464
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
443
465
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
444
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
466
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
467
|
+
{
|
|
468
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
472
|
+
}
|
|
445
473
|
]
|
|
446
474
|
}
|
|
447
475
|
])
|
|
@@ -509,7 +537,13 @@ function updateEvent(payload) {
|
|
|
509
537
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
510
538
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
511
539
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
512
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
540
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
541
|
+
{
|
|
542
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
546
|
+
}
|
|
513
547
|
]
|
|
514
548
|
}
|
|
515
549
|
]);
|
|
@@ -582,7 +616,13 @@ function updateEvent(payload) {
|
|
|
582
616
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
583
617
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
584
618
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
585
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
619
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
620
|
+
{
|
|
621
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
625
|
+
}
|
|
586
626
|
]
|
|
587
627
|
}
|
|
588
628
|
])
|
|
@@ -662,7 +702,13 @@ function publishDraftEvent(payload) {
|
|
|
662
702
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
663
703
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
664
704
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
665
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
705
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
706
|
+
{
|
|
707
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
711
|
+
}
|
|
666
712
|
]
|
|
667
713
|
}
|
|
668
714
|
])
|
|
@@ -742,7 +788,13 @@ function cancelEvent(payload) {
|
|
|
742
788
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
743
789
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
744
790
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
745
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
791
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
792
|
+
{
|
|
793
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
797
|
+
}
|
|
746
798
|
]
|
|
747
799
|
}
|
|
748
800
|
])
|
|
@@ -887,6 +939,12 @@ function queryEvents(payload) {
|
|
|
887
939
|
{ path: "events.description.nodes.audioData.audio.duration" },
|
|
888
940
|
{
|
|
889
941
|
path: "events.description.nodes.audioData.coverImage.duration"
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
path: "events.description.nodes.layoutData.backgroundImage.media.duration"
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
path: "events.description.nodes.layoutData.backdropImage.media.duration"
|
|
890
948
|
}
|
|
891
949
|
]
|
|
892
950
|
}
|
|
@@ -990,6 +1048,12 @@ function listEventsByCategory(payload) {
|
|
|
990
1048
|
{ path: "events.description.nodes.audioData.audio.duration" },
|
|
991
1049
|
{
|
|
992
1050
|
path: "events.description.nodes.audioData.coverImage.duration"
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
path: "events.description.nodes.layoutData.backgroundImage.media.duration"
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
path: "events.description.nodes.layoutData.backdropImage.media.duration"
|
|
993
1057
|
}
|
|
994
1058
|
]
|
|
995
1059
|
}
|
|
@@ -1070,7 +1134,13 @@ function getEvent(payload) {
|
|
|
1070
1134
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
1071
1135
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
1072
1136
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
1073
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
1137
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
1138
|
+
{
|
|
1139
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
1140
|
+
},
|
|
1141
|
+
{
|
|
1142
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
1143
|
+
}
|
|
1074
1144
|
]
|
|
1075
1145
|
}
|
|
1076
1146
|
])
|
|
@@ -1150,7 +1220,13 @@ function getEventBySlug(payload) {
|
|
|
1150
1220
|
{ path: "event.description.nodes.videoData.video.duration" },
|
|
1151
1221
|
{ path: "event.description.nodes.videoData.thumbnail.duration" },
|
|
1152
1222
|
{ path: "event.description.nodes.audioData.audio.duration" },
|
|
1153
|
-
{ path: "event.description.nodes.audioData.coverImage.duration" }
|
|
1223
|
+
{ path: "event.description.nodes.audioData.coverImage.duration" },
|
|
1224
|
+
{
|
|
1225
|
+
path: "event.description.nodes.layoutData.backgroundImage.media.duration"
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
path: "event.description.nodes.layoutData.backdropImage.media.duration"
|
|
1229
|
+
}
|
|
1154
1230
|
]
|
|
1155
1231
|
}
|
|
1156
1232
|
])
|
|
@@ -1416,6 +1492,7 @@ var GIFType = /* @__PURE__ */ ((GIFType2) => {
|
|
|
1416
1492
|
var Source = /* @__PURE__ */ ((Source2) => {
|
|
1417
1493
|
Source2["HTML"] = "HTML";
|
|
1418
1494
|
Source2["ADSENSE"] = "ADSENSE";
|
|
1495
|
+
Source2["AI"] = "AI";
|
|
1419
1496
|
return Source2;
|
|
1420
1497
|
})(Source || {});
|
|
1421
1498
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -1544,6 +1621,35 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
1544
1621
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
1545
1622
|
return NullValue2;
|
|
1546
1623
|
})(NullValue || {});
|
|
1624
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
1625
|
+
Scaling2["AUTO"] = "AUTO";
|
|
1626
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
1627
|
+
Scaling2["COVER"] = "COVER";
|
|
1628
|
+
return Scaling2;
|
|
1629
|
+
})(Scaling || {});
|
|
1630
|
+
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1631
|
+
ImagePosition2["CENTER"] = "CENTER";
|
|
1632
|
+
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
1633
|
+
ImagePosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
1634
|
+
ImagePosition2["TOP"] = "TOP";
|
|
1635
|
+
ImagePosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
1636
|
+
ImagePosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
1637
|
+
ImagePosition2["BOTTOM"] = "BOTTOM";
|
|
1638
|
+
ImagePosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
1639
|
+
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
1640
|
+
return ImagePosition2;
|
|
1641
|
+
})(ImagePosition || {});
|
|
1642
|
+
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
1643
|
+
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
1644
|
+
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
1645
|
+
VerticalAlignmentAlignment2["BOTTOM"] = "BOTTOM";
|
|
1646
|
+
return VerticalAlignmentAlignment2;
|
|
1647
|
+
})(VerticalAlignmentAlignment || {});
|
|
1648
|
+
var ResponsivenessBehaviour = /* @__PURE__ */ ((ResponsivenessBehaviour2) => {
|
|
1649
|
+
ResponsivenessBehaviour2["STACK"] = "STACK";
|
|
1650
|
+
ResponsivenessBehaviour2["WRAP"] = "WRAP";
|
|
1651
|
+
return ResponsivenessBehaviour2;
|
|
1652
|
+
})(ResponsivenessBehaviour || {});
|
|
1547
1653
|
var BadgeTypeType = /* @__PURE__ */ ((BadgeTypeType2) => {
|
|
1548
1654
|
BadgeTypeType2["UNKNOWN_BADGE_TYPE"] = "UNKNOWN_BADGE_TYPE";
|
|
1549
1655
|
BadgeTypeType2["FIRST_PRIORITY"] = "FIRST_PRIORITY";
|
|
@@ -2221,6 +2327,7 @@ async function getEventBySlug2(slug, options) {
|
|
|
2221
2327
|
FontType,
|
|
2222
2328
|
GIFType,
|
|
2223
2329
|
GuestTypeType,
|
|
2330
|
+
ImagePosition,
|
|
2224
2331
|
InitialExpandedItems,
|
|
2225
2332
|
InitialRegistrationTypeType,
|
|
2226
2333
|
InputControlType,
|
|
@@ -2244,6 +2351,8 @@ async function getEventBySlug2(slug, options) {
|
|
|
2244
2351
|
RequestedFields,
|
|
2245
2352
|
Resizing,
|
|
2246
2353
|
ResponseType,
|
|
2354
|
+
ResponsivenessBehaviour,
|
|
2355
|
+
Scaling,
|
|
2247
2356
|
SortOrder,
|
|
2248
2357
|
Source,
|
|
2249
2358
|
Status,
|
|
@@ -2256,6 +2365,7 @@ async function getEventBySlug2(slug, options) {
|
|
|
2256
2365
|
Type,
|
|
2257
2366
|
ValueType,
|
|
2258
2367
|
VerticalAlignment,
|
|
2368
|
+
VerticalAlignmentAlignment,
|
|
2259
2369
|
ViewMode,
|
|
2260
2370
|
ViewRole,
|
|
2261
2371
|
VoteRole,
|