@wix/auto_sdk_table-reservations_experiences 1.0.43 → 1.0.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/build/cjs/index.d.ts +2 -2
  2. package/build/cjs/index.js +563 -5
  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 +407 -5
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +89 -37
  8. package/build/cjs/meta.js +407 -5
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/{table-reservations-v1-experience-experiences.universal-BqhRReXL.d.ts → table-reservations-v1-experience-experiences.universal-Cqe_JOHB.d.ts} +104 -51
  11. package/build/es/index.d.mts +2 -2
  12. package/build/es/index.mjs +562 -5
  13. package/build/es/index.mjs.map +1 -1
  14. package/build/es/index.typings.d.mts +2 -2
  15. package/build/es/index.typings.mjs +406 -5
  16. package/build/es/index.typings.mjs.map +1 -1
  17. package/build/es/meta.d.mts +89 -37
  18. package/build/es/meta.mjs +406 -5
  19. package/build/es/meta.mjs.map +1 -1
  20. package/build/es/{table-reservations-v1-experience-experiences.universal-BqhRReXL.d.mts → table-reservations-v1-experience-experiences.universal-Cqe_JOHB.d.mts} +104 -51
  21. package/build/internal/cjs/index.d.ts +2 -2
  22. package/build/internal/cjs/index.js +563 -5
  23. package/build/internal/cjs/index.js.map +1 -1
  24. package/build/internal/cjs/index.typings.d.ts +2 -2
  25. package/build/internal/cjs/index.typings.js +407 -5
  26. package/build/internal/cjs/index.typings.js.map +1 -1
  27. package/build/internal/cjs/meta.d.ts +89 -37
  28. package/build/internal/cjs/meta.js +407 -5
  29. package/build/internal/cjs/meta.js.map +1 -1
  30. package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-BqhRReXL.d.ts → table-reservations-v1-experience-experiences.universal-Cqe_JOHB.d.ts} +104 -51
  31. package/build/internal/es/index.d.mts +2 -2
  32. package/build/internal/es/index.mjs +562 -5
  33. package/build/internal/es/index.mjs.map +1 -1
  34. package/build/internal/es/index.typings.d.mts +2 -2
  35. package/build/internal/es/index.typings.mjs +406 -5
  36. package/build/internal/es/index.typings.mjs.map +1 -1
  37. package/build/internal/es/meta.d.mts +89 -37
  38. package/build/internal/es/meta.mjs +406 -5
  39. package/build/internal/es/meta.mjs.map +1 -1
  40. package/build/internal/es/{table-reservations-v1-experience-experiences.universal-BqhRReXL.d.mts → table-reservations-v1-experience-experiences.universal-Cqe_JOHB.d.mts} +104 -51
  41. package/package.json +2 -2
@@ -1225,6 +1225,8 @@ interface ImageData {
1225
1225
  decorative?: boolean | null;
1226
1226
  /** Styling for the image. */
1227
1227
  styles?: ImageDataStyles;
1228
+ /** Non-destructive crop rectangle, expressed as fractions (0-1) of the original image. When omitted, the full image is shown. */
1229
+ crop?: ImageDataCrop;
1228
1230
  }
