@wix/auto_sdk_table-reservations_experiences 1.0.38 → 1.0.39
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 +4 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +54 -16
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/{table-reservations-v1-experience-experiences.universal-DBg6eXpp.d.ts → table-reservations-v1-experience-experiences.universal-CCI6yJHw.d.ts} +55 -15
- package/build/es/index.d.mts +4 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +54 -16
- package/build/es/meta.mjs.map +1 -1
- package/build/es/{table-reservations-v1-experience-experiences.universal-DBg6eXpp.d.mts → table-reservations-v1-experience-experiences.universal-CCI6yJHw.d.mts} +55 -15
- package/build/internal/cjs/index.d.ts +4 -2
- 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.map +1 -1
- package/build/internal/cjs/meta.d.ts +54 -16
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-DBg6eXpp.d.ts → table-reservations-v1-experience-experiences.universal-CCI6yJHw.d.ts} +55 -15
- package/build/internal/es/index.d.mts +4 -2
- 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.map +1 -1
- package/build/internal/es/meta.d.mts +54 -16
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/{table-reservations-v1-experience-experiences.universal-DBg6eXpp.d.mts → table-reservations-v1-experience-experiences.universal-CCI6yJHw.d.mts} +55 -15
- package/package.json +2 -2
|
@@ -3615,27 +3615,32 @@ interface AggregationResultsResultOneOf {
|
|
|
3615
3615
|
/** Nested aggregation results. */
|
|
3616
3616
|
nested?: NestedResults;
|
|
3617
3617
|
}
|
|
3618
|
-
interface
|
|
3618
|
+
interface BulkUpdateExperiencesRequest {
|
|
3619
3619
|
/**
|
|
3620
|
-
* List of
|
|
3620
|
+
* List of experiences to update, with the fields to update for each experience.
|
|
3621
3621
|
* @minSize 1
|
|
3622
3622
|
* @maxSize 100
|
|
3623
|
-
* @format GUID
|
|
3624
3623
|
*/
|
|
3625
|
-
|
|
3626
|
-
/**
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3624
|
+
experiences?: MaskedExperience[];
|
|
3625
|
+
/**
|
|
3626
|
+
* Whether to include the updated experiences in the response. When `true`, each successfully updated experience is returned in the corresponding result's `item` field.
|
|
3627
|
+
*
|
|
3628
|
+
* Default: `false`
|
|
3629
|
+
*/
|
|
3630
|
+
returnEntity?: boolean;
|
|
3630
3631
|
}
|
|
3631
|
-
interface
|
|
3632
|
+
interface MaskedExperience {
|
|
3633
|
+
/** Experience to update. May be partial. */
|
|
3634
|
+
experience?: Experience;
|
|
3635
|
+
}
|
|
3636
|
+
interface BulkUpdateExperiencesResponse {
|
|
3632
3637
|
/**
|
|
3633
|
-
*
|
|
3638
|
+
* List of results, one per experience in the request. Each result contains the update status for the corresponding experience, in the same order as the request.
|
|
3634
3639
|
* @minSize 1
|
|
3635
3640
|
* @maxSize 100
|
|
3636
3641
|
*/
|
|
3637
|
-
results?:
|
|
3638
|
-
/** Metadata
|
|
3642
|
+
results?: BulkUpdateExperiencesResult[];
|
|
3643
|
+
/** Metadata for the bulk update, including the total number of successful and failed updates. */
|
|
3639
3644
|
bulkActionMetadata?: BulkActionMetadata;
|
|
3640
3645
|
}
|
|
3641
3646
|
interface ItemMetadata {
|
|
@@ -3659,9 +3664,15 @@ interface ApplicationError {
|
|
|
3659
3664
|
/** Data related to the error. */
|
|
3660
3665
|
data?: Record<string, any> | null;
|
|
3661
3666
|
}
|
|
3662
|
-
interface
|
|
3663
|
-
/**
|
|
3667
|
+
interface BulkUpdateExperiencesResult {
|
|
3668
|
+
/** Update status for an individual experience, including success or failure information and error details when the update failed. */
|
|
3664
3669
|
itemMetadata?: ItemMetadata;
|
|
3670
|
+
/**
|
|
3671
|
+
* Updated experience.
|
|
3672
|
+
*
|
|
3673
|
+
* Returned only when `returnEntity` is `true` in the request and the update succeeded.
|
|
3674
|
+
*/
|
|
3675
|
+
item?: Experience;
|
|
3665
3676
|
}
|
|
3666
3677
|
interface BulkActionMetadata {
|
|
3667
3678
|
/** Number of items that were successfully processed. */
|
|
@@ -3671,6 +3682,33 @@ interface BulkActionMetadata {
|
|
|
3671
3682
|
/** Number of failures without details because detailed failure threshold was exceeded. */
|
|
3672
3683
|
undetailedFailures?: number;
|
|
3673
3684
|
}
|
|
3685
|
+
interface BulkUpdateExperienceTagsRequest {
|
|
3686
|
+
/**
|
|
3687
|
+
* List of experience IDs to update tags for.
|
|
3688
|
+
* @minSize 1
|
|
3689
|
+
* @maxSize 100
|
|
3690
|
+
* @format GUID
|
|
3691
|
+
*/
|
|
3692
|
+
experienceIds: string[];
|
|
3693
|
+
/** Tags to assign to the experiences. */
|
|
3694
|
+
assignTags?: Tags;
|
|
3695
|
+
/** Tags to unassign from the experiences. */
|
|
3696
|
+
unassignTags?: Tags;
|
|
3697
|
+
}
|
|
3698
|
+
interface BulkUpdateExperienceTagsResponse {
|
|
3699
|
+
/**
|
|
3700
|
+
* Results of the bulk tag update operation.
|
|
3701
|
+
* @minSize 1
|
|
3702
|
+
* @maxSize 100
|
|
3703
|
+
*/
|
|
3704
|
+
results?: BulkUpdateExperienceTagsResult[];
|
|
3705
|
+
/** Metadata about the bulk update operation. */
|
|
3706
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
3707
|
+
}
|
|
3708
|
+
interface BulkUpdateExperienceTagsResult {
|
|
3709
|
+
/** Metadata about the individual experience tag update operation. */
|
|
3710
|
+
itemMetadata?: ItemMetadata;
|
|
3711
|
+
}
|
|
3674
3712
|
interface BulkUpdateExperienceTagsByFilterRequest {
|
|
3675
3713
|
/** Filter criteria to select experiences for tag updates. */
|
|
3676
3714
|
filter: Record<string, any> | null;
|
|
@@ -4354,6 +4392,8 @@ declare function getExperienceBySlug(slug: string): Promise<NonNullablePaths<Get
|
|
|
4354
4392
|
* Each time the experience is updated, `revision` increments by 1.
|
|
4355
4393
|
* The current `revision` must be passed when updating the experience.
|
|
4356
4394
|
* This ensures you're working with the latest experience information and prevents unintended overwrites.
|
|
4395
|
+
*
|
|
4396
|
+
* To update multiple experiences in a single request, call [Bulk Update Experiences](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/reservations/experiences/bulk-update-experiences).
|
|
4357
4397
|
* @param _id - Experience ID.
|
|
4358
4398
|
* @public
|
|
4359
4399
|
* @requiredField _id
|
|
@@ -4828,4 +4868,4 @@ declare function bulkArchiveExperiences(experienceIds: string[]): Promise<NonNul
|
|
|
4828
4868
|
*/
|
|
4829
4869
|
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>>;
|
|
4830
4870
|
|
|
4831
|
-
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 };
|
|
4871
|
+
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 BackgroundTypeWithLiterals as e$, type AggregationResults as e0, type AggregationResultsResultOneOf as e1, type BulkUpdateExperiencesRequest as e2, type MaskedExperience as e3, type BulkUpdateExperiencesResponse as e4, type ItemMetadata as e5, type ApplicationError as e6, type BulkUpdateExperiencesResult as e7, type BulkActionMetadata as e8, type BulkUpdateExperienceTagsRequest as e9, type Empty as eA, type DomainEvent as eB, type DomainEventBodyOneOf as eC, type EntityCreatedEvent as eD, type RestoreInfo as eE, type EntityUpdatedEvent as eF, type EntityDeletedEvent as eG, type ActionEvent as eH, type MessageEnvelope as eI, type IdentificationData as eJ, type IdentificationDataIdOneOf as eK, type AccountInfo as eL, type BaseEventMetadata as eM, type EventMetadata as eN, type AccountInfoMetadata as eO, type ExperiencesQueryResult as eP, type ExperienceQuerySpec as eQ, type ExperienceSearchSpec as eR, utils as eS, type TableAvailabilityTypeWithLiterals as eT, type TableAssignmentTypeWithLiterals as eU, type TableManagementModeWithLiterals as eV, type UnitWithLiterals as eW, type ModeWithLiterals as eX, type StartDaysAndTimesDayOfWeekWithLiterals as eY, type RecurrenceWithLiterals as eZ, type NodeTypeWithLiterals as e_, type BulkUpdateExperienceTagsResult as ea, type BulkUpdateExperienceTagsByFilterRequest as eb, type BulkArchiveExperiencesRequest as ec, type BulkArchiveExperiencesResult as ed, type BulkUnarchiveExperiencesRequest as ee, type BulkUnarchiveExperiencesResult as ef, type SitePropertiesNotification as eg, type SitePropertiesEvent as eh, type Properties as ei, type Categories as ej, type Locale as ek, type Address as el, type AddressHint as em, type GeoCoordinates as en, type BusinessSchedule as eo, type TimePeriod as ep, type SpecialHourPeriod as eq, type Multilingual as er, type SupportedLanguage as es, type ConsentPolicy as et, type Translation as eu, type ChangeContext as ev, type ChangeContextPayloadOneOf as ew, type PropertiesChange as ex, type SiteCreated as ey, type SiteCloned as ez, type BulkUpdateExperienceTagsByFilterResponse as f, type DayOfWeekWithLiterals as f$, type GradientTypeWithLiterals as f0, type WidthTypeWithLiterals as f1, type PluginContainerDataAlignmentWithLiterals as f2, type ButtonDataTypeWithLiterals as f3, type TargetWithLiterals as f4, type TextAlignmentWithLiterals as f5, type LineStyleWithLiterals as f6, type WidthWithLiterals as f7, type DividerDataAlignmentWithLiterals as f8, type ViewModeWithLiterals as f9, type NullValueWithLiterals as fA, type ImageScalingScalingWithLiterals as fB, type ImagePositionWithLiterals as fC, type OriginWithLiterals as fD, type LayoutDataBackgroundTypeWithLiterals as fE, type BackdropTypeWithLiterals as fF, type VerticalAlignmentAlignmentWithLiterals as fG, type ResponsivenessBehaviourWithLiterals as fH, type DesignTargetWithLiterals as fI, type ScalingWithLiterals as fJ, type ImagePositionPositionWithLiterals as fK, type CardDataBackgroundTypeWithLiterals as fL, type ListStyleWithLiterals as fM, type IndentationWithLiterals as fN, type SmartBlockDataTypeWithLiterals as fO, type ColumnSizeWithLiterals as fP, type PaymentPolicyTypeWithLiterals as fQ, type SortOrderWithLiterals as fR, type SortTypeWithLiterals as fS, type SortDirectionWithLiterals as fT, type MissingValuesWithLiterals as fU, type ScalarTypeWithLiterals as fV, type NestedAggregationTypeWithLiterals as fW, type IntervalWithLiterals as fX, type AggregationTypeWithLiterals as fY, type SearchDetailsModeWithLiterals as fZ, type PlacementTypeWithLiterals as f_, type LayoutTypeWithLiterals as fa, type OrientationWithLiterals as fb, type CropWithLiterals as fc, type ThumbnailsAlignmentWithLiterals as fd, type GIFTypeWithLiterals as fe, type SourceWithLiterals as ff, type StylesPositionWithLiterals as fg, type MapTypeWithLiterals as fh, type ViewRoleWithLiterals as fi, type VoteRoleWithLiterals as fj, type PollLayoutTypeWithLiterals as fk, type PollLayoutDirectionWithLiterals as fl, type PollDesignBackgroundTypeWithLiterals as fm, type DecorationTypeWithLiterals as fn, type FontTypeWithLiterals as fo, type PositionWithLiterals as fp, type AspectRatioWithLiterals as fq, type ResizingWithLiterals as fr, type PlacementWithLiterals as fs, type TypeWithLiterals as ft, type AlignmentWithLiterals as fu, type LayoutWithLiterals as fv, type AppTypeWithLiterals as fw, type InitialExpandedItemsWithLiterals as fx, type DirectionWithLiterals as fy, type VerticalAlignmentWithLiterals as fz, type BulkUpdateExperienceTagsByFilterApplicationErrors as g, type ResolutionMethodWithLiterals as g0, type WebhookIdentityTypeWithLiterals as g1, type CommonQueryWithEntityContext as g2, type CommonSearchWithEntityContext as g3, onExperienceCreated as g4, onExperienceTagsModified as g5, onExperienceUpdated as g6, createExperience as g7, getExperience as g8, getExperienceBySlug as g9, updateExperience as ga, queryExperiences as gb, bulkUpdateExperienceTags as gc, bulkUpdateExperienceTagsByFilter as gd, bulkArchiveExperiences as ge, bulkUnarchiveExperiences as gf, 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 };
|
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.39",
|
|
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": "b9665dd1378d5b98b15c9ba50d05604da9cb22781f8d531a61155806"
|
|
61
61
|
}
|