@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.mjs';
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.mjs';
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.mjs';
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.mjs';
4
4
 
5
5
  declare function createExperience$1(httpClient: HttpClient): CreateExperienceSignature;
6
6
  interface CreateExperienceSignature {
@@ -1273,13 +1273,10 @@ async function createExperience2(experience) {
1273
1273
  "experience.configuration.displayInfo.richContent"
1274
1274
  ]),
1275
1275
  [
1276
- {
1277
- transformFn: transformSDKImageToRESTImage,
1278
- paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1279
- },
1280
1276
  {
1281
1277
  transformFn: transformSDKPageURLV2ToRESTPageURLV2,
1282
1278
  paths: [
1279
+ { path: "experience.experiencePageUrl" },
1283
1280
  {
1284
1281
  path: "experience.configuration.reservationForm.privacyPolicy.url"
1285
1282
  },
@@ -1287,6 +1284,10 @@ async function createExperience2(experience) {
1287
1284
  path: "experience.configuration.reservationForm.termsAndConditions.url"
1288
1285
  }
1289
1286
  ]
1287
+ },
1288
+ {
1289
+ transformFn: transformSDKImageToRESTImage,
1290
+ paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1290
1291
  }
1291
1292
  ]
1292
1293
  );
@@ -1297,13 +1298,10 @@ async function createExperience2(experience) {
1297
1298
  sideEffects?.onSuccess?.(result);
1298
1299
  return renameKeysFromRESTResponseToSDKResponse(
1299
1300
  transformPaths2(result.data, [
1300
- {
1301
- transformFn: transformRESTImageToSDKImage,
1302
- paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1303
- },
1304
1301
  {
1305
1302
  transformFn: transformRESTPageURLV2ToSDKPageURLV2,
1306
1303
  paths: [
1304
+ { path: "experience.experiencePageUrl" },
1307
1305
  {
1308
1306
  path: "experience.configuration.reservationForm.privacyPolicy.url"
1309
1307
  },
@@ -1311,6 +1309,10 @@ async function createExperience2(experience) {
1311
1309
  path: "experience.configuration.reservationForm.termsAndConditions.url"
1312
1310
  }
1313
1311
  ]
1312
+ },
1313
+ {
1314
+ transformFn: transformRESTImageToSDKImage,
1315
+ paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1314
1316
  }
1315
1317
  ]),
1316
1318
  ["experience.configuration.displayInfo.richContent"]
@@ -1342,13 +1344,10 @@ async function getExperience2(experienceId) {
1342
1344
  sideEffects?.onSuccess?.(result);
1343
1345
  return renameKeysFromRESTResponseToSDKResponse(
1344
1346
  transformPaths2(result.data, [
1345
- {
1346
- transformFn: transformRESTImageToSDKImage,
1347
- paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1348
- },
1349
1347
  {
1350
1348
  transformFn: transformRESTPageURLV2ToSDKPageURLV2,
1351
1349
  paths: [
1350
+ { path: "experience.experiencePageUrl" },
1352
1351
  {
1353
1352
  path: "experience.configuration.reservationForm.privacyPolicy.url"
1354
1353
  },
@@ -1356,6 +1355,10 @@ async function getExperience2(experienceId) {
1356
1355
  path: "experience.configuration.reservationForm.termsAndConditions.url"
1357
1356
  }
1358
1357
  ]
1358
+ },
1359
+ {
1360
+ transformFn: transformRESTImageToSDKImage,
1361
+ paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1359
1362
  }
1360
1363
  ]),
1361
1364
  ["experience.configuration.displayInfo.richContent"]
@@ -1382,13 +1385,10 @@ async function updateExperience2(_id, experience) {
1382
1385
  ["experience.configuration.displayInfo.richContent"]
1383
1386
  ),
1384
1387
  [
1385
- {
1386
- transformFn: transformSDKImageToRESTImage,
1387
- paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1388
- },
1389
1388
  {
1390
1389
  transformFn: transformSDKPageURLV2ToRESTPageURLV2,
1391
1390
  paths: [
1391
+ { path: "experience.experiencePageUrl" },
1392
1392
  {
1393
1393
  path: "experience.configuration.reservationForm.privacyPolicy.url"
1394
1394
  },
@@ -1396,6 +1396,10 @@ async function updateExperience2(_id, experience) {
1396
1396
  path: "experience.configuration.reservationForm.termsAndConditions.url"
1397
1397
  }
1398
1398
  ]
1399
+ },
1400
+ {
1401
+ transformFn: transformSDKImageToRESTImage,
1402
+ paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1399
1403
  }
1400
1404
  ]
1401
1405
  );
@@ -1406,13 +1410,10 @@ async function updateExperience2(_id, experience) {
1406
1410
  sideEffects?.onSuccess?.(result);
1407
1411
  return renameKeysFromRESTResponseToSDKResponse(
1408
1412
  transformPaths2(result.data, [
1409
- {
1410
- transformFn: transformRESTImageToSDKImage,
1411
- paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1412
- },
1413
1413
  {
1414
1414
  transformFn: transformRESTPageURLV2ToSDKPageURLV2,
1415
1415
  paths: [
1416
+ { path: "experience.experiencePageUrl" },
1416
1417
  {
1417
1418
  path: "experience.configuration.reservationForm.privacyPolicy.url"
1418
1419
  },
@@ -1420,6 +1421,10 @@ async function updateExperience2(_id, experience) {
1420
1421
  path: "experience.configuration.reservationForm.termsAndConditions.url"
1421
1422
  }
1422
1423
  ]
1424
+ },
1425
+ {
1426
+ transformFn: transformRESTImageToSDKImage,
1427
+ paths: [{ path: "experience.configuration.displayInfo.coverImage" }]
1423
1428
  }
1424
1429
  ]),
1425
1430
  ["experience.configuration.displayInfo.richContent"]
@@ -1463,15 +1468,10 @@ function queryExperiences2() {
1463
1468
  responseTransformer: ({ data }) => {
1464
1469
  const transformedData = renameKeysFromRESTResponseToSDKResponse(
1465
1470
  transformPaths2(data, [
1466
- {
1467
- transformFn: transformRESTImageToSDKImage,
1468
- paths: [
1469
- { path: "experiences.configuration.displayInfo.coverImage" }
1470
- ]
1471
- },
1472
1471
  {
1473
1472
  transformFn: transformRESTPageURLV2ToSDKPageURLV2,
1474
1473
  paths: [
1474
+ { path: "experiences.experiencePageUrl" },
1475
1475
  {
1476
1476
  path: "experiences.configuration.reservationForm.privacyPolicy.url"
1477
1477
  },
@@ -1479,6 +1479,12 @@ function queryExperiences2() {
1479
1479
  path: "experiences.configuration.reservationForm.termsAndConditions.url"
1480
1480
  }
1481
1481
  ]
1482
+ },
1483
+ {
1484
+ transformFn: transformRESTImageToSDKImage,
1485
+ paths: [
1486
+ { path: "experiences.configuration.displayInfo.coverImage" }
1487
+ ]
1482
1488
  }
1483
1489
  ]),
1484
1490
  ["experiences.configuration.displayInfo.richContent"]
@@ -1510,13 +1516,10 @@ async function typedQueryExperiences(query) {
1510
1516
  sideEffects?.onSuccess?.(result);
1511
1517
  return renameKeysFromRESTResponseToSDKResponse(
1512
1518
  transformPaths2(result.data, [
1513
- {
1514
- transformFn: transformRESTImageToSDKImage,
1515
- paths: [{ path: "experiences.configuration.displayInfo.coverImage" }]
1516
- },
1517
1519
  {
1518
1520
  transformFn: transformRESTPageURLV2ToSDKPageURLV2,
1519
1521
  paths: [
1522
+ { path: "experiences.experiencePageUrl" },
1520
1523
  {
1521
1524
  path: "experiences.configuration.reservationForm.privacyPolicy.url"
1522
1525
  },
@@ -1524,6 +1527,10 @@ async function typedQueryExperiences(query) {
1524
1527
  path: "experiences.configuration.reservationForm.termsAndConditions.url"
1525
1528
  }
1526
1529
  ]
1530
+ },
1531
+ {
1532
+ transformFn: transformRESTImageToSDKImage,
1533
+ paths: [{ path: "experiences.configuration.displayInfo.coverImage" }]
1527
1534
  }
1528
1535
  ]),
1529
1536
  ["experiences.configuration.displayInfo.richContent"]
@@ -1552,13 +1559,10 @@ async function searchExperiences2(search) {
1552
1559
  sideEffects?.onSuccess?.(result);
1553
1560
  return renameKeysFromRESTResponseToSDKResponse(
1554
1561
  transformPaths2(result.data, [
1555
- {
1556
- transformFn: transformRESTImageToSDKImage,
1557
- paths: [{ path: "experiences.configuration.displayInfo.coverImage" }]
1558
- },
1559
1562
  {
1560
1563
  transformFn: transformRESTPageURLV2ToSDKPageURLV2,
1561
1564
  paths: [
1565
+ { path: "experiences.experiencePageUrl" },
1562
1566
  {
1563
1567
  path: "experiences.configuration.reservationForm.privacyPolicy.url"
1564
1568
  },
@@ -1566,6 +1570,10 @@ async function searchExperiences2(search) {
1566
1570
  path: "experiences.configuration.reservationForm.termsAndConditions.url"
1567
1571
  }
1568
1572
  ]
1573
+ },
1574
+ {
1575
+ transformFn: transformRESTImageToSDKImage,
1576
+ paths: [{ path: "experiences.configuration.displayInfo.coverImage" }]
1569
1577
  }
1570
1578
  ]),
1571
1579
  ["experiences.configuration.displayInfo.richContent"]
@@ -1735,6 +1743,16 @@ var onExperienceCreated = EventDefinition(
1735
1743
  { path: "metadata.eventTime" }
1736
1744
  ]
1737
1745
  },
1746
+ {
1747
+ transformFn: transformRESTPageURLV2ToSDKPageURLV22,
1748
+ paths: [
1749
+ { path: "entity.experiencePageUrl" },
1750
+ { path: "entity.configuration.reservationForm.privacyPolicy.url" },
1751
+ {
1752
+ path: "entity.configuration.reservationForm.termsAndConditions.url"
1753
+ }
1754
+ ]
1755
+ },
1738
1756
  {
1739
1757
  transformFn: transformRESTImageToSDKImage2,
1740
1758
  paths: [{ path: "entity.configuration.displayInfo.coverImage" }]
@@ -1794,15 +1812,6 @@ var onExperienceCreated = EventDefinition(
1794
1812
  path: "entity.configuration.displayInfo.richContent.nodes.layoutData.backdropImage.media.duration"
1795
1813
  }
1796
1814
  ]
1797
- },
1798
- {
1799
- transformFn: transformRESTPageURLV2ToSDKPageURLV22,
1800
- paths: [
1801
- { path: "entity.configuration.reservationForm.privacyPolicy.url" },
1802
- {
1803
- path: "entity.configuration.reservationForm.termsAndConditions.url"
1804
- }
1805
- ]
1806
1815
  }
1807
1816
  ])
1808
1817
  )
@@ -1826,6 +1835,18 @@ var onExperienceTagsModified = EventDefinition(
1826
1835
  { path: "metadata.eventTime" }
1827
1836
  ]
1828
1837
  },
1838
+ {
1839
+ transformFn: transformRESTPageURLV2ToSDKPageURLV22,
1840
+ paths: [
1841
+ { path: "data.experience.experiencePageUrl" },
1842
+ {
1843
+ path: "data.experience.configuration.reservationForm.privacyPolicy.url"
1844
+ },
1845
+ {
1846
+ path: "data.experience.configuration.reservationForm.termsAndConditions.url"
1847
+ }
1848
+ ]
1849
+ },
1829
1850
  {
1830
1851
  transformFn: transformRESTImageToSDKImage2,
1831
1852
  paths: [
@@ -1887,17 +1908,6 @@ var onExperienceTagsModified = EventDefinition(
1887
1908
  path: "data.experience.configuration.displayInfo.richContent.nodes.layoutData.backdropImage.media.duration"
1888
1909
  }
1889
1910
  ]
1890
- },
1891
- {
1892
- transformFn: transformRESTPageURLV2ToSDKPageURLV22,
1893
- paths: [
1894
- {
1895
- path: "data.experience.configuration.reservationForm.privacyPolicy.url"
1896
- },
1897
- {
1898
- path: "data.experience.configuration.reservationForm.termsAndConditions.url"
1899
- }
1900
- ]
1901
1911
  }
1902
1912
  ])
1903
1913
  )
@@ -1921,6 +1931,16 @@ var onExperienceUpdated = EventDefinition(
1921
1931
  { path: "metadata.eventTime" }
1922
1932
  ]
1923
1933
  },
1934
+ {
1935
+ transformFn: transformRESTPageURLV2ToSDKPageURLV22,
1936
+ paths: [
1937
+ { path: "entity.experiencePageUrl" },
1938
+ { path: "entity.configuration.reservationForm.privacyPolicy.url" },
1939
+ {
1940
+ path: "entity.configuration.reservationForm.termsAndConditions.url"
1941
+ }
1942
+ ]
1943
+ },
1924
1944
  {
1925
1945
  transformFn: transformRESTImageToSDKImage2,
1926
1946
  paths: [{ path: "entity.configuration.displayInfo.coverImage" }]
@@ -1980,15 +2000,6 @@ var onExperienceUpdated = EventDefinition(
1980
2000
  path: "entity.configuration.displayInfo.richContent.nodes.layoutData.backdropImage.media.duration"
1981
2001
  }
1982
2002
  ]
1983
- },
1984
- {
1985
- transformFn: transformRESTPageURLV2ToSDKPageURLV22,
1986
- paths: [
1987
- { path: "entity.configuration.reservationForm.privacyPolicy.url" },
1988
- {
1989
- path: "entity.configuration.reservationForm.termsAndConditions.url"
1990
- }
1991
- ]
1992
2003
  }
1993
2004
  ])
1994
2005
  )