@wix/auto_sdk_table-reservations_experiences 1.0.15 → 1.0.18

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 (37) hide show
  1. package/build/cjs/index.d.ts +2 -2
  2. package/build/cjs/index.js +74 -63
  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 +42 -34
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +117 -2
  8. package/build/cjs/meta.js.map +1 -1
  9. package/build/cjs/{table-reservations-v1-experience-experiences.universal-DmhnK8go.d.ts → table-reservations-v1-experience-experiences.universal-CH98Tq2F.d.ts} +116 -1
  10. package/build/es/index.d.mts +2 -2
  11. package/build/es/index.mjs +74 -63
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +2 -2
  14. package/build/es/index.typings.mjs +42 -34
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +117 -2
  17. package/build/es/meta.mjs.map +1 -1
  18. package/build/es/{table-reservations-v1-experience-experiences.universal-DmhnK8go.d.mts → table-reservations-v1-experience-experiences.universal-CH98Tq2F.d.mts} +116 -1
  19. package/build/internal/cjs/index.d.ts +2 -2
  20. package/build/internal/cjs/index.js +74 -63
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +2 -2
  23. package/build/internal/cjs/index.typings.js +42 -34
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +117 -2
  26. package/build/internal/cjs/meta.js.map +1 -1
  27. package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-DmhnK8go.d.ts → table-reservations-v1-experience-experiences.universal-CH98Tq2F.d.ts} +116 -1
  28. package/build/internal/es/index.d.mts +2 -2
  29. package/build/internal/es/index.mjs +74 -63
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +2 -2
  32. package/build/internal/es/index.typings.mjs +42 -34
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +117 -2
  35. package/build/internal/es/meta.mjs.map +1 -1
  36. package/build/internal/es/{table-reservations-v1-experience-experiences.universal-DmhnK8go.d.mts → table-reservations-v1-experience-experiences.universal-CH98Tq2F.d.mts} +116 -1
  37. package/package.json +2 -2
@@ -2368,6 +2368,121 @@ interface TagList {
2368
2368
  */
2369
2369
  tagIds?: string[];
2370
2370
  }
