@wix/auto_sdk_table-reservations_experiences 1.0.15 → 1.0.18
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 +74 -63
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +42 -34
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +117 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/{table-reservations-v1-experience-experiences.universal-DmhnK8go.d.ts → table-reservations-v1-experience-experiences.universal-CH98Tq2F.d.ts} +116 -1
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +74 -63
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +42 -34
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +117 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/es/{table-reservations-v1-experience-experiences.universal-DmhnK8go.d.mts → table-reservations-v1-experience-experiences.universal-CH98Tq2F.d.mts} +116 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +74 -63
- 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 +42 -34
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +117 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/{table-reservations-v1-experience-experiences.universal-DmhnK8go.d.ts → table-reservations-v1-experience-experiences.universal-CH98Tq2F.d.ts} +116 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +74 -63
- 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 +42 -34
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +117 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/{table-reservations-v1-experience-experiences.universal-DmhnK8go.d.mts → table-reservations-v1-experience-experiences.universal-CH98Tq2F.d.mts} +116 -1
- package/package.json +2 -2
|
@@ -2368,6 +2368,121 @@ interface TagList {
|
|
|
2368
2368
|
*/
|
|
2369
2369
|
tagIds?: string[];
|
|
2370
2370
|
}
|
|
2371
|
+
interface InvalidateCache extends InvalidateCacheGetByOneOf {
|
|
2372
|
+
/**
|
|
2373
|
+
* Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
|
|
2374
|
+
* @format GUID
|
|
2375
|
+
*/
|
|
2376
|
+
metaSiteId?: string;
|
|
2377
|
+
/**
|
|
2378
|
+
* Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
|
|
2379
|
+
* @format GUID
|
|
2380
|
+
*/
|
|
2381
|
+
siteId?: string;
|
|
2382
|
+
/** Invalidate by App */
|
|
2383
|
+
app?: App;
|
|
2384
|
+
/** Invalidate by page id */
|
|
2385
|
+
page?: Page;
|
|
2386
|
+
/** Invalidate by URI path */
|
|
2387
|
+
uri?: URI;
|
|
2388
|
+
/** Invalidate by file (for media files such as PDFs) */
|
|
2389
|
+
file?: File;
|
|
2390
|
+
/** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
|
|
2391
|
+
customTag?: CustomTag;
|
|
2392
|
+
/**
|
|
2393
|
+
* tell us why you're invalidating the cache. You don't need to add your app name
|
|
2394
|
+
* @maxLength 256
|
|
2395
|
+
*/
|
|
2396
|
+
reason?: string | null;
|
|
2397
|
+
/** Is local DS */
|
|
2398
|
+
localDc?: boolean;
|
|
2399
|
+
hardPurge?: boolean;
|
|
2400
|
+
}
|
|
2401
|
+
/** @oneof */
|
|
2402
|
+
interface InvalidateCacheGetByOneOf {
|
|
2403
|
+
/**
|
|
2404
|
+
* Invalidate by msId. NOT recommended, as this will invalidate the entire site cache!
|
|
2405
|
+
* @format GUID
|
|
2406
|
+
*/
|
|
2407
|
+
metaSiteId?: string;
|
|
2408
|
+
/**
|
|
2409
|
+
* Invalidate by Site ID. NOT recommended, as this will invalidate the entire site cache!
|
|
2410
|
+
* @format GUID
|
|
2411
|
+
*/
|
|
2412
|
+
siteId?: string;
|
|
2413
|
+
/** Invalidate by App */
|
|
2414
|
+
app?: App;
|
|
2415
|
+
/** Invalidate by page id */
|
|
2416
|
+
page?: Page;
|
|
2417
|
+
/** Invalidate by URI path */
|
|
2418
|
+
uri?: URI;
|
|
2419
|
+
/** Invalidate by file (for media files such as PDFs) */
|
|
2420
|
+
file?: File;
|
|
2421
|
+
/** Invalidate by custom tag. Tags used in BO invalidation are disabled for this endpoint (more info: https://wix-bo.com/dev/clear-ssr-cache) */
|
|
2422
|
+
customTag?: CustomTag;
|
|
2423
|
+
}
|
|
2424
|
+
interface App {
|
|
2425
|
+
/**
|
|
2426
|
+
* The AppDefId
|
|
2427
|
+
* @minLength 1
|
|
2428
|
+
*/
|
|
2429
|
+
appDefId?: string;
|
|
2430
|
+
/**
|
|
2431
|
+
* The instance Id
|
|
2432
|
+
* @format GUID
|
|
2433
|
+
*/
|
|
2434
|
+
instanceId?: string;
|
|
2435
|
+
}
|
|
2436
|
+
interface Page {
|
|
2437
|
+
/**
|
|
2438
|
+
* the msid the page is on
|
|
2439
|
+
* @format GUID
|
|
2440
|
+
*/
|
|
2441
|
+
metaSiteId?: string;
|
|
2442
|
+
/**
|
|
2443
|
+
* Invalidate by Page ID
|
|
2444
|
+
* @minLength 1
|
|
2445
|
+
*/
|
|
2446
|
+
pageId?: string;
|
|
2447
|
+
}
|
|
2448
|
+
interface URI {
|
|
2449
|
+
/**
|
|
2450
|
+
* the msid the URI is on
|
|
2451
|
+
* @format GUID
|
|
2452
|
+
*/
|
|
2453
|
+
metaSiteId?: string;
|
|
2454
|
+
/**
|
|
2455
|
+
* URI path to invalidate (e.g. page/my/path) - without leading/trailing slashes
|
|
2456
|
+
* @minLength 1
|
|
2457
|
+
*/
|
|
2458
|
+
uriPath?: string;
|
|
2459
|
+
}
|
|
2460
|
+
interface File {
|
|
2461
|
+
/**
|
|
2462
|
+
* the msid the file is related to
|
|
2463
|
+
* @format GUID
|
|
2464
|
+
*/
|
|
2465
|
+
metaSiteId?: string;
|
|
2466
|
+
/**
|
|
2467
|
+
* Invalidate by filename (for media files such as PDFs)
|
|
2468
|
+
* @minLength 1
|
|
2469
|
+
* @maxLength 256
|
|
2470
|
+
*/
|
|
2471
|
+
fileName?: string;
|
|
2472
|
+
}
|
|
2473
|
+
interface CustomTag {
|
|
2474
|
+
/**
|
|
2475
|
+
* the msid the tag is related to
|
|
2476
|
+
* @format GUID
|
|
2477
|
+
*/
|
|
2478
|
+
metaSiteId?: string;
|
|
2479
|
+
/**
|
|
2480
|
+
* Tag to invalidate by
|
|
2481
|
+
* @minLength 1
|
|
2482
|
+
* @maxLength 256
|
|
2483
|
+
*/
|
|
2484
|
+
tag?: string;
|
|
2485
|
+
}
|
|
2371
2486
|
interface TagsModified {
|
|
2372
2487
|
/** Experience with updated tags. */
|
|
2373
2488
|
experience?: Experience;
|
|
@@ -4043,4 +4158,4 @@ interface BulkUpdateExperienceTagsByFilterOptions {
|
|
|
4043
4158
|
unassignTags?: Tags;
|
|
4044
4159
|
}
|
|
4045
4160
|
|
|
4046
|
-
export { Alignment as $, VoteRole as A, type BulkUpdateExperienceTagsOptions as B, type CursorQuery as C, DividerDataAlignment as D, type Experience as E, PollLayoutType as F, GIFType as G, PollLayoutDirection as H, BackgroundType as I, DecorationType as J, FontType as K, LineStyle as L, Mode as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, Position as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, AspectRatio as X, Resizing as Y, Placement as Z, Type as _, type ExperienceSearch as a, type DividerData as a$, Layout as a0, AppType as a1, InitialExpandedItems as a2, Direction as a3, VerticalAlignment as a4, NullValue as a5, Scaling as a6, ImagePosition as a7, VerticalAlignmentAlignment as a8, ResponsivenessBehaviour as a9, type Approval as aA, type MaxGuests as aB, type OnlineReservationsBusinessSchedule as aC, type PrivacyPolicy as aD, type PrivacyPolicyValueOneOf as aE, type TermsAndConditions as aF, type TermsAndConditionsValueOneOf as aG, type CustomFieldDefinition as aH, type EmailMarketingCheckbox as aI, type RichContent as aJ, type Node as aK, type NodeDataOneOf as aL, type NodeStyle as aM, type ButtonData as aN, type Border as aO, type Colors as aP, type PluginContainerData as aQ, type PluginContainerDataWidth as aR, type PluginContainerDataWidthDataOneOf as aS, type Spoiler as aT, type Height as aU, type Styles as aV, type Link as aW, type LinkDataOneOf as aX, type Rel as aY, type CodeBlockData as aZ, type TextStyle as a_, PaymentPolicyType as aa, SortOrder as ab, SortType as ac, SortDirection as ad, MissingValues as ae, ScalarType as af, NestedAggregationType as ag, Interval as ah, AggregationType as ai, SearchDetailsMode as aj, PlacementType as ak, DayOfWeek as al, ResolutionMethod as am, WebhookIdentityType as an, type Table as ao, type TableCombination as ap, type SpecificTablesOptions as aq, type OnOptions as ar, type OnOptionsOptionsOneOf as as, type StartDaysAndTimes as at, type WeeklyOptions as au, type OneTimeOptions as av, type Entry as aw, type EntryRecurrenceOptionsOneOf as ax, type PartySize as ay, type NoticePeriod as az, type BulkUpdateExperienceTagsResponse as b, type Oembed as b$, type FileData as b0, type FileSource as b1, type FileSourceDataOneOf as b2, type PDFSettings as b3, type GalleryData as b4, type Media as b5, type Image as b6, type Video as b7, type Item as b8, type ItemDataOneOf as b9, type PollDesign as bA, type OptionDesign as bB, type Poll as bC, type PollDataLayout as bD, type Design as bE, type TextData as bF, type Decoration as bG, type DecorationDataOneOf as bH, type AnchorData as bI, type ColorData as bJ, type LinkData as bK, type MentionData as bL, type FontSizeData as bM, type SpoilerData as bN, type FontFamilyData as bO, type AppEmbedData as bP, type AppEmbedDataAppDataOneOf as bQ, type BookingData as bR, type EventData as bS, type ButtonStyles as bT, type ImageStyles as bU, type RibbonStyles as bV, type CardStyles as bW, type PricingData as bX, type VideoData as bY, type PlaybackOptions as bZ, type EmbedData as b_, 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 Settings as bu, type PollLayout as bv, type OptionLayout as bw, type Gradient as bx, type Background as by, type BackgroundBackgroundOneOf as bz, type BulkUpdateExperienceTagsApplicationErrors as c, type RangeAggregationResult as c$, type CollapsibleListData as c0, type TableData as c1, type Dimensions as c2, type TableCellData as c3, type CellStyle as c4, type BorderColors as c5, type BorderWidths as c6, type ListValue as c7, type AudioData as c8, type OrderedListData as c9, type UpdateExperienceRequest as cA, type UpdateExperienceResponse as cB, type QueryExperiencesRequest as cC, type CursorQueryPagingMethodOneOf as cD, type Sorting as cE, type CursorPaging as cF, type QueryExperiencesResponse as cG, type CursorPagingMetadata as cH, type Cursors as cI, type SearchExperiencesRequest as cJ, type CursorSearch as cK, type CursorSearchPagingMethodOneOf as cL, type Aggregation as cM, type AggregationKindOneOf as cN, type RangeBucket as cO, type IncludeMissingValuesOptions as cP, type ValueAggregation as cQ, type ValueAggregationOptionsOneOf as cR, type RangeAggregation as cS, type ScalarAggregation as cT, type DateHistogramAggregation as cU, type NestedAggregationItem as cV, type NestedAggregationItemKindOneOf as cW, type NestedAggregation as cX, type SearchDetails as cY, type AggregationData as cZ, type ValueAggregationResult as c_, type BulletedListData as ca, type BlockquoteData as cb, type CaptionData as cc, type LayoutData as cd, type BackgroundImage as ce, type LayoutCellData as cf, type Metadata as cg, type DocumentStyle as ch, type TextNodeStyle as ci, type PerGuestOptions as cj, type DisplayInfo as ck, type PaymentPolicy as cl, type PaymentPolicyOptionsOneOf as cm, type OnlineReservations as cn, type ReservationForm as co, type TableManagement as cp, type TableManagementOptionsOneOf as cq, type Configuration as cr, type ExtendedFields as cs, type Tags as ct, type TagList as cu, type TagsModified as cv, type CreateExperienceRequest as cw, type CreateExperienceResponse as cx, type GetExperienceRequest as cy, type GetExperienceResponse as cz, type BulkUpdateExperienceTagsByFilterOptions as d, type EventMetadata as d$, type NestedAggregationResults as d0, type NestedAggregationResultsResultOneOf as d1, type ValueResults as d2, type RangeResults as d3, type AggregationResultsScalarResult as d4, type NestedValueAggregationResult as d5, type ValueResult as d6, type RangeResult as d7, type ScalarResult as d8, type NestedResultValue as d9, type Address as dA, type AddressHint as dB, type GeoCoordinates as dC, type BusinessSchedule as dD, type TimePeriod as dE, type SpecialHourPeriod as dF, type Multilingual as dG, type SupportedLanguage as dH, type ConsentPolicy as dI, type Translation as dJ, type ChangeContext as dK, type ChangeContextPayloadOneOf as dL, type PropertiesChange as dM, type SiteCreated as dN, type SiteCloned as dO, type Empty as dP, type DomainEvent as dQ, type DomainEventBodyOneOf as dR, type EntityCreatedEvent as dS, type RestoreInfo as dT, type EntityUpdatedEvent as dU, type EntityDeletedEvent as dV, type ActionEvent as dW, type MessageEnvelope as dX, type IdentificationData as dY, type IdentificationDataIdOneOf as dZ, type BaseEventMetadata as d_, type NestedResultValueResultOneOf as da, type Results as db, type DateHistogramResult as dc, type GroupByValueResults as dd, type DateHistogramResults as de, type NestedResults as df, type AggregationResults as dg, type AggregationResultsResultOneOf as dh, type BulkUpdateExperienceTagsRequest as di, type ItemMetadata as dj, type ApplicationError as dk, type BulkUpdateExperienceTagsResult as dl, type BulkActionMetadata as dm, type BulkUpdateExperienceTagsByFilterRequest as dn, type BulkArchiveExperiencesRequest as dp, type BulkArchiveExperiencesResponse as dq, type BulkArchiveExperiencesResult as dr, type BulkUnarchiveExperiencesRequest as ds, type BulkUnarchiveExperiencesResponse as dt, type BulkUnarchiveExperiencesResult as du, type SitePropertiesNotification as dv, type SitePropertiesEvent as dw, type Properties as dx, type Categories as dy, type Locale as dz, type BulkUpdateExperienceTagsByFilterResponse as e, type WebhookIdentityTypeWithLiterals as e$, type ExperiencesQueryResult as e0, type ExperienceSearchSpec as e1, type TableAvailabilityTypeWithLiterals as e2, type TableAssignmentTypeWithLiterals as e3, type TableManagementModeWithLiterals as e4, type UnitWithLiterals as e5, type ModeWithLiterals as e6, type StartDaysAndTimesDayOfWeekWithLiterals as e7, type RecurrenceWithLiterals as e8, type NodeTypeWithLiterals as e9, type ResizingWithLiterals as eA, type PlacementWithLiterals as eB, type TypeWithLiterals as eC, type AlignmentWithLiterals as eD, type LayoutWithLiterals as eE, type AppTypeWithLiterals as eF, type InitialExpandedItemsWithLiterals as eG, type DirectionWithLiterals as eH, type VerticalAlignmentWithLiterals as eI, type NullValueWithLiterals as eJ, type ScalingWithLiterals as eK, type ImagePositionWithLiterals as eL, type VerticalAlignmentAlignmentWithLiterals as eM, type ResponsivenessBehaviourWithLiterals as eN, type PaymentPolicyTypeWithLiterals as eO, type SortOrderWithLiterals as eP, type SortTypeWithLiterals as eQ, type SortDirectionWithLiterals as eR, type MissingValuesWithLiterals as eS, type ScalarTypeWithLiterals as eT, type NestedAggregationTypeWithLiterals as eU, type IntervalWithLiterals as eV, type AggregationTypeWithLiterals as eW, type SearchDetailsModeWithLiterals as eX, type PlacementTypeWithLiterals as eY, type DayOfWeekWithLiterals as eZ, type ResolutionMethodWithLiterals as e_, type WidthTypeWithLiterals as ea, type PluginContainerDataAlignmentWithLiterals as eb, type ButtonDataTypeWithLiterals as ec, type TargetWithLiterals as ed, type TextAlignmentWithLiterals as ee, type LineStyleWithLiterals as ef, type WidthWithLiterals as eg, type DividerDataAlignmentWithLiterals as eh, type ViewModeWithLiterals as ei, type LayoutTypeWithLiterals as ej, type OrientationWithLiterals as ek, type CropWithLiterals as el, type ThumbnailsAlignmentWithLiterals as em, type GIFTypeWithLiterals as en, type SourceWithLiterals as eo, type StylesPositionWithLiterals as ep, type MapTypeWithLiterals as eq, type ViewRoleWithLiterals as er, type VoteRoleWithLiterals as es, type PollLayoutTypeWithLiterals as et, type PollLayoutDirectionWithLiterals as eu, type BackgroundTypeWithLiterals as ev, type DecorationTypeWithLiterals as ew, type FontTypeWithLiterals as ex, type PositionWithLiterals as ey, type AspectRatioWithLiterals as ez, type BulkUpdateExperienceTagsByFilterApplicationErrors as f, type CommonSearchWithEntityContext as f0, onExperienceCreated as f1, onExperienceTagsModified as f2, onExperienceUpdated as f3, createExperience as f4, getExperience as f5, updateExperience as f6, queryExperiences as f7, bulkUpdateExperienceTags as f8, bulkUpdateExperienceTagsByFilter as f9, type ExperienceCreatedEnvelope as g, type ExperienceTagsModifiedEnvelope as h, type ExperienceUpdatedEnvelope as i, type ExperiencesQueryBuilder as j, TableAssignmentType as k, TableManagementMode as l, Unit as m, StartDaysAndTimesDayOfWeek as n, ButtonDataType as o, Target as p, TextAlignment as q, Width as r, LayoutType as s, typedQueryExperiences as t, Crop as u, ThumbnailsAlignment as v, Source as w, StylesPosition as x, MapType as y, ViewRole as z };
|
|
4161
|
+
export { Alignment as $, VoteRole as A, type BulkUpdateExperienceTagsOptions as B, type CursorQuery as C, DividerDataAlignment as D, type Experience as E, PollLayoutType as F, GIFType as G, PollLayoutDirection as H, BackgroundType as I, DecorationType as J, FontType as K, LineStyle as L, Mode as M, NodeType as N, Orientation as O, PluginContainerDataAlignment as P, Position as Q, Recurrence as R, type SearchExperiencesResponse as S, TableAvailabilityType as T, type UpdateExperience as U, ViewMode as V, WidthType as W, AspectRatio as X, Resizing as Y, Placement as Z, Type as _, type ExperienceSearch as a, type DividerData as a$, Layout as a0, AppType as a1, InitialExpandedItems as a2, Direction as a3, VerticalAlignment as a4, NullValue as a5, Scaling as a6, ImagePosition as a7, VerticalAlignmentAlignment as a8, ResponsivenessBehaviour as a9, type Approval as aA, type MaxGuests as aB, type OnlineReservationsBusinessSchedule as aC, type PrivacyPolicy as aD, type PrivacyPolicyValueOneOf as aE, type TermsAndConditions as aF, type TermsAndConditionsValueOneOf as aG, type CustomFieldDefinition as aH, type EmailMarketingCheckbox as aI, type RichContent as aJ, type Node as aK, type NodeDataOneOf as aL, type NodeStyle as aM, type ButtonData as aN, type Border as aO, type Colors as aP, type PluginContainerData as aQ, type PluginContainerDataWidth as aR, type PluginContainerDataWidthDataOneOf as aS, type Spoiler as aT, type Height as aU, type Styles as aV, type Link as aW, type LinkDataOneOf as aX, type Rel as aY, type CodeBlockData as aZ, type TextStyle as a_, PaymentPolicyType as aa, SortOrder as ab, SortType as ac, SortDirection as ad, MissingValues as ae, ScalarType as af, NestedAggregationType as ag, Interval as ah, AggregationType as ai, SearchDetailsMode as aj, PlacementType as ak, DayOfWeek as al, ResolutionMethod as am, WebhookIdentityType as an, type Table as ao, type TableCombination as ap, type SpecificTablesOptions as aq, type OnOptions as ar, type OnOptionsOptionsOneOf as as, type StartDaysAndTimes as at, type WeeklyOptions as au, type OneTimeOptions as av, type Entry as aw, type EntryRecurrenceOptionsOneOf as ax, type PartySize as ay, type NoticePeriod as az, type BulkUpdateExperienceTagsResponse as b, type Oembed as b$, type FileData as b0, type FileSource as b1, type FileSourceDataOneOf as b2, type PDFSettings as b3, type GalleryData as b4, type Media as b5, type Image as b6, type Video as b7, type Item as b8, type ItemDataOneOf as b9, type PollDesign as bA, type OptionDesign as bB, type Poll as bC, type PollDataLayout as bD, type Design as bE, type TextData as bF, type Decoration as bG, type DecorationDataOneOf as bH, type AnchorData as bI, type ColorData as bJ, type LinkData as bK, type MentionData as bL, type FontSizeData as bM, type SpoilerData as bN, type FontFamilyData as bO, type AppEmbedData as bP, type AppEmbedDataAppDataOneOf as bQ, type BookingData as bR, type EventData as bS, type ButtonStyles as bT, type ImageStyles as bU, type RibbonStyles as bV, type CardStyles as bW, type PricingData as bX, type VideoData as bY, type PlaybackOptions as bZ, type EmbedData as b_, 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 Settings as bu, type PollLayout as bv, type OptionLayout as bw, type Gradient as bx, type Background as by, type BackgroundBackgroundOneOf as bz, type BulkUpdateExperienceTagsApplicationErrors as c, type DateHistogramAggregation as c$, type CollapsibleListData as c0, type TableData as c1, type Dimensions as c2, type TableCellData as c3, type CellStyle as c4, type BorderColors as c5, type BorderWidths as c6, type ListValue as c7, type AudioData as c8, type OrderedListData as c9, type File as cA, type CustomTag as cB, type TagsModified as cC, type CreateExperienceRequest as cD, type CreateExperienceResponse as cE, type GetExperienceRequest as cF, type GetExperienceResponse as cG, type UpdateExperienceRequest as cH, type UpdateExperienceResponse as cI, type QueryExperiencesRequest as cJ, type CursorQueryPagingMethodOneOf as cK, type Sorting as cL, type CursorPaging as cM, type QueryExperiencesResponse as cN, type CursorPagingMetadata as cO, type Cursors as cP, type SearchExperiencesRequest as cQ, type CursorSearch as cR, type CursorSearchPagingMethodOneOf as cS, type Aggregation as cT, type AggregationKindOneOf as cU, type RangeBucket as cV, type IncludeMissingValuesOptions as cW, type ValueAggregation as cX, type ValueAggregationOptionsOneOf as cY, type RangeAggregation as cZ, type ScalarAggregation as c_, type BulletedListData as ca, type BlockquoteData as cb, type CaptionData as cc, type LayoutData as cd, type BackgroundImage as ce, type LayoutCellData as cf, type Metadata as cg, type DocumentStyle as ch, type TextNodeStyle as ci, type PerGuestOptions as cj, type DisplayInfo as ck, type PaymentPolicy as cl, type PaymentPolicyOptionsOneOf as cm, type OnlineReservations as cn, type ReservationForm as co, type TableManagement as cp, type TableManagementOptionsOneOf as cq, type Configuration as cr, type ExtendedFields as cs, type Tags as ct, type TagList as cu, type InvalidateCache as cv, type InvalidateCacheGetByOneOf as cw, type App as cx, type Page as cy, type URI as cz, type BulkUpdateExperienceTagsByFilterOptions as d, type EntityUpdatedEvent as d$, type NestedAggregationItem as d0, type NestedAggregationItemKindOneOf as d1, type NestedAggregation as d2, type SearchDetails as d3, type AggregationData as d4, type ValueAggregationResult as d5, type RangeAggregationResult as d6, type NestedAggregationResults as d7, type NestedAggregationResultsResultOneOf as d8, type ValueResults as d9, type BulkUnarchiveExperiencesResponse as dA, type BulkUnarchiveExperiencesResult as dB, type SitePropertiesNotification as dC, type SitePropertiesEvent as dD, type Properties as dE, type Categories as dF, type Locale as dG, type Address as dH, type AddressHint as dI, type GeoCoordinates as dJ, type BusinessSchedule as dK, type TimePeriod as dL, type SpecialHourPeriod as dM, type Multilingual as dN, type SupportedLanguage as dO, type ConsentPolicy as dP, type Translation as dQ, type ChangeContext as dR, type ChangeContextPayloadOneOf as dS, type PropertiesChange as dT, type SiteCreated as dU, type SiteCloned as dV, type Empty as dW, type DomainEvent as dX, type DomainEventBodyOneOf as dY, type EntityCreatedEvent as dZ, type RestoreInfo as d_, type RangeResults as da, type AggregationResultsScalarResult as db, type NestedValueAggregationResult as dc, type ValueResult as dd, type RangeResult as de, type ScalarResult as df, type NestedResultValue as dg, type NestedResultValueResultOneOf as dh, type Results as di, type DateHistogramResult as dj, type GroupByValueResults as dk, type DateHistogramResults as dl, type NestedResults as dm, type AggregationResults as dn, type AggregationResultsResultOneOf as dp, type BulkUpdateExperienceTagsRequest as dq, type ItemMetadata as dr, type ApplicationError as ds, type BulkUpdateExperienceTagsResult as dt, type BulkActionMetadata as du, type BulkUpdateExperienceTagsByFilterRequest as dv, type BulkArchiveExperiencesRequest as dw, type BulkArchiveExperiencesResponse as dx, type BulkArchiveExperiencesResult as dy, type BulkUnarchiveExperiencesRequest as dz, type BulkUpdateExperienceTagsByFilterResponse as e, type NestedAggregationTypeWithLiterals as e$, type EntityDeletedEvent as e0, type ActionEvent as e1, type MessageEnvelope as e2, type IdentificationData as e3, type IdentificationDataIdOneOf as e4, type BaseEventMetadata as e5, type EventMetadata as e6, type ExperiencesQueryResult as e7, type ExperienceSearchSpec as e8, type TableAvailabilityTypeWithLiterals as e9, type PollLayoutTypeWithLiterals as eA, type PollLayoutDirectionWithLiterals as eB, type BackgroundTypeWithLiterals as eC, type DecorationTypeWithLiterals as eD, type FontTypeWithLiterals as eE, type PositionWithLiterals as eF, type AspectRatioWithLiterals as eG, type ResizingWithLiterals as eH, type PlacementWithLiterals as eI, type TypeWithLiterals as eJ, type AlignmentWithLiterals as eK, type LayoutWithLiterals as eL, type AppTypeWithLiterals as eM, type InitialExpandedItemsWithLiterals as eN, type DirectionWithLiterals as eO, type VerticalAlignmentWithLiterals as eP, type NullValueWithLiterals as eQ, type ScalingWithLiterals as eR, type ImagePositionWithLiterals as eS, type VerticalAlignmentAlignmentWithLiterals as eT, type ResponsivenessBehaviourWithLiterals as eU, type PaymentPolicyTypeWithLiterals as eV, type SortOrderWithLiterals as eW, type SortTypeWithLiterals as eX, type SortDirectionWithLiterals as eY, type MissingValuesWithLiterals as eZ, type ScalarTypeWithLiterals as e_, type TableAssignmentTypeWithLiterals as ea, type TableManagementModeWithLiterals as eb, type UnitWithLiterals as ec, type ModeWithLiterals as ed, type StartDaysAndTimesDayOfWeekWithLiterals as ee, type RecurrenceWithLiterals as ef, type NodeTypeWithLiterals as eg, type WidthTypeWithLiterals as eh, type PluginContainerDataAlignmentWithLiterals as ei, type ButtonDataTypeWithLiterals as ej, type TargetWithLiterals as ek, type TextAlignmentWithLiterals as el, type LineStyleWithLiterals as em, type WidthWithLiterals as en, type DividerDataAlignmentWithLiterals as eo, type ViewModeWithLiterals as ep, type LayoutTypeWithLiterals as eq, type OrientationWithLiterals as er, type CropWithLiterals as es, type ThumbnailsAlignmentWithLiterals as et, type GIFTypeWithLiterals as eu, type SourceWithLiterals as ev, type StylesPositionWithLiterals as ew, type MapTypeWithLiterals as ex, type ViewRoleWithLiterals as ey, type VoteRoleWithLiterals as ez, type BulkUpdateExperienceTagsByFilterApplicationErrors as f, type IntervalWithLiterals as f0, type AggregationTypeWithLiterals as f1, type SearchDetailsModeWithLiterals as f2, type PlacementTypeWithLiterals as f3, type DayOfWeekWithLiterals as f4, type ResolutionMethodWithLiterals as f5, type WebhookIdentityTypeWithLiterals as f6, type CommonSearchWithEntityContext as f7, onExperienceCreated as f8, onExperienceTagsModified as f9, onExperienceUpdated as fa, createExperience as fb, getExperience as fc, updateExperience as fd, queryExperiences as fe, bulkUpdateExperienceTags as ff, bulkUpdateExperienceTagsByFilter as fg, type ExperienceCreatedEnvelope as g, type ExperienceTagsModifiedEnvelope as h, type ExperienceUpdatedEnvelope as i, type ExperiencesQueryBuilder as j, TableAssignmentType as k, TableManagementMode as l, Unit as m, StartDaysAndTimesDayOfWeek as n, ButtonDataType as o, Target as p, TextAlignment as q, Width as r, LayoutType as s, typedQueryExperiences as t, Crop as u, ThumbnailsAlignment as v, Source as w, StylesPosition as x, MapType as y, ViewRole 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.18",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": "wix.table_reservations.v1.experience"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "556c921b046182da33cc5ab4d73e9b3fc8e0488d5412645186badbac"
|
|
54
54
|
}
|