@wix/auto_sdk_table-reservations_experiences 1.0.43 → 1.0.44

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 +12 -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 +12 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +31 -5
  8. package/build/cjs/meta.js +12 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/{table-reservations-v1-experience-experiences.universal-BqhRReXL.d.ts → table-reservations-v1-experience-experiences.universal-Dye8qAKg.d.ts} +31 -5
  11. package/build/es/index.d.mts +2 -2
  12. package/build/es/index.mjs +11 -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 +11 -0
  16. package/build/es/index.typings.mjs.map +1 -1
  17. package/build/es/meta.d.mts +31 -5
  18. package/build/es/meta.mjs +11 -0
  19. package/build/es/meta.mjs.map +1 -1
  20. package/build/es/{table-reservations-v1-experience-experiences.universal-BqhRReXL.d.mts → table-reservations-v1-experience-experiences.universal-Dye8qAKg.d.mts} +31 -5
  21. package/build/internal/cjs/index.d.ts +2 -2
  22. package/build/internal/cjs/index.js +12 -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 +12 -0
  26. package/build/internal/cjs/index.typings.js.map +1 -1
  27. package/build/internal/cjs/meta.d.ts +31 -5
  28. package/build/internal/cjs/meta.js +12 -0
  29. package/build/internal/cjs/meta.js.map +1 -1
  30. package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-BqhRReXL.d.ts → table-reservations-v1-experience-experiences.universal-Dye8qAKg.d.ts} +31 -5
  31. package/build/internal/es/index.d.mts +2 -2
  32. package/build/internal/es/index.mjs +11 -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 +11 -0
  36. package/build/internal/es/index.typings.mjs.map +1 -1
  37. package/build/internal/es/meta.d.mts +31 -5
  38. package/build/internal/es/meta.mjs +11 -0
  39. package/build/internal/es/meta.mjs.map +1 -1
  40. package/build/internal/es/{table-reservations-v1-experience-experiences.universal-BqhRReXL.d.mts → table-reservations-v1-experience-experiences.universal-Dye8qAKg.d.mts} +31 -5
  41. package/package.json +2 -2
@@ -1551,6 +1551,8 @@ interface Decoration extends DecorationDataOneOf {
1551
1551
  subscriptData?: boolean | null;
1552
1552
  /** Data for a font family decoration. */
1553
1553
  fontFamilyData?: FontFamilyData;
1554
+ /** Data for a hand-drawn sketch annotation decoration. */
1555
+ sketchData?: SketchData;
1554
1556
  /** The type of decoration to apply. */
1555
1557
  type?: DecorationTypeWithLiterals;
1556
1558
  }
@@ -1582,6 +1584,8 @@ interface DecorationDataOneOf {
1582
1584
  subscriptData?: boolean | null;
1583
1585
  /** Data for a font family decoration. */
1584
1586
  fontFamilyData?: FontFamilyData;
1587
+ /** Data for a hand-drawn sketch annotation decoration. */
1588
+ sketchData?: SketchData;
1585
1589
  }
