@wix/auto_sdk_table-reservations_experiences 1.0.41 → 1.0.43
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 +22 -3
- package/build/cjs/index.js +378 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +369 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +41 -7
- package/build/cjs/meta.js +312 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +361 -1
- package/build/cjs/schemas.js +595 -0
- package/build/cjs/schemas.js.map +1 -1
- package/build/cjs/{table-reservations-v1-experience-experiences.universal-BYE3AFrH.d.ts → table-reservations-v1-experience-experiences.universal-BqhRReXL.d.ts} +69 -6
- package/build/es/index.d.mts +22 -3
- package/build/es/index.mjs +377 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +368 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +41 -7
- package/build/es/meta.mjs +311 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +361 -1
- package/build/es/schemas.mjs +593 -0
- package/build/es/schemas.mjs.map +1 -1
- package/build/es/{table-reservations-v1-experience-experiences.universal-BYE3AFrH.d.mts → table-reservations-v1-experience-experiences.universal-BqhRReXL.d.mts} +69 -6
- package/build/internal/cjs/index.d.ts +22 -3
- package/build/internal/cjs/index.js +378 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +369 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +41 -7
- package/build/internal/cjs/meta.js +312 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +361 -1
- package/build/internal/cjs/schemas.js +595 -0
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-BYE3AFrH.d.ts → table-reservations-v1-experience-experiences.universal-BqhRReXL.d.ts} +69 -6
- package/build/internal/es/index.d.mts +22 -3
- package/build/internal/es/index.mjs +377 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +368 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +41 -7
- package/build/internal/es/meta.mjs +311 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +361 -1
- package/build/internal/es/schemas.mjs +593 -0
- package/build/internal/es/schemas.mjs.map +1 -1
- package/build/internal/es/{table-reservations-v1-experience-experiences.universal-BYE3AFrH.d.mts → table-reservations-v1-experience-experiences.universal-BqhRReXL.d.mts} +69 -6
- package/package.json +2 -2
|
@@ -412,6 +412,10 @@ interface Node extends NodeDataOneOf {
|
|
|
412
412
|
smartBlockData?: SmartBlockData;
|
|
413
413
|
/** Data for a smart block cell node. */
|
|
414
414
|
smartBlockCellData?: SmartBlockCellData;
|
|
415
|
+
/** Data for a checkbox list node. */
|
|
416
|
+
checkboxListData?: CheckboxListData;
|
|
417
|
+
/** Data for a list item node. */
|
|
418
|
+
listItemData?: ListItemNodeData;
|
|
415
419
|
/** 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. */
|
|
416
420
|
type?: NodeTypeWithLiterals;
|
|
417
421
|
/** Node ID. */
|
|
@@ -489,6 +493,10 @@ interface NodeDataOneOf {
|
|
|
489
493
|
smartBlockData?: SmartBlockData;
|
|
490
494
|
/** Data for a smart block cell node. */
|
|
491
495
|
smartBlockCellData?: SmartBlockCellData;
|
|
496
|
+
/** Data for a checkbox list node. */
|
|
497
|
+
checkboxListData?: CheckboxListData;
|
|
498
|
+
/** Data for a list item node. */
|
|
499
|
+
listItemData?: ListItemNodeData;
|
|
492
500
|
}
|
|
493
501
|
declare enum NodeType {
|
|
494
502
|
PARAGRAPH = "PARAGRAPH",
|
|
@@ -529,10 +537,11 @@ declare enum NodeType {
|
|
|
529
537
|
CARD = "CARD",
|
|
530
538
|
TOC = "TOC",
|
|
531
539
|
SMART_BLOCK = "SMART_BLOCK",
|
|
532
|
-
SMART_BLOCK_CELL = "SMART_BLOCK_CELL"
|
|
540
|
+
SMART_BLOCK_CELL = "SMART_BLOCK_CELL",
|
|
541
|
+
CHECKBOX_LIST = "CHECKBOX_LIST"
|
|
533
542
|
}
|
|
534
543
|
/** @enumType */
|
|
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';
|
|
544
|
+
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' | 'CHECKBOX_LIST';
|
|
536
545
|
interface NodeStyle {
|
|
537
546
|
/** The top padding value in pixels. */
|
|
538
547
|
paddingTop?: string | null;
|
|
@@ -2535,10 +2544,18 @@ declare enum SmartBlockDataType {
|
|
|
2535
2544
|
/** Star rating display with stars and a numeric value per cell. */
|
|
2536
2545
|
STAR_RATING = "STAR_RATING",
|
|
2537
2546
|
/** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
|
|
2538
|
-
QUOTE_BOXES = "QUOTE_BOXES"
|
|
2547
|
+
QUOTE_BOXES = "QUOTE_BOXES",
|
|
2548
|
+
/** Donut/ring with numbered annular-sector segments; cell text labels sit outside the ring. */
|
|
2549
|
+
CIRCLE = "CIRCLE",
|
|
2550
|
+
/** Hierarchical pyramid where each cell renders as a horizontal slice (apex at top, base at bottom) with the cell number or shape centered inside; text content sits beside (desktop) or below (mobile) the pyramid. */
|
|
2551
|
+
PYRAMID = "PYRAMID",
|
|
2552
|
+
/** Cells render a horizontal bar whose width scales with cell index, creating a staircase pattern; bar carries the cell number or a custom shape. */
|
|
2553
|
+
STAIRCASE = "STAIRCASE",
|
|
2554
|
+
/** Hierarchical funnel where each cell renders as a horizontal slice (wide at top, narrowing toward the bottom) with the cell number or shape centered inside; text content sits beside (desktop) or below (mobile) the funnel. */
|
|
2555
|
+
VERTICAL_FUNNEL = "VERTICAL_FUNNEL"
|
|
2539
2556
|
}
|
|
2540
2557
|
/** @enumType */
|
|
2541
|
-
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' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES';
|
|
2558
|
+
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' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES' | 'CIRCLE' | 'PYRAMID' | 'STAIRCASE' | 'VERTICAL_FUNNEL';
|
|
2542
2559
|
/** Column size controlling how many cells appear per row. */
|
|
2543
2560
|
declare enum ColumnSize {
|
|
2544
2561
|
/** Up to 4 cells in a row. */
|
|
@@ -2585,6 +2602,16 @@ interface SmartBlockCellData {
|
|
|
2585
2602
|
*/
|
|
2586
2603
|
shapeColor?: string | null;
|
|
2587
2604
|
}
|
|
2605
|
+
interface CheckboxListData {
|
|
2606
|
+
/** Indentation level from 0-4. */
|
|
2607
|
+
indentation?: number;
|
|
2608
|
+
/** Offset level from 0-4. */
|
|
2609
|
+
offset?: number | null;
|
|
2610
|
+
}
|
|
2611
|
+
interface ListItemNodeData {
|
|
2612
|
+
/** Checkbox list item state. Defaults to `false`. */
|
|
2613
|
+
checked?: boolean | null;
|
|
2614
|
+
}
|
|
2588
2615
|
interface Metadata {
|
|
2589
2616
|
/** Schema version. */
|
|
2590
2617
|
version?: number;
|
|
@@ -3641,7 +3668,7 @@ interface BulkUpdateExperiencesRequest {
|
|
|
3641
3668
|
* @minSize 1
|
|
3642
3669
|
* @maxSize 100
|
|
3643
3670
|
*/
|
|
3644
|
-
experiences
|
|
3671
|
+
experiences: MaskedExperience[];
|
|
3645
3672
|
/**
|
|
3646
3673
|
* Whether to include the updated experiences in the response. When `true`, each successfully updated experience is returned in the corresponding result's `item` field.
|
|
3647
3674
|
*
|
|
@@ -4243,6 +4270,12 @@ type UpdateExperienceApplicationErrors = {
|
|
|
4243
4270
|
data?: Record<string, any>;
|
|
4244
4271
|
};
|
|
4245
4272
|
/** @docsIgnore */
|
|
4273
|
+
type BulkUpdateExperiencesApplicationErrors = {
|
|
4274
|
+
code?: 'CAN_NOT_BE_UPDATED';
|
|
4275
|
+
description?: string;
|
|
4276
|
+
data?: Record<string, any>;
|
|
4277
|
+
};
|
|
4278
|
+
/** @docsIgnore */
|
|
4246
4279
|
type BulkUpdateExperienceTagsApplicationErrors = {
|
|
4247
4280
|
code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS';
|
|
4248
4281
|
description?: string;
|
|
@@ -4822,6 +4855,36 @@ type ExperienceSearch = {
|
|
|
4822
4855
|
*/
|
|
4823
4856
|
timeZone?: CommonSearchWithEntityContext['timeZone'] | null;
|
|
4824
4857
|
};
|
|
4858
|
+
/**
|
|
4859
|
+
* Updates up to 100 experiences in a single request.
|
|
4860
|
+
*
|
|
4861
|
+
* Each experience is updated independently. If an update fails for one experience, the failure is reported in that experience's `itemMetadata.error` and the remaining experiences are still processed. The call returns successfully even when some updates fail.
|
|
4862
|
+
*
|
|
4863
|
+
* Set `returnEntity` to `true` to receive the updated experiences in the response.
|
|
4864
|
+
*
|
|
4865
|
+
* Archived experiences can't be updated.
|
|
4866
|
+
*
|
|
4867
|
+
* To update a single experience, call [Update Experience](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/reservations/experiences/update-experience).
|
|
4868
|
+
* @param experiences - List of experiences to update, with the fields to update for each experience.
|
|
4869
|
+
* @public
|
|
4870
|
+
* @requiredField experiences
|
|
4871
|
+
* @requiredField experiences.experience._id
|
|
4872
|
+
* @requiredField experiences.experience.revision
|
|
4873
|
+
* @permissionId table_reservations:v1:experience:bulk_update_experiences
|
|
4874
|
+
* @applicableIdentity APP
|
|
4875
|
+
* @fqn wix.table_reservations.experience.v1.ExperiencesService.BulkUpdateExperiences
|
|
4876
|
+
*/
|
|
4877
|
+
declare function bulkUpdateExperiences(experiences: NonNullablePaths<MaskedExperience, `experience._id` | `experience.revision`, 3>[], options?: BulkUpdateExperiencesOptions): Promise<NonNullablePaths<BulkUpdateExperiencesResponse, `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> & {
|
|
4878
|
+
__applicationErrorsType?: BulkUpdateExperiencesApplicationErrors;
|
|
4879
|
+
}>;
|
|
4880
|
+
interface BulkUpdateExperiencesOptions {
|
|
4881
|
+
/**
|
|
4882
|
+
* Whether to include the updated experiences in the response. When `true`, each successfully updated experience is returned in the corresponding result's `item` field.
|
|
4883
|
+
*
|
|
4884
|
+
* Default: `false`
|
|
4885
|
+
*/
|
|
4886
|
+
returnEntity?: boolean;
|
|
4887
|
+
}
|
|
4825
4888
|
/**
|
|
4826
4889
|
* 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.
|
|
4827
4890
|
* @param experienceIds - List of experience IDs to update tags for.
|
|
@@ -4888,4 +4951,4 @@ declare function bulkArchiveExperiences(experienceIds: string[]): Promise<NonNul
|
|
|
4888
4951
|
*/
|
|
4889
4952
|
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>>;
|
|
4890
4953
|
|
|
4891
|
-
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 RichContent 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, AggregationType as aA, SearchDetailsMode as aB, PlacementType as aC, DayOfWeek as aD, ResolutionMethod as aE, WebhookIdentityType as aF, type Table as aG, type TableCombination as aH, type SpecificTablesOptions as aI, type OnOptions as aJ, type OnOptionsOptionsOneOf as aK, type StartDaysAndTimes as aL, type WeeklyOptions as aM, type OneTimeOptions as aN, type Entry as aO, type EntryRecurrenceOptionsOneOf as aP, type PartySize as aQ, type NoticePeriod as aR, type Approval as aS, type MaxGuests as aT, type OnlineReservationsBusinessSchedule as aU, type PrivacyPolicy as aV, type PrivacyPolicyValueOneOf as aW, type TermsAndConditions as aX, type TermsAndConditionsValueOneOf as aY, type CustomFieldDefinition as aZ, type EmailMarketingCheckbox as a_, VerticalAlignment as aa, NullValue as ab, ImageScalingScaling as ac, ImagePosition as ad, Origin as ae, BannerPosition as af, LayoutDataBackgroundType as ag, BackdropType as ah, VerticalAlignmentAlignment as ai, ResponsivenessBehaviour as aj, DesignTarget as ak, Scaling as al, ImagePositionPosition as am, CardDataBackgroundType as an, ListStyle as ao, Indentation as ap, SmartBlockDataType as aq, ColumnSize as ar, PaymentPolicyType as as, SortOrder as at, SortType as au, SortDirection as av, MissingValues as aw, ScalarType as ax, NestedAggregationType as ay, Interval as az, type ExperienceSearch as b, type Decoration as b$, type Node as b0, type NodeDataOneOf as b1, type NodeStyle as b2, type ButtonData as b3, type Gradient as b4, type Stop as b5, type Border as b6, type Colors as b7, type Background as b8, type PluginContainerData as b9, type GIF as bA, type HeadingData as bB, type HTMLData as bC, type HTMLDataDataOneOf as bD, type ImageData as bE, type StylesBorder as bF, type ImageDataStyles as bG, type LinkPreviewData as bH, type LinkPreviewDataStyles as bI, type MapData as bJ, type MapSettings as bK, type ParagraphData as bL, type PollData as bM, type Permissions as bN, type Option as bO, type PollSettings as bP, type PollLayout as bQ, type OptionLayout as bR, type BackgroundGradient as bS, type PollDesignBackground as bT, type PollDesignBackgroundBackgroundOneOf as bU, type PollDesign as bV, type OptionDesign as bW, type Poll as bX, type PollDataLayout as bY, type Design as bZ, type TextData as b_, type PluginContainerDataWidth as ba, type PluginContainerDataWidthDataOneOf as bb, type Spoiler as bc, type Height as bd, type Styles as be, type Link as bf, type LinkDataOneOf as bg, type Rel as bh, type CodeBlockData as bi, type TextStyle as bj, type DividerData as bk, type FileData as bl, type FileSource as bm, type FileSourceDataOneOf as bn, type PDFSettings as bo, type GalleryData as bp, type Media as bq, type Image as br, type Video as bs, type Item as bt, type ItemDataOneOf as bu, type GalleryOptions as bv, type GalleryOptionsLayout as bw, type ItemStyle as bx, type Thumbnails as by, type GIFData as bz, type BulkUpdateExperienceTagsResponse as c, type SeoSettings as c$, type DecorationDataOneOf as c0, type AnchorData as c1, type ColorData as c2, type LinkData as c3, type MentionData as c4, type FontSizeData as c5, type SpoilerData as c6, type FontFamilyData as c7, type AppEmbedData as c8, type AppEmbedDataAppDataOneOf as c9, type Banner as cA, type LayoutDataBackground as cB, type Backdrop as cC, type LayoutCellData as cD, type ShapeData as cE, type ShapeDataStyles as cF, type CardData as cG, type CardDataBackground as cH, type BackgroundImage as cI, type TocData as cJ, type SmartBlockData as cK, type SmartBlockCellData as cL, type Metadata as cM, type DocumentStyle as cN, type TextNodeStyle as cO, type PerGuestOptions as cP, type DisplayInfo as cQ, type PaymentPolicy as cR, type PaymentPolicyOptionsOneOf as cS, type OnlineReservations as cT, type ReservationForm as cU, type TableManagement as cV, type TableManagementOptionsOneOf as cW, type Configuration as cX, type ExtendedFields as cY, type Tags as cZ, type TagList as c_, type BookingData as ca, type EventData as cb, type ButtonStyles as cc, type ImageStyles as cd, type RibbonStyles as ce, type CardStyles as cf, type PricingData as cg, type VideoData as ch, type PlaybackOptions as ci, type EmbedData as cj, type Oembed as ck, type CollapsibleListData as cl, type TableData as cm, type Dimensions as cn, type TableCellData as co, type CellStyle as cp, type BorderColors as cq, type BorderWidths as cr, type ListValue as cs, type AudioData as ct, type OrderedListData as cu, type BulletedListData as cv, type BlockquoteData as cw, type CaptionData as cx, type LayoutData as cy, type LayoutDataBackgroundImage as cz, type BulkUpdateExperienceTagsApplicationErrors as d, type DateHistogramResults as d$, type SeoSchema as d0, type Keyword as d1, type Tag as d2, type Settings as d3, type InvalidateCache as d4, type InvalidateCacheGetByOneOf as d5, type App as d6, type Page as d7, type URI as d8, type File as d9, 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 dO, type ValueResults as dP, type RangeResults as dQ, type AggregationResultsScalarResult as dR, type NestedValueAggregationResult as dS, type ValueResult as dT, type RangeResult as dU, type ScalarResult as dV, type NestedResultValue as dW, type NestedResultValueResultOneOf as dX, type Results as dY, type DateHistogramResult as dZ, type GroupByValueResults as d_, type CustomTag as da, type Pages as db, type URIs as dc, type TagsModified as dd, type CreateExperienceRequest as de, type CreateExperienceResponse as df, type GetExperienceRequest as dg, type GetExperienceResponse as dh, type GetExperienceBySlugRequest as di, type UpdateExperienceRequest as dj, type UpdateExperienceResponse as dk, type QueryExperiencesRequest as dl, type CursorQuery as dm, type CursorQueryPagingMethodOneOf as dn, type Sorting as dp, type CursorPaging as dq, type QueryExperiencesResponse as dr, type CursorPagingMetadata as ds, type Cursors as dt, type SearchExperiencesRequest as du, type CursorSearch as dv, type CursorSearchPagingMethodOneOf as dw, type Aggregation as dx, type AggregationKindOneOf as dy, type RangeBucket as dz, type BulkUpdateExperienceTagsByFilterOptions as e, type NodeTypeWithLiterals as e$, type NestedResults as e0, type AggregationResults as e1, type AggregationResultsResultOneOf as e2, type BulkUpdateExperiencesRequest as e3, type MaskedExperience as e4, type BulkUpdateExperiencesResponse as e5, type ItemMetadata as e6, type ApplicationError as e7, type BulkUpdateExperiencesResult as e8, type BulkActionMetadata as e9, type SiteCloned as eA, type Empty as eB, type DomainEvent as eC, type DomainEventBodyOneOf as eD, type EntityCreatedEvent as eE, type RestoreInfo as eF, type EntityUpdatedEvent as eG, type EntityDeletedEvent as eH, type ActionEvent as eI, type MessageEnvelope as eJ, type IdentificationData as eK, type IdentificationDataIdOneOf as eL, type AccountInfo as eM, type BaseEventMetadata as eN, type EventMetadata as eO, type AccountInfoMetadata as eP, type ExperiencesQueryResult as eQ, type ExperienceQuerySpec as eR, type ExperienceSearchSpec as eS, utils as eT, type TableAvailabilityTypeWithLiterals as eU, type TableAssignmentTypeWithLiterals as eV, type TableManagementModeWithLiterals as eW, type UnitWithLiterals as eX, type ModeWithLiterals as eY, type StartDaysAndTimesDayOfWeekWithLiterals as eZ, type RecurrenceWithLiterals as e_, type BulkUpdateExperienceTagsRequest as ea, type BulkUpdateExperienceTagsResult as eb, type BulkUpdateExperienceTagsByFilterRequest as ec, type BulkArchiveExperiencesRequest as ed, type BulkArchiveExperiencesResult as ee, type BulkUnarchiveExperiencesRequest as ef, type BulkUnarchiveExperiencesResult as eg, type SitePropertiesNotification as eh, type SitePropertiesEvent as ei, type Properties as ej, type Categories as ek, type Locale as el, type Address as em, type AddressHint as en, type GeoCoordinates as eo, type BusinessSchedule as ep, type TimePeriod as eq, type SpecialHourPeriod as er, type Multilingual as es, type SupportedLanguage as et, type ConsentPolicy as eu, type Translation as ev, type ChangeContext as ew, type ChangeContextPayloadOneOf as ex, type PropertiesChange as ey, type SiteCreated as ez, type BulkUpdateExperienceTagsByFilterResponse as f, type SearchDetailsModeWithLiterals as f$, type BackgroundTypeWithLiterals as f0, type GradientTypeWithLiterals as f1, type WidthTypeWithLiterals as f2, type PluginContainerDataAlignmentWithLiterals as f3, type ButtonDataTypeWithLiterals as f4, type TargetWithLiterals as f5, type TextAlignmentWithLiterals as f6, type LineStyleWithLiterals as f7, type WidthWithLiterals as f8, type DividerDataAlignmentWithLiterals as f9, type VerticalAlignmentWithLiterals as fA, type NullValueWithLiterals as fB, type ImageScalingScalingWithLiterals as fC, type ImagePositionWithLiterals as fD, type OriginWithLiterals as fE, type BannerPositionWithLiterals as fF, type LayoutDataBackgroundTypeWithLiterals as fG, type BackdropTypeWithLiterals as fH, type VerticalAlignmentAlignmentWithLiterals as fI, type ResponsivenessBehaviourWithLiterals as fJ, type DesignTargetWithLiterals as fK, type ScalingWithLiterals as fL, type ImagePositionPositionWithLiterals as fM, type CardDataBackgroundTypeWithLiterals as fN, type ListStyleWithLiterals as fO, type IndentationWithLiterals as fP, type SmartBlockDataTypeWithLiterals as fQ, type ColumnSizeWithLiterals as fR, type PaymentPolicyTypeWithLiterals as fS, type SortOrderWithLiterals as fT, type SortTypeWithLiterals as fU, type SortDirectionWithLiterals as fV, type MissingValuesWithLiterals as fW, type ScalarTypeWithLiterals as fX, type NestedAggregationTypeWithLiterals as fY, type IntervalWithLiterals as fZ, type AggregationTypeWithLiterals as f_, type ViewModeWithLiterals as fa, type LayoutTypeWithLiterals as fb, type OrientationWithLiterals as fc, type CropWithLiterals as fd, type ThumbnailsAlignmentWithLiterals as fe, type GIFTypeWithLiterals as ff, type SourceWithLiterals as fg, type StylesPositionWithLiterals as fh, type MapTypeWithLiterals as fi, type ViewRoleWithLiterals as fj, type VoteRoleWithLiterals as fk, type PollLayoutTypeWithLiterals as fl, type PollLayoutDirectionWithLiterals as fm, type PollDesignBackgroundTypeWithLiterals as fn, type DecorationTypeWithLiterals as fo, type FontTypeWithLiterals as fp, type PositionWithLiterals as fq, type AspectRatioWithLiterals as fr, type ResizingWithLiterals as fs, type PlacementWithLiterals as ft, type TypeWithLiterals as fu, type AlignmentWithLiterals as fv, type LayoutWithLiterals as fw, type AppTypeWithLiterals as fx, type InitialExpandedItemsWithLiterals as fy, type DirectionWithLiterals as fz, type BulkUpdateExperienceTagsByFilterApplicationErrors as g, type PlacementTypeWithLiterals as g0, type DayOfWeekWithLiterals as g1, type ResolutionMethodWithLiterals as g2, type WebhookIdentityTypeWithLiterals as g3, type CommonQueryWithEntityContext as g4, type CommonSearchWithEntityContext as g5, onExperienceCreated as g6, onExperienceTagsModified as g7, onExperienceUpdated as g8, createExperience as g9, getExperience as ga, getExperienceBySlug as gb, updateExperience as gc, queryExperiences as gd, bulkUpdateExperienceTags as ge, bulkUpdateExperienceTagsByFilter as gf, bulkArchiveExperiences as gg, bulkUnarchiveExperiences as gh, 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 };
|
|
4954
|
+
export { PollLayoutType as $, Target as A, type BulkUpdateExperiencesOptions as B, TextAlignment as C, Width as D, type Experience as E, DividerDataAlignment as F, type GetExperienceBySlugResponse as G, LayoutType as H, Crop as I, ThumbnailsAlignment as J, GIFType as K, LineStyle as L, type MaskedExperience as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, Source as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, StylesPosition as X, MapType as Y, ViewRole as Z, VoteRole as _, type UpdateExperienceApplicationErrors as a, type TermsAndConditions as a$, PollLayoutDirection as a0, PollDesignBackgroundType as a1, DecorationType as a2, FontType as a3, Position as a4, AspectRatio as a5, Resizing as a6, Placement as a7, Type as a8, Alignment as a9, MissingValues as aA, ScalarType as aB, NestedAggregationType as aC, Interval as aD, AggregationType as aE, SearchDetailsMode as aF, PlacementType as aG, DayOfWeek as aH, ResolutionMethod as aI, WebhookIdentityType as aJ, type Table as aK, type TableCombination as aL, type SpecificTablesOptions as aM, type OnOptions as aN, type OnOptionsOptionsOneOf as aO, type StartDaysAndTimes as aP, type WeeklyOptions as aQ, type OneTimeOptions as aR, type Entry as aS, type EntryRecurrenceOptionsOneOf as aT, type PartySize as aU, type NoticePeriod as aV, type Approval as aW, type MaxGuests as aX, type OnlineReservationsBusinessSchedule as aY, type PrivacyPolicy as aZ, type PrivacyPolicyValueOneOf as a_, Layout as aa, AppType as ab, InitialExpandedItems as ac, Direction as ad, VerticalAlignment as ae, NullValue as af, ImageScalingScaling as ag, ImagePosition as ah, Origin as ai, BannerPosition as aj, LayoutDataBackgroundType as ak, BackdropType as al, VerticalAlignmentAlignment as am, ResponsivenessBehaviour as an, DesignTarget as ao, Scaling as ap, ImagePositionPosition as aq, CardDataBackgroundType as ar, ListStyle as as, Indentation as at, SmartBlockDataType as au, ColumnSize as av, PaymentPolicyType as aw, SortOrder as ax, SortType as ay, SortDirection as az, type ExperienceSearch as b, type Poll as b$, type TermsAndConditionsValueOneOf as b0, type CustomFieldDefinition as b1, type EmailMarketingCheckbox as b2, type RichContent as b3, type Node as b4, type NodeDataOneOf as b5, type NodeStyle as b6, type ButtonData as b7, type Gradient as b8, type Stop as b9, type GalleryOptionsLayout as bA, type ItemStyle as bB, type Thumbnails as bC, type GIFData as bD, type GIF as bE, type HeadingData as bF, type HTMLData as bG, type HTMLDataDataOneOf as bH, type ImageData as bI, type StylesBorder as bJ, type ImageDataStyles as bK, type LinkPreviewData as bL, type LinkPreviewDataStyles as bM, type MapData as bN, type MapSettings as bO, type ParagraphData as bP, type PollData as bQ, type Permissions as bR, type Option as bS, type PollSettings as bT, type PollLayout as bU, type OptionLayout as bV, type BackgroundGradient as bW, type PollDesignBackground as bX, type PollDesignBackgroundBackgroundOneOf as bY, type PollDesign as bZ, type OptionDesign as b_, type Border as ba, type Colors as bb, type Background as bc, type PluginContainerData as bd, type PluginContainerDataWidth as be, type PluginContainerDataWidthDataOneOf as bf, type Spoiler as bg, type Height as bh, type Styles as bi, type Link as bj, type LinkDataOneOf as bk, type Rel as bl, type CodeBlockData as bm, type TextStyle as bn, type DividerData as bo, type FileData as bp, type FileSource as bq, type FileSourceDataOneOf as br, type PDFSettings as bs, type GalleryData as bt, type Media as bu, type Image as bv, type Video as bw, type Item as bx, type ItemDataOneOf as by, type GalleryOptions as bz, type BulkUpdateExperiencesResponse as c, type TableManagement as c$, type PollDataLayout as c0, type Design as c1, type TextData as c2, type Decoration as c3, type DecorationDataOneOf as c4, type AnchorData as c5, type ColorData as c6, type LinkData as c7, type MentionData as c8, type FontSizeData as c9, type BlockquoteData as cA, type CaptionData as cB, type LayoutData as cC, type LayoutDataBackgroundImage as cD, type Banner as cE, type LayoutDataBackground as cF, type Backdrop as cG, type LayoutCellData as cH, type ShapeData as cI, type ShapeDataStyles as cJ, type CardData as cK, type CardDataBackground as cL, type BackgroundImage as cM, type TocData as cN, type SmartBlockData as cO, type SmartBlockCellData as cP, type CheckboxListData as cQ, type ListItemNodeData as cR, type Metadata as cS, type DocumentStyle as cT, type TextNodeStyle as cU, type PerGuestOptions as cV, type DisplayInfo as cW, type PaymentPolicy as cX, type PaymentPolicyOptionsOneOf as cY, type OnlineReservations as cZ, type ReservationForm as c_, type SpoilerData as ca, type FontFamilyData as cb, type AppEmbedData as cc, type AppEmbedDataAppDataOneOf as cd, type BookingData as ce, type EventData as cf, type ButtonStyles as cg, type ImageStyles as ch, type RibbonStyles as ci, type CardStyles as cj, type PricingData as ck, type VideoData as cl, type PlaybackOptions as cm, type EmbedData as cn, type Oembed as co, type CollapsibleListData as cp, type TableData as cq, type Dimensions as cr, type TableCellData as cs, type CellStyle as ct, type BorderColors as cu, type BorderWidths as cv, type ListValue as cw, type AudioData as cx, type OrderedListData as cy, type BulletedListData as cz, type BulkUpdateExperiencesApplicationErrors as d, type ScalarResult as d$, type TableManagementOptionsOneOf as d0, type Configuration as d1, type ExtendedFields as d2, type Tags as d3, type TagList as d4, type SeoSettings as d5, type SeoSchema as d6, type Keyword as d7, type Tag as d8, type Settings as d9, type SearchExperiencesRequest as dA, type CursorSearch as dB, type CursorSearchPagingMethodOneOf as dC, type Aggregation as dD, type AggregationKindOneOf as dE, type RangeBucket as dF, type IncludeMissingValuesOptions as dG, type ValueAggregation as dH, type ValueAggregationOptionsOneOf as dI, type RangeAggregation as dJ, type ScalarAggregation as dK, type DateHistogramAggregation as dL, type NestedAggregationItem as dM, type NestedAggregationItemKindOneOf as dN, type NestedAggregation as dO, type SearchDetails as dP, type AggregationData as dQ, type ValueAggregationResult as dR, type RangeAggregationResult as dS, type NestedAggregationResults as dT, type NestedAggregationResultsResultOneOf as dU, type ValueResults as dV, type RangeResults as dW, type AggregationResultsScalarResult as dX, type NestedValueAggregationResult as dY, type ValueResult as dZ, type RangeResult as d_, type InvalidateCache as da, type InvalidateCacheGetByOneOf as db, type App as dc, type Page as dd, type URI as de, type File as df, type CustomTag as dg, type Pages as dh, type URIs as di, type TagsModified as dj, type CreateExperienceRequest as dk, type CreateExperienceResponse as dl, type GetExperienceRequest as dm, type GetExperienceResponse as dn, type GetExperienceBySlugRequest as dp, type UpdateExperienceRequest as dq, type UpdateExperienceResponse as dr, type QueryExperiencesRequest as ds, type CursorQuery as dt, type CursorQueryPagingMethodOneOf as du, type Sorting as dv, type CursorPaging as dw, type QueryExperiencesResponse as dx, type CursorPagingMetadata as dy, type Cursors as dz, type BulkUpdateExperienceTagsOptions as e, type UnitWithLiterals as e$, type NestedResultValue as e0, type NestedResultValueResultOneOf as e1, type Results as e2, type DateHistogramResult as e3, type GroupByValueResults as e4, type DateHistogramResults as e5, type NestedResults as e6, type AggregationResults as e7, type AggregationResultsResultOneOf as e8, type BulkUpdateExperiencesRequest as e9, type ChangeContext as eA, type ChangeContextPayloadOneOf as eB, type PropertiesChange as eC, type SiteCreated as eD, type SiteCloned as eE, type Empty as eF, type DomainEvent as eG, type DomainEventBodyOneOf as eH, type EntityCreatedEvent as eI, type RestoreInfo as eJ, type EntityUpdatedEvent as eK, type EntityDeletedEvent as eL, type ActionEvent as eM, type MessageEnvelope as eN, type IdentificationData as eO, type IdentificationDataIdOneOf as eP, type AccountInfo as eQ, type BaseEventMetadata as eR, type EventMetadata as eS, type AccountInfoMetadata as eT, type ExperiencesQueryResult as eU, type ExperienceQuerySpec as eV, type ExperienceSearchSpec as eW, utils as eX, type TableAvailabilityTypeWithLiterals as eY, type TableAssignmentTypeWithLiterals as eZ, type TableManagementModeWithLiterals as e_, type ItemMetadata as ea, type ApplicationError as eb, type BulkUpdateExperiencesResult as ec, type BulkActionMetadata as ed, type BulkUpdateExperienceTagsRequest as ee, type BulkUpdateExperienceTagsResult as ef, type BulkUpdateExperienceTagsByFilterRequest as eg, type BulkArchiveExperiencesRequest as eh, type BulkArchiveExperiencesResult as ei, type BulkUnarchiveExperiencesRequest as ej, type BulkUnarchiveExperiencesResult as ek, type SitePropertiesNotification as el, type SitePropertiesEvent as em, type Properties as en, type Categories as eo, type Locale as ep, type Address as eq, type AddressHint as er, type GeoCoordinates as es, type BusinessSchedule as et, type TimePeriod as eu, type SpecialHourPeriod as ev, type Multilingual as ew, type SupportedLanguage as ex, type ConsentPolicy as ey, type Translation as ez, type BulkUpdateExperienceTagsResponse as f, type ScalarTypeWithLiterals as f$, type ModeWithLiterals as f0, type StartDaysAndTimesDayOfWeekWithLiterals as f1, type RecurrenceWithLiterals as f2, type NodeTypeWithLiterals as f3, type BackgroundTypeWithLiterals as f4, type GradientTypeWithLiterals as f5, type WidthTypeWithLiterals as f6, type PluginContainerDataAlignmentWithLiterals as f7, type ButtonDataTypeWithLiterals as f8, type TargetWithLiterals as f9, type LayoutWithLiterals as fA, type AppTypeWithLiterals as fB, type InitialExpandedItemsWithLiterals as fC, type DirectionWithLiterals as fD, type VerticalAlignmentWithLiterals as fE, type NullValueWithLiterals as fF, type ImageScalingScalingWithLiterals as fG, type ImagePositionWithLiterals as fH, type OriginWithLiterals as fI, type BannerPositionWithLiterals as fJ, type LayoutDataBackgroundTypeWithLiterals as fK, type BackdropTypeWithLiterals as fL, type VerticalAlignmentAlignmentWithLiterals as fM, type ResponsivenessBehaviourWithLiterals as fN, type DesignTargetWithLiterals as fO, type ScalingWithLiterals as fP, type ImagePositionPositionWithLiterals as fQ, type CardDataBackgroundTypeWithLiterals as fR, type ListStyleWithLiterals as fS, type IndentationWithLiterals as fT, type SmartBlockDataTypeWithLiterals as fU, type ColumnSizeWithLiterals as fV, type PaymentPolicyTypeWithLiterals as fW, type SortOrderWithLiterals as fX, type SortTypeWithLiterals as fY, type SortDirectionWithLiterals as fZ, type MissingValuesWithLiterals as f_, type TextAlignmentWithLiterals as fa, type LineStyleWithLiterals as fb, type WidthWithLiterals as fc, type DividerDataAlignmentWithLiterals as fd, type ViewModeWithLiterals as fe, type LayoutTypeWithLiterals as ff, type OrientationWithLiterals as fg, type CropWithLiterals as fh, type ThumbnailsAlignmentWithLiterals as fi, type GIFTypeWithLiterals as fj, type SourceWithLiterals as fk, type StylesPositionWithLiterals as fl, type MapTypeWithLiterals as fm, type ViewRoleWithLiterals as fn, type VoteRoleWithLiterals as fo, type PollLayoutTypeWithLiterals as fp, type PollLayoutDirectionWithLiterals as fq, type PollDesignBackgroundTypeWithLiterals as fr, type DecorationTypeWithLiterals as fs, type FontTypeWithLiterals as ft, type PositionWithLiterals as fu, type AspectRatioWithLiterals as fv, type ResizingWithLiterals as fw, type PlacementWithLiterals as fx, type TypeWithLiterals as fy, type AlignmentWithLiterals as fz, type BulkUpdateExperienceTagsApplicationErrors as g, type NestedAggregationTypeWithLiterals as g0, type IntervalWithLiterals as g1, type AggregationTypeWithLiterals as g2, type SearchDetailsModeWithLiterals as g3, type PlacementTypeWithLiterals as g4, type DayOfWeekWithLiterals as g5, type ResolutionMethodWithLiterals as g6, type WebhookIdentityTypeWithLiterals as g7, type CommonQueryWithEntityContext as g8, type CommonSearchWithEntityContext as g9, onExperienceCreated as ga, onExperienceTagsModified as gb, onExperienceUpdated as gc, createExperience as gd, getExperience as ge, getExperienceBySlug as gf, updateExperience as gg, queryExperiences as gh, bulkUpdateExperiences as gi, bulkUpdateExperienceTags as gj, bulkUpdateExperienceTagsByFilter as gk, bulkArchiveExperiences as gl, bulkUnarchiveExperiences as gm, type BulkUpdateExperienceTagsByFilterOptions as h, type BulkUpdateExperienceTagsByFilterResponse as i, type BulkUpdateExperienceTagsByFilterApplicationErrors as j, type BulkArchiveExperiencesResponse as k, type BulkUnarchiveExperiencesResponse as l, type ExperienceCreatedEnvelope as m, type ExperienceTagsModifiedEnvelope as n, type ExperienceUpdatedEnvelope as o, type ExperiencesQueryBuilder as p, type ExperienceQuery as q, TableAssignmentType as r, TableManagementMode as s, typedQueryExperiences as t, Unit as u, Mode as v, StartDaysAndTimesDayOfWeek as w, BackgroundType as x, GradientType as y, ButtonDataType as z };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_table-reservations_experiences",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.43",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"fqdn": "wix.table_reservations.v1.experience"
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
|
-
"falconPackageHash": "
|
|
60
|
+
"falconPackageHash": "1a6f5563e950610131b265e63cdec35aee96581cd8d3f416d086c080"
|
|
61
61
|
}
|