@wix/auto_sdk_table-reservations_experiences 1.0.44 → 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 +551 -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 +395 -5
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +60 -34
  8. package/build/cjs/meta.js +395 -5
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/{table-reservations-v1-experience-experiences.universal-Dye8qAKg.d.ts → table-reservations-v1-experience-experiences.universal-Cqe_JOHB.d.ts} +74 -47
  11. package/build/es/index.d.mts +2 -2
  12. package/build/es/index.mjs +551 -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 +395 -5
  16. package/build/es/index.typings.mjs.map +1 -1
  17. package/build/es/meta.d.mts +60 -34
  18. package/build/es/meta.mjs +395 -5
  19. package/build/es/meta.mjs.map +1 -1
  20. package/build/es/{table-reservations-v1-experience-experiences.universal-Dye8qAKg.d.mts → table-reservations-v1-experience-experiences.universal-Cqe_JOHB.d.mts} +74 -47
  21. package/build/internal/cjs/index.d.ts +2 -2
  22. package/build/internal/cjs/index.js +551 -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 +395 -5
  26. package/build/internal/cjs/index.typings.js.map +1 -1
  27. package/build/internal/cjs/meta.d.ts +60 -34
  28. package/build/internal/cjs/meta.js +395 -5
  29. package/build/internal/cjs/meta.js.map +1 -1
  30. package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-Dye8qAKg.d.ts → table-reservations-v1-experience-experiences.universal-Cqe_JOHB.d.ts} +74 -47
  31. package/build/internal/es/index.d.mts +2 -2
  32. package/build/internal/es/index.mjs +551 -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 +395 -5
  36. package/build/internal/es/index.typings.mjs.map +1 -1
  37. package/build/internal/es/meta.d.mts +60 -34
  38. package/build/internal/es/meta.mjs +395 -5
  39. package/build/internal/es/meta.mjs.map +1 -1
  40. package/build/internal/es/{table-reservations-v1-experience-experiences.universal-Dye8qAKg.d.mts → table-reservations-v1-experience-experiences.universal-Cqe_JOHB.d.mts} +74 -47
  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;
@@ -2278,6 +2290,27 @@ declare enum ImagePosition {
2278
2290
  }
2279
2291
  /** @enumType */
