@wix/auto_sdk_table-reservations_experiences 1.0.35 → 1.0.36

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.
Files changed (41) hide show
  1. package/build/cjs/index.d.ts +2 -2
  2. package/build/cjs/index.js +66 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +2 -2
  5. package/build/cjs/index.typings.js +54 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +100 -4
  8. package/build/cjs/meta.js +54 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/{table-reservations-v1-experience-experiences.universal-ZFrZgvqh.d.ts → table-reservations-v1-experience-experiences.universal-BAFNaOzr.d.ts} +99 -3
  11. package/build/es/index.d.mts +2 -2
  12. package/build/es/index.mjs +64 -0
  13. package/build/es/index.mjs.map +1 -1
  14. package/build/es/index.typings.d.mts +2 -2
  15. package/build/es/index.typings.mjs +52 -0
  16. package/build/es/index.typings.mjs.map +1 -1
  17. package/build/es/meta.d.mts +100 -4
  18. package/build/es/meta.mjs +52 -0
  19. package/build/es/meta.mjs.map +1 -1
  20. package/build/es/{table-reservations-v1-experience-experiences.universal-ZFrZgvqh.d.mts → table-reservations-v1-experience-experiences.universal-BAFNaOzr.d.mts} +99 -3
  21. package/build/internal/cjs/index.d.ts +2 -2
  22. package/build/internal/cjs/index.js +66 -0
  23. package/build/internal/cjs/index.js.map +1 -1
  24. package/build/internal/cjs/index.typings.d.ts +2 -2
  25. package/build/internal/cjs/index.typings.js +54 -0
  26. package/build/internal/cjs/index.typings.js.map +1 -1
  27. package/build/internal/cjs/meta.d.ts +100 -4
  28. package/build/internal/cjs/meta.js +54 -0
  29. package/build/internal/cjs/meta.js.map +1 -1
  30. package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-ZFrZgvqh.d.ts → table-reservations-v1-experience-experiences.universal-BAFNaOzr.d.ts} +99 -3
  31. package/build/internal/es/index.d.mts +2 -2
  32. package/build/internal/es/index.mjs +64 -0
  33. package/build/internal/es/index.mjs.map +1 -1
  34. package/build/internal/es/index.typings.d.mts +2 -2
  35. package/build/internal/es/index.typings.mjs +52 -0
  36. package/build/internal/es/index.typings.mjs.map +1 -1
  37. package/build/internal/es/meta.d.mts +100 -4
  38. package/build/internal/es/meta.mjs +52 -0
  39. package/build/internal/es/meta.mjs.map +1 -1
  40. package/build/internal/es/{table-reservations-v1-experience-experiences.universal-ZFrZgvqh.d.mts → table-reservations-v1-experience-experiences.universal-BAFNaOzr.d.mts} +99 -3
  41. package/package.json +4 -4