1229
1231
  interface StylesBorder {
1230
1232
  /** Border width in pixels. */
@@ -1241,6 +1243,16 @@ interface ImageDataStyles {
1241
1243
  /** Border attributes. */
1242
1244
  border?: StylesBorder;
1243
1245
  }
1246
+ interface ImageDataCrop {
1247
+ /** Left edge of the crop, as a fraction (0-1) of the original image width. */
1248
+ x?: number | null;
1249
+ /** Top edge of the crop, as a fraction (0-1) of the original image height. */
1250
+ y?: number | null;
1251
+ /** Visible width of the crop, as a fraction (0-1) of the original image width. */
1252
+ width?: number | null;
1253
+ /** Visible height of the crop, as a fraction (0-1) of the original image height. */
1254
+ height?: number | null;
1255
+ }
1244
1256
  interface LinkPreviewData {
1245
1257
  /** Styling for the link preview's container. */
1246
1258
  containerData?: PluginContainerData;
@@ -1551,6 +1563,8 @@ interface Decoration extends DecorationDataOneOf {
1551
1563
  subscriptData?: boolean | null;
1552
1564
  /** Data for a font family decoration. */
1553
1565
  fontFamilyData?: FontFamilyData;
1566
+ /** Data for a hand-drawn sketch annotation decoration. */
1567
+ sketchData?: SketchData;
1554
1568
  /** The type of decoration to apply. */
1555
1569
  type?: DecorationTypeWithLiterals;
1556
1570
  }
@@ -1582,6 +1596,8 @@ interface DecorationDataOneOf {
1582
1596
  subscriptData?: boolean | null;
1583
1597
  /** Data for a font family decoration. */
1584
1598
  fontFamilyData?: FontFamilyData;
1599
+ /** Data for a hand-drawn sketch annotation decoration. */
1600
+ sketchData?: SketchData;
1585
1601
  }
1586
1602
  declare enum DecorationType {
1587
1603
  BOLD = "BOLD",
@@ -1597,10 +1613,11 @@ declare enum DecorationType {
1597
1613
  STRIKETHROUGH = "STRIKETHROUGH",
1598
1614
  SUPERSCRIPT = "SUPERSCRIPT",
1599
1615
  SUBSCRIPT = "SUBSCRIPT",
1600
- FONT_FAMILY = "FONT_FAMILY"
1616
+ FONT_FAMILY = "FONT_FAMILY",
1617
+ SKETCH = "SKETCH"
1601
1618
  }
1602
1619
  /** @enumType */
1603
- type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
1620
+ type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY' | 'SKETCH';
1604
1621
  interface AnchorData {
1605
1622
  /** The target node's ID. */
1606
1623
  anchor?: string;
@@ -1643,6 +1660,27 @@ interface FontFamilyData {
1643
1660
  /** @maxLength 1000 */
1644
1661
  value?: string | null;
1645
1662
  }
1663
+ interface SketchData {
1664
+ /** The sketch annotation variant to draw over the text. */
1665
+ variant?: VariantWithLiterals;
1666
+ /**
1667
+ * Annotation color. Defaults to the theme action color.
1668
+ * @maxLength 19
1669
+ */
1670
+ color?: string | null;
1671
+ /** Whether the annotation animates on first paint. Defaults to `true`. */
1672
+ animate?: boolean | null;
1673
+ }
1674
+ declare enum Variant {
1675
+ UNDERLINE = "UNDERLINE",
1676
+ BOX = "BOX",
1677
+ CIRCLE = "CIRCLE",
1678
+ HIGHLIGHT = "HIGHLIGHT",
1679
+ STRIKETHROUGH = "STRIKETHROUGH",
1680
+ CROSSED_OFF = "CROSSED_OFF"
1681
+ }
1682
+ /** @enumType */
1683
+ type VariantWithLiterals = Variant | 'UNDERLINE' | 'BOX' | 'CIRCLE' | 'HIGHLIGHT' | 'STRIKETHROUGH' | 'CROSSED_OFF';
1646
1684
  interface AppEmbedData extends AppEmbedDataAppDataOneOf {
1647
1685
  /** Data for embedded Wix Bookings content. */
1648
1686
  bookingData?: BookingData;
@@ -2252,6 +2290,27 @@ declare enum ImagePosition {
2252
2290
  }
2253
2291
  /** @enumType */
2254
2292
  type ImagePositionWithLiterals = ImagePosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2293
+ /** Background styling (color or gradient) */
2294
+ interface LayoutDataBackground {
2295
+ /** Background type. */
2296
+ type?: LayoutDataBackgroundTypeWithLiterals;
2297
+ /**
2298
+ * Background color as a hexadecimal value.
2299
+ * @maxLength 19
2300
+ */
2301
+ color?: string | null;
2302
+ /** Gradient configuration. */
2303
+ gradient?: Gradient;
2304
+ }
2305
+ /** Background type */
2306
+ declare enum LayoutDataBackgroundType {
2307
+ /** Solid color background */
2308
+ COLOR = "COLOR",
2309
+ /** Gradient background */
2310
+ GRADIENT = "GRADIENT"
2311
+ }
2312
+ /** @enumType */
2313
+ type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2255
2314
  declare enum Origin {
2256
2315
  /** Banner originated from an image */
2257
2316
  IMAGE = "IMAGE",
@@ -2268,15 +2327,6 @@ declare enum BannerPosition {
2268
2327
  }
2269
2328
  /** @enumType */
2270
2329
  type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
2271
- /** Background type */
2272
- declare enum LayoutDataBackgroundType {
2273
- /** Solid color background */
2274
- COLOR = "COLOR",
2275
- /** Gradient background */
2276
- GRADIENT = "GRADIENT"
2277
- }
2278
- /** @enumType */
2279
- type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2280
2330
  /** Backdrop type */
2281
2331
  declare enum BackdropType {
2282
2332
  /** Solid color backdrop */
@@ -2289,12 +2339,19 @@ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
2289
2339
  interface LayoutDataBackgroundImage {
2290
2340
  /** Background image. */
2291
2341
  media?: Media;
2292
- /** Background image opacity. */
2342
+ /**
2343
+ * Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background`/`backdrop` color behind it.
2344
+ * @deprecated
2345
+ */
2293
2346
  opacity?: number | null;
2294
2347
  /** Background image scaling. */
2295
2348
  scaling?: ImageScalingScalingWithLiterals;
2296
2349
  /** Position of background. Defaults to `CENTER`. */
2297
2350
  position?: ImagePositionWithLiterals;
2351
+ /** Blur radius in pixels applied to the image layer. `0` (default) leaves the image unblurred; blur is independent of any color overlay and the two stack. */
2352
+ blur?: number | null;
2353
+ /** Color or gradient drawn on top of the image. When present, this is the authoritative overlay and `opacity` is ignored. Its presence also marks content as authored under the new overlay model (vs. the legacy `opacity`-based dimming on `background`/`backdrop`). */
2354
+ overlay?: LayoutDataBackground;
2298
2355
  }
2299
2356
  declare enum VerticalAlignmentAlignment {
2300
2357
  /** Top alignment */
@@ -2328,18 +2385,6 @@ interface Banner {
2328
2385
  /** Position of the banner */
2329
2386
  position?: BannerPositionWithLiterals;
2330
2387
  }
2331
- /** Background styling (color or gradient) */
2332
- interface LayoutDataBackground {
2333
- /** Background type. */
2334
- type?: LayoutDataBackgroundTypeWithLiterals;
2335
- /**
2336
- * Background color as a hexadecimal value.
2337
- * @maxLength 19
2338
- */
2339
- color?: string | null;
2340
- /** Gradient configuration. */
2341
- gradient?: Gradient;
2342
- }
2343
2388
  /** Backdrop styling (color or gradient) */
2344
2389
  interface Backdrop {
2345
2390
  /** Backdrop type. */
@@ -2411,15 +2456,6 @@ declare enum ImagePositionPosition {
2411
2456
  }
2412
2457
  /** @enumType */
2413
2458
  type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2414
- /** Background type */
2415
- declare enum CardDataBackgroundType {
2416
- /** Solid color background */
2417
- COLOR = "COLOR",
2418
- /** Gradient background */
2419
- GRADIENT = "GRADIENT"
2420
- }
2421
- /** @enumType */
2422
- type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2423
2459
  /** Background styling (color or gradient) */
2424
2460
  interface CardDataBackground {
2425
2461
  /** Background type. */
@@ -2432,15 +2468,31 @@ interface CardDataBackground {
2432
2468
  /** Gradient configuration. */
2433
2469
  gradient?: Gradient;
2434
2470
  }
2471
+ /** Background type */
2472
+ declare enum CardDataBackgroundType {
2473
+ /** Solid color background */
2474
+ COLOR = "COLOR",
2475
+ /** Gradient background */
2476
+ GRADIENT = "GRADIENT"
2477
+ }
2478
+ /** @enumType */
2479
+ type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2435
2480
  interface BackgroundImage {
2436
2481
  /** Background image. */
2437
2482
  media?: Media;
2438
- /** Background image opacity. */
2483
+ /**
2484
+ * Deprecated: use `overlay` instead. Legacy image opacity (0–100) that dimmed the image to reveal the `background` color behind it.
2485
+ * @deprecated
2486
+ */
2439
2487
  opacity?: number | null;
2440
2488
  /** Background image scaling. */
2441
2489
  scaling?: ScalingWithLiterals;
2442
2490
  /** Position of background. Defaults to `CENTER`. */
2443
2491
  position?: ImagePositionPositionWithLiterals;
2492
+ /** Color or gradient drawn on top of the image. When present, this is the authoritative overlay and `opacity` is ignored. Its presence also marks content as authored under the new overlay model (vs. the legacy `opacity`-based dimming on `background`). */
2493
+ overlay?: CardDataBackground;
2494
+ /** Blur radius in pixels applied to the image layer. `0` (default) leaves the image unblurred; blur is independent of any color overlay and the two stack. */
2495
+ blur?: number | null;
2444
2496
  }
2445
2497
  interface TocData {
2446
2498
  /** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
@@ -4139,7 +4191,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
4139
4191
  /** If present, indicates the action that triggered the event. */
4140
4192
  originatedFrom?: string | null;
4141
4193
  /**
4142
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
4194
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
4143
4195
  * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
4144
4196
  */
4145
4197
  entityEventSequence?: string | null;
@@ -4328,7 +4380,7 @@ interface EventMetadata extends BaseEventMetadata {
4328
4380
  /** If present, indicates the action that triggered the event. */
4329
4381
  originatedFrom?: string | null;
4330
4382
  /**
4331
- * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
4383
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
4332
4384
  * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
4333
4385
  */
4334
4386
  entityEventSequence?: string | null;
@@ -4540,45 +4592,45 @@ interface ExperiencesQueryBuilder {
4540
4592
  /** @param propertyName - Property whose value is compared with `value`.
4541
4593
  * @param value - Value to compare against.
4542
4594
  */
4543
- eq: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'configuration.visible' | 'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds', value: any) => ExperiencesQueryBuilder;
4595
+ eq: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'configuration.visible' | 'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds' | 'slug', value: any) => ExperiencesQueryBuilder;
4544
4596
  /** @param propertyName - Property whose value is compared with `value`.
4545
4597
  * @param value - Value to compare against.
4546
4598
  */
4547
- ne: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'configuration.visible' | 'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds', value: any) => ExperiencesQueryBuilder;
4599
+ ne: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'configuration.visible' | 'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds' | 'slug', value: any) => ExperiencesQueryBuilder;
4548
4600
  /** @param propertyName - Property whose value is compared with `value`.
4549
4601
  * @param value - Value to compare against.
4550
4602
  */
4551
- ge: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate', value: any) => ExperiencesQueryBuilder;
4603
+ ge: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'slug', value: any) => ExperiencesQueryBuilder;
4552
4604
  /** @param propertyName - Property whose value is compared with `value`.
4553
4605
  * @param value - Value to compare against.
4554
4606
  */
4555
- gt: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate', value: any) => ExperiencesQueryBuilder;
4607
+ gt: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'slug', value: any) => ExperiencesQueryBuilder;
4556
4608
  /** @param propertyName - Property whose value is compared with `value`.
4557
4609
  * @param value - Value to compare against.
4558
4610
  */
4559
- le: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate', value: any) => ExperiencesQueryBuilder;
4611
+ le: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'slug', value: any) => ExperiencesQueryBuilder;
4560
4612
  /** @param propertyName - Property whose value is compared with `value`.
4561
4613
  * @param value - Value to compare against.
4562
4614
  */
4563
- lt: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate', value: any) => ExperiencesQueryBuilder;
4615
+ lt: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'slug', value: any) => ExperiencesQueryBuilder;
4564
4616
  /** @param propertyName - Property whose value is compared with `string`.
4565
4617
  * @param string - String to compare against. Case-insensitive.
4566
4618
  */
4567
- startsWith: (propertyName: '_id' | 'reservationLocationId' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate', value: string) => ExperiencesQueryBuilder;
4619
+ startsWith: (propertyName: '_id' | 'reservationLocationId' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'slug', value: string) => ExperiencesQueryBuilder;
4568
4620
  /** @param propertyName - Property whose value is compared with `values`.
4569
4621
  * @param values - List of values to compare against.
4570
4622
  */
4571
- hasSome: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'configuration.visible' | 'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds', value: any[]) => ExperiencesQueryBuilder;
4623
+ hasSome: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'configuration.visible' | 'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds' | 'slug', value: any[]) => ExperiencesQueryBuilder;
4572
4624
  /** @param propertyName - Property whose value is compared with `values`.
4573
4625
  * @param values - List of values to compare against.
4574
4626
  */
4575
4627
  hasAll: (propertyName: 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds', value: any[]) => ExperiencesQueryBuilder;
4576
- in: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'configuration.visible' | 'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds', value: any) => ExperiencesQueryBuilder;
4577
- exists: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'configuration.visible' | 'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds', value: boolean) => ExperiencesQueryBuilder;
4628
+ in: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'configuration.visible' | 'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds' | 'slug', value: any) => ExperiencesQueryBuilder;
4629
+ exists: (propertyName: '_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'configuration.visible' | 'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds' | 'slug', value: boolean) => ExperiencesQueryBuilder;
4578
4630
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
4579
- ascending: (...propertyNames: Array<'_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'configuration.visible' | 'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds'>) => ExperiencesQueryBuilder;
4631
+ ascending: (...propertyNames: Array<'_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'configuration.visible' | 'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds' | 'slug'>) => ExperiencesQueryBuilder;
4580
4632
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
4581
- descending: (...propertyNames: Array<'_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'configuration.visible' | 'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds'>) => ExperiencesQueryBuilder;
4633
+ descending: (...propertyNames: Array<'_id' | 'reservationLocationId' | '_createdDate' | '_updatedDate' | 'configuration.displayInfo.name' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.startDate' | 'configuration.onlineReservations.businessSchedule.entries.weeklyOptions.endDate' | 'configuration.onlineReservations.businessSchedule.entries.oneTimeOptions.startDate' | 'configuration.visible' | 'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds' | 'slug'>) => ExperiencesQueryBuilder;
4582
4634
  /** @param limit - Number of items to return, which is also the `pageSize` of the results object. */
4583
4635
  limit: (limit: number) => ExperiencesQueryBuilder;
4584
4636
  /** @param cursor - A pointer to specific record */
@@ -4613,7 +4665,8 @@ interface ExperienceQuerySpec extends QuerySpec {
4613
4665
  'configuration.displayInfo.name',
4614
4666
  'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience',
4615
4667
  'configuration.visible',
4616
- 'reservationLocationId'
4668
+ 'reservationLocationId',
4669
+ 'slug'
4617
4670
  ];
4618
4671
  operators: '*';
4619
4672
  sort: 'BOTH';
@@ -4674,7 +4727,7 @@ declare const utils: {
4674
4727
  };
4675
4728
  search: {
4676
4729
  SearchBuilder: () => _wix_sdk_types.SearchBuilder<Experience, ExperienceSearchSpec, ExperienceSearch>;
4677
- Filter: _wix_sdk_types.FilterFactory<Experience, ExperienceSearchSpec>;
4730
+ Filter: _wix_sdk_types.FilterFactory<Experience, ExperienceSearchSpec>; /** Layout settings for the poll and voting options. */
4678
4731
  Sort: _wix_sdk_types.SortFactory<ExperienceSearchSpec>;
4679
4732
  SearchParams: _wix_sdk_types.SearchParamsFactory<ExperienceSearchSpec>;
4680
4733
  Aggregation: _wix_sdk_types.AggregationFactory<ExperienceSearchSpec>;
@@ -4951,4 +5004,4 @@ declare function bulkArchiveExperiences(experienceIds: string[]): Promise<NonNul
4951
5004
  */
4952
5005
  declare function bulkUnarchiveExperiences(experienceIds: string[]): Promise<NonNullablePaths<BulkUnarchiveExperiencesResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
4953
5006
 
4954
- export { PollLayoutType as $, Target as A, type BulkUpdateExperiencesOptions as B, TextAlignment as C, Width as D, type Experience as E, DividerDataAlignment as F, type GetExperienceBySlugResponse as G, LayoutType as H, Crop as I, ThumbnailsAlignment as J, GIFType as K, LineStyle as L, type MaskedExperience as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, Source as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, StylesPosition as X, MapType as Y, ViewRole as Z, VoteRole as _, type UpdateExperienceApplicationErrors as a, type TermsAndConditions as a$, PollLayoutDirection as a0, PollDesignBackgroundType as a1, DecorationType as a2, FontType as a3, Position as a4, AspectRatio as a5, Resizing as a6, Placement as a7, Type as a8, Alignment as a9, MissingValues as aA, ScalarType as aB, NestedAggregationType as aC, Interval as aD, AggregationType as aE, SearchDetailsMode as aF, PlacementType as aG, DayOfWeek as aH, ResolutionMethod as aI, WebhookIdentityType as aJ, type Table as aK, type TableCombination as aL, type SpecificTablesOptions as aM, type OnOptions as aN, type OnOptionsOptionsOneOf as aO, type StartDaysAndTimes as aP, type WeeklyOptions as aQ, type OneTimeOptions as aR, type Entry as aS, type EntryRecurrenceOptionsOneOf as aT, type PartySize as aU, type NoticePeriod as aV, type Approval as aW, type MaxGuests as aX, type OnlineReservationsBusinessSchedule as aY, type PrivacyPolicy as aZ, type PrivacyPolicyValueOneOf as a_, Layout as aa, AppType as ab, InitialExpandedItems as ac, Direction as ad, VerticalAlignment as ae, NullValue as af, ImageScalingScaling as ag, ImagePosition as ah, Origin as ai, BannerPosition as aj, LayoutDataBackgroundType as ak, BackdropType as al, VerticalAlignmentAlignment as am, ResponsivenessBehaviour as an, DesignTarget as ao, Scaling as ap, ImagePositionPosition as aq, CardDataBackgroundType as ar, ListStyle as as, Indentation as at, SmartBlockDataType as au, ColumnSize as av, PaymentPolicyType as aw, SortOrder as ax, SortType as ay, SortDirection as az, type ExperienceSearch as b, type Poll as b$, type TermsAndConditionsValueOneOf as b0, type CustomFieldDefinition as b1, type EmailMarketingCheckbox as b2, type RichContent as b3, type Node as b4, type NodeDataOneOf as b5, type NodeStyle as b6, type ButtonData as b7, type Gradient as b8, type Stop as b9, type GalleryOptionsLayout as bA, type ItemStyle as bB, type Thumbnails as bC, type GIFData as bD, type GIF as bE, type HeadingData as bF, type HTMLData as bG, type HTMLDataDataOneOf as bH, type ImageData as bI, type StylesBorder as bJ, type ImageDataStyles as bK, type LinkPreviewData as bL, type LinkPreviewDataStyles as bM, type MapData as bN, type MapSettings as bO, type ParagraphData as bP, type PollData as bQ, type Permissions as bR, type Option as bS, type PollSettings as bT, type PollLayout as bU, type OptionLayout as bV, type BackgroundGradient as bW, type PollDesignBackground as bX, type PollDesignBackgroundBackgroundOneOf as bY, type PollDesign as bZ, type OptionDesign as b_, type Border as ba, type Colors as bb, type Background as bc, type PluginContainerData as bd, type PluginContainerDataWidth as be, type PluginContainerDataWidthDataOneOf as bf, type Spoiler as bg, type Height as bh, type Styles as bi, type Link as bj, type LinkDataOneOf as bk, type Rel as bl, type CodeBlockData as bm, type TextStyle as bn, type DividerData as bo, type FileData as bp, type FileSource as bq, type FileSourceDataOneOf as br, type PDFSettings as bs, type GalleryData as bt, type Media as bu, type Image as bv, type Video as bw, type Item as bx, type ItemDataOneOf as by, type GalleryOptions as bz, type BulkUpdateExperiencesResponse as c, type TableManagement as c$, type PollDataLayout as c0, type Design as c1, type TextData as c2, type Decoration as c3, type DecorationDataOneOf as c4, type AnchorData as c5, type ColorData as c6, type LinkData as c7, type MentionData as c8, type FontSizeData as c9, type BlockquoteData as cA, type CaptionData as cB, type LayoutData as cC, type LayoutDataBackgroundImage as cD, type Banner as cE, type LayoutDataBackground as cF, type Backdrop as cG, type LayoutCellData as cH, type ShapeData as cI, type ShapeDataStyles as cJ, type CardData as cK, type CardDataBackground as cL, type BackgroundImage as cM, type TocData as cN, type SmartBlockData as cO, type SmartBlockCellData as cP, type CheckboxListData as cQ, type ListItemNodeData as cR, type Metadata as cS, type DocumentStyle as cT, type TextNodeStyle as cU, type PerGuestOptions as cV, type DisplayInfo as cW, type PaymentPolicy as cX, type PaymentPolicyOptionsOneOf as cY, type OnlineReservations as cZ, type ReservationForm as c_, type SpoilerData as ca, type FontFamilyData as cb, type AppEmbedData as cc, type AppEmbedDataAppDataOneOf as cd, type BookingData as ce, type EventData as cf, type ButtonStyles as cg, type ImageStyles as ch, type RibbonStyles as ci, type CardStyles as cj, type PricingData as ck, type VideoData as cl, type PlaybackOptions as cm, type EmbedData as cn, type Oembed as co, type CollapsibleListData as cp, type TableData as cq, type Dimensions as cr, type TableCellData as cs, type CellStyle as ct, type BorderColors as cu, type BorderWidths as cv, type ListValue as cw, type AudioData as cx, type OrderedListData as cy, type BulletedListData as cz, type BulkUpdateExperiencesApplicationErrors as d, type ScalarResult as d$, type TableManagementOptionsOneOf as d0, type Configuration as d1, type ExtendedFields as d2, type Tags as d3, type TagList as d4, type SeoSettings as d5, type SeoSchema as d6, type Keyword as d7, type Tag as d8, type Settings as d9, type SearchExperiencesRequest as dA, type CursorSearch as dB, type CursorSearchPagingMethodOneOf as dC, type Aggregation as dD, type AggregationKindOneOf as dE, type RangeBucket as dF, type IncludeMissingValuesOptions as dG, type ValueAggregation as dH, type ValueAggregationOptionsOneOf as dI, type RangeAggregation as dJ, type ScalarAggregation as dK, type DateHistogramAggregation as dL, type NestedAggregationItem as dM, type NestedAggregationItemKindOneOf as dN, type NestedAggregation as dO, type SearchDetails as dP, type AggregationData as dQ, type ValueAggregationResult as dR, type RangeAggregationResult as dS, type NestedAggregationResults as dT, type NestedAggregationResultsResultOneOf as dU, type ValueResults as dV, type RangeResults as dW, type AggregationResultsScalarResult as dX, type NestedValueAggregationResult as dY, type ValueResult as dZ, type RangeResult as d_, type InvalidateCache as da, type InvalidateCacheGetByOneOf as db, type App as dc, type Page as dd, type URI as de, type File as df, type CustomTag as dg, type Pages as dh, type URIs as di, type TagsModified as dj, type CreateExperienceRequest as dk, type CreateExperienceResponse as dl, type GetExperienceRequest as dm, type GetExperienceResponse as dn, type GetExperienceBySlugRequest as dp, type UpdateExperienceRequest as dq, type UpdateExperienceResponse as dr, type QueryExperiencesRequest as ds, type CursorQuery as dt, type CursorQueryPagingMethodOneOf as du, type Sorting as dv, type CursorPaging as dw, type QueryExperiencesResponse as dx, type CursorPagingMetadata as dy, type Cursors as dz, type BulkUpdateExperienceTagsOptions as e, type UnitWithLiterals as e$, type NestedResultValue as e0, type NestedResultValueResultOneOf as e1, type Results as e2, type DateHistogramResult as e3, type GroupByValueResults as e4, type DateHistogramResults as e5, type NestedResults as e6, type AggregationResults as e7, type AggregationResultsResultOneOf as e8, type BulkUpdateExperiencesRequest as e9, type ChangeContext as eA, type ChangeContextPayloadOneOf as eB, type PropertiesChange as eC, type SiteCreated as eD, type SiteCloned as eE, type Empty as eF, type DomainEvent as eG, type DomainEventBodyOneOf as eH, type EntityCreatedEvent as eI, type RestoreInfo as eJ, type EntityUpdatedEvent as eK, type EntityDeletedEvent as eL, type ActionEvent as eM, type MessageEnvelope as eN, type IdentificationData as eO, type IdentificationDataIdOneOf as eP, type AccountInfo as eQ, type BaseEventMetadata as eR, type EventMetadata as eS, type AccountInfoMetadata as eT, type ExperiencesQueryResult as eU, type ExperienceQuerySpec as eV, type ExperienceSearchSpec as eW, utils as eX, type TableAvailabilityTypeWithLiterals as eY, type TableAssignmentTypeWithLiterals as eZ, type TableManagementModeWithLiterals as e_, type ItemMetadata as ea, type ApplicationError as eb, type BulkUpdateExperiencesResult as ec, type BulkActionMetadata as ed, type BulkUpdateExperienceTagsRequest as ee, type BulkUpdateExperienceTagsResult as ef, type BulkUpdateExperienceTagsByFilterRequest as eg, type BulkArchiveExperiencesRequest as eh, type BulkArchiveExperiencesResult as ei, type BulkUnarchiveExperiencesRequest as ej, type BulkUnarchiveExperiencesResult as ek, type SitePropertiesNotification as el, type SitePropertiesEvent as em, type Properties as en, type Categories as eo, type Locale as ep, type Address as eq, type AddressHint as er, type GeoCoordinates as es, type BusinessSchedule as et, type TimePeriod as eu, type SpecialHourPeriod as ev, type Multilingual as ew, type SupportedLanguage as ex, type ConsentPolicy as ey, type Translation as ez, type BulkUpdateExperienceTagsResponse as f, type ScalarTypeWithLiterals as f$, type ModeWithLiterals as f0, type StartDaysAndTimesDayOfWeekWithLiterals as f1, type RecurrenceWithLiterals as f2, type NodeTypeWithLiterals as f3, type BackgroundTypeWithLiterals as f4, type GradientTypeWithLiterals as f5, type WidthTypeWithLiterals as f6, type PluginContainerDataAlignmentWithLiterals as f7, type ButtonDataTypeWithLiterals as f8, type TargetWithLiterals as f9, type LayoutWithLiterals as fA, type AppTypeWithLiterals as fB, type InitialExpandedItemsWithLiterals as fC, type DirectionWithLiterals as fD, type VerticalAlignmentWithLiterals as fE, type NullValueWithLiterals as fF, type ImageScalingScalingWithLiterals as fG, type ImagePositionWithLiterals as fH, type OriginWithLiterals as fI, type BannerPositionWithLiterals as fJ, type LayoutDataBackgroundTypeWithLiterals as fK, type BackdropTypeWithLiterals as fL, type VerticalAlignmentAlignmentWithLiterals as fM, type ResponsivenessBehaviourWithLiterals as fN, type DesignTargetWithLiterals as fO, type ScalingWithLiterals as fP, type ImagePositionPositionWithLiterals as fQ, type CardDataBackgroundTypeWithLiterals as fR, type ListStyleWithLiterals as fS, type IndentationWithLiterals as fT, type SmartBlockDataTypeWithLiterals as fU, type ColumnSizeWithLiterals as fV, type PaymentPolicyTypeWithLiterals as fW, type SortOrderWithLiterals as fX, type SortTypeWithLiterals as fY, type SortDirectionWithLiterals as fZ, type MissingValuesWithLiterals as f_, type TextAlignmentWithLiterals as fa, type LineStyleWithLiterals as fb, type WidthWithLiterals as fc, type DividerDataAlignmentWithLiterals as fd, type ViewModeWithLiterals as fe, type LayoutTypeWithLiterals as ff, type OrientationWithLiterals as fg, type CropWithLiterals as fh, type ThumbnailsAlignmentWithLiterals as fi, type GIFTypeWithLiterals as fj, type SourceWithLiterals as fk, type StylesPositionWithLiterals as fl, type MapTypeWithLiterals as fm, type ViewRoleWithLiterals as fn, type VoteRoleWithLiterals as fo, type PollLayoutTypeWithLiterals as fp, type PollLayoutDirectionWithLiterals as fq, type PollDesignBackgroundTypeWithLiterals as fr, type DecorationTypeWithLiterals as fs, type FontTypeWithLiterals as ft, type PositionWithLiterals as fu, type AspectRatioWithLiterals as fv, type ResizingWithLiterals as fw, type PlacementWithLiterals as fx, type TypeWithLiterals as fy, type AlignmentWithLiterals as fz, type BulkUpdateExperienceTagsApplicationErrors as g, type NestedAggregationTypeWithLiterals as g0, type IntervalWithLiterals as g1, type AggregationTypeWithLiterals as g2, type SearchDetailsModeWithLiterals as g3, type PlacementTypeWithLiterals as g4, type DayOfWeekWithLiterals as g5, type ResolutionMethodWithLiterals as g6, type WebhookIdentityTypeWithLiterals as g7, type CommonQueryWithEntityContext as g8, type CommonSearchWithEntityContext as g9, onExperienceCreated as ga, onExperienceTagsModified as gb, onExperienceUpdated as gc, createExperience as gd, getExperience as ge, getExperienceBySlug as gf, updateExperience as gg, queryExperiences as gh, bulkUpdateExperiences as gi, bulkUpdateExperienceTags as gj, bulkUpdateExperienceTagsByFilter as gk, bulkArchiveExperiences as gl, bulkUnarchiveExperiences as gm, type BulkUpdateExperienceTagsByFilterOptions as h, type BulkUpdateExperienceTagsByFilterResponse as i, type BulkUpdateExperienceTagsByFilterApplicationErrors as j, type BulkArchiveExperiencesResponse as k, type BulkUnarchiveExperiencesResponse as l, type ExperienceCreatedEnvelope as m, type ExperienceTagsModifiedEnvelope as n, type ExperienceUpdatedEnvelope as o, type ExperiencesQueryBuilder as p, type ExperienceQuery as q, TableAssignmentType as r, TableManagementMode as s, typedQueryExperiences as t, Unit as u, Mode as v, StartDaysAndTimesDayOfWeek as w, BackgroundType as x, GradientType as y, ButtonDataType as z };
5007
+ export { PollLayoutType as $, Target as A, type BulkUpdateExperiencesOptions as B, TextAlignment as C, Width as D, type Experience as E, DividerDataAlignment as F, type GetExperienceBySlugResponse as G, LayoutType as H, Crop as I, ThumbnailsAlignment as J, GIFType as K, LineStyle as L, type MaskedExperience as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, Source as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, StylesPosition as X, MapType as Y, ViewRole as Z, VoteRole as _, type UpdateExperienceApplicationErrors as a, type PrivacyPolicyValueOneOf as a$, PollLayoutDirection as a0, PollDesignBackgroundType as a1, DecorationType as a2, FontType as a3, Variant as a4, Position as a5, AspectRatio as a6, Resizing as a7, Placement as a8, Type as a9, SortDirection as aA, MissingValues as aB, ScalarType as aC, NestedAggregationType as aD, Interval as aE, AggregationType as aF, SearchDetailsMode as aG, PlacementType as aH, DayOfWeek as aI, ResolutionMethod as aJ, WebhookIdentityType as aK, type Table as aL, type TableCombination as aM, type SpecificTablesOptions as aN, type OnOptions as aO, type OnOptionsOptionsOneOf as aP, type StartDaysAndTimes as aQ, type WeeklyOptions as aR, type OneTimeOptions as aS, type Entry as aT, type EntryRecurrenceOptionsOneOf as aU, type PartySize as aV, type NoticePeriod as aW, type Approval as aX, type MaxGuests as aY, type OnlineReservationsBusinessSchedule as aZ, type PrivacyPolicy as a_, Alignment as aa, Layout as ab, AppType as ac, InitialExpandedItems as ad, Direction as ae, VerticalAlignment as af, NullValue as ag, ImageScalingScaling as ah, ImagePosition as ai, LayoutDataBackgroundType as aj, Origin as ak, BannerPosition as al, BackdropType as am, VerticalAlignmentAlignment as an, ResponsivenessBehaviour as ao, DesignTarget as ap, Scaling as aq, ImagePositionPosition as ar, CardDataBackgroundType as as, ListStyle as at, Indentation as au, SmartBlockDataType as av, ColumnSize as aw, PaymentPolicyType as ax, SortOrder as ay, SortType as az, type ExperienceSearch as b, type PollDesign as b$, type TermsAndConditions as b0, type TermsAndConditionsValueOneOf as b1, type CustomFieldDefinition as b2, type EmailMarketingCheckbox as b3, type RichContent as b4, type Node as b5, type NodeDataOneOf as b6, type NodeStyle as b7, type ButtonData as b8, type Gradient as b9, type GalleryOptions as bA, type GalleryOptionsLayout as bB, type ItemStyle as bC, type Thumbnails as bD, type GIFData as bE, type GIF as bF, type HeadingData as bG, type HTMLData as bH, type HTMLDataDataOneOf as bI, type ImageData as bJ, type StylesBorder as bK, type ImageDataStyles as bL, type ImageDataCrop as bM, type LinkPreviewData as bN, type LinkPreviewDataStyles as bO, type MapData as bP, type MapSettings as bQ, type ParagraphData as bR, type PollData as bS, type Permissions as bT, type Option as bU, type PollSettings as bV, type PollLayout as bW, type OptionLayout as bX, type BackgroundGradient as bY, type PollDesignBackground as bZ, type PollDesignBackgroundBackgroundOneOf as b_, type Stop as ba, type Border as bb, type Colors as bc, type Background as bd, type PluginContainerData as be, type PluginContainerDataWidth as bf, type PluginContainerDataWidthDataOneOf as bg, type Spoiler as bh, type Height as bi, type Styles as bj, type Link as bk, type LinkDataOneOf as bl, type Rel as bm, type CodeBlockData as bn, type TextStyle as bo, type DividerData as bp, type FileData as bq, type FileSource as br, type FileSourceDataOneOf as bs, type PDFSettings as bt, type GalleryData as bu, type Media as bv, type Image as bw, type Video as bx, type Item as by, type ItemDataOneOf as bz, type BulkUpdateExperiencesResponse as c, type PaymentPolicyOptionsOneOf as c$, type OptionDesign as c0, type Poll as c1, type PollDataLayout as c2, type Design as c3, type TextData as c4, type Decoration as c5, type DecorationDataOneOf as c6, type AnchorData as c7, type ColorData as c8, type LinkData as c9, type AudioData as cA, type OrderedListData as cB, type BulletedListData as cC, type BlockquoteData as cD, type CaptionData as cE, type LayoutData as cF, type LayoutDataBackground as cG, type LayoutDataBackgroundImage as cH, type Banner as cI, type Backdrop as cJ, type LayoutCellData as cK, type ShapeData as cL, type ShapeDataStyles as cM, type CardData as cN, type CardDataBackground as cO, type BackgroundImage as cP, type TocData as cQ, type SmartBlockData as cR, type SmartBlockCellData as cS, type CheckboxListData as cT, type ListItemNodeData as cU, type Metadata as cV, type DocumentStyle as cW, type TextNodeStyle as cX, type PerGuestOptions as cY, type DisplayInfo as cZ, type PaymentPolicy as c_, type MentionData as ca, type FontSizeData as cb, type SpoilerData as cc, type FontFamilyData as cd, type SketchData as ce, type AppEmbedData as cf, type AppEmbedDataAppDataOneOf as cg, type BookingData as ch, type EventData as ci, type ButtonStyles as cj, type ImageStyles as ck, type RibbonStyles as cl, type CardStyles as cm, type PricingData as cn, type VideoData as co, type PlaybackOptions as cp, type EmbedData as cq, type Oembed as cr, type CollapsibleListData as cs, type TableData as ct, type Dimensions as cu, type TableCellData as cv, type CellStyle as cw, type BorderColors as cx, type BorderWidths as cy, type ListValue as cz, type BulkUpdateExperiencesApplicationErrors as d, type NestedValueAggregationResult as d$, type OnlineReservations as d0, type ReservationForm as d1, type TableManagement as d2, type TableManagementOptionsOneOf as d3, type Configuration as d4, type ExtendedFields as d5, type Tags as d6, type TagList as d7, type SeoSettings as d8, type SeoSchema as d9, type QueryExperiencesResponse as dA, type CursorPagingMetadata as dB, type Cursors as dC, type SearchExperiencesRequest as dD, type CursorSearch as dE, type CursorSearchPagingMethodOneOf as dF, type Aggregation as dG, type AggregationKindOneOf as dH, type RangeBucket as dI, type IncludeMissingValuesOptions as dJ, type ValueAggregation as dK, type ValueAggregationOptionsOneOf as dL, type RangeAggregation as dM, type ScalarAggregation as dN, type DateHistogramAggregation as dO, type NestedAggregationItem as dP, type NestedAggregationItemKindOneOf as dQ, type NestedAggregation as dR, type SearchDetails as dS, type AggregationData as dT, type ValueAggregationResult as dU, type RangeAggregationResult as dV, type NestedAggregationResults as dW, type NestedAggregationResultsResultOneOf as dX, type ValueResults as dY, type RangeResults as dZ, type AggregationResultsScalarResult as d_, type Keyword as da, type Tag as db, type Settings as dc, type InvalidateCache as dd, type InvalidateCacheGetByOneOf as de, type App as df, type Page as dg, type URI as dh, type File as di, type CustomTag as dj, type Pages as dk, type URIs as dl, type TagsModified as dm, type CreateExperienceRequest as dn, type CreateExperienceResponse as dp, type GetExperienceRequest as dq, type GetExperienceResponse as dr, type GetExperienceBySlugRequest as ds, type UpdateExperienceRequest as dt, type UpdateExperienceResponse as du, type QueryExperiencesRequest as dv, type CursorQuery as dw, type CursorQueryPagingMethodOneOf as dx, type Sorting as dy, type CursorPaging as dz, type BulkUpdateExperienceTagsOptions as e, type TableAvailabilityTypeWithLiterals as e$, type ValueResult as e0, type RangeResult as e1, type ScalarResult as e2, type NestedResultValue as e3, type NestedResultValueResultOneOf as e4, type Results as e5, type DateHistogramResult as e6, type GroupByValueResults as e7, type DateHistogramResults as e8, type NestedResults as e9, type SupportedLanguage as eA, type ConsentPolicy as eB, type Translation as eC, type ChangeContext as eD, type ChangeContextPayloadOneOf as eE, type PropertiesChange as eF, type SiteCreated as eG, type SiteCloned as eH, type Empty as eI, type DomainEvent as eJ, type DomainEventBodyOneOf as eK, type EntityCreatedEvent as eL, type RestoreInfo as eM, type EntityUpdatedEvent as eN, type EntityDeletedEvent as eO, type ActionEvent as eP, type MessageEnvelope as eQ, type IdentificationData as eR, type IdentificationDataIdOneOf as eS, type AccountInfo as eT, type BaseEventMetadata as eU, type EventMetadata as eV, type AccountInfoMetadata as eW, type ExperiencesQueryResult as eX, type ExperienceQuerySpec as eY, type ExperienceSearchSpec as eZ, utils as e_, type AggregationResults as ea, type AggregationResultsResultOneOf as eb, type BulkUpdateExperiencesRequest as ec, type ItemMetadata as ed, type ApplicationError as ee, type BulkUpdateExperiencesResult as ef, type BulkActionMetadata as eg, type BulkUpdateExperienceTagsRequest as eh, type BulkUpdateExperienceTagsResult as ei, type BulkUpdateExperienceTagsByFilterRequest as ej, type BulkArchiveExperiencesRequest as ek, type BulkArchiveExperiencesResult as el, type BulkUnarchiveExperiencesRequest as em, type BulkUnarchiveExperiencesResult as en, type SitePropertiesNotification as eo, type SitePropertiesEvent as ep, type Properties as eq, type Categories as er, type Locale as es, type Address as et, type AddressHint as eu, type GeoCoordinates as ev, type BusinessSchedule as ew, type TimePeriod as ex, type SpecialHourPeriod as ey, type Multilingual as ez, type BulkUpdateExperienceTagsResponse as f, type SortOrderWithLiterals as f$, type TableAssignmentTypeWithLiterals as f0, type TableManagementModeWithLiterals as f1, type UnitWithLiterals as f2, type ModeWithLiterals as f3, type StartDaysAndTimesDayOfWeekWithLiterals as f4, type RecurrenceWithLiterals as f5, type NodeTypeWithLiterals as f6, type BackgroundTypeWithLiterals as f7, type GradientTypeWithLiterals as f8, type WidthTypeWithLiterals as f9, type ResizingWithLiterals as fA, type PlacementWithLiterals as fB, type TypeWithLiterals as fC, type AlignmentWithLiterals as fD, type LayoutWithLiterals as fE, type AppTypeWithLiterals as fF, type InitialExpandedItemsWithLiterals as fG, type DirectionWithLiterals as fH, type VerticalAlignmentWithLiterals as fI, type NullValueWithLiterals as fJ, type ImageScalingScalingWithLiterals as fK, type ImagePositionWithLiterals as fL, type LayoutDataBackgroundTypeWithLiterals as fM, type OriginWithLiterals as fN, type BannerPositionWithLiterals as fO, type BackdropTypeWithLiterals as fP, type VerticalAlignmentAlignmentWithLiterals as fQ, type ResponsivenessBehaviourWithLiterals as fR, type DesignTargetWithLiterals as fS, type ScalingWithLiterals as fT, type ImagePositionPositionWithLiterals as fU, type CardDataBackgroundTypeWithLiterals as fV, type ListStyleWithLiterals as fW, type IndentationWithLiterals as fX, type SmartBlockDataTypeWithLiterals as fY, type ColumnSizeWithLiterals as fZ, type PaymentPolicyTypeWithLiterals as f_, type PluginContainerDataAlignmentWithLiterals as fa, type ButtonDataTypeWithLiterals as fb, type TargetWithLiterals as fc, type TextAlignmentWithLiterals as fd, type LineStyleWithLiterals as fe, type WidthWithLiterals as ff, type DividerDataAlignmentWithLiterals as fg, type ViewModeWithLiterals as fh, type LayoutTypeWithLiterals as fi, type OrientationWithLiterals as fj, type CropWithLiterals as fk, type ThumbnailsAlignmentWithLiterals as fl, type GIFTypeWithLiterals as fm, type SourceWithLiterals as fn, type StylesPositionWithLiterals as fo, type MapTypeWithLiterals as fp, type ViewRoleWithLiterals as fq, type VoteRoleWithLiterals as fr, type PollLayoutTypeWithLiterals as fs, type PollLayoutDirectionWithLiterals as ft, type PollDesignBackgroundTypeWithLiterals as fu, type DecorationTypeWithLiterals as fv, type FontTypeWithLiterals as fw, type VariantWithLiterals as fx, type PositionWithLiterals as fy, type AspectRatioWithLiterals as fz, type BulkUpdateExperienceTagsApplicationErrors as g, type SortTypeWithLiterals as g0, type SortDirectionWithLiterals as g1, type MissingValuesWithLiterals as g2, type ScalarTypeWithLiterals as g3, type NestedAggregationTypeWithLiterals as g4, type IntervalWithLiterals as g5, type AggregationTypeWithLiterals as g6, type SearchDetailsModeWithLiterals as g7, type PlacementTypeWithLiterals as g8, type DayOfWeekWithLiterals as g9, type ResolutionMethodWithLiterals as ga, type WebhookIdentityTypeWithLiterals as gb, type CommonQueryWithEntityContext as gc, type CommonSearchWithEntityContext as gd, onExperienceCreated as ge, onExperienceTagsModified as gf, onExperienceUpdated as gg, createExperience as gh, getExperience as gi, getExperienceBySlug as gj, updateExperience as gk, queryExperiences as gl, bulkUpdateExperiences as gm, bulkUpdateExperienceTags as gn, bulkUpdateExperienceTagsByFilter as go, bulkArchiveExperiences as gp, bulkUnarchiveExperiences as gq, type BulkUpdateExperienceTagsByFilterOptions as h, type BulkUpdateExperienceTagsByFilterResponse as i, type BulkUpdateExperienceTagsByFilterApplicationErrors as j, type BulkArchiveExperiencesResponse as k, type BulkUnarchiveExperiencesResponse as l, type ExperienceCreatedEnvelope as m, type ExperienceTagsModifiedEnvelope as n, type ExperienceUpdatedEnvelope as o, type ExperiencesQueryBuilder as p, type ExperienceQuery as q, TableAssignmentType as r, TableManagementMode as s, typedQueryExperiences as t, Unit as u, Mode as v, StartDaysAndTimesDayOfWeek as w, BackgroundType as x, GradientType as y, ButtonDataType as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { E as Experience, G as GetExperienceBySlugResponse, U as UpdateExperience, a as UpdateExperienceApplicationErrors, b as ExperienceSearch, S as SearchExperiencesResponse, M as MaskedExperience, B as BulkUpdateExperiencesOptions, c as BulkUpdateExperiencesResponse, d as BulkUpdateExperiencesApplicationErrors, e as BulkUpdateExperienceTagsOptions, f as BulkUpdateExperienceTagsResponse, g as BulkUpdateExperienceTagsApplicationErrors, h as BulkUpdateExperienceTagsByFilterOptions, i as BulkUpdateExperienceTagsByFilterResponse, j as BulkUpdateExperienceTagsByFilterApplicationErrors, k as BulkArchiveExperiencesResponse, l as BulkUnarchiveExperiencesResponse, m as ExperienceCreatedEnvelope, n as ExperienceTagsModifiedEnvelope, o as ExperienceUpdatedEnvelope, p as ExperiencesQueryBuilder, q as ExperienceQuery, t as typedQueryExperiences } from './table-reservations-v1-experience-experiences.universal-BqhRReXL.js';
3
- export { eQ as AccountInfo, eT as AccountInfoMetadata, eM as ActionEvent, eq as Address, er as AddressHint, dD as Aggregation, dQ as AggregationData, dE as AggregationKindOneOf, e7 as AggregationResults, e8 as AggregationResultsResultOneOf, dX as AggregationResultsScalarResult, aE as AggregationType, g2 as AggregationTypeWithLiterals, a9 as Alignment, fz as AlignmentWithLiterals, c5 as AnchorData, dc as App, cc as AppEmbedData, cd as AppEmbedDataAppDataOneOf, ab as AppType, fB as AppTypeWithLiterals, eb as ApplicationError, aW as Approval, a5 as AspectRatio, fv as AspectRatioWithLiterals, cx as AudioData, cG as Backdrop, al as BackdropType, fL as BackdropTypeWithLiterals, bc as Background, bW as BackgroundGradient, cM as BackgroundImage, x as BackgroundType, f4 as BackgroundTypeWithLiterals, cE as Banner, aj as BannerPosition, fJ as BannerPositionWithLiterals, eR as BaseEventMetadata, cA as BlockquoteData, ce as BookingData, ba as Border, cu as BorderColors, cv as BorderWidths, ed as BulkActionMetadata, eh as BulkArchiveExperiencesRequest, ei as BulkArchiveExperiencesResult, ej as BulkUnarchiveExperiencesRequest, ek as BulkUnarchiveExperiencesResult, eg as BulkUpdateExperienceTagsByFilterRequest, ee as BulkUpdateExperienceTagsRequest, ef as BulkUpdateExperienceTagsResult, e9 as BulkUpdateExperiencesRequest, ec as BulkUpdateExperiencesResult, cz as BulletedListData, et as BusinessSchedule, b7 as ButtonData, z as ButtonDataType, f8 as ButtonDataTypeWithLiterals, cg as ButtonStyles, cB as CaptionData, cK as CardData, cL as CardDataBackground, ar as CardDataBackgroundType, fR as CardDataBackgroundTypeWithLiterals, cj as CardStyles, eo as Categories, ct as CellStyle, eA as ChangeContext, eB as ChangeContextPayloadOneOf, cQ as CheckboxListData, bm as CodeBlockData, cp as CollapsibleListData, c6 as ColorData, bb as Colors, av as ColumnSize, fV as ColumnSizeWithLiterals, g8 as CommonQueryWithEntityContext, g9 as CommonSearchWithEntityContext, d1 as Configuration, ey as ConsentPolicy, dk as CreateExperienceRequest, dl as CreateExperienceResponse, I as Crop, fh as CropWithLiterals, dw as CursorPaging, dy as CursorPagingMetadata, dt as CursorQuery, du as CursorQueryPagingMethodOneOf, dB as CursorSearch, dC as CursorSearchPagingMethodOneOf, dz as Cursors, b1 as CustomFieldDefinition, dg as CustomTag, dL as DateHistogramAggregation, e3 as DateHistogramResult, e5 as DateHistogramResults, aH as DayOfWeek, g5 as DayOfWeekWithLiterals, c3 as Decoration, c4 as DecorationDataOneOf, a2 as DecorationType, fs as DecorationTypeWithLiterals, c1 as Design, ao as DesignTarget, fO as DesignTargetWithLiterals, cr as Dimensions, ad as Direction, fD as DirectionWithLiterals, cW as DisplayInfo, bo as DividerData, F as DividerDataAlignment, fd as DividerDataAlignmentWithLiterals, cT as DocumentStyle, eG as DomainEvent, eH as DomainEventBodyOneOf, b2 as EmailMarketingCheckbox, cn as EmbedData, eF as Empty, eI as EntityCreatedEvent, eL as EntityDeletedEvent, eK as EntityUpdatedEvent, aS as Entry, aT as EntryRecurrenceOptionsOneOf, cf as EventData, eS as EventMetadata, eV as ExperienceQuerySpec, eW as ExperienceSearchSpec, eU as ExperiencesQueryResult, d2 as ExtendedFields, df as File, bp as FileData, bq as FileSource, br as FileSourceDataOneOf, cb as FontFamilyData, c9 as FontSizeData, a3 as FontType, ft as FontTypeWithLiterals, bE as GIF, bD as GIFData, K as GIFType, fj as GIFTypeWithLiterals, bt as GalleryData, bz as GalleryOptions, bA as GalleryOptionsLayout, es as GeoCoordinates, dp as GetExperienceBySlugRequest, dm as GetExperienceRequest, dn as GetExperienceResponse, b8 as Gradient, y as GradientType, f5 as GradientTypeWithLiterals, e4 as GroupByValueResults, bG as HTMLData, bH as HTMLDataDataOneOf, bF as HeadingData, bh as Height, eO as IdentificationData, eP as IdentificationDataIdOneOf, bv as Image, bI as ImageData, bK as ImageDataStyles, ah as ImagePosition, aq as ImagePositionPosition, fQ as ImagePositionPositionWithLiterals, fH as ImagePositionWithLiterals, ag as ImageScalingScaling, fG as ImageScalingScalingWithLiterals, ch as ImageStyles, dG as IncludeMissingValuesOptions, at as Indentation, fT as IndentationWithLiterals, ac as InitialExpandedItems, fC as InitialExpandedItemsWithLiterals, aD as Interval, g1 as IntervalWithLiterals, da as InvalidateCache, db as InvalidateCacheGetByOneOf, bx as Item, by as ItemDataOneOf, ea as ItemMetadata, bB as ItemStyle, d7 as Keyword, aa as Layout, cH as LayoutCellData, cC as LayoutData, cF as LayoutDataBackground, cD as LayoutDataBackgroundImage, ak as LayoutDataBackgroundType, fK as LayoutDataBackgroundTypeWithLiterals, H as LayoutType, ff as LayoutTypeWithLiterals, fA as LayoutWithLiterals, L as LineStyle, fb as LineStyleWithLiterals, bj as Link, c7 as LinkData, bk as LinkDataOneOf, bL as LinkPreviewData, bM as LinkPreviewDataStyles, cR as ListItemNodeData, as as ListStyle, fS as ListStyleWithLiterals, cw as ListValue, ep as Locale, bN as MapData, bO as MapSettings, Y as MapType, fm as MapTypeWithLiterals, aX as MaxGuests, bu as Media, c8 as MentionData, eN as MessageEnvelope, cS as Metadata, aA as MissingValues, f_ as MissingValuesWithLiterals, v as Mode, f0 as ModeWithLiterals, ew as Multilingual, dO as NestedAggregation, dM as NestedAggregationItem, dN as NestedAggregationItemKindOneOf, dT as NestedAggregationResults, dU as NestedAggregationResultsResultOneOf, aC as NestedAggregationType, g0 as NestedAggregationTypeWithLiterals, e0 as NestedResultValue, e1 as NestedResultValueResultOneOf, e6 as NestedResults, dY as NestedValueAggregationResult, b4 as Node, b5 as NodeDataOneOf, b6 as NodeStyle, N as NodeType, f3 as NodeTypeWithLiterals, aV as NoticePeriod, af as NullValue, fF as NullValueWithLiterals, co as Oembed, aN as OnOptions, aO as OnOptionsOptionsOneOf, aR as OneTimeOptions, cZ as OnlineReservations, aY as OnlineReservationsBusinessSchedule, bS as Option, b_ as OptionDesign, bV as OptionLayout, cy as OrderedListData, O as Orientation, fg as OrientationWithLiterals, ai as Origin, fI as OriginWithLiterals, bs as PDFSettings, dd as Page, dh as Pages, bP as ParagraphData, aU as PartySize, cX as PaymentPolicy, cY as PaymentPolicyOptionsOneOf, aw as PaymentPolicyType, fW as PaymentPolicyTypeWithLiterals, cV as PerGuestOptions, bR as Permissions, a7 as Placement, aG as PlacementType, g4 as PlacementTypeWithLiterals, fx as PlacementWithLiterals, cm as PlaybackOptions, bd as PluginContainerData, P as PluginContainerDataAlignment, f7 as PluginContainerDataAlignmentWithLiterals, be as PluginContainerDataWidth, bf as PluginContainerDataWidthDataOneOf, b$ as Poll, bQ as PollData, c0 as PollDataLayout, bZ as PollDesign, bX as PollDesignBackground, bY as PollDesignBackgroundBackgroundOneOf, a1 as PollDesignBackgroundType, fr as PollDesignBackgroundTypeWithLiterals, bU as PollLayout, a0 as PollLayoutDirection, fq as PollLayoutDirectionWithLiterals, $ as PollLayoutType, fp as PollLayoutTypeWithLiterals, bT as PollSettings, a4 as Position, fu as PositionWithLiterals, ck as PricingData, aZ as PrivacyPolicy, a_ as PrivacyPolicyValueOneOf, en as Properties, eC as PropertiesChange, ds as QueryExperiencesRequest, dx as QueryExperiencesResponse, dJ as RangeAggregation, dS as RangeAggregationResult, dF as RangeBucket, d_ as RangeResult, dW as RangeResults, R as Recurrence, f2 as RecurrenceWithLiterals, bl as Rel, c_ as ReservationForm, a6 as Resizing, fw as ResizingWithLiterals, aI as ResolutionMethod, g6 as ResolutionMethodWithLiterals, an as ResponsivenessBehaviour, fN as ResponsivenessBehaviourWithLiterals, eJ as RestoreInfo, e2 as Results, ci as RibbonStyles, b3 as RichContent, dK as ScalarAggregation, d$ as ScalarResult, aB as ScalarType, f$ as ScalarTypeWithLiterals, ap as Scaling, fP as ScalingWithLiterals, dP as SearchDetails, aF as SearchDetailsMode, g3 as SearchDetailsModeWithLiterals, dA as SearchExperiencesRequest, d6 as SeoSchema, d5 as SeoSettings, d9 as Settings, cI as ShapeData, cJ as ShapeDataStyles, eE as SiteCloned, eD as SiteCreated, em as SitePropertiesEvent, el as SitePropertiesNotification, cP as SmartBlockCellData, cO as SmartBlockData, au as SmartBlockDataType, fU as SmartBlockDataTypeWithLiterals, az as SortDirection, fZ as SortDirectionWithLiterals, ax as SortOrder, fX as SortOrderWithLiterals, ay as SortType, fY as SortTypeWithLiterals, dv as Sorting, Q as Source, fk as SourceWithLiterals, ev as SpecialHourPeriod, aM as SpecificTablesOptions, bg as Spoiler, ca as SpoilerData, aP as StartDaysAndTimes, w as StartDaysAndTimesDayOfWeek, f1 as StartDaysAndTimesDayOfWeekWithLiterals, b9 as Stop, bi as Styles, bJ as StylesBorder, X as StylesPosition, fl as StylesPositionWithLiterals, ex as SupportedLanguage, aK as Table, r as TableAssignmentType, eZ as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, eY as TableAvailabilityTypeWithLiterals, cs as TableCellData, aL as TableCombination, cq as TableData, c$ as TableManagement, s as TableManagementMode, e_ as TableManagementModeWithLiterals, d0 as TableManagementOptionsOneOf, d8 as Tag, d4 as TagList, d3 as Tags, dj as TagsModified, A as Target, f9 as TargetWithLiterals, a$ as TermsAndConditions, b0 as TermsAndConditionsValueOneOf, C as TextAlignment, fa as TextAlignmentWithLiterals, c2 as TextData, cU as TextNodeStyle, bn as TextStyle, bC as Thumbnails, J as ThumbnailsAlignment, fi as ThumbnailsAlignmentWithLiterals, eu as TimePeriod, cN as TocData, ez as Translation, a8 as Type, fy as TypeWithLiterals, de as URI, di as URIs, u as Unit, e$ as UnitWithLiterals, dq as UpdateExperienceRequest, dr as UpdateExperienceResponse, dH as ValueAggregation, dI as ValueAggregationOptionsOneOf, dR as ValueAggregationResult, dZ as ValueResult, dV as ValueResults, ae as VerticalAlignment, am as VerticalAlignmentAlignment, fM as VerticalAlignmentAlignmentWithLiterals, fE as VerticalAlignmentWithLiterals, bw as Video, cl as VideoData, V as ViewMode, fe as ViewModeWithLiterals, Z as ViewRole, fn as ViewRoleWithLiterals, _ as VoteRole, fo as VoteRoleWithLiterals, aJ as WebhookIdentityType, g7 as WebhookIdentityTypeWithLiterals, aQ as WeeklyOptions, D as Width, W as WidthType, f6 as WidthTypeWithLiterals, fc as WidthWithLiterals, eX as utils } from './table-reservations-v1-experience-experiences.universal-BqhRReXL.js';
2
+ import { E as Experience, G as GetExperienceBySlugResponse, U as UpdateExperience, a as UpdateExperienceApplicationErrors, b as ExperienceSearch, S as SearchExperiencesResponse, M as MaskedExperience, B as BulkUpdateExperiencesOptions, c as BulkUpdateExperiencesResponse, d as BulkUpdateExperiencesApplicationErrors, e as BulkUpdateExperienceTagsOptions, f as BulkUpdateExperienceTagsResponse, g as BulkUpdateExperienceTagsApplicationErrors, h as BulkUpdateExperienceTagsByFilterOptions, i as BulkUpdateExperienceTagsByFilterResponse, j as BulkUpdateExperienceTagsByFilterApplicationErrors, k as BulkArchiveExperiencesResponse, l as BulkUnarchiveExperiencesResponse, m as ExperienceCreatedEnvelope, n as ExperienceTagsModifiedEnvelope, o as ExperienceUpdatedEnvelope, p as ExperiencesQueryBuilder, q as ExperienceQuery, t as typedQueryExperiences } from './table-reservations-v1-experience-experiences.universal-Cqe_JOHB.js';
3
+ export { eT as AccountInfo, eW as AccountInfoMetadata, eP as ActionEvent, et as Address, eu as AddressHint, dG as Aggregation, dT as AggregationData, dH as AggregationKindOneOf, ea as AggregationResults, eb as AggregationResultsResultOneOf, d_ as AggregationResultsScalarResult, aF as AggregationType, g6 as AggregationTypeWithLiterals, aa as Alignment, fD as AlignmentWithLiterals, c7 as AnchorData, df as App, cf as AppEmbedData, cg as AppEmbedDataAppDataOneOf, ac as AppType, fF as AppTypeWithLiterals, ee as ApplicationError, aX as Approval, a6 as AspectRatio, fz as AspectRatioWithLiterals, cA as AudioData, cJ as Backdrop, am as BackdropType, fP as BackdropTypeWithLiterals, bd as Background, bY as BackgroundGradient, cP as BackgroundImage, x as BackgroundType, f7 as BackgroundTypeWithLiterals, cI as Banner, al as BannerPosition, fO as BannerPositionWithLiterals, eU as BaseEventMetadata, cD as BlockquoteData, ch as BookingData, bb as Border, cx as BorderColors, cy as BorderWidths, eg as BulkActionMetadata, ek as BulkArchiveExperiencesRequest, el as BulkArchiveExperiencesResult, em as BulkUnarchiveExperiencesRequest, en as BulkUnarchiveExperiencesResult, ej as BulkUpdateExperienceTagsByFilterRequest, eh as BulkUpdateExperienceTagsRequest, ei as BulkUpdateExperienceTagsResult, ec as BulkUpdateExperiencesRequest, ef as BulkUpdateExperiencesResult, cC as BulletedListData, ew as BusinessSchedule, b8 as ButtonData, z as ButtonDataType, fb as ButtonDataTypeWithLiterals, cj as ButtonStyles, cE as CaptionData, cN as CardData, cO as CardDataBackground, as as CardDataBackgroundType, fV as CardDataBackgroundTypeWithLiterals, cm as CardStyles, er as Categories, cw as CellStyle, eD as ChangeContext, eE as ChangeContextPayloadOneOf, cT as CheckboxListData, bn as CodeBlockData, cs as CollapsibleListData, c8 as ColorData, bc as Colors, aw as ColumnSize, fZ as ColumnSizeWithLiterals, gc as CommonQueryWithEntityContext, gd as CommonSearchWithEntityContext, d4 as Configuration, eB as ConsentPolicy, dn as CreateExperienceRequest, dp as CreateExperienceResponse, I as Crop, fk as CropWithLiterals, dz as CursorPaging, dB as CursorPagingMetadata, dw as CursorQuery, dx as CursorQueryPagingMethodOneOf, dE as CursorSearch, dF as CursorSearchPagingMethodOneOf, dC as Cursors, b2 as CustomFieldDefinition, dj as CustomTag, dO as DateHistogramAggregation, e6 as DateHistogramResult, e8 as DateHistogramResults, aI as DayOfWeek, g9 as DayOfWeekWithLiterals, c5 as Decoration, c6 as DecorationDataOneOf, a2 as DecorationType, fv as DecorationTypeWithLiterals, c3 as Design, ap as DesignTarget, fS as DesignTargetWithLiterals, cu as Dimensions, ae as Direction, fH as DirectionWithLiterals, cZ as DisplayInfo, bp as DividerData, F as DividerDataAlignment, fg as DividerDataAlignmentWithLiterals, cW as DocumentStyle, eJ as DomainEvent, eK as DomainEventBodyOneOf, b3 as EmailMarketingCheckbox, cq as EmbedData, eI as Empty, eL as EntityCreatedEvent, eO as EntityDeletedEvent, eN as EntityUpdatedEvent, aT as Entry, aU as EntryRecurrenceOptionsOneOf, ci as EventData, eV as EventMetadata, eY as ExperienceQuerySpec, eZ as ExperienceSearchSpec, eX as ExperiencesQueryResult, d5 as ExtendedFields, di as File, bq as FileData, br as FileSource, bs as FileSourceDataOneOf, cd as FontFamilyData, cb as FontSizeData, a3 as FontType, fw as FontTypeWithLiterals, bF as GIF, bE as GIFData, K as GIFType, fm as GIFTypeWithLiterals, bu as GalleryData, bA as GalleryOptions, bB as GalleryOptionsLayout, ev as GeoCoordinates, ds as GetExperienceBySlugRequest, dq as GetExperienceRequest, dr as GetExperienceResponse, b9 as Gradient, y as GradientType, f8 as GradientTypeWithLiterals, e7 as GroupByValueResults, bH as HTMLData, bI as HTMLDataDataOneOf, bG as HeadingData, bi as Height, eR as IdentificationData, eS as IdentificationDataIdOneOf, bw as Image, bJ as ImageData, bM as ImageDataCrop, bL as ImageDataStyles, ai as ImagePosition, ar as ImagePositionPosition, fU as ImagePositionPositionWithLiterals, fL as ImagePositionWithLiterals, ah as ImageScalingScaling, fK as ImageScalingScalingWithLiterals, ck as ImageStyles, dJ as IncludeMissingValuesOptions, au as Indentation, fX as IndentationWithLiterals, ad as InitialExpandedItems, fG as InitialExpandedItemsWithLiterals, aE as Interval, g5 as IntervalWithLiterals, dd as InvalidateCache, de as InvalidateCacheGetByOneOf, by as Item, bz as ItemDataOneOf, ed as ItemMetadata, bC as ItemStyle, da as Keyword, ab as Layout, cK as LayoutCellData, cF as LayoutData, cG as LayoutDataBackground, cH as LayoutDataBackgroundImage, aj as LayoutDataBackgroundType, fM as LayoutDataBackgroundTypeWithLiterals, H as LayoutType, fi as LayoutTypeWithLiterals, fE as LayoutWithLiterals, L as LineStyle, fe as LineStyleWithLiterals, bk as Link, c9 as LinkData, bl as LinkDataOneOf, bN as LinkPreviewData, bO as LinkPreviewDataStyles, cU as ListItemNodeData, at as ListStyle, fW as ListStyleWithLiterals, cz as ListValue, es as Locale, bP as MapData, bQ as MapSettings, Y as MapType, fp as MapTypeWithLiterals, aY as MaxGuests, bv as Media, ca as MentionData, eQ as MessageEnvelope, cV as Metadata, aB as MissingValues, g2 as MissingValuesWithLiterals, v as Mode, f3 as ModeWithLiterals, ez as Multilingual, dR as NestedAggregation, dP as NestedAggregationItem, dQ as NestedAggregationItemKindOneOf, dW as NestedAggregationResults, dX as NestedAggregationResultsResultOneOf, aD as NestedAggregationType, g4 as NestedAggregationTypeWithLiterals, e3 as NestedResultValue, e4 as NestedResultValueResultOneOf, e9 as NestedResults, d$ as NestedValueAggregationResult, b5 as Node, b6 as NodeDataOneOf, b7 as NodeStyle, N as NodeType, f6 as NodeTypeWithLiterals, aW as NoticePeriod, ag as NullValue, fJ as NullValueWithLiterals, cr as Oembed, aO as OnOptions, aP as OnOptionsOptionsOneOf, aS as OneTimeOptions, d0 as OnlineReservations, aZ as OnlineReservationsBusinessSchedule, bU as Option, c0 as OptionDesign, bX as OptionLayout, cB as OrderedListData, O as Orientation, fj as OrientationWithLiterals, ak as Origin, fN as OriginWithLiterals, bt as PDFSettings, dg as Page, dk as Pages, bR as ParagraphData, aV as PartySize, c_ as PaymentPolicy, c$ as PaymentPolicyOptionsOneOf, ax as PaymentPolicyType, f_ as PaymentPolicyTypeWithLiterals, cY as PerGuestOptions, bT as Permissions, a8 as Placement, aH as PlacementType, g8 as PlacementTypeWithLiterals, fB as PlacementWithLiterals, cp as PlaybackOptions, be as PluginContainerData, P as PluginContainerDataAlignment, fa as PluginContainerDataAlignmentWithLiterals, bf as PluginContainerDataWidth, bg as PluginContainerDataWidthDataOneOf, c1 as Poll, bS as PollData, c2 as PollDataLayout, b$ as PollDesign, bZ as PollDesignBackground, b_ as PollDesignBackgroundBackgroundOneOf, a1 as PollDesignBackgroundType, fu as PollDesignBackgroundTypeWithLiterals, bW as PollLayout, a0 as PollLayoutDirection, ft as PollLayoutDirectionWithLiterals, $ as PollLayoutType, fs as PollLayoutTypeWithLiterals, bV as PollSettings, a5 as Position, fy as PositionWithLiterals, cn as PricingData, a_ as PrivacyPolicy, a$ as PrivacyPolicyValueOneOf, eq as Properties, eF as PropertiesChange, dv as QueryExperiencesRequest, dA as QueryExperiencesResponse, dM as RangeAggregation, dV as RangeAggregationResult, dI as RangeBucket, e1 as RangeResult, dZ as RangeResults, R as Recurrence, f5 as RecurrenceWithLiterals, bm as Rel, d1 as ReservationForm, a7 as Resizing, fA as ResizingWithLiterals, aJ as ResolutionMethod, ga as ResolutionMethodWithLiterals, ao as ResponsivenessBehaviour, fR as ResponsivenessBehaviourWithLiterals, eM as RestoreInfo, e5 as Results, cl as RibbonStyles, b4 as RichContent, dN as ScalarAggregation, e2 as ScalarResult, aC as ScalarType, g3 as ScalarTypeWithLiterals, aq as Scaling, fT as ScalingWithLiterals, dS as SearchDetails, aG as SearchDetailsMode, g7 as SearchDetailsModeWithLiterals, dD as SearchExperiencesRequest, d9 as SeoSchema, d8 as SeoSettings, dc as Settings, cL as ShapeData, cM as ShapeDataStyles, eH as SiteCloned, eG as SiteCreated, ep as SitePropertiesEvent, eo as SitePropertiesNotification, ce as SketchData, cS as SmartBlockCellData, cR as SmartBlockData, av as SmartBlockDataType, fY as SmartBlockDataTypeWithLiterals, aA as SortDirection, g1 as SortDirectionWithLiterals, ay as SortOrder, f$ as SortOrderWithLiterals, az as SortType, g0 as SortTypeWithLiterals, dy as Sorting, Q as Source, fn as SourceWithLiterals, ey as SpecialHourPeriod, aN as SpecificTablesOptions, bh as Spoiler, cc as SpoilerData, aQ as StartDaysAndTimes, w as StartDaysAndTimesDayOfWeek, f4 as StartDaysAndTimesDayOfWeekWithLiterals, ba as Stop, bj as Styles, bK as StylesBorder, X as StylesPosition, fo as StylesPositionWithLiterals, eA as SupportedLanguage, aL as Table, r as TableAssignmentType, f0 as TableAssignmentTypeWithLiterals, T as TableAvailabilityType, e$ as TableAvailabilityTypeWithLiterals, cv as TableCellData, aM as TableCombination, ct as TableData, d2 as TableManagement, s as TableManagementMode, f1 as TableManagementModeWithLiterals, d3 as TableManagementOptionsOneOf, db as Tag, d7 as TagList, d6 as Tags, dm as TagsModified, A as Target, fc as TargetWithLiterals, b0 as TermsAndConditions, b1 as TermsAndConditionsValueOneOf, C as TextAlignment, fd as TextAlignmentWithLiterals, c4 as TextData, cX as TextNodeStyle, bo as TextStyle, bD as Thumbnails, J as ThumbnailsAlignment, fl as ThumbnailsAlignmentWithLiterals, ex as TimePeriod, cQ as TocData, eC as Translation, a9 as Type, fC as TypeWithLiterals, dh as URI, dl as URIs, u as Unit, f2 as UnitWithLiterals, dt as UpdateExperienceRequest, du as UpdateExperienceResponse, dK as ValueAggregation, dL as ValueAggregationOptionsOneOf, dU as ValueAggregationResult, e0 as ValueResult, dY as ValueResults, a4 as Variant, fx as VariantWithLiterals, af as VerticalAlignment, an as VerticalAlignmentAlignment, fQ as VerticalAlignmentAlignmentWithLiterals, fI as VerticalAlignmentWithLiterals, bx as Video, co as VideoData, V as ViewMode, fh as ViewModeWithLiterals, Z as ViewRole, fq as ViewRoleWithLiterals, _ as VoteRole, fr as VoteRoleWithLiterals, aK as WebhookIdentityType, gb as WebhookIdentityTypeWithLiterals, aR as WeeklyOptions, D as Width, W as WidthType, f9 as WidthTypeWithLiterals, ff as WidthWithLiterals, e_ as utils } from './table-reservations-v1-experience-experiences.universal-Cqe_JOHB.js';
4
4
 
5
5
  declare function createExperience$1(httpClient: HttpClient): CreateExperienceSignature;
6
6
  interface CreateExperienceSignature {