@wix/auto_sdk_table-reservations_experiences 1.0.32 → 1.0.34

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 +36 -3
  2. package/build/cjs/index.js +859 -24
  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 +623 -20
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +283 -45
  8. package/build/cjs/meta.js +607 -20
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/{table-reservations-v1-experience-experiences.universal-CmEg4KfI.d.ts → table-reservations-v1-experience-experiences.universal-D6mHSKCq.d.ts} +325 -51
  11. package/build/es/index.d.mts +36 -3
  12. package/build/es/index.mjs +848 -24
  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 +612 -20
  16. package/build/es/index.typings.mjs.map +1 -1
  17. package/build/es/meta.d.mts +283 -45
  18. package/build/es/meta.mjs +596 -20
  19. package/build/es/meta.mjs.map +1 -1
  20. package/build/es/{table-reservations-v1-experience-experiences.universal-CmEg4KfI.d.mts → table-reservations-v1-experience-experiences.universal-D6mHSKCq.d.mts} +325 -51
  21. package/build/internal/cjs/index.d.ts +36 -3
  22. package/build/internal/cjs/index.js +859 -24
  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 +623 -20
  26. package/build/internal/cjs/index.typings.js.map +1 -1
  27. package/build/internal/cjs/meta.d.ts +283 -45
  28. package/build/internal/cjs/meta.js +607 -20
  29. package/build/internal/cjs/meta.js.map +1 -1
  30. package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-CmEg4KfI.d.ts → table-reservations-v1-experience-experiences.universal-D6mHSKCq.d.ts} +325 -51
  31. package/build/internal/es/index.d.mts +36 -3
  32. package/build/internal/es/index.mjs +848 -24
  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 +612 -20
  36. package/build/internal/es/index.typings.mjs.map +1 -1
  37. package/build/internal/es/meta.d.mts +283 -45
  38. package/build/internal/es/meta.mjs +596 -20
  39. package/build/internal/es/meta.mjs.map +1 -1
  40. package/build/internal/es/{table-reservations-v1-experience-experiences.universal-CmEg4KfI.d.mts → table-reservations-v1-experience-experiences.universal-D6mHSKCq.d.mts} +325 -51
  41. package/package.json +4 -4
@@ -68,19 +68,17 @@ interface TableCombination {
68
68
  _id?: string | null;
69
69
  }
70
70
  declare enum TableAvailabilityType {
71
- UNKNOWN_TABLE_AVAILABILITY_TYPE = "UNKNOWN_TABLE_AVAILABILITY_TYPE",
72
71
  ANY_ONLINE_TABLE = "ANY_ONLINE_TABLE",
73
72
  SPECIFIC_TABLES = "SPECIFIC_TABLES"
74
73
  }
75
74
  /** @enumType */
76
- type TableAvailabilityTypeWithLiterals = TableAvailabilityType | 'UNKNOWN_TABLE_AVAILABILITY_TYPE' | 'ANY_ONLINE_TABLE' | 'SPECIFIC_TABLES';
75
+ type TableAvailabilityTypeWithLiterals = TableAvailabilityType | 'ANY_ONLINE_TABLE' | 'SPECIFIC_TABLES';
77
76
  declare enum TableAssignmentType {
78
- UNKNOWN_ASSIGMENT_TYPE = "UNKNOWN_ASSIGMENT_TYPE",
79
77
  AUTOMATIC = "AUTOMATIC",
80
78
  MANUAL = "MANUAL"
81
79
  }
82
80
  /** @enumType */
