@wix/auto_sdk_table-reservations_experiences 1.0.38 → 1.0.40

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 +4 -2
  2. package/build/cjs/index.js +7 -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 +7 -0
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +65 -17
  8. package/build/cjs/meta.js +7 -0
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/{table-reservations-v1-experience-experiences.universal-DBg6eXpp.d.ts → table-reservations-v1-experience-experiences.universal-1Acqg8lu.d.ts} +66 -16
  11. package/build/es/index.d.mts +4 -2
  12. package/build/es/index.mjs +6 -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 +6 -0
  16. package/build/es/index.typings.mjs.map +1 -1
  17. package/build/es/meta.d.mts +65 -17
  18. package/build/es/meta.mjs +6 -0
  19. package/build/es/meta.mjs.map +1 -1
  20. package/build/es/{table-reservations-v1-experience-experiences.universal-DBg6eXpp.d.mts → table-reservations-v1-experience-experiences.universal-1Acqg8lu.d.mts} +66 -16
  21. package/build/internal/cjs/index.d.ts +4 -2
  22. package/build/internal/cjs/index.js +7 -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 +7 -0
  26. package/build/internal/cjs/index.typings.js.map +1 -1
  27. package/build/internal/cjs/meta.d.ts +65 -17
  28. package/build/internal/cjs/meta.js +7 -0
  29. package/build/internal/cjs/meta.js.map +1 -1
  30. package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-DBg6eXpp.d.ts → table-reservations-v1-experience-experiences.universal-1Acqg8lu.d.ts} +66 -16
  31. package/build/internal/es/index.d.mts +4 -2
  32. package/build/internal/es/index.mjs +6 -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 +6 -0
  36. package/build/internal/es/index.typings.mjs.map +1 -1
  37. package/build/internal/es/meta.d.mts +65 -17
  38. package/build/internal/es/meta.mjs +6 -0
  39. package/build/internal/es/meta.mjs.map +1 -1
  40. package/build/internal/es/{table-reservations-v1-experience-experiences.universal-DBg6eXpp.d.mts → table-reservations-v1-experience-experiences.universal-1Acqg8lu.d.mts} +66 -16
  41. package/package.json +2 -2