2371
+ interface InvalidateCache extends InvalidateCacheGetByOneOf {
2372
+ /**
2373
+ * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
2374
+ * @format GUID
2375
+ */
2376
+ metaSiteId?: string;
2377
+ /**
2378
+ * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
2379
+ * @format GUID
2380
+ */
2381
+ siteId?: string;
2382
+ /** Invalidate by App */
2383
+ app?: App;
2384
+ /** Invalidate by page id */
2385
+ page?: Page;
2386
+ /** Invalidate by URI path */
2387
+ uri?: URI;
2388
+ /** Invalidate by file (for media files such as PDFs) */
2389
+ file?: File;
2390
+ /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
2391
+ customTag?: CustomTag;
2392
+ /**
2393
+ * tell us why you're invalidating the cache. You don't need to add your app name
2394
+ * @maxLength 256
2395
+ */
2396
+ reason?: string | null;
2397
+ /** Is local DS */
2398
+ localDc?: boolean;
2399
+ hardPurge?: boolean;
2400
+ }
2401
+ /** @oneof */
2402
+ interface InvalidateCacheGetByOneOf {
2403
+ /**
2404
+ * Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
2405
+ * @format GUID
2406
+ */
2407
+ metaSiteId?: string;
2408
+ /**
2409
+ * Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
2410
+ * @format GUID
2411
+ */
2412
+ siteId?: string;
2413
+ /** Invalidate by App */
2414
+ app?: App;
2415
+ /** Invalidate by page id */
2416
+ page?: Page;
2417
+ /** Invalidate by URI path */
2418
+ uri?: URI;
2419
+ /** Invalidate by file (for media files such as PDFs) */
2420
+ file?: File;
2421
+ /** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
2422
+ customTag?: CustomTag;
2423
+ }
2424
+ interface App {
2425
+ /**
2426
+ * The AppDefId
2427
+ * @minLength 1
2428
+ */
2429
+ appDefId?: string;
2430
+ /**
2431
+ * The instance Id
2432
+ * @format GUID
2433
+ */
2434
+ instanceId?: string;
2435
+ }
2436
+ interface Page {
2437
+ /**
2438
+ * the msid the page is on
2439
+ * @format GUID
2440
+ */
2441
+ metaSiteId?: string;
2442
+ /**
2443
+ * Invalidate by Page ID
2444
+ * @minLength 1
2445
+ */
2446
+ pageId?: string;
2447
+ }
2448
+ interface URI {
2449
+ /**
2450
+ * the msid the URI is on
2451
+ * @format GUID
2452
+ */
2453
+ metaSiteId?: string;
2454
+ /**
2455
+ * URI path to invalidate (e.g. page/my/path) - without leading/trailing slashes
2456
+ * @minLength 1
2457
+ */
2458
+ uriPath?: string;
2459
+ }
2460
+ interface File {
2461
+ /**
2462
+ * the msid the file is related to
2463
+ * @format GUID
2464
+ */
2465
+ metaSiteId?: string;
2466
+ /**
2467
+ * Invalidate by filename (for media files such as PDFs)
2468
+ * @minLength 1
2469
+ * @maxLength 256
2470
+ */
2471
+ fileName?: string;
2472
+ }
2473
+ interface CustomTag {
2474
+ /**
2475
+ * the msid the tag is related to
2476
+ * @format GUID
2477
+ */
2478
+ metaSiteId?: string;
2479
+ /**
2480
+ * Tag to invalidate by
2481
+ * @minLength 1
2482
+ * @maxLength 256
2483
+ */
2484
+ tag?: string;
2485
+ }
2371
2486
  interface TagsModified {
2372
2487
  /** Experience with updated tags. */
2373
2488
  experience?: Experience;
@@ -4043,4 +4158,4 @@ interface BulkUpdateExperienceTagsByFilterOptions {
4043
4158
  unassignTags?: Tags;
4044
4159
  }
4045
4160
 
4046
- export { Alignment as $, VoteRole as A, type BulkUpdateExperienceTagsOptions as B, type CursorQuery as C, DividerDataAlignment as D, type Experience as E, PollLayoutType as F, GIFType as G, PollLayoutDirection as H, BackgroundType as I, DecorationType as J, FontType as K, LineStyle as L, Mode as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, Position as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, AspectRatio as X, Resizing as Y, Placement as Z, Type as _, type ExperienceSearch as a, type DividerData as a$, Layout as a0, AppType as a1, InitialExpandedItems as a2, Direction as a3, VerticalAlignment as a4, NullValue as a5, Scaling as a6, ImagePosition as a7, VerticalAlignmentAlignment as a8, ResponsivenessBehaviour as a9, type Approval as aA, type MaxGuests as aB, type OnlineReservationsBusinessSchedule as aC, type PrivacyPolicy as aD, type PrivacyPolicyValueOneOf as aE, type TermsAndConditions as aF, type TermsAndConditionsValueOneOf as aG, type CustomFieldDefinition as aH, type EmailMarketingCheckbox as aI, type RichContent as aJ, type Node as aK, type NodeDataOneOf as aL, type NodeStyle as aM, type ButtonData as aN, type Border as aO, type Colors as aP, type PluginContainerData as aQ, type PluginContainerDataWidth as aR, type PluginContainerDataWidthDataOneOf as aS, type Spoiler as aT, type Height as aU, type Styles as aV, type Link as aW, type LinkDataOneOf as aX, type Rel as aY, type CodeBlockData as aZ, type TextStyle as a_, PaymentPolicyType as aa, SortOrder as ab, SortType as ac, SortDirection as ad, MissingValues as ae, ScalarType as af, NestedAggregationType as ag, Interval as ah, AggregationType as ai, SearchDetailsMode as aj, PlacementType as ak, DayOfWeek as al, ResolutionMethod as am, WebhookIdentityType as an, type Table as ao, type TableCombination as ap, type SpecificTablesOptions as aq, type OnOptions as ar, type OnOptionsOptionsOneOf as as, type StartDaysAndTimes as at, type WeeklyOptions as au, type OneTimeOptions as av, type Entry as aw, type EntryRecurrenceOptionsOneOf as ax, type PartySize as ay, type NoticePeriod as az, type BulkUpdateExperienceTagsResponse as b, type Oembed as b$, type FileData as b0, type FileSource as b1, type FileSourceDataOneOf as b2, type PDFSettings as b3, type GalleryData as b4, type Media as b5, type Image as b6, type Video as b7, type Item as b8, type ItemDataOneOf as b9, type PollDesign as bA, type OptionDesign as bB, type Poll as bC, type PollDataLayout as bD, type Design as bE, type TextData as bF, type Decoration as bG, type DecorationDataOneOf as bH, type AnchorData as bI, type ColorData as bJ, type LinkData as bK, type MentionData as bL, type FontSizeData as bM, type SpoilerData as bN, type FontFamilyData as bO, type AppEmbedData as bP, type AppEmbedDataAppDataOneOf as bQ, type BookingData as bR, type EventData as bS, type ButtonStyles as bT, type ImageStyles as bU, type RibbonStyles as bV, type CardStyles as bW, type PricingData as bX, type VideoData as bY, type PlaybackOptions as bZ, type EmbedData as b_, 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 Settings as bu, type PollLayout as bv, type OptionLayout as bw, type Gradient as bx, type Background as by, type BackgroundBackgroundOneOf as bz, type BulkUpdateExperienceTagsApplicationErrors as c, type RangeAggregationResult as c$, type CollapsibleListData as c0, type TableData as c1, type Dimensions as c2, type TableCellData as c3, type CellStyle as c4, type BorderColors as c5, type BorderWidths as c6, type ListValue as c7, type AudioData as c8, type OrderedListData as c9, type UpdateExperienceRequest as cA, type UpdateExperienceResponse as cB, type QueryExperiencesRequest as cC, type CursorQueryPagingMethodOneOf as cD, type Sorting as cE, type CursorPaging as cF, type QueryExperiencesResponse as cG, type CursorPagingMetadata as cH, type Cursors as cI, type SearchExperiencesRequest as cJ, type CursorSearch as cK, type CursorSearchPagingMethodOneOf as cL, type Aggregation as cM, type AggregationKindOneOf as cN, type RangeBucket as cO, type IncludeMissingValuesOptions as cP, type ValueAggregation as cQ, type ValueAggregationOptionsOneOf as cR, type RangeAggregation as cS, type ScalarAggregation as cT, type DateHistogramAggregation as cU, type NestedAggregationItem as cV, type NestedAggregationItemKindOneOf as cW, type NestedAggregation as cX, type SearchDetails as cY, type AggregationData as cZ, type ValueAggregationResult as c_, type BulletedListData as ca, type BlockquoteData as cb, type CaptionData as cc, type LayoutData as cd, type BackgroundImage as ce, type LayoutCellData as cf, type Metadata as cg, type DocumentStyle as ch, type TextNodeStyle as ci, type PerGuestOptions as cj, type DisplayInfo as ck, type PaymentPolicy as cl, type PaymentPolicyOptionsOneOf as cm, type OnlineReservations as cn, type ReservationForm as co, type TableManagement as cp, type TableManagementOptionsOneOf as cq, type Configuration as cr, type ExtendedFields as cs, type Tags as ct, type TagList as cu, type TagsModified as cv, type CreateExperienceRequest as cw, type CreateExperienceResponse as cx, type GetExperienceRequest as cy, type GetExperienceResponse as cz, type BulkUpdateExperienceTagsByFilterOptions as d, type EventMetadata as d$, type NestedAggregationResults as d0, type NestedAggregationResultsResultOneOf as d1, type ValueResults as d2, type RangeResults as d3, type AggregationResultsScalarResult as d4, type NestedValueAggregationResult as d5, type ValueResult as d6, type RangeResult as d7, type ScalarResult as d8, type NestedResultValue as d9, type Address as dA, type AddressHint as dB, type GeoCoordinates as dC, type BusinessSchedule as dD, type TimePeriod as dE, type SpecialHourPeriod as dF, type Multilingual as dG, type SupportedLanguage as dH, type ConsentPolicy as dI, type Translation as dJ, type ChangeContext as dK, type ChangeContextPayloadOneOf as dL, type PropertiesChange as dM, type SiteCreated as dN, type SiteCloned as dO, type Empty as dP, type DomainEvent as dQ, type DomainEventBodyOneOf as dR, type EntityCreatedEvent as dS, type RestoreInfo as dT, type EntityUpdatedEvent as dU, type EntityDeletedEvent as dV, type ActionEvent as dW, type MessageEnvelope as dX, type IdentificationData as dY, type IdentificationDataIdOneOf as dZ, type BaseEventMetadata as d_, type NestedResultValueResultOneOf as da, type Results as db, type DateHistogramResult as dc, type GroupByValueResults as dd, type DateHistogramResults as de, type NestedResults as df, type AggregationResults as dg, type AggregationResultsResultOneOf as dh, type BulkUpdateExperienceTagsRequest as di, type ItemMetadata as dj, type ApplicationError as dk, type BulkUpdateExperienceTagsResult as dl, type BulkActionMetadata as dm, type BulkUpdateExperienceTagsByFilterRequest as dn, type BulkArchiveExperiencesRequest as dp, type BulkArchiveExperiencesResponse as dq, type BulkArchiveExperiencesResult as dr, type BulkUnarchiveExperiencesRequest as ds, type BulkUnarchiveExperiencesResponse as dt, type BulkUnarchiveExperiencesResult as du, type SitePropertiesNotification as dv, type SitePropertiesEvent as dw, type Properties as dx, type Categories as dy, type Locale as dz, type BulkUpdateExperienceTagsByFilterResponse as e, type WebhookIdentityTypeWithLiterals as e$, type ExperiencesQueryResult as e0, type ExperienceSearchSpec as e1, type TableAvailabilityTypeWithLiterals as e2, type TableAssignmentTypeWithLiterals as e3, type TableManagementModeWithLiterals as e4, type UnitWithLiterals as e5, type ModeWithLiterals as e6, type StartDaysAndTimesDayOfWeekWithLiterals as e7, type RecurrenceWithLiterals as e8, type NodeTypeWithLiterals as e9, type ResizingWithLiterals as eA, type PlacementWithLiterals as eB, type TypeWithLiterals as eC, type AlignmentWithLiterals as eD, type LayoutWithLiterals as eE, type AppTypeWithLiterals as eF, type InitialExpandedItemsWithLiterals as eG, type DirectionWithLiterals as eH, type VerticalAlignmentWithLiterals as eI, type NullValueWithLiterals as eJ, type ScalingWithLiterals as eK, type ImagePositionWithLiterals as eL, type VerticalAlignmentAlignmentWithLiterals as eM, type ResponsivenessBehaviourWithLiterals as eN, type PaymentPolicyTypeWithLiterals as eO, type SortOrderWithLiterals as eP, type SortTypeWithLiterals as eQ, type SortDirectionWithLiterals as eR, type MissingValuesWithLiterals as eS, type ScalarTypeWithLiterals as eT, type NestedAggregationTypeWithLiterals as eU, type IntervalWithLiterals as eV, type AggregationTypeWithLiterals as eW, type SearchDetailsModeWithLiterals as eX, type PlacementTypeWithLiterals as eY, type DayOfWeekWithLiterals as eZ, type ResolutionMethodWithLiterals as e_, type WidthTypeWithLiterals as ea, type PluginContainerDataAlignmentWithLiterals as eb, type ButtonDataTypeWithLiterals as ec, type TargetWithLiterals as ed, type TextAlignmentWithLiterals as ee, type LineStyleWithLiterals as ef, type WidthWithLiterals as eg, type DividerDataAlignmentWithLiterals as eh, type ViewModeWithLiterals as ei, type LayoutTypeWithLiterals as ej, type OrientationWithLiterals as ek, type CropWithLiterals as el, type ThumbnailsAlignmentWithLiterals as em, type GIFTypeWithLiterals as en, type SourceWithLiterals as eo, type StylesPositionWithLiterals as ep, type MapTypeWithLiterals as eq, type ViewRoleWithLiterals as er, type VoteRoleWithLiterals as es, type PollLayoutTypeWithLiterals as et, type PollLayoutDirectionWithLiterals as eu, type BackgroundTypeWithLiterals as ev, type DecorationTypeWithLiterals as ew, type FontTypeWithLiterals as ex, type PositionWithLiterals as ey, type AspectRatioWithLiterals as ez, type BulkUpdateExperienceTagsByFilterApplicationErrors as f, type CommonSearchWithEntityContext as f0, onExperienceCreated as f1, onExperienceTagsModified as f2, onExperienceUpdated as f3, createExperience as f4, getExperience as f5, updateExperience as f6, queryExperiences as f7, bulkUpdateExperienceTags as f8, bulkUpdateExperienceTagsByFilter as f9, type ExperienceCreatedEnvelope as g, type ExperienceTagsModifiedEnvelope as h, type ExperienceUpdatedEnvelope as i, type ExperiencesQueryBuilder as j, TableAssignmentType as k, TableManagementMode as l, Unit as m, StartDaysAndTimesDayOfWeek as n, ButtonDataType as o, Target as p, TextAlignment as q, Width as r, LayoutType as s, typedQueryExperiences as t, Crop as u, ThumbnailsAlignment as v, Source as w, StylesPosition as x, MapType as y, ViewRole as z };
4161
+ export { Alignment as $, VoteRole as A, type BulkUpdateExperienceTagsOptions as B, type CursorQuery as C, DividerDataAlignment as D, type Experience as E, PollLayoutType as F, GIFType as G, PollLayoutDirection as H, BackgroundType as I, DecorationType as J, FontType as K, LineStyle as L, Mode as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, Position as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, AspectRatio as X, Resizing as Y, Placement as Z, Type as _, type ExperienceSearch as a, type DividerData as a$, Layout as a0, AppType as a1, InitialExpandedItems as a2, Direction as a3, VerticalAlignment as a4, NullValue as a5, Scaling as a6, ImagePosition as a7, VerticalAlignmentAlignment as a8, ResponsivenessBehaviour as a9, type Approval as aA, type MaxGuests as aB, type OnlineReservationsBusinessSchedule as aC, type PrivacyPolicy as aD, type PrivacyPolicyValueOneOf as aE, type TermsAndConditions as aF, type TermsAndConditionsValueOneOf as aG, type CustomFieldDefinition as aH, type EmailMarketingCheckbox as aI, type RichContent as aJ, type Node as aK, type NodeDataOneOf as aL, type NodeStyle as aM, type ButtonData as aN, type Border as aO, type Colors as aP, type PluginContainerData as aQ, type PluginContainerDataWidth as aR, type PluginContainerDataWidthDataOneOf as aS, type Spoiler as aT, type Height as aU, type Styles as aV, type Link as aW, type LinkDataOneOf as aX, type Rel as aY, type CodeBlockData as aZ, type TextStyle as a_, PaymentPolicyType as aa, SortOrder as ab, SortType as ac, SortDirection as ad, MissingValues as ae, ScalarType as af, NestedAggregationType as ag, Interval as ah, AggregationType as ai, SearchDetailsMode as aj, PlacementType as ak, DayOfWeek as al, ResolutionMethod as am, WebhookIdentityType as an, type Table as ao, type TableCombination as ap, type SpecificTablesOptions as aq, type OnOptions as ar, type OnOptionsOptionsOneOf as as, type StartDaysAndTimes as at, type WeeklyOptions as au, type OneTimeOptions as av, type Entry as aw, type EntryRecurrenceOptionsOneOf as ax, type PartySize as ay, type NoticePeriod as az, type BulkUpdateExperienceTagsResponse as b, type Oembed as b$, type FileData as b0, type FileSource as b1, type FileSourceDataOneOf as b2, type PDFSettings as b3, type GalleryData as b4, type Media as b5, type Image as b6, type Video as b7, type Item as b8, type ItemDataOneOf as b9, type PollDesign as bA, type OptionDesign as bB, type Poll as bC, type PollDataLayout as bD, type Design as bE, type TextData as bF, type Decoration as bG, type DecorationDataOneOf as bH, type AnchorData as bI, type ColorData as bJ, type LinkData as bK, type MentionData as bL, type FontSizeData as bM, type SpoilerData as bN, type FontFamilyData as bO, type AppEmbedData as bP, type AppEmbedDataAppDataOneOf as bQ, type BookingData as bR, type EventData as bS, type ButtonStyles as bT, type ImageStyles as bU, type RibbonStyles as bV, type CardStyles as bW, type PricingData as bX, type VideoData as bY, type PlaybackOptions as bZ, type EmbedData as b_, 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 Settings as bu, type PollLayout as bv, type OptionLayout as bw, type Gradient as bx, type Background as by, type BackgroundBackgroundOneOf as bz, type BulkUpdateExperienceTagsApplicationErrors as c, type DateHistogramAggregation as c$, type CollapsibleListData as c0, type TableData as c1, type Dimensions as c2, type TableCellData as c3, type CellStyle as c4, type BorderColors as c5, type BorderWidths as c6, type ListValue as c7, type AudioData as c8, type OrderedListData as c9, type File as cA, type CustomTag as cB, type TagsModified as cC, type CreateExperienceRequest as cD, type CreateExperienceResponse as cE, type GetExperienceRequest as cF, type GetExperienceResponse as cG, type UpdateExperienceRequest as cH, type UpdateExperienceResponse as cI, type QueryExperiencesRequest as cJ, type CursorQueryPagingMethodOneOf as cK, type Sorting as cL, type CursorPaging as cM, type QueryExperiencesResponse as cN, type CursorPagingMetadata as cO, type Cursors as cP, type SearchExperiencesRequest as cQ, type CursorSearch as cR, type CursorSearchPagingMethodOneOf as cS, type Aggregation as cT, type AggregationKindOneOf as cU, type RangeBucket as cV, type IncludeMissingValuesOptions as cW, type ValueAggregation as cX, type ValueAggregationOptionsOneOf as cY, type RangeAggregation as cZ, type ScalarAggregation as c_, type BulletedListData as ca, type BlockquoteData as cb, type CaptionData as cc, type LayoutData as cd, type BackgroundImage as ce, type LayoutCellData as cf, type Metadata as cg, type DocumentStyle as ch, type TextNodeStyle as ci, type PerGuestOptions as cj, type DisplayInfo as ck, type PaymentPolicy as cl, type PaymentPolicyOptionsOneOf as cm, type OnlineReservations as cn, type ReservationForm as co, type TableManagement as cp, type TableManagementOptionsOneOf as cq, type Configuration as cr, type ExtendedFields as cs, type Tags as ct, type TagList as cu, type InvalidateCache as cv, type InvalidateCacheGetByOneOf as cw, type App as cx, type Page as cy, type URI as cz, type BulkUpdateExperienceTagsByFilterOptions as d, type EntityUpdatedEvent as d$, type NestedAggregationItem as d0, type NestedAggregationItemKindOneOf as d1, type NestedAggregation as d2, type SearchDetails as d3, type AggregationData as d4, type ValueAggregationResult as d5, type RangeAggregationResult as d6, type NestedAggregationResults as d7, type NestedAggregationResultsResultOneOf as d8, type ValueResults as d9, type BulkUnarchiveExperiencesResponse as dA, type BulkUnarchiveExperiencesResult as dB, type SitePropertiesNotification as dC, type SitePropertiesEvent as dD, type Properties as dE, type Categories as dF, type Locale as dG, type Address as dH, type AddressHint as dI, type GeoCoordinates as dJ, type BusinessSchedule as dK, type TimePeriod as dL, type SpecialHourPeriod as dM, type Multilingual as dN, type SupportedLanguage as dO, type ConsentPolicy as dP, type Translation as dQ, type ChangeContext as dR, type ChangeContextPayloadOneOf as dS, type PropertiesChange as dT, type SiteCreated as dU, type SiteCloned as dV, type Empty as dW, type DomainEvent as dX, type DomainEventBodyOneOf as dY, type EntityCreatedEvent as dZ, type RestoreInfo as d_, type RangeResults as da, type AggregationResultsScalarResult as db, type NestedValueAggregationResult as dc, type ValueResult as dd, type RangeResult as de, type ScalarResult as df, type NestedResultValue as dg, type NestedResultValueResultOneOf as dh, type Results as di, type DateHistogramResult as dj, type GroupByValueResults as dk, type DateHistogramResults as dl, type NestedResults as dm, type AggregationResults as dn, type AggregationResultsResultOneOf as dp, type BulkUpdateExperienceTagsRequest as dq, type ItemMetadata as dr, type ApplicationError as ds, type BulkUpdateExperienceTagsResult as dt, type BulkActionMetadata as du, type BulkUpdateExperienceTagsByFilterRequest as dv, type BulkArchiveExperiencesRequest as dw, type BulkArchiveExperiencesResponse as dx, type BulkArchiveExperiencesResult as dy, type BulkUnarchiveExperiencesRequest as dz, type BulkUpdateExperienceTagsByFilterResponse as e, type NestedAggregationTypeWithLiterals as e$, type EntityDeletedEvent as e0, type ActionEvent as e1, type MessageEnvelope as e2, type IdentificationData as e3, type IdentificationDataIdOneOf as e4, type BaseEventMetadata as e5, type EventMetadata as e6, type ExperiencesQueryResult as e7, type ExperienceSearchSpec as e8, type TableAvailabilityTypeWithLiterals as e9, type PollLayoutTypeWithLiterals as eA, type PollLayoutDirectionWithLiterals as eB, type BackgroundTypeWithLiterals as eC, type DecorationTypeWithLiterals as eD, type FontTypeWithLiterals as eE, type PositionWithLiterals as eF, type AspectRatioWithLiterals as eG, type ResizingWithLiterals as eH, type PlacementWithLiterals as eI, type TypeWithLiterals as eJ, type AlignmentWithLiterals as eK, type LayoutWithLiterals as eL, type AppTypeWithLiterals as eM, type InitialExpandedItemsWithLiterals as eN, type DirectionWithLiterals as eO, type VerticalAlignmentWithLiterals as eP, type NullValueWithLiterals as eQ, type ScalingWithLiterals as eR, type ImagePositionWithLiterals as eS, type VerticalAlignmentAlignmentWithLiterals as eT, type ResponsivenessBehaviourWithLiterals as eU, type PaymentPolicyTypeWithLiterals as eV, type SortOrderWithLiterals as eW, type SortTypeWithLiterals as eX, type SortDirectionWithLiterals as eY, type MissingValuesWithLiterals as eZ, type ScalarTypeWithLiterals as e_, type TableAssignmentTypeWithLiterals as ea, type TableManagementModeWithLiterals as eb, type UnitWithLiterals as ec, type ModeWithLiterals as ed, type StartDaysAndTimesDayOfWeekWithLiterals as ee, type RecurrenceWithLiterals as ef, type NodeTypeWithLiterals as eg, type WidthTypeWithLiterals as eh, type PluginContainerDataAlignmentWithLiterals as ei, type ButtonDataTypeWithLiterals as ej, type TargetWithLiterals as ek, type TextAlignmentWithLiterals as el, type LineStyleWithLiterals as em, type WidthWithLiterals as en, type DividerDataAlignmentWithLiterals as eo, type ViewModeWithLiterals as ep, type LayoutTypeWithLiterals as eq, type OrientationWithLiterals as er, type CropWithLiterals as es, type ThumbnailsAlignmentWithLiterals as et, type GIFTypeWithLiterals as eu, type SourceWithLiterals as ev, type StylesPositionWithLiterals as ew, type MapTypeWithLiterals as ex, type ViewRoleWithLiterals as ey, type VoteRoleWithLiterals as ez, type BulkUpdateExperienceTagsByFilterApplicationErrors as f, type IntervalWithLiterals as f0, type AggregationTypeWithLiterals as f1, type SearchDetailsModeWithLiterals as f2, type PlacementTypeWithLiterals as f3, type DayOfWeekWithLiterals as f4, type ResolutionMethodWithLiterals as f5, type WebhookIdentityTypeWithLiterals as f6, type CommonSearchWithEntityContext as f7, onExperienceCreated as f8, onExperienceTagsModified as f9, onExperienceUpdated as fa, createExperience as fb, getExperience as fc, updateExperience as fd, queryExperiences as fe, bulkUpdateExperienceTags as ff, bulkUpdateExperienceTagsByFilter as fg, type ExperienceCreatedEnvelope as g, type ExperienceTagsModifiedEnvelope as h, type ExperienceUpdatedEnvelope as i, type ExperiencesQueryBuilder as j, TableAssignmentType as k, TableManagementMode as l, Unit as m, StartDaysAndTimesDayOfWeek as n, ButtonDataType as o, Target as p, TextAlignment as q, Width as r, LayoutType as s, typedQueryExperiences as t, Crop as u, ThumbnailsAlignment as v, Source as w, StylesPosition as x, MapType as y, ViewRole as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { E as Experience, U as UpdateExperience, a as ExperienceSearch, S as SearchExperiencesResponse, B as BulkUpdateExperienceTagsOptions, b as BulkUpdateExperienceTagsResponse, c as BulkUpdateExperienceTagsApplicationErrors, d as BulkUpdateExperienceTagsByFilterOptions, e as BulkUpdateExperienceTagsByFilterResponse, f as BulkUpdateExperienceTagsByFilterApplicationErrors, g as ExperienceCreatedEnvelope, h as ExperienceTagsModifiedEnvelope, i as ExperienceUpdatedEnvelope, j as ExperiencesQueryBuilder, C as CursorQuery, t as typedQueryExperiences } from './table-reservations-v1-experience-experiences.universal-DmhnK8go.js';
3
- export { dW as ActionEvent, dA as Address, dB as AddressHint, cM as Aggregation, cZ as AggregationData, cN as AggregationKindOneOf, dg as AggregationResults, dh as AggregationResultsResultOneOf, d4 as AggregationResultsScalarResult, ai as AggregationType, eW as AggregationTypeWithLiterals, $ as Alignment, eD as AlignmentWithLiterals, bI as AnchorData, bP as AppEmbedData, bQ as AppEmbedDataAppDataOneOf, a1 as AppType, eF as AppTypeWithLiterals, dk as ApplicationError, aA as Approval, X as AspectRatio, ez as AspectRatioWithLiterals, c8 as AudioData, by as Background, bz as BackgroundBackgroundOneOf, ce as BackgroundImage, I as BackgroundType, ev as BackgroundTypeWithLiterals, d_ as BaseEventMetadata, cb as BlockquoteData, bR as BookingData, aO as Border, c5 as BorderColors, c6 as BorderWidths, dm as BulkActionMetadata, dp as BulkArchiveExperiencesRequest, dq as BulkArchiveExperiencesResponse, dr as BulkArchiveExperiencesResult, ds as BulkUnarchiveExperiencesRequest, dt as BulkUnarchiveExperiencesResponse, du as BulkUnarchiveExperiencesResult, dn as BulkUpdateExperienceTagsByFilterRequest, di as BulkUpdateExperienceTagsRequest, dl as BulkUpdateExperienceTagsResult, ca as BulletedListData, dD as BusinessSchedule, aN as ButtonData, o as ButtonDataType, ec as ButtonDataTypeWithLiterals, bT as ButtonStyles, cc as CaptionData, bW as CardStyles, dy as Categories, c4 as CellStyle, dK as ChangeContext, dL as ChangeContextPayloadOneOf, aZ as CodeBlockData, c0 as CollapsibleListData, bJ as ColorData, aP as Colors, f0 as CommonSearchWithEntityContext, cr as Configuration, dI as ConsentPolicy, cw as CreateExperienceRequest, cx as CreateExperienceResponse, u as Crop, el as CropWithLiterals, cF as CursorPaging, cH as CursorPagingMetadata, cD as CursorQueryPagingMethodOneOf, cK as CursorSearch, cL as CursorSearchPagingMethodOneOf, cI as Cursors, aH as CustomFieldDefinition, cU as DateHistogramAggregation, dc as DateHistogramResult, de as DateHistogramResults, al as DayOfWeek, eZ as DayOfWeekWithLiterals, bG as Decoration, bH as DecorationDataOneOf, J as DecorationType, ew as DecorationTypeWithLiterals, bE as Design, c2 as Dimensions, a3 as Direction, eH as DirectionWithLiterals, ck as DisplayInfo, a$ as DividerData, D as DividerDataAlignment, eh as DividerDataAlignmentWithLiterals, ch as DocumentStyle, dQ as DomainEvent, dR as DomainEventBodyOneOf, aI as EmailMarketingCheckbox, b_ as EmbedData, dP as Empty, dS as EntityCreatedEvent, dV as EntityDeletedEvent, dU as EntityUpdatedEvent, aw as Entry, ax as EntryRecurrenceOptionsOneOf, bS as EventData, d$ as EventMetadata, e1 as ExperienceSearchSpec, e0 as ExperiencesQueryResult, cs as ExtendedFields, b0 as FileData, b1 as FileSource, b2 as FileSourceDataOneOf, bO as FontFamilyData, bM as FontSizeData, K as FontType, ex as FontTypeWithLiterals, bf as GIF, be as GIFData, G as GIFType, en as GIFTypeWithLiterals, b4 as GalleryData, ba as GalleryOptions, bb as GalleryOptionsLayout, dC as GeoCoordinates, cy as GetExperienceRequest, cz as GetExperienceResponse, bx as Gradient, dd as GroupByValueResults, bh as HTMLData, bi as HTMLDataDataOneOf, bg as HeadingData, aU as Height, dY as IdentificationData, dZ as IdentificationDataIdOneOf, b6 as Image, bj as ImageData, bl as ImageDataStyles, a7 as ImagePosition, eL as ImagePositionWithLiterals, bU as ImageStyles, cP as IncludeMissingValuesOptions, a2 as InitialExpandedItems, eG as InitialExpandedItemsWithLiterals, ah as Interval, eV as IntervalWithLiterals, b8 as Item, b9 as ItemDataOneOf, dj as ItemMetadata, bc as ItemStyle, a0 as Layout, cf as LayoutCellData, cd as LayoutData, s as LayoutType, ej as LayoutTypeWithLiterals, eE as LayoutWithLiterals, L as LineStyle, ef as LineStyleWithLiterals, aW as Link, bK as LinkData, aX as LinkDataOneOf, bm as LinkPreviewData, bn as LinkPreviewDataStyles, c7 as ListValue, dz as Locale, bo as MapData, bp as MapSettings, y as MapType, eq as MapTypeWithLiterals, aB as MaxGuests, b5 as Media, bL as MentionData, dX as MessageEnvelope, cg as Metadata, ae as MissingValues, eS as MissingValuesWithLiterals, M as Mode, e6 as ModeWithLiterals, dG as Multilingual, cX as NestedAggregation, cV as NestedAggregationItem, cW as NestedAggregationItemKindOneOf, d0 as NestedAggregationResults, d1 as NestedAggregationResultsResultOneOf, ag as NestedAggregationType, eU as NestedAggregationTypeWithLiterals, d9 as NestedResultValue, da as NestedResultValueResultOneOf, df as NestedResults, d5 as NestedValueAggregationResult, aK as Node, aL as NodeDataOneOf, aM as NodeStyle, N as NodeType, e9 as NodeTypeWithLiterals, az as NoticePeriod, a5 as NullValue, eJ as NullValueWithLiterals, b$ as Oembed, ar as OnOptions, as as OnOptionsOptionsOneOf, av as OneTimeOptions, cn as OnlineReservations, aC as OnlineReservationsBusinessSchedule, bt as Option, bB as OptionDesign, bw as OptionLayout, c9 as OrderedListData, O as Orientation, ek as OrientationWithLiterals, b3 as PDFSettings, bq as ParagraphData, ay as PartySize, cl as PaymentPolicy, cm as PaymentPolicyOptionsOneOf, aa as PaymentPolicyType, eO as PaymentPolicyTypeWithLiterals, cj as PerGuestOptions, bs as Permissions, Z as Placement, ak as PlacementType, eY as PlacementTypeWithLiterals, eB as PlacementWithLiterals, bZ as PlaybackOptions, aQ as PluginContainerData, P as PluginContainerDataAlignment, eb as PluginContainerDataAlignmentWithLiterals, aR as PluginContainerDataWidth, aS as PluginContainerDataWidthDataOneOf, bC as Poll, br as PollData, bD as PollDataLayout, bA as PollDesign, bv as PollLayout, H as PollLayoutDirection, eu as PollLayoutDirectionWithLiterals, F as PollLayoutType, et as PollLayoutTypeWithLiterals, Q as Position, ey as PositionWithLiterals, bX as PricingData, aD as PrivacyPolicy, aE as PrivacyPolicyValueOneOf, dx as Properties, dM as PropertiesChange, cC as QueryExperiencesRequest, cG as QueryExperiencesResponse, cS as RangeAggregation, c$ as RangeAggregationResult, cO as RangeBucket, d7 as RangeResult, d3 as RangeResults, R as Recurrence, e8 as RecurrenceWithLiterals, aY as Rel, co as ReservationForm, Y as Resizing, eA as ResizingWithLiterals, am as ResolutionMethod, e_ as ResolutionMethodWithLiterals, a9 as ResponsivenessBehaviour, eN as ResponsivenessBehaviourWithLiterals, dT as RestoreInfo, db as Results, bV as RibbonStyles, aJ as RichContent, cT as ScalarAggregation, d8 as ScalarResult, af as ScalarType, eT as ScalarTypeWithLiterals, a6 as Scaling, eK as ScalingWithLiterals, cY as SearchDetails, aj as SearchDetailsMode, eX as SearchDetailsModeWithLiterals, cJ as SearchExperiencesRequest, bu as Settings, dO as SiteCloned, dN as SiteCreated, dw as SitePropertiesEvent, dv as SitePropertiesNotification, ad as SortDirection, eR as SortDirectionWithLiterals, ab as SortOrder, eP as SortOrderWithLiterals, ac as SortType, eQ as SortTypeWithLiterals, cE as Sorting, w as Source, eo as SourceWithLiterals, dF as SpecialHourPeriod, aq as SpecificTablesOptions, aT as Spoiler, bN as SpoilerData, at as StartDaysAndTimes, n as StartDaysAndTimesDayOfWeek, e7 as StartDaysAndTimesDayOfWeekWithLiterals, aV as Styles, bk as StylesBorder, x as StylesPosition, ep as StylesPositionWithLiterals, dH as SupportedLanguage, ao as Table, k as TableAssignmentType, e3 as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, e2 as TableAvailabilityTypeWithLiterals, c3 as TableCellData, ap as TableCombination, c1 as TableData, cp as TableManagement, l as TableManagementMode, e4 as TableManagementModeWithLiterals, cq as TableManagementOptionsOneOf, cu as TagList, ct as Tags, cv as TagsModified, p as Target, ed as TargetWithLiterals, aF as TermsAndConditions, aG as TermsAndConditionsValueOneOf, q as TextAlignment, ee as TextAlignmentWithLiterals, bF as TextData, ci as TextNodeStyle, a_ as TextStyle, bd as Thumbnails, v as ThumbnailsAlignment, em as ThumbnailsAlignmentWithLiterals, dE as TimePeriod, dJ as Translation, _ as Type, eC as TypeWithLiterals, m as Unit, e5 as UnitWithLiterals, cA as UpdateExperienceRequest, cB as UpdateExperienceResponse, cQ as ValueAggregation, cR as ValueAggregationOptionsOneOf, c_ as ValueAggregationResult, d6 as ValueResult, d2 as ValueResults, a4 as VerticalAlignment, a8 as VerticalAlignmentAlignment, eM as VerticalAlignmentAlignmentWithLiterals, eI as VerticalAlignmentWithLiterals, b7 as Video, bY as VideoData, V as ViewMode, ei as ViewModeWithLiterals, z as ViewRole, er as ViewRoleWithLiterals, A as VoteRole, es as VoteRoleWithLiterals, an as WebhookIdentityType, e$ as WebhookIdentityTypeWithLiterals, au as WeeklyOptions, r as Width, W as WidthType, ea as WidthTypeWithLiterals, eg as WidthWithLiterals } from './table-reservations-v1-experience-experiences.universal-DmhnK8go.js';
2
+ import { E as Experience, U as UpdateExperience, a as ExperienceSearch, S as SearchExperiencesResponse, B as BulkUpdateExperienceTagsOptions, b as BulkUpdateExperienceTagsResponse, c as BulkUpdateExperienceTagsApplicationErrors, d as BulkUpdateExperienceTagsByFilterOptions, e as BulkUpdateExperienceTagsByFilterResponse, f as BulkUpdateExperienceTagsByFilterApplicationErrors, g as ExperienceCreatedEnvelope, h as ExperienceTagsModifiedEnvelope, i as ExperienceUpdatedEnvelope, j as ExperiencesQueryBuilder, C as CursorQuery, t as typedQueryExperiences } from './table-reservations-v1-experience-experiences.universal-CH98Tq2F.js';
3
+ export { e1 as ActionEvent, dH as Address, dI as AddressHint, cT as Aggregation, d4 as AggregationData, cU as AggregationKindOneOf, dn as AggregationResults, dp as AggregationResultsResultOneOf, db as AggregationResultsScalarResult, ai as AggregationType, f1 as AggregationTypeWithLiterals, $ as Alignment, eK as AlignmentWithLiterals, bI as AnchorData, cx as App, bP as AppEmbedData, bQ as AppEmbedDataAppDataOneOf, a1 as AppType, eM as AppTypeWithLiterals, ds as ApplicationError, aA as Approval, X as AspectRatio, eG as AspectRatioWithLiterals, c8 as AudioData, by as Background, bz as BackgroundBackgroundOneOf, ce as BackgroundImage, I as BackgroundType, eC as BackgroundTypeWithLiterals, e5 as BaseEventMetadata, cb as BlockquoteData, bR as BookingData, aO as Border, c5 as BorderColors, c6 as BorderWidths, du as BulkActionMetadata, dw as BulkArchiveExperiencesRequest, dx as BulkArchiveExperiencesResponse, dy as BulkArchiveExperiencesResult, dz as BulkUnarchiveExperiencesRequest, dA as BulkUnarchiveExperiencesResponse, dB as BulkUnarchiveExperiencesResult, dv as BulkUpdateExperienceTagsByFilterRequest, dq as BulkUpdateExperienceTagsRequest, dt as BulkUpdateExperienceTagsResult, ca as BulletedListData, dK as BusinessSchedule, aN as ButtonData, o as ButtonDataType, ej as ButtonDataTypeWithLiterals, bT as ButtonStyles, cc as CaptionData, bW as CardStyles, dF as Categories, c4 as CellStyle, dR as ChangeContext, dS as ChangeContextPayloadOneOf, aZ as CodeBlockData, c0 as CollapsibleListData, bJ as ColorData, aP as Colors, f7 as CommonSearchWithEntityContext, cr as Configuration, dP as ConsentPolicy, cD as CreateExperienceRequest, cE as CreateExperienceResponse, u as Crop, es as CropWithLiterals, cM as CursorPaging, cO as CursorPagingMetadata, cK as CursorQueryPagingMethodOneOf, cR as CursorSearch, cS as CursorSearchPagingMethodOneOf, cP as Cursors, aH as CustomFieldDefinition, cB as CustomTag, c$ as DateHistogramAggregation, dj as DateHistogramResult, dl as DateHistogramResults, al as DayOfWeek, f4 as DayOfWeekWithLiterals, bG as Decoration, bH as DecorationDataOneOf, J as DecorationType, eD as DecorationTypeWithLiterals, bE as Design, c2 as Dimensions, a3 as Direction, eO as DirectionWithLiterals, ck as DisplayInfo, a$ as DividerData, D as DividerDataAlignment, eo as DividerDataAlignmentWithLiterals, ch as DocumentStyle, dX as DomainEvent, dY as DomainEventBodyOneOf, aI as EmailMarketingCheckbox, b_ as EmbedData, dW as Empty, dZ as EntityCreatedEvent, e0 as EntityDeletedEvent, d$ as EntityUpdatedEvent, aw as Entry, ax as EntryRecurrenceOptionsOneOf, bS as EventData, e6 as EventMetadata, e8 as ExperienceSearchSpec, e7 as ExperiencesQueryResult, cs as ExtendedFields, cA as File, b0 as FileData, b1 as FileSource, b2 as FileSourceDataOneOf, bO as FontFamilyData, bM as FontSizeData, K as FontType, eE as FontTypeWithLiterals, bf as GIF, be as GIFData, G as GIFType, eu as GIFTypeWithLiterals, b4 as GalleryData, ba as GalleryOptions, bb as GalleryOptionsLayout, dJ as GeoCoordinates, cF as GetExperienceRequest, cG as GetExperienceResponse, bx as Gradient, dk as GroupByValueResults, bh as HTMLData, bi as HTMLDataDataOneOf, bg as HeadingData, aU as Height, e3 as IdentificationData, e4 as IdentificationDataIdOneOf, b6 as Image, bj as ImageData, bl as ImageDataStyles, a7 as ImagePosition, eS as ImagePositionWithLiterals, bU as ImageStyles, cW as IncludeMissingValuesOptions, a2 as InitialExpandedItems, eN as InitialExpandedItemsWithLiterals, ah as Interval, f0 as IntervalWithLiterals, cv as InvalidateCache, cw as InvalidateCacheGetByOneOf, b8 as Item, b9 as ItemDataOneOf, dr as ItemMetadata, bc as ItemStyle, a0 as Layout, cf as LayoutCellData, cd as LayoutData, s as LayoutType, eq as LayoutTypeWithLiterals, eL as LayoutWithLiterals, L as LineStyle, em as LineStyleWithLiterals, aW as Link, bK as LinkData, aX as LinkDataOneOf, bm as LinkPreviewData, bn as LinkPreviewDataStyles, c7 as ListValue, dG as Locale, bo as MapData, bp as MapSettings, y as MapType, ex as MapTypeWithLiterals, aB as MaxGuests, b5 as Media, bL as MentionData, e2 as MessageEnvelope, cg as Metadata, ae as MissingValues, eZ as MissingValuesWithLiterals, M as Mode, ed as ModeWithLiterals, dN as Multilingual, d2 as NestedAggregation, d0 as NestedAggregationItem, d1 as NestedAggregationItemKindOneOf, d7 as NestedAggregationResults, d8 as NestedAggregationResultsResultOneOf, ag as NestedAggregationType, e$ as NestedAggregationTypeWithLiterals, dg as NestedResultValue, dh as NestedResultValueResultOneOf, dm as NestedResults, dc as NestedValueAggregationResult, aK as Node, aL as NodeDataOneOf, aM as NodeStyle, N as NodeType, eg as NodeTypeWithLiterals, az as NoticePeriod, a5 as NullValue, eQ as NullValueWithLiterals, b$ as Oembed, ar as OnOptions, as as OnOptionsOptionsOneOf, av as OneTimeOptions, cn as OnlineReservations, aC as OnlineReservationsBusinessSchedule, bt as Option, bB as OptionDesign, bw as OptionLayout, c9 as OrderedListData, O as Orientation, er as OrientationWithLiterals, b3 as PDFSettings, cy as Page, bq as ParagraphData, ay as PartySize, cl as PaymentPolicy, cm as PaymentPolicyOptionsOneOf, aa as PaymentPolicyType, eV as PaymentPolicyTypeWithLiterals, cj as PerGuestOptions, bs as Permissions, Z as Placement, ak as PlacementType, f3 as PlacementTypeWithLiterals, eI as PlacementWithLiterals, bZ as PlaybackOptions, aQ as PluginContainerData, P as PluginContainerDataAlignment, ei as PluginContainerDataAlignmentWithLiterals, aR as PluginContainerDataWidth, aS as PluginContainerDataWidthDataOneOf, bC as Poll, br as PollData, bD as PollDataLayout, bA as PollDesign, bv as PollLayout, H as PollLayoutDirection, eB as PollLayoutDirectionWithLiterals, F as PollLayoutType, eA as PollLayoutTypeWithLiterals, Q as Position, eF as PositionWithLiterals, bX as PricingData, aD as PrivacyPolicy, aE as PrivacyPolicyValueOneOf, dE as Properties, dT as PropertiesChange, cJ as QueryExperiencesRequest, cN as QueryExperiencesResponse, cZ as RangeAggregation, d6 as RangeAggregationResult, cV as RangeBucket, de as RangeResult, da as RangeResults, R as Recurrence, ef as RecurrenceWithLiterals, aY as Rel, co as ReservationForm, Y as Resizing, eH as ResizingWithLiterals, am as ResolutionMethod, f5 as ResolutionMethodWithLiterals, a9 as ResponsivenessBehaviour, eU as ResponsivenessBehaviourWithLiterals, d_ as RestoreInfo, di as Results, bV as RibbonStyles, aJ as RichContent, c_ as ScalarAggregation, df as ScalarResult, af as ScalarType, e_ as ScalarTypeWithLiterals, a6 as Scaling, eR as ScalingWithLiterals, d3 as SearchDetails, aj as SearchDetailsMode, f2 as SearchDetailsModeWithLiterals, cQ as SearchExperiencesRequest, bu as Settings, dV as SiteCloned, dU as SiteCreated, dD as SitePropertiesEvent, dC as SitePropertiesNotification, ad as SortDirection, eY as SortDirectionWithLiterals, ab as SortOrder, eW as SortOrderWithLiterals, ac as SortType, eX as SortTypeWithLiterals, cL as Sorting, w as Source, ev as SourceWithLiterals, dM as SpecialHourPeriod, aq as SpecificTablesOptions, aT as Spoiler, bN as SpoilerData, at as StartDaysAndTimes, n as StartDaysAndTimesDayOfWeek, ee as StartDaysAndTimesDayOfWeekWithLiterals, aV as Styles, bk as StylesBorder, x as StylesPosition, ew as StylesPositionWithLiterals, dO as SupportedLanguage, ao as Table, k as TableAssignmentType, ea as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, e9 as TableAvailabilityTypeWithLiterals, c3 as TableCellData, ap as TableCombination, c1 as TableData, cp as TableManagement, l as TableManagementMode, eb as TableManagementModeWithLiterals, cq as TableManagementOptionsOneOf, cu as TagList, ct as Tags, cC as TagsModified, p as Target, ek as TargetWithLiterals, aF as TermsAndConditions, aG as TermsAndConditionsValueOneOf, q as TextAlignment, el as TextAlignmentWithLiterals, bF as TextData, ci as TextNodeStyle, a_ as TextStyle, bd as Thumbnails, v as ThumbnailsAlignment, et as ThumbnailsAlignmentWithLiterals, dL as TimePeriod, dQ as Translation, _ as Type, eJ as TypeWithLiterals, cz as URI, m as Unit, ec as UnitWithLiterals, cH as UpdateExperienceRequest, cI as UpdateExperienceResponse, cX as ValueAggregation, cY as ValueAggregationOptionsOneOf, d5 as ValueAggregationResult, dd as ValueResult, d9 as ValueResults, a4 as VerticalAlignment, a8 as VerticalAlignmentAlignment, eT as VerticalAlignmentAlignmentWithLiterals, eP as VerticalAlignmentWithLiterals, b7 as Video, bY as VideoData, V as ViewMode, ep as ViewModeWithLiterals, z as ViewRole, ey as ViewRoleWithLiterals, A as VoteRole, ez as VoteRoleWithLiterals, an as WebhookIdentityType, f6 as WebhookIdentityTypeWithLiterals, au as WeeklyOptions, r as Width, W as WidthType, eh as WidthTypeWithLiterals, en as WidthWithLiterals } from './table-reservations-v1-experience-experiences.universal-CH98Tq2F.js';
4
4
 
5
5
  declare function createExperience$1(httpClient: HttpClient): CreateExperienceSignature;
6
6
  interface CreateExperienceSignature {
@@ -1367,13 +1367,10 @@ async function createExperience2(experience) {
1367
1367
  "experience.configuration.displayInfo.richContent"
1368
1368
  ]),
1369
1369
  [
1370
- {
1371
- transformFn: import_image.transformSDKImageToRESTImage,
1372
- paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1373
- },
1374
1370
  {
1375
1371
  transformFn: import_page_url_v2.transformSDKPageURLV2ToRESTPageURLV2,
1376
1372
  paths: [
1373
+ { path: "experience.experiencePageUrl" },
1377
1374
  {
1378
1375
  path: "experience.configuration.reservationForm.privacyPolicy.url"
1379
1376
  },
@@ -1381,6 +1378,10 @@ async function createExperience2(experience) {
1381
1378
  path: "experience.configuration.reservationForm.termsAndConditions.url"
1382
1379
  }
1383
1380
  ]
1381
+ },
1382
+ {
1383
+ transformFn: import_image.transformSDKImageToRESTImage,
1384
+ paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1384
1385
  }
1385
1386
  ]
1386
1387
  );
@@ -1391,13 +1392,10 @@ async function createExperience2(experience) {
1391
1392
  sideEffects?.onSuccess?.(result);
1392
1393
  return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(
1393
1394
  (0, import_transform_paths2.transformPaths)(result.data, [
1394
- {
1395
- transformFn: import_image2.transformRESTImageToSDKImage,
1396
- paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1397
- },
1398
1395
  {
1399
1396
  transformFn: import_page_url_v22.transformRESTPageURLV2ToSDKPageURLV2,
1400
1397
  paths: [
1398
+ { path: "experience.experiencePageUrl" },
1401
1399
  {
1402
1400
  path: "experience.configuration.reservationForm.privacyPolicy.url"
1403
1401
  },
@@ -1405,6 +1403,10 @@ async function createExperience2(experience) {
1405
1403
  path: "experience.configuration.reservationForm.termsAndConditions.url"
1406
1404
  }
1407
1405
  ]
1406
+ },
1407
+ {
1408
+ transformFn: import_image2.transformRESTImageToSDKImage,
1409
+ paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1408
1410
  }
1409
1411
  ]),
1410
1412
  ["experience.configuration.displayInfo.richContent"]
@@ -1436,13 +1438,10 @@ async function getExperience2(experienceId) {
1436
1438
  sideEffects?.onSuccess?.(result);
1437
1439
  return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(
1438
1440
  (0, import_transform_paths2.transformPaths)(result.data, [
1439
- {
1440
- transformFn: import_image2.transformRESTImageToSDKImage,
1441
- paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1442
- },
1443
1441
  {
1444
1442
  transformFn: import_page_url_v22.transformRESTPageURLV2ToSDKPageURLV2,
1445
1443
  paths: [
1444
+ { path: "experience.experiencePageUrl" },
1446
1445
  {
1447
1446
  path: "experience.configuration.reservationForm.privacyPolicy.url"
1448
1447
  },
@@ -1450,6 +1449,10 @@ async function getExperience2(experienceId) {
1450
1449
  path: "experience.configuration.reservationForm.termsAndConditions.url"
1451
1450
  }
1452
1451
  ]
1452
+ },
1453
+ {
1454
+ transformFn: import_image2.transformRESTImageToSDKImage,
1455
+ paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1453
1456
  }
1454
1457
  ]),
1455
1458
  ["experience.configuration.displayInfo.richContent"]
@@ -1476,13 +1479,10 @@ async function updateExperience2(_id, experience) {
1476
1479
  ["experience.configuration.displayInfo.richContent"]
1477
1480
  ),
1478
1481
  [
1479
- {
1480
- transformFn: import_image.transformSDKImageToRESTImage,
1481
- paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1482
- },
1483
1482
  {
1484
1483
  transformFn: import_page_url_v2.transformSDKPageURLV2ToRESTPageURLV2,
1485
1484
  paths: [
1485
+ { path: "experience.experiencePageUrl" },
1486
1486
  {
1487
1487
  path: "experience.configuration.reservationForm.privacyPolicy.url"
1488
1488
  },
@@ -1490,6 +1490,10 @@ async function updateExperience2(_id, experience) {
1490
1490
  path: "experience.configuration.reservationForm.termsAndConditions.url"
1491
1491
  }
1492
1492
  ]
1493
+ },
1494
+ {
1495
+ transformFn: import_image.transformSDKImageToRESTImage,
1496
+ paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1493
1497
  }
1494
1498
  ]
1495
1499
  );
@@ -1500,13 +1504,10 @@ async function updateExperience2(_id, experience) {
1500
1504
  sideEffects?.onSuccess?.(result);
1501
1505
  return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(
1502
1506
  (0, import_transform_paths2.transformPaths)(result.data, [
1503
- {
1504
- transformFn: import_image2.transformRESTImageToSDKImage,
1505
- paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1506
- },
1507
1507
  {
1508
1508
  transformFn: import_page_url_v22.transformRESTPageURLV2ToSDKPageURLV2,
1509
1509
  paths: [
1510
+ { path: "experience.experiencePageUrl" },
1510
1511
  {
1511
1512
  path: "experience.configuration.reservationForm.privacyPolicy.url"
1512
1513
  },
@@ -1514,6 +1515,10 @@ async function updateExperience2(_id, experience) {
1514
1515
  path: "experience.configuration.reservationForm.termsAndConditions.url"
1515
1516
  }
1516
1517
  ]
1518
+ },
1519
+ {
1520
+ transformFn: import_image2.transformRESTImageToSDKImage,
1521
+ paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1517
1522
  }
1518
1523
  ]),
1519
1524
  ["experience.configuration.displayInfo.richContent"]
@@ -1557,15 +1562,10 @@ function queryExperiences2() {
1557
1562
  responseTransformer: ({ data }) => {
1558
1563
  const transformedData = (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(
1559
1564
  (0, import_transform_paths2.transformPaths)(data, [
1560
- {
1561
- transformFn: import_image2.transformRESTImageToSDKImage,
1562
- paths: [
1563
- { path: "experiences.configuration.displayInfo.coverImage" }
1564
- ]
1565
- },
1566
1565
  {
1567
1566
  transformFn: import_page_url_v22.transformRESTPageURLV2ToSDKPageURLV2,
1568
1567
  paths: [
1568
+ { path: "experiences.experiencePageUrl" },
1569
1569
  {
1570
1570
  path: "experiences.configuration.reservationForm.privacyPolicy.url"
1571
1571
  },
@@ -1573,6 +1573,12 @@ function queryExperiences2() {
1573
1573
  path: "experiences.configuration.reservationForm.termsAndConditions.url"
1574
1574
  }
1575
1575
  ]
1576
+ },
1577
+ {
1578
+ transformFn: import_image2.transformRESTImageToSDKImage,
1579
+ paths: [
1580
+ { path: "experiences.configuration.displayInfo.coverImage" }
1581
+ ]
1576
1582
  }
1577
1583
  ]),
1578
1584
  ["experiences.configuration.displayInfo.richContent"]
@@ -1604,13 +1610,10 @@ async function typedQueryExperiences(query) {
1604
1610
  sideEffects?.onSuccess?.(result);
1605
1611
  return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(
1606
1612
  (0, import_transform_paths2.transformPaths)(result.data, [
1607
- {
1608
- transformFn: import_image2.transformRESTImageToSDKImage,
1609
- paths: [{ path: "experiences.configuration.displayInfo.coverImage" }]
1610
- },
1611
1613
  {
1612
1614
  transformFn: import_page_url_v22.transformRESTPageURLV2ToSDKPageURLV2,
1613
1615
  paths: [
1616
+ { path: "experiences.experiencePageUrl" },
1614
1617
  {
1615
1618
  path: "experiences.configuration.reservationForm.privacyPolicy.url"
1616
1619
  },
@@ -1618,6 +1621,10 @@ async function typedQueryExperiences(query) {
1618
1621
  path: "experiences.configuration.reservationForm.termsAndConditions.url"
1619
1622
  }
1620
1623
  ]
1624
+ },
1625
+ {
1626
+ transformFn: import_image2.transformRESTImageToSDKImage,
1627
+ paths: [{ path: "experiences.configuration.displayInfo.coverImage" }]
1621
1628
  }
1622
1629
  ]),
1623
1630
  ["experiences.configuration.displayInfo.richContent"]
@@ -1646,13 +1653,10 @@ async function searchExperiences2(search) {
1646
1653
  sideEffects?.onSuccess?.(result);
1647
1654
  return (0, import_rename_all_nested_keys.renameKeysFromRESTResponseToSDKResponse)(
1648
1655
  (0, import_transform_paths2.transformPaths)(result.data, [
1649
- {
1650
- transformFn: import_image2.transformRESTImageToSDKImage,
1651
- paths: [{ path: "experiences.configuration.displayInfo.coverImage" }]
1652
- },
1653
1656
  {
1654
1657
  transformFn: import_page_url_v22.transformRESTPageURLV2ToSDKPageURLV2,
1655
1658
  paths: [
1659
+ { path: "experiences.experiencePageUrl" },
1656
1660
  {
1657
1661
  path: "experiences.configuration.reservationForm.privacyPolicy.url"
1658
1662
  },
@@ -1660,6 +1664,10 @@ async function searchExperiences2(search) {
1660
1664
  path: "experiences.configuration.reservationForm.termsAndConditions.url"
1661
1665
  }
1662
1666
  ]
1667
+ },
1668
+ {
1669
+ transformFn: import_image2.transformRESTImageToSDKImage,
1670
+ paths: [{ path: "experiences.configuration.displayInfo.coverImage" }]
1663
1671
  }
1664
1672
  ]),
1665
1673
  ["experiences.configuration.displayInfo.richContent"]
@@ -1829,6 +1837,16 @@ var onExperienceCreated = (0, import_sdk_types.EventDefinition)(
1829
1837
  { path: "metadata.eventTime" }
1830
1838
  ]
1831
1839
  },
1840
+ {
1841
+ transformFn: import_page_url_v23.transformRESTPageURLV2ToSDKPageURLV2,
1842
+ paths: [
1843
+ { path: "entity.experiencePageUrl" },
1844
+ { path: "entity.configuration.reservationForm.privacyPolicy.url" },
1845
+ {
1846
+ path: "entity.configuration.reservationForm.termsAndConditions.url"
1847
+ }
1848
+ ]
1849
+ },
1832
1850
  {
1833
1851
  transformFn: import_image3.transformRESTImageToSDKImage,
1834
1852
  paths: [{ path: "entity.configuration.displayInfo.coverImage" }]
@@ -1888,15 +1906,6 @@ var onExperienceCreated = (0, import_sdk_types.EventDefinition)(
1888
1906
  path: "entity.configuration.displayInfo.richContent.nodes.layoutData.backdropImage.media.duration"
1889
1907
  }
1890
1908
  ]
1891
- },
1892
- {
1893
- transformFn: import_page_url_v23.transformRESTPageURLV2ToSDKPageURLV2,
1894
- paths: [
1895
- { path: "entity.configuration.reservationForm.privacyPolicy.url" },
1896
- {
1897
- path: "entity.configuration.reservationForm.termsAndConditions.url"
1898
- }
1899
- ]
1900
1909
  }
1901
1910
  ])
1902
1911
  )
@@ -1920,6 +1929,18 @@ var onExperienceTagsModified = (0, import_sdk_types.EventDefinition)(
1920
1929
  { path: "metadata.eventTime" }
1921
1930
  ]
1922
1931
  },
1932
+ {
1933
+ transformFn: import_page_url_v23.transformRESTPageURLV2ToSDKPageURLV2,
1934
+ paths: [
1935
+ { path: "data.experience.experiencePageUrl" },
1936
+ {
1937
+ path: "data.experience.configuration.reservationForm.privacyPolicy.url"
1938
+ },
1939
+ {
1940
+ path: "data.experience.configuration.reservationForm.termsAndConditions.url"
1941
+ }
1942
+ ]
1943
+ },
1923
1944
  {
1924
1945
  transformFn: import_image3.transformRESTImageToSDKImage,
1925
1946
  paths: [
@@ -1981,17 +2002,6 @@ var onExperienceTagsModified = (0, import_sdk_types.EventDefinition)(
1981
2002
  path: "data.experience.configuration.displayInfo.richContent.nodes.layoutData.backdropImage.media.duration"
1982
2003
  }
1983
2004
  ]
1984
- },
1985
- {
1986
- transformFn: import_page_url_v23.transformRESTPageURLV2ToSDKPageURLV2,
1987
- paths: [
1988
- {
1989
- path: "data.experience.configuration.reservationForm.privacyPolicy.url"
1990
- },
1991
- {
1992
- path: "data.experience.configuration.reservationForm.termsAndConditions.url"
1993
- }
1994
- ]
1995
2005
  }
1996
2006
  ])
1997
2007
  )
@@ -2015,6 +2025,16 @@ var onExperienceUpdated = (0, import_sdk_types.EventDefinition)(
2015
2025
  { path: "metadata.eventTime" }
2016
2026
  ]
2017
2027
  },
2028
+ {
2029
+ transformFn: import_page_url_v23.transformRESTPageURLV2ToSDKPageURLV2,
2030
+ paths: [
2031
+ { path: "entity.experiencePageUrl" },
2032
+ { path: "entity.configuration.reservationForm.privacyPolicy.url" },
2033
+ {
2034
+ path: "entity.configuration.reservationForm.termsAndConditions.url"
2035
+ }
2036
+ ]
2037
+ },
2018
2038
  {
2019
2039
  transformFn: import_image3.transformRESTImageToSDKImage,
2020
2040
  paths: [{ path: "entity.configuration.displayInfo.coverImage" }]
@@ -2074,15 +2094,6 @@ var onExperienceUpdated = (0, import_sdk_types.EventDefinition)(
2074
2094
  path: "entity.configuration.displayInfo.richContent.nodes.layoutData.backdropImage.media.duration"
2075
2095
  }
2076
2096
  ]
2077
- },
2078
- {
2079
- transformFn: import_page_url_v23.transformRESTPageURLV2ToSDKPageURLV2,
2080
- paths: [
2081
- { path: "entity.configuration.reservationForm.privacyPolicy.url" },
2082
- {
2083
- path: "entity.configuration.reservationForm.termsAndConditions.url"
2084
- }
2085
- ]
2086
2097
  }
2087
2098
  ])
2088
2099
  )