@@ -408,6 +408,10 @@ interface Node extends NodeDataOneOf {
408
408
  cardData?: CardData;
409
409
  /** Data for a table of contents node. */
410
410
  tocData?: TocData;
411
+ /** Data for a smart block node. */
412
+ smartBlockData?: SmartBlockData;
413
+ /** Data for a smart block cell node. */
414
+ smartBlockCellData?: SmartBlockCellData;
411
415
  /** 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. */
412
416
  type?: NodeTypeWithLiterals;
413
417
  /** Node ID. */
@@ -481,6 +485,10 @@ interface NodeDataOneOf {
481
485
  cardData?: CardData;
482
486
  /** Data for a table of contents node. */
483
487
  tocData?: TocData;
488
+ /** Data for a smart block node. */
489
+ smartBlockData?: SmartBlockData;
490
+ /** Data for a smart block cell node. */
491
+ smartBlockCellData?: SmartBlockCellData;
484
492
  }
485
493
  declare enum NodeType {
486
494
  PARAGRAPH = "PARAGRAPH",
@@ -519,10 +527,12 @@ declare enum NodeType {
519
527
  LAYOUT_CELL = "LAYOUT_CELL",
520
528
  SHAPE = "SHAPE",
521
529
  CARD = "CARD",
522
- TOC = "TOC"
530
+ TOC = "TOC",
531
+ SMART_BLOCK = "SMART_BLOCK",
532
+ SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
523
533
  }
524
534
  /** @enumType */
525
- 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';
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';
526
536
  interface NodeStyle {
527
537
  /** The top padding value in pixels. */
528
538
  paddingTop?: string | null;
@@ -1140,6 +1150,8 @@ interface HeadingData {
1140
1150
  textStyle?: TextStyle;
1141
1151
  /** Indentation level from 1-4. */
1142
1152
  indentation?: number | null;
1153
+ /** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
1154
+ renderedLevel?: number | null;
1143
1155
  }
1144
1156
  interface HTMLData extends HTMLDataDataOneOf {
1145
1157
  /** The URL for the HTML code for the node. */
@@ -2013,6 +2025,8 @@ interface TableData {
2013
2025
  * @maxSize 4
2014
2026
  */
2015
2027
  cellPadding?: number[];
2028
+ /** Table's alternative text. */
2029
+ altText?: string | null;
2016
2030
  }
2017
2031
  interface Dimensions {
2018
2032
  /** An array representing relative width of each column in relation to the other columns. */
@@ -2454,6 +2468,88 @@ declare enum Indentation {
2454
2468
  }
2455
2469
  /** @enumType */
2456
2470
  type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
2471
+ /** Data for a smart block node. */
2472
+ interface SmartBlockData {
2473
+ /** The type of the smart block. */
2474
+ type?: SmartBlockDataTypeWithLiterals;
2475
+ /** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
2476
+ orientation?: string | null;
2477
+ /** Column size controlling cells per row. */
2478
+ columnSize?: ColumnSizeWithLiterals;
2479
+ /** Border color (for SOLID_JOINED_BOXES variant). */
2480
+ borderColor?: string | null;
2481
+ /** Border width in pixels (for SOLID_JOINED_BOXES variant). */
2482
+ borderWidth?: number | null;
2483
+ /** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
2484
+ borderRadius?: number | null;
2485
+ }
2486
+ /** Layout type of the smart block */
2487
+ declare enum SmartBlockDataType {
2488
+ /** Grid-based layouts with solid box items containing title, body, and icon/image. */
2489
+ SOLID_BOXES = "SOLID_BOXES",
2490
+ /** Numbered boxes. */
2491
+ NUMBERED_BOXES = "NUMBERED_BOXES",
2492
+ /** Statistics display with large numbers/values. */
2493
+ STATS = "STATS",
2494
+ /** Statistics with circular visual elements. */
2495
+ CIRCLE_STATS = "CIRCLE_STATS",
2496
+ /** Staggered/zigzag grid layout with alternating box positions. */
2497
+ SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
2498
+ /** Grid layout with boxes visually joined (no gaps, shared container border). */
2499
+ SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
2500
+ /** Transparent cells with only a left side line. */
2501
+ SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
2502
+ /** Transparent cells with only a top line. */
2503
+ TOP_LINE_TEXT = "TOP_LINE_TEXT",
2504
+ /** Outlined boxes with a numbered/icon circle at the top. */
2505
+ OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
2506
+ /** Large icon bullets with text content. */
2507
+ BIG_BULLETS = "BIG_BULLETS",
2508
+ /** Small dot bullets with text content. */
2509
+ SMALL_BULLETS = "SMALL_BULLETS",
2510
+ /** Arrow icon bullets with text content. */
2511
+ ARROW_BULLETS = "ARROW_BULLETS",
2512
+ /** Process steps with numbered/icon labels above a horizontal line. */
2513
+ PROCESS_STEPS = "PROCESS_STEPS",
2514
+ /** Statistics with bar visual elements. */
2515
+ BAR_STATS = "BAR_STATS"
2516
+ }
2517
+ /** @enumType */
2518
+ 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';
2519
+ /** Column size controlling how many cells appear per row. */
2520
+ declare enum ColumnSize {
2521
+ /** Up to 4 cells in a row. */
2522
+ SMALL = "SMALL",
2523
+ /** Up to 3 cells in a row (default). */
2524
+ MEDIUM = "MEDIUM",
2525
+ /** Up to 2 cells in a row. */
2526
+ LARGE = "LARGE",
2527
+ /** 1 cell in a row. */
2528
+ EXTRA_LARGE = "EXTRA_LARGE"
2529
+ }
2530
+ /** @enumType */
2531
+ type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
2532
+ /** Data for a smart block cell node. */
2533
+ interface SmartBlockCellData {
2534
+ /** Optional label text for the cell (e.g., for stats variants). */
2535
+ label?: string | null;
2536
+ /** Shape file details. */
2537
+ shape?: Media;
2538
+ /** Border color of the cell. */
2539
+ borderColor?: string | null;
2540
+ /** Border width in pixels. */
2541
+ borderWidth?: number | null;
2542
+ /** Border radius in pixels. */
2543
+ borderRadius?: number | null;
2544
+ /** The type of the parent smart block (must match parent). */
2545
+ type?: SmartBlockDataTypeWithLiterals;
2546
+ /** Accent color for non-background variants (e.g., line, bullet, label color). */
2547
+ accentColor?: string | null;
2548
+ /** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
2549
+ backgroundColor?: string | null;
2550
+ /** Shape fill color as a hexadecimal value. */
2551
+ shapeColor?: string | null;
2552
+ }
2457
2553
  interface Metadata {
2458
2554
  /** Schema version. */
2459
2555
  version?: number;
@@ -4755,4 +4851,4 @@ declare function bulkArchiveExperiences(experienceIds: string[]): Promise<NonNul
4755
4851
  */
4756
4852
  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>>;
4757
4853
 
4758
- export { FontType as $, ThumbnailsAlignment as A, type BulkUpdateExperienceTagsOptions as B, Crop as C, DividerDataAlignment as D, type Experience as E, GIFType as F, type GetExperienceBySlugResponse as G, Source as H, StylesPosition as I, MapType as J, ViewRole as K, LineStyle as L, Mode as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, VoteRole as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, PollLayoutType as X, PollLayoutDirection as Y, PollDesignBackgroundType as Z, DecorationType as _, type UpdateExperienceApplicationErrors as a, type NodeStyle as a$, Position as a0, AspectRatio as a1, Resizing as a2, Placement as a3, Type as a4, Alignment as a5, Layout as a6, AppType as a7, InitialExpandedItems as a8, Direction as a9, DayOfWeek as aA, ResolutionMethod as aB, WebhookIdentityType as aC, type Table as aD, type TableCombination as aE, type SpecificTablesOptions as aF, type OnOptions as aG, type OnOptionsOptionsOneOf as aH, type StartDaysAndTimes as aI, type WeeklyOptions as aJ, type OneTimeOptions as aK, type Entry as aL, type EntryRecurrenceOptionsOneOf as aM, type PartySize as aN, type NoticePeriod as aO, type Approval as aP, type MaxGuests as aQ, type OnlineReservationsBusinessSchedule as aR, type PrivacyPolicy as aS, type PrivacyPolicyValueOneOf as aT, type TermsAndConditions as aU, type TermsAndConditionsValueOneOf as aV, type CustomFieldDefinition as aW, type EmailMarketingCheckbox as aX, type RichContent as aY, type Node as aZ, type NodeDataOneOf as a_, VerticalAlignment as aa, NullValue as ab, ImageScalingScaling as ac, ImagePosition as ad, Origin as ae, LayoutDataBackgroundType as af, BackdropType as ag, VerticalAlignmentAlignment as ah, ResponsivenessBehaviour as ai, DesignTarget as aj, Scaling as ak, ImagePositionPosition as al, CardDataBackgroundType as am, ListStyle as an, Indentation as ao, PaymentPolicyType as ap, SortOrder as aq, SortType as ar, SortDirection as as, MissingValues as at, ScalarType as au, NestedAggregationType as av, Interval as aw, AggregationType as ax, SearchDetailsMode as ay, PlacementType as az, type ExperienceSearch as b, type ColorData as b$, type ButtonData as b0, type Gradient as b1, type Stop as b2, type Border as b3, type Colors as b4, type Background as b5, type PluginContainerData as b6, type PluginContainerDataWidth as b7, type PluginContainerDataWidthDataOneOf as b8, type Spoiler as b9, type HTMLDataDataOneOf as bA, type ImageData as bB, type StylesBorder as bC, type ImageDataStyles as bD, type LinkPreviewData as bE, type LinkPreviewDataStyles as bF, type MapData as bG, type MapSettings as bH, type ParagraphData as bI, type PollData as bJ, type Permissions as bK, type Option as bL, type PollSettings as bM, type PollLayout as bN, type OptionLayout as bO, type BackgroundGradient as bP, type PollDesignBackground as bQ, type PollDesignBackgroundBackgroundOneOf as bR, type PollDesign as bS, type OptionDesign as bT, type Poll as bU, type PollDataLayout as bV, type Design as bW, type TextData as bX, type Decoration as bY, type DecorationDataOneOf as bZ, type AnchorData as b_, type Height as ba, type Styles as bb, type Link as bc, type LinkDataOneOf as bd, type Rel as be, type CodeBlockData as bf, type TextStyle as bg, type DividerData as bh, type FileData as bi, type FileSource as bj, type FileSourceDataOneOf as bk, type PDFSettings as bl, type GalleryData as bm, type Media as bn, type Image as bo, type Video as bp, type Item as bq, type ItemDataOneOf as br, type GalleryOptions as bs, type GalleryOptionsLayout as bt, type ItemStyle as bu, type Thumbnails as bv, type GIFData as bw, type GIF as bx, type HeadingData as by, type HTMLData as bz, type BulkUpdateExperienceTagsResponse as c, type InvalidateCache as c$, type LinkData as c0, type MentionData as c1, type FontSizeData as c2, type SpoilerData as c3, type FontFamilyData as c4, type AppEmbedData as c5, type AppEmbedDataAppDataOneOf as c6, type BookingData as c7, type EventData as c8, type ButtonStyles as c9, type LayoutCellData as cA, type ShapeData as cB, type ShapeDataStyles as cC, type CardData as cD, type CardDataBackground as cE, type BackgroundImage as cF, type TocData as cG, type Metadata as cH, type DocumentStyle as cI, type TextNodeStyle as cJ, type PerGuestOptions as cK, type DisplayInfo as cL, type PaymentPolicy as cM, type PaymentPolicyOptionsOneOf as cN, type OnlineReservations as cO, type ReservationForm as cP, type TableManagement as cQ, type TableManagementOptionsOneOf as cR, type Configuration as cS, type ExtendedFields as cT, type Tags as cU, type TagList as cV, type SeoSettings as cW, type SeoSchema as cX, type Keyword as cY, type Tag as cZ, type Settings as c_, type ImageStyles as ca, type RibbonStyles as cb, type CardStyles as cc, type PricingData as cd, type VideoData as ce, type PlaybackOptions as cf, type EmbedData as cg, type Oembed as ch, type CollapsibleListData as ci, type TableData as cj, type Dimensions as ck, type TableCellData as cl, type CellStyle as cm, type BorderColors as cn, type BorderWidths as co, type ListValue as cp, type AudioData as cq, type OrderedListData as cr, type BulletedListData as cs, type BlockquoteData as ct, type CaptionData as cu, type LayoutData as cv, type LayoutDataBackgroundImage as cw, type Banner as cx, type LayoutDataBackground as cy, type Backdrop as cz, type BulkUpdateExperienceTagsApplicationErrors as d, type ItemMetadata as d$, type InvalidateCacheGetByOneOf as d0, type App as d1, type Page as d2, type URI as d3, type File as d4, type CustomTag as d5, type Pages as d6, type URIs as d7, type TagsModified as d8, type CreateExperienceRequest as d9, type DateHistogramAggregation as dA, type NestedAggregationItem as dB, type NestedAggregationItemKindOneOf as dC, type NestedAggregation as dD, type SearchDetails as dE, type AggregationData as dF, type ValueAggregationResult as dG, type RangeAggregationResult as dH, type NestedAggregationResults as dI, type NestedAggregationResultsResultOneOf as dJ, type ValueResults as dK, type RangeResults as dL, type AggregationResultsScalarResult as dM, type NestedValueAggregationResult as dN, type ValueResult as dO, type RangeResult as dP, type ScalarResult as dQ, type NestedResultValue as dR, type NestedResultValueResultOneOf as dS, type Results as dT, type DateHistogramResult as dU, type GroupByValueResults as dV, type DateHistogramResults as dW, type NestedResults as dX, type AggregationResults as dY, type AggregationResultsResultOneOf as dZ, type BulkUpdateExperienceTagsRequest as d_, type CreateExperienceResponse as da, type GetExperienceRequest as db, type GetExperienceResponse as dc, type GetExperienceBySlugRequest as dd, type UpdateExperienceRequest as de, type UpdateExperienceResponse as df, type QueryExperiencesRequest as dg, type CursorQuery as dh, type CursorQueryPagingMethodOneOf as di, type Sorting as dj, type CursorPaging as dk, type QueryExperiencesResponse as dl, type CursorPagingMetadata as dm, type Cursors as dn, type SearchExperiencesRequest as dp, type CursorSearch as dq, type CursorSearchPagingMethodOneOf as dr, type Aggregation as ds, type AggregationKindOneOf as dt, type RangeBucket as du, type IncludeMissingValuesOptions as dv, type ValueAggregation as dw, type ValueAggregationOptionsOneOf as dx, type RangeAggregation as dy, type ScalarAggregation as dz, type BulkUpdateExperienceTagsByFilterOptions as e, type WidthWithLiterals as e$, type ApplicationError as e0, type BulkUpdateExperienceTagsResult as e1, type BulkActionMetadata as e2, type BulkUpdateExperienceTagsByFilterRequest as e3, type BulkArchiveExperiencesRequest as e4, type BulkArchiveExperiencesResult as e5, type BulkUnarchiveExperiencesRequest as e6, type BulkUnarchiveExperiencesResult as e7, type SitePropertiesNotification as e8, type SitePropertiesEvent as e9, type MessageEnvelope as eA, type IdentificationData as eB, type IdentificationDataIdOneOf as eC, type AccountInfo as eD, type BaseEventMetadata as eE, type EventMetadata as eF, type AccountInfoMetadata as eG, type ExperiencesQueryResult as eH, type ExperienceQuerySpec as eI, type ExperienceSearchSpec as eJ, utils as eK, type TableAvailabilityTypeWithLiterals as eL, type TableAssignmentTypeWithLiterals as eM, type TableManagementModeWithLiterals as eN, type UnitWithLiterals as eO, type ModeWithLiterals as eP, type StartDaysAndTimesDayOfWeekWithLiterals as eQ, type RecurrenceWithLiterals as eR, type NodeTypeWithLiterals as eS, type BackgroundTypeWithLiterals as eT, type GradientTypeWithLiterals as eU, type WidthTypeWithLiterals as eV, type PluginContainerDataAlignmentWithLiterals as eW, type ButtonDataTypeWithLiterals as eX, type TargetWithLiterals as eY, type TextAlignmentWithLiterals as eZ, type LineStyleWithLiterals as e_, type Properties as ea, type Categories as eb, type Locale as ec, type Address as ed, type AddressHint as ee, type GeoCoordinates as ef, type BusinessSchedule as eg, type TimePeriod as eh, type SpecialHourPeriod as ei, type Multilingual as ej, type SupportedLanguage as ek, type ConsentPolicy as el, type Translation as em, type ChangeContext as en, type ChangeContextPayloadOneOf as eo, type PropertiesChange as ep, type SiteCreated as eq, type SiteCloned as er, type Empty as es, type DomainEvent as et, type DomainEventBodyOneOf as eu, type EntityCreatedEvent as ev, type RestoreInfo as ew, type EntityUpdatedEvent as ex, type EntityDeletedEvent as ey, type ActionEvent as ez, type BulkUpdateExperienceTagsByFilterResponse as f, getExperienceBySlug as f$, type DividerDataAlignmentWithLiterals as f0, type ViewModeWithLiterals as f1, type LayoutTypeWithLiterals as f2, type OrientationWithLiterals as f3, type CropWithLiterals as f4, type ThumbnailsAlignmentWithLiterals as f5, type GIFTypeWithLiterals as f6, type SourceWithLiterals as f7, type StylesPositionWithLiterals as f8, type MapTypeWithLiterals as f9, type DesignTargetWithLiterals as fA, type ScalingWithLiterals as fB, type ImagePositionPositionWithLiterals as fC, type CardDataBackgroundTypeWithLiterals as fD, type ListStyleWithLiterals as fE, type IndentationWithLiterals as fF, type PaymentPolicyTypeWithLiterals as fG, type SortOrderWithLiterals as fH, type SortTypeWithLiterals as fI, type SortDirectionWithLiterals as fJ, type MissingValuesWithLiterals as fK, type ScalarTypeWithLiterals as fL, type NestedAggregationTypeWithLiterals as fM, type IntervalWithLiterals as fN, type AggregationTypeWithLiterals as fO, type SearchDetailsModeWithLiterals as fP, type PlacementTypeWithLiterals as fQ, type DayOfWeekWithLiterals as fR, type ResolutionMethodWithLiterals as fS, type WebhookIdentityTypeWithLiterals as fT, type CommonQueryWithEntityContext as fU, type CommonSearchWithEntityContext as fV, onExperienceCreated as fW, onExperienceTagsModified as fX, onExperienceUpdated as fY, createExperience as fZ, getExperience as f_, type ViewRoleWithLiterals as fa, type VoteRoleWithLiterals as fb, type PollLayoutTypeWithLiterals as fc, type PollLayoutDirectionWithLiterals as fd, type PollDesignBackgroundTypeWithLiterals as fe, type DecorationTypeWithLiterals as ff, type FontTypeWithLiterals as fg, type PositionWithLiterals as fh, type AspectRatioWithLiterals as fi, type ResizingWithLiterals as fj, type PlacementWithLiterals as fk, type TypeWithLiterals as fl, type AlignmentWithLiterals as fm, type LayoutWithLiterals as fn, type AppTypeWithLiterals as fo, type InitialExpandedItemsWithLiterals as fp, type DirectionWithLiterals as fq, type VerticalAlignmentWithLiterals as fr, type NullValueWithLiterals as fs, type ImageScalingScalingWithLiterals as ft, type ImagePositionWithLiterals as fu, type OriginWithLiterals as fv, type LayoutDataBackgroundTypeWithLiterals as fw, type BackdropTypeWithLiterals as fx, type VerticalAlignmentAlignmentWithLiterals as fy, type ResponsivenessBehaviourWithLiterals as fz, type BulkUpdateExperienceTagsByFilterApplicationErrors as g, updateExperience as g0, queryExperiences as g1, bulkUpdateExperienceTags as g2, bulkUpdateExperienceTagsByFilter as g3, bulkArchiveExperiences as g4, bulkUnarchiveExperiences as g5, type BulkArchiveExperiencesResponse as h, type BulkUnarchiveExperiencesResponse as i, type ExperienceCreatedEnvelope as j, type ExperienceTagsModifiedEnvelope as k, type ExperienceUpdatedEnvelope as l, type ExperiencesQueryBuilder as m, type ExperienceQuery as n, TableAssignmentType as o, TableManagementMode as p, Unit as q, StartDaysAndTimesDayOfWeek as r, BackgroundType as s, typedQueryExperiences as t, GradientType as u, ButtonDataType as v, Target as w, TextAlignment as x, Width as y, LayoutType as z };
4854
+ export { FontType as $, ThumbnailsAlignment as A, type BulkUpdateExperienceTagsOptions as B, Crop as C, DividerDataAlignment as D, type Experience as E, GIFType as F, type GetExperienceBySlugResponse as G, Source as H, StylesPosition as I, MapType as J, ViewRole as K, LineStyle as L, Mode as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, VoteRole as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, PollLayoutType as X, PollLayoutDirection as Y, PollDesignBackgroundType as Z, DecorationType as _, type UpdateExperienceApplicationErrors as a, type Node as a$, Position as a0, AspectRatio as a1, Resizing as a2, Placement as a3, Type as a4, Alignment as a5, Layout as a6, AppType as a7, InitialExpandedItems as a8, Direction as a9, SearchDetailsMode as aA, PlacementType as aB, DayOfWeek as aC, ResolutionMethod as aD, WebhookIdentityType as aE, type Table as aF, type TableCombination as aG, type SpecificTablesOptions as aH, type OnOptions as aI, type OnOptionsOptionsOneOf as aJ, type StartDaysAndTimes as aK, type WeeklyOptions as aL, type OneTimeOptions as aM, type Entry as aN, type EntryRecurrenceOptionsOneOf as aO, type PartySize as aP, type NoticePeriod as aQ, type Approval as aR, type MaxGuests as aS, type OnlineReservationsBusinessSchedule as aT, type PrivacyPolicy as aU, type PrivacyPolicyValueOneOf as aV, type TermsAndConditions as aW, type TermsAndConditionsValueOneOf as aX, type CustomFieldDefinition as aY, type EmailMarketingCheckbox as aZ, type RichContent as a_, VerticalAlignment as aa, NullValue as ab, ImageScalingScaling as ac, ImagePosition as ad, Origin as ae, LayoutDataBackgroundType as af, BackdropType as ag, VerticalAlignmentAlignment as ah, ResponsivenessBehaviour as ai, DesignTarget as aj, Scaling as ak, ImagePositionPosition as al, CardDataBackgroundType as am, ListStyle as an, Indentation as ao, SmartBlockDataType as ap, ColumnSize as aq, PaymentPolicyType as ar, SortOrder as as, SortType as at, SortDirection as au, MissingValues as av, ScalarType as aw, NestedAggregationType as ax, Interval as ay, AggregationType as az, type ExperienceSearch as b, type DecorationDataOneOf as b$, type NodeDataOneOf as b0, type NodeStyle as b1, type ButtonData as b2, type Gradient as b3, type Stop as b4, type Border as b5, type Colors as b6, type Background as b7, type PluginContainerData as b8, type PluginContainerDataWidth as b9, type HeadingData as bA, type HTMLData as bB, type HTMLDataDataOneOf as bC, type ImageData as bD, type StylesBorder as bE, type ImageDataStyles as bF, type LinkPreviewData as bG, type LinkPreviewDataStyles as bH, type MapData as bI, type MapSettings as bJ, type ParagraphData as bK, type PollData as bL, type Permissions as bM, type Option as bN, type PollSettings as bO, type PollLayout as bP, type OptionLayout as bQ, type BackgroundGradient as bR, type PollDesignBackground as bS, type PollDesignBackgroundBackgroundOneOf as bT, type PollDesign as bU, type OptionDesign as bV, type Poll as bW, type PollDataLayout as bX, type Design as bY, type TextData as bZ, type Decoration as b_, type PluginContainerDataWidthDataOneOf as ba, type Spoiler as bb, type Height as bc, type Styles as bd, type Link as be, type LinkDataOneOf as bf, type Rel as bg, type CodeBlockData as bh, type TextStyle as bi, type DividerData as bj, type FileData as bk, type FileSource as bl, type FileSourceDataOneOf as bm, type PDFSettings as bn, type GalleryData as bo, type Media as bp, type Image as bq, type Video as br, type Item as bs, type ItemDataOneOf as bt, type GalleryOptions as bu, type GalleryOptionsLayout as bv, type ItemStyle as bw, type Thumbnails as bx, type GIFData as by, type GIF as bz, type BulkUpdateExperienceTagsResponse as c, type SeoSchema as c$, type AnchorData as c0, type ColorData as c1, type LinkData as c2, type MentionData as c3, type FontSizeData as c4, type SpoilerData as c5, type FontFamilyData as c6, type AppEmbedData as c7, type AppEmbedDataAppDataOneOf as c8, type BookingData as c9, type LayoutDataBackground as cA, type Backdrop as cB, type LayoutCellData as cC, type ShapeData as cD, type ShapeDataStyles as cE, type CardData as cF, type CardDataBackground as cG, type BackgroundImage as cH, type TocData as cI, type SmartBlockData as cJ, type SmartBlockCellData as cK, type Metadata as cL, type DocumentStyle as cM, type TextNodeStyle as cN, type PerGuestOptions as cO, type DisplayInfo as cP, type PaymentPolicy as cQ, type PaymentPolicyOptionsOneOf as cR, type OnlineReservations as cS, type ReservationForm as cT, type TableManagement as cU, type TableManagementOptionsOneOf as cV, type Configuration as cW, type ExtendedFields as cX, type Tags as cY, type TagList as cZ, type SeoSettings as c_, type EventData as ca, type ButtonStyles as cb, type ImageStyles as cc, type RibbonStyles as cd, type CardStyles as ce, type PricingData as cf, type VideoData as cg, type PlaybackOptions as ch, type EmbedData as ci, type Oembed as cj, type CollapsibleListData as ck, type TableData as cl, type Dimensions as cm, type TableCellData as cn, type CellStyle as co, type BorderColors as cp, type BorderWidths as cq, type ListValue as cr, type AudioData as cs, type OrderedListData as ct, type BulletedListData as cu, type BlockquoteData as cv, type CaptionData as cw, type LayoutData as cx, type LayoutDataBackgroundImage as cy, type Banner as cz, type BulkUpdateExperienceTagsApplicationErrors as d, type NestedResults as d$, type Keyword as d0, type Tag as d1, type Settings as d2, type InvalidateCache as d3, type InvalidateCacheGetByOneOf as d4, type App as d5, type Page as d6, type URI as d7, type File as d8, type CustomTag as d9, type ValueAggregation as dA, type ValueAggregationOptionsOneOf as dB, type RangeAggregation as dC, type ScalarAggregation as dD, type DateHistogramAggregation as dE, type NestedAggregationItem as dF, type NestedAggregationItemKindOneOf as dG, type NestedAggregation as dH, type SearchDetails as dI, type AggregationData as dJ, type ValueAggregationResult as dK, type RangeAggregationResult as dL, type NestedAggregationResults as dM, type NestedAggregationResultsResultOneOf as dN, type ValueResults as dO, type RangeResults as dP, type AggregationResultsScalarResult as dQ, type NestedValueAggregationResult as dR, type ValueResult as dS, type RangeResult as dT, type ScalarResult as dU, type NestedResultValue as dV, type NestedResultValueResultOneOf as dW, type Results as dX, type DateHistogramResult as dY, type GroupByValueResults as dZ, type DateHistogramResults as d_, type Pages as da, type URIs as db, type TagsModified as dc, type CreateExperienceRequest as dd, type CreateExperienceResponse as de, type GetExperienceRequest as df, type GetExperienceResponse as dg, type GetExperienceBySlugRequest as dh, type UpdateExperienceRequest as di, type UpdateExperienceResponse as dj, type QueryExperiencesRequest as dk, type CursorQuery as dl, type CursorQueryPagingMethodOneOf as dm, type Sorting as dn, type CursorPaging as dp, type QueryExperiencesResponse as dq, type CursorPagingMetadata as dr, type Cursors as ds, type SearchExperiencesRequest as dt, type CursorSearch as du, type CursorSearchPagingMethodOneOf as dv, type Aggregation as dw, type AggregationKindOneOf as dx, type RangeBucket as dy, type IncludeMissingValuesOptions as dz, type BulkUpdateExperienceTagsByFilterOptions as e, type ButtonDataTypeWithLiterals as e$, type AggregationResults as e0, type AggregationResultsResultOneOf as e1, type BulkUpdateExperienceTagsRequest as e2, type ItemMetadata as e3, type ApplicationError as e4, type BulkUpdateExperienceTagsResult as e5, type BulkActionMetadata as e6, type BulkUpdateExperienceTagsByFilterRequest as e7, type BulkArchiveExperiencesRequest as e8, type BulkArchiveExperiencesResult as e9, type RestoreInfo as eA, type EntityUpdatedEvent as eB, type EntityDeletedEvent as eC, type ActionEvent as eD, type MessageEnvelope as eE, type IdentificationData as eF, type IdentificationDataIdOneOf as eG, type AccountInfo as eH, type BaseEventMetadata as eI, type EventMetadata as eJ, type AccountInfoMetadata as eK, type ExperiencesQueryResult as eL, type ExperienceQuerySpec as eM, type ExperienceSearchSpec as eN, utils as eO, type TableAvailabilityTypeWithLiterals as eP, type TableAssignmentTypeWithLiterals as eQ, type TableManagementModeWithLiterals as eR, type UnitWithLiterals as eS, type ModeWithLiterals as eT, type StartDaysAndTimesDayOfWeekWithLiterals as eU, type RecurrenceWithLiterals as eV, type NodeTypeWithLiterals as eW, type BackgroundTypeWithLiterals as eX, type GradientTypeWithLiterals as eY, type WidthTypeWithLiterals as eZ, type PluginContainerDataAlignmentWithLiterals as e_, type BulkUnarchiveExperiencesRequest as ea, type BulkUnarchiveExperiencesResult as eb, type SitePropertiesNotification as ec, type SitePropertiesEvent as ed, type Properties as ee, type Categories as ef, type Locale as eg, type Address as eh, type AddressHint as ei, type GeoCoordinates as ej, type BusinessSchedule as ek, type TimePeriod as el, type SpecialHourPeriod as em, type Multilingual as en, type SupportedLanguage as eo, type ConsentPolicy as ep, type Translation as eq, type ChangeContext as er, type ChangeContextPayloadOneOf as es, type PropertiesChange as et, type SiteCreated as eu, type SiteCloned as ev, type Empty as ew, type DomainEvent as ex, type DomainEventBodyOneOf as ey, type EntityCreatedEvent as ez, type BulkUpdateExperienceTagsByFilterResponse as f, type CommonSearchWithEntityContext as f$, type TargetWithLiterals as f0, type TextAlignmentWithLiterals as f1, type LineStyleWithLiterals as f2, type WidthWithLiterals as f3, type DividerDataAlignmentWithLiterals as f4, type ViewModeWithLiterals as f5, type LayoutTypeWithLiterals as f6, type OrientationWithLiterals as f7, type CropWithLiterals as f8, type ThumbnailsAlignmentWithLiterals as f9, type LayoutDataBackgroundTypeWithLiterals as fA, type BackdropTypeWithLiterals as fB, type VerticalAlignmentAlignmentWithLiterals as fC, type ResponsivenessBehaviourWithLiterals as fD, type DesignTargetWithLiterals as fE, type ScalingWithLiterals as fF, type ImagePositionPositionWithLiterals as fG, type CardDataBackgroundTypeWithLiterals as fH, type ListStyleWithLiterals as fI, type IndentationWithLiterals as fJ, type SmartBlockDataTypeWithLiterals as fK, type ColumnSizeWithLiterals as fL, type PaymentPolicyTypeWithLiterals as fM, type SortOrderWithLiterals as fN, type SortTypeWithLiterals as fO, type SortDirectionWithLiterals as fP, type MissingValuesWithLiterals as fQ, type ScalarTypeWithLiterals as fR, type NestedAggregationTypeWithLiterals as fS, type IntervalWithLiterals as fT, type AggregationTypeWithLiterals as fU, type SearchDetailsModeWithLiterals as fV, type PlacementTypeWithLiterals as fW, type DayOfWeekWithLiterals as fX, type ResolutionMethodWithLiterals as fY, type WebhookIdentityTypeWithLiterals as fZ, type CommonQueryWithEntityContext as f_, type GIFTypeWithLiterals as fa, type SourceWithLiterals as fb, type StylesPositionWithLiterals as fc, type MapTypeWithLiterals as fd, type ViewRoleWithLiterals as fe, type VoteRoleWithLiterals as ff, type PollLayoutTypeWithLiterals as fg, type PollLayoutDirectionWithLiterals as fh, type PollDesignBackgroundTypeWithLiterals as fi, type DecorationTypeWithLiterals as fj, type FontTypeWithLiterals as fk, type PositionWithLiterals as fl, type AspectRatioWithLiterals as fm, type ResizingWithLiterals as fn, type PlacementWithLiterals as fo, type TypeWithLiterals as fp, type AlignmentWithLiterals as fq, type LayoutWithLiterals as fr, type AppTypeWithLiterals as fs, type InitialExpandedItemsWithLiterals as ft, type DirectionWithLiterals as fu, type VerticalAlignmentWithLiterals as fv, type NullValueWithLiterals as fw, type ImageScalingScalingWithLiterals as fx, type ImagePositionWithLiterals as fy, type OriginWithLiterals as fz, type BulkUpdateExperienceTagsByFilterApplicationErrors as g, onExperienceCreated as g0, onExperienceTagsModified as g1, onExperienceUpdated as g2, createExperience as g3, getExperience as g4, getExperienceBySlug as g5, updateExperience as g6, queryExperiences as g7, bulkUpdateExperienceTags as g8, bulkUpdateExperienceTagsByFilter as g9, bulkArchiveExperiences as ga, bulkUnarchiveExperiences as gb, type BulkArchiveExperiencesResponse as h, type BulkUnarchiveExperiencesResponse as i, type ExperienceCreatedEnvelope as j, type ExperienceTagsModifiedEnvelope as k, type ExperienceUpdatedEnvelope as l, type ExperiencesQueryBuilder as m, type ExperienceQuery as n, TableAssignmentType as o, TableManagementMode as p, Unit as q, StartDaysAndTimesDayOfWeek as r, BackgroundType as s, typedQueryExperiences as t, GradientType as u, ButtonDataType as v, Target as w, TextAlignment as x, Width as y, LayoutType as z };
@@ -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, B as BulkUpdateExperienceTagsOptions, c as BulkUpdateExperienceTagsResponse, d as BulkUpdateExperienceTagsApplicationErrors, e as BulkUpdateExperienceTagsByFilterOptions, f as BulkUpdateExperienceTagsByFilterResponse, g as BulkUpdateExperienceTagsByFilterApplicationErrors, h as BulkArchiveExperiencesResponse, i as BulkUnarchiveExperiencesResponse, j as ExperienceCreatedEnvelope, k as ExperienceTagsModifiedEnvelope, l as ExperienceUpdatedEnvelope, m as ExperiencesQueryBuilder, n as ExperienceQuery, t as typedQueryExperiences } from './table-reservations-v1-experience-experiences.universal-ZFrZgvqh.mjs';
3
- export { eD as AccountInfo, eG as AccountInfoMetadata, ez as ActionEvent, ed as Address, ee as AddressHint, ds as Aggregation, dF as AggregationData, dt as AggregationKindOneOf, dY as AggregationResults, dZ as AggregationResultsResultOneOf, dM as AggregationResultsScalarResult, ax as AggregationType, fO as AggregationTypeWithLiterals, a5 as Alignment, fm as AlignmentWithLiterals, b_ as AnchorData, d1 as App, c5 as AppEmbedData, c6 as AppEmbedDataAppDataOneOf, a7 as AppType, fo as AppTypeWithLiterals, e0 as ApplicationError, aP as Approval, a1 as AspectRatio, fi as AspectRatioWithLiterals, cq as AudioData, cz as Backdrop, ag as BackdropType, fx as BackdropTypeWithLiterals, b5 as Background, bP as BackgroundGradient, cF as BackgroundImage, s as BackgroundType, eT as BackgroundTypeWithLiterals, cx as Banner, eE as BaseEventMetadata, ct as BlockquoteData, c7 as BookingData, b3 as Border, cn as BorderColors, co as BorderWidths, e2 as BulkActionMetadata, e4 as BulkArchiveExperiencesRequest, e5 as BulkArchiveExperiencesResult, e6 as BulkUnarchiveExperiencesRequest, e7 as BulkUnarchiveExperiencesResult, e3 as BulkUpdateExperienceTagsByFilterRequest, d_ as BulkUpdateExperienceTagsRequest, e1 as BulkUpdateExperienceTagsResult, cs as BulletedListData, eg as BusinessSchedule, b0 as ButtonData, v as ButtonDataType, eX as ButtonDataTypeWithLiterals, c9 as ButtonStyles, cu as CaptionData, cD as CardData, cE as CardDataBackground, am as CardDataBackgroundType, fD as CardDataBackgroundTypeWithLiterals, cc as CardStyles, eb as Categories, cm as CellStyle, en as ChangeContext, eo as ChangeContextPayloadOneOf, bf as CodeBlockData, ci as CollapsibleListData, b$ as ColorData, b4 as Colors, fU as CommonQueryWithEntityContext, fV as CommonSearchWithEntityContext, cS as Configuration, el as ConsentPolicy, d9 as CreateExperienceRequest, da as CreateExperienceResponse, C as Crop, f4 as CropWithLiterals, dk as CursorPaging, dm as CursorPagingMetadata, dh as CursorQuery, di as CursorQueryPagingMethodOneOf, dq as CursorSearch, dr as CursorSearchPagingMethodOneOf, dn as Cursors, aW as CustomFieldDefinition, d5 as CustomTag, dA as DateHistogramAggregation, dU as DateHistogramResult, dW as DateHistogramResults, aA as DayOfWeek, fR as DayOfWeekWithLiterals, bY as Decoration, bZ as DecorationDataOneOf, _ as DecorationType, ff as DecorationTypeWithLiterals, bW as Design, aj as DesignTarget, fA as DesignTargetWithLiterals, ck as Dimensions, a9 as Direction, fq as DirectionWithLiterals, cL as DisplayInfo, bh as DividerData, D as DividerDataAlignment, f0 as DividerDataAlignmentWithLiterals, cI as DocumentStyle, et as DomainEvent, eu as DomainEventBodyOneOf, aX as EmailMarketingCheckbox, cg as EmbedData, es as Empty, ev as EntityCreatedEvent, ey as EntityDeletedEvent, ex as EntityUpdatedEvent, aL as Entry, aM as EntryRecurrenceOptionsOneOf, c8 as EventData, eF as EventMetadata, eI as ExperienceQuerySpec, eJ as ExperienceSearchSpec, eH as ExperiencesQueryResult, cT as ExtendedFields, d4 as File, bi as FileData, bj as FileSource, bk as FileSourceDataOneOf, c4 as FontFamilyData, c2 as FontSizeData, $ as FontType, fg as FontTypeWithLiterals, bx as GIF, bw as GIFData, F as GIFType, f6 as GIFTypeWithLiterals, bm as GalleryData, bs as GalleryOptions, bt as GalleryOptionsLayout, ef as GeoCoordinates, dd as GetExperienceBySlugRequest, db as GetExperienceRequest, dc as GetExperienceResponse, b1 as Gradient, u as GradientType, eU as GradientTypeWithLiterals, dV as GroupByValueResults, bz as HTMLData, bA as HTMLDataDataOneOf, by as HeadingData, ba as Height, eB as IdentificationData, eC as IdentificationDataIdOneOf, bo as Image, bB as ImageData, bD as ImageDataStyles, ad as ImagePosition, al as ImagePositionPosition, fC as ImagePositionPositionWithLiterals, fu as ImagePositionWithLiterals, ac as ImageScalingScaling, ft as ImageScalingScalingWithLiterals, ca as ImageStyles, dv as IncludeMissingValuesOptions, ao as Indentation, fF as IndentationWithLiterals, a8 as InitialExpandedItems, fp as InitialExpandedItemsWithLiterals, aw as Interval, fN as IntervalWithLiterals, c$ as InvalidateCache, d0 as InvalidateCacheGetByOneOf, bq as Item, br as ItemDataOneOf, d$ as ItemMetadata, bu as ItemStyle, cY as Keyword, a6 as Layout, cA as LayoutCellData, cv as LayoutData, cy as LayoutDataBackground, cw as LayoutDataBackgroundImage, af as LayoutDataBackgroundType, fw as LayoutDataBackgroundTypeWithLiterals, z as LayoutType, f2 as LayoutTypeWithLiterals, fn as LayoutWithLiterals, L as LineStyle, e_ as LineStyleWithLiterals, bc as Link, c0 as LinkData, bd as LinkDataOneOf, bE as LinkPreviewData, bF as LinkPreviewDataStyles, an as ListStyle, fE as ListStyleWithLiterals, cp as ListValue, ec as Locale, bG as MapData, bH as MapSettings, J as MapType, f9 as MapTypeWithLiterals, aQ as MaxGuests, bn as Media, c1 as MentionData, eA as MessageEnvelope, cH as Metadata, at as MissingValues, fK as MissingValuesWithLiterals, M as Mode, eP as ModeWithLiterals, ej as Multilingual, dD as NestedAggregation, dB as NestedAggregationItem, dC as NestedAggregationItemKindOneOf, dI as NestedAggregationResults, dJ as NestedAggregationResultsResultOneOf, av as NestedAggregationType, fM as NestedAggregationTypeWithLiterals, dR as NestedResultValue, dS as NestedResultValueResultOneOf, dX as NestedResults, dN as NestedValueAggregationResult, aZ as Node, a_ as NodeDataOneOf, a$ as NodeStyle, N as NodeType, eS as NodeTypeWithLiterals, aO as NoticePeriod, ab as NullValue, fs as NullValueWithLiterals, ch as Oembed, aG as OnOptions, aH as OnOptionsOptionsOneOf, aK as OneTimeOptions, cO as OnlineReservations, aR as OnlineReservationsBusinessSchedule, bL as Option, bT as OptionDesign, bO as OptionLayout, cr as OrderedListData, O as Orientation, f3 as OrientationWithLiterals, ae as Origin, fv as OriginWithLiterals, bl as PDFSettings, d2 as Page, d6 as Pages, bI as ParagraphData, aN as PartySize, cM as PaymentPolicy, cN as PaymentPolicyOptionsOneOf, ap as PaymentPolicyType, fG as PaymentPolicyTypeWithLiterals, cK as PerGuestOptions, bK as Permissions, a3 as Placement, az as PlacementType, fQ as PlacementTypeWithLiterals, fk as PlacementWithLiterals, cf as PlaybackOptions, b6 as PluginContainerData, P as PluginContainerDataAlignment, eW as PluginContainerDataAlignmentWithLiterals, b7 as PluginContainerDataWidth, b8 as PluginContainerDataWidthDataOneOf, bU as Poll, bJ as PollData, bV as PollDataLayout, bS as PollDesign, bQ as PollDesignBackground, bR as PollDesignBackgroundBackgroundOneOf, Z as PollDesignBackgroundType, fe as PollDesignBackgroundTypeWithLiterals, bN as PollLayout, Y as PollLayoutDirection, fd as PollLayoutDirectionWithLiterals, X as PollLayoutType, fc as PollLayoutTypeWithLiterals, bM as PollSettings, a0 as Position, fh as PositionWithLiterals, cd as PricingData, aS as PrivacyPolicy, aT as PrivacyPolicyValueOneOf, ea as Properties, ep as PropertiesChange, dg as QueryExperiencesRequest, dl as QueryExperiencesResponse, dy as RangeAggregation, dH as RangeAggregationResult, du as RangeBucket, dP as RangeResult, dL as RangeResults, R as Recurrence, eR as RecurrenceWithLiterals, be as Rel, cP as ReservationForm, a2 as Resizing, fj as ResizingWithLiterals, aB as ResolutionMethod, fS as ResolutionMethodWithLiterals, ai as ResponsivenessBehaviour, fz as ResponsivenessBehaviourWithLiterals, ew as RestoreInfo, dT as Results, cb as RibbonStyles, aY as RichContent, dz as ScalarAggregation, dQ as ScalarResult, au as ScalarType, fL as ScalarTypeWithLiterals, ak as Scaling, fB as ScalingWithLiterals, dE as SearchDetails, ay as SearchDetailsMode, fP as SearchDetailsModeWithLiterals, dp as SearchExperiencesRequest, cX as SeoSchema, cW as SeoSettings, c_ as Settings, cB as ShapeData, cC as ShapeDataStyles, er as SiteCloned, eq as SiteCreated, e9 as SitePropertiesEvent, e8 as SitePropertiesNotification, as as SortDirection, fJ as SortDirectionWithLiterals, aq as SortOrder, fH as SortOrderWithLiterals, ar as SortType, fI as SortTypeWithLiterals, dj as Sorting, H as Source, f7 as SourceWithLiterals, ei as SpecialHourPeriod, aF as SpecificTablesOptions, b9 as Spoiler, c3 as SpoilerData, aI as StartDaysAndTimes, r as StartDaysAndTimesDayOfWeek, eQ as StartDaysAndTimesDayOfWeekWithLiterals, b2 as Stop, bb as Styles, bC as StylesBorder, I as StylesPosition, f8 as StylesPositionWithLiterals, ek as SupportedLanguage, aD as Table, o as TableAssignmentType, eM as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, eL as TableAvailabilityTypeWithLiterals, cl as TableCellData, aE as TableCombination, cj as TableData, cQ as TableManagement, p as TableManagementMode, eN as TableManagementModeWithLiterals, cR as TableManagementOptionsOneOf, cZ as Tag, cV as TagList, cU as Tags, d8 as TagsModified, w as Target, eY as TargetWithLiterals, aU as TermsAndConditions, aV as TermsAndConditionsValueOneOf, x as TextAlignment, eZ as TextAlignmentWithLiterals, bX as TextData, cJ as TextNodeStyle, bg as TextStyle, bv as Thumbnails, A as ThumbnailsAlignment, f5 as ThumbnailsAlignmentWithLiterals, eh as TimePeriod, cG as TocData, em as Translation, a4 as Type, fl as TypeWithLiterals, d3 as URI, d7 as URIs, q as Unit, eO as UnitWithLiterals, de as UpdateExperienceRequest, df as UpdateExperienceResponse, dw as ValueAggregation, dx as ValueAggregationOptionsOneOf, dG as ValueAggregationResult, dO as ValueResult, dK as ValueResults, aa as VerticalAlignment, ah as VerticalAlignmentAlignment, fy as VerticalAlignmentAlignmentWithLiterals, fr as VerticalAlignmentWithLiterals, bp as Video, ce as VideoData, V as ViewMode, f1 as ViewModeWithLiterals, K as ViewRole, fa as ViewRoleWithLiterals, Q as VoteRole, fb as VoteRoleWithLiterals, aC as WebhookIdentityType, fT as WebhookIdentityTypeWithLiterals, aJ as WeeklyOptions, y as Width, W as WidthType, eV as WidthTypeWithLiterals, e$ as WidthWithLiterals, eK as utils } from './table-reservations-v1-experience-experiences.universal-ZFrZgvqh.mjs';
2
+ import { E as Experience, G as GetExperienceBySlugResponse, U as UpdateExperience, a as UpdateExperienceApplicationErrors, b as ExperienceSearch, S as SearchExperiencesResponse, B as BulkUpdateExperienceTagsOptions, c as BulkUpdateExperienceTagsResponse, d as BulkUpdateExperienceTagsApplicationErrors, e as BulkUpdateExperienceTagsByFilterOptions, f as BulkUpdateExperienceTagsByFilterResponse, g as BulkUpdateExperienceTagsByFilterApplicationErrors, h as BulkArchiveExperiencesResponse, i as BulkUnarchiveExperiencesResponse, j as ExperienceCreatedEnvelope, k as ExperienceTagsModifiedEnvelope, l as ExperienceUpdatedEnvelope, m as ExperiencesQueryBuilder, n as ExperienceQuery, t as typedQueryExperiences } from './table-reservations-v1-experience-experiences.universal-BAFNaOzr.mjs';
3
+ export { eH as AccountInfo, eK as AccountInfoMetadata, eD as ActionEvent, eh as Address, ei as AddressHint, dw as Aggregation, dJ as AggregationData, dx as AggregationKindOneOf, e0 as AggregationResults, e1 as AggregationResultsResultOneOf, dQ as AggregationResultsScalarResult, az as AggregationType, fU as AggregationTypeWithLiterals, a5 as Alignment, fq as AlignmentWithLiterals, c0 as AnchorData, d5 as App, c7 as AppEmbedData, c8 as AppEmbedDataAppDataOneOf, a7 as AppType, fs as AppTypeWithLiterals, e4 as ApplicationError, aR as Approval, a1 as AspectRatio, fm as AspectRatioWithLiterals, cs as AudioData, cB as Backdrop, ag as BackdropType, fB as BackdropTypeWithLiterals, b7 as Background, bR as BackgroundGradient, cH as BackgroundImage, s as BackgroundType, eX as BackgroundTypeWithLiterals, cz as Banner, eI as BaseEventMetadata, cv as BlockquoteData, c9 as BookingData, b5 as Border, cp as BorderColors, cq as BorderWidths, e6 as BulkActionMetadata, e8 as BulkArchiveExperiencesRequest, e9 as BulkArchiveExperiencesResult, ea as BulkUnarchiveExperiencesRequest, eb as BulkUnarchiveExperiencesResult, e7 as BulkUpdateExperienceTagsByFilterRequest, e2 as BulkUpdateExperienceTagsRequest, e5 as BulkUpdateExperienceTagsResult, cu as BulletedListData, ek as BusinessSchedule, b2 as ButtonData, v as ButtonDataType, e$ as ButtonDataTypeWithLiterals, cb as ButtonStyles, cw as CaptionData, cF as CardData, cG as CardDataBackground, am as CardDataBackgroundType, fH as CardDataBackgroundTypeWithLiterals, ce as CardStyles, ef as Categories, co as CellStyle, er as ChangeContext, es as ChangeContextPayloadOneOf, bh as CodeBlockData, ck as CollapsibleListData, c1 as ColorData, b6 as Colors, aq as ColumnSize, fL as ColumnSizeWithLiterals, f_ as CommonQueryWithEntityContext, f$ as CommonSearchWithEntityContext, cW as Configuration, ep as ConsentPolicy, dd as CreateExperienceRequest, de as CreateExperienceResponse, C as Crop, f8 as CropWithLiterals, dp as CursorPaging, dr as CursorPagingMetadata, dl as CursorQuery, dm as CursorQueryPagingMethodOneOf, du as CursorSearch, dv as CursorSearchPagingMethodOneOf, ds as Cursors, aY as CustomFieldDefinition, d9 as CustomTag, dE as DateHistogramAggregation, dY as DateHistogramResult, d_ as DateHistogramResults, aC as DayOfWeek, fX as DayOfWeekWithLiterals, b_ as Decoration, b$ as DecorationDataOneOf, _ as DecorationType, fj as DecorationTypeWithLiterals, bY as Design, aj as DesignTarget, fE as DesignTargetWithLiterals, cm as Dimensions, a9 as Direction, fu as DirectionWithLiterals, cP as DisplayInfo, bj as DividerData, D as DividerDataAlignment, f4 as DividerDataAlignmentWithLiterals, cM as DocumentStyle, ex as DomainEvent, ey as DomainEventBodyOneOf, aZ as EmailMarketingCheckbox, ci as EmbedData, ew as Empty, ez as EntityCreatedEvent, eC as EntityDeletedEvent, eB as EntityUpdatedEvent, aN as Entry, aO as EntryRecurrenceOptionsOneOf, ca as EventData, eJ as EventMetadata, eM as ExperienceQuerySpec, eN as ExperienceSearchSpec, eL as ExperiencesQueryResult, cX as ExtendedFields, d8 as File, bk as FileData, bl as FileSource, bm as FileSourceDataOneOf, c6 as FontFamilyData, c4 as FontSizeData, $ as FontType, fk as FontTypeWithLiterals, bz as GIF, by as GIFData, F as GIFType, fa as GIFTypeWithLiterals, bo as GalleryData, bu as GalleryOptions, bv as GalleryOptionsLayout, ej as GeoCoordinates, dh as GetExperienceBySlugRequest, df as GetExperienceRequest, dg as GetExperienceResponse, b3 as Gradient, u as GradientType, eY as GradientTypeWithLiterals, dZ as GroupByValueResults, bB as HTMLData, bC as HTMLDataDataOneOf, bA as HeadingData, bc as Height, eF as IdentificationData, eG as IdentificationDataIdOneOf, bq as Image, bD as ImageData, bF as ImageDataStyles, ad as ImagePosition, al as ImagePositionPosition, fG as ImagePositionPositionWithLiterals, fy as ImagePositionWithLiterals, ac as ImageScalingScaling, fx as ImageScalingScalingWithLiterals, cc as ImageStyles, dz as IncludeMissingValuesOptions, ao as Indentation, fJ as IndentationWithLiterals, a8 as InitialExpandedItems, ft as InitialExpandedItemsWithLiterals, ay as Interval, fT as IntervalWithLiterals, d3 as InvalidateCache, d4 as InvalidateCacheGetByOneOf, bs as Item, bt as ItemDataOneOf, e3 as ItemMetadata, bw as ItemStyle, d0 as Keyword, a6 as Layout, cC as LayoutCellData, cx as LayoutData, cA as LayoutDataBackground, cy as LayoutDataBackgroundImage, af as LayoutDataBackgroundType, fA as LayoutDataBackgroundTypeWithLiterals, z as LayoutType, f6 as LayoutTypeWithLiterals, fr as LayoutWithLiterals, L as LineStyle, f2 as LineStyleWithLiterals, be as Link, c2 as LinkData, bf as LinkDataOneOf, bG as LinkPreviewData, bH as LinkPreviewDataStyles, an as ListStyle, fI as ListStyleWithLiterals, cr as ListValue, eg as Locale, bI as MapData, bJ as MapSettings, J as MapType, fd as MapTypeWithLiterals, aS as MaxGuests, bp as Media, c3 as MentionData, eE as MessageEnvelope, cL as Metadata, av as MissingValues, fQ as MissingValuesWithLiterals, M as Mode, eT as ModeWithLiterals, en as Multilingual, dH as NestedAggregation, dF as NestedAggregationItem, dG as NestedAggregationItemKindOneOf, dM as NestedAggregationResults, dN as NestedAggregationResultsResultOneOf, ax as NestedAggregationType, fS as NestedAggregationTypeWithLiterals, dV as NestedResultValue, dW as NestedResultValueResultOneOf, d$ as NestedResults, dR as NestedValueAggregationResult, a$ as Node, b0 as NodeDataOneOf, b1 as NodeStyle, N as NodeType, eW as NodeTypeWithLiterals, aQ as NoticePeriod, ab as NullValue, fw as NullValueWithLiterals, cj as Oembed, aI as OnOptions, aJ as OnOptionsOptionsOneOf, aM as OneTimeOptions, cS as OnlineReservations, aT as OnlineReservationsBusinessSchedule, bN as Option, bV as OptionDesign, bQ as OptionLayout, ct as OrderedListData, O as Orientation, f7 as OrientationWithLiterals, ae as Origin, fz as OriginWithLiterals, bn as PDFSettings, d6 as Page, da as Pages, bK as ParagraphData, aP as PartySize, cQ as PaymentPolicy, cR as PaymentPolicyOptionsOneOf, ar as PaymentPolicyType, fM as PaymentPolicyTypeWithLiterals, cO as PerGuestOptions, bM as Permissions, a3 as Placement, aB as PlacementType, fW as PlacementTypeWithLiterals, fo as PlacementWithLiterals, ch as PlaybackOptions, b8 as PluginContainerData, P as PluginContainerDataAlignment, e_ as PluginContainerDataAlignmentWithLiterals, b9 as PluginContainerDataWidth, ba as PluginContainerDataWidthDataOneOf, bW as Poll, bL as PollData, bX as PollDataLayout, bU as PollDesign, bS as PollDesignBackground, bT as PollDesignBackgroundBackgroundOneOf, Z as PollDesignBackgroundType, fi as PollDesignBackgroundTypeWithLiterals, bP as PollLayout, Y as PollLayoutDirection, fh as PollLayoutDirectionWithLiterals, X as PollLayoutType, fg as PollLayoutTypeWithLiterals, bO as PollSettings, a0 as Position, fl as PositionWithLiterals, cf as PricingData, aU as PrivacyPolicy, aV as PrivacyPolicyValueOneOf, ee as Properties, et as PropertiesChange, dk as QueryExperiencesRequest, dq as QueryExperiencesResponse, dC as RangeAggregation, dL as RangeAggregationResult, dy as RangeBucket, dT as RangeResult, dP as RangeResults, R as Recurrence, eV as RecurrenceWithLiterals, bg as Rel, cT as ReservationForm, a2 as Resizing, fn as ResizingWithLiterals, aD as ResolutionMethod, fY as ResolutionMethodWithLiterals, ai as ResponsivenessBehaviour, fD as ResponsivenessBehaviourWithLiterals, eA as RestoreInfo, dX as Results, cd as RibbonStyles, a_ as RichContent, dD as ScalarAggregation, dU as ScalarResult, aw as ScalarType, fR as ScalarTypeWithLiterals, ak as Scaling, fF as ScalingWithLiterals, dI as SearchDetails, aA as SearchDetailsMode, fV as SearchDetailsModeWithLiterals, dt as SearchExperiencesRequest, c$ as SeoSchema, c_ as SeoSettings, d2 as Settings, cD as ShapeData, cE as ShapeDataStyles, ev as SiteCloned, eu as SiteCreated, ed as SitePropertiesEvent, ec as SitePropertiesNotification, cK as SmartBlockCellData, cJ as SmartBlockData, ap as SmartBlockDataType, fK as SmartBlockDataTypeWithLiterals, au as SortDirection, fP as SortDirectionWithLiterals, as as SortOrder, fN as SortOrderWithLiterals, at as SortType, fO as SortTypeWithLiterals, dn as Sorting, H as Source, fb as SourceWithLiterals, em as SpecialHourPeriod, aH as SpecificTablesOptions, bb as Spoiler, c5 as SpoilerData, aK as StartDaysAndTimes, r as StartDaysAndTimesDayOfWeek, eU as StartDaysAndTimesDayOfWeekWithLiterals, b4 as Stop, bd as Styles, bE as StylesBorder, I as StylesPosition, fc as StylesPositionWithLiterals, eo as SupportedLanguage, aF as Table, o as TableAssignmentType, eQ as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, eP as TableAvailabilityTypeWithLiterals, cn as TableCellData, aG as TableCombination, cl as TableData, cU as TableManagement, p as TableManagementMode, eR as TableManagementModeWithLiterals, cV as TableManagementOptionsOneOf, d1 as Tag, cZ as TagList, cY as Tags, dc as TagsModified, w as Target, f0 as TargetWithLiterals, aW as TermsAndConditions, aX as TermsAndConditionsValueOneOf, x as TextAlignment, f1 as TextAlignmentWithLiterals, bZ as TextData, cN as TextNodeStyle, bi as TextStyle, bx as Thumbnails, A as ThumbnailsAlignment, f9 as ThumbnailsAlignmentWithLiterals, el as TimePeriod, cI as TocData, eq as Translation, a4 as Type, fp as TypeWithLiterals, d7 as URI, db as URIs, q as Unit, eS as UnitWithLiterals, di as UpdateExperienceRequest, dj as UpdateExperienceResponse, dA as ValueAggregation, dB as ValueAggregationOptionsOneOf, dK as ValueAggregationResult, dS as ValueResult, dO as ValueResults, aa as VerticalAlignment, ah as VerticalAlignmentAlignment, fC as VerticalAlignmentAlignmentWithLiterals, fv as VerticalAlignmentWithLiterals, br as Video, cg as VideoData, V as ViewMode, f5 as ViewModeWithLiterals, K as ViewRole, fe as ViewRoleWithLiterals, Q as VoteRole, ff as VoteRoleWithLiterals, aE as WebhookIdentityType, fZ as WebhookIdentityTypeWithLiterals, aL as WeeklyOptions, y as Width, W as WidthType, eZ as WidthTypeWithLiterals, f3 as WidthWithLiterals, eO as utils } from './table-reservations-v1-experience-experiences.universal-BAFNaOzr.mjs';
4
4
 
5
5
  declare function createExperience$1(httpClient: HttpClient): CreateExperienceSignature;
6
6
  interface CreateExperienceSignature {
@@ -244,6 +244,9 @@ function createExperience(payload) {
244
244
  },
245
245
  {
246
246
  path: "experience.configuration.displayInfo.richContent.nodes.tocData.itemSpacing"
247
+ },
248
+ {
249
+ path: "experience.configuration.displayInfo.richContent.nodes.smartBlockCellData.shape.duration"
247
250
  }
248
251
  ]
249
252
  }
@@ -386,6 +389,9 @@ function createExperience(payload) {
386
389
  },
387
390
  {
388
391
  path: "experience.configuration.displayInfo.richContent.nodes.tocData.itemSpacing"
392
+ },
393
+ {
394
+ path: "experience.configuration.displayInfo.richContent.nodes.smartBlockCellData.shape.duration"
389
395
  }
390
396
  ]
391
397
  }
@@ -535,6 +541,9 @@ function getExperience(payload) {
535
541
  },
536
542
  {
537
543
  path: "experience.configuration.displayInfo.richContent.nodes.tocData.itemSpacing"
544
+ },
545
+ {
546
+ path: "experience.configuration.displayInfo.richContent.nodes.smartBlockCellData.shape.duration"
538
547
  }
539
548
  ]
540
549
  }
@@ -684,6 +693,9 @@ function getExperienceBySlug(payload) {
684
693
  },
685
694
  {
686
695
  path: "experience.configuration.displayInfo.richContent.nodes.tocData.itemSpacing"
696
+ },
697
+ {
698
+ path: "experience.configuration.displayInfo.richContent.nodes.smartBlockCellData.shape.duration"
687
699
  }
688
700
  ]
