@wix/auto_sdk_table-reservations_experiences 1.0.42 → 1.0.44
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 +2 -2
- package/build/cjs/index.js +17 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +17 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +62 -9
- package/build/cjs/meta.js +17 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/{table-reservations-v1-experience-experiences.universal-y3E_tS1X.d.ts → table-reservations-v1-experience-experiences.universal-Dye8qAKg.d.ts} +62 -9
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +16 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +16 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +62 -9
- package/build/es/meta.mjs +16 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/{table-reservations-v1-experience-experiences.universal-y3E_tS1X.d.mts → table-reservations-v1-experience-experiences.universal-Dye8qAKg.d.mts} +62 -9
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +17 -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 +17 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +62 -9
- package/build/internal/cjs/meta.js +17 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-y3E_tS1X.d.ts → table-reservations-v1-experience-experiences.universal-Dye8qAKg.d.ts} +62 -9
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +16 -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 +16 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +62 -9
- package/build/internal/es/meta.mjs +16 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/{table-reservations-v1-experience-experiences.universal-y3E_tS1X.d.mts → table-reservations-v1-experience-experiences.universal-Dye8qAKg.d.mts} +62 -9
- 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;
|
|
@@ -1542,6 +1551,8 @@ interface Decoration extends DecorationDataOneOf {
|
|
|
1542
1551
|
subscriptData?: boolean | null;
|
|
1543
1552
|
/** Data for a font family decoration. */
|
|
1544
1553
|
fontFamilyData?: FontFamilyData;
|
|
1554
|
+
/** Data for a hand-drawn sketch annotation decoration. */
|
|
1555
|
+
sketchData?: SketchData;
|
|
1545
1556
|
/** The type of decoration to apply. */
|
|
1546
1557
|
type?: DecorationTypeWithLiterals;
|
|
1547
1558
|
}
|
|
@@ -1573,6 +1584,8 @@ interface DecorationDataOneOf {
|
|
|
1573
1584
|
subscriptData?: boolean | null;
|
|
1574
1585
|
/** Data for a font family decoration. */
|
|
1575
1586
|
fontFamilyData?: FontFamilyData;
|
|
1587
|
+
/** Data for a hand-drawn sketch annotation decoration. */
|
|
1588
|
+
sketchData?: SketchData;
|
|
1576
1589
|
}
|
|
1577
1590
|
declare enum DecorationType {
|
|
1578
1591
|
BOLD = "BOLD",
|
|
@@ -1588,10 +1601,11 @@ declare enum DecorationType {
|
|
|
1588
1601
|
STRIKETHROUGH = "STRIKETHROUGH",
|
|
1589
1602
|
SUPERSCRIPT = "SUPERSCRIPT",
|
|
1590
1603
|
SUBSCRIPT = "SUBSCRIPT",
|
|
1591
|
-
FONT_FAMILY = "FONT_FAMILY"
|
|
1604
|
+
FONT_FAMILY = "FONT_FAMILY",
|
|
1605
|
+
SKETCH = "SKETCH"
|
|
1592
1606
|
}
|
|
1593
1607
|
/** @enumType */
|
|
1594
|
-
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY';
|
|
1608
|
+
type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT' | 'FONT_FAMILY' | 'SKETCH';
|
|
1595
1609
|
interface AnchorData {
|
|
1596
1610
|
/** The target node's ID. */
|
|
1597
1611
|
anchor?: string;
|
|
@@ -1634,6 +1648,27 @@ interface FontFamilyData {
|
|
|
1634
1648
|
/** @maxLength 1000 */
|
|
1635
1649
|
value?: string | null;
|
|
1636
1650
|
}
|
|
1651
|
+
interface SketchData {
|
|
1652
|
+
/** The sketch annotation variant to draw over the text. */
|
|
1653
|
+
variant?: VariantWithLiterals;
|
|
1654
|
+
/**
|
|
1655
|
+
* Annotation color. Defaults to the theme action color.
|
|
1656
|
+
* @maxLength 19
|
|
1657
|
+
*/
|
|
1658
|
+
color?: string | null;
|
|
1659
|
+
/** Whether the annotation animates on first paint. Defaults to `true`. */
|
|
1660
|
+
animate?: boolean | null;
|
|
1661
|
+
}
|
|
1662
|
+
declare enum Variant {
|
|
1663
|
+
UNDERLINE = "UNDERLINE",
|
|
1664
|
+
BOX = "BOX",
|
|
1665
|
+
CIRCLE = "CIRCLE",
|
|
1666
|
+
HIGHLIGHT = "HIGHLIGHT",
|
|
1667
|
+
STRIKETHROUGH = "STRIKETHROUGH",
|
|
1668
|
+
CROSSED_OFF = "CROSSED_OFF"
|
|
1669
|
+
}
|
|
1670
|
+
/** @enumType */
|
|
1671
|
+
type VariantWithLiterals = Variant | 'UNDERLINE' | 'BOX' | 'CIRCLE' | 'HIGHLIGHT' | 'STRIKETHROUGH' | 'CROSSED_OFF';
|
|
1637
1672
|
interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
1638
1673
|
/** Data for embedded Wix Bookings content. */
|
|
1639
1674
|
bookingData?: BookingData;
|
|
@@ -2535,10 +2570,18 @@ declare enum SmartBlockDataType {
|
|
|
2535
2570
|
/** Star rating display with stars and a numeric value per cell. */
|
|
2536
2571
|
STAR_RATING = "STAR_RATING",
|
|
2537
2572
|
/** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
|
|
2538
|
-
QUOTE_BOXES = "QUOTE_BOXES"
|
|
2573
|
+
QUOTE_BOXES = "QUOTE_BOXES",
|
|
2574
|
+
/** Donut/ring with numbered annular-sector segments; cell text labels sit outside the ring. */
|
|
2575
|
+
CIRCLE = "CIRCLE",
|
|
2576
|
+
/** 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. */
|
|
2577
|
+
PYRAMID = "PYRAMID",
|
|
2578
|
+
/** Cells render a horizontal bar whose width scales with cell index, creating a staircase pattern; bar carries the cell number or a custom shape. */
|
|
2579
|
+
STAIRCASE = "STAIRCASE",
|
|
2580
|
+
/** 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. */
|
|
2581
|
+
VERTICAL_FUNNEL = "VERTICAL_FUNNEL"
|
|
2539
2582
|
}
|
|
2540
2583
|
/** @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';
|
|
2584
|
+
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
2585
|
/** Column size controlling how many cells appear per row. */
|
|
2543
2586
|
declare enum ColumnSize {
|
|
2544
2587
|
/** Up to 4 cells in a row. */
|
|
@@ -2585,6 +2628,16 @@ interface SmartBlockCellData {
|
|
|
2585
2628
|
*/
|
|
2586
2629
|
shapeColor?: string | null;
|
|
2587
2630
|
}
|
|
2631
|
+
interface CheckboxListData {
|
|
2632
|
+
/** Indentation level from 0-4. */
|
|
2633
|
+
indentation?: number;
|
|
2634
|
+
/** Offset level from 0-4. */
|
|
2635
|
+
offset?: number | null;
|
|
2636
|
+
}
|
|
2637
|
+
interface ListItemNodeData {
|
|
2638
|
+
/** Checkbox list item state. Defaults to `false`. */
|
|
2639
|
+
checked?: boolean | null;
|
|
2640
|
+
}
|
|
2588
2641
|
interface Metadata {
|
|
2589
2642
|
/** Schema version. */
|
|
2590
2643
|
version?: number;
|
|
@@ -4112,7 +4165,7 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
4112
4165
|
/** If present, indicates the action that triggered the event. */
|
|
4113
4166
|
originatedFrom?: string | null;
|
|
4114
4167
|
/**
|
|
4115
|
-
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01
|
|
4168
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
|
|
4116
4169
|
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
4117
4170
|
*/
|
|
4118
4171
|
entityEventSequence?: string | null;
|
|
@@ -4301,7 +4354,7 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
4301
4354
|
/** If present, indicates the action that triggered the event. */
|
|
4302
4355
|
originatedFrom?: string | null;
|
|
4303
4356
|
/**
|
|
4304
|
-
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01
|
|
4357
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number.
|
|
4305
4358
|
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
4306
4359
|
*/
|
|
4307
4360
|
entityEventSequence?: string | null;
|
|
@@ -4924,4 +4977,4 @@ declare function bulkArchiveExperiences(experienceIds: string[]): Promise<NonNul
|
|
|
4924
4977
|
*/
|
|
4925
4978
|
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>>;
|
|
4926
4979
|
|
|
4927
|
-
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 Configuration 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 Metadata as cQ, type DocumentStyle as cR, type TextNodeStyle as cS, type PerGuestOptions as cT, type DisplayInfo as cU, type PaymentPolicy as cV, type PaymentPolicyOptionsOneOf as cW, type OnlineReservations as cX, type ReservationForm as cY, type TableManagement as cZ, type TableManagementOptionsOneOf 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 NestedResultValueResultOneOf as d$, type ExtendedFields as d0, type Tags as d1, type TagList as d2, type SeoSettings as d3, type SeoSchema as d4, type Keyword as d5, type Tag as d6, type Settings as d7, type InvalidateCache as d8, type InvalidateCacheGetByOneOf as d9, type CursorSearchPagingMethodOneOf as dA, type Aggregation as dB, type AggregationKindOneOf as dC, type RangeBucket as dD, type IncludeMissingValuesOptions as dE, type ValueAggregation as dF, type ValueAggregationOptionsOneOf as dG, type RangeAggregation as dH, type ScalarAggregation as dI, type DateHistogramAggregation as dJ, type NestedAggregationItem as dK, type NestedAggregationItemKindOneOf as dL, type NestedAggregation as dM, type SearchDetails as dN, type AggregationData as dO, type ValueAggregationResult as dP, type RangeAggregationResult as dQ, type NestedAggregationResults as dR, type NestedAggregationResultsResultOneOf as dS, type ValueResults as dT, type RangeResults as dU, type AggregationResultsScalarResult as dV, type NestedValueAggregationResult as dW, type ValueResult as dX, type RangeResult as dY, type ScalarResult as dZ, type NestedResultValue as d_, type App as da, type Page as db, type URI as dc, type File as dd, type CustomTag as de, type Pages as df, type URIs as dg, type TagsModified as dh, type CreateExperienceRequest as di, type CreateExperienceResponse as dj, type GetExperienceRequest as dk, type GetExperienceResponse as dl, type GetExperienceBySlugRequest as dm, type UpdateExperienceRequest as dn, type UpdateExperienceResponse as dp, type QueryExperiencesRequest as dq, type CursorQuery as dr, type CursorQueryPagingMethodOneOf as ds, type Sorting as dt, type CursorPaging as du, type QueryExperiencesResponse as dv, type CursorPagingMetadata as dw, type Cursors as dx, type SearchExperiencesRequest as dy, type CursorSearch as dz, type BulkUpdateExperienceTagsOptions as e, type StartDaysAndTimesDayOfWeekWithLiterals as e$, type Results as e0, type DateHistogramResult as e1, type GroupByValueResults as e2, type DateHistogramResults as e3, type NestedResults as e4, type AggregationResults as e5, type AggregationResultsResultOneOf as e6, type BulkUpdateExperiencesRequest as e7, type ItemMetadata as e8, type ApplicationError as e9, type PropertiesChange as eA, type SiteCreated as eB, type SiteCloned as eC, type Empty as eD, type DomainEvent as eE, type DomainEventBodyOneOf as eF, type EntityCreatedEvent as eG, type RestoreInfo as eH, type EntityUpdatedEvent as eI, type EntityDeletedEvent as eJ, type ActionEvent as eK, type MessageEnvelope as eL, type IdentificationData as eM, type IdentificationDataIdOneOf as eN, type AccountInfo as eO, type BaseEventMetadata as eP, type EventMetadata as eQ, type AccountInfoMetadata as eR, type ExperiencesQueryResult as eS, type ExperienceQuerySpec as eT, type ExperienceSearchSpec as eU, utils as eV, type TableAvailabilityTypeWithLiterals as eW, type TableAssignmentTypeWithLiterals as eX, type TableManagementModeWithLiterals as eY, type UnitWithLiterals as eZ, type ModeWithLiterals as e_, type BulkUpdateExperiencesResult as ea, type BulkActionMetadata as eb, type BulkUpdateExperienceTagsRequest as ec, type BulkUpdateExperienceTagsResult as ed, type BulkUpdateExperienceTagsByFilterRequest as ee, type BulkArchiveExperiencesRequest as ef, type BulkArchiveExperiencesResult as eg, type BulkUnarchiveExperiencesRequest as eh, type BulkUnarchiveExperiencesResult as ei, type SitePropertiesNotification as ej, type SitePropertiesEvent as ek, type Properties as el, type Categories as em, type Locale as en, type Address as eo, type AddressHint as ep, type GeoCoordinates as eq, type BusinessSchedule as er, type TimePeriod as es, type SpecialHourPeriod as et, type Multilingual as eu, type SupportedLanguage as ev, type ConsentPolicy as ew, type Translation as ex, type ChangeContext as ey, type ChangeContextPayloadOneOf as ez, type BulkUpdateExperienceTagsResponse as f, type IntervalWithLiterals as f$, type RecurrenceWithLiterals as f0, type NodeTypeWithLiterals as f1, type BackgroundTypeWithLiterals as f2, type GradientTypeWithLiterals as f3, type WidthTypeWithLiterals as f4, type PluginContainerDataAlignmentWithLiterals as f5, type ButtonDataTypeWithLiterals as f6, type TargetWithLiterals as f7, type TextAlignmentWithLiterals as f8, type LineStyleWithLiterals as f9, type InitialExpandedItemsWithLiterals as fA, type DirectionWithLiterals as fB, type VerticalAlignmentWithLiterals as fC, type NullValueWithLiterals as fD, type ImageScalingScalingWithLiterals as fE, type ImagePositionWithLiterals as fF, type OriginWithLiterals as fG, type BannerPositionWithLiterals as fH, type LayoutDataBackgroundTypeWithLiterals as fI, type BackdropTypeWithLiterals as fJ, type VerticalAlignmentAlignmentWithLiterals as fK, type ResponsivenessBehaviourWithLiterals as fL, type DesignTargetWithLiterals as fM, type ScalingWithLiterals as fN, type ImagePositionPositionWithLiterals as fO, type CardDataBackgroundTypeWithLiterals as fP, type ListStyleWithLiterals as fQ, type IndentationWithLiterals as fR, type SmartBlockDataTypeWithLiterals as fS, type ColumnSizeWithLiterals as fT, type PaymentPolicyTypeWithLiterals as fU, type SortOrderWithLiterals as fV, type SortTypeWithLiterals as fW, type SortDirectionWithLiterals as fX, type MissingValuesWithLiterals as fY, type ScalarTypeWithLiterals as fZ, type NestedAggregationTypeWithLiterals as f_, type WidthWithLiterals as fa, type DividerDataAlignmentWithLiterals as fb, type ViewModeWithLiterals as fc, type LayoutTypeWithLiterals as fd, type OrientationWithLiterals as fe, type CropWithLiterals as ff, type ThumbnailsAlignmentWithLiterals as fg, type GIFTypeWithLiterals as fh, type SourceWithLiterals as fi, type StylesPositionWithLiterals as fj, type MapTypeWithLiterals as fk, type ViewRoleWithLiterals as fl, type VoteRoleWithLiterals as fm, type PollLayoutTypeWithLiterals as fn, type PollLayoutDirectionWithLiterals as fo, type PollDesignBackgroundTypeWithLiterals as fp, type DecorationTypeWithLiterals as fq, type FontTypeWithLiterals as fr, type PositionWithLiterals as fs, type AspectRatioWithLiterals as ft, type ResizingWithLiterals as fu, type PlacementWithLiterals as fv, type TypeWithLiterals as fw, type AlignmentWithLiterals as fx, type LayoutWithLiterals as fy, type AppTypeWithLiterals as fz, type BulkUpdateExperienceTagsApplicationErrors as g, type AggregationTypeWithLiterals as g0, type SearchDetailsModeWithLiterals as g1, type PlacementTypeWithLiterals as g2, type DayOfWeekWithLiterals as g3, type ResolutionMethodWithLiterals as g4, type WebhookIdentityTypeWithLiterals as g5, type CommonQueryWithEntityContext as g6, type CommonSearchWithEntityContext as g7, onExperienceCreated as g8, onExperienceTagsModified as g9, onExperienceUpdated as ga, createExperience as gb, getExperience as gc, getExperienceBySlug as gd, updateExperience as ge, queryExperiences as gf, bulkUpdateExperiences as gg, bulkUpdateExperienceTags as gh, bulkUpdateExperienceTagsByFilter as gi, bulkArchiveExperiences as gj, bulkUnarchiveExperiences as gk, 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 };
|
|
4980
|
+
export { PollLayoutType as $, Target as A, type BulkUpdateExperiencesOptions as B, TextAlignment as C, Width as D, type Experience as E, DividerDataAlignment as F, type GetExperienceBySlugResponse as G, LayoutType as H, Crop as I, ThumbnailsAlignment as J, GIFType as K, LineStyle as L, type MaskedExperience as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, Source as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, StylesPosition as X, MapType as Y, ViewRole as Z, VoteRole as _, type UpdateExperienceApplicationErrors as a, type PrivacyPolicyValueOneOf as a$, PollLayoutDirection as a0, PollDesignBackgroundType as a1, DecorationType as a2, FontType as a3, Variant as a4, Position as a5, AspectRatio as a6, Resizing as a7, Placement as a8, Type as a9, SortDirection as aA, MissingValues as aB, ScalarType as aC, NestedAggregationType as aD, Interval as aE, AggregationType as aF, SearchDetailsMode as aG, PlacementType as aH, DayOfWeek as aI, ResolutionMethod as aJ, WebhookIdentityType as aK, type Table as aL, type TableCombination as aM, type SpecificTablesOptions as aN, type OnOptions as aO, type OnOptionsOptionsOneOf as aP, type StartDaysAndTimes as aQ, type WeeklyOptions as aR, type OneTimeOptions as aS, type Entry as aT, type EntryRecurrenceOptionsOneOf as aU, type PartySize as aV, type NoticePeriod as aW, type Approval as aX, type MaxGuests as aY, type OnlineReservationsBusinessSchedule as aZ, type PrivacyPolicy as a_, Alignment as aa, Layout as ab, AppType as ac, InitialExpandedItems as ad, Direction as ae, VerticalAlignment as af, NullValue as ag, ImageScalingScaling as ah, ImagePosition as ai, Origin as aj, BannerPosition as ak, LayoutDataBackgroundType as al, BackdropType as am, VerticalAlignmentAlignment as an, ResponsivenessBehaviour as ao, DesignTarget as ap, Scaling as aq, ImagePositionPosition as ar, CardDataBackgroundType as as, ListStyle as at, Indentation as au, SmartBlockDataType as av, ColumnSize as aw, PaymentPolicyType as ax, SortOrder as ay, SortType as az, type ExperienceSearch as b, type OptionDesign as b$, type TermsAndConditions as b0, type TermsAndConditionsValueOneOf as b1, type CustomFieldDefinition as b2, type EmailMarketingCheckbox as b3, type RichContent as b4, type Node as b5, type NodeDataOneOf as b6, type NodeStyle as b7, type ButtonData as b8, type Gradient as b9, type GalleryOptions as bA, type GalleryOptionsLayout as bB, type ItemStyle as bC, type Thumbnails as bD, type GIFData as bE, type GIF as bF, type HeadingData as bG, type HTMLData as bH, type HTMLDataDataOneOf as bI, type ImageData as bJ, type StylesBorder as bK, type ImageDataStyles as bL, type LinkPreviewData as bM, type LinkPreviewDataStyles as bN, type MapData as bO, type MapSettings as bP, type ParagraphData as bQ, type PollData as bR, type Permissions as bS, type Option as bT, type PollSettings as bU, type PollLayout as bV, type OptionLayout as bW, type BackgroundGradient as bX, type PollDesignBackground as bY, type PollDesignBackgroundBackgroundOneOf as bZ, type PollDesign as b_, type Stop as ba, type Border as bb, type Colors as bc, type Background as bd, type PluginContainerData as be, type PluginContainerDataWidth as bf, type PluginContainerDataWidthDataOneOf as bg, type Spoiler as bh, type Height as bi, type Styles as bj, type Link as bk, type LinkDataOneOf as bl, type Rel as bm, type CodeBlockData as bn, type TextStyle as bo, type DividerData as bp, type FileData as bq, type FileSource as br, type FileSourceDataOneOf as bs, type PDFSettings as bt, type GalleryData as bu, type Media as bv, type Image as bw, type Video as bx, type Item as by, type ItemDataOneOf as bz, type BulkUpdateExperiencesResponse as c, type OnlineReservations as c$, type Poll as c0, type PollDataLayout as c1, type Design as c2, type TextData as c3, type Decoration as c4, type DecorationDataOneOf as c5, type AnchorData as c6, type ColorData as c7, type LinkData as c8, type MentionData as c9, type OrderedListData as cA, type BulletedListData as cB, type BlockquoteData as cC, type CaptionData as cD, type LayoutData as cE, type LayoutDataBackgroundImage as cF, type Banner as cG, type LayoutDataBackground as cH, type Backdrop as cI, type LayoutCellData as cJ, type ShapeData as cK, type ShapeDataStyles as cL, type CardData as cM, type CardDataBackground as cN, type BackgroundImage as cO, type TocData as cP, type SmartBlockData as cQ, type SmartBlockCellData as cR, type CheckboxListData as cS, type ListItemNodeData as cT, type Metadata as cU, type DocumentStyle as cV, type TextNodeStyle as cW, type PerGuestOptions as cX, type DisplayInfo as cY, type PaymentPolicy as cZ, type PaymentPolicyOptionsOneOf as c_, type FontSizeData as ca, type SpoilerData as cb, type FontFamilyData as cc, type SketchData as cd, type AppEmbedData as ce, type AppEmbedDataAppDataOneOf as cf, type BookingData as cg, type EventData as ch, type ButtonStyles as ci, type ImageStyles as cj, type RibbonStyles as ck, type CardStyles as cl, type PricingData as cm, type VideoData as cn, type PlaybackOptions as co, type EmbedData as cp, type Oembed as cq, type CollapsibleListData as cr, type TableData as cs, type Dimensions as ct, type TableCellData as cu, type CellStyle as cv, type BorderColors as cw, type BorderWidths as cx, type ListValue as cy, type AudioData as cz, type BulkUpdateExperiencesApplicationErrors as d, type ValueResult as d$, type ReservationForm as d0, type TableManagement as d1, type TableManagementOptionsOneOf as d2, type Configuration as d3, type ExtendedFields as d4, type Tags as d5, type TagList as d6, type SeoSettings as d7, type SeoSchema as d8, type Keyword as d9, type CursorPagingMetadata as dA, type Cursors as dB, type SearchExperiencesRequest as dC, type CursorSearch as dD, type CursorSearchPagingMethodOneOf as dE, type Aggregation as dF, type AggregationKindOneOf as dG, type RangeBucket as dH, type IncludeMissingValuesOptions as dI, type ValueAggregation as dJ, type ValueAggregationOptionsOneOf as dK, type RangeAggregation as dL, type ScalarAggregation as dM, type DateHistogramAggregation as dN, type NestedAggregationItem as dO, type NestedAggregationItemKindOneOf as dP, type NestedAggregation as dQ, type SearchDetails as dR, type AggregationData as dS, type ValueAggregationResult as dT, type RangeAggregationResult as dU, type NestedAggregationResults as dV, type NestedAggregationResultsResultOneOf as dW, type ValueResults as dX, type RangeResults as dY, type AggregationResultsScalarResult as dZ, type NestedValueAggregationResult as d_, type Tag as da, type Settings as db, type InvalidateCache as dc, type InvalidateCacheGetByOneOf as dd, type App as de, type Page as df, type URI as dg, type File as dh, type CustomTag as di, type Pages as dj, type URIs as dk, type TagsModified as dl, type CreateExperienceRequest as dm, type CreateExperienceResponse as dn, type GetExperienceRequest as dp, type GetExperienceResponse as dq, type GetExperienceBySlugRequest as dr, type UpdateExperienceRequest as ds, type UpdateExperienceResponse as dt, type QueryExperiencesRequest as du, type CursorQuery as dv, type CursorQueryPagingMethodOneOf as dw, type Sorting as dx, type CursorPaging as dy, type QueryExperiencesResponse as dz, type BulkUpdateExperienceTagsOptions as e, type TableAssignmentTypeWithLiterals as e$, type RangeResult as e0, type ScalarResult as e1, type NestedResultValue as e2, type NestedResultValueResultOneOf as e3, type Results as e4, type DateHistogramResult as e5, type GroupByValueResults as e6, type DateHistogramResults as e7, type NestedResults as e8, type AggregationResults as e9, type ConsentPolicy as eA, type Translation as eB, type ChangeContext as eC, type ChangeContextPayloadOneOf as eD, type PropertiesChange as eE, type SiteCreated as eF, type SiteCloned as eG, type Empty as eH, type DomainEvent as eI, type DomainEventBodyOneOf as eJ, type EntityCreatedEvent as eK, type RestoreInfo as eL, type EntityUpdatedEvent as eM, type EntityDeletedEvent as eN, type ActionEvent as eO, type MessageEnvelope as eP, type IdentificationData as eQ, type IdentificationDataIdOneOf as eR, type AccountInfo as eS, type BaseEventMetadata as eT, type EventMetadata as eU, type AccountInfoMetadata as eV, type ExperiencesQueryResult as eW, type ExperienceQuerySpec as eX, type ExperienceSearchSpec as eY, utils as eZ, type TableAvailabilityTypeWithLiterals as e_, type AggregationResultsResultOneOf as ea, type BulkUpdateExperiencesRequest as eb, type ItemMetadata as ec, type ApplicationError as ed, type BulkUpdateExperiencesResult as ee, type BulkActionMetadata as ef, type BulkUpdateExperienceTagsRequest as eg, type BulkUpdateExperienceTagsResult as eh, type BulkUpdateExperienceTagsByFilterRequest as ei, type BulkArchiveExperiencesRequest as ej, type BulkArchiveExperiencesResult as ek, type BulkUnarchiveExperiencesRequest as el, type BulkUnarchiveExperiencesResult as em, type SitePropertiesNotification as en, type SitePropertiesEvent as eo, type Properties as ep, type Categories as eq, type Locale as er, type Address as es, type AddressHint as et, type GeoCoordinates as eu, type BusinessSchedule as ev, type TimePeriod as ew, type SpecialHourPeriod as ex, type Multilingual as ey, type SupportedLanguage as ez, type BulkUpdateExperienceTagsResponse as f, type SortTypeWithLiterals as f$, type TableManagementModeWithLiterals as f0, type UnitWithLiterals as f1, type ModeWithLiterals as f2, type StartDaysAndTimesDayOfWeekWithLiterals as f3, type RecurrenceWithLiterals as f4, type NodeTypeWithLiterals as f5, type BackgroundTypeWithLiterals as f6, type GradientTypeWithLiterals as f7, type WidthTypeWithLiterals as f8, type PluginContainerDataAlignmentWithLiterals as f9, type PlacementWithLiterals as fA, type TypeWithLiterals as fB, type AlignmentWithLiterals as fC, type LayoutWithLiterals as fD, type AppTypeWithLiterals as fE, type InitialExpandedItemsWithLiterals as fF, type DirectionWithLiterals as fG, type VerticalAlignmentWithLiterals as fH, type NullValueWithLiterals as fI, type ImageScalingScalingWithLiterals as fJ, type ImagePositionWithLiterals as fK, type OriginWithLiterals as fL, type BannerPositionWithLiterals as fM, type LayoutDataBackgroundTypeWithLiterals as fN, type BackdropTypeWithLiterals as fO, type VerticalAlignmentAlignmentWithLiterals as fP, type ResponsivenessBehaviourWithLiterals as fQ, type DesignTargetWithLiterals as fR, type ScalingWithLiterals as fS, type ImagePositionPositionWithLiterals as fT, type CardDataBackgroundTypeWithLiterals as fU, type ListStyleWithLiterals as fV, type IndentationWithLiterals as fW, type SmartBlockDataTypeWithLiterals as fX, type ColumnSizeWithLiterals as fY, type PaymentPolicyTypeWithLiterals as fZ, type SortOrderWithLiterals as f_, type ButtonDataTypeWithLiterals as fa, type TargetWithLiterals as fb, type TextAlignmentWithLiterals as fc, type LineStyleWithLiterals as fd, type WidthWithLiterals as fe, type DividerDataAlignmentWithLiterals as ff, type ViewModeWithLiterals as fg, type LayoutTypeWithLiterals as fh, type OrientationWithLiterals as fi, type CropWithLiterals as fj, type ThumbnailsAlignmentWithLiterals as fk, type GIFTypeWithLiterals as fl, type SourceWithLiterals as fm, type StylesPositionWithLiterals as fn, type MapTypeWithLiterals as fo, type ViewRoleWithLiterals as fp, type VoteRoleWithLiterals as fq, type PollLayoutTypeWithLiterals as fr, type PollLayoutDirectionWithLiterals as fs, type PollDesignBackgroundTypeWithLiterals as ft, type DecorationTypeWithLiterals as fu, type FontTypeWithLiterals as fv, type VariantWithLiterals as fw, type PositionWithLiterals as fx, type AspectRatioWithLiterals as fy, type ResizingWithLiterals as fz, type BulkUpdateExperienceTagsApplicationErrors as g, type SortDirectionWithLiterals as g0, type MissingValuesWithLiterals as g1, type ScalarTypeWithLiterals as g2, type NestedAggregationTypeWithLiterals as g3, type IntervalWithLiterals as g4, type AggregationTypeWithLiterals as g5, type SearchDetailsModeWithLiterals as g6, type PlacementTypeWithLiterals as g7, type DayOfWeekWithLiterals as g8, type ResolutionMethodWithLiterals as g9, type WebhookIdentityTypeWithLiterals as ga, type CommonQueryWithEntityContext as gb, type CommonSearchWithEntityContext as gc, onExperienceCreated as gd, onExperienceTagsModified as ge, onExperienceUpdated as gf, createExperience as gg, getExperience as gh, getExperienceBySlug as gi, updateExperience as gj, queryExperiences as gk, bulkUpdateExperiences as gl, bulkUpdateExperienceTags as gm, bulkUpdateExperienceTagsByFilter as gn, bulkArchiveExperiences as go, bulkUnarchiveExperiences as gp, type BulkUpdateExperienceTagsByFilterOptions as h, type BulkUpdateExperienceTagsByFilterResponse as i, type BulkUpdateExperienceTagsByFilterApplicationErrors as j, type BulkArchiveExperiencesResponse as k, type BulkUnarchiveExperiencesResponse as l, type ExperienceCreatedEnvelope as m, type ExperienceTagsModifiedEnvelope as n, type ExperienceUpdatedEnvelope as o, type ExperiencesQueryBuilder as p, type ExperienceQuery as q, TableAssignmentType as r, TableManagementMode as s, typedQueryExperiences as t, Unit as u, Mode as v, StartDaysAndTimesDayOfWeek as w, BackgroundType as x, GradientType as y, ButtonDataType as z };
|
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.44",
|
|
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": "5d9b8f6dabeef92c63447421647f86bd8da6a83c5f88e48f492355ec"
|
|
61
61
|
}
|