@wix/auto_sdk_table-reservations_experiences 1.0.35 → 1.0.37
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.
- package/build/cjs/index.d.ts +39 -27
- package/build/cjs/index.js +3043 -32
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -3
- package/build/cjs/index.typings.js +3009 -10
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +106 -10
- package/build/cjs/meta.js +54 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +3 -3
- package/build/cjs/schemas.js +2 -2
- package/build/cjs/schemas.js.map +1 -1
- package/build/cjs/{table-reservations-v1-experience-experiences.universal-ZFrZgvqh.d.ts → table-reservations-v1-experience-experiences.universal-CHddGarE.d.ts} +119 -61
- package/build/es/index.d.mts +39 -27
- package/build/es/index.mjs +3031 -32
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -3
- package/build/es/index.typings.mjs +2997 -10
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +106 -10
- package/build/es/meta.mjs +52 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +3 -3
- package/build/es/schemas.mjs +2 -2
- package/build/es/schemas.mjs.map +1 -1
- package/build/es/{table-reservations-v1-experience-experiences.universal-ZFrZgvqh.d.mts → table-reservations-v1-experience-experiences.universal-CHddGarE.d.mts} +119 -61
- package/build/internal/cjs/index.d.ts +39 -27
- package/build/internal/cjs/index.js +3043 -32
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -3
- package/build/internal/cjs/index.typings.js +3009 -10
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +106 -10
- package/build/internal/cjs/meta.js +54 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +3 -3
- package/build/internal/cjs/schemas.js +2 -2
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-ZFrZgvqh.d.ts → table-reservations-v1-experience-experiences.universal-CHddGarE.d.ts} +119 -61
- package/build/internal/es/index.d.mts +39 -27
- package/build/internal/es/index.mjs +3031 -32
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -3
- package/build/internal/es/index.typings.mjs +2997 -10
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +106 -10
- package/build/internal/es/meta.mjs +52 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +3 -3
- package/build/internal/es/schemas.mjs +2 -2
- package/build/internal/es/schemas.mjs.map +1 -1
- package/build/internal/es/{table-reservations-v1-experience-experiences.universal-ZFrZgvqh.d.mts → table-reservations-v1-experience-experiences.universal-CHddGarE.d.mts} +119 -61
- package/package.json +4 -4
|
@@ -408,6 +408,10 @@ interface Node extends NodeDataOneOf {
|
|
|
408
408
|
cardData?: CardData;
|
|
409
409
|
/** Data for a table of contents node. */
|
|
410
410
|
tocData?: TocData;
|
|
411
|
+
/** Data for a smart block node. */
|
|
412
|
+
smartBlockData?: SmartBlockData;
|
|
413
|
+
/** Data for a smart block cell node. */
|
|
414
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
411
415
|
/** 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. */
|
|
412
416
|
type?: NodeTypeWithLiterals;
|
|
413
417
|
/** Node ID. */
|
|
@@ -481,6 +485,10 @@ interface NodeDataOneOf {
|
|
|
481
485
|
cardData?: CardData;
|
|
482
486
|
/** Data for a table of contents node. */
|
|
483
487
|
tocData?: TocData;
|
|
488
|
+
/** Data for a smart block node. */
|
|
489
|
+
smartBlockData?: SmartBlockData;
|
|
490
|
+
/** Data for a smart block cell node. */
|
|
491
|
+
smartBlockCellData?: SmartBlockCellData;
|
|
484
492
|
}
|
|
485
493
|
declare enum NodeType {
|
|
486
494
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -519,10 +527,12 @@ declare enum NodeType {
|
|
|
519
527
|
LAYOUT_CELL = "LAYOUT_CELL",
|
|
520
528
|
SHAPE = "SHAPE",
|
|
521
529
|
CARD = "CARD",
|
|
522
|
-
TOC = "TOC"
|
|
530
|
+
TOC = "TOC",
|
|
531
|
+
SMART_BLOCK = "SMART_BLOCK",
|
|
532
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
523
533
|
}
|
|
524
534
|
/** @enumType */
|
|
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';
|
|
535
|
+
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' | 'SMART_BLOCK' | 'SMART_BLOCK_CELL';
|
|
526
536
|
interface NodeStyle {
|
|
527
537
|
/** The top padding value in pixels. */
|
|
528
538
|
paddingTop?: string | null;
|
|
@@ -1140,6 +1150,8 @@ interface HeadingData {
|
|
|
1140
1150
|
textStyle?: TextStyle;
|
|
1141
1151
|
/** Indentation level from 1-4. */
|
|
1142
1152
|
indentation?: number | null;
|
|
1153
|
+
/** Rendered heading level for SEO/accessibility, overrides the HTML tag when set. */
|
|
1154
|
+
renderedLevel?: number | null;
|
|
1143
1155
|
}
|
|
1144
1156
|
interface HTMLData extends HTMLDataDataOneOf {
|
|
1145
1157
|
/** The URL for the HTML code for the node. */
|
|
@@ -2013,6 +2025,8 @@ interface TableData {
|
|
|
2013
2025
|
* @maxSize 4
|
|
2014
2026
|
*/
|
|
2015
2027
|
cellPadding?: number[];
|
|
2028
|
+
/** Table's alternative text. */
|
|
2029
|
+
altText?: string | null;
|
|
2016
2030
|
}
|
|
2017
2031
|
interface Dimensions {
|
|
2018
2032
|
/** An array representing relative width of each column in relation to the other columns. */
|
|
@@ -2454,6 +2468,88 @@ declare enum Indentation {
|
|
|
2454
2468
|
}
|
|
2455
2469
|
/** @enumType */
|
|
2456
2470
|
type IndentationWithLiterals = Indentation | 'NESTED' | 'FLAT';
|
|
2471
|
+
/** Data for a smart block node. */
|
|
2472
|
+
interface SmartBlockData {
|
|
2473
|
+
/** The type of the smart block. */
|
|
2474
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
2475
|
+
/** Layout orientation. HORIZONTAL or VERTICAL. Optional for variants with fixed orientation. */
|
|
2476
|
+
orientation?: string | null;
|
|
2477
|
+
/** Column size controlling cells per row. */
|
|
2478
|
+
columnSize?: ColumnSizeWithLiterals;
|
|
2479
|
+
/** Border color (for SOLID_JOINED_BOXES variant). */
|
|
2480
|
+
borderColor?: string | null;
|
|
2481
|
+
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2482
|
+
borderWidth?: number | null;
|
|
2483
|
+
/** Border radius in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2484
|
+
borderRadius?: number | null;
|
|
2485
|
+
}
|
|
2486
|
+
/** Layout type of the smart block */
|
|
2487
|
+
declare enum SmartBlockDataType {
|
|
2488
|
+
/** Grid-based layouts with solid box items containing title, body, and icon/image. */
|
|
2489
|
+
SOLID_BOXES = "SOLID_BOXES",
|
|
2490
|
+
/** Numbered boxes. */
|
|
2491
|
+
NUMBERED_BOXES = "NUMBERED_BOXES",
|
|
2492
|
+
/** Statistics display with large numbers/values. */
|
|
2493
|
+
STATS = "STATS",
|
|
2494
|
+
/** Statistics with circular visual elements. */
|
|
2495
|
+
CIRCLE_STATS = "CIRCLE_STATS",
|
|
2496
|
+
/** Staggered/zigzag grid layout with alternating box positions. */
|
|
2497
|
+
SOLID_BOXES_ALTERNATING = "SOLID_BOXES_ALTERNATING",
|
|
2498
|
+
/** Grid layout with boxes visually joined (no gaps, shared container border). */
|
|
2499
|
+
SOLID_JOINED_BOXES = "SOLID_JOINED_BOXES",
|
|
2500
|
+
/** Transparent cells with only a left side line. */
|
|
2501
|
+
SIDE_LINE_TEXT = "SIDE_LINE_TEXT",
|
|
2502
|
+
/** Transparent cells with only a top line. */
|
|
2503
|
+
TOP_LINE_TEXT = "TOP_LINE_TEXT",
|
|
2504
|
+
/** Outlined boxes with a numbered/icon circle at the top. */
|
|
2505
|
+
OUTLINE_BOXES_WITH_TOP_CIRCLE = "OUTLINE_BOXES_WITH_TOP_CIRCLE",
|
|
2506
|
+
/** Large icon bullets with text content. */
|
|
2507
|
+
BIG_BULLETS = "BIG_BULLETS",
|
|
2508
|
+
/** Small dot bullets with text content. */
|
|
2509
|
+
SMALL_BULLETS = "SMALL_BULLETS",
|
|
2510
|
+
/** Arrow icon bullets with text content. */
|
|
2511
|
+
ARROW_BULLETS = "ARROW_BULLETS",
|
|
2512
|
+
/** Process steps with numbered/icon labels above a horizontal line. */
|
|
2513
|
+
PROCESS_STEPS = "PROCESS_STEPS",
|
|
2514
|
+
/** Statistics with bar visual elements. */
|
|
2515
|
+
BAR_STATS = "BAR_STATS"
|
|
2516
|
+
}
|
|
2517
|
+
/** @enumType */
|
|
2518
|
+
type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS';
|
|
2519
|
+
/** Column size controlling how many cells appear per row. */
|
|
2520
|
+
declare enum ColumnSize {
|
|
2521
|
+
/** Up to 4 cells in a row. */
|
|
2522
|
+
SMALL = "SMALL",
|
|
2523
|
+
/** Up to 3 cells in a row (default). */
|
|
2524
|
+
MEDIUM = "MEDIUM",
|
|
2525
|
+
/** Up to 2 cells in a row. */
|
|
2526
|
+
LARGE = "LARGE",
|
|
2527
|
+
/** 1 cell in a row. */
|
|
2528
|
+
EXTRA_LARGE = "EXTRA_LARGE"
|
|
2529
|
+
}
|
|
2530
|
+
/** @enumType */
|
|
2531
|
+
type ColumnSizeWithLiterals = ColumnSize | 'SMALL' | 'MEDIUM' | 'LARGE' | 'EXTRA_LARGE';
|
|
2532
|
+
/** Data for a smart block cell node. */
|
|
2533
|
+
interface SmartBlockCellData {
|
|
2534
|
+
/** Optional label text for the cell (e.g., for stats variants). */
|
|
2535
|
+
label?: string | null;
|
|
2536
|
+
/** Shape file details. */
|
|
2537
|
+
shape?: Media;
|
|
2538
|
+
/** Border color of the cell. */
|
|
2539
|
+
borderColor?: string | null;
|
|
2540
|
+
/** Border width in pixels. */
|
|
2541
|
+
borderWidth?: number | null;
|
|
2542
|
+
/** Border radius in pixels. */
|
|
2543
|
+
borderRadius?: number | null;
|
|
2544
|
+
/** The type of the parent smart block (must match parent). */
|
|
2545
|
+
type?: SmartBlockDataTypeWithLiterals;
|
|
2546
|
+
/** Accent color for non-background variants (e.g., line, bullet, label color). */
|
|
2547
|
+
accentColor?: string | null;
|
|
2548
|
+
/** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
|
|
2549
|
+
backgroundColor?: string | null;
|
|
2550
|
+
/** Shape fill color as a hexadecimal value. */
|
|
2551
|
+
shapeColor?: string | null;
|
|
2552
|
+
}
|
|
2457
2553
|
interface Metadata {
|
|
2458
2554
|
/** Schema version. */
|
|
2459
2555
|
version?: number;
|
|
@@ -3577,7 +3673,7 @@ interface BulkUpdateExperienceTagsByFilterResponse {
|
|
|
3577
3673
|
}
|
|
3578
3674
|
interface BulkArchiveExperiencesRequest {
|
|
3579
3675
|
/**
|
|
3580
|
-
* IDs of experiences to archive.
|
|
3676
|
+
* IDs of the experiences to archive.
|
|
3581
3677
|
* @minSize 1
|
|
3582
3678
|
* @maxSize 100
|
|
3583
3679
|
* @format GUID
|
|
@@ -3586,12 +3682,12 @@ interface BulkArchiveExperiencesRequest {
|
|
|
3586
3682
|
}
|
|
3587
3683
|
interface BulkArchiveExperiencesResponse {
|
|
3588
3684
|
/**
|
|
3589
|
-
*
|
|
3685
|
+
* Experiences updated by the bulk action.
|
|
3590
3686
|
* @minSize 1
|
|
3591
3687
|
* @maxSize 100
|
|
3592
3688
|
*/
|
|
3593
3689
|
results?: BulkArchiveExperiencesResult[];
|
|
3594
|
-
/**
|
|
3690
|
+
/** Bulk action metadata. */
|
|
3595
3691
|
bulkActionMetadata?: BulkActionMetadata;
|
|
3596
3692
|
}
|
|
3597
3693
|
interface BulkArchiveExperiencesResult {
|
|
@@ -3600,7 +3696,7 @@ interface BulkArchiveExperiencesResult {
|
|
|
3600
3696
|
}
|
|
3601
3697
|
interface BulkUnarchiveExperiencesRequest {
|
|
3602
3698
|
/**
|
|
3603
|
-
*
|
|
3699
|
+
* IDs of the experiences to unarchive.
|
|
3604
3700
|
* @minSize 1
|
|
3605
3701
|
* @maxSize 100
|
|
3606
3702
|
* @format GUID
|
|
@@ -3609,12 +3705,12 @@ interface BulkUnarchiveExperiencesRequest {
|
|
|
3609
3705
|
}
|
|
3610
3706
|
interface BulkUnarchiveExperiencesResponse {
|
|
3611
3707
|
/**
|
|
3612
|
-
*
|
|
3708
|
+
* Experiences updated by the bulk action.
|
|
3613
3709
|
* @minSize 1
|
|
3614
3710
|
* @maxSize 100
|
|
3615
3711
|
*/
|
|
3616
3712
|
results?: BulkUnarchiveExperiencesResult[];
|
|
3617
|
-
/**
|
|
3713
|
+
/** Bulk action metadata. */
|
|
3618
3714
|
bulkActionMetadata?: BulkActionMetadata;
|
|
3619
3715
|
}
|
|
3620
3716
|
interface BulkUnarchiveExperiencesResult {
|
|
@@ -4152,7 +4248,6 @@ interface ExperienceCreatedEnvelope {
|
|
|
4152
4248
|
* @webhook
|
|
4153
4249
|
* @eventType wix.table_reservations.v1.experience_created
|
|
4154
4250
|
* @slug created
|
|
4155
|
-
* @documentationMaturity preview
|
|
4156
4251
|
*/
|
|
4157
4252
|
declare function onExperienceCreated(handler: (event: ExperienceCreatedEnvelope) => void | Promise<void>): void;
|
|
4158
4253
|
interface ExperienceTagsModifiedEnvelope {
|
|
@@ -4167,7 +4262,6 @@ interface ExperienceTagsModifiedEnvelope {
|
|
|
4167
4262
|
* @webhook
|
|
4168
4263
|
* @eventType wix.table_reservations.v1.experience_tags_modified
|
|
4169
4264
|
* @slug tags_modified
|
|
4170
|
-
* @documentationMaturity preview
|
|
4171
4265
|
*/
|
|
4172
4266
|
declare function onExperienceTagsModified(handler: (event: ExperienceTagsModifiedEnvelope) => void | Promise<void>): void;
|
|
4173
4267
|
interface ExperienceUpdatedEnvelope {
|
|
@@ -4184,14 +4278,12 @@ interface ExperienceUpdatedEnvelope {
|
|
|
4184
4278
|
* @webhook
|
|
4185
4279
|
* @eventType wix.table_reservations.v1.experience_updated
|
|
4186
4280
|
* @slug updated
|
|
4187
|
-
* @documentationMaturity preview
|
|
4188
4281
|
*/
|
|
4189
4282
|
declare function onExperienceUpdated(handler: (event: ExperienceUpdatedEnvelope) => void | Promise<void>): void;
|
|
4190
4283
|
/**
|
|
4191
4284
|
* Creates an experience.
|
|
4192
4285
|
* @param experience - Experience to create.
|
|
4193
4286
|
* @public
|
|
4194
|
-
* @documentationMaturity preview
|
|
4195
4287
|
* @requiredField experience
|
|
4196
4288
|
* @requiredField experience.configuration
|
|
4197
4289
|
* @requiredField experience.configuration.displayInfo
|
|
@@ -4220,7 +4312,6 @@ declare function createExperience(experience: NonNullablePaths<Experience, `conf
|
|
|
4220
4312
|
* Retrieves an experience.
|
|
4221
4313
|
* @param experienceId - ID of the experience to retrieve.
|
|
4222
4314
|
* @public
|
|
4223
|
-
* @documentationMaturity preview
|
|
4224
4315
|
* @requiredField experienceId
|
|
4225
4316
|
* @permissionId TABLE_RESERVATIONS.EXPERIENCE_READ
|
|
4226
4317
|
* @permissionId TABLE_RESERVATIONS.EXPERIENCE_READ_FULL
|
|
@@ -4235,7 +4326,6 @@ declare function getExperience(experienceId: string): Promise<NonNullablePaths<E
|
|
|
4235
4326
|
* The slug is a URL-friendly identifier for the experience page, derived from the experience display name in kebab-case format. For example, "wine-tasting-event".
|
|
4236
4327
|
* @param slug - Slug of the experience to retrieve.
|
|
4237
4328
|
* @public
|
|
4238
|
-
* @documentationMaturity preview
|
|
4239
4329
|
* @requiredField slug
|
|
4240
4330
|
* @permissionId TABLE_RESERVATIONS.EXPERIENCE_READ
|
|
4241
4331
|
* @permissionId TABLE_RESERVATIONS.EXPERIENCE_READ_FULL
|
|
@@ -4251,7 +4341,6 @@ declare function getExperienceBySlug(slug: string): Promise<NonNullablePaths<Get
|
|
|
4251
4341
|
* This ensures you're working with the latest experience information and prevents unintended overwrites.
|
|
4252
4342
|
* @param _id - Experience ID.
|
|
4253
4343
|
* @public
|
|
4254
|
-
* @documentationMaturity preview
|
|
4255
4344
|
* @requiredField _id
|
|
4256
4345
|
* @requiredField experience
|
|
4257
4346
|
* @requiredField experience.revision
|
|
@@ -4320,7 +4409,6 @@ interface UpdateExperience {
|
|
|
4320
4409
|
* For a detailed list of supported operations, see the [Supported Filters and Sorting](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/wix-restaurants-new/reservations/experiences/sorting-and-filtering) article.
|
|
4321
4410
|
* To learn how to query reservation locations, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language).
|
|
4322
4411
|
* @public
|
|
4323
|
-
* @documentationMaturity preview
|
|
4324
4412
|
* @permissionId TABLE_RESERVATIONS.EXPERIENCE_READ
|
|
4325
4413
|
* @permissionId TABLE_RESERVATIONS.EXPERIENCE_READ_FULL
|
|
4326
4414
|
* @applicableIdentity APP
|
|
@@ -4343,70 +4431,50 @@ interface ExperiencesQueryResult extends QueryCursorResult {
|
|
|
4343
4431
|
interface ExperiencesQueryBuilder {
|
|
4344
4432
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
4345
4433
|
* @param value - Value to compare against.
|
|
4346
|
-
* @documentationMaturity preview
|
|
4347
4434
|
*/
|
|
4348
4435
|
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;
|
|
4349
4436
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
4350
4437
|
* @param value - Value to compare against.
|
|
4351
|
-
* @documentationMaturity preview
|
|
4352
4438
|
*/
|
|
4353
4439
|
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;
|
|
4354
4440
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
4355
4441
|
* @param value - Value to compare against.
|
|
4356
|
-
* @documentationMaturity preview
|
|
4357
4442
|
*/
|
|
4358
4443
|
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;
|
|
4359
4444
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
4360
4445
|
* @param value - Value to compare against.
|
|
4361
|
-
* @documentationMaturity preview
|
|
4362
4446
|
*/
|
|
4363
4447
|
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;
|
|
4364
4448
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
4365
4449
|
* @param value - Value to compare against.
|
|
4366
|
-
* @documentationMaturity preview
|
|
4367
4450
|
*/
|
|
4368
4451
|
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;
|
|
4369
4452
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
4370
4453
|
* @param value - Value to compare against.
|
|
4371
|
-
* @documentationMaturity preview
|
|
4372
4454
|
*/
|
|
4373
4455
|
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;
|
|
4374
4456
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
4375
4457
|
* @param string - String to compare against. Case-insensitive.
|
|
4376
|
-
* @documentationMaturity preview
|
|
4377
4458
|
*/
|
|
4378
4459
|
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;
|
|
4379
4460
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
4380
4461
|
* @param values - List of values to compare against.
|
|
4381
|
-
* @documentationMaturity preview
|
|
4382
4462
|
*/
|
|
4383
4463
|
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;
|
|
4384
4464
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
4385
4465
|
* @param values - List of values to compare against.
|
|
4386
|
-
* @documentationMaturity preview
|
|
4387
4466
|
*/
|
|
4388
4467
|
hasAll: (propertyName: 'tags.privateTags.tagIds' | 'tags.publicTags.tagIds', value: any[]) => ExperiencesQueryBuilder;
|
|
4389
|
-
/** @documentationMaturity preview */
|
|
4390
4468
|
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;
|
|
4391
|
-
/** @documentationMaturity preview */
|
|
4392
4469
|
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;
|
|
4393
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
4394
|
-
* @documentationMaturity preview
|
|
4395
|
-
*/
|
|
4470
|
+
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
4396
4471
|
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;
|
|
4397
|
-
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments.
|
|
4398
|
-
* @documentationMaturity preview
|
|
4399
|
-
*/
|
|
4472
|
+
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
4400
4473
|
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;
|
|
4401
|
-
/** @param limit - Number of items to return, which is also the `pageSize` of the results object.
|
|
4402
|
-
* @documentationMaturity preview
|
|
4403
|
-
*/
|
|
4474
|
+
/** @param limit - Number of items to return, which is also the `pageSize` of the results object. */
|
|
4404
4475
|
limit: (limit: number) => ExperiencesQueryBuilder;
|
|
4405
|
-
/** @param cursor - A pointer to specific record
|
|
4406
|
-
* @documentationMaturity preview
|
|
4407
|
-
*/
|
|
4476
|
+
/** @param cursor - A pointer to specific record */
|
|
4408
4477
|
skipTo: (cursor: string) => ExperiencesQueryBuilder;
|
|
4409
|
-
/** @documentationMaturity preview */
|
|
4410
4478
|
find: () => Promise<ExperiencesQueryResult>;
|
|
4411
4479
|
}
|
|
4412
4480
|
/**
|
|
@@ -4683,7 +4751,6 @@ type ExperienceSearch = {
|
|
|
4683
4751
|
* Synchronously updates [tags](https://dev.wix.com/docs/api-reference/business-management/tags/introduction) on multiple experiences by experience IDs. A tag that appears in both assign and unassign lists is assigned.
|
|
4684
4752
|
* @param experienceIds - List of experience IDs to update tags for.
|
|
4685
4753
|
* @public
|
|
4686
|
-
* @documentationMaturity preview
|
|
4687
4754
|
* @requiredField experienceIds
|
|
4688
4755
|
* @permissionId TABLE_RESERVATIONS.EXPERIENCE_UPDATE_TAGS
|
|
4689
4756
|
* @applicableIdentity APP
|
|
@@ -4702,7 +4769,6 @@ interface BulkUpdateExperienceTagsOptions {
|
|
|
4702
4769
|
* Asynchronously updates [tags](https://dev.wix.com/docs/api-reference/business-management/tags/introduction) on multiple experiences using filter criteria. An empty filter updates all experiences. A tag that appears in both assign and unassign lists is assigned.
|
|
4703
4770
|
* @param filter - Filter criteria to select experiences for tag updates.
|
|
4704
4771
|
* @public
|
|
4705
|
-
* @documentationMaturity preview
|
|
4706
4772
|
* @requiredField filter
|
|
4707
4773
|
* @permissionId TABLE_RESERVATIONS.EXPERIENCE_UPDATE_TAGS
|
|
4708
4774
|
* @applicableIdentity APP
|
|
@@ -4718,14 +4784,13 @@ interface BulkUpdateExperienceTagsByFilterOptions {
|
|
|
4718
4784
|
unassignTags?: Tags;
|
|
4719
4785
|
}
|
|
4720
4786
|
/**
|
|
4721
|
-
* Archives multiple experiences
|
|
4787
|
+
* Archives multiple experiences.
|
|
4788
|
+
*
|
|
4789
|
+
* Archiving an experience sets `configuration.visible` to `false`, preventing it from appearing on the live site and from accepting new reservations.
|
|
4722
4790
|
*
|
|
4723
|
-
*
|
|
4724
|
-
*
|
|
4725
|
-
* and are not discoverable by customers.
|
|
4726
|
-
* @param experienceIds - IDs of experiences to archive.
|
|
4791
|
+
* To unarchive experiences, call [Bulk Unarchive Experiences](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/reservations/experiences/bulk-unarchive-experiences).
|
|
4792
|
+
* @param experienceIds - IDs of the experiences to archive.
|
|
4727
4793
|
* @public
|
|
4728
|
-
* @documentationMaturity preview
|
|
4729
4794
|
* @requiredField experienceIds
|
|
4730
4795
|
* @permissionId TABLE_RESERVATIONS.EXPERIENCE_ARCHIVE
|
|
4731
4796
|
* @applicableIdentity APP
|
|
@@ -4733,21 +4798,14 @@ interface BulkUpdateExperienceTagsByFilterOptions {
|
|
|
4733
4798
|
*/
|
|
4734
4799
|
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>>;
|
|
4735
4800
|
/**
|
|
4736
|
-
* Unarchives multiple experiences
|
|
4801
|
+
* Unarchives multiple experiences.
|
|
4737
4802
|
*
|
|
4738
|
-
*
|
|
4739
|
-
*
|
|
4740
|
-
* explicitly update `configuration.visible` to `true` if you want the experience to appear
|
|
4741
|
-
* on the live site again. This safety measure prevents accidentally publishing experiences
|
|
4742
|
-
* that may need review or updates before being made publicly available.
|
|
4803
|
+
* Unarchiving an experience only sets the archived status to `false`. It doesn't restore `configuration.visible` to its previous state.
|
|
4804
|
+
* To make the experience appear on the live site again, call [Update Experience](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/reservations/experiences/update-experience) to set `configuration.visible` to `true`.
|
|
4743
4805
|
*
|
|
4744
|
-
*
|
|
4745
|
-
*
|
|
4746
|
-
* 2. Review and update the experience as needed
|
|
4747
|
-
* 3. Call `UpdateExperience` to set `configuration.visible = true` when ready to publish
|
|
4748
|
-
* @param experienceIds - Experience IDs to unarchive.
|
|
4806
|
+
* To archive experiences, call [Bulk Archive Experiences](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/reservations/experiences/bulk-archive-experiences).
|
|
4807
|
+
* @param experienceIds - IDs of the experiences to unarchive.
|
|
4749
4808
|
* @public
|
|
4750
|
-
* @documentationMaturity preview
|
|
4751
4809
|
* @requiredField experienceIds
|
|
4752
4810
|
* @permissionId TABLE_RESERVATIONS.EXPERIENCE_UNARCHIVE
|
|
4753
4811
|
* @applicableIdentity APP
|
|
@@ -4755,4 +4813,4 @@ declare function bulkArchiveExperiences(experienceIds: string[]): Promise<NonNul
|
|
|
4755
4813
|
*/
|
|
4756
4814
|
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>>;
|
|
4757
4815
|
|
|
4758
|
-
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 };
|
|
4816
|
+
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 Node 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, SearchDetailsMode as aA, PlacementType as aB, DayOfWeek as aC, ResolutionMethod as aD, WebhookIdentityType as aE, type Table as aF, type TableCombination as aG, type SpecificTablesOptions as aH, type OnOptions as aI, type OnOptionsOptionsOneOf as aJ, type StartDaysAndTimes as aK, type WeeklyOptions as aL, type OneTimeOptions as aM, type Entry as aN, type EntryRecurrenceOptionsOneOf as aO, type PartySize as aP, type NoticePeriod as aQ, type Approval as aR, type MaxGuests as aS, type OnlineReservationsBusinessSchedule as aT, type PrivacyPolicy as aU, type PrivacyPolicyValueOneOf as aV, type TermsAndConditions as aW, type TermsAndConditionsValueOneOf as aX, type CustomFieldDefinition as aY, type EmailMarketingCheckbox as aZ, type RichContent 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, SmartBlockDataType as ap, ColumnSize as aq, PaymentPolicyType as ar, SortOrder as as, SortType as at, SortDirection as au, MissingValues as av, ScalarType as aw, NestedAggregationType as ax, Interval as ay, AggregationType as az, type ExperienceSearch as b, type DecorationDataOneOf as b$, type NodeDataOneOf as b0, type NodeStyle as b1, type ButtonData as b2, type Gradient as b3, type Stop as b4, type Border as b5, type Colors as b6, type Background as b7, type PluginContainerData as b8, type PluginContainerDataWidth as b9, type HeadingData as bA, type HTMLData as bB, type HTMLDataDataOneOf as bC, type ImageData as bD, type StylesBorder as bE, type ImageDataStyles as bF, type LinkPreviewData as bG, type LinkPreviewDataStyles as bH, type MapData as bI, type MapSettings as bJ, type ParagraphData as bK, type PollData as bL, type Permissions as bM, type Option as bN, type PollSettings as bO, type PollLayout as bP, type OptionLayout as bQ, type BackgroundGradient as bR, type PollDesignBackground as bS, type PollDesignBackgroundBackgroundOneOf as bT, type PollDesign as bU, type OptionDesign as bV, type Poll as bW, type PollDataLayout as bX, type Design as bY, type TextData as bZ, type Decoration as b_, type PluginContainerDataWidthDataOneOf as ba, type Spoiler as bb, type Height as bc, type Styles as bd, type Link as be, type LinkDataOneOf as bf, type Rel as bg, type CodeBlockData as bh, type TextStyle as bi, type DividerData as bj, type FileData as bk, type FileSource as bl, type FileSourceDataOneOf as bm, type PDFSettings as bn, type GalleryData as bo, type Media as bp, type Image as bq, type Video as br, type Item as bs, type ItemDataOneOf as bt, type GalleryOptions as bu, type GalleryOptionsLayout as bv, type ItemStyle as bw, type Thumbnails as bx, type GIFData as by, type GIF as bz, type BulkUpdateExperienceTagsResponse as c, type SeoSchema as c$, type AnchorData as c0, type ColorData as c1, type LinkData as c2, type MentionData as c3, type FontSizeData as c4, type SpoilerData as c5, type FontFamilyData as c6, type AppEmbedData as c7, type AppEmbedDataAppDataOneOf as c8, type BookingData as c9, type LayoutDataBackground as cA, type Backdrop as cB, type LayoutCellData as cC, type ShapeData as cD, type ShapeDataStyles as cE, type CardData as cF, type CardDataBackground as cG, type BackgroundImage as cH, type TocData as cI, type SmartBlockData as cJ, type SmartBlockCellData as cK, type Metadata as cL, type DocumentStyle as cM, type TextNodeStyle as cN, type PerGuestOptions as cO, type DisplayInfo as cP, type PaymentPolicy as cQ, type PaymentPolicyOptionsOneOf as cR, type OnlineReservations as cS, type ReservationForm as cT, type TableManagement as cU, type TableManagementOptionsOneOf as cV, type Configuration as cW, type ExtendedFields as cX, type Tags as cY, type TagList as cZ, type SeoSettings as c_, type EventData as ca, type ButtonStyles as cb, type ImageStyles as cc, type RibbonStyles as cd, type CardStyles as ce, type PricingData as cf, type VideoData as cg, type PlaybackOptions as ch, type EmbedData as ci, type Oembed as cj, type CollapsibleListData as ck, type TableData as cl, type Dimensions as cm, type TableCellData as cn, type CellStyle as co, type BorderColors as cp, type BorderWidths as cq, type ListValue as cr, type AudioData as cs, type OrderedListData as ct, type BulletedListData as cu, type BlockquoteData as cv, type CaptionData as cw, type LayoutData as cx, type LayoutDataBackgroundImage as cy, type Banner as cz, type BulkUpdateExperienceTagsApplicationErrors as d, type NestedResults as d$, type Keyword as d0, type Tag as d1, type Settings as d2, type InvalidateCache as d3, type InvalidateCacheGetByOneOf as d4, type App as d5, type Page as d6, type URI as d7, type File as d8, type CustomTag as d9, type ValueAggregation as dA, type ValueAggregationOptionsOneOf as dB, type RangeAggregation as dC, type ScalarAggregation as dD, type DateHistogramAggregation as dE, type NestedAggregationItem as dF, type NestedAggregationItemKindOneOf as dG, type NestedAggregation as dH, type SearchDetails as dI, type AggregationData as dJ, type ValueAggregationResult as dK, type RangeAggregationResult as dL, type NestedAggregationResults as dM, type NestedAggregationResultsResultOneOf as dN, type ValueResults as dO, type RangeResults as dP, type AggregationResultsScalarResult as dQ, type NestedValueAggregationResult as dR, type ValueResult as dS, type RangeResult as dT, type ScalarResult as dU, type NestedResultValue as dV, type NestedResultValueResultOneOf as dW, type Results as dX, type DateHistogramResult as dY, type GroupByValueResults as dZ, type DateHistogramResults as d_, type Pages as da, type URIs as db, type TagsModified as dc, type CreateExperienceRequest as dd, type CreateExperienceResponse as de, type GetExperienceRequest as df, type GetExperienceResponse as dg, type GetExperienceBySlugRequest as dh, type UpdateExperienceRequest as di, type UpdateExperienceResponse as dj, type QueryExperiencesRequest as dk, type CursorQuery as dl, type CursorQueryPagingMethodOneOf as dm, type Sorting as dn, type CursorPaging as dp, type QueryExperiencesResponse as dq, type CursorPagingMetadata as dr, type Cursors as ds, type SearchExperiencesRequest as dt, type CursorSearch as du, type CursorSearchPagingMethodOneOf as dv, type Aggregation as dw, type AggregationKindOneOf as dx, type RangeBucket as dy, type IncludeMissingValuesOptions as dz, type BulkUpdateExperienceTagsByFilterOptions as e, type ButtonDataTypeWithLiterals as e$, type AggregationResults as e0, type AggregationResultsResultOneOf as e1, type BulkUpdateExperienceTagsRequest as e2, type ItemMetadata as e3, type ApplicationError as e4, type BulkUpdateExperienceTagsResult as e5, type BulkActionMetadata as e6, type BulkUpdateExperienceTagsByFilterRequest as e7, type BulkArchiveExperiencesRequest as e8, type BulkArchiveExperiencesResult as e9, type RestoreInfo as eA, type EntityUpdatedEvent as eB, type EntityDeletedEvent as eC, type ActionEvent as eD, type MessageEnvelope as eE, type IdentificationData as eF, type IdentificationDataIdOneOf as eG, type AccountInfo as eH, type BaseEventMetadata as eI, type EventMetadata as eJ, type AccountInfoMetadata as eK, type ExperiencesQueryResult as eL, type ExperienceQuerySpec as eM, type ExperienceSearchSpec as eN, utils as eO, type TableAvailabilityTypeWithLiterals as eP, type TableAssignmentTypeWithLiterals as eQ, type TableManagementModeWithLiterals as eR, type UnitWithLiterals as eS, type ModeWithLiterals as eT, type StartDaysAndTimesDayOfWeekWithLiterals as eU, type RecurrenceWithLiterals as eV, type NodeTypeWithLiterals as eW, type BackgroundTypeWithLiterals as eX, type GradientTypeWithLiterals as eY, type WidthTypeWithLiterals as eZ, type PluginContainerDataAlignmentWithLiterals as e_, type BulkUnarchiveExperiencesRequest as ea, type BulkUnarchiveExperiencesResult as eb, type SitePropertiesNotification as ec, type SitePropertiesEvent as ed, type Properties as ee, type Categories as ef, type Locale as eg, type Address as eh, type AddressHint as ei, type GeoCoordinates as ej, type BusinessSchedule as ek, type TimePeriod as el, type SpecialHourPeriod as em, type Multilingual as en, type SupportedLanguage as eo, type ConsentPolicy as ep, type Translation as eq, type ChangeContext as er, type ChangeContextPayloadOneOf as es, type PropertiesChange as et, type SiteCreated as eu, type SiteCloned as ev, type Empty as ew, type DomainEvent as ex, type DomainEventBodyOneOf as ey, type EntityCreatedEvent as ez, type BulkUpdateExperienceTagsByFilterResponse as f, type CommonSearchWithEntityContext as f$, type TargetWithLiterals as f0, type TextAlignmentWithLiterals as f1, type LineStyleWithLiterals as f2, type WidthWithLiterals as f3, type DividerDataAlignmentWithLiterals as f4, type ViewModeWithLiterals as f5, type LayoutTypeWithLiterals as f6, type OrientationWithLiterals as f7, type CropWithLiterals as f8, type ThumbnailsAlignmentWithLiterals as f9, type LayoutDataBackgroundTypeWithLiterals as fA, type BackdropTypeWithLiterals as fB, type VerticalAlignmentAlignmentWithLiterals as fC, type ResponsivenessBehaviourWithLiterals as fD, type DesignTargetWithLiterals as fE, type ScalingWithLiterals as fF, type ImagePositionPositionWithLiterals as fG, type CardDataBackgroundTypeWithLiterals as fH, type ListStyleWithLiterals as fI, type IndentationWithLiterals as fJ, type SmartBlockDataTypeWithLiterals as fK, type ColumnSizeWithLiterals as fL, type PaymentPolicyTypeWithLiterals as fM, type SortOrderWithLiterals as fN, type SortTypeWithLiterals as fO, type SortDirectionWithLiterals as fP, type MissingValuesWithLiterals as fQ, type ScalarTypeWithLiterals as fR, type NestedAggregationTypeWithLiterals as fS, type IntervalWithLiterals as fT, type AggregationTypeWithLiterals as fU, type SearchDetailsModeWithLiterals as fV, type PlacementTypeWithLiterals as fW, type DayOfWeekWithLiterals as fX, type ResolutionMethodWithLiterals as fY, type WebhookIdentityTypeWithLiterals as fZ, type CommonQueryWithEntityContext as f_, type GIFTypeWithLiterals as fa, type SourceWithLiterals as fb, type StylesPositionWithLiterals as fc, type MapTypeWithLiterals as fd, type ViewRoleWithLiterals as fe, type VoteRoleWithLiterals as ff, type PollLayoutTypeWithLiterals as fg, type PollLayoutDirectionWithLiterals as fh, type PollDesignBackgroundTypeWithLiterals as fi, type DecorationTypeWithLiterals as fj, type FontTypeWithLiterals as fk, type PositionWithLiterals as fl, type AspectRatioWithLiterals as fm, type ResizingWithLiterals as fn, type PlacementWithLiterals as fo, type TypeWithLiterals as fp, type AlignmentWithLiterals as fq, type LayoutWithLiterals as fr, type AppTypeWithLiterals as fs, type InitialExpandedItemsWithLiterals as ft, type DirectionWithLiterals as fu, type VerticalAlignmentWithLiterals as fv, type NullValueWithLiterals as fw, type ImageScalingScalingWithLiterals as fx, type ImagePositionWithLiterals as fy, type OriginWithLiterals as fz, type BulkUpdateExperienceTagsByFilterApplicationErrors as g, onExperienceCreated as g0, onExperienceTagsModified as g1, onExperienceUpdated as g2, createExperience as g3, getExperience as g4, getExperienceBySlug as g5, updateExperience as g6, queryExperiences as g7, bulkUpdateExperienceTags as g8, bulkUpdateExperienceTagsByFilter as g9, bulkArchiveExperiences as ga, bulkUnarchiveExperiences as gb, 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 };
|