689
701
  }
@@ -823,6 +835,9 @@ function updateExperience(payload) {
823
835
  },
824
836
  {
825
837
  path: "experience.configuration.displayInfo.richContent.nodes.tocData.itemSpacing"
838
+ },
839
+ {
840
+ path: "experience.configuration.displayInfo.richContent.nodes.smartBlockCellData.shape.duration"
826
841
  }
827
842
  ]
828
843
  }
@@ -965,6 +980,9 @@ function updateExperience(payload) {
965
980
  },
966
981
  {
967
982
  path: "experience.configuration.displayInfo.richContent.nodes.tocData.itemSpacing"
983
+ },
984
+ {
985
+ path: "experience.configuration.displayInfo.richContent.nodes.smartBlockCellData.shape.duration"
968
986
  }
969
987
  ]
970
988
  }
@@ -1114,6 +1132,9 @@ function queryExperiences(payload) {
1114
1132
  },
1115
1133
  {
1116
1134
  path: "experiences.configuration.displayInfo.richContent.nodes.tocData.itemSpacing"
1135
+ },
1136
+ {
1137
+ path: "experiences.configuration.displayInfo.richContent.nodes.smartBlockCellData.shape.duration"
1117
1138
  }
1118
1139
  ]
1119
1140
  }
@@ -1290,6 +1311,9 @@ function searchExperiences(payload) {
1290
1311
  {
1291
1312
  path: "experiences.configuration.displayInfo.richContent.nodes.tocData.itemSpacing"
1292
1313
  },
1314
+ {
1315
+ path: "experiences.configuration.displayInfo.richContent.nodes.smartBlockCellData.shape.duration"
1316
+ },
1293
1317
  { path: "aggregationData.results.ranges.results.from" },
1294
1318
  { path: "aggregationData.results.ranges.results.to" },
1295
1319
  {
@@ -1501,6 +1525,8 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
1501
1525
  NodeType2["SHAPE"] = "SHAPE";
1502
1526
  NodeType2["CARD"] = "CARD";
1503
1527
  NodeType2["TOC"] = "TOC";
1528
+ NodeType2["SMART_BLOCK"] = "SMART_BLOCK";
1529
+ NodeType2["SMART_BLOCK_CELL"] = "SMART_BLOCK_CELL";
1504
1530
  return NodeType2;
1505
1531
  })(NodeType || {});
