@wix/auto_sdk_table-reservations_experiences 1.0.42 → 1.0.43
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 +2 -2
- package/build/cjs/index.js +5 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +5 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +33 -6
- package/build/cjs/meta.js +5 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/{table-reservations-v1-experience-experiences.universal-y3E_tS1X.d.ts → table-reservations-v1-experience-experiences.universal-BqhRReXL.d.ts} +32 -5
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +5 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +5 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +33 -6
- package/build/es/meta.mjs +5 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/{table-reservations-v1-experience-experiences.universal-y3E_tS1X.d.mts → table-reservations-v1-experience-experiences.universal-BqhRReXL.d.mts} +32 -5
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +5 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +5 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +33 -6
- package/build/internal/cjs/meta.js +5 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-y3E_tS1X.d.ts → table-reservations-v1-experience-experiences.universal-BqhRReXL.d.ts} +32 -5
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +5 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +5 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +33 -6
- package/build/internal/es/meta.mjs +5 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/{table-reservations-v1-experience-experiences.universal-y3E_tS1X.d.mts → table-reservations-v1-experience-experiences.universal-BqhRReXL.d.mts} +32 -5
- package/package.json +2 -2
|
@@ -412,6 +412,10 @@ interface Node extends NodeDataOneOf {
|
|
|
412
412
|
smartBlockData?: SmartBlockData;
|
|
413
413
|
/** Data for a smart block cell node. */
|
|
414
414
|
smartBlockCellData?: SmartBlockCellData;
|
|
415
|
+
/** Data for a checkbox list node. */
|
|
416
|
+
checkboxListData?: CheckboxListData;
|
|
417
|
+
/** Data for a list item node. */
|
|
418
|
+
listItemData?: ListItemNodeData;
|
|
415
419
|
/** 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. */
|
|
416
420
|
type?: NodeTypeWithLiterals;
|
|
417
421
|
/** Node ID. */
|
|
@@ -489,6 +493,10 @@ interface NodeDataOneOf {
|
|
|
489
493
|
smartBlockData?: SmartBlockData;
|
|
490
494
|
/** Data for a smart block cell node. */
|
|
491
495
|
smartBlockCellData?: SmartBlockCellData;
|
|
496
|
+
/** Data for a checkbox list node. */
|
|
497
|
+
checkboxListData?: CheckboxListData;
|
|
498
|
+
/** Data for a list item node. */
|
|
499
|
+
listItemData?: ListItemNodeData;
|
|
492
500
|
}
|
|
493
501
|
declare enum NodeType {
|
|
494
502
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -529,10 +537,11 @@ declare enum NodeType {
|
|
|
529
537
|
CARD = "CARD",
|
|
530
538
|
TOC = "TOC",
|
|
531
539
|
SMART_BLOCK = "SMART_BLOCK",
|
|
532
|
-
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
540
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL",
|
|
541
|
+
CHECKBOX_LIST = "CHECKBOX_LIST"
|
|
533
542
|
}
|
|
534
543
|
/** @enumType */
|
|
535
|
-
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL';
|
|
544
|
+
type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL' | 'CHECKBOX_LIST';
|
|
536
545
|
interface NodeStyle {
|
|
537
546
|
/** The top padding value in pixels. */
|
|
538
547
|
paddingTop?: string | null;
|
|
@@ -2535,10 +2544,18 @@ declare enum SmartBlockDataType {
|
|
|
2535
2544
|
/** Star rating display with stars and a numeric value per cell. */
|
|
2536
2545
|
STAR_RATING = "STAR_RATING",
|
|
2537
2546
|
/** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
|
|
2538
|
-
QUOTE_BOXES = "QUOTE_BOXES"
|
|
2547
|
+
QUOTE_BOXES = "QUOTE_BOXES",
|
|
2548
|
+
/** Donut/ring with numbered annular-sector segments; cell text labels sit outside the ring. */
|
|
2549
|
+
CIRCLE = "CIRCLE",
|
|
2550
|
+
/** Hierarchical pyramid where each cell renders as a horizontal slice (apex at top, base at bottom) with the cell number or shape centered inside; text content sits beside (desktop) or below (mobile) the pyramid. */
|
|
2551
|
+
PYRAMID = "PYRAMID",
|
|
2552
|
+
/** Cells render a horizontal bar whose width scales with cell index, creating a staircase pattern; bar carries the cell number or a custom shape. */
|
|
2553
|
+
STAIRCASE = "STAIRCASE",
|
|
2554
|
+
/** Hierarchical funnel where each cell renders as a horizontal slice (wide at top, narrowing toward the bottom) with the cell number or shape centered inside; text content sits beside (desktop) or below (mobile) the funnel. */
|
|
2555
|
+
VERTICAL_FUNNEL = "VERTICAL_FUNNEL"
|
|
2539
2556
|
}
|
|
2540
2557
|
/** @enumType */
|
|
2541
|
-
type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES';
|
|
2558
|
+
type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES' | 'CIRCLE' | 'PYRAMID' | 'STAIRCASE' | 'VERTICAL_FUNNEL';
|
|
2542
2559
|
/** Column size controlling how many cells appear per row. */
|
|
2543
2560
|
declare enum ColumnSize {
|
|
2544
2561
|
/** Up to 4 cells in a row. */
|
|
@@ -2585,6 +2602,16 @@ interface SmartBlockCellData {
|
|
|
2585
2602
|
*/
|
|
2586
2603
|
shapeColor?: string | null;
|
|
2587
2604
|
}
|
|
2605
|
+
interface CheckboxListData {
|
|
2606
|
+
/** Indentation level from 0-4. */
|
|
2607
|
+
indentation?: number;
|
|
2608
|
+
/** Offset level from 0-4. */
|
|
2609
|
+
offset?: number | null;
|
|
2610
|
+
}
|
|
2611
|
+
interface ListItemNodeData {
|
|
2612
|
+
/** Checkbox list item state. Defaults to `false`. */
|
|
2613
|
+
checked?: boolean | null;
|
|
2614
|
+
}
|
|
2588
2615
|
interface Metadata {
|
|
2589
2616
|
/** Schema version. */
|
|
2590
2617
|
version?: number;
|
|
@@ -4924,4 +4951,4 @@ declare function bulkArchiveExperiences(experienceIds: string[]): Promise<NonNul
|
|
|
4924
4951
|
*/
|
|
4925
4952
|
declare function bulkUnarchiveExperiences(experienceIds: string[]): Promise<NonNullablePaths<BulkUnarchiveExperiencesResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
|
|
4926
4953
|
|
|
4927
|
-
export { PollLayoutType as $, Target as A, type BulkUpdateExperiencesOptions as B, TextAlignment as C, Width as D, type Experience as E, DividerDataAlignment as F, type GetExperienceBySlugResponse as G, LayoutType as H, Crop as I, ThumbnailsAlignment as J, GIFType as K, LineStyle as L, type MaskedExperience as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, Source as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, StylesPosition as X, MapType as Y, ViewRole as Z, VoteRole as _, type UpdateExperienceApplicationErrors as a, type TermsAndConditions as a$, PollLayoutDirection as a0, PollDesignBackgroundType as a1, DecorationType as a2, FontType as a3, Position as a4, AspectRatio as a5, Resizing as a6, Placement as a7, Type as a8, Alignment as a9, MissingValues as aA, ScalarType as aB, NestedAggregationType as aC, Interval as aD, AggregationType as aE, SearchDetailsMode as aF, PlacementType as aG, DayOfWeek as aH, ResolutionMethod as aI, WebhookIdentityType as aJ, type Table as aK, type TableCombination as aL, type SpecificTablesOptions as aM, type OnOptions as aN, type OnOptionsOptionsOneOf as aO, type StartDaysAndTimes as aP, type WeeklyOptions as aQ, type OneTimeOptions as aR, type Entry as aS, type EntryRecurrenceOptionsOneOf as aT, type PartySize as aU, type NoticePeriod as aV, type Approval as aW, type MaxGuests as aX, type OnlineReservationsBusinessSchedule as aY, type PrivacyPolicy as aZ, type PrivacyPolicyValueOneOf as a_, Layout as aa, AppType as ab, InitialExpandedItems as ac, Direction as ad, VerticalAlignment as ae, NullValue as af, ImageScalingScaling as ag, ImagePosition as ah, Origin as ai, BannerPosition as aj, LayoutDataBackgroundType as ak, BackdropType as al, VerticalAlignmentAlignment as am, ResponsivenessBehaviour as an, DesignTarget as ao, Scaling as ap, ImagePositionPosition as aq, CardDataBackgroundType as ar, ListStyle as as, Indentation as at, SmartBlockDataType as au, ColumnSize as av, PaymentPolicyType as aw, SortOrder as ax, SortType as ay, SortDirection as az, type ExperienceSearch as b, type Poll as b$, type TermsAndConditionsValueOneOf as b0, type CustomFieldDefinition as b1, type EmailMarketingCheckbox as b2, type RichContent as b3, type Node as b4, type NodeDataOneOf as b5, type NodeStyle as b6, type ButtonData as b7, type Gradient as b8, type Stop as b9, type GalleryOptionsLayout as bA, type ItemStyle as bB, type Thumbnails as bC, type GIFData as bD, type GIF as bE, type HeadingData as bF, type HTMLData as bG, type HTMLDataDataOneOf as bH, type ImageData as bI, type StylesBorder as bJ, type ImageDataStyles as bK, type LinkPreviewData as bL, type LinkPreviewDataStyles as bM, type MapData as bN, type MapSettings as bO, type ParagraphData as bP, type PollData as bQ, type Permissions as bR, type Option as bS, type PollSettings as bT, type PollLayout as bU, type OptionLayout as bV, type BackgroundGradient as bW, type PollDesignBackground as bX, type PollDesignBackgroundBackgroundOneOf as bY, type PollDesign as bZ, type OptionDesign as b_, type Border as ba, type Colors as bb, type Background as bc, type PluginContainerData as bd, type PluginContainerDataWidth as be, type PluginContainerDataWidthDataOneOf as bf, type Spoiler as bg, type Height as bh, type Styles as bi, type Link as bj, type LinkDataOneOf as bk, type Rel as bl, type CodeBlockData as bm, type TextStyle as bn, type DividerData as bo, type FileData as bp, type FileSource as bq, type FileSourceDataOneOf as br, type PDFSettings as bs, type GalleryData as bt, type Media as bu, type Image as bv, type Video as bw, type Item as bx, type ItemDataOneOf as by, type GalleryOptions as bz, type BulkUpdateExperiencesResponse as c, type Configuration as c$, type PollDataLayout as c0, type Design as c1, type TextData as c2, type Decoration as c3, type DecorationDataOneOf as c4, type AnchorData as c5, type ColorData as c6, type LinkData as c7, type MentionData as c8, type FontSizeData as c9, type BlockquoteData as cA, type CaptionData as cB, type LayoutData as cC, type LayoutDataBackgroundImage as cD, type Banner as cE, type LayoutDataBackground as cF, type Backdrop as cG, type LayoutCellData as cH, type ShapeData as cI, type ShapeDataStyles as cJ, type CardData as cK, type CardDataBackground as cL, type BackgroundImage as cM, type TocData as cN, type SmartBlockData as cO, type SmartBlockCellData as cP, type Metadata as cQ, type DocumentStyle as cR, type TextNodeStyle as cS, type PerGuestOptions as cT, type DisplayInfo as cU, type PaymentPolicy as cV, type PaymentPolicyOptionsOneOf as cW, type OnlineReservations as cX, type ReservationForm as cY, type TableManagement as cZ, type TableManagementOptionsOneOf as c_, type SpoilerData as ca, type FontFamilyData as cb, type AppEmbedData as cc, type AppEmbedDataAppDataOneOf as cd, type BookingData as ce, type EventData as cf, type ButtonStyles as cg, type ImageStyles as ch, type RibbonStyles as ci, type CardStyles as cj, type PricingData as ck, type VideoData as cl, type PlaybackOptions as cm, type EmbedData as cn, type Oembed as co, type CollapsibleListData as cp, type TableData as cq, type Dimensions as cr, type TableCellData as cs, type CellStyle as ct, type BorderColors as cu, type BorderWidths as cv, type ListValue as cw, type AudioData as cx, type OrderedListData as cy, type BulletedListData as cz, type BulkUpdateExperiencesApplicationErrors as d, type NestedResultValueResultOneOf as d$, type ExtendedFields as d0, type Tags as d1, type TagList as d2, type SeoSettings as d3, type SeoSchema as d4, type Keyword as d5, type Tag as d6, type Settings as d7, type InvalidateCache as d8, type InvalidateCacheGetByOneOf as d9, type CursorSearchPagingMethodOneOf as dA, type Aggregation as dB, type AggregationKindOneOf as dC, type RangeBucket as dD, type IncludeMissingValuesOptions as dE, type ValueAggregation as dF, type ValueAggregationOptionsOneOf as dG, type RangeAggregation as dH, type ScalarAggregation as dI, type DateHistogramAggregation as dJ, type NestedAggregationItem as dK, type NestedAggregationItemKindOneOf as dL, type NestedAggregation as dM, type SearchDetails as dN, type AggregationData as dO, type ValueAggregationResult as dP, type RangeAggregationResult as dQ, type NestedAggregationResults as dR, type NestedAggregationResultsResultOneOf as dS, type ValueResults as dT, type RangeResults as dU, type AggregationResultsScalarResult as dV, type NestedValueAggregationResult as dW, type ValueResult as dX, type RangeResult as dY, type ScalarResult as dZ, type NestedResultValue as d_, type App as da, type Page as db, type URI as dc, type File as dd, type CustomTag as de, type Pages as df, type URIs as dg, type TagsModified as dh, type CreateExperienceRequest as di, type CreateExperienceResponse as dj, type GetExperienceRequest as dk, type GetExperienceResponse as dl, type GetExperienceBySlugRequest as dm, type UpdateExperienceRequest as dn, type UpdateExperienceResponse as dp, type QueryExperiencesRequest as dq, type CursorQuery as dr, type CursorQueryPagingMethodOneOf as ds, type Sorting as dt, type CursorPaging as du, type QueryExperiencesResponse as dv, type CursorPagingMetadata as dw, type Cursors as dx, type SearchExperiencesRequest as dy, type CursorSearch as dz, type BulkUpdateExperienceTagsOptions as e, type StartDaysAndTimesDayOfWeekWithLiterals as e$, type Results as e0, type DateHistogramResult as e1, type GroupByValueResults as e2, type DateHistogramResults as e3, type NestedResults as e4, type AggregationResults as e5, type AggregationResultsResultOneOf as e6, type BulkUpdateExperiencesRequest as e7, type ItemMetadata as e8, type ApplicationError as e9, type PropertiesChange as eA, type SiteCreated as eB, type SiteCloned as eC, type Empty as eD, type DomainEvent as eE, type DomainEventBodyOneOf as eF, type EntityCreatedEvent as eG, type RestoreInfo as eH, type EntityUpdatedEvent as eI, type EntityDeletedEvent as eJ, type ActionEvent as eK, type MessageEnvelope as eL, type IdentificationData as eM, type IdentificationDataIdOneOf as eN, type AccountInfo as eO, type BaseEventMetadata as eP, type EventMetadata as eQ, type AccountInfoMetadata as eR, type ExperiencesQueryResult as eS, type ExperienceQuerySpec as eT, type ExperienceSearchSpec as eU, utils as eV, type TableAvailabilityTypeWithLiterals as eW, type TableAssignmentTypeWithLiterals as eX, type TableManagementModeWithLiterals as eY, type UnitWithLiterals as eZ, type ModeWithLiterals as e_, type BulkUpdateExperiencesResult as ea, type BulkActionMetadata as eb, type BulkUpdateExperienceTagsRequest as ec, type BulkUpdateExperienceTagsResult as ed, type BulkUpdateExperienceTagsByFilterRequest as ee, type BulkArchiveExperiencesRequest as ef, type BulkArchiveExperiencesResult as eg, type BulkUnarchiveExperiencesRequest as eh, type BulkUnarchiveExperiencesResult as ei, type SitePropertiesNotification as ej, type SitePropertiesEvent as ek, type Properties as el, type Categories as em, type Locale as en, type Address as eo, type AddressHint as ep, type GeoCoordinates as eq, type BusinessSchedule as er, type TimePeriod as es, type SpecialHourPeriod as et, type Multilingual as eu, type SupportedLanguage as ev, type ConsentPolicy as ew, type Translation as ex, type ChangeContext as ey, type ChangeContextPayloadOneOf as ez, type BulkUpdateExperienceTagsResponse as f, type IntervalWithLiterals as f$, type RecurrenceWithLiterals as f0, type NodeTypeWithLiterals as f1, type BackgroundTypeWithLiterals as f2, type GradientTypeWithLiterals as f3, type WidthTypeWithLiterals as f4, type PluginContainerDataAlignmentWithLiterals as f5, type ButtonDataTypeWithLiterals as f6, type TargetWithLiterals as f7, type TextAlignmentWithLiterals as f8, type LineStyleWithLiterals as f9, type InitialExpandedItemsWithLiterals as fA, type DirectionWithLiterals as fB, type VerticalAlignmentWithLiterals as fC, type NullValueWithLiterals as fD, type ImageScalingScalingWithLiterals as fE, type ImagePositionWithLiterals as fF, type OriginWithLiterals as fG, type BannerPositionWithLiterals as fH, type LayoutDataBackgroundTypeWithLiterals as fI, type BackdropTypeWithLiterals as fJ, type VerticalAlignmentAlignmentWithLiterals as fK, type ResponsivenessBehaviourWithLiterals as fL, type DesignTargetWithLiterals as fM, type ScalingWithLiterals as fN, type ImagePositionPositionWithLiterals as fO, type CardDataBackgroundTypeWithLiterals as fP, type ListStyleWithLiterals as fQ, type IndentationWithLiterals as fR, type SmartBlockDataTypeWithLiterals as fS, type ColumnSizeWithLiterals as fT, type PaymentPolicyTypeWithLiterals as fU, type SortOrderWithLiterals as fV, type SortTypeWithLiterals as fW, type SortDirectionWithLiterals as fX, type MissingValuesWithLiterals as fY, type ScalarTypeWithLiterals as fZ, type NestedAggregationTypeWithLiterals as f_, type WidthWithLiterals as fa, type DividerDataAlignmentWithLiterals as fb, type ViewModeWithLiterals as fc, type LayoutTypeWithLiterals as fd, type OrientationWithLiterals as fe, type CropWithLiterals as ff, type ThumbnailsAlignmentWithLiterals as fg, type GIFTypeWithLiterals as fh, type SourceWithLiterals as fi, type StylesPositionWithLiterals as fj, type MapTypeWithLiterals as fk, type ViewRoleWithLiterals as fl, type VoteRoleWithLiterals as fm, type PollLayoutTypeWithLiterals as fn, type PollLayoutDirectionWithLiterals as fo, type PollDesignBackgroundTypeWithLiterals as fp, type DecorationTypeWithLiterals as fq, type FontTypeWithLiterals as fr, type PositionWithLiterals as fs, type AspectRatioWithLiterals as ft, type ResizingWithLiterals as fu, type PlacementWithLiterals as fv, type TypeWithLiterals as fw, type AlignmentWithLiterals as fx, type LayoutWithLiterals as fy, type AppTypeWithLiterals as fz, type BulkUpdateExperienceTagsApplicationErrors as g, type AggregationTypeWithLiterals as g0, type SearchDetailsModeWithLiterals as g1, type PlacementTypeWithLiterals as g2, type DayOfWeekWithLiterals as g3, type ResolutionMethodWithLiterals as g4, type WebhookIdentityTypeWithLiterals as g5, type CommonQueryWithEntityContext as g6, type CommonSearchWithEntityContext as g7, onExperienceCreated as g8, onExperienceTagsModified as g9, onExperienceUpdated as ga, createExperience as gb, getExperience as gc, getExperienceBySlug as gd, updateExperience as ge, queryExperiences as gf, bulkUpdateExperiences as gg, bulkUpdateExperienceTags as gh, bulkUpdateExperienceTagsByFilter as gi, bulkArchiveExperiences as gj, bulkUnarchiveExperiences as gk, type BulkUpdateExperienceTagsByFilterOptions as h, type BulkUpdateExperienceTagsByFilterResponse as i, type BulkUpdateExperienceTagsByFilterApplicationErrors as j, type BulkArchiveExperiencesResponse as k, type BulkUnarchiveExperiencesResponse as l, type ExperienceCreatedEnvelope as m, type ExperienceTagsModifiedEnvelope as n, type ExperienceUpdatedEnvelope as o, type ExperiencesQueryBuilder as p, type ExperienceQuery as q, TableAssignmentType as r, TableManagementMode as s, typedQueryExperiences as t, Unit as u, Mode as v, StartDaysAndTimesDayOfWeek as w, BackgroundType as x, GradientType as y, ButtonDataType as z };
|
|
4954
|
+
export { PollLayoutType as $, Target as A, type BulkUpdateExperiencesOptions as B, TextAlignment as C, Width as D, type Experience as E, DividerDataAlignment as F, type GetExperienceBySlugResponse as G, LayoutType as H, Crop as I, ThumbnailsAlignment as J, GIFType as K, LineStyle as L, type MaskedExperience as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, Source as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, StylesPosition as X, MapType as Y, ViewRole as Z, VoteRole as _, type UpdateExperienceApplicationErrors as a, type TermsAndConditions as a$, PollLayoutDirection as a0, PollDesignBackgroundType as a1, DecorationType as a2, FontType as a3, Position as a4, AspectRatio as a5, Resizing as a6, Placement as a7, Type as a8, Alignment as a9, MissingValues as aA, ScalarType as aB, NestedAggregationType as aC, Interval as aD, AggregationType as aE, SearchDetailsMode as aF, PlacementType as aG, DayOfWeek as aH, ResolutionMethod as aI, WebhookIdentityType as aJ, type Table as aK, type TableCombination as aL, type SpecificTablesOptions as aM, type OnOptions as aN, type OnOptionsOptionsOneOf as aO, type StartDaysAndTimes as aP, type WeeklyOptions as aQ, type OneTimeOptions as aR, type Entry as aS, type EntryRecurrenceOptionsOneOf as aT, type PartySize as aU, type NoticePeriod as aV, type Approval as aW, type MaxGuests as aX, type OnlineReservationsBusinessSchedule as aY, type PrivacyPolicy as aZ, type PrivacyPolicyValueOneOf as a_, Layout as aa, AppType as ab, InitialExpandedItems as ac, Direction as ad, VerticalAlignment as ae, NullValue as af, ImageScalingScaling as ag, ImagePosition as ah, Origin as ai, BannerPosition as aj, LayoutDataBackgroundType as ak, BackdropType as al, VerticalAlignmentAlignment as am, ResponsivenessBehaviour as an, DesignTarget as ao, Scaling as ap, ImagePositionPosition as aq, CardDataBackgroundType as ar, ListStyle as as, Indentation as at, SmartBlockDataType as au, ColumnSize as av, PaymentPolicyType as aw, SortOrder as ax, SortType as ay, SortDirection as az, type ExperienceSearch as b, type Poll as b$, type TermsAndConditionsValueOneOf as b0, type CustomFieldDefinition as b1, type EmailMarketingCheckbox as b2, type RichContent as b3, type Node as b4, type NodeDataOneOf as b5, type NodeStyle as b6, type ButtonData as b7, type Gradient as b8, type Stop as b9, type GalleryOptionsLayout as bA, type ItemStyle as bB, type Thumbnails as bC, type GIFData as bD, type GIF as bE, type HeadingData as bF, type HTMLData as bG, type HTMLDataDataOneOf as bH, type ImageData as bI, type StylesBorder as bJ, type ImageDataStyles as bK, type LinkPreviewData as bL, type LinkPreviewDataStyles as bM, type MapData as bN, type MapSettings as bO, type ParagraphData as bP, type PollData as bQ, type Permissions as bR, type Option as bS, type PollSettings as bT, type PollLayout as bU, type OptionLayout as bV, type BackgroundGradient as bW, type PollDesignBackground as bX, type PollDesignBackgroundBackgroundOneOf as bY, type PollDesign as bZ, type OptionDesign as b_, type Border as ba, type Colors as bb, type Background as bc, type PluginContainerData as bd, type PluginContainerDataWidth as be, type PluginContainerDataWidthDataOneOf as bf, type Spoiler as bg, type Height as bh, type Styles as bi, type Link as bj, type LinkDataOneOf as bk, type Rel as bl, type CodeBlockData as bm, type TextStyle as bn, type DividerData as bo, type FileData as bp, type FileSource as bq, type FileSourceDataOneOf as br, type PDFSettings as bs, type GalleryData as bt, type Media as bu, type Image as bv, type Video as bw, type Item as bx, type ItemDataOneOf as by, type GalleryOptions as bz, type BulkUpdateExperiencesResponse as c, type TableManagement as c$, type PollDataLayout as c0, type Design as c1, type TextData as c2, type Decoration as c3, type DecorationDataOneOf as c4, type AnchorData as c5, type ColorData as c6, type LinkData as c7, type MentionData as c8, type FontSizeData as c9, type BlockquoteData as cA, type CaptionData as cB, type LayoutData as cC, type LayoutDataBackgroundImage as cD, type Banner as cE, type LayoutDataBackground as cF, type Backdrop as cG, type LayoutCellData as cH, type ShapeData as cI, type ShapeDataStyles as cJ, type CardData as cK, type CardDataBackground as cL, type BackgroundImage as cM, type TocData as cN, type SmartBlockData as cO, type SmartBlockCellData as cP, type CheckboxListData as cQ, type ListItemNodeData as cR, type Metadata as cS, type DocumentStyle as cT, type TextNodeStyle as cU, type PerGuestOptions as cV, type DisplayInfo as cW, type PaymentPolicy as cX, type PaymentPolicyOptionsOneOf as cY, type OnlineReservations as cZ, type ReservationForm as c_, type SpoilerData as ca, type FontFamilyData as cb, type AppEmbedData as cc, type AppEmbedDataAppDataOneOf as cd, type BookingData as ce, type EventData as cf, type ButtonStyles as cg, type ImageStyles as ch, type RibbonStyles as ci, type CardStyles as cj, type PricingData as ck, type VideoData as cl, type PlaybackOptions as cm, type EmbedData as cn, type Oembed as co, type CollapsibleListData as cp, type TableData as cq, type Dimensions as cr, type TableCellData as cs, type CellStyle as ct, type BorderColors as cu, type BorderWidths as cv, type ListValue as cw, type AudioData as cx, type OrderedListData as cy, type BulletedListData as cz, type BulkUpdateExperiencesApplicationErrors as d, type ScalarResult as d$, type TableManagementOptionsOneOf as d0, type Configuration as d1, type ExtendedFields as d2, type Tags as d3, type TagList as d4, type SeoSettings as d5, type SeoSchema as d6, type Keyword as d7, type Tag as d8, type Settings as d9, type SearchExperiencesRequest as dA, type CursorSearch as dB, type CursorSearchPagingMethodOneOf as dC, type Aggregation as dD, type AggregationKindOneOf as dE, type RangeBucket as dF, type IncludeMissingValuesOptions as dG, type ValueAggregation as dH, type ValueAggregationOptionsOneOf as dI, type RangeAggregation as dJ, type ScalarAggregation as dK, type DateHistogramAggregation as dL, type NestedAggregationItem as dM, type NestedAggregationItemKindOneOf as dN, type NestedAggregation as dO, type SearchDetails as dP, type AggregationData as dQ, type ValueAggregationResult as dR, type RangeAggregationResult as dS, type NestedAggregationResults as dT, type NestedAggregationResultsResultOneOf as dU, type ValueResults as dV, type RangeResults as dW, type AggregationResultsScalarResult as dX, type NestedValueAggregationResult as dY, type ValueResult as dZ, type RangeResult as d_, type InvalidateCache as da, type InvalidateCacheGetByOneOf as db, type App as dc, type Page as dd, type URI as de, type File as df, type CustomTag as dg, type Pages as dh, type URIs as di, type TagsModified as dj, type CreateExperienceRequest as dk, type CreateExperienceResponse as dl, type GetExperienceRequest as dm, type GetExperienceResponse as dn, type GetExperienceBySlugRequest as dp, type UpdateExperienceRequest as dq, type UpdateExperienceResponse as dr, type QueryExperiencesRequest as ds, type CursorQuery as dt, type CursorQueryPagingMethodOneOf as du, type Sorting as dv, type CursorPaging as dw, type QueryExperiencesResponse as dx, type CursorPagingMetadata as dy, type Cursors as dz, type BulkUpdateExperienceTagsOptions as e, type UnitWithLiterals as e$, type NestedResultValue as e0, type NestedResultValueResultOneOf as e1, type Results as e2, type DateHistogramResult as e3, type GroupByValueResults as e4, type DateHistogramResults as e5, type NestedResults as e6, type AggregationResults as e7, type AggregationResultsResultOneOf as e8, type BulkUpdateExperiencesRequest as e9, type ChangeContext as eA, type ChangeContextPayloadOneOf as eB, type PropertiesChange as eC, type SiteCreated as eD, type SiteCloned as eE, type Empty as eF, type DomainEvent as eG, type DomainEventBodyOneOf as eH, type EntityCreatedEvent as eI, type RestoreInfo as eJ, type EntityUpdatedEvent as eK, type EntityDeletedEvent as eL, type ActionEvent as eM, type MessageEnvelope as eN, type IdentificationData as eO, type IdentificationDataIdOneOf as eP, type AccountInfo as eQ, type BaseEventMetadata as eR, type EventMetadata as eS, type AccountInfoMetadata as eT, type ExperiencesQueryResult as eU, type ExperienceQuerySpec as eV, type ExperienceSearchSpec as eW, utils as eX, type TableAvailabilityTypeWithLiterals as eY, type TableAssignmentTypeWithLiterals as eZ, type TableManagementModeWithLiterals as e_, type ItemMetadata as ea, type ApplicationError as eb, type BulkUpdateExperiencesResult as ec, type BulkActionMetadata as ed, type BulkUpdateExperienceTagsRequest as ee, type BulkUpdateExperienceTagsResult as ef, type BulkUpdateExperienceTagsByFilterRequest as eg, type BulkArchiveExperiencesRequest as eh, type BulkArchiveExperiencesResult as ei, type BulkUnarchiveExperiencesRequest as ej, type BulkUnarchiveExperiencesResult as ek, type SitePropertiesNotification as el, type SitePropertiesEvent as em, type Properties as en, type Categories as eo, type Locale as ep, type Address as eq, type AddressHint as er, type GeoCoordinates as es, type BusinessSchedule as et, type TimePeriod as eu, type SpecialHourPeriod as ev, type Multilingual as ew, type SupportedLanguage as ex, type ConsentPolicy as ey, type Translation as ez, type BulkUpdateExperienceTagsResponse as f, type ScalarTypeWithLiterals as f$, type ModeWithLiterals as f0, type StartDaysAndTimesDayOfWeekWithLiterals as f1, type RecurrenceWithLiterals as f2, type NodeTypeWithLiterals as f3, type BackgroundTypeWithLiterals as f4, type GradientTypeWithLiterals as f5, type WidthTypeWithLiterals as f6, type PluginContainerDataAlignmentWithLiterals as f7, type ButtonDataTypeWithLiterals as f8, type TargetWithLiterals as f9, type LayoutWithLiterals as fA, type AppTypeWithLiterals as fB, type InitialExpandedItemsWithLiterals as fC, type DirectionWithLiterals as fD, type VerticalAlignmentWithLiterals as fE, type NullValueWithLiterals as fF, type ImageScalingScalingWithLiterals as fG, type ImagePositionWithLiterals as fH, type OriginWithLiterals as fI, type BannerPositionWithLiterals as fJ, type LayoutDataBackgroundTypeWithLiterals as fK, type BackdropTypeWithLiterals as fL, type VerticalAlignmentAlignmentWithLiterals as fM, type ResponsivenessBehaviourWithLiterals as fN, type DesignTargetWithLiterals as fO, type ScalingWithLiterals as fP, type ImagePositionPositionWithLiterals as fQ, type CardDataBackgroundTypeWithLiterals as fR, type ListStyleWithLiterals as fS, type IndentationWithLiterals as fT, type SmartBlockDataTypeWithLiterals as fU, type ColumnSizeWithLiterals as fV, type PaymentPolicyTypeWithLiterals as fW, type SortOrderWithLiterals as fX, type SortTypeWithLiterals as fY, type SortDirectionWithLiterals as fZ, type MissingValuesWithLiterals as f_, type TextAlignmentWithLiterals as fa, type LineStyleWithLiterals as fb, type WidthWithLiterals as fc, type DividerDataAlignmentWithLiterals as fd, type ViewModeWithLiterals as fe, type LayoutTypeWithLiterals as ff, type OrientationWithLiterals as fg, type CropWithLiterals as fh, type ThumbnailsAlignmentWithLiterals as fi, type GIFTypeWithLiterals as fj, type SourceWithLiterals as fk, type StylesPositionWithLiterals as fl, type MapTypeWithLiterals as fm, type ViewRoleWithLiterals as fn, type VoteRoleWithLiterals as fo, type PollLayoutTypeWithLiterals as fp, type PollLayoutDirectionWithLiterals as fq, type PollDesignBackgroundTypeWithLiterals as fr, type DecorationTypeWithLiterals as fs, type FontTypeWithLiterals as ft, type PositionWithLiterals as fu, type AspectRatioWithLiterals as fv, type ResizingWithLiterals as fw, type PlacementWithLiterals as fx, type TypeWithLiterals as fy, type AlignmentWithLiterals as fz, type BulkUpdateExperienceTagsApplicationErrors as g, type NestedAggregationTypeWithLiterals as g0, type IntervalWithLiterals as g1, type AggregationTypeWithLiterals as g2, type SearchDetailsModeWithLiterals as g3, type PlacementTypeWithLiterals as g4, type DayOfWeekWithLiterals as g5, type ResolutionMethodWithLiterals as g6, type WebhookIdentityTypeWithLiterals as g7, type CommonQueryWithEntityContext as g8, type CommonSearchWithEntityContext as g9, onExperienceCreated as ga, onExperienceTagsModified as gb, onExperienceUpdated as gc, createExperience as gd, getExperience as ge, getExperienceBySlug as gf, updateExperience as gg, queryExperiences as gh, bulkUpdateExperiences as gi, bulkUpdateExperienceTags as gj, bulkUpdateExperienceTagsByFilter as gk, bulkArchiveExperiences as gl, bulkUnarchiveExperiences as gm, type BulkUpdateExperienceTagsByFilterOptions as h, type BulkUpdateExperienceTagsByFilterResponse as i, type BulkUpdateExperienceTagsByFilterApplicationErrors as j, type BulkArchiveExperiencesResponse as k, type BulkUnarchiveExperiencesResponse as l, type ExperienceCreatedEnvelope as m, type ExperienceTagsModifiedEnvelope as n, type ExperienceUpdatedEnvelope as o, type ExperiencesQueryBuilder as p, type ExperienceQuery as q, TableAssignmentType as r, TableManagementMode as s, typedQueryExperiences as t, Unit as u, Mode as v, StartDaysAndTimesDayOfWeek as w, BackgroundType as x, GradientType as y, ButtonDataType as z };
|
package/build/es/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { E as Experience, G as GetExperienceBySlugResponse, U as UpdateExperience, a as UpdateExperienceApplicationErrors, b as ExperienceSearch, S as SearchExperiencesResponse, M as MaskedExperience, B as BulkUpdateExperiencesOptions, c as BulkUpdateExperiencesResponse, d as BulkUpdateExperiencesApplicationErrors, e as BulkUpdateExperienceTagsOptions, f as BulkUpdateExperienceTagsResponse, g as BulkUpdateExperienceTagsApplicationErrors, h as BulkUpdateExperienceTagsByFilterOptions, i as BulkUpdateExperienceTagsByFilterResponse, j as BulkUpdateExperienceTagsByFilterApplicationErrors, k as BulkArchiveExperiencesResponse, l as BulkUnarchiveExperiencesResponse, m as ExperienceCreatedEnvelope, n as ExperienceTagsModifiedEnvelope, o as ExperienceUpdatedEnvelope, p as ExperiencesQueryBuilder, q as ExperienceQuery, t as typedQueryExperiences } from './table-reservations-v1-experience-experiences.universal-
|
|
3
|
-
export { eO as AccountInfo, eR as AccountInfoMetadata, eK as ActionEvent, eo as Address, ep as AddressHint, dB as Aggregation, dO as AggregationData, dC as AggregationKindOneOf, e5 as AggregationResults, e6 as AggregationResultsResultOneOf, dV as AggregationResultsScalarResult, aE as AggregationType, g0 as AggregationTypeWithLiterals, a9 as Alignment, fx as AlignmentWithLiterals, c5 as AnchorData, da as App, cc as AppEmbedData, cd as AppEmbedDataAppDataOneOf, ab as AppType, fz as AppTypeWithLiterals, e9 as ApplicationError, aW as Approval, a5 as AspectRatio, ft as AspectRatioWithLiterals, cx as AudioData, cG as Backdrop, al as BackdropType, fJ as BackdropTypeWithLiterals, bc as Background, bW as BackgroundGradient, cM as BackgroundImage, x as BackgroundType, f2 as BackgroundTypeWithLiterals, cE as Banner, aj as BannerPosition, fH as BannerPositionWithLiterals, eP as BaseEventMetadata, cA as BlockquoteData, ce as BookingData, ba as Border, cu as BorderColors, cv as BorderWidths, eb as BulkActionMetadata, ef as BulkArchiveExperiencesRequest, eg as BulkArchiveExperiencesResult, eh as BulkUnarchiveExperiencesRequest, ei as BulkUnarchiveExperiencesResult, ee as BulkUpdateExperienceTagsByFilterRequest, ec as BulkUpdateExperienceTagsRequest, ed as BulkUpdateExperienceTagsResult, e7 as BulkUpdateExperiencesRequest, ea as BulkUpdateExperiencesResult, cz as BulletedListData, er as BusinessSchedule, b7 as ButtonData, z as ButtonDataType, f6 as ButtonDataTypeWithLiterals, cg as ButtonStyles, cB as CaptionData, cK as CardData, cL as CardDataBackground, ar as CardDataBackgroundType, fP as CardDataBackgroundTypeWithLiterals, cj as CardStyles, em as Categories, ct as CellStyle, ey as ChangeContext, ez as ChangeContextPayloadOneOf, bm as CodeBlockData, cp as CollapsibleListData, c6 as ColorData, bb as Colors, av as ColumnSize, fT as ColumnSizeWithLiterals, g6 as CommonQueryWithEntityContext, g7 as CommonSearchWithEntityContext, c$ as Configuration, ew as ConsentPolicy, di as CreateExperienceRequest, dj as CreateExperienceResponse, I as Crop, ff as CropWithLiterals, du as CursorPaging, dw as CursorPagingMetadata, dr as CursorQuery, ds as CursorQueryPagingMethodOneOf, dz as CursorSearch, dA as CursorSearchPagingMethodOneOf, dx as Cursors, b1 as CustomFieldDefinition, de as CustomTag, dJ as DateHistogramAggregation, e1 as DateHistogramResult, e3 as DateHistogramResults, aH as DayOfWeek, g3 as DayOfWeekWithLiterals, c3 as Decoration, c4 as DecorationDataOneOf, a2 as DecorationType, fq as DecorationTypeWithLiterals, c1 as Design, ao as DesignTarget, fM as DesignTargetWithLiterals, cr as Dimensions, ad as Direction, fB as DirectionWithLiterals, cU as DisplayInfo, bo as DividerData, F as DividerDataAlignment, fb as DividerDataAlignmentWithLiterals, cR as DocumentStyle, eE as DomainEvent, eF as DomainEventBodyOneOf, b2 as EmailMarketingCheckbox, cn as EmbedData, eD as Empty, eG as EntityCreatedEvent, eJ as EntityDeletedEvent, eI as EntityUpdatedEvent, aS as Entry, aT as EntryRecurrenceOptionsOneOf, cf as EventData, eQ as EventMetadata, eT as ExperienceQuerySpec, eU as ExperienceSearchSpec, eS as ExperiencesQueryResult, d0 as ExtendedFields, dd as File, bp as FileData, bq as FileSource, br as FileSourceDataOneOf, cb as FontFamilyData, c9 as FontSizeData, a3 as FontType, fr as FontTypeWithLiterals, bE as GIF, bD as GIFData, K as GIFType, fh as GIFTypeWithLiterals, bt as GalleryData, bz as GalleryOptions, bA as GalleryOptionsLayout, eq as GeoCoordinates, dm as GetExperienceBySlugRequest, dk as GetExperienceRequest, dl as GetExperienceResponse, b8 as Gradient, y as GradientType, f3 as GradientTypeWithLiterals, e2 as GroupByValueResults, bG as HTMLData, bH as HTMLDataDataOneOf, bF as HeadingData, bh as Height, eM as IdentificationData, eN as IdentificationDataIdOneOf, bv as Image, bI as ImageData, bK as ImageDataStyles, ah as ImagePosition, aq as ImagePositionPosition, fO as ImagePositionPositionWithLiterals, fF as ImagePositionWithLiterals, ag as ImageScalingScaling, fE as ImageScalingScalingWithLiterals, ch as ImageStyles, dE as IncludeMissingValuesOptions, at as Indentation, fR as IndentationWithLiterals, ac as InitialExpandedItems, fA as InitialExpandedItemsWithLiterals, aD as Interval, f$ as IntervalWithLiterals, d8 as InvalidateCache, d9 as InvalidateCacheGetByOneOf, bx as Item, by as ItemDataOneOf, e8 as ItemMetadata, bB as ItemStyle, d5 as Keyword, aa as Layout, cH as LayoutCellData, cC as LayoutData, cF as LayoutDataBackground, cD as LayoutDataBackgroundImage, ak as LayoutDataBackgroundType, fI as LayoutDataBackgroundTypeWithLiterals, H as LayoutType, fd as LayoutTypeWithLiterals, fy as LayoutWithLiterals, L as LineStyle, f9 as LineStyleWithLiterals, bj as Link, c7 as LinkData, bk as LinkDataOneOf, bL as LinkPreviewData, bM as LinkPreviewDataStyles, as as ListStyle, fQ as ListStyleWithLiterals, cw as ListValue, en as Locale, bN as MapData, bO as MapSettings, Y as MapType, fk as MapTypeWithLiterals, aX as MaxGuests, bu as Media, c8 as MentionData, eL as MessageEnvelope, cQ as Metadata, aA as MissingValues, fY as MissingValuesWithLiterals, v as Mode, e_ as ModeWithLiterals, eu as Multilingual, dM as NestedAggregation, dK as NestedAggregationItem, dL as NestedAggregationItemKindOneOf, dR as NestedAggregationResults, dS as NestedAggregationResultsResultOneOf, aC as NestedAggregationType, f_ as NestedAggregationTypeWithLiterals, d_ as NestedResultValue, d$ as NestedResultValueResultOneOf, e4 as NestedResults, dW as NestedValueAggregationResult, b4 as Node, b5 as NodeDataOneOf, b6 as NodeStyle, N as NodeType, f1 as NodeTypeWithLiterals, aV as NoticePeriod, af as NullValue, fD as NullValueWithLiterals, co as Oembed, aN as OnOptions, aO as OnOptionsOptionsOneOf, aR as OneTimeOptions, cX as OnlineReservations, aY as OnlineReservationsBusinessSchedule, bS as Option, b_ as OptionDesign, bV as OptionLayout, cy as OrderedListData, O as Orientation, fe as OrientationWithLiterals, ai as Origin, fG as OriginWithLiterals, bs as PDFSettings, db as Page, df as Pages, bP as ParagraphData, aU as PartySize, cV as PaymentPolicy, cW as PaymentPolicyOptionsOneOf, aw as PaymentPolicyType, fU as PaymentPolicyTypeWithLiterals, cT as PerGuestOptions, bR as Permissions, a7 as Placement, aG as PlacementType, g2 as PlacementTypeWithLiterals, fv as PlacementWithLiterals, cm as PlaybackOptions, bd as PluginContainerData, P as PluginContainerDataAlignment, f5 as PluginContainerDataAlignmentWithLiterals, be as PluginContainerDataWidth, bf as PluginContainerDataWidthDataOneOf, b$ as Poll, bQ as PollData, c0 as PollDataLayout, bZ as PollDesign, bX as PollDesignBackground, bY as PollDesignBackgroundBackgroundOneOf, a1 as PollDesignBackgroundType, fp as PollDesignBackgroundTypeWithLiterals, bU as PollLayout, a0 as PollLayoutDirection, fo as PollLayoutDirectionWithLiterals, $ as PollLayoutType, fn as PollLayoutTypeWithLiterals, bT as PollSettings, a4 as Position, fs as PositionWithLiterals, ck as PricingData, aZ as PrivacyPolicy, a_ as PrivacyPolicyValueOneOf, el as Properties, eA as PropertiesChange, dq as QueryExperiencesRequest, dv as QueryExperiencesResponse, dH as RangeAggregation, dQ as RangeAggregationResult, dD as RangeBucket, dY as RangeResult, dU as RangeResults, R as Recurrence, f0 as RecurrenceWithLiterals, bl as Rel, cY as ReservationForm, a6 as Resizing, fu as ResizingWithLiterals, aI as ResolutionMethod, g4 as ResolutionMethodWithLiterals, an as ResponsivenessBehaviour, fL as ResponsivenessBehaviourWithLiterals, eH as RestoreInfo, e0 as Results, ci as RibbonStyles, b3 as RichContent, dI as ScalarAggregation, dZ as ScalarResult, aB as ScalarType, fZ as ScalarTypeWithLiterals, ap as Scaling, fN as ScalingWithLiterals, dN as SearchDetails, aF as SearchDetailsMode, g1 as SearchDetailsModeWithLiterals, dy as SearchExperiencesRequest, d4 as SeoSchema, d3 as SeoSettings, d7 as Settings, cI as ShapeData, cJ as ShapeDataStyles, eC as SiteCloned, eB as SiteCreated, ek as SitePropertiesEvent, ej as SitePropertiesNotification, cP as SmartBlockCellData, cO as SmartBlockData, au as SmartBlockDataType, fS as SmartBlockDataTypeWithLiterals, az as SortDirection, fX as SortDirectionWithLiterals, ax as SortOrder, fV as SortOrderWithLiterals, ay as SortType, fW as SortTypeWithLiterals, dt as Sorting, Q as Source, fi as SourceWithLiterals, et as SpecialHourPeriod, aM as SpecificTablesOptions, bg as Spoiler, ca as SpoilerData, aP as StartDaysAndTimes, w as StartDaysAndTimesDayOfWeek, e$ as StartDaysAndTimesDayOfWeekWithLiterals, b9 as Stop, bi as Styles, bJ as StylesBorder, X as StylesPosition, fj as StylesPositionWithLiterals, ev as SupportedLanguage, aK as Table, r as TableAssignmentType, eX as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, eW as TableAvailabilityTypeWithLiterals, cs as TableCellData, aL as TableCombination, cq as TableData, cZ as TableManagement, s as TableManagementMode, eY as TableManagementModeWithLiterals, c_ as TableManagementOptionsOneOf, d6 as Tag, d2 as TagList, d1 as Tags, dh as TagsModified, A as Target, f7 as TargetWithLiterals, a$ as TermsAndConditions, b0 as TermsAndConditionsValueOneOf, C as TextAlignment, f8 as TextAlignmentWithLiterals, c2 as TextData, cS as TextNodeStyle, bn as TextStyle, bC as Thumbnails, J as ThumbnailsAlignment, fg as ThumbnailsAlignmentWithLiterals, es as TimePeriod, cN as TocData, ex as Translation, a8 as Type, fw as TypeWithLiterals, dc as URI, dg as URIs, u as Unit, eZ as UnitWithLiterals, dn as UpdateExperienceRequest, dp as UpdateExperienceResponse, dF as ValueAggregation, dG as ValueAggregationOptionsOneOf, dP as ValueAggregationResult, dX as ValueResult, dT as ValueResults, ae as VerticalAlignment, am as VerticalAlignmentAlignment, fK as VerticalAlignmentAlignmentWithLiterals, fC as VerticalAlignmentWithLiterals, bw as Video, cl as VideoData, V as ViewMode, fc as ViewModeWithLiterals, Z as ViewRole, fl as ViewRoleWithLiterals, _ as VoteRole, fm as VoteRoleWithLiterals, aJ as WebhookIdentityType, g5 as WebhookIdentityTypeWithLiterals, aQ as WeeklyOptions, D as Width, W as WidthType, f4 as WidthTypeWithLiterals, fa as WidthWithLiterals, eV as utils } from './table-reservations-v1-experience-experiences.universal-y3E_tS1X.mjs';
|
|
2
|
+
import { E as Experience, G as GetExperienceBySlugResponse, U as UpdateExperience, a as UpdateExperienceApplicationErrors, b as ExperienceSearch, S as SearchExperiencesResponse, M as MaskedExperience, B as BulkUpdateExperiencesOptions, c as BulkUpdateExperiencesResponse, d as BulkUpdateExperiencesApplicationErrors, e as BulkUpdateExperienceTagsOptions, f as BulkUpdateExperienceTagsResponse, g as BulkUpdateExperienceTagsApplicationErrors, h as BulkUpdateExperienceTagsByFilterOptions, i as BulkUpdateExperienceTagsByFilterResponse, j as BulkUpdateExperienceTagsByFilterApplicationErrors, k as BulkArchiveExperiencesResponse, l as BulkUnarchiveExperiencesResponse, m as ExperienceCreatedEnvelope, n as ExperienceTagsModifiedEnvelope, o as ExperienceUpdatedEnvelope, p as ExperiencesQueryBuilder, q as ExperienceQuery, t as typedQueryExperiences } from './table-reservations-v1-experience-experiences.universal-BqhRReXL.mjs';
|
|
3
|
+
export { eQ as AccountInfo, eT as AccountInfoMetadata, eM as ActionEvent, eq as Address, er as AddressHint, dD as Aggregation, dQ as AggregationData, dE as AggregationKindOneOf, e7 as AggregationResults, e8 as AggregationResultsResultOneOf, dX as AggregationResultsScalarResult, aE as AggregationType, g2 as AggregationTypeWithLiterals, a9 as Alignment, fz as AlignmentWithLiterals, c5 as AnchorData, dc as App, cc as AppEmbedData, cd as AppEmbedDataAppDataOneOf, ab as AppType, fB as AppTypeWithLiterals, eb as ApplicationError, aW as Approval, a5 as AspectRatio, fv as AspectRatioWithLiterals, cx as AudioData, cG as Backdrop, al as BackdropType, fL as BackdropTypeWithLiterals, bc as Background, bW as BackgroundGradient, cM as BackgroundImage, x as BackgroundType, f4 as BackgroundTypeWithLiterals, cE as Banner, aj as BannerPosition, fJ as BannerPositionWithLiterals, eR as BaseEventMetadata, cA as BlockquoteData, ce as BookingData, ba as Border, cu as BorderColors, cv as BorderWidths, ed as BulkActionMetadata, eh as BulkArchiveExperiencesRequest, ei as BulkArchiveExperiencesResult, ej as BulkUnarchiveExperiencesRequest, ek as BulkUnarchiveExperiencesResult, eg as BulkUpdateExperienceTagsByFilterRequest, ee as BulkUpdateExperienceTagsRequest, ef as BulkUpdateExperienceTagsResult, e9 as BulkUpdateExperiencesRequest, ec as BulkUpdateExperiencesResult, cz as BulletedListData, et as BusinessSchedule, b7 as ButtonData, z as ButtonDataType, f8 as ButtonDataTypeWithLiterals, cg as ButtonStyles, cB as CaptionData, cK as CardData, cL as CardDataBackground, ar as CardDataBackgroundType, fR as CardDataBackgroundTypeWithLiterals, cj as CardStyles, eo as Categories, ct as CellStyle, eA as ChangeContext, eB as ChangeContextPayloadOneOf, cQ as CheckboxListData, bm as CodeBlockData, cp as CollapsibleListData, c6 as ColorData, bb as Colors, av as ColumnSize, fV as ColumnSizeWithLiterals, g8 as CommonQueryWithEntityContext, g9 as CommonSearchWithEntityContext, d1 as Configuration, ey as ConsentPolicy, dk as CreateExperienceRequest, dl as CreateExperienceResponse, I as Crop, fh as CropWithLiterals, dw as CursorPaging, dy as CursorPagingMetadata, dt as CursorQuery, du as CursorQueryPagingMethodOneOf, dB as CursorSearch, dC as CursorSearchPagingMethodOneOf, dz as Cursors, b1 as CustomFieldDefinition, dg as CustomTag, dL as DateHistogramAggregation, e3 as DateHistogramResult, e5 as DateHistogramResults, aH as DayOfWeek, g5 as DayOfWeekWithLiterals, c3 as Decoration, c4 as DecorationDataOneOf, a2 as DecorationType, fs as DecorationTypeWithLiterals, c1 as Design, ao as DesignTarget, fO as DesignTargetWithLiterals, cr as Dimensions, ad as Direction, fD as DirectionWithLiterals, cW as DisplayInfo, bo as DividerData, F as DividerDataAlignment, fd as DividerDataAlignmentWithLiterals, cT as DocumentStyle, eG as DomainEvent, eH as DomainEventBodyOneOf, b2 as EmailMarketingCheckbox, cn as EmbedData, eF as Empty, eI as EntityCreatedEvent, eL as EntityDeletedEvent, eK as EntityUpdatedEvent, aS as Entry, aT as EntryRecurrenceOptionsOneOf, cf as EventData, eS as EventMetadata, eV as ExperienceQuerySpec, eW as ExperienceSearchSpec, eU as ExperiencesQueryResult, d2 as ExtendedFields, df as File, bp as FileData, bq as FileSource, br as FileSourceDataOneOf, cb as FontFamilyData, c9 as FontSizeData, a3 as FontType, ft as FontTypeWithLiterals, bE as GIF, bD as GIFData, K as GIFType, fj as GIFTypeWithLiterals, bt as GalleryData, bz as GalleryOptions, bA as GalleryOptionsLayout, es as GeoCoordinates, dp as GetExperienceBySlugRequest, dm as GetExperienceRequest, dn as GetExperienceResponse, b8 as Gradient, y as GradientType, f5 as GradientTypeWithLiterals, e4 as GroupByValueResults, bG as HTMLData, bH as HTMLDataDataOneOf, bF as HeadingData, bh as Height, eO as IdentificationData, eP as IdentificationDataIdOneOf, bv as Image, bI as ImageData, bK as ImageDataStyles, ah as ImagePosition, aq as ImagePositionPosition, fQ as ImagePositionPositionWithLiterals, fH as ImagePositionWithLiterals, ag as ImageScalingScaling, fG as ImageScalingScalingWithLiterals, ch as ImageStyles, dG as IncludeMissingValuesOptions, at as Indentation, fT as IndentationWithLiterals, ac as InitialExpandedItems, fC as InitialExpandedItemsWithLiterals, aD as Interval, g1 as IntervalWithLiterals, da as InvalidateCache, db as InvalidateCacheGetByOneOf, bx as Item, by as ItemDataOneOf, ea as ItemMetadata, bB as ItemStyle, d7 as Keyword, aa as Layout, cH as LayoutCellData, cC as LayoutData, cF as LayoutDataBackground, cD as LayoutDataBackgroundImage, ak as LayoutDataBackgroundType, fK as LayoutDataBackgroundTypeWithLiterals, H as LayoutType, ff as LayoutTypeWithLiterals, fA as LayoutWithLiterals, L as LineStyle, fb as LineStyleWithLiterals, bj as Link, c7 as LinkData, bk as LinkDataOneOf, bL as LinkPreviewData, bM as LinkPreviewDataStyles, cR as ListItemNodeData, as as ListStyle, fS as ListStyleWithLiterals, cw as ListValue, ep as Locale, bN as MapData, bO as MapSettings, Y as MapType, fm as MapTypeWithLiterals, aX as MaxGuests, bu as Media, c8 as MentionData, eN as MessageEnvelope, cS as Metadata, aA as MissingValues, f_ as MissingValuesWithLiterals, v as Mode, f0 as ModeWithLiterals, ew as Multilingual, dO as NestedAggregation, dM as NestedAggregationItem, dN as NestedAggregationItemKindOneOf, dT as NestedAggregationResults, dU as NestedAggregationResultsResultOneOf, aC as NestedAggregationType, g0 as NestedAggregationTypeWithLiterals, e0 as NestedResultValue, e1 as NestedResultValueResultOneOf, e6 as NestedResults, dY as NestedValueAggregationResult, b4 as Node, b5 as NodeDataOneOf, b6 as NodeStyle, N as NodeType, f3 as NodeTypeWithLiterals, aV as NoticePeriod, af as NullValue, fF as NullValueWithLiterals, co as Oembed, aN as OnOptions, aO as OnOptionsOptionsOneOf, aR as OneTimeOptions, cZ as OnlineReservations, aY as OnlineReservationsBusinessSchedule, bS as Option, b_ as OptionDesign, bV as OptionLayout, cy as OrderedListData, O as Orientation, fg as OrientationWithLiterals, ai as Origin, fI as OriginWithLiterals, bs as PDFSettings, dd as Page, dh as Pages, bP as ParagraphData, aU as PartySize, cX as PaymentPolicy, cY as PaymentPolicyOptionsOneOf, aw as PaymentPolicyType, fW as PaymentPolicyTypeWithLiterals, cV as PerGuestOptions, bR as Permissions, a7 as Placement, aG as PlacementType, g4 as PlacementTypeWithLiterals, fx as PlacementWithLiterals, cm as PlaybackOptions, bd as PluginContainerData, P as PluginContainerDataAlignment, f7 as PluginContainerDataAlignmentWithLiterals, be as PluginContainerDataWidth, bf as PluginContainerDataWidthDataOneOf, b$ as Poll, bQ as PollData, c0 as PollDataLayout, bZ as PollDesign, bX as PollDesignBackground, bY as PollDesignBackgroundBackgroundOneOf, a1 as PollDesignBackgroundType, fr as PollDesignBackgroundTypeWithLiterals, bU as PollLayout, a0 as PollLayoutDirection, fq as PollLayoutDirectionWithLiterals, $ as PollLayoutType, fp as PollLayoutTypeWithLiterals, bT as PollSettings, a4 as Position, fu as PositionWithLiterals, ck as PricingData, aZ as PrivacyPolicy, a_ as PrivacyPolicyValueOneOf, en as Properties, eC as PropertiesChange, ds as QueryExperiencesRequest, dx as QueryExperiencesResponse, dJ as RangeAggregation, dS as RangeAggregationResult, dF as RangeBucket, d_ as RangeResult, dW as RangeResults, R as Recurrence, f2 as RecurrenceWithLiterals, bl as Rel, c_ as ReservationForm, a6 as Resizing, fw as ResizingWithLiterals, aI as ResolutionMethod, g6 as ResolutionMethodWithLiterals, an as ResponsivenessBehaviour, fN as ResponsivenessBehaviourWithLiterals, eJ as RestoreInfo, e2 as Results, ci as RibbonStyles, b3 as RichContent, dK as ScalarAggregation, d$ as ScalarResult, aB as ScalarType, f$ as ScalarTypeWithLiterals, ap as Scaling, fP as ScalingWithLiterals, dP as SearchDetails, aF as SearchDetailsMode, g3 as SearchDetailsModeWithLiterals, dA as SearchExperiencesRequest, d6 as SeoSchema, d5 as SeoSettings, d9 as Settings, cI as ShapeData, cJ as ShapeDataStyles, eE as SiteCloned, eD as SiteCreated, em as SitePropertiesEvent, el as SitePropertiesNotification, cP as SmartBlockCellData, cO as SmartBlockData, au as SmartBlockDataType, fU as SmartBlockDataTypeWithLiterals, az as SortDirection, fZ as SortDirectionWithLiterals, ax as SortOrder, fX as SortOrderWithLiterals, ay as SortType, fY as SortTypeWithLiterals, dv as Sorting, Q as Source, fk as SourceWithLiterals, ev as SpecialHourPeriod, aM as SpecificTablesOptions, bg as Spoiler, ca as SpoilerData, aP as StartDaysAndTimes, w as StartDaysAndTimesDayOfWeek, f1 as StartDaysAndTimesDayOfWeekWithLiterals, b9 as Stop, bi as Styles, bJ as StylesBorder, X as StylesPosition, fl as StylesPositionWithLiterals, ex as SupportedLanguage, aK as Table, r as TableAssignmentType, eZ as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, eY as TableAvailabilityTypeWithLiterals, cs as TableCellData, aL as TableCombination, cq as TableData, c$ as TableManagement, s as TableManagementMode, e_ as TableManagementModeWithLiterals, d0 as TableManagementOptionsOneOf, d8 as Tag, d4 as TagList, d3 as Tags, dj as TagsModified, A as Target, f9 as TargetWithLiterals, a$ as TermsAndConditions, b0 as TermsAndConditionsValueOneOf, C as TextAlignment, fa as TextAlignmentWithLiterals, c2 as TextData, cU as TextNodeStyle, bn as TextStyle, bC as Thumbnails, J as ThumbnailsAlignment, fi as ThumbnailsAlignmentWithLiterals, eu as TimePeriod, cN as TocData, ez as Translation, a8 as Type, fy as TypeWithLiterals, de as URI, di as URIs, u as Unit, e$ as UnitWithLiterals, dq as UpdateExperienceRequest, dr as UpdateExperienceResponse, dH as ValueAggregation, dI as ValueAggregationOptionsOneOf, dR as ValueAggregationResult, dZ as ValueResult, dV as ValueResults, ae as VerticalAlignment, am as VerticalAlignmentAlignment, fM as VerticalAlignmentAlignmentWithLiterals, fE as VerticalAlignmentWithLiterals, bw as Video, cl as VideoData, V as ViewMode, fe as ViewModeWithLiterals, Z as ViewRole, fn as ViewRoleWithLiterals, _ as VoteRole, fo as VoteRoleWithLiterals, aJ as WebhookIdentityType, g7 as WebhookIdentityTypeWithLiterals, aQ as WeeklyOptions, D as Width, W as WidthType, f6 as WidthTypeWithLiterals, fc as WidthWithLiterals, eX as utils } from './table-reservations-v1-experience-experiences.universal-BqhRReXL.mjs';
|
|
4
4
|
|
|
5
5
|
declare function createExperience$1(httpClient: HttpClient): CreateExperienceSignature;
|
|
6
6
|
interface CreateExperienceSignature {
|
package/build/es/index.mjs
CHANGED
|
@@ -1814,6 +1814,7 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1814
1814
|
NodeType2["TOC"] = "TOC";
|
|
1815
1815
|
NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
|
|
1816
1816
|
NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
|
|
1817
|
+
NodeType2["CHECKBOX_LIST"] = "CHECKBOX_LIST";
|
|
1817
1818
|
return NodeType2;
|
|
1818
1819
|
})(NodeType || {});
|
|
1819
1820
|
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
@@ -2166,6 +2167,10 @@ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
|
2166
2167
|
SmartBlockDataType2["PILLS"] = "PILLS";
|
|
2167
2168
|
SmartBlockDataType2["STAR_RATING"] = "STAR_RATING";
|
|
2168
2169
|
SmartBlockDataType2["QUOTE_BOXES"] = "QUOTE_BOXES";
|
|
2170
|
+
SmartBlockDataType2["CIRCLE"] = "CIRCLE";
|
|
2171
|
+
SmartBlockDataType2["PYRAMID"] = "PYRAMID";
|
|
2172
|
+
SmartBlockDataType2["STAIRCASE"] = "STAIRCASE";
|
|
2173
|
+
SmartBlockDataType2["VERTICAL_FUNNEL"] = "VERTICAL_FUNNEL";
|
|
2169
2174
|
return SmartBlockDataType2;
|
|
2170
2175
|
})(SmartBlockDataType || {});
|
|
2171
2176
|
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|