@wix/auto_sdk_bookings_booking-policies 1.0.75 → 1.0.77
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 +1 -1
- package/build/cjs/index.js +16 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +44 -6
- package/build/cjs/index.typings.js +16 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +44 -6
- package/build/cjs/meta.js +16 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +14 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +44 -6
- package/build/es/index.typings.mjs +14 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +44 -6
- package/build/es/meta.mjs +14 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +16 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +44 -6
- package/build/internal/cjs/index.typings.js +16 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +44 -6
- package/build/internal/cjs/meta.js +16 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +14 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +44 -6
- package/build/internal/es/index.typings.mjs +14 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +44 -6
- package/build/internal/es/meta.mjs +14 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/meta.d.mts
CHANGED
|
@@ -424,17 +424,41 @@ interface CustomOptions {
|
|
|
424
424
|
/** Policy for integrating with Intake form. Stores which form to use and when to present it. */
|
|
425
425
|
interface IntakeFormPolicy {
|
|
426
426
|
/**
|
|
427
|
-
*
|
|
427
|
+
* Whether intake form integration is enabled for the service.
|
|
428
|
+
* Default: `false`
|
|
429
|
+
*/
|
|
430
|
+
enabled?: boolean;
|
|
431
|
+
/**
|
|
432
|
+
* ID of the intake form to integrate with the service.
|
|
428
433
|
* @format GUID
|
|
429
434
|
*/
|
|
430
435
|
formId?: string | null;
|
|
436
|
+
/** When to present the intake form to the customer. */
|
|
437
|
+
timing?: TimingWithLiterals;
|
|
438
|
+
completionRequirement?: CompletionRequirementWithLiterals;
|
|
439
|
+
}
|
|
440
|
+
declare enum Timing {
|
|
441
|
+
UNKNOWN_TIMING = "UNKNOWN_TIMING",
|
|
442
|
+
/** Send form after booking. */
|
|
443
|
+
AFTER_BOOKING = "AFTER_BOOKING",
|
|
444
|
+
/** Show form during booking flow. */
|
|
445
|
+
BEFORE_BOOKING = "BEFORE_BOOKING"
|
|
446
|
+
}
|
|
447
|
+
/** @enumType */
|
|
448
|
+
type TimingWithLiterals = Timing | 'UNKNOWN_TIMING' | 'AFTER_BOOKING' | 'BEFORE_BOOKING';
|
|
449
|
+
/** Requirement for completing the intake form. */
|
|
450
|
+
declare enum CompletionRequirement {
|
|
451
|
+
UNKNOWN_COMPLETION_REQUIREMENT = "UNKNOWN_COMPLETION_REQUIREMENT",
|
|
452
|
+
/** Form completion is optional and can be skipped entirely. */
|
|
453
|
+
OPTIONAL = "OPTIONAL",
|
|
431
454
|
/**
|
|
432
|
-
*
|
|
433
|
-
*
|
|
434
|
-
* Default: `false`
|
|
455
|
+
* Form must be completed before the booking can be finalized.
|
|
456
|
+
* can used only if timing is BEFORE_BOOKING.
|
|
435
457
|
*/
|
|
436
|
-
|
|
458
|
+
REQUIRED_BEFORE_BOOKING = "REQUIRED_BEFORE_BOOKING"
|
|
437
459
|
}
|
|
460
|
+
/** @enumType */
|
|
461
|
+
type CompletionRequirementWithLiterals = CompletionRequirement | 'UNKNOWN_COMPLETION_REQUIREMENT' | 'OPTIONAL' | 'REQUIRED_BEFORE_BOOKING';
|
|
438
462
|
interface ExtendedFields {
|
|
439
463
|
/**
|
|
440
464
|
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
@@ -1050,6 +1074,10 @@ interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
|
|
|
1050
1074
|
wixelAssigned?: WixelAssigned;
|
|
1051
1075
|
/** Emitted when Wixel is detached. */
|
|
1052
1076
|
wixelUnassigned?: WixelUnassigned;
|
|
1077
|
+
/** Emitted when StudioTwo is attached. */
|
|
1078
|
+
studioTwoAssigned?: StudioTwoAssigned;
|
|
1079
|
+
/** Emitted when StudioTwo is detached. */
|
|
1080
|
+
studioTwoUnassigned?: StudioTwoUnassigned;
|
|
1053
1081
|
/**
|
|
1054
1082
|
* A meta site id.
|
|
1055
1083
|
* @format GUID
|
|
@@ -1120,6 +1148,10 @@ interface MetaSiteSpecialEventPayloadOneOf {
|
|
|
1120
1148
|
wixelAssigned?: WixelAssigned;
|
|
1121
1149
|
/** Emitted when Wixel is detached. */
|
|
1122
1150
|
wixelUnassigned?: WixelUnassigned;
|
|
1151
|
+
/** Emitted when StudioTwo is attached. */
|
|
1152
|
+
studioTwoAssigned?: StudioTwoAssigned;
|
|
1153
|
+
/** Emitted when StudioTwo is detached. */
|
|
1154
|
+
studioTwoUnassigned?: StudioTwoUnassigned;
|
|
1123
1155
|
}
|
|
1124
1156
|
interface Asset {
|
|
1125
1157
|
/**
|
|
@@ -1472,6 +1504,12 @@ interface WixelAssigned {
|
|
|
1472
1504
|
/** Unassigned Wixel */
|
|
1473
1505
|
interface WixelUnassigned {
|
|
1474
1506
|
}
|
|
1507
|
+
/** Assigned StudioTwo */
|
|
1508
|
+
interface StudioTwoAssigned {
|
|
1509
|
+
}
|
|
1510
|
+
/** Unassigned StudioTwo */
|
|
1511
|
+
interface StudioTwoUnassigned {
|
|
1512
|
+
}
|
|
1475
1513
|
interface MessageEnvelope {
|
|
1476
1514
|
/**
|
|
1477
1515
|
* App instance ID.
|
|
@@ -1606,4 +1644,4 @@ declare function deleteBookingPolicy(): __PublicMethodMetaInfo<'DELETE', {
|
|
|
1606
1644
|
declare function queryBookingPolicies(): __PublicMethodMetaInfo<'POST', {}, QueryBookingPoliciesRequest$1, QueryBookingPoliciesRequest, QueryBookingPoliciesResponse$1, QueryBookingPoliciesResponse>;
|
|
1607
1645
|
declare function countBookingPolicies(): __PublicMethodMetaInfo<'POST', {}, CountBookingPoliciesRequest$1, CountBookingPoliciesRequest, CountBookingPoliciesResponse$1, CountBookingPoliciesResponse>;
|
|
1608
1646
|
|
|
1609
|
-
export { type ActionEvent as ActionEventOriginal, type AddressHint as AddressHintOriginal, type Address as AddressOriginal, type Asset as AssetOriginal, type BookAfterStartPolicy as BookAfterStartPolicyOriginal, type BookingPolicy as BookingPolicyOriginal, type BusinessSchedule as BusinessScheduleOriginal, type CancellationFeePolicy as CancellationFeePolicyOriginal, type CancellationPolicy as CancellationPolicyOriginal, type CancellationWindowFeeOneOf as CancellationWindowFeeOneOfOriginal, type CancellationWindow as CancellationWindowOriginal, type Categories as CategoriesOriginal, type ChangeContext as ChangeContextOriginal, type ChangeContextPayloadOneOf as ChangeContextPayloadOneOfOriginal, type ConsentPolicy as ConsentPolicyOriginal, type CountBookingPoliciesRequest as CountBookingPoliciesRequestOriginal, type CountBookingPoliciesResponse as CountBookingPoliciesResponseOriginal, type CreateBookingPolicyRequest as CreateBookingPolicyRequestOriginal, type CreateBookingPolicyResponse as CreateBookingPolicyResponseOriginal, type CreateBookingPolicyValidationErrors as CreateBookingPolicyValidationErrorsOriginal, type CreateMissingDefaultPolicyRequest as CreateMissingDefaultPolicyRequestOriginal, type CreateMissingDefaultPolicyResponse as CreateMissingDefaultPolicyResponseOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type CustomOptions as CustomOptionsOriginal, DayOfWeek as DayOfWeekOriginal, type DayOfWeekWithLiterals as DayOfWeekWithLiteralsOriginal, type DefaultBookingPolicySet as DefaultBookingPolicySetOriginal, type DeleteBookingPolicyApplicationErrors as DeleteBookingPolicyApplicationErrorsOriginal, type DeleteBookingPolicyRequest as DeleteBookingPolicyRequestOriginal, type DeleteBookingPolicyResponse as DeleteBookingPolicyResponseOriginal, type DeleteContext as DeleteContextOriginal, DeleteStatus as DeleteStatusOriginal, type DeleteStatusWithLiterals as DeleteStatusWithLiteralsOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, type GeoCoordinates as GeoCoordinatesOriginal, type GetBookingPolicyRequest as GetBookingPolicyRequestOriginal, type GetBookingPolicyResponse as GetBookingPolicyResponseOriginal, type GetStrictestBookingPolicyRequest as GetStrictestBookingPolicyRequestOriginal, type GetStrictestBookingPolicyResponse as GetStrictestBookingPolicyResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type IntakeFormPolicy as IntakeFormPolicyOriginal, type LimitEarlyBookingPolicy as LimitEarlyBookingPolicyOriginal, type LimitLateBookingPolicy as LimitLateBookingPolicyOriginal, type Locale as LocaleOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaSiteSpecialEvent as MetaSiteSpecialEventOriginal, type MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOfOriginal, type Money as MoneyOriginal, type Multilingual as MultilingualOriginal, type NamespaceChanged as NamespaceChangedOriginal, Namespace as NamespaceOriginal, type NamespaceWithLiterals as NamespaceWithLiteralsOriginal, type OdeditorAssigned as OdeditorAssignedOriginal, type OdeditorUnassigned as OdeditorUnassignedOriginal, type ParticipantsPolicy as ParticipantsPolicyOriginal, type PicassoAssigned as PicassoAssignedOriginal, type PicassoUnassigned as PicassoUnassignedOriginal, PlacementType as PlacementTypeOriginal, type PlacementTypeWithLiterals as PlacementTypeWithLiteralsOriginal, type PolicyDescription as PolicyDescriptionOriginal, type PropertiesChange as PropertiesChangeOriginal, type Properties as PropertiesOriginal, type QueryBookingPoliciesRequest as QueryBookingPoliciesRequestOriginal, type QueryBookingPoliciesResponse as QueryBookingPoliciesResponseOriginal, type RankingOptions as RankingOptionsOriginal, RankingOrder as RankingOrderOriginal, type RankingOrderWithLiterals as RankingOrderWithLiteralsOriginal, type ReschedulePolicy as ReschedulePolicyOriginal, ResolutionMethod as ResolutionMethodOriginal, type ResolutionMethodWithLiterals as ResolutionMethodWithLiteralsOriginal, type ResourcesPolicy as ResourcesPolicyOriginal, type RestoreInfo as RestoreInfoOriginal, type SaveCreditCardPolicy as SaveCreditCardPolicyOriginal, type ServiceProvisioned as ServiceProvisionedOriginal, type ServiceRemoved as ServiceRemovedOriginal, type SetDefaultBookingPolicyRequest as SetDefaultBookingPolicyRequestOriginal, type SetDefaultBookingPolicyResponse as SetDefaultBookingPolicyResponseOriginal, type SiteCloned as SiteClonedOriginal, SiteCreatedContext as SiteCreatedContextOriginal, type SiteCreatedContextWithLiterals as SiteCreatedContextWithLiteralsOriginal, type SiteCreated as SiteCreatedOriginal, type SiteDeleted as SiteDeletedOriginal, type SiteHardDeleted as SiteHardDeletedOriginal, type SiteMarkedAsTemplate as SiteMarkedAsTemplateOriginal, type SiteMarkedAsWixSite as SiteMarkedAsWixSiteOriginal, type SitePropertiesEvent as SitePropertiesEventOriginal, type SitePropertiesNotification as SitePropertiesNotificationOriginal, type SitePublished as SitePublishedOriginal, type SitePurgedExternally as SitePurgedExternallyOriginal, type SiteRenamed as SiteRenamedOriginal, type SiteTransferred as SiteTransferredOriginal, type SiteUndeleted as SiteUndeletedOriginal, type SiteUnpublished as SiteUnpublishedOriginal, type SiteUrlChanged as SiteUrlChangedOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, SortingMethodType as SortingMethodTypeOriginal, type SortingMethodTypeWithLiterals as SortingMethodTypeWithLiteralsOriginal, type Sorting as SortingOriginal, type SpecialHourPeriod as SpecialHourPeriodOriginal, type StaffSortingPolicyOptionsOneOf as StaffSortingPolicyOptionsOneOfOriginal, type StaffSortingPolicy as StaffSortingPolicyOriginal, State as StateOriginal, type StateWithLiterals as StateWithLiteralsOriginal, type StudioAssigned as StudioAssignedOriginal, type StudioUnassigned as StudioUnassignedOriginal, type SupportedLanguage as SupportedLanguageOriginal, type TimePeriod as TimePeriodOriginal, type Translation as TranslationOriginal, type UpdateAllPoliciesRequest as UpdateAllPoliciesRequestOriginal, type UpdateAllPoliciesResponse as UpdateAllPoliciesResponseOriginal, type UpdateBookingPolicyRequest as UpdateBookingPolicyRequestOriginal, type UpdateBookingPolicyResponse as UpdateBookingPolicyResponseOriginal, type UpdateBookingPolicyValidationErrors as UpdateBookingPolicyValidationErrorsOriginal, type V4SiteCreated as V4SiteCreatedOriginal, type WaitlistPolicy as WaitlistPolicyOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type WixelAssigned as WixelAssignedOriginal, type WixelUnassigned as WixelUnassignedOriginal, type __PublicMethodMetaInfo, countBookingPolicies, createBookingPolicy, deleteBookingPolicy, getBookingPolicy, getStrictestBookingPolicy, queryBookingPolicies, setDefaultBookingPolicy, updateBookingPolicy };
|
|
1647
|
+
export { type ActionEvent as ActionEventOriginal, type AddressHint as AddressHintOriginal, type Address as AddressOriginal, type Asset as AssetOriginal, type BookAfterStartPolicy as BookAfterStartPolicyOriginal, type BookingPolicy as BookingPolicyOriginal, type BusinessSchedule as BusinessScheduleOriginal, type CancellationFeePolicy as CancellationFeePolicyOriginal, type CancellationPolicy as CancellationPolicyOriginal, type CancellationWindowFeeOneOf as CancellationWindowFeeOneOfOriginal, type CancellationWindow as CancellationWindowOriginal, type Categories as CategoriesOriginal, type ChangeContext as ChangeContextOriginal, type ChangeContextPayloadOneOf as ChangeContextPayloadOneOfOriginal, CompletionRequirement as CompletionRequirementOriginal, type CompletionRequirementWithLiterals as CompletionRequirementWithLiteralsOriginal, type ConsentPolicy as ConsentPolicyOriginal, type CountBookingPoliciesRequest as CountBookingPoliciesRequestOriginal, type CountBookingPoliciesResponse as CountBookingPoliciesResponseOriginal, type CreateBookingPolicyRequest as CreateBookingPolicyRequestOriginal, type CreateBookingPolicyResponse as CreateBookingPolicyResponseOriginal, type CreateBookingPolicyValidationErrors as CreateBookingPolicyValidationErrorsOriginal, type CreateMissingDefaultPolicyRequest as CreateMissingDefaultPolicyRequestOriginal, type CreateMissingDefaultPolicyResponse as CreateMissingDefaultPolicyResponseOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type CustomOptions as CustomOptionsOriginal, DayOfWeek as DayOfWeekOriginal, type DayOfWeekWithLiterals as DayOfWeekWithLiteralsOriginal, type DefaultBookingPolicySet as DefaultBookingPolicySetOriginal, type DeleteBookingPolicyApplicationErrors as DeleteBookingPolicyApplicationErrorsOriginal, type DeleteBookingPolicyRequest as DeleteBookingPolicyRequestOriginal, type DeleteBookingPolicyResponse as DeleteBookingPolicyResponseOriginal, type DeleteContext as DeleteContextOriginal, DeleteStatus as DeleteStatusOriginal, type DeleteStatusWithLiterals as DeleteStatusWithLiteralsOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, type GeoCoordinates as GeoCoordinatesOriginal, type GetBookingPolicyRequest as GetBookingPolicyRequestOriginal, type GetBookingPolicyResponse as GetBookingPolicyResponseOriginal, type GetStrictestBookingPolicyRequest as GetStrictestBookingPolicyRequestOriginal, type GetStrictestBookingPolicyResponse as GetStrictestBookingPolicyResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type IntakeFormPolicy as IntakeFormPolicyOriginal, type LimitEarlyBookingPolicy as LimitEarlyBookingPolicyOriginal, type LimitLateBookingPolicy as LimitLateBookingPolicyOriginal, type Locale as LocaleOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MetaSiteSpecialEvent as MetaSiteSpecialEventOriginal, type MetaSiteSpecialEventPayloadOneOf as MetaSiteSpecialEventPayloadOneOfOriginal, type Money as MoneyOriginal, type Multilingual as MultilingualOriginal, type NamespaceChanged as NamespaceChangedOriginal, Namespace as NamespaceOriginal, type NamespaceWithLiterals as NamespaceWithLiteralsOriginal, type OdeditorAssigned as OdeditorAssignedOriginal, type OdeditorUnassigned as OdeditorUnassignedOriginal, type ParticipantsPolicy as ParticipantsPolicyOriginal, type PicassoAssigned as PicassoAssignedOriginal, type PicassoUnassigned as PicassoUnassignedOriginal, PlacementType as PlacementTypeOriginal, type PlacementTypeWithLiterals as PlacementTypeWithLiteralsOriginal, type PolicyDescription as PolicyDescriptionOriginal, type PropertiesChange as PropertiesChangeOriginal, type Properties as PropertiesOriginal, type QueryBookingPoliciesRequest as QueryBookingPoliciesRequestOriginal, type QueryBookingPoliciesResponse as QueryBookingPoliciesResponseOriginal, type RankingOptions as RankingOptionsOriginal, RankingOrder as RankingOrderOriginal, type RankingOrderWithLiterals as RankingOrderWithLiteralsOriginal, type ReschedulePolicy as ReschedulePolicyOriginal, ResolutionMethod as ResolutionMethodOriginal, type ResolutionMethodWithLiterals as ResolutionMethodWithLiteralsOriginal, type ResourcesPolicy as ResourcesPolicyOriginal, type RestoreInfo as RestoreInfoOriginal, type SaveCreditCardPolicy as SaveCreditCardPolicyOriginal, type ServiceProvisioned as ServiceProvisionedOriginal, type ServiceRemoved as ServiceRemovedOriginal, type SetDefaultBookingPolicyRequest as SetDefaultBookingPolicyRequestOriginal, type SetDefaultBookingPolicyResponse as SetDefaultBookingPolicyResponseOriginal, type SiteCloned as SiteClonedOriginal, SiteCreatedContext as SiteCreatedContextOriginal, type SiteCreatedContextWithLiterals as SiteCreatedContextWithLiteralsOriginal, type SiteCreated as SiteCreatedOriginal, type SiteDeleted as SiteDeletedOriginal, type SiteHardDeleted as SiteHardDeletedOriginal, type SiteMarkedAsTemplate as SiteMarkedAsTemplateOriginal, type SiteMarkedAsWixSite as SiteMarkedAsWixSiteOriginal, type SitePropertiesEvent as SitePropertiesEventOriginal, type SitePropertiesNotification as SitePropertiesNotificationOriginal, type SitePublished as SitePublishedOriginal, type SitePurgedExternally as SitePurgedExternallyOriginal, type SiteRenamed as SiteRenamedOriginal, type SiteTransferred as SiteTransferredOriginal, type SiteUndeleted as SiteUndeletedOriginal, type SiteUnpublished as SiteUnpublishedOriginal, type SiteUrlChanged as SiteUrlChangedOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, SortingMethodType as SortingMethodTypeOriginal, type SortingMethodTypeWithLiterals as SortingMethodTypeWithLiteralsOriginal, type Sorting as SortingOriginal, type SpecialHourPeriod as SpecialHourPeriodOriginal, type StaffSortingPolicyOptionsOneOf as StaffSortingPolicyOptionsOneOfOriginal, type StaffSortingPolicy as StaffSortingPolicyOriginal, State as StateOriginal, type StateWithLiterals as StateWithLiteralsOriginal, type StudioAssigned as StudioAssignedOriginal, type StudioTwoAssigned as StudioTwoAssignedOriginal, type StudioTwoUnassigned as StudioTwoUnassignedOriginal, type StudioUnassigned as StudioUnassignedOriginal, type SupportedLanguage as SupportedLanguageOriginal, type TimePeriod as TimePeriodOriginal, Timing as TimingOriginal, type TimingWithLiterals as TimingWithLiteralsOriginal, type Translation as TranslationOriginal, type UpdateAllPoliciesRequest as UpdateAllPoliciesRequestOriginal, type UpdateAllPoliciesResponse as UpdateAllPoliciesResponseOriginal, type UpdateBookingPolicyRequest as UpdateBookingPolicyRequestOriginal, type UpdateBookingPolicyResponse as UpdateBookingPolicyResponseOriginal, type UpdateBookingPolicyValidationErrors as UpdateBookingPolicyValidationErrorsOriginal, type V4SiteCreated as V4SiteCreatedOriginal, type WaitlistPolicy as WaitlistPolicyOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type WixelAssigned as WixelAssignedOriginal, type WixelUnassigned as WixelUnassignedOriginal, type __PublicMethodMetaInfo, countBookingPolicies, createBookingPolicy, deleteBookingPolicy, getBookingPolicy, getStrictestBookingPolicy, queryBookingPolicies, setDefaultBookingPolicy, updateBookingPolicy };
|
package/build/es/meta.mjs
CHANGED
|
@@ -298,6 +298,18 @@ var SortingMethodType = /* @__PURE__ */ ((SortingMethodType2) => {
|
|
|
298
298
|
SortingMethodType2["CUSTOM"] = "CUSTOM";
|
|
299
299
|
return SortingMethodType2;
|
|
300
300
|
})(SortingMethodType || {});
|
|
301
|
+
var Timing = /* @__PURE__ */ ((Timing2) => {
|
|
302
|
+
Timing2["UNKNOWN_TIMING"] = "UNKNOWN_TIMING";
|
|
303
|
+
Timing2["AFTER_BOOKING"] = "AFTER_BOOKING";
|
|
304
|
+
Timing2["BEFORE_BOOKING"] = "BEFORE_BOOKING";
|
|
305
|
+
return Timing2;
|
|
306
|
+
})(Timing || {});
|
|
307
|
+
var CompletionRequirement = /* @__PURE__ */ ((CompletionRequirement2) => {
|
|
308
|
+
CompletionRequirement2["UNKNOWN_COMPLETION_REQUIREMENT"] = "UNKNOWN_COMPLETION_REQUIREMENT";
|
|
309
|
+
CompletionRequirement2["OPTIONAL"] = "OPTIONAL";
|
|
310
|
+
CompletionRequirement2["REQUIRED_BEFORE_BOOKING"] = "REQUIRED_BEFORE_BOOKING";
|
|
311
|
+
return CompletionRequirement2;
|
|
312
|
+
})(CompletionRequirement || {});
|
|
301
313
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
302
314
|
SortOrder2["ASC"] = "ASC";
|
|
303
315
|
SortOrder2["DESC"] = "DESC";
|
|
@@ -540,6 +552,7 @@ function countBookingPolicies2() {
|
|
|
540
552
|
};
|
|
541
553
|
}
|
|
542
554
|
export {
|
|
555
|
+
CompletionRequirement as CompletionRequirementOriginal,
|
|
543
556
|
DayOfWeek as DayOfWeekOriginal,
|
|
544
557
|
DeleteStatus as DeleteStatusOriginal,
|
|
545
558
|
Namespace as NamespaceOriginal,
|
|
@@ -550,6 +563,7 @@ export {
|
|
|
550
563
|
SortOrder as SortOrderOriginal,
|
|
551
564
|
SortingMethodType as SortingMethodTypeOriginal,
|
|
552
565
|
State as StateOriginal,
|
|
566
|
+
Timing as TimingOriginal,
|
|
553
567
|
WebhookIdentityType as WebhookIdentityTypeOriginal,
|
|
554
568
|
countBookingPolicies2 as countBookingPolicies,
|
|
555
569
|
createBookingPolicy2 as createBookingPolicy,
|