1506
1532
  var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
@@ -1828,6 +1854,30 @@ var Indentation = /* @__PURE__ */ ((Indentation2) => {
1828
1854
  Indentation2["FLAT"] = "FLAT";
1829
1855
  return Indentation2;
1830
1856
  })(Indentation || {});
1857
+ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
1858
+ SmartBlockDataType2["SOLID_BOXES"] = "SOLID_BOXES";
1859
+ SmartBlockDataType2["NUMBERED_BOXES"] = "NUMBERED_BOXES";
1860
+ SmartBlockDataType2["STATS"] = "STATS";
1861
+ SmartBlockDataType2["CIRCLE_STATS"] = "CIRCLE_STATS";
1862
+ SmartBlockDataType2["SOLID_BOXES_ALTERNATING"] = "SOLID_BOXES_ALTERNATING";
1863
+ SmartBlockDataType2["SOLID_JOINED_BOXES"] = "SOLID_JOINED_BOXES";
1864
+ SmartBlockDataType2["SIDE_LINE_TEXT"] = "SIDE_LINE_TEXT";
1865
+ SmartBlockDataType2["TOP_LINE_TEXT"] = "TOP_LINE_TEXT";
1866
+ SmartBlockDataType2["OUTLINE_BOXES_WITH_TOP_CIRCLE"] = "OUTLINE_BOXES_WITH_TOP_CIRCLE";
1867
+ SmartBlockDataType2["BIG_BULLETS"] = "BIG_BULLETS";
1868
+ SmartBlockDataType2["SMALL_BULLETS"] = "SMALL_BULLETS";
1869
+ SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
1870
+ SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
1871
+ SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
1872
+ return SmartBlockDataType2;
1873
+ })(SmartBlockDataType || {});
1874
+ var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
1875
+ ColumnSize2["SMALL"] = "SMALL";
1876
+ ColumnSize2["MEDIUM"] = "MEDIUM";
1877
+ ColumnSize2["LARGE"] = "LARGE";
1878
+ ColumnSize2["EXTRA_LARGE"] = "EXTRA_LARGE";
1879
+ return ColumnSize2;
1880
+ })(ColumnSize || {});
1831
1881
  var PaymentPolicyType = /* @__PURE__ */ ((PaymentPolicyType2) => {
1832
1882
  PaymentPolicyType2["PER_GUEST"] = "PER_GUEST";
1833
1883
  PaymentPolicyType2["FREE"] = "FREE";
@@ -2649,6 +2699,9 @@ var onExperienceCreated = EventDefinition(
2649
2699
  },
2650
2700
  {
2651
2701
  path: "entity.configuration.displayInfo.richContent.nodes.tocData.itemSpacing"
2702
+ },
2703
+ {
2704
+ path: "entity.configuration.displayInfo.richContent.nodes.smartBlockCellData.shape.duration"
2652
2705
  }
2653
2706
  ]
2654
2707
  }