@@ -2204,7 +2204,7 @@ interface LayoutData {
2204
2204
  containerData?: PluginContainerData;
2205
2205
  /** Defines where selected design propertied applies to */
2206
2206
  designTarget?: DesignTargetWithLiterals;
2207
- /** Banner configuration. When present, this layout is displayed as a banner. */
2207
+ /** Banner configuration. When present, this layout is attached to a document edge (top or bottom). */
2208
2208
  banner?: Banner;
2209
2209
  /** Background styling (color or gradient). */
2210
2210
  background?: LayoutDataBackground;
@@ -2251,6 +2251,14 @@ declare enum Origin {
2251
2251
  }
2252
2252
  /** @enumType */
2253
2253
  type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
2254
+ declare enum BannerPosition {
2255
+ /** Attached to the top edge (banner) */
2256
+ TOP = "TOP",
2257
+ /** Attached to the bottom edge (footer) */
2258
+ BOTTOM = "BOTTOM"
2259
+ }
2260
+ /** @enumType */
2261
+ type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
2254
2262
  /** Background type */
2255
2263
  declare enum LayoutDataBackgroundType {
2256
2264
  /** Solid color background */
@@ -2308,6 +2316,8 @@ type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
2308
2316
  interface Banner {
2309
2317
  /** Origin of the banner */
2310
2318
  origin?: OriginWithLiterals;
2319
+ /** Position of the banner */
2320
+ position?: BannerPositionWithLiterals;
2311
2321
  }
2312
2322
  /** Background styling (color or gradient) */
2313
2323
  interface LayoutDataBackground {
@@ -3615,27 +3625,32 @@ interface AggregationResultsResultOneOf {
3615
3625
  /** Nested aggregation results. */
3616
3626
  nested?: NestedResults;
3617
3627
  }
3618
- interface BulkUpdateExperienceTagsRequest {
3628
+ interface BulkUpdateExperiencesRequest {
3619
3629
  /**
3620
- * List of experience IDs to update tags for.
3630
+ * List of experiences to update, with the fields to update for each experience.
3621
3631
  * @minSize 1
3622
3632
  * @maxSize 100
3623
- * @format GUID
3624
3633
  */
3625
- experienceIds: string[];
3626
- /** Tags to assign to the experiences. */
3627
- assignTags?: Tags;
3628
- /** Tags to unassign from the experiences. */
3629
- unassignTags?: Tags;
3634
+ experiences?: MaskedExperience[];
3635
+ /**
3636
+ * Whether to include the updated experiences in the response. When `true`, each successfully updated experience is returned in the corresponding result's `item` field.
3637
+ *
3638
+ * Default: `false`
3639
+ */
3640
+ returnEntity?: boolean;
3630
3641
  }
3631
- interface BulkUpdateExperienceTagsResponse {
3642
+ interface MaskedExperience {
3643
+ /** Experience to update. May be partial. */
3644
+ experience?: Experience;
3645
+ }
3646
+ interface BulkUpdateExperiencesResponse {
3632
3647
  /**
3633
- * Results of the bulk tag update operation.
3648
+ * List of results, one per experience in the request. Each result contains the update status for the corresponding experience, in the same order as the request.
3634
3649
  * @minSize 1
3635
3650
  * @maxSize 100
3636
3651
  */
3637
- results?: BulkUpdateExperienceTagsResult[];
3638
- /** Metadata about the bulk update operation. */
3652
+ results?: BulkUpdateExperiencesResult[];
3653
+ /** Metadata for the bulk update, including the total number of successful and failed updates. */
3639
3654
  bulkActionMetadata?: BulkActionMetadata;
3640
3655
  }
3641
3656
  interface ItemMetadata {
@@ -3659,9 +3674,15 @@ interface ApplicationError {
3659
3674
  /** Data related to the error. */
3660
3675
  data?: Record<string, any> | null;
3661
3676
  }
3662
- interface BulkUpdateExperienceTagsResult {
3663
- /** Metadata about the individual experience tag update operation. */
3677
+ interface BulkUpdateExperiencesResult {
3678
+ /** Update status for an individual experience, including success or failure information and error details when the update failed. */
3664
3679
  itemMetadata?: ItemMetadata;
3680
+ /**
3681
+ * Updated experience.
3682
+ *
3683
+ * Returned only when `returnEntity` is `true` in the request and the update succeeded.
3684
+ */
3685
+ item?: Experience;
3665
3686
  }
3666
3687
  interface BulkActionMetadata {
3667
3688
  /** Number of items that were successfully processed. */
@@ -3671,6 +3692,33 @@ interface BulkActionMetadata {
3671
3692
  /** Number of failures without details because detailed failure threshold was exceeded. */
3672
3693
  undetailedFailures?: number;
3673
3694
  }
3695
+ interface BulkUpdateExperienceTagsRequest {
3696
+ /**
3697
+ * List of experience IDs to update tags for.
3698
+ * @minSize 1
3699
+ * @maxSize 100
3700
+ * @format GUID
3701
+ */
3702
+ experienceIds: string[];
3703
+ /** Tags to assign to the experiences. */
3704
+ assignTags?: Tags;
3705
+ /** Tags to unassign from the experiences. */
3706
+ unassignTags?: Tags;
3707
+ }
3708
+ interface BulkUpdateExperienceTagsResponse {
3709
+ /**
3710
+ * Results of the bulk tag update operation.
3711
+ * @minSize 1
3712
+ * @maxSize 100
3713
+ */
3714
+ results?: BulkUpdateExperienceTagsResult[];
3715
+ /** Metadata about the bulk update operation. */
3716
+ bulkActionMetadata?: BulkActionMetadata;
3717
+ }
3718
+ interface BulkUpdateExperienceTagsResult {
3719
+ /** Metadata about the individual experience tag update operation. */
3720
+ itemMetadata?: ItemMetadata;
3721
+ }
3674
3722
  interface BulkUpdateExperienceTagsByFilterRequest {
3675
3723
  /** Filter criteria to select experiences for tag updates. */
3676
3724
  filter: Record<string, any> | null;
@@ -4354,6 +4402,8 @@ declare function getExperienceBySlug(slug: string): Promise<NonNullablePaths<Get
4354
4402
  * Each time the experience is updated, `revision` increments by 1.
4355
4403
  * The current `revision` must be passed when updating the experience.
4356
4404
  * This ensures you're working with the latest experience information and prevents unintended overwrites.
4405
+ *
4406
+ * To update multiple experiences in a single request, call [Bulk Update Experiences](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/reservations/experiences/bulk-update-experiences).
4357
4407
  * @param _id - Experience ID.
4358
4408
  * @public
4359
4409
  * @requiredField _id
@@ -4828,4 +4878,4 @@ declare function bulkArchiveExperiences(experienceIds: string[]): Promise<NonNul
4828
4878
  */
4829
4879
  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>>;
4830
4880
 
4831
- 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 };
4881
+ 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 RichContent 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, AggregationType as aA, SearchDetailsMode as aB, PlacementType as aC, DayOfWeek as aD, ResolutionMethod as aE, WebhookIdentityType as aF, type Table as aG, type TableCombination as aH, type SpecificTablesOptions as aI, type OnOptions as aJ, type OnOptionsOptionsOneOf as aK, type StartDaysAndTimes as aL, type WeeklyOptions as aM, type OneTimeOptions as aN, type Entry as aO, type EntryRecurrenceOptionsOneOf as aP, type PartySize as aQ, type NoticePeriod as aR, type Approval as aS, type MaxGuests as aT, type OnlineReservationsBusinessSchedule as aU, type PrivacyPolicy as aV, type PrivacyPolicyValueOneOf as aW, type TermsAndConditions as aX, type TermsAndConditionsValueOneOf as aY, type CustomFieldDefinition as aZ, type EmailMarketingCheckbox as a_, VerticalAlignment as aa, NullValue as ab, ImageScalingScaling as ac, ImagePosition as ad, Origin as ae, BannerPosition as af, LayoutDataBackgroundType as ag, BackdropType as ah, VerticalAlignmentAlignment as ai, ResponsivenessBehaviour as aj, DesignTarget as ak, Scaling as al, ImagePositionPosition as am, CardDataBackgroundType as an, ListStyle as ao, Indentation as ap, SmartBlockDataType as aq, ColumnSize as ar, PaymentPolicyType as as, SortOrder as at, SortType as au, SortDirection as av, MissingValues as aw, ScalarType as ax, NestedAggregationType as ay, Interval as az, type ExperienceSearch as b, type Decoration as b$, type Node as b0, type NodeDataOneOf as b1, type NodeStyle as b2, type ButtonData as b3, type Gradient as b4, type Stop as b5, type Border as b6, type Colors as b7, type Background as b8, type PluginContainerData as b9, type GIF as bA, type HeadingData as bB, type HTMLData as bC, type HTMLDataDataOneOf as bD, type ImageData as bE, type StylesBorder as bF, type ImageDataStyles as bG, type LinkPreviewData as bH, type LinkPreviewDataStyles as bI, type MapData as bJ, type MapSettings as bK, type ParagraphData as bL, type PollData as bM, type Permissions as bN, type Option as bO, type PollSettings as bP, type PollLayout as bQ, type OptionLayout as bR, type BackgroundGradient as bS, type PollDesignBackground as bT, type PollDesignBackgroundBackgroundOneOf as bU, type PollDesign as bV, type OptionDesign as bW, type Poll as bX, type PollDataLayout as bY, type Design as bZ, type TextData as b_, type PluginContainerDataWidth as ba, type PluginContainerDataWidthDataOneOf as bb, type Spoiler as bc, type Height as bd, type Styles as be, type Link as bf, type LinkDataOneOf as bg, type Rel as bh, type CodeBlockData as bi, type TextStyle as bj, type DividerData as bk, type FileData as bl, type FileSource as bm, type FileSourceDataOneOf as bn, type PDFSettings as bo, type GalleryData as bp, type Media as bq, type Image as br, type Video as bs, type Item as bt, type ItemDataOneOf as bu, type GalleryOptions as bv, type GalleryOptionsLayout as bw, type ItemStyle as bx, type Thumbnails as by, type GIFData as bz, type BulkUpdateExperienceTagsResponse as c, type SeoSettings as c$, type DecorationDataOneOf as c0, type AnchorData as c1, type ColorData as c2, type LinkData as c3, type MentionData as c4, type FontSizeData as c5, type SpoilerData as c6, type FontFamilyData as c7, type AppEmbedData as c8, type AppEmbedDataAppDataOneOf as c9, type Banner as cA, type LayoutDataBackground as cB, type Backdrop as cC, type LayoutCellData as cD, type ShapeData as cE, type ShapeDataStyles as cF, type CardData as cG, type CardDataBackground as cH, type BackgroundImage as cI, type TocData as cJ, type SmartBlockData as cK, type SmartBlockCellData as cL, type Metadata as cM, type DocumentStyle as cN, type TextNodeStyle as cO, type PerGuestOptions as cP, type DisplayInfo as cQ, type PaymentPolicy as cR, type PaymentPolicyOptionsOneOf as cS, type OnlineReservations as cT, type ReservationForm as cU, type TableManagement as cV, type TableManagementOptionsOneOf as cW, type Configuration as cX, type ExtendedFields as cY, type Tags as cZ, type TagList as c_, type BookingData as ca, type EventData as cb, type ButtonStyles as cc, type ImageStyles as cd, type RibbonStyles as ce, type CardStyles as cf, type PricingData as cg, type VideoData as ch, type PlaybackOptions as ci, type EmbedData as cj, type Oembed as ck, type CollapsibleListData as cl, type TableData as cm, type Dimensions as cn, type TableCellData as co, type CellStyle as cp, type BorderColors as cq, type BorderWidths as cr, type ListValue as cs, type AudioData as ct, type OrderedListData as cu, type BulletedListData as cv, type BlockquoteData as cw, type CaptionData as cx, type LayoutData as cy, type LayoutDataBackgroundImage as cz, type BulkUpdateExperienceTagsApplicationErrors as d, type DateHistogramResults as d$, type SeoSchema as d0, type Keyword as d1, type Tag as d2, type Settings as d3, type InvalidateCache as d4, type InvalidateCacheGetByOneOf as d5, type App as d6, type Page as d7, type URI as d8, type File as d9, type IncludeMissingValuesOptions as dA, type ValueAggregation as dB, type ValueAggregationOptionsOneOf as dC, type RangeAggregation as dD, type ScalarAggregation as dE, type DateHistogramAggregation as dF, type NestedAggregationItem as dG, type NestedAggregationItemKindOneOf as dH, type NestedAggregation as dI, type SearchDetails as dJ, type AggregationData as dK, type ValueAggregationResult as dL, type RangeAggregationResult as dM, type NestedAggregationResults as dN, type NestedAggregationResultsResultOneOf as dO, type ValueResults as dP, type RangeResults as dQ, type AggregationResultsScalarResult as dR, type NestedValueAggregationResult as dS, type ValueResult as dT, type RangeResult as dU, type ScalarResult as dV, type NestedResultValue as dW, type NestedResultValueResultOneOf as dX, type Results as dY, type DateHistogramResult as dZ, type GroupByValueResults as d_, type CustomTag as da, type Pages as db, type URIs as dc, type TagsModified as dd, type CreateExperienceRequest as de, type CreateExperienceResponse as df, type GetExperienceRequest as dg, type GetExperienceResponse as dh, type GetExperienceBySlugRequest as di, type UpdateExperienceRequest as dj, type UpdateExperienceResponse as dk, type QueryExperiencesRequest as dl, type CursorQuery as dm, type CursorQueryPagingMethodOneOf as dn, type Sorting as dp, type CursorPaging as dq, type QueryExperiencesResponse as dr, type CursorPagingMetadata as ds, type Cursors as dt, type SearchExperiencesRequest as du, type CursorSearch as dv, type CursorSearchPagingMethodOneOf as dw, type Aggregation as dx, type AggregationKindOneOf as dy, type RangeBucket as dz, type BulkUpdateExperienceTagsByFilterOptions as e, type NodeTypeWithLiterals as e$, type NestedResults as e0, type AggregationResults as e1, type AggregationResultsResultOneOf as e2, type BulkUpdateExperiencesRequest as e3, type MaskedExperience as e4, type BulkUpdateExperiencesResponse as e5, type ItemMetadata as e6, type ApplicationError as e7, type BulkUpdateExperiencesResult as e8, type BulkActionMetadata as e9, type SiteCloned as eA, type Empty as eB, type DomainEvent as eC, type DomainEventBodyOneOf as eD, type EntityCreatedEvent as eE, type RestoreInfo as eF, type EntityUpdatedEvent as eG, type EntityDeletedEvent as eH, type ActionEvent as eI, type MessageEnvelope as eJ, type IdentificationData as eK, type IdentificationDataIdOneOf as eL, type AccountInfo as eM, type BaseEventMetadata as eN, type EventMetadata as eO, type AccountInfoMetadata as eP, type ExperiencesQueryResult as eQ, type ExperienceQuerySpec as eR, type ExperienceSearchSpec as eS, utils as eT, type TableAvailabilityTypeWithLiterals as eU, type TableAssignmentTypeWithLiterals as eV, type TableManagementModeWithLiterals as eW, type UnitWithLiterals as eX, type ModeWithLiterals as eY, type StartDaysAndTimesDayOfWeekWithLiterals as eZ, type RecurrenceWithLiterals as e_, type BulkUpdateExperienceTagsRequest as ea, type BulkUpdateExperienceTagsResult as eb, type BulkUpdateExperienceTagsByFilterRequest as ec, type BulkArchiveExperiencesRequest as ed, type BulkArchiveExperiencesResult as ee, type BulkUnarchiveExperiencesRequest as ef, type BulkUnarchiveExperiencesResult as eg, type SitePropertiesNotification as eh, type SitePropertiesEvent as ei, type Properties as ej, type Categories as ek, type Locale as el, type Address as em, type AddressHint as en, type GeoCoordinates as eo, type BusinessSchedule as ep, type TimePeriod as eq, type SpecialHourPeriod as er, type Multilingual as es, type SupportedLanguage as et, type ConsentPolicy as eu, type Translation as ev, type ChangeContext as ew, type ChangeContextPayloadOneOf as ex, type PropertiesChange as ey, type SiteCreated as ez, type BulkUpdateExperienceTagsByFilterResponse as f, type SearchDetailsModeWithLiterals as f$, type BackgroundTypeWithLiterals as f0, type GradientTypeWithLiterals as f1, type WidthTypeWithLiterals as f2, type PluginContainerDataAlignmentWithLiterals as f3, type ButtonDataTypeWithLiterals as f4, type TargetWithLiterals as f5, type TextAlignmentWithLiterals as f6, type LineStyleWithLiterals as f7, type WidthWithLiterals as f8, type DividerDataAlignmentWithLiterals as f9, type VerticalAlignmentWithLiterals as fA, type NullValueWithLiterals as fB, type ImageScalingScalingWithLiterals as fC, type ImagePositionWithLiterals as fD, type OriginWithLiterals as fE, type BannerPositionWithLiterals as fF, type LayoutDataBackgroundTypeWithLiterals as fG, type BackdropTypeWithLiterals as fH, type VerticalAlignmentAlignmentWithLiterals as fI, type ResponsivenessBehaviourWithLiterals as fJ, type DesignTargetWithLiterals as fK, type ScalingWithLiterals as fL, type ImagePositionPositionWithLiterals as fM, type CardDataBackgroundTypeWithLiterals as fN, type ListStyleWithLiterals as fO, type IndentationWithLiterals as fP, type SmartBlockDataTypeWithLiterals as fQ, type ColumnSizeWithLiterals as fR, type PaymentPolicyTypeWithLiterals as fS, type SortOrderWithLiterals as fT, type SortTypeWithLiterals as fU, type SortDirectionWithLiterals as fV, type MissingValuesWithLiterals as fW, type ScalarTypeWithLiterals as fX, type NestedAggregationTypeWithLiterals as fY, type IntervalWithLiterals as fZ, type AggregationTypeWithLiterals as f_, type ViewModeWithLiterals as fa, type LayoutTypeWithLiterals as fb, type OrientationWithLiterals as fc, type CropWithLiterals as fd, type ThumbnailsAlignmentWithLiterals as fe, type GIFTypeWithLiterals as ff, type SourceWithLiterals as fg, type StylesPositionWithLiterals as fh, type MapTypeWithLiterals as fi, type ViewRoleWithLiterals as fj, type VoteRoleWithLiterals as fk, type PollLayoutTypeWithLiterals as fl, type PollLayoutDirectionWithLiterals as fm, type PollDesignBackgroundTypeWithLiterals as fn, type DecorationTypeWithLiterals as fo, type FontTypeWithLiterals as fp, type PositionWithLiterals as fq, type AspectRatioWithLiterals as fr, type ResizingWithLiterals as fs, type PlacementWithLiterals as ft, type TypeWithLiterals as fu, type AlignmentWithLiterals as fv, type LayoutWithLiterals as fw, type AppTypeWithLiterals as fx, type InitialExpandedItemsWithLiterals as fy, type DirectionWithLiterals as fz, type BulkUpdateExperienceTagsByFilterApplicationErrors as g, type PlacementTypeWithLiterals as g0, type DayOfWeekWithLiterals as g1, type ResolutionMethodWithLiterals as g2, type WebhookIdentityTypeWithLiterals as g3, type CommonQueryWithEntityContext as g4, type CommonSearchWithEntityContext as g5, onExperienceCreated as g6, onExperienceTagsModified as g7, onExperienceUpdated as g8, createExperience as g9, getExperience as ga, getExperienceBySlug as gb, updateExperience as gc, queryExperiences as gd, bulkUpdateExperienceTags as ge, bulkUpdateExperienceTagsByFilter as gf, bulkArchiveExperiences as gg, bulkUnarchiveExperiences as gh, 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-DBg6eXpp.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-DBg6eXpp.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-1Acqg8lu.mjs';
3
+ export { eM as AccountInfo, eP as AccountInfoMetadata, eI as ActionEvent, em as Address, en as AddressHint, dx as Aggregation, dK as AggregationData, dy as AggregationKindOneOf, e1 as AggregationResults, e2 as AggregationResultsResultOneOf, dR as AggregationResultsScalarResult, aA as AggregationType, f_ as AggregationTypeWithLiterals, a5 as Alignment, fv as AlignmentWithLiterals, c1 as AnchorData, d6 as App, c8 as AppEmbedData, c9 as AppEmbedDataAppDataOneOf, a7 as AppType, fx as AppTypeWithLiterals, e7 as ApplicationError, aS as Approval, a1 as AspectRatio, fr as AspectRatioWithLiterals, ct as AudioData, cC as Backdrop, ah as BackdropType, fH as BackdropTypeWithLiterals, b8 as Background, bS as BackgroundGradient, cI as BackgroundImage, s as BackgroundType, f0 as BackgroundTypeWithLiterals, cA as Banner, af as BannerPosition, fF as BannerPositionWithLiterals, eN as BaseEventMetadata, cw as BlockquoteData, ca as BookingData, b6 as Border, cq as BorderColors, cr as BorderWidths, e9 as BulkActionMetadata, ed as BulkArchiveExperiencesRequest, ee as BulkArchiveExperiencesResult, ef as BulkUnarchiveExperiencesRequest, eg as BulkUnarchiveExperiencesResult, ec as BulkUpdateExperienceTagsByFilterRequest, ea as BulkUpdateExperienceTagsRequest, eb as BulkUpdateExperienceTagsResult, e3 as BulkUpdateExperiencesRequest, e5 as BulkUpdateExperiencesResponse, e8 as BulkUpdateExperiencesResult, cv as BulletedListData, ep as BusinessSchedule, b3 as ButtonData, v as ButtonDataType, f4 as ButtonDataTypeWithLiterals, cc as ButtonStyles, cx as CaptionData, cG as CardData, cH as CardDataBackground, an as CardDataBackgroundType, fN as CardDataBackgroundTypeWithLiterals, cf as CardStyles, ek as Categories, cp as CellStyle, ew as ChangeContext, ex as ChangeContextPayloadOneOf, bi as CodeBlockData, cl as CollapsibleListData, c2 as ColorData, b7 as Colors, ar as ColumnSize, fR as ColumnSizeWithLiterals, g4 as CommonQueryWithEntityContext, g5 as CommonSearchWithEntityContext, cX as Configuration, eu as ConsentPolicy, de as CreateExperienceRequest, df as CreateExperienceResponse, C as Crop, fd as CropWithLiterals, dq as CursorPaging, ds as CursorPagingMetadata, dm as CursorQuery, dn as CursorQueryPagingMethodOneOf, dv as CursorSearch, dw as CursorSearchPagingMethodOneOf, dt as Cursors, aZ as CustomFieldDefinition, da as CustomTag, dF as DateHistogramAggregation, dZ as DateHistogramResult, d$ as DateHistogramResults, aD as DayOfWeek, g1 as DayOfWeekWithLiterals, b$ as Decoration, c0 as DecorationDataOneOf, _ as DecorationType, fo as DecorationTypeWithLiterals, bZ as Design, ak as DesignTarget, fK as DesignTargetWithLiterals, cn as Dimensions, a9 as Direction, fz as DirectionWithLiterals, cQ as DisplayInfo, bk as DividerData, D as DividerDataAlignment, f9 as DividerDataAlignmentWithLiterals, cN as DocumentStyle, eC as DomainEvent, eD as DomainEventBodyOneOf, a_ as EmailMarketingCheckbox, cj as EmbedData, eB as Empty, eE as EntityCreatedEvent, eH as EntityDeletedEvent, eG as EntityUpdatedEvent, aO as Entry, aP as EntryRecurrenceOptionsOneOf, cb as EventData, eO as EventMetadata, eR as ExperienceQuerySpec, eS as ExperienceSearchSpec, eQ as ExperiencesQueryResult, cY as ExtendedFields, d9 as File, bl as FileData, bm as FileSource, bn as FileSourceDataOneOf, c7 as FontFamilyData, c5 as FontSizeData, $ as FontType, fp as FontTypeWithLiterals, bA as GIF, bz as GIFData, F as GIFType, ff as GIFTypeWithLiterals, bp as GalleryData, bv as GalleryOptions, bw as GalleryOptionsLayout, eo as GeoCoordinates, di as GetExperienceBySlugRequest, dg as GetExperienceRequest, dh as GetExperienceResponse, b4 as Gradient, u as GradientType, f1 as GradientTypeWithLiterals, d_ as GroupByValueResults, bC as HTMLData, bD as HTMLDataDataOneOf, bB as HeadingData, bd as Height, eK as IdentificationData, eL as IdentificationDataIdOneOf, br as Image, bE as ImageData, bG as ImageDataStyles, ad as ImagePosition, am as ImagePositionPosition, fM as ImagePositionPositionWithLiterals, fD as ImagePositionWithLiterals, ac as ImageScalingScaling, fC as ImageScalingScalingWithLiterals, cd as ImageStyles, dA as IncludeMissingValuesOptions, ap as Indentation, fP as IndentationWithLiterals, a8 as InitialExpandedItems, fy as InitialExpandedItemsWithLiterals, az as Interval, fZ as IntervalWithLiterals, d4 as InvalidateCache, d5 as InvalidateCacheGetByOneOf, bt as Item, bu as ItemDataOneOf, e6 as ItemMetadata, bx as ItemStyle, d1 as Keyword, a6 as Layout, cD as LayoutCellData, cy as LayoutData, cB as LayoutDataBackground, cz as LayoutDataBackgroundImage, ag as LayoutDataBackgroundType, fG as LayoutDataBackgroundTypeWithLiterals, z as LayoutType, fb as LayoutTypeWithLiterals, fw as LayoutWithLiterals, L as LineStyle, f7 as LineStyleWithLiterals, bf as Link, c3 as LinkData, bg as LinkDataOneOf, bH as LinkPreviewData, bI as LinkPreviewDataStyles, ao as ListStyle, fO as ListStyleWithLiterals, cs as ListValue, el as Locale, bJ as MapData, bK as MapSettings, J as MapType, fi as MapTypeWithLiterals, e4 as MaskedExperience, aT as MaxGuests, bq as Media, c4 as MentionData, eJ as MessageEnvelope, cM as Metadata, aw as MissingValues, fW as MissingValuesWithLiterals, M as Mode, eY as ModeWithLiterals, es as Multilingual, dI as NestedAggregation, dG as NestedAggregationItem, dH as NestedAggregationItemKindOneOf, dN as NestedAggregationResults, dO as NestedAggregationResultsResultOneOf, ay as NestedAggregationType, fY as NestedAggregationTypeWithLiterals, dW as NestedResultValue, dX as NestedResultValueResultOneOf, e0 as NestedResults, dS as NestedValueAggregationResult, b0 as Node, b1 as NodeDataOneOf, b2 as NodeStyle, N as NodeType, e$ as NodeTypeWithLiterals, aR as NoticePeriod, ab as NullValue, fB as NullValueWithLiterals, ck as Oembed, aJ as OnOptions, aK as OnOptionsOptionsOneOf, aN as OneTimeOptions, cT as OnlineReservations, aU as OnlineReservationsBusinessSchedule, bO as Option, bW as OptionDesign, bR as OptionLayout, cu as OrderedListData, O as Orientation, fc as OrientationWithLiterals, ae as Origin, fE as OriginWithLiterals, bo as PDFSettings, d7 as Page, db as Pages, bL as ParagraphData, aQ as PartySize, cR as PaymentPolicy, cS as PaymentPolicyOptionsOneOf, as as PaymentPolicyType, fS as PaymentPolicyTypeWithLiterals, cP as PerGuestOptions, bN as Permissions, a3 as Placement, aC as PlacementType, g0 as PlacementTypeWithLiterals, ft as PlacementWithLiterals, ci as PlaybackOptions, b9 as PluginContainerData, P as PluginContainerDataAlignment, f3 as PluginContainerDataAlignmentWithLiterals, ba as PluginContainerDataWidth, bb as PluginContainerDataWidthDataOneOf, bX as Poll, bM as PollData, bY as PollDataLayout, bV as PollDesign, bT as PollDesignBackground, bU as PollDesignBackgroundBackgroundOneOf, Z as PollDesignBackgroundType, fn as PollDesignBackgroundTypeWithLiterals, bQ as PollLayout, Y as PollLayoutDirection, fm as PollLayoutDirectionWithLiterals, X as PollLayoutType, fl as PollLayoutTypeWithLiterals, bP as PollSettings, a0 as Position, fq as PositionWithLiterals, cg as PricingData, aV as PrivacyPolicy, aW as PrivacyPolicyValueOneOf, ej as Properties, ey as PropertiesChange, dl as QueryExperiencesRequest, dr as QueryExperiencesResponse, dD as RangeAggregation, dM as RangeAggregationResult, dz as RangeBucket, dU as RangeResult, dQ as RangeResults, R as Recurrence, e_ as RecurrenceWithLiterals, bh as Rel, cU as ReservationForm, a2 as Resizing, fs as ResizingWithLiterals, aE as ResolutionMethod, g2 as ResolutionMethodWithLiterals, aj as ResponsivenessBehaviour, fJ as ResponsivenessBehaviourWithLiterals, eF as RestoreInfo, dY as Results, ce as RibbonStyles, a$ as RichContent, dE as ScalarAggregation, dV as ScalarResult, ax as ScalarType, fX as ScalarTypeWithLiterals, al as Scaling, fL as ScalingWithLiterals, dJ as SearchDetails, aB as SearchDetailsMode, f$ as SearchDetailsModeWithLiterals, du as SearchExperiencesRequest, d0 as SeoSchema, c$ as SeoSettings, d3 as Settings, cE as ShapeData, cF as ShapeDataStyles, eA as SiteCloned, ez as SiteCreated, ei as SitePropertiesEvent, eh as SitePropertiesNotification, cL as SmartBlockCellData, cK as SmartBlockData, aq as SmartBlockDataType, fQ as SmartBlockDataTypeWithLiterals, av as SortDirection, fV as SortDirectionWithLiterals, at as SortOrder, fT as SortOrderWithLiterals, au as SortType, fU as SortTypeWithLiterals, dp as Sorting, H as Source, fg as SourceWithLiterals, er as SpecialHourPeriod, aI as SpecificTablesOptions, bc as Spoiler, c6 as SpoilerData, aL as StartDaysAndTimes, r as StartDaysAndTimesDayOfWeek, eZ as StartDaysAndTimesDayOfWeekWithLiterals, b5 as Stop, be as Styles, bF as StylesBorder, I as StylesPosition, fh as StylesPositionWithLiterals, et as SupportedLanguage, aG as Table, o as TableAssignmentType, eV as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, eU as TableAvailabilityTypeWithLiterals, co as TableCellData, aH as TableCombination, cm as TableData, cV as TableManagement, p as TableManagementMode, eW as TableManagementModeWithLiterals, cW as TableManagementOptionsOneOf, d2 as Tag, c_ as TagList, cZ as Tags, dd as TagsModified, w as Target, f5 as TargetWithLiterals, aX as TermsAndConditions, aY as TermsAndConditionsValueOneOf, x as TextAlignment, f6 as TextAlignmentWithLiterals, b_ as TextData, cO as TextNodeStyle, bj as TextStyle, by as Thumbnails, A as ThumbnailsAlignment, fe as ThumbnailsAlignmentWithLiterals, eq as TimePeriod, cJ as TocData, ev as Translation, a4 as Type, fu as TypeWithLiterals, d8 as URI, dc as URIs, q as Unit, eX as UnitWithLiterals, dj as UpdateExperienceRequest, dk as UpdateExperienceResponse, dB as ValueAggregation, dC as ValueAggregationOptionsOneOf, dL as ValueAggregationResult, dT as ValueResult, dP as ValueResults, aa as VerticalAlignment, ai as VerticalAlignmentAlignment, fI as VerticalAlignmentAlignmentWithLiterals, fA as VerticalAlignmentWithLiterals, bs as Video, ch as VideoData, V as ViewMode, fa as ViewModeWithLiterals, K as ViewRole, fj as ViewRoleWithLiterals, Q as VoteRole, fk as VoteRoleWithLiterals, aF as WebhookIdentityType, g3 as WebhookIdentityTypeWithLiterals, aM as WeeklyOptions, y as Width, W as WidthType, f2 as WidthTypeWithLiterals, f8 as WidthWithLiterals, eT as utils } from './table-reservations-v1-experience-experiences.universal-1Acqg8lu.mjs';
4
4
 
5
5
  declare function createExperience$1(httpClient: HttpClient): CreateExperienceSignature;
6
6
  interface CreateExperienceSignature {
@@ -38,6 +38,8 @@ interface UpdateExperienceSignature {
38
38
  * Each time the experience is updated, `revision` increments by 1.
39
39
  * The current `revision` must be passed when updating the experience.
40
40
  * This ensures you're working with the latest experience information and prevents unintended overwrites.
41
+ *
42
+ * To update multiple experiences in a single request, call [Bulk Update Experiences](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/reservations/experiences/bulk-update-experiences).
41
43
  * @param - Experience ID.
42
44
  * @returns Updated experience.
43
45
  */
@@ -1790,6 +1790,11 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
1790
1790
  Origin2["LAYOUT"] = "LAYOUT";
1791
1791
  return Origin2;
1792
1792
  })(Origin || {});
1793
+ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
1794
+ BannerPosition2["TOP"] = "TOP";
1795
+ BannerPosition2["BOTTOM"] = "BOTTOM";
1796
+ return BannerPosition2;
1797
+ })(BannerPosition || {});
1793
1798
  var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
1794
1799
  LayoutDataBackgroundType2["COLOR"] = "COLOR";
1795
1800
  LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
@@ -3187,6 +3192,7 @@ export {
3187
3192
  AspectRatio,
3188
3193
  BackdropType,
3189
3194
  BackgroundType,
3195
+ BannerPosition,
3190
3196
  ButtonDataType,
3191
3197
  CardDataBackgroundType,
3192
3198
  ColumnSize,