1586
1590
  declare enum DecorationType {
1587
1591
  BOLD = "BOLD",
@@ -1597,10 +1601,11 @@ declare enum DecorationType {
1597
1601
  STRIKETHROUGH = "STRIKETHROUGH",
1598
1602
  SUPERSCRIPT = "SUPERSCRIPT",
1599
1603
  SUBSCRIPT = "SUBSCRIPT",
1600
- FONT_FAMILY = "FONT_FAMILY"
1604
+ FONT_FAMILY = "FONT_FAMILY",
1605
+ SKETCH = "SKETCH"
1601
1606
  }
1602
1607
  /** @enumType */
1603
- type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
1608
+ type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY' | 'SKETCH';
1604
1609
  interface AnchorData {
1605
1610
  /** The target node's ID. */
1606
1611
  anchor?: string;
@@ -1643,6 +1648,27 @@ interface FontFamilyData {
1643
1648
  /** @maxLength 1000 */
1644
1649
  value?: string | null;
1645
1650
  }
1651
+ interface SketchData {
1652
+ /** The sketch annotation variant to draw over the text. */
1653
+ variant?: VariantWithLiterals;
1654
+ /**
1655
+ * Annotation color. Defaults to the theme action color.
1656
+ * @maxLength 19
1657
+ */
1658
+ color?: string | null;
1659
+ /** Whether the annotation animates on first paint. Defaults to `true`. */
1660
+ animate?: boolean | null;
1661
+ }
1662
+ declare enum Variant {
1663
+ UNDERLINE = "UNDERLINE",
1664
+ BOX = "BOX",
1665
+ CIRCLE = "CIRCLE",
1666
+ HIGHLIGHT = "HIGHLIGHT",
1667
+ STRIKETHROUGH = "STRIKETHROUGH",
1668
+ CROSSED_OFF = "CROSSED_OFF"
1669
+ }
1670
+ /** @enumType */
1671
+ type VariantWithLiterals = Variant | 'UNDERLINE' | 'BOX' | 'CIRCLE' | 'HIGHLIGHT' | 'STRIKETHROUGH' | 'CROSSED_OFF';
1646
1672
  interface AppEmbedData extends AppEmbedDataAppDataOneOf {
1647
1673
  /** Data for embedded Wix Bookings content. */
1648
1674
  bookingData?: BookingData;
@@ -4139,7 +4165,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
4139
4165
  /** If present, indicates the action that triggered the event. */
4140
4166
  originatedFrom?: string | null;
4141
4167
  /**
4142
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
4168
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
4143
4169
  * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
4144
4170
  */
4145
4171
  entityEventSequence?: string | null;
@@ -4328,7 +4354,7 @@ interface EventMetadata extends BaseEventMetadata {
4328
4354
  /** If present, indicates the action that triggered the event. */
4329
4355
  originatedFrom?: string | null;
4330
4356
  /**
4331
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
4357
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
4332
4358
  * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
4333
4359
  */
4334
4360
  entityEventSequence?: string | null;
@@ -4951,4 +4977,4 @@ declare function bulkArchiveExperiences(experienceIds: string[]): Promise<NonNul
4951
4977
  */
4952
4978
  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>>;
4953
4979
 
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 };
4980
+ 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 PrivacyPolicyValueOneOf as a$, PollLayoutDirection as a0, PollDesignBackgroundType as a1, DecorationType as a2, FontType as a3, Variant as a4, Position as a5, AspectRatio as a6, Resizing as a7, Placement as a8, Type as a9, SortDirection as aA, MissingValues as aB, ScalarType as aC, NestedAggregationType as aD, Interval as aE, AggregationType as aF, SearchDetailsMode as aG, PlacementType as aH, DayOfWeek as aI, ResolutionMethod as aJ, WebhookIdentityType as aK, type Table as aL, type TableCombination as aM, type SpecificTablesOptions as aN, type OnOptions as aO, type OnOptionsOptionsOneOf as aP, type StartDaysAndTimes as aQ, type WeeklyOptions as aR, type OneTimeOptions as aS, type Entry as aT, type EntryRecurrenceOptionsOneOf as aU, type PartySize as aV, type NoticePeriod as aW, type Approval as aX, type MaxGuests as aY, type OnlineReservationsBusinessSchedule as aZ, type PrivacyPolicy as a_, Alignment as aa, Layout as ab, AppType as ac, InitialExpandedItems as ad, Direction as ae, VerticalAlignment as af, NullValue as ag, ImageScalingScaling as ah, ImagePosition as ai, Origin as aj, BannerPosition as ak, LayoutDataBackgroundType as al, BackdropType as am, VerticalAlignmentAlignment as an, ResponsivenessBehaviour as ao, DesignTarget as ap, Scaling as aq, ImagePositionPosition as ar, CardDataBackgroundType as as, ListStyle as at, Indentation as au, SmartBlockDataType as av, ColumnSize as aw, PaymentPolicyType as ax, SortOrder as ay, SortType as az, type ExperienceSearch as b, type OptionDesign as b$, type TermsAndConditions as b0, type TermsAndConditionsValueOneOf as b1, type CustomFieldDefinition as b2, type EmailMarketingCheckbox as b3, type RichContent as b4, type Node as b5, type NodeDataOneOf as b6, type NodeStyle as b7, type ButtonData as b8, type Gradient as b9, type GalleryOptions as bA, type GalleryOptionsLayout as bB, type ItemStyle as bC, type Thumbnails as bD, type GIFData as bE, type GIF as bF, type HeadingData as bG, type HTMLData as bH, type HTMLDataDataOneOf as bI, type ImageData as bJ, type StylesBorder as bK, type ImageDataStyles as bL, type LinkPreviewData as bM, type LinkPreviewDataStyles as bN, type MapData as bO, type MapSettings as bP, type ParagraphData as bQ, type PollData as bR, type Permissions as bS, type Option as bT, type PollSettings as bU, type PollLayout as bV, type OptionLayout as bW, type BackgroundGradient as bX, type PollDesignBackground as bY, type PollDesignBackgroundBackgroundOneOf as bZ, type PollDesign as b_, type Stop as ba, type Border as bb, type Colors as bc, type Background as bd, type PluginContainerData as be, type PluginContainerDataWidth as bf, type PluginContainerDataWidthDataOneOf as bg, type Spoiler as bh, type Height as bi, type Styles as bj, type Link as bk, type LinkDataOneOf as bl, type Rel as bm, type CodeBlockData as bn, type TextStyle as bo, type DividerData as bp, type FileData as bq, type FileSource as br, type FileSourceDataOneOf as bs, type PDFSettings as bt, type GalleryData as bu, type Media as bv, type Image as bw, type Video as bx, type Item as by, type ItemDataOneOf as bz, type BulkUpdateExperiencesResponse as c, type OnlineReservations as c$, type Poll as c0, type PollDataLayout as c1, type Design as c2, type TextData as c3, type Decoration as c4, type DecorationDataOneOf as c5, type AnchorData as c6, type ColorData as c7, type LinkData as c8, type MentionData as c9, type OrderedListData as cA, type BulletedListData as cB, type BlockquoteData as cC, type CaptionData as cD, type LayoutData as cE, type LayoutDataBackgroundImage as cF, type Banner as cG, type LayoutDataBackground as cH, type Backdrop as cI, type LayoutCellData as cJ, type ShapeData as cK, type ShapeDataStyles as cL, type CardData as cM, type CardDataBackground as cN, type BackgroundImage as cO, type TocData as cP, type SmartBlockData as cQ, type SmartBlockCellData as cR, type CheckboxListData as cS, type ListItemNodeData as cT, type Metadata as cU, type DocumentStyle as cV, type TextNodeStyle as cW, type PerGuestOptions as cX, type DisplayInfo as cY, type PaymentPolicy as cZ, type PaymentPolicyOptionsOneOf as c_, type FontSizeData as ca, type SpoilerData as cb, type FontFamilyData as cc, type SketchData as cd, type AppEmbedData as ce, type AppEmbedDataAppDataOneOf as cf, type BookingData as cg, type EventData as ch, type ButtonStyles as ci, type ImageStyles as cj, type RibbonStyles as ck, type CardStyles as cl, type PricingData as cm, type VideoData as cn, type PlaybackOptions as co, type EmbedData as cp, type Oembed as cq, type CollapsibleListData as cr, type TableData as cs, type Dimensions as ct, type TableCellData as cu, type CellStyle as cv, type BorderColors as cw, type BorderWidths as cx, type ListValue as cy, type AudioData as cz, type BulkUpdateExperiencesApplicationErrors as d, type ValueResult as d$, type ReservationForm as d0, type TableManagement as d1, type TableManagementOptionsOneOf as d2, type Configuration as d3, type ExtendedFields as d4, type Tags as d5, type TagList as d6, type SeoSettings as d7, type SeoSchema as d8, type Keyword as d9, type CursorPagingMetadata as dA, type Cursors as dB, type SearchExperiencesRequest as dC, type CursorSearch as dD, type CursorSearchPagingMethodOneOf as dE, type Aggregation as dF, type AggregationKindOneOf as dG, type RangeBucket as dH, type IncludeMissingValuesOptions as dI, type ValueAggregation as dJ, type ValueAggregationOptionsOneOf as dK, type RangeAggregation as dL, type ScalarAggregation as dM, type DateHistogramAggregation as dN, type NestedAggregationItem as dO, type NestedAggregationItemKindOneOf as dP, type NestedAggregation as dQ, type SearchDetails as dR, type AggregationData as dS, type ValueAggregationResult as dT, type RangeAggregationResult as dU, type NestedAggregationResults as dV, type NestedAggregationResultsResultOneOf as dW, type ValueResults as dX, type RangeResults as dY, type AggregationResultsScalarResult as dZ, type NestedValueAggregationResult as d_, type Tag as da, type Settings as db, type InvalidateCache as dc, type InvalidateCacheGetByOneOf as dd, type App as de, type Page as df, type URI as dg, type File as dh, type CustomTag as di, type Pages as dj, type URIs as dk, type TagsModified as dl, type CreateExperienceRequest as dm, type CreateExperienceResponse as dn, type GetExperienceRequest as dp, type GetExperienceResponse as dq, type GetExperienceBySlugRequest as dr, type UpdateExperienceRequest as ds, type UpdateExperienceResponse as dt, type QueryExperiencesRequest as du, type CursorQuery as dv, type CursorQueryPagingMethodOneOf as dw, type Sorting as dx, type CursorPaging as dy, type QueryExperiencesResponse as dz, type BulkUpdateExperienceTagsOptions as e, type TableAssignmentTypeWithLiterals as e$, type RangeResult as e0, type ScalarResult as e1, type NestedResultValue as e2, type NestedResultValueResultOneOf as e3, type Results as e4, type DateHistogramResult as e5, type GroupByValueResults as e6, type DateHistogramResults as e7, type NestedResults as e8, type AggregationResults as e9, type ConsentPolicy as eA, type Translation as eB, type ChangeContext as eC, type ChangeContextPayloadOneOf as eD, type PropertiesChange as eE, type SiteCreated as eF, type SiteCloned as eG, type Empty as eH, type DomainEvent as eI, type DomainEventBodyOneOf as eJ, type EntityCreatedEvent as eK, type RestoreInfo as eL, type EntityUpdatedEvent as eM, type EntityDeletedEvent as eN, type ActionEvent as eO, type MessageEnvelope as eP, type IdentificationData as eQ, type IdentificationDataIdOneOf as eR, type AccountInfo as eS, type BaseEventMetadata as eT, type EventMetadata as eU, type AccountInfoMetadata as eV, type ExperiencesQueryResult as eW, type ExperienceQuerySpec as eX, type ExperienceSearchSpec as eY, utils as eZ, type TableAvailabilityTypeWithLiterals as e_, type AggregationResultsResultOneOf as ea, type BulkUpdateExperiencesRequest as eb, type ItemMetadata as ec, type ApplicationError as ed, type BulkUpdateExperiencesResult as ee, type BulkActionMetadata as ef, type BulkUpdateExperienceTagsRequest as eg, type BulkUpdateExperienceTagsResult as eh, type BulkUpdateExperienceTagsByFilterRequest as ei, type BulkArchiveExperiencesRequest as ej, type BulkArchiveExperiencesResult as ek, type BulkUnarchiveExperiencesRequest as el, type BulkUnarchiveExperiencesResult as em, type SitePropertiesNotification as en, type SitePropertiesEvent as eo, type Properties as ep, type Categories as eq, type Locale as er, type Address as es, type AddressHint as et, type GeoCoordinates as eu, type BusinessSchedule as ev, type TimePeriod as ew, type SpecialHourPeriod as ex, type Multilingual as ey, type SupportedLanguage as ez, type BulkUpdateExperienceTagsResponse as f, type SortTypeWithLiterals as f$, type TableManagementModeWithLiterals as f0, type UnitWithLiterals as f1, type ModeWithLiterals as f2, type StartDaysAndTimesDayOfWeekWithLiterals as f3, type RecurrenceWithLiterals as f4, type NodeTypeWithLiterals as f5, type BackgroundTypeWithLiterals as f6, type GradientTypeWithLiterals as f7, type WidthTypeWithLiterals as f8, type PluginContainerDataAlignmentWithLiterals as f9, type PlacementWithLiterals as fA, type TypeWithLiterals as fB, type AlignmentWithLiterals as fC, type LayoutWithLiterals as fD, type AppTypeWithLiterals as fE, type InitialExpandedItemsWithLiterals as fF, type DirectionWithLiterals as fG, type VerticalAlignmentWithLiterals as fH, type NullValueWithLiterals as fI, type ImageScalingScalingWithLiterals as fJ, type ImagePositionWithLiterals as fK, type OriginWithLiterals as fL, type BannerPositionWithLiterals as fM, type LayoutDataBackgroundTypeWithLiterals as fN, type BackdropTypeWithLiterals as fO, type VerticalAlignmentAlignmentWithLiterals as fP, type ResponsivenessBehaviourWithLiterals as fQ, type DesignTargetWithLiterals as fR, type ScalingWithLiterals as fS, type ImagePositionPositionWithLiterals as fT, type CardDataBackgroundTypeWithLiterals as fU, type ListStyleWithLiterals as fV, type IndentationWithLiterals as fW, type SmartBlockDataTypeWithLiterals as fX, type ColumnSizeWithLiterals as fY, type PaymentPolicyTypeWithLiterals as fZ, type SortOrderWithLiterals as f_, type ButtonDataTypeWithLiterals as fa, type TargetWithLiterals as fb, type TextAlignmentWithLiterals as fc, type LineStyleWithLiterals as fd, type WidthWithLiterals as fe, type DividerDataAlignmentWithLiterals as ff, type ViewModeWithLiterals as fg, type LayoutTypeWithLiterals as fh, type OrientationWithLiterals as fi, type CropWithLiterals as fj, type ThumbnailsAlignmentWithLiterals as fk, type GIFTypeWithLiterals as fl, type SourceWithLiterals as fm, type StylesPositionWithLiterals as fn, type MapTypeWithLiterals as fo, type ViewRoleWithLiterals as fp, type VoteRoleWithLiterals as fq, type PollLayoutTypeWithLiterals as fr, type PollLayoutDirectionWithLiterals as fs, type PollDesignBackgroundTypeWithLiterals as ft, type DecorationTypeWithLiterals as fu, type FontTypeWithLiterals as fv, type VariantWithLiterals as fw, type PositionWithLiterals as fx, type AspectRatioWithLiterals as fy, type ResizingWithLiterals as fz, type BulkUpdateExperienceTagsApplicationErrors as g, type SortDirectionWithLiterals as g0, type MissingValuesWithLiterals as g1, type ScalarTypeWithLiterals as g2, type NestedAggregationTypeWithLiterals as g3, type IntervalWithLiterals as g4, type AggregationTypeWithLiterals as g5, type SearchDetailsModeWithLiterals as g6, type PlacementTypeWithLiterals as g7, type DayOfWeekWithLiterals as g8, type ResolutionMethodWithLiterals as g9, type WebhookIdentityTypeWithLiterals as ga, type CommonQueryWithEntityContext as gb, type CommonSearchWithEntityContext as gc, onExperienceCreated as gd, onExperienceTagsModified as ge, onExperienceUpdated as gf, createExperience as gg, getExperience as gh, getExperienceBySlug as gi, updateExperience as gj, queryExperiences as gk, bulkUpdateExperiences as gl, bulkUpdateExperienceTags as gm, bulkUpdateExperienceTagsByFilter as gn, bulkArchiveExperiences as go, bulkUnarchiveExperiences as gp, 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 };
@@ -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-BqhRReXL.js';
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.js';
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-Dye8qAKg.js';
3
+ export { eS as AccountInfo, eV as AccountInfoMetadata, eO as ActionEvent, es as Address, et as AddressHint, dF as Aggregation, dS as AggregationData, dG as AggregationKindOneOf, e9 as AggregationResults, ea as AggregationResultsResultOneOf, dZ as AggregationResultsScalarResult, aF as AggregationType, g5 as AggregationTypeWithLiterals, aa as Alignment, fC as AlignmentWithLiterals, c6 as AnchorData, de as App, ce as AppEmbedData, cf as AppEmbedDataAppDataOneOf, ac as AppType, fE as AppTypeWithLiterals, ed as ApplicationError, aX as Approval, a6 as AspectRatio, fy as AspectRatioWithLiterals, cz as AudioData, cI as Backdrop, am as BackdropType, fO as BackdropTypeWithLiterals, bd as Background, bX as BackgroundGradient, cO as BackgroundImage, x as BackgroundType, f6 as BackgroundTypeWithLiterals, cG as Banner, ak as BannerPosition, fM as BannerPositionWithLiterals, eT as BaseEventMetadata, cC as BlockquoteData, cg as BookingData, bb as Border, cw as BorderColors, cx as BorderWidths, ef as BulkActionMetadata, ej as BulkArchiveExperiencesRequest, ek as BulkArchiveExperiencesResult, el as BulkUnarchiveExperiencesRequest, em as BulkUnarchiveExperiencesResult, ei as BulkUpdateExperienceTagsByFilterRequest, eg as BulkUpdateExperienceTagsRequest, eh as BulkUpdateExperienceTagsResult, eb as BulkUpdateExperiencesRequest, ee as BulkUpdateExperiencesResult, cB as BulletedListData, ev as BusinessSchedule, b8 as ButtonData, z as ButtonDataType, fa as ButtonDataTypeWithLiterals, ci as ButtonStyles, cD as CaptionData, cM as CardData, cN as CardDataBackground, as as CardDataBackgroundType, fU as CardDataBackgroundTypeWithLiterals, cl as CardStyles, eq as Categories, cv as CellStyle, eC as ChangeContext, eD as ChangeContextPayloadOneOf, cS as CheckboxListData, bn as CodeBlockData, cr as CollapsibleListData, c7 as ColorData, bc as Colors, aw as ColumnSize, fY as ColumnSizeWithLiterals, gb as CommonQueryWithEntityContext, gc as CommonSearchWithEntityContext, d3 as Configuration, eA as ConsentPolicy, dm as CreateExperienceRequest, dn as CreateExperienceResponse, I as Crop, fj as CropWithLiterals, dy as CursorPaging, dA as CursorPagingMetadata, dv as CursorQuery, dw as CursorQueryPagingMethodOneOf, dD as CursorSearch, dE as CursorSearchPagingMethodOneOf, dB as Cursors, b2 as CustomFieldDefinition, di as CustomTag, dN as DateHistogramAggregation, e5 as DateHistogramResult, e7 as DateHistogramResults, aI as DayOfWeek, g8 as DayOfWeekWithLiterals, c4 as Decoration, c5 as DecorationDataOneOf, a2 as DecorationType, fu as DecorationTypeWithLiterals, c2 as Design, ap as DesignTarget, fR as DesignTargetWithLiterals, ct as Dimensions, ae as Direction, fG as DirectionWithLiterals, cY as DisplayInfo, bp as DividerData, F as DividerDataAlignment, ff as DividerDataAlignmentWithLiterals, cV as DocumentStyle, eI as DomainEvent, eJ as DomainEventBodyOneOf, b3 as EmailMarketingCheckbox, cp as EmbedData, eH as Empty, eK as EntityCreatedEvent, eN as EntityDeletedEvent, eM as EntityUpdatedEvent, aT as Entry, aU as EntryRecurrenceOptionsOneOf, ch as EventData, eU as EventMetadata, eX as ExperienceQuerySpec, eY as ExperienceSearchSpec, eW as ExperiencesQueryResult, d4 as ExtendedFields, dh as File, bq as FileData, br as FileSource, bs as FileSourceDataOneOf, cc as FontFamilyData, ca as FontSizeData, a3 as FontType, fv as FontTypeWithLiterals, bF as GIF, bE as GIFData, K as GIFType, fl as GIFTypeWithLiterals, bu as GalleryData, bA as GalleryOptions, bB as GalleryOptionsLayout, eu as GeoCoordinates, dr as GetExperienceBySlugRequest, dp as GetExperienceRequest, dq as GetExperienceResponse, b9 as Gradient, y as GradientType, f7 as GradientTypeWithLiterals, e6 as GroupByValueResults, bH as HTMLData, bI as HTMLDataDataOneOf, bG as HeadingData, bi as Height, eQ as IdentificationData, eR as IdentificationDataIdOneOf, bw as Image, bJ as ImageData, bL as ImageDataStyles, ai as ImagePosition, ar as ImagePositionPosition, fT as ImagePositionPositionWithLiterals, fK as ImagePositionWithLiterals, ah as ImageScalingScaling, fJ as ImageScalingScalingWithLiterals, cj as ImageStyles, dI as IncludeMissingValuesOptions, au as Indentation, fW as IndentationWithLiterals, ad as InitialExpandedItems, fF as InitialExpandedItemsWithLiterals, aE as Interval, g4 as IntervalWithLiterals, dc as InvalidateCache, dd as InvalidateCacheGetByOneOf, by as Item, bz as ItemDataOneOf, ec as ItemMetadata, bC as ItemStyle, d9 as Keyword, ab as Layout, cJ as LayoutCellData, cE as LayoutData, cH as LayoutDataBackground, cF as LayoutDataBackgroundImage, al as LayoutDataBackgroundType, fN as LayoutDataBackgroundTypeWithLiterals, H as LayoutType, fh as LayoutTypeWithLiterals, fD as LayoutWithLiterals, L as LineStyle, fd as LineStyleWithLiterals, bk as Link, c8 as LinkData, bl as LinkDataOneOf, bM as LinkPreviewData, bN as LinkPreviewDataStyles, cT as ListItemNodeData, at as ListStyle, fV as ListStyleWithLiterals, cy as ListValue, er as Locale, bO as MapData, bP as MapSettings, Y as MapType, fo as MapTypeWithLiterals, aY as MaxGuests, bv as Media, c9 as MentionData, eP as MessageEnvelope, cU as Metadata, aB as MissingValues, g1 as MissingValuesWithLiterals, v as Mode, f2 as ModeWithLiterals, ey as Multilingual, dQ as NestedAggregation, dO as NestedAggregationItem, dP as NestedAggregationItemKindOneOf, dV as NestedAggregationResults, dW as NestedAggregationResultsResultOneOf, aD as NestedAggregationType, g3 as NestedAggregationTypeWithLiterals, e2 as NestedResultValue, e3 as NestedResultValueResultOneOf, e8 as NestedResults, d_ as NestedValueAggregationResult, b5 as Node, b6 as NodeDataOneOf, b7 as NodeStyle, N as NodeType, f5 as NodeTypeWithLiterals, aW as NoticePeriod, ag as NullValue, fI as NullValueWithLiterals, cq as Oembed, aO as OnOptions, aP as OnOptionsOptionsOneOf, aS as OneTimeOptions, c$ as OnlineReservations, aZ as OnlineReservationsBusinessSchedule, bT as Option, b$ as OptionDesign, bW as OptionLayout, cA as OrderedListData, O as Orientation, fi as OrientationWithLiterals, aj as Origin, fL as OriginWithLiterals, bt as PDFSettings, df as Page, dj as Pages, bQ as ParagraphData, aV as PartySize, cZ as PaymentPolicy, c_ as PaymentPolicyOptionsOneOf, ax as PaymentPolicyType, fZ as PaymentPolicyTypeWithLiterals, cX as PerGuestOptions, bS as Permissions, a8 as Placement, aH as PlacementType, g7 as PlacementTypeWithLiterals, fA as PlacementWithLiterals, co as PlaybackOptions, be as PluginContainerData, P as PluginContainerDataAlignment, f9 as PluginContainerDataAlignmentWithLiterals, bf as PluginContainerDataWidth, bg as PluginContainerDataWidthDataOneOf, c0 as Poll, bR as PollData, c1 as PollDataLayout, b_ as PollDesign, bY as PollDesignBackground, bZ as PollDesignBackgroundBackgroundOneOf, a1 as PollDesignBackgroundType, ft as PollDesignBackgroundTypeWithLiterals, bV as PollLayout, a0 as PollLayoutDirection, fs as PollLayoutDirectionWithLiterals, $ as PollLayoutType, fr as PollLayoutTypeWithLiterals, bU as PollSettings, a5 as Position, fx as PositionWithLiterals, cm as PricingData, a_ as PrivacyPolicy, a$ as PrivacyPolicyValueOneOf, ep as Properties, eE as PropertiesChange, du as QueryExperiencesRequest, dz as QueryExperiencesResponse, dL as RangeAggregation, dU as RangeAggregationResult, dH as RangeBucket, e0 as RangeResult, dY as RangeResults, R as Recurrence, f4 as RecurrenceWithLiterals, bm as Rel, d0 as ReservationForm, a7 as Resizing, fz as ResizingWithLiterals, aJ as ResolutionMethod, g9 as ResolutionMethodWithLiterals, ao as ResponsivenessBehaviour, fQ as ResponsivenessBehaviourWithLiterals, eL as RestoreInfo, e4 as Results, ck as RibbonStyles, b4 as RichContent, dM as ScalarAggregation, e1 as ScalarResult, aC as ScalarType, g2 as ScalarTypeWithLiterals, aq as Scaling, fS as ScalingWithLiterals, dR as SearchDetails, aG as SearchDetailsMode, g6 as SearchDetailsModeWithLiterals, dC as SearchExperiencesRequest, d8 as SeoSchema, d7 as SeoSettings, db as Settings, cK as ShapeData, cL as ShapeDataStyles, eG as SiteCloned, eF as SiteCreated, eo as SitePropertiesEvent, en as SitePropertiesNotification, cd as SketchData, cR as SmartBlockCellData, cQ as SmartBlockData, av as SmartBlockDataType, fX as SmartBlockDataTypeWithLiterals, aA as SortDirection, g0 as SortDirectionWithLiterals, ay as SortOrder, f_ as SortOrderWithLiterals, az as SortType, f$ as SortTypeWithLiterals, dx as Sorting, Q as Source, fm as SourceWithLiterals, ex as SpecialHourPeriod, aN as SpecificTablesOptions, bh as Spoiler, cb as SpoilerData, aQ as StartDaysAndTimes, w as StartDaysAndTimesDayOfWeek, f3 as StartDaysAndTimesDayOfWeekWithLiterals, ba as Stop, bj as Styles, bK as StylesBorder, X as StylesPosition, fn as StylesPositionWithLiterals, ez as SupportedLanguage, aL as Table, r as TableAssignmentType, e$ as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, e_ as TableAvailabilityTypeWithLiterals, cu as TableCellData, aM as TableCombination, cs as TableData, d1 as TableManagement, s as TableManagementMode, f0 as TableManagementModeWithLiterals, d2 as TableManagementOptionsOneOf, da as Tag, d6 as TagList, d5 as Tags, dl as TagsModified, A as Target, fb as TargetWithLiterals, b0 as TermsAndConditions, b1 as TermsAndConditionsValueOneOf, C as TextAlignment, fc as TextAlignmentWithLiterals, c3 as TextData, cW as TextNodeStyle, bo as TextStyle, bD as Thumbnails, J as ThumbnailsAlignment, fk as ThumbnailsAlignmentWithLiterals, ew as TimePeriod, cP as TocData, eB as Translation, a9 as Type, fB as TypeWithLiterals, dg as URI, dk as URIs, u as Unit, f1 as UnitWithLiterals, ds as UpdateExperienceRequest, dt as UpdateExperienceResponse, dJ as ValueAggregation, dK as ValueAggregationOptionsOneOf, dT as ValueAggregationResult, d$ as ValueResult, dX as ValueResults, a4 as Variant, fw as VariantWithLiterals, af as VerticalAlignment, an as VerticalAlignmentAlignment, fP as VerticalAlignmentAlignmentWithLiterals, fH as VerticalAlignmentWithLiterals, bx as Video, cn as VideoData, V as ViewMode, fg as ViewModeWithLiterals, Z as ViewRole, fp as ViewRoleWithLiterals, _ as VoteRole, fq as VoteRoleWithLiterals, aK as WebhookIdentityType, ga as WebhookIdentityTypeWithLiterals, aR as WeeklyOptions, D as Width, W as WidthType, f8 as WidthTypeWithLiterals, fe as WidthWithLiterals, eZ as utils } from './table-reservations-v1-experience-experiences.universal-Dye8qAKg.js';
4
4
 
5
5
  declare function createExperience$1(httpClient: HttpClient): CreateExperienceSignature;
6
6
  interface CreateExperienceSignature {
@@ -88,6 +88,7 @@ __export(index_exports, {
88
88
  ThumbnailsAlignment: () => ThumbnailsAlignment,
89
89
  Type: () => Type,
90
90
  Unit: () => Unit,
91
+ Variant: () => Variant,
91
92
  VerticalAlignment: () => VerticalAlignment,
92
93
  VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
93
94
  ViewMode: () => ViewMode,
@@ -2097,6 +2098,7 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
2097
2098
  DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
2098
2099
  DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
2099
2100
  DecorationType2["FONT_FAMILY"] = "FONT_FAMILY";
2101
+ DecorationType2["SKETCH"] = "SKETCH";
2100
2102
  return DecorationType2;
2101
2103
  })(DecorationType || {});
2102
2104
  var FontType = /* @__PURE__ */ ((FontType2) => {
@@ -2104,6 +2106,15 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
2104
2106
  FontType2["EM"] = "EM";
2105
2107
  return FontType2;
2106
2108
  })(FontType || {});
2109
+ var Variant = /* @__PURE__ */ ((Variant2) => {
2110
+ Variant2["UNDERLINE"] = "UNDERLINE";
2111
+ Variant2["BOX"] = "BOX";
2112
+ Variant2["CIRCLE"] = "CIRCLE";
2113
+ Variant2["HIGHLIGHT"] = "HIGHLIGHT";
2114
+ Variant2["STRIKETHROUGH"] = "STRIKETHROUGH";
2115
+ Variant2["CROSSED_OFF"] = "CROSSED_OFF";
2116
+ return Variant2;
2117
+ })(Variant || {});
2107
2118
  var Position = /* @__PURE__ */ ((Position2) => {
2108
2119
  Position2["START"] = "START";
2109
2120
  Position2["END"] = "END";
@@ -3749,6 +3760,7 @@ var onExperienceUpdated2 = (0, import_event_definition_modules.createEventModule
3749
3760
  ThumbnailsAlignment,
3750
3761
  Type,
3751
3762
  Unit,
3763
+ Variant,
3752
3764
  VerticalAlignment,
3753
3765
  VerticalAlignmentAlignment,
3754
3766
  ViewMode,