@@ -2802,6 +2855,9 @@ var onExperienceTagsModified = EventDefinition(
2802
2855
  },
2803
2856
  {
2804
2857
  path: "data.experience.configuration.displayInfo.richContent.nodes.tocData.itemSpacing"
2858
+ },
2859
+ {
2860
+ path: "data.experience.configuration.displayInfo.richContent.nodes.smartBlockCellData.shape.duration"
2805
2861
  }
2806
2862
  ]
2807
2863
  }
@@ -2970,6 +3026,9 @@ var onExperienceUpdated = EventDefinition(
2970
3026
  {
2971
3027
  path: "entity.configuration.displayInfo.richContent.nodes.tocData.itemSpacing"
2972
3028
  },
3029
+ {
3030
+ path: "entity.configuration.displayInfo.richContent.nodes.smartBlockCellData.shape.duration"
3031
+ },
2973
3032
  {
2974
3033
  path: "modifiedFields.configuration.displayInfo.richContent.nodes.buttonData.styles.background.gradient.centerX"
2975
3034
  },
@@ -3077,6 +3136,9 @@ var onExperienceUpdated = EventDefinition(
3077
3136
  },
3078
3137
  {
3079
3138
  path: "modifiedFields.configuration.displayInfo.richContent.nodes.tocData.itemSpacing"
3139
+ },
3140
+ {
3141
+ path: "modifiedFields.configuration.displayInfo.richContent.nodes.smartBlockCellData.shape.duration"
3080
3142
  }
3081
3143
  ]
3082
3144
  }
@@ -3127,6 +3189,7 @@ export {
3127
3189
  BackgroundType,
3128
3190
  ButtonDataType,
3129
3191
  CardDataBackgroundType,
3192
+ ColumnSize,
3130
3193
  Crop,
3131
3194
  DayOfWeek,
3132
3195
  DecorationType,
@@ -3170,6 +3233,7 @@ export {
3170
3233
  ScalarType,
3171
3234
  Scaling,
3172
3235
  SearchDetailsMode,
3236
+ SmartBlockDataType,
3173
3237
  SortDirection,
3174
3238
  SortOrder,
3175
3239
  SortType,