2280
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';
2281
2314
  declare enum Origin {
2282
2315
  /** Banner originated from an image */
2283
2316
  IMAGE = "IMAGE",
@@ -2294,15 +2327,6 @@ declare enum BannerPosition {
2294
2327
  }
2295
2328
  /** @enumType */
2296
2329
  type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
2297
- /** Background type */
2298
- declare enum LayoutDataBackgroundType {
2299
- /** Solid color background */
2300
- COLOR = "COLOR",
2301
- /** Gradient background */
2302
- GRADIENT = "GRADIENT"
2303
- }
2304
- /** @enumType */
2305
- type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2306
2330
  /** Backdrop type */
2307
2331
  declare enum BackdropType {
2308
2332
  /** Solid color backdrop */
@@ -2315,12 +2339,19 @@ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
2315
2339
  interface LayoutDataBackgroundImage {
2316
2340
  /** Background image. */
2317
2341
  media?: Media;
2318
- /** 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
+ */
2319
2346
  opacity?: number | null;
2320
2347
  /** Background image scaling. */
2321
2348
  scaling?: ImageScalingScalingWithLiterals;
2322
2349
  /** Position of background. Defaults to `CENTER`. */
2323
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;
2324
2355
  }
2325
2356
  declare enum VerticalAlignmentAlignment {
2326
2357
  /** Top alignment */
@@ -2354,18 +2385,6 @@ interface Banner {
2354
2385
  /** Position of the banner */
2355
2386
  position?: BannerPositionWithLiterals;
2356
2387
  }
2357
- /** Background styling (color or gradient) */
2358
- interface LayoutDataBackground {
2359
- /** Background type. */
2360
- type?: LayoutDataBackgroundTypeWithLiterals;
2361
- /**
2362
- * Background color as a hexadecimal value.
2363
- * @maxLength 19
2364
- */
2365
- color?: string | null;
2366
- /** Gradient configuration. */
2367
- gradient?: Gradient;
2368
- }
2369
2388
  /** Backdrop styling (color or gradient) */
2370
2389
  interface Backdrop {
2371
2390
  /** Backdrop type. */
@@ -2437,15 +2456,6 @@ declare enum ImagePositionPosition {
2437
2456
  }
2438
2457
  /** @enumType */
2439
2458
  type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2440
- /** Background type */
2441
- declare enum CardDataBackgroundType {
2442
- /** Solid color background */
2443
- COLOR = "COLOR",
2444
- /** Gradient background */
2445
- GRADIENT = "GRADIENT"
2446
- }
2447
- /** @enumType */
2448
- type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2449
2459
  /** Background styling (color or gradient) */
2450
2460
  interface CardDataBackground {
2451
2461
  /** Background type. */
@@ -2458,15 +2468,31 @@ interface CardDataBackground {
2458
2468
  /** Gradient configuration. */
2459
2469
  gradient?: Gradient;
2460
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';
2461
2480
  interface BackgroundImage {
2462
2481
  /** Background image. */
2463
2482
  media?: Media;
2464
- /** 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
+ */
2465
2487
  opacity?: number | null;
2466
2488
  /** Background image scaling. */
2467
2489
  scaling?: ScalingWithLiterals;
2468
2490
  /** Position of background. Defaults to `CENTER`. */
2469
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;
2470
2496
  }
2471
2497
  interface TocData {
2472
2498
  /** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
@@ -4566,45 +4592,45 @@ interface ExperiencesQueryBuilder {
4566
4592
  /** @param propertyName - Property whose value is compared with `value`.
4567
4593
  * @param value - Value to compare against.
4568
4594
  */
4569
- 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;
4570
4596
  /** @param propertyName - Property whose value is compared with `value`.
4571
4597
  * @param value - Value to compare against.
4572
4598
  */
4573
- 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;
4574
4600
  /** @param propertyName - Property whose value is compared with `value`.
4575
4601
  * @param value - Value to compare against.
4576
4602
  */
4577
- 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;
4578
4604
  /** @param propertyName - Property whose value is compared with `value`.
4579
4605
  * @param value - Value to compare against.
4580
4606
  */
4581
- 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;
4582
4608
  /** @param propertyName - Property whose value is compared with `value`.
4583
4609
  * @param value - Value to compare against.
4584
4610
  */
4585
- 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;
4586
4612
  /** @param propertyName - Property whose value is compared with `value`.
4587
4613
  * @param value - Value to compare against.
4588
4614
  */
4589
- 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;
4590
4616
  /** @param propertyName - Property whose value is compared with `string`.
4591
4617
  * @param string - String to compare against. Case-insensitive.
4592
4618
  */
4593
- 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;
4594
4620
  /** @param propertyName - Property whose value is compared with `values`.
4595
4621
  * @param values - List of values to compare against.
4596
4622
  */
4597
- 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;
4598
4624
  /** @param propertyName - Property whose value is compared with `values`.
4599
4625
  * @param values - List of values to compare against.
4600
4626
  */
4601
4627
  hasAll: (propertyName: 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds', value: any[]) => ExperiencesQueryBuilder;
4602
- 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;
4603
- 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;
4604
4630
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
4605
- 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;
4606
4632
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
4607
- 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;
4608
4634
  /** @param limit - Number of items to return, which is also the `pageSize` of the results object. */
4609
4635
  limit: (limit: number) => ExperiencesQueryBuilder;
4610
4636
  /** @param cursor - A pointer to specific record */
@@ -4639,7 +4665,8 @@ interface ExperienceQuerySpec extends QuerySpec {
4639
4665
  'configuration.displayInfo.name',
4640
4666
  'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience',
4641
4667
  'configuration.visible',
4642
- 'reservationLocationId'
4668
+ 'reservationLocationId',
4669
+ 'slug'
4643
4670
  ];
4644
4671
  operators: '*';
4645
4672
  sort: 'BOTH';
@@ -4700,7 +4727,7 @@ declare const utils: {
4700
4727
  };
4701
4728
  search: {
4702
4729
  SearchBuilder: () => _wix_sdk_types.SearchBuilder<Experience, ExperienceSearchSpec, ExperienceSearch>;
4703
- Filter: _wix_sdk_types.FilterFactory<Experience, ExperienceSearchSpec>;
4730
+ Filter: _wix_sdk_types.FilterFactory<Experience, ExperienceSearchSpec>; /** Layout settings for the poll and voting options. */
4704
4731
  Sort: _wix_sdk_types.SortFactory<ExperienceSearchSpec>;
4705
4732
  SearchParams: _wix_sdk_types.SearchParamsFactory<ExperienceSearchSpec>;
4706
4733
  Aggregation: _wix_sdk_types.AggregationFactory<ExperienceSearchSpec>;
@@ -4977,4 +5004,4 @@ declare function bulkArchiveExperiences(experienceIds: string[]): Promise<NonNul
4977
5004
  */
4978
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>>;
4979
5006
 
4980
- export { PollLayoutType as $, Target as A, type BulkUpdateExperiencesOptions as B, TextAlignment as C, Width as D, type Experience as E, DividerDataAlignment as F, type GetExperienceBySlugResponse as G, LayoutType as H, Crop as I, ThumbnailsAlignment as J, GIFType as K, LineStyle as L, type MaskedExperience as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, Source as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, StylesPosition as X, MapType as Y, ViewRole as Z, VoteRole as _, type UpdateExperienceApplicationErrors as a, type PrivacyPolicyValueOneOf as a$, PollLayoutDirection as a0, PollDesignBackgroundType as a1, DecorationType as a2, FontType as a3, Variant as a4, Position as a5, AspectRatio as a6, Resizing as a7, Placement as a8, Type as a9, SortDirection as aA, MissingValues as aB, ScalarType as aC, NestedAggregationType as aD, Interval as aE, AggregationType as aF, SearchDetailsMode as aG, PlacementType as aH, DayOfWeek as aI, ResolutionMethod as aJ, WebhookIdentityType as aK, type Table as aL, type TableCombination as aM, type SpecificTablesOptions as aN, type OnOptions as aO, type OnOptionsOptionsOneOf as aP, type StartDaysAndTimes as aQ, type WeeklyOptions as aR, type OneTimeOptions as aS, type Entry as aT, type EntryRecurrenceOptionsOneOf as aU, type PartySize as aV, type NoticePeriod as aW, type Approval as aX, type MaxGuests as aY, type OnlineReservationsBusinessSchedule as aZ, type PrivacyPolicy as a_, Alignment as aa, Layout as ab, AppType as ac, InitialExpandedItems as ad, Direction as ae, VerticalAlignment as af, NullValue as ag, ImageScalingScaling as ah, ImagePosition as ai, Origin as aj, BannerPosition as ak, LayoutDataBackgroundType as al, BackdropType as am, VerticalAlignmentAlignment as an, ResponsivenessBehaviour as ao, DesignTarget as ap, Scaling as aq, ImagePositionPosition as ar, CardDataBackgroundType as as, ListStyle as at, Indentation as au, SmartBlockDataType as av, ColumnSize as aw, PaymentPolicyType as ax, SortOrder as ay, SortType as az, type ExperienceSearch as b, type OptionDesign as b$, type TermsAndConditions as b0, type TermsAndConditionsValueOneOf as b1, type CustomFieldDefinition as b2, type EmailMarketingCheckbox as b3, type RichContent as b4, type Node as b5, type NodeDataOneOf as b6, type NodeStyle as b7, type ButtonData as b8, type Gradient as b9, type GalleryOptions as bA, type GalleryOptionsLayout as bB, type ItemStyle as bC, type Thumbnails as bD, type GIFData as bE, type GIF as bF, type HeadingData as bG, type HTMLData as bH, type HTMLDataDataOneOf as bI, type ImageData as bJ, type StylesBorder as bK, type ImageDataStyles as bL, type LinkPreviewData as bM, type LinkPreviewDataStyles as bN, type MapData as bO, type MapSettings as bP, type ParagraphData as bQ, type PollData as bR, type Permissions as bS, type Option as bT, type PollSettings as bU, type PollLayout as bV, type OptionLayout as bW, type BackgroundGradient as bX, type PollDesignBackground as bY, type PollDesignBackgroundBackgroundOneOf as bZ, type PollDesign as b_, type Stop as ba, type Border as bb, type Colors as bc, type Background as bd, type PluginContainerData as be, type PluginContainerDataWidth as bf, type PluginContainerDataWidthDataOneOf as bg, type Spoiler as bh, type Height as bi, type Styles as bj, type Link as bk, type LinkDataOneOf as bl, type Rel as bm, type CodeBlockData as bn, type TextStyle as bo, type DividerData as bp, type FileData as bq, type FileSource as br, type FileSourceDataOneOf as bs, type PDFSettings as bt, type GalleryData as bu, type Media as bv, type Image as bw, type Video as bx, type Item as by, type ItemDataOneOf as bz, type BulkUpdateExperiencesResponse as c, type OnlineReservations as c$, type Poll as c0, type PollDataLayout as c1, type Design as c2, type TextData as c3, type Decoration as c4, type DecorationDataOneOf as c5, type AnchorData as c6, type ColorData as c7, type LinkData as c8, type MentionData as c9, type OrderedListData as cA, type BulletedListData as cB, type BlockquoteData as cC, type CaptionData as cD, type LayoutData as cE, type LayoutDataBackgroundImage as cF, type Banner as cG, type LayoutDataBackground as cH, type Backdrop as cI, type LayoutCellData as cJ, type ShapeData as cK, type ShapeDataStyles as cL, type CardData as cM, type CardDataBackground as cN, type BackgroundImage as cO, type TocData as cP, type SmartBlockData as cQ, type SmartBlockCellData as cR, type CheckboxListData as cS, type ListItemNodeData as cT, type Metadata as cU, type DocumentStyle as cV, type TextNodeStyle as cW, type PerGuestOptions as cX, type DisplayInfo as cY, type PaymentPolicy as cZ, type PaymentPolicyOptionsOneOf as c_, type FontSizeData as ca, type SpoilerData as cb, type FontFamilyData as cc, type SketchData as cd, type AppEmbedData as ce, type AppEmbedDataAppDataOneOf as cf, type BookingData as cg, type EventData as ch, type ButtonStyles as ci, type ImageStyles as cj, type RibbonStyles as ck, type CardStyles as cl, type PricingData as cm, type VideoData as cn, type PlaybackOptions as co, type EmbedData as cp, type Oembed as cq, type CollapsibleListData as cr, type TableData as cs, type Dimensions as ct, type TableCellData as cu, type CellStyle as cv, type BorderColors as cw, type BorderWidths as cx, type ListValue as cy, type AudioData as cz, type BulkUpdateExperiencesApplicationErrors as d, type ValueResult as d$, type ReservationForm as d0, type TableManagement as d1, type TableManagementOptionsOneOf as d2, type Configuration as d3, type ExtendedFields as d4, type Tags as d5, type TagList as d6, type SeoSettings as d7, type SeoSchema as d8, type Keyword as d9, type CursorPagingMetadata as dA, type Cursors as dB, type SearchExperiencesRequest as dC, type CursorSearch as dD, type CursorSearchPagingMethodOneOf as dE, type Aggregation as dF, type AggregationKindOneOf as dG, type RangeBucket as dH, type IncludeMissingValuesOptions as dI, type ValueAggregation as dJ, type ValueAggregationOptionsOneOf as dK, type RangeAggregation as dL, type ScalarAggregation as dM, type DateHistogramAggregation as dN, type NestedAggregationItem as dO, type NestedAggregationItemKindOneOf as dP, type NestedAggregation as dQ, type SearchDetails as dR, type AggregationData as dS, type ValueAggregationResult as dT, type RangeAggregationResult as dU, type NestedAggregationResults as dV, type NestedAggregationResultsResultOneOf as dW, type ValueResults as dX, type RangeResults as dY, type AggregationResultsScalarResult as dZ, type NestedValueAggregationResult as d_, type Tag as da, type Settings as db, type InvalidateCache as dc, type InvalidateCacheGetByOneOf as dd, type App as de, type Page as df, type URI as dg, type File as dh, type CustomTag as di, type Pages as dj, type URIs as dk, type TagsModified as dl, type CreateExperienceRequest as dm, type CreateExperienceResponse as dn, type GetExperienceRequest as dp, type GetExperienceResponse as dq, type GetExperienceBySlugRequest as dr, type UpdateExperienceRequest as ds, type UpdateExperienceResponse as dt, type QueryExperiencesRequest as du, type CursorQuery as dv, type CursorQueryPagingMethodOneOf as dw, type Sorting as dx, type CursorPaging as dy, type QueryExperiencesResponse as dz, type BulkUpdateExperienceTagsOptions as e, type TableAssignmentTypeWithLiterals as e$, type RangeResult as e0, type ScalarResult as e1, type NestedResultValue as e2, type NestedResultValueResultOneOf as e3, type Results as e4, type DateHistogramResult as e5, type GroupByValueResults as e6, type DateHistogramResults as e7, type NestedResults as e8, type AggregationResults as e9, type ConsentPolicy as eA, type Translation as eB, type ChangeContext as eC, type ChangeContextPayloadOneOf as eD, type PropertiesChange as eE, type SiteCreated as eF, type SiteCloned as eG, type Empty as eH, type DomainEvent as eI, type DomainEventBodyOneOf as eJ, type EntityCreatedEvent as eK, type RestoreInfo as eL, type EntityUpdatedEvent as eM, type EntityDeletedEvent as eN, type ActionEvent as eO, type MessageEnvelope as eP, type IdentificationData as eQ, type IdentificationDataIdOneOf as eR, type AccountInfo as eS, type BaseEventMetadata as eT, type EventMetadata as eU, type AccountInfoMetadata as eV, type ExperiencesQueryResult as eW, type ExperienceQuerySpec as eX, type ExperienceSearchSpec as eY, utils as eZ, type TableAvailabilityTypeWithLiterals as e_, type AggregationResultsResultOneOf as ea, type BulkUpdateExperiencesRequest as eb, type ItemMetadata as ec, type ApplicationError as ed, type BulkUpdateExperiencesResult as ee, type BulkActionMetadata as ef, type BulkUpdateExperienceTagsRequest as eg, type BulkUpdateExperienceTagsResult as eh, type BulkUpdateExperienceTagsByFilterRequest as ei, type BulkArchiveExperiencesRequest as ej, type BulkArchiveExperiencesResult as ek, type BulkUnarchiveExperiencesRequest as el, type BulkUnarchiveExperiencesResult as em, type SitePropertiesNotification as en, type SitePropertiesEvent as eo, type Properties as ep, type Categories as eq, type Locale as er, type Address as es, type AddressHint as et, type GeoCoordinates as eu, type BusinessSchedule as ev, type TimePeriod as ew, type SpecialHourPeriod as ex, type Multilingual as ey, type SupportedLanguage as ez, type BulkUpdateExperienceTagsResponse as f, type SortTypeWithLiterals as f$, type TableManagementModeWithLiterals as f0, type UnitWithLiterals as f1, type ModeWithLiterals as f2, type StartDaysAndTimesDayOfWeekWithLiterals as f3, type RecurrenceWithLiterals as f4, type NodeTypeWithLiterals as f5, type BackgroundTypeWithLiterals as f6, type GradientTypeWithLiterals as f7, type WidthTypeWithLiterals as f8, type PluginContainerDataAlignmentWithLiterals as f9, type PlacementWithLiterals as fA, type TypeWithLiterals as fB, type AlignmentWithLiterals as fC, type LayoutWithLiterals as fD, type AppTypeWithLiterals as fE, type InitialExpandedItemsWithLiterals as fF, type DirectionWithLiterals as fG, type VerticalAlignmentWithLiterals as fH, type NullValueWithLiterals as fI, type ImageScalingScalingWithLiterals as fJ, type ImagePositionWithLiterals as fK, type OriginWithLiterals as fL, type BannerPositionWithLiterals as fM, type LayoutDataBackgroundTypeWithLiterals as fN, type BackdropTypeWithLiterals as fO, type VerticalAlignmentAlignmentWithLiterals as fP, type ResponsivenessBehaviourWithLiterals as fQ, type DesignTargetWithLiterals as fR, type ScalingWithLiterals as fS, type ImagePositionPositionWithLiterals as fT, type CardDataBackgroundTypeWithLiterals as fU, type ListStyleWithLiterals as fV, type IndentationWithLiterals as fW, type SmartBlockDataTypeWithLiterals as fX, type ColumnSizeWithLiterals as fY, type PaymentPolicyTypeWithLiterals as fZ, type SortOrderWithLiterals as f_, type ButtonDataTypeWithLiterals as fa, type TargetWithLiterals as fb, type TextAlignmentWithLiterals as fc, type LineStyleWithLiterals as fd, type WidthWithLiterals as fe, type DividerDataAlignmentWithLiterals as ff, type ViewModeWithLiterals as fg, type LayoutTypeWithLiterals as fh, type OrientationWithLiterals as fi, type CropWithLiterals as fj, type ThumbnailsAlignmentWithLiterals as fk, type GIFTypeWithLiterals as fl, type SourceWithLiterals as fm, type StylesPositionWithLiterals as fn, type MapTypeWithLiterals as fo, type ViewRoleWithLiterals as fp, type VoteRoleWithLiterals as fq, type PollLayoutTypeWithLiterals as fr, type PollLayoutDirectionWithLiterals as fs, type PollDesignBackgroundTypeWithLiterals as ft, type DecorationTypeWithLiterals as fu, type FontTypeWithLiterals as fv, type VariantWithLiterals as fw, type PositionWithLiterals as fx, type AspectRatioWithLiterals as fy, type ResizingWithLiterals as fz, type BulkUpdateExperienceTagsApplicationErrors as g, type SortDirectionWithLiterals as g0, type MissingValuesWithLiterals as g1, type ScalarTypeWithLiterals as g2, type NestedAggregationTypeWithLiterals as g3, type IntervalWithLiterals as g4, type AggregationTypeWithLiterals as g5, type SearchDetailsModeWithLiterals as g6, type PlacementTypeWithLiterals as g7, type DayOfWeekWithLiterals as g8, type ResolutionMethodWithLiterals as g9, type WebhookIdentityTypeWithLiterals as ga, type CommonQueryWithEntityContext as gb, type CommonSearchWithEntityContext as gc, onExperienceCreated as gd, onExperienceTagsModified as ge, onExperienceUpdated as gf, createExperience as gg, getExperience as gh, getExperienceBySlug as gi, updateExperience as gj, queryExperiences as gk, bulkUpdateExperiences as gl, bulkUpdateExperienceTags as gm, bulkUpdateExperienceTagsByFilter as gn, bulkArchiveExperiences as go, bulkUnarchiveExperiences as gp, type BulkUpdateExperienceTagsByFilterOptions as h, type BulkUpdateExperienceTagsByFilterResponse as i, type BulkUpdateExperienceTagsByFilterApplicationErrors as j, type BulkArchiveExperiencesResponse as k, type BulkUnarchiveExperiencesResponse as l, type ExperienceCreatedEnvelope as m, type ExperienceTagsModifiedEnvelope as n, type ExperienceUpdatedEnvelope as o, type ExperiencesQueryBuilder as p, type ExperienceQuery as q, TableAssignmentType as r, TableManagementMode as s, typedQueryExperiences as t, Unit as u, Mode as v, StartDaysAndTimesDayOfWeek as w, BackgroundType as x, GradientType as y, ButtonDataType as z };
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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_table-reservations_experiences",
3
- "version": "1.0.44",
3
+ "version": "1.0.45",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -57,5 +57,5 @@
57
57
  "fqdn": "wix.table_reservations.v1.experience"
58
58
  }
59
59
  },
60
- "falconPackageHash": "5d9b8f6dabeef92c63447421647f86bd8da6a83c5f88e48f492355ec"
60
+ "falconPackageHash": "1bab48b373711ee000941ed8c8780c919a65476b672b9025c836baf0"
61
61
  }