83
- type TableAssignmentTypeWithLiterals = TableAssignmentType | 'UNKNOWN_ASSIGMENT_TYPE' | 'AUTOMATIC' | 'MANUAL';
81
+ type TableAssignmentTypeWithLiterals = TableAssignmentType | 'AUTOMATIC' | 'MANUAL';
84
82
  interface SpecificTablesOptions {
85
83
  /** When tables are mandatory for experience they can't be used for standard reservations during experience time. */
86
84
  reservedForExperience?: boolean | null;
@@ -96,12 +94,11 @@ interface SpecificTablesOptions {
96
94
  tableCombinations?: TableCombination[];
97
95
  }
98
96
  declare enum TableManagementMode {
99
- UNKNOWN_MODE = "UNKNOWN_MODE",
100
97
  ON = "ON",
101
98
  OFF = "OFF"
102
99
  }
103
100
  /** @enumType */
104
- type TableManagementModeWithLiterals = TableManagementMode | 'UNKNOWN_MODE' | 'ON' | 'OFF';
101
+ type TableManagementModeWithLiterals = TableManagementMode | 'ON' | 'OFF';
105
102
  interface OnOptions extends OnOptionsOptionsOneOf {
106
103
  /** Specific tables options. */
107
104
  specificTablesOptions?: SpecificTablesOptions;
@@ -116,20 +113,18 @@ interface OnOptionsOptionsOneOf {
116
113
  specificTablesOptions?: SpecificTablesOptions;
117
114
  }
118
115
  declare enum Unit {
119
- UNKNOWN_UNIT = "UNKNOWN_UNIT",
120
116
  MINUTES = "MINUTES",
121
117
  HOURS = "HOURS",
122
118
  DAYS = "DAYS"
123
119
  }
124
120
  /** @enumType */
125
- type UnitWithLiterals = Unit | 'UNKNOWN_UNIT' | 'MINUTES' | 'HOURS' | 'DAYS';
121
+ type UnitWithLiterals = Unit | 'MINUTES' | 'HOURS' | 'DAYS';
126
122
  declare enum Mode {
127
- UNKNOWN_MODE = "UNKNOWN_MODE",
128
123
  AUTOMATIC = "AUTOMATIC",
129
124
  MANUAL = "MANUAL"
130
125
  }
131
126
  /** @enumType */
132
- type ModeWithLiterals = Mode | 'UNKNOWN_MODE' | 'AUTOMATIC' | 'MANUAL';
127
+ type ModeWithLiterals = Mode | 'AUTOMATIC' | 'MANUAL';
133
128
  /** Enumerates the days of the week. */
134
129
  declare enum StartDaysAndTimesDayOfWeek {
135
130
  MONDAY = "MONDAY",
@@ -154,12 +149,11 @@ interface StartDaysAndTimes {
154
149
  time?: string | null;
155
150
  }
156
151
  declare enum Recurrence {
157
- UNKNOWN_RECURRENCE = "UNKNOWN_RECURRENCE",
158
152
  WEEKLY = "WEEKLY",
159
153
  ONE_TIME = "ONE_TIME"
160
154
  }
161
155
  /** @enumType */
162
- type RecurrenceWithLiterals = Recurrence | 'UNKNOWN_RECURRENCE' | 'WEEKLY' | 'ONE_TIME';
156
+ type RecurrenceWithLiterals = Recurrence | 'WEEKLY' | 'ONE_TIME';
163
157
  interface WeeklyOptions {
164
158
  /**
165
159
  * Start date.
@@ -410,6 +404,10 @@ interface Node extends NodeDataOneOf {
410
404
  layoutCellData?: LayoutCellData;
411
405
  /** Data for a shape node. */
412
406
  shapeData?: ShapeData;
407
+ /** Data for a card node. */
408
+ cardData?: CardData;
409
+ /** Data for a table of contents node. */
410
+ tocData?: TocData;
413
411
  /** Node type. Use `APP_EMBED` for nodes that embed content from other Wix apps. Use `EMBED` to embed content in [oEmbed](https://oembed.com/) format. */
414
412
  type?: NodeTypeWithLiterals;
415
413
  /** Node ID. */
@@ -479,6 +477,10 @@ interface NodeDataOneOf {
479
477
  layoutCellData?: LayoutCellData;
480
478
  /** Data for a shape node. */
481
479
  shapeData?: ShapeData;
480
+ /** Data for a card node. */
481
+ cardData?: CardData;
482
+ /** Data for a table of contents node. */
483
+ tocData?: TocData;
482
484
  }
483
485
  declare enum NodeType {
484
486
  PARAGRAPH = "PARAGRAPH",
@@ -515,10 +517,12 @@ declare enum NodeType {
515
517
  CAPTION = "CAPTION",
516
518
  LAYOUT = "LAYOUT",
517
519
  LAYOUT_CELL = "LAYOUT_CELL",
518
- SHAPE = "SHAPE"
520
+ SHAPE = "SHAPE",
521
+ CARD = "CARD",
522
+ TOC = "TOC"
519
523
  }
520
524
  /** @enumType */
521
- type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE';
525
+ type NodeTypeWithLiterals = NodeType | 'PARAGRAPH' | 'TEXT' | 'HEADING' | 'BULLETED_LIST' | 'ORDERED_LIST' | 'LIST_ITEM' | 'BLOCKQUOTE' | 'CODE_BLOCK' | 'VIDEO' | 'DIVIDER' | 'FILE' | 'GALLERY' | 'GIF' | 'HTML' | 'IMAGE' | 'LINK_PREVIEW' | 'MAP' | 'POLL' | 'APP_EMBED' | 'BUTTON' | 'COLLAPSIBLE_LIST' | 'TABLE' | 'EMBED' | 'COLLAPSIBLE_ITEM' | 'COLLAPSIBLE_ITEM_TITLE' | 'COLLAPSIBLE_ITEM_BODY' | 'TABLE_CELL' | 'TABLE_ROW' | 'EXTERNAL' | 'AUDIO' | 'CAPTION' | 'LAYOUT' | 'LAYOUT_CELL' | 'SHAPE' | 'CARD' | 'TOC';
522
526
  interface NodeStyle {
523
527
  /** The top padding value in pixels. */
524
528
  paddingTop?: string | null;
@@ -539,6 +543,55 @@ interface ButtonData {
539
543
  /** Button link details. */
540
544
  link?: Link;
541
545
  }
546
+ /** Background type */
547
+ declare enum BackgroundType {
548
+ /** Solid color background */
549
+ COLOR = "COLOR",
550
+ /** Gradient background */
551
+ GRADIENT = "GRADIENT"
552
+ }
553
+ /** @enumType */
554
+ type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'GRADIENT';
555
+ interface Gradient {
556
+ /** Gradient type. */
557
+ type?: GradientTypeWithLiterals;
558
+ /**
559
+ * Color stops for the gradient.
560
+ * @maxSize 1000
561
+ */
562
+ stops?: Stop[];
563
+ /** Angle in degrees for linear gradient (0-360). */
564
+ angle?: number | null;
565
+ /**
566
+ * Horizontal center position for radial gradient (0-100).
567
+ * @max 100
568
+ */
569
+ centerX?: number | null;
570
+ /**
571
+ * Vertical center position for radial gradient (0-100).
572
+ * @max 100
573
+ */
574
+ centerY?: number | null;
575
+ }
576
+ /** Gradient type. */
577
+ declare enum GradientType {
578
+ /** Linear gradient. */
579
+ LINEAR = "LINEAR",
580
+ /** Radial gradient. */
581
+ RADIAL = "RADIAL"
582
+ }
583
+ /** @enumType */
584
+ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
585
+ /** A single color stop in the gradient. */
586
+ interface Stop {
587
+ /**
588
+ * Stop color as hex value.
589
+ * @format COLOR_HEX
590
+ */
591
+ color?: string | null;
592
+ /** Stop position (0-1). */
593
+ position?: number | null;
594
+ }
542
595
  interface Border {
543
596
  /**
544
597
  * Deprecated: Use `borderWidth` in `styles` instead.
@@ -568,6 +621,18 @@ interface Colors {
568
621
  */
569
622
  background?: string | null;
570
623
  }
624
+ /** Background styling (color or gradient) */
625
+ interface Background {
626
+ /** Background type. */
627
+ type?: BackgroundTypeWithLiterals;
628
+ /**
629
+ * Background color as a hexadecimal value.
630
+ * @format COLOR_HEX
631
+ */
632
+ color?: string | null;
633
+ /** Gradient configuration. */
634
+ gradient?: Gradient;
635
+ }
571
636
  interface PluginContainerData {
572
637
  /** The width of the node when it's displayed. */
573
638
  width?: PluginContainerDataWidth;
@@ -688,17 +753,23 @@ interface Styles {
688
753
  */
689
754
  textColorHover?: string | null;
690
755
  /**
691
- * Background color as a hexadecimal value.
756
+ * Deprecated: Use `background` instead.
692
757
  * @format COLOR_HEX
758
+ * @deprecated
693
759
  */
694
760
  backgroundColor?: string | null;
695
761
  /**
696
- * Background color as a hexadecimal value (hover state).
762
+ * Deprecated: Use `backgroundHover` instead.
697
763
  * @format COLOR_HEX
764
+ * @deprecated
698
765
  */
699
766
  backgroundColorHover?: string | null;
700
767
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
701
768
  buttonSize?: string | null;
769
+ /** Background styling (color or gradient). */
770
+ background?: Background;
771
+ /** Background styling for hover state (color or gradient). */
772
+ backgroundHover?: Background;
702
773
  }
703
774
  interface Link extends LinkDataOneOf {
704
775
  /** The absolute URL for the linked document. */
@@ -1080,6 +1151,8 @@ interface HTMLData extends HTMLDataDataOneOf {
1080
1151
  * @deprecated
1081
1152
  */
1082
1153
  isAdsense?: boolean | null;
1154
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
1155
+ widgetId?: string;
1083
1156
  /** Styling for the HTML node's container. Height property is irrelevant for HTML embeds when autoHeight is set to `true`. */
1084
1157
  containerData?: PluginContainerData;
1085
1158
  /** The type of HTML code. */
@@ -1098,14 +1171,17 @@ interface HTMLDataDataOneOf {
1098
1171
  * @deprecated
1099
1172
  */
1100
1173
  isAdsense?: boolean | null;
1174
+ /** The WixelWidget ID for AI_WIDGET source nodes. */
1175
+ widgetId?: string;
1101
1176
  }
1102
1177
  declare enum Source {
1103
1178
  HTML = "HTML",
1104
1179
  ADSENSE = "ADSENSE",
1105
- AI = "AI"
1180
+ AI = "AI",
1181
+ AI_WIDGET = "AI_WIDGET"
1106
1182
  }
1107
1183
  /** @enumType */
1108
- type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI';
1184
+ type SourceWithLiterals = Source | 'HTML' | 'ADSENSE' | 'AI' | 'AI_WIDGET';
1109
1185
  interface ImageData {
1110
1186
  /** Styling for the image's container. */
1111
1187
  containerData?: PluginContainerData;
@@ -1335,7 +1411,7 @@ interface OptionLayout {
1335
1411
  /** Sets whether to display option images. Defaults to `false`. */
1336
1412
  enableImage?: boolean | null;
1337
1413
  }
1338
- declare enum BackgroundType {
1414
+ declare enum PollDesignBackgroundType {
1339
1415
  /** Color background type */
1340
1416
  COLOR = "COLOR",
1341
1417
  /** Image background type */
@@ -1344,8 +1420,8 @@ declare enum BackgroundType {
1344
1420
  GRADIENT = "GRADIENT"
1345
1421
  }
1346
1422
  /** @enumType */
1347
- type BackgroundTypeWithLiterals = BackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
1348
- interface Gradient {
1423
+ type PollDesignBackgroundTypeWithLiterals = PollDesignBackgroundType | 'COLOR' | 'IMAGE' | 'GRADIENT';
1424
+ interface BackgroundGradient {
1349
1425
  /** The gradient angle in degrees. */
1350
1426
  angle?: number | null;
1351
1427
  /**
@@ -1359,7 +1435,7 @@ interface Gradient {
1359
1435
  */
1360
1436
  lastColor?: string | null;
1361
1437
  }
1362
- interface Background extends BackgroundBackgroundOneOf {
1438
+ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
1363
1439
  /**
1364
1440
  * The background color as a hexademical value.
1365
1441
  * @format COLOR_HEX
@@ -1368,12 +1444,12 @@ interface Background extends BackgroundBackgroundOneOf {
1368
1444
  /** An image to use for the background. */
1369
1445
  image?: Media;
1370
1446
  /** Details for a gradient background. */
1371
- gradient?: Gradient;
1447
+ gradient?: BackgroundGradient;
1372
1448
  /** Background type. For each option, include the relevant details. */
1373
- type?: BackgroundTypeWithLiterals;
1449
+ type?: PollDesignBackgroundTypeWithLiterals;
1374
1450
  }
1375
1451
  /** @oneof */
1376
- interface BackgroundBackgroundOneOf {
1452
+ interface PollDesignBackgroundBackgroundOneOf {
1377
1453
  /**
1378
1454
  * The background color as a hexademical value.
1379
1455
  * @format COLOR_HEX
@@ -1382,11 +1458,11 @@ interface BackgroundBackgroundOneOf {
1382
1458
  /** An image to use for the background. */
1383
1459
  image?: Media;
1384
1460
  /** Details for a gradient background. */
1385
- gradient?: Gradient;
1461
+ gradient?: BackgroundGradient;
1386
1462
  }
1387
1463
  interface PollDesign {
1388
1464
  /** Background styling. */
1389
- background?: Background;
1465
+ background?: PollDesignBackground;
1390
1466
  /** Border radius in pixels. */
1391
1467
  borderRadius?: number | null;
1392
1468
  }
@@ -2069,12 +2145,13 @@ interface CaptionData {
2069
2145
  }
2070
2146
  interface LayoutData {
2071
2147
  /**
2072
- * Background color as a hexadecimal value.
2148
+ * Deprecated: Use `background` instead.
2073
2149
  * @format COLOR_HEX
2150
+ * @deprecated
2074
2151
  */
2075
2152
  backgroundColor?: string | null;
2076
2153
  /** Background image. */
2077
- backgroundImage?: BackgroundImage;
2154
+ backgroundImage?: LayoutDataBackgroundImage;
2078
2155
  /**
2079
2156
  * Border color as a hexadecimal value.
2080
2157
  * @format COLOR_HEX
@@ -2082,15 +2159,16 @@ interface LayoutData {
2082
2159
  borderColor?: string | null;
2083
2160
  /** Border width in pixels. */
2084
2161
  borderWidth?: number | null;
2085
- /** Border */
2162
+ /** Border radius in pixels. */
2086
2163
  borderRadius?: number | null;
2087
2164
  /**
2088
- * Backdrop color as a hexadecimal value.
2165
+ * Deprecated: Use `backdrop` instead.
2089
2166
  * @format COLOR_HEX
2167
+ * @deprecated
2090
2168
  */
2091
2169
  backdropColor?: string | null;
2092
- /** Backdrop image.radius in pixels. */
2093
- backdropImage?: BackgroundImage;
2170
+ /** Backdrop image. */
2171
+ backdropImage?: LayoutDataBackgroundImage;
2094
2172
  /** Backdrop top padding. */
2095
2173
  backdropPaddingTop?: number | null;
2096
2174
  /** Backdrop bottom padding */
@@ -2114,8 +2192,12 @@ interface LayoutData {
2114
2192
  designTarget?: DesignTargetWithLiterals;
2115
2193
  /** Banner configuration. When present, this layout is displayed as a banner. */
2116
2194
  banner?: Banner;
2195
+ /** Background styling (color or gradient). */
2196
+ background?: LayoutDataBackground;
2197
+ /** Backdrop styling (color or gradient). */
2198
+ backdrop?: Backdrop;
2117
2199
  }
2118
- declare enum Scaling {
2200
+ declare enum ImageScalingScaling {
2119
2201
  /** Auto image scaling */
2120
2202
  AUTO = "AUTO",
2121
2203
  /** Contain image scaling */
@@ -2124,7 +2206,7 @@ declare enum Scaling {
2124
2206
  COVER = "COVER"
2125
2207
  }
2126
2208
  /** @enumType */
2127
- type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
2209
+ type ImageScalingScalingWithLiterals = ImageScalingScaling | 'AUTO' | 'CONTAIN' | 'COVER';
2128
2210
  declare enum ImagePosition {
2129
2211
  /** Image positioned at the center */
2130
2212
  CENTER = "CENTER",
@@ -2155,13 +2237,31 @@ declare enum Origin {
2155
2237
  }
2156
2238
  /** @enumType */
2157
2239
  type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
2158
- interface BackgroundImage {
2240
+ /** Background type */
2241
+ declare enum LayoutDataBackgroundType {
2242
+ /** Solid color background */
2243
+ COLOR = "COLOR",
2244
+ /** Gradient background */
2245
+ GRADIENT = "GRADIENT"
2246
+ }
2247
+ /** @enumType */
2248
+ type LayoutDataBackgroundTypeWithLiterals = LayoutDataBackgroundType | 'COLOR' | 'GRADIENT';
2249
+ /** Backdrop type */
2250
+ declare enum BackdropType {
2251
+ /** Solid color backdrop */
2252
+ COLOR = "COLOR",
2253
+ /** Gradient backdrop */
2254
+ GRADIENT = "GRADIENT"
2255
+ }
2256
+ /** @enumType */
2257
+ type BackdropTypeWithLiterals = BackdropType | 'COLOR' | 'GRADIENT';
2258
+ interface LayoutDataBackgroundImage {
2159
2259
  /** Background image. */
2160
2260
  media?: Media;
2161
2261
  /** Background image opacity. */
2162
2262
  opacity?: number | null;
2163
2263
  /** Background image scaling. */
2164
- scaling?: ScalingWithLiterals;
2264
+ scaling?: ImageScalingScalingWithLiterals;
2165
2265
  /** Position of background. Defaults to `CENTER`. */
2166
2266
  position?: ImagePositionWithLiterals;
2167
2267
  }
@@ -2195,6 +2295,30 @@ interface Banner {
2195
2295
  /** Origin of the banner */
2196
2296
  origin?: OriginWithLiterals;
2197
2297
  }
2298
+ /** Background styling (color or gradient) */
2299
+ interface LayoutDataBackground {
2300
+ /** Background type. */
2301
+ type?: LayoutDataBackgroundTypeWithLiterals;
2302
+ /**
2303
+ * Background color as a hexadecimal value.
2304
+ * @format COLOR_HEX
2305
+ */
2306
+ color?: string | null;
2307
+ /** Gradient configuration. */
2308
+ gradient?: Gradient;
2309
+ }
2310
+ /** Backdrop styling (color or gradient) */
2311
+ interface Backdrop {
2312
+ /** Backdrop type. */
2313
+ type?: BackdropTypeWithLiterals;
2314
+ /**
2315
+ * Backdrop color as a hexadecimal value.
2316
+ * @format COLOR_HEX
2317
+ */
2318
+ color?: string | null;
2319
+ /** Gradient configuration. */
2320
+ gradient?: Gradient;
2321
+ }
2198
2322
  interface LayoutCellData {
2199
2323
  /** Size of the cell in 12 columns grid. */
2200
2324
  colSpan?: number | null;
@@ -2216,6 +2340,120 @@ interface ShapeDataStyles {
2216
2340
  /** Map of original color keys to their new color values. */
2217
2341
  colors?: Record<string, string>;
2218
2342
  }
2343
+ interface CardData {
2344
+ /** Background styling (color or gradient). */
2345
+ background?: CardDataBackground;
2346
+ /** Background image. */
2347
+ backgroundImage?: BackgroundImage;
2348
+ }
2349
+ declare enum Scaling {
2350
+ /** Auto image scaling */
2351
+ AUTO = "AUTO",
2352
+ /** Contain image scaling */
2353
+ CONTAIN = "CONTAIN",
2354
+ /** Cover image scaling */
2355
+ COVER = "COVER"
2356
+ }
2357
+ /** @enumType */
2358
+ type ScalingWithLiterals = Scaling | 'AUTO' | 'CONTAIN' | 'COVER';
2359
+ declare enum ImagePositionPosition {
2360
+ /** Image positioned at the center */
2361
+ CENTER = "CENTER",
2362
+ /** Image positioned on the left */
2363
+ CENTER_LEFT = "CENTER_LEFT",
2364
+ /** Image positioned on the right */
2365
+ CENTER_RIGHT = "CENTER_RIGHT",
2366
+ /** Image positioned at the center top */
2367
+ TOP = "TOP",
2368
+ /** Image positioned at the top left */
2369
+ TOP_LEFT = "TOP_LEFT",
2370
+ /** Image positioned at the top right */
2371
+ TOP_RIGHT = "TOP_RIGHT",
2372
+ /** Image positioned at the center bottom */
2373
+ BOTTOM = "BOTTOM",
2374
+ /** Image positioned at the bottom left */
2375
+ BOTTOM_LEFT = "BOTTOM_LEFT",
2376
+ /** Image positioned at the bottom right */
2377
+ BOTTOM_RIGHT = "BOTTOM_RIGHT"
2378
+ }
2379
+ /** @enumType */
2380
+ type ImagePositionPositionWithLiterals = ImagePositionPosition | 'CENTER' | 'CENTER_LEFT' | 'CENTER_RIGHT' | 'TOP' | 'TOP_LEFT' | 'TOP_RIGHT' | 'BOTTOM' | 'BOTTOM_LEFT' | 'BOTTOM_RIGHT';
2381
+ /** Background type */
2382
+ declare enum CardDataBackgroundType {
2383
+ /** Solid color background */
2384
+ COLOR = "COLOR",
2385
+ /** Gradient background */
2386
+ GRADIENT = "GRADIENT"
2387
+ }
2388
+ /** @enumType */
2389
+ type CardDataBackgroundTypeWithLiterals = CardDataBackgroundType | 'COLOR' | 'GRADIENT';
2390
+ /** Background styling (color or gradient) */
2391
+ interface CardDataBackground {
2392
+ /** Background type. */
2393
+ type?: CardDataBackgroundTypeWithLiterals;
2394
+ /**
2395
+ * Background color as a hexadecimal value.
2396
+ * @format COLOR_HEX
2397
+ */
2398
+ color?: string | null;
2399
+ /** Gradient configuration. */
2400
+ gradient?: Gradient;
2401
+ }
2402
+ interface BackgroundImage {
2403
+ /** Background image. */
2404
+ media?: Media;
2405
+ /** Background image opacity. */
2406
+ opacity?: number | null;
2407
+ /** Background image scaling. */
2408
+ scaling?: ScalingWithLiterals;
2409
+ /** Position of background. Defaults to `CENTER`. */
2410
+ position?: ImagePositionPositionWithLiterals;
2411
+ }
2412
+ interface TocData {
2413
+ /** Heading levels included in the table of contents. Default: [1, 2, 3, 4, 5, 6]. */
2414
+ includedHeadings?: number[];
2415
+ /** List style. Default: PLAIN. */
2416
+ listStyle?: ListStyleWithLiterals;
2417
+ /** Optional override for the font size in pixels. */
2418
+ fontSize?: number | null;
2419
+ /** Optional override for the vertical spacing between items in pixels. */
2420
+ itemSpacing?: number | null;
2421
+ /**
2422
+ * Optional override for the text color.
2423
+ * @format COLOR_HEX
2424
+ */
2425
+ color?: string | null;
2426
+ /** Indentation style. Default: NESTED. */
2427
+ indentation?: IndentationWithLiterals;
2428
+ }
2429
+ /** List style. */
2430
+ declare enum ListStyle {
2431
+ /** No markers (default) */
2432
+ PLAIN = "PLAIN",
2433
+ /** Numbered list */
2434
+ NUMBERED = "NUMBERED",
2435
+ /** Alphabetic letters */
2436
+ LETTERS = "LETTERS",
2437
+ /** Roman numerals */
2438
+ ROMAN = "ROMAN",
2439
+ /** Bulleted list */
2440
+ BULLETED = "BULLETED",
2441
+ /** Alphabetical index */
2442
+ ALPHABETICAL_INDEX = "ALPHABETICAL_INDEX",
2443
+ /** Alphabetical index (compact top-row only) */
2444
+ ALPHABETICAL_INDEX_COMPACT = "ALPHABETICAL_INDEX_COMPACT"
2445
+ }
2446
+ /** @enumType */
2447
+ type ListStyleWithLiterals = ListStyle | 'PLAIN' | 'NUMBERED' | 'LETTERS' | 'ROMAN' | 'BULLETED' | 'ALPHABETICAL_INDEX' | 'ALPHABETICAL_INDEX_COMPACT';
2448
+ /** Indentation style. */
2449
+ declare enum Indentation {
2450
+ /** Sub-headings indented under parents (default) */
2451
+ NESTED = "NESTED",
2452
+ /** All items at the same level */
2453
+ FLAT = "FLAT"
2454
+ }
2455
+ /** @enumType */
2456
+ type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
2219
2457
  interface Metadata {
2220
2458
  /** Schema version. */
2221
2459
  version?: number;
@@ -2262,12 +2500,11 @@ interface TextNodeStyle {
2262
2500
  lineHeight?: string | null;
2263
2501
  }
2264
2502
  declare enum PaymentPolicyType {
2265
- UNKNOWN_PAYMENT_POLICY_TYPE = "UNKNOWN_PAYMENT_POLICY_TYPE",
2266
2503
  PER_GUEST = "PER_GUEST",
2267
2504
  FREE = "FREE"
2268
2505
  }
2269
2506
  /** @enumType */
2270
- type PaymentPolicyTypeWithLiterals = PaymentPolicyType | 'UNKNOWN_PAYMENT_POLICY_TYPE' | 'PER_GUEST' | 'FREE';
2507
+ type PaymentPolicyTypeWithLiterals = PaymentPolicyType | 'PER_GUEST' | 'FREE';
2271
2508
  /** Payment per guest policy. */
2272
2509
  interface PerGuestOptions {
2273
2510
  /**
@@ -2970,7 +3207,6 @@ interface DateHistogramAggregation {
2970
3207
  interval?: IntervalWithLiterals;
2971
3208
  }
2972
3209
  declare enum Interval {
2973
- UNKNOWN_INTERVAL = "UNKNOWN_INTERVAL",
2974
3210
  YEAR = "YEAR",
2975
3211
  MONTH = "MONTH",
2976
3212
  WEEK = "WEEK",
@@ -2980,7 +3216,7 @@ declare enum Interval {
2980
3216
  SECOND = "SECOND"
2981
3217
  }
2982
3218
  /** @enumType */
2983
- type IntervalWithLiterals = Interval | 'UNKNOWN_INTERVAL' | 'YEAR' | 'MONTH' | 'WEEK' | 'DAY' | 'HOUR' | 'MINUTE' | 'SECOND';
3219
+ type IntervalWithLiterals = Interval | 'YEAR' | 'MONTH' | 'WEEK' | 'DAY' | 'HOUR' | 'MINUTE' | 'SECOND';
2984
3220
  interface NestedAggregationItem extends NestedAggregationItemKindOneOf {
2985
3221
  /** A value aggregation calculates metrics such as "count" for specific fields within a dataset, providing insights into the overall distribution and key statistics of those values. For example, use a value aggregation to get the number of reservations (count) of each status that have been made on the site. */
2986
3222
  value?: ValueAggregation;
@@ -3346,7 +3582,7 @@ interface BulkArchiveExperiencesRequest {
3346
3582
  * @maxSize 100
3347
3583
  * @format GUID
3348
3584
  */
3349
- experienceIds?: string[];
3585
+ experienceIds: string[];
3350
3586
  }
3351
3587
  interface BulkArchiveExperiencesResponse {
3352
3588
  /**
@@ -3369,7 +3605,7 @@ interface BulkUnarchiveExperiencesRequest {
3369
3605
  * @maxSize 100
3370
3606
  * @format GUID
3371
3607
  */
3372
- experienceIds?: string[];
3608
+ experienceIds: string[];
3373
3609
  }
3374
3610
  interface BulkUnarchiveExperiencesResponse {
3375
3611
  /**
@@ -4104,12 +4340,12 @@ interface ExperiencesQueryBuilder {
4104
4340
  * @param value - Value to compare against.
4105
4341
  * @documentationMaturity preview
4106
4342
  */
4107
- 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' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds', value: any) => ExperiencesQueryBuilder;
4343
+ 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;
4108
4344
  /** @param propertyName - Property whose value is compared with `value`.
4109
4345
  * @param value - Value to compare against.
4110
4346
  * @documentationMaturity preview
4111
4347
  */
4112
- 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' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds', value: any) => ExperiencesQueryBuilder;
4348
+ 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;
4113
4349
  /** @param propertyName - Property whose value is compared with `value`.
4114
4350
  * @param value - Value to compare against.
4115
4351
  * @documentationMaturity preview
@@ -4139,24 +4375,24 @@ interface ExperiencesQueryBuilder {
4139
4375
  * @param values - List of values to compare against.
4140
4376
  * @documentationMaturity preview
4141
4377
  */
4142
- 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' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds', value: any[]) => ExperiencesQueryBuilder;
4378
+ 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;
4143
4379
  /** @param propertyName - Property whose value is compared with `values`.
4144
4380
  * @param values - List of values to compare against.
4145
4381
  * @documentationMaturity preview
4146
4382
  */
4147
4383
  hasAll: (propertyName: 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds', value: any[]) => ExperiencesQueryBuilder;
4148
4384
  /** @documentationMaturity preview */
4149
- 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' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds', value: any) => ExperiencesQueryBuilder;
4385
+ 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;
4150
4386
  /** @documentationMaturity preview */
4151
- 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' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds', value: boolean) => ExperiencesQueryBuilder;
4387
+ 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;
4152
4388
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
4153
4389
  * @documentationMaturity preview
4154
4390
  */
4155
- 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' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds'>) => ExperiencesQueryBuilder;
4391
+ 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;
4156
4392
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
4157
4393
  * @documentationMaturity preview
4158
4394
  */
4159
- 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' | 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds'>) => ExperiencesQueryBuilder;
4395
+ 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;
4160
4396
  /** @param limit - Number of items to return, which is also the `pageSize` of the results object.
4161
4397
  * @documentationMaturity preview
4162
4398
  */
@@ -4194,6 +4430,7 @@ interface ExperienceQuerySpec extends QuerySpec {
4194
4430
  '_id',
4195
4431
  '_updatedDate',
4196
4432
  'configuration.displayInfo.name',
4433
+ 'configuration.tableManagement.onOptions.specificTablesOptions.reservedForExperience',
4197
4434
  'configuration.visible',
4198
4435
  'reservationLocationId'
4199
4436
  ];
@@ -4475,5 +4712,42 @@ interface BulkUpdateExperienceTagsByFilterOptions {
4475
4712
  /** Tags to unassign from the filtered experiences. */
4476
4713
  unassignTags?: Tags;
4477
4714
  }
4715
+ /**
4716
+ * Archives multiple experiences at once.
4717
+ *
4718
+ * **Important:** Archiving an experience automatically sets `configuration.visible` to `false`,
4719
+ * hiding it from the live site. This ensures archived experiences cannot accept new reservations
4720
+ * and are not discoverable by customers.
4721
+ * @param experienceIds - IDs of experiences to archive.
4722
+ * @public
4723
+ * @documentationMaturity preview
4724
+ * @requiredField experienceIds
4725
+ * @permissionId TABLE_RESERVATIONS.EXPERIENCE_ARCHIVE
4726
+ * @applicableIdentity APP
4727
+ * @fqn wix.table_reservations.experience.v1.ExperiencesService.BulkArchiveExperiences
4728
+ */
4729
+ declare function bulkArchiveExperiences(experienceIds: string[]): Promise<NonNullablePaths<BulkArchiveExperiencesResponse, `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>>;
4730
+ /**
4731
+ * Unarchives multiple experiences at once.
4732
+ *
4733
+ * **Important:** Unarchiving only sets `archived` to `false`. It does NOT restore the
4734
+ * `configuration.visible` setting to its pre-archived state. After unarchiving, you must
4735
+ * explicitly update `configuration.visible` to `true` if you want the experience to appear
4736
+ * on the live site again. This safety measure prevents accidentally publishing experiences
4737
+ * that may need review or updates before being made publicly available.
4738
+ *
4739
+ * **Example workflow:**
4740
+ * 1. Call `BulkUnarchiveExperiences` to restore dashboard access
4741
+ * 2. Review and update the experience as needed
4742
+ * 3. Call `UpdateExperience` to set `configuration.visible = true` when ready to publish
4743
+ * @param experienceIds - Experience IDs to unarchive.
4744
+ * @public
4745
+ * @documentationMaturity preview
4746
+ * @requiredField experienceIds
4747
+ * @permissionId TABLE_RESERVATIONS.EXPERIENCE_UNARCHIVE
4748
+ * @applicableIdentity APP
4749
+ * @fqn wix.table_reservations.experience.v1.ExperiencesService.BulkUnarchiveExperiences
4750
+ */
4751
+ 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>>;
4478
4752
 
4479
- export { Placement as $, MapType as A, type BulkUpdateExperienceTagsOptions as B, Crop as C, DividerDataAlignment as D, type Experience as E, ViewRole as F, type GetExperienceBySlugResponse as G, VoteRole as H, PollLayoutType as I, PollLayoutDirection as J, BackgroundType as K, LineStyle as L, Mode as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, DecorationType as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, FontType as X, Position as Y, AspectRatio as Z, Resizing as _, type UpdateExperienceApplicationErrors as a, type LinkDataOneOf as a$, Type as a0, Alignment as a1, Layout as a2, AppType as a3, InitialExpandedItems as a4, Direction as a5, VerticalAlignment as a6, NullValue as a7, Scaling as a8, ImagePosition as a9, type Entry as aA, type EntryRecurrenceOptionsOneOf as aB, type PartySize as aC, type NoticePeriod as aD, type Approval as aE, type MaxGuests as aF, type OnlineReservationsBusinessSchedule as aG, type PrivacyPolicy as aH, type PrivacyPolicyValueOneOf as aI, type TermsAndConditions as aJ, type TermsAndConditionsValueOneOf as aK, type CustomFieldDefinition as aL, type EmailMarketingCheckbox as aM, type RichContent as aN, type Node as aO, type NodeDataOneOf as aP, type NodeStyle as aQ, type ButtonData as aR, type Border as aS, type Colors as aT, type PluginContainerData as aU, type PluginContainerDataWidth as aV, type PluginContainerDataWidthDataOneOf as aW, type Spoiler as aX, type Height as aY, type Styles as aZ, type Link as a_, Origin as aa, VerticalAlignmentAlignment as ab, ResponsivenessBehaviour as ac, DesignTarget as ad, PaymentPolicyType as ae, SortOrder as af, SortType as ag, SortDirection as ah, MissingValues as ai, ScalarType as aj, NestedAggregationType as ak, Interval as al, AggregationType as am, SearchDetailsMode as an, PlacementType as ao, DayOfWeek as ap, ResolutionMethod as aq, WebhookIdentityType as ar, type Table as as, type TableCombination as at, type SpecificTablesOptions as au, type OnOptions as av, type OnOptionsOptionsOneOf as aw, type StartDaysAndTimes as ax, type WeeklyOptions as ay, type OneTimeOptions as az, type ExperienceSearch as b, type PricingData as b$, type Rel as b0, type CodeBlockData as b1, type TextStyle as b2, type DividerData as b3, type FileData as b4, type FileSource as b5, type FileSourceDataOneOf as b6, type PDFSettings as b7, type GalleryData as b8, type Media as b9, type OptionLayout as bA, type Gradient as bB, type Background as bC, type BackgroundBackgroundOneOf as bD, type PollDesign as bE, type OptionDesign as bF, type Poll as bG, type PollDataLayout as bH, type Design as bI, type TextData as bJ, type Decoration as bK, type DecorationDataOneOf as bL, type AnchorData as bM, type ColorData as bN, type LinkData as bO, type MentionData as bP, type FontSizeData as bQ, type SpoilerData as bR, type FontFamilyData as bS, type AppEmbedData as bT, type AppEmbedDataAppDataOneOf as bU, type BookingData as bV, type EventData as bW, type ButtonStyles as bX, type ImageStyles as bY, type RibbonStyles as bZ, type CardStyles as b_, type Image as ba, type Video as bb, type Item as bc, type ItemDataOneOf as bd, type GalleryOptions as be, type GalleryOptionsLayout as bf, type ItemStyle as bg, type Thumbnails as bh, type GIFData as bi, type GIF as bj, type HeadingData as bk, type HTMLData as bl, type HTMLDataDataOneOf as bm, type ImageData as bn, type StylesBorder as bo, type ImageDataStyles as bp, type LinkPreviewData as bq, type LinkPreviewDataStyles as br, type MapData as bs, type MapSettings as bt, type ParagraphData as bu, type PollData as bv, type Permissions as bw, type Option as bx, type PollSettings as by, type PollLayout as bz, type BulkUpdateExperienceTagsResponse as c, type Sorting as c$, type VideoData as c0, type PlaybackOptions as c1, type EmbedData as c2, type Oembed as c3, type CollapsibleListData as c4, type TableData as c5, type Dimensions as c6, type TableCellData as c7, type CellStyle as c8, type BorderColors as c9, type Tags as cA, type TagList as cB, type SeoSettings as cC, type SeoSchema as cD, type Keyword as cE, type Tag as cF, type Settings as cG, type InvalidateCache as cH, type InvalidateCacheGetByOneOf as cI, type App as cJ, type Page as cK, type URI as cL, type File as cM, type CustomTag as cN, type Pages as cO, type URIs as cP, type TagsModified as cQ, type CreateExperienceRequest as cR, type CreateExperienceResponse as cS, type GetExperienceRequest as cT, type GetExperienceResponse as cU, type GetExperienceBySlugRequest as cV, type UpdateExperienceRequest as cW, type UpdateExperienceResponse as cX, type QueryExperiencesRequest as cY, type CursorQuery as cZ, type CursorQueryPagingMethodOneOf as c_, type BorderWidths as ca, type ListValue as cb, type AudioData as cc, type OrderedListData as cd, type BulletedListData as ce, type BlockquoteData as cf, type CaptionData as cg, type LayoutData as ch, type BackgroundImage as ci, type Banner as cj, type LayoutCellData as ck, type ShapeData as cl, type ShapeDataStyles as cm, type Metadata as cn, type DocumentStyle as co, type TextNodeStyle as cp, type PerGuestOptions as cq, type DisplayInfo as cr, type PaymentPolicy as cs, type PaymentPolicyOptionsOneOf as ct, type OnlineReservations as cu, type ReservationForm as cv, type TableManagement as cw, type TableManagementOptionsOneOf as cx, type Configuration as cy, type ExtendedFields as cz, type BulkUpdateExperienceTagsApplicationErrors as d, type TimePeriod as d$, type CursorPaging as d0, type QueryExperiencesResponse as d1, type CursorPagingMetadata as d2, type Cursors as d3, type SearchExperiencesRequest as d4, type CursorSearch as d5, type CursorSearchPagingMethodOneOf as d6, type Aggregation as d7, type AggregationKindOneOf as d8, type RangeBucket as d9, type DateHistogramResult as dA, type GroupByValueResults as dB, type DateHistogramResults as dC, type NestedResults as dD, type AggregationResults as dE, type AggregationResultsResultOneOf as dF, type BulkUpdateExperienceTagsRequest as dG, type ItemMetadata as dH, type ApplicationError as dI, type BulkUpdateExperienceTagsResult as dJ, type BulkActionMetadata as dK, type BulkUpdateExperienceTagsByFilterRequest as dL, type BulkArchiveExperiencesRequest as dM, type BulkArchiveExperiencesResponse as dN, type BulkArchiveExperiencesResult as dO, type BulkUnarchiveExperiencesRequest as dP, type BulkUnarchiveExperiencesResponse as dQ, type BulkUnarchiveExperiencesResult as dR, type SitePropertiesNotification as dS, type SitePropertiesEvent as dT, type Properties as dU, type Categories as dV, type Locale as dW, type Address as dX, type AddressHint as dY, type GeoCoordinates as dZ, type BusinessSchedule as d_, type IncludeMissingValuesOptions as da, type ValueAggregation as db, type ValueAggregationOptionsOneOf as dc, type RangeAggregation as dd, type ScalarAggregation as de, type DateHistogramAggregation as df, type NestedAggregationItem as dg, type NestedAggregationItemKindOneOf as dh, type NestedAggregation as di, type SearchDetails as dj, type AggregationData as dk, type ValueAggregationResult as dl, type RangeAggregationResult as dm, type NestedAggregationResults as dn, type NestedAggregationResultsResultOneOf as dp, type ValueResults as dq, type RangeResults as dr, type AggregationResultsScalarResult as ds, type NestedValueAggregationResult as dt, type ValueResult as du, type RangeResult as dv, type ScalarResult as dw, type NestedResultValue as dx, type NestedResultValueResultOneOf as dy, type Results as dz, type BulkUpdateExperienceTagsByFilterOptions as e, type ResizingWithLiterals as e$, type SpecialHourPeriod as e0, type Multilingual as e1, type SupportedLanguage as e2, type ConsentPolicy as e3, type Translation as e4, type ChangeContext as e5, type ChangeContextPayloadOneOf as e6, type PropertiesChange as e7, type SiteCreated as e8, type SiteCloned as e9, type NodeTypeWithLiterals as eA, type WidthTypeWithLiterals as eB, type PluginContainerDataAlignmentWithLiterals as eC, type ButtonDataTypeWithLiterals as eD, type TargetWithLiterals as eE, type TextAlignmentWithLiterals as eF, type LineStyleWithLiterals as eG, type WidthWithLiterals as eH, type DividerDataAlignmentWithLiterals as eI, type ViewModeWithLiterals as eJ, type LayoutTypeWithLiterals as eK, type OrientationWithLiterals as eL, type CropWithLiterals as eM, type ThumbnailsAlignmentWithLiterals as eN, type GIFTypeWithLiterals as eO, type SourceWithLiterals as eP, type StylesPositionWithLiterals as eQ, type MapTypeWithLiterals as eR, type ViewRoleWithLiterals as eS, type VoteRoleWithLiterals as eT, type PollLayoutTypeWithLiterals as eU, type PollLayoutDirectionWithLiterals as eV, type BackgroundTypeWithLiterals as eW, type DecorationTypeWithLiterals as eX, type FontTypeWithLiterals as eY, type PositionWithLiterals as eZ, type AspectRatioWithLiterals as e_, type Empty as ea, type DomainEvent as eb, type DomainEventBodyOneOf as ec, type EntityCreatedEvent as ed, type RestoreInfo as ee, type EntityUpdatedEvent as ef, type EntityDeletedEvent as eg, type ActionEvent as eh, type MessageEnvelope as ei, type IdentificationData as ej, type IdentificationDataIdOneOf as ek, type AccountInfo as el, type BaseEventMetadata as em, type EventMetadata as en, type AccountInfoMetadata as eo, type ExperiencesQueryResult as ep, type ExperienceQuerySpec as eq, type ExperienceSearchSpec as er, utils as es, type TableAvailabilityTypeWithLiterals as et, type TableAssignmentTypeWithLiterals as eu, type TableManagementModeWithLiterals as ev, type UnitWithLiterals as ew, type ModeWithLiterals as ex, type StartDaysAndTimesDayOfWeekWithLiterals as ey, type RecurrenceWithLiterals as ez, type BulkUpdateExperienceTagsByFilterResponse as f, type PlacementWithLiterals as f0, type TypeWithLiterals as f1, type AlignmentWithLiterals as f2, type LayoutWithLiterals as f3, type AppTypeWithLiterals as f4, type InitialExpandedItemsWithLiterals as f5, type DirectionWithLiterals as f6, type VerticalAlignmentWithLiterals as f7, type NullValueWithLiterals as f8, type ScalingWithLiterals as f9, getExperienceBySlug as fA, updateExperience as fB, queryExperiences as fC, bulkUpdateExperienceTags as fD, bulkUpdateExperienceTagsByFilter as fE, type ImagePositionWithLiterals as fa, type OriginWithLiterals as fb, type VerticalAlignmentAlignmentWithLiterals as fc, type ResponsivenessBehaviourWithLiterals as fd, type DesignTargetWithLiterals as fe, type PaymentPolicyTypeWithLiterals as ff, type SortOrderWithLiterals as fg, type SortTypeWithLiterals as fh, type SortDirectionWithLiterals as fi, type MissingValuesWithLiterals as fj, type ScalarTypeWithLiterals as fk, type NestedAggregationTypeWithLiterals as fl, type IntervalWithLiterals as fm, type AggregationTypeWithLiterals as fn, type SearchDetailsModeWithLiterals as fo, type PlacementTypeWithLiterals as fp, type DayOfWeekWithLiterals as fq, type ResolutionMethodWithLiterals as fr, type WebhookIdentityTypeWithLiterals as fs, type CommonQueryWithEntityContext as ft, type CommonSearchWithEntityContext as fu, onExperienceCreated as fv, onExperienceTagsModified as fw, onExperienceUpdated as fx, createExperience as fy, getExperience as fz, type BulkUpdateExperienceTagsByFilterApplicationErrors as g, type ExperienceCreatedEnvelope as h, type ExperienceTagsModifiedEnvelope as i, type ExperienceUpdatedEnvelope as j, type ExperiencesQueryBuilder as k, type ExperienceQuery as l, TableAssignmentType as m, TableManagementMode as n, Unit as o, StartDaysAndTimesDayOfWeek as p, ButtonDataType as q, Target as r, TextAlignment as s, typedQueryExperiences as t, Width as u, LayoutType as v, ThumbnailsAlignment as w, GIFType as x, Source as y, StylesPosition as z };
4753
+ export { FontType as $, ThumbnailsAlignment as A, type BulkUpdateExperienceTagsOptions as B, Crop as C, DividerDataAlignment as D, type Experience as E, GIFType as F, type GetExperienceBySlugResponse as G, Source as H, StylesPosition as I, MapType as J, ViewRole as K, LineStyle as L, Mode as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, VoteRole as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, PollLayoutType as X, PollLayoutDirection as Y, PollDesignBackgroundType as Z, DecorationType as _, type UpdateExperienceApplicationErrors as a, type NodeStyle as a$, Position as a0, AspectRatio as a1, Resizing as a2, Placement as a3, Type as a4, Alignment as a5, Layout as a6, AppType as a7, InitialExpandedItems as a8, Direction as a9, DayOfWeek as aA, ResolutionMethod as aB, WebhookIdentityType as aC, type Table as aD, type TableCombination as aE, type SpecificTablesOptions as aF, type OnOptions as aG, type OnOptionsOptionsOneOf as aH, type StartDaysAndTimes as aI, type WeeklyOptions as aJ, type OneTimeOptions as aK, type Entry as aL, type EntryRecurrenceOptionsOneOf as aM, type PartySize as aN, type NoticePeriod as aO, type Approval as aP, type MaxGuests as aQ, type OnlineReservationsBusinessSchedule as aR, type PrivacyPolicy as aS, type PrivacyPolicyValueOneOf as aT, type TermsAndConditions as aU, type TermsAndConditionsValueOneOf as aV, type CustomFieldDefinition as aW, type EmailMarketingCheckbox as aX, type RichContent as aY, type Node as aZ, type NodeDataOneOf as a_, VerticalAlignment as aa, NullValue as ab, ImageScalingScaling as ac, ImagePosition as ad, Origin as ae, LayoutDataBackgroundType as af, BackdropType as ag, VerticalAlignmentAlignment as ah, ResponsivenessBehaviour as ai, DesignTarget as aj, Scaling as ak, ImagePositionPosition as al, CardDataBackgroundType as am, ListStyle as an, Indentation as ao, PaymentPolicyType as ap, SortOrder as aq, SortType as ar, SortDirection as as, MissingValues as at, ScalarType as au, NestedAggregationType as av, Interval as aw, AggregationType as ax, SearchDetailsMode as ay, PlacementType as az, type ExperienceSearch as b, type ColorData as b$, type ButtonData as b0, type Gradient as b1, type Stop as b2, type Border as b3, type Colors as b4, type Background as b5, type PluginContainerData as b6, type PluginContainerDataWidth as b7, type PluginContainerDataWidthDataOneOf as b8, type Spoiler as b9, type HTMLDataDataOneOf as bA, type ImageData as bB, type StylesBorder as bC, type ImageDataStyles as bD, type LinkPreviewData as bE, type LinkPreviewDataStyles as bF, type MapData as bG, type MapSettings as bH, type ParagraphData as bI, type PollData as bJ, type Permissions as bK, type Option as bL, type PollSettings as bM, type PollLayout as bN, type OptionLayout as bO, type BackgroundGradient as bP, type PollDesignBackground as bQ, type PollDesignBackgroundBackgroundOneOf as bR, type PollDesign as bS, type OptionDesign as bT, type Poll as bU, type PollDataLayout as bV, type Design as bW, type TextData as bX, type Decoration as bY, type DecorationDataOneOf as bZ, type AnchorData as b_, type Height as ba, type Styles as bb, type Link as bc, type LinkDataOneOf as bd, type Rel as be, type CodeBlockData as bf, type TextStyle as bg, type DividerData as bh, type FileData as bi, type FileSource as bj, type FileSourceDataOneOf as bk, type PDFSettings as bl, type GalleryData as bm, type Media as bn, type Image as bo, type Video as bp, type Item as bq, type ItemDataOneOf as br, type GalleryOptions as bs, type GalleryOptionsLayout as bt, type ItemStyle as bu, type Thumbnails as bv, type GIFData as bw, type GIF as bx, type HeadingData as by, type HTMLData as bz, type BulkUpdateExperienceTagsResponse as c, type InvalidateCache as c$, type LinkData as c0, type MentionData as c1, type FontSizeData as c2, type SpoilerData as c3, type FontFamilyData as c4, type AppEmbedData as c5, type AppEmbedDataAppDataOneOf as c6, type BookingData as c7, type EventData as c8, type ButtonStyles as c9, type LayoutCellData as cA, type ShapeData as cB, type ShapeDataStyles as cC, type CardData as cD, type CardDataBackground as cE, type BackgroundImage as cF, type TocData as cG, type Metadata as cH, type DocumentStyle as cI, type TextNodeStyle as cJ, type PerGuestOptions as cK, type DisplayInfo as cL, type PaymentPolicy as cM, type PaymentPolicyOptionsOneOf as cN, type OnlineReservations as cO, type ReservationForm as cP, type TableManagement as cQ, type TableManagementOptionsOneOf as cR, type Configuration as cS, type ExtendedFields as cT, type Tags as cU, type TagList as cV, type SeoSettings as cW, type SeoSchema as cX, type Keyword as cY, type Tag as cZ, type Settings as c_, type ImageStyles as ca, type RibbonStyles as cb, type CardStyles as cc, type PricingData as cd, type VideoData as ce, type PlaybackOptions as cf, type EmbedData as cg, type Oembed as ch, type CollapsibleListData as ci, type TableData as cj, type Dimensions as ck, type TableCellData as cl, type CellStyle as cm, type BorderColors as cn, type BorderWidths as co, type ListValue as cp, type AudioData as cq, type OrderedListData as cr, type BulletedListData as cs, type BlockquoteData as ct, type CaptionData as cu, type LayoutData as cv, type LayoutDataBackgroundImage as cw, type Banner as cx, type LayoutDataBackground as cy, type Backdrop as cz, type BulkUpdateExperienceTagsApplicationErrors as d, type ItemMetadata as d$, type InvalidateCacheGetByOneOf as d0, type App as d1, type Page as d2, type URI as d3, type File as d4, type CustomTag as d5, type Pages as d6, type URIs as d7, type TagsModified as d8, type CreateExperienceRequest as d9, type DateHistogramAggregation as dA, type NestedAggregationItem as dB, type NestedAggregationItemKindOneOf as dC, type NestedAggregation as dD, type SearchDetails as dE, type AggregationData as dF, type ValueAggregationResult as dG, type RangeAggregationResult as dH, type NestedAggregationResults as dI, type NestedAggregationResultsResultOneOf as dJ, type ValueResults as dK, type RangeResults as dL, type AggregationResultsScalarResult as dM, type NestedValueAggregationResult as dN, type ValueResult as dO, type RangeResult as dP, type ScalarResult as dQ, type NestedResultValue as dR, type NestedResultValueResultOneOf as dS, type Results as dT, type DateHistogramResult as dU, type GroupByValueResults as dV, type DateHistogramResults as dW, type NestedResults as dX, type AggregationResults as dY, type AggregationResultsResultOneOf as dZ, type BulkUpdateExperienceTagsRequest as d_, type CreateExperienceResponse as da, type GetExperienceRequest as db, type GetExperienceResponse as dc, type GetExperienceBySlugRequest as dd, type UpdateExperienceRequest as de, type UpdateExperienceResponse as df, type QueryExperiencesRequest as dg, type CursorQuery as dh, type CursorQueryPagingMethodOneOf as di, type Sorting as dj, type CursorPaging as dk, type QueryExperiencesResponse as dl, type CursorPagingMetadata as dm, type Cursors as dn, type SearchExperiencesRequest as dp, type CursorSearch as dq, type CursorSearchPagingMethodOneOf as dr, type Aggregation as ds, type AggregationKindOneOf as dt, type RangeBucket as du, type IncludeMissingValuesOptions as dv, type ValueAggregation as dw, type ValueAggregationOptionsOneOf as dx, type RangeAggregation as dy, type ScalarAggregation as dz, type BulkUpdateExperienceTagsByFilterOptions as e, type WidthWithLiterals as e$, type ApplicationError as e0, type BulkUpdateExperienceTagsResult as e1, type BulkActionMetadata as e2, type BulkUpdateExperienceTagsByFilterRequest as e3, type BulkArchiveExperiencesRequest as e4, type BulkArchiveExperiencesResult as e5, type BulkUnarchiveExperiencesRequest as e6, type BulkUnarchiveExperiencesResult as e7, type SitePropertiesNotification as e8, type SitePropertiesEvent as e9, type MessageEnvelope as eA, type IdentificationData as eB, type IdentificationDataIdOneOf as eC, type AccountInfo as eD, type BaseEventMetadata as eE, type EventMetadata as eF, type AccountInfoMetadata as eG, type ExperiencesQueryResult as eH, type ExperienceQuerySpec as eI, type ExperienceSearchSpec as eJ, utils as eK, type TableAvailabilityTypeWithLiterals as eL, type TableAssignmentTypeWithLiterals as eM, type TableManagementModeWithLiterals as eN, type UnitWithLiterals as eO, type ModeWithLiterals as eP, type StartDaysAndTimesDayOfWeekWithLiterals as eQ, type RecurrenceWithLiterals as eR, type NodeTypeWithLiterals as eS, type BackgroundTypeWithLiterals as eT, type GradientTypeWithLiterals as eU, type WidthTypeWithLiterals as eV, type PluginContainerDataAlignmentWithLiterals as eW, type ButtonDataTypeWithLiterals as eX, type TargetWithLiterals as eY, type TextAlignmentWithLiterals as eZ, type LineStyleWithLiterals as e_, type Properties as ea, type Categories as eb, type Locale as ec, type Address as ed, type AddressHint as ee, type GeoCoordinates as ef, type BusinessSchedule as eg, type TimePeriod as eh, type SpecialHourPeriod as ei, type Multilingual as ej, type SupportedLanguage as ek, type ConsentPolicy as el, type Translation as em, type ChangeContext as en, type ChangeContextPayloadOneOf as eo, type PropertiesChange as ep, type SiteCreated as eq, type SiteCloned as er, type Empty as es, type DomainEvent as et, type DomainEventBodyOneOf as eu, type EntityCreatedEvent as ev, type RestoreInfo as ew, type EntityUpdatedEvent as ex, type EntityDeletedEvent as ey, type ActionEvent as ez, type BulkUpdateExperienceTagsByFilterResponse as f, getExperienceBySlug as f$, type DividerDataAlignmentWithLiterals as f0, type ViewModeWithLiterals as f1, type LayoutTypeWithLiterals as f2, type OrientationWithLiterals as f3, type CropWithLiterals as f4, type ThumbnailsAlignmentWithLiterals as f5, type GIFTypeWithLiterals as f6, type SourceWithLiterals as f7, type StylesPositionWithLiterals as f8, type MapTypeWithLiterals as f9, type DesignTargetWithLiterals as fA, type ScalingWithLiterals as fB, type ImagePositionPositionWithLiterals as fC, type CardDataBackgroundTypeWithLiterals as fD, type ListStyleWithLiterals as fE, type IndentationWithLiterals as fF, type PaymentPolicyTypeWithLiterals as fG, type SortOrderWithLiterals as fH, type SortTypeWithLiterals as fI, type SortDirectionWithLiterals as fJ, type MissingValuesWithLiterals as fK, type ScalarTypeWithLiterals as fL, type NestedAggregationTypeWithLiterals as fM, type IntervalWithLiterals as fN, type AggregationTypeWithLiterals as fO, type SearchDetailsModeWithLiterals as fP, type PlacementTypeWithLiterals as fQ, type DayOfWeekWithLiterals as fR, type ResolutionMethodWithLiterals as fS, type WebhookIdentityTypeWithLiterals as fT, type CommonQueryWithEntityContext as fU, type CommonSearchWithEntityContext as fV, onExperienceCreated as fW, onExperienceTagsModified as fX, onExperienceUpdated as fY, createExperience as fZ, getExperience as f_, type ViewRoleWithLiterals as fa, type VoteRoleWithLiterals as fb, type PollLayoutTypeWithLiterals as fc, type PollLayoutDirectionWithLiterals as fd, type PollDesignBackgroundTypeWithLiterals as fe, type DecorationTypeWithLiterals as ff, type FontTypeWithLiterals as fg, type PositionWithLiterals as fh, type AspectRatioWithLiterals as fi, type ResizingWithLiterals as fj, type PlacementWithLiterals as fk, type TypeWithLiterals as fl, type AlignmentWithLiterals as fm, type LayoutWithLiterals as fn, type AppTypeWithLiterals as fo, type InitialExpandedItemsWithLiterals as fp, type DirectionWithLiterals as fq, type VerticalAlignmentWithLiterals as fr, type NullValueWithLiterals as fs, type ImageScalingScalingWithLiterals as ft, type ImagePositionWithLiterals as fu, type OriginWithLiterals as fv, type LayoutDataBackgroundTypeWithLiterals as fw, type BackdropTypeWithLiterals as fx, type VerticalAlignmentAlignmentWithLiterals as fy, type ResponsivenessBehaviourWithLiterals as fz, type BulkUpdateExperienceTagsByFilterApplicationErrors as g, updateExperience as g0, queryExperiences as g1, bulkUpdateExperienceTags as g2, bulkUpdateExperienceTagsByFilter as g3, bulkArchiveExperiences as g4, bulkUnarchiveExperiences as g5, type BulkArchiveExperiencesResponse as h, type BulkUnarchiveExperiencesResponse as i, type ExperienceCreatedEnvelope as j, type ExperienceTagsModifiedEnvelope as k, type ExperienceUpdatedEnvelope as l, type ExperiencesQueryBuilder as m, type ExperienceQuery as n, TableAssignmentType as o, TableManagementMode as p, Unit as q, StartDaysAndTimesDayOfWeek as r, BackgroundType as s, typedQueryExperiences as t, GradientType as u, ButtonDataType as v, Target as w, TextAlignment as x, Width as y, LayoutType as z };