@wix/auto_sdk_bookings_booking-policies 1.0.87 → 1.0.90
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.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +4 -10
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +4 -2
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +4 -10
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +4 -2
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +4 -10
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +4 -2
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +4 -10
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +4 -2
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1302,10 +1302,12 @@ declare enum Namespace {
|
|
|
1302
1302
|
/** Wix Twins platform. */
|
|
1303
1303
|
TWINS = "TWINS",
|
|
1304
1304
|
/** Wix Nano. */
|
|
1305
|
-
NANO = "NANO"
|
|
1305
|
+
NANO = "NANO",
|
|
1306
|
+
/** Base44 headless sites. */
|
|
1307
|
+
BASE44 = "BASE44"
|
|
1306
1308
|
}
|
|
1307
1309
|
/** @enumType */
|
|
1308
|
-
type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR' | 'TWINS' | 'NANO';
|
|
1310
|
+
type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR' | 'TWINS' | 'NANO' | 'BASE44';
|
|
1309
1311
|
/** Site transferred to another user. */
|
|
1310
1312
|
interface SiteTransferred {
|
|
1311
1313
|
/**
|
|
@@ -1663,8 +1665,6 @@ interface BookingPolicyCreatedEnvelope {
|
|
|
1663
1665
|
}
|
|
1664
1666
|
/**
|
|
1665
1667
|
* Triggered when a booking policy is created.
|
|
1666
|
-
* @permissionScope Manage Stores
|
|
1667
|
-
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
1668
1668
|
* @permissionScope Read Bookings - Public Data
|
|
1669
1669
|
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
|
|
1670
1670
|
* @permissionScope Manage Bookings Services and Settings
|
|
@@ -1691,8 +1691,6 @@ interface BookingPolicyDefaultBookingPolicySetEnvelope {
|
|
|
1691
1691
|
* Triggered when the site's default policy changes. Then,
|
|
1692
1692
|
* [Booking Policy Updated](https://dev.wix.com/docs/rest/business-solutions/bookings/policies/booking-policies/booking-policy-updated)
|
|
1693
1693
|
* is also triggered both for the new and the previous default policy.
|
|
1694
|
-
* @permissionScope Manage Stores
|
|
1695
|
-
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
1696
1694
|
* @permissionScope Read Bookings - Public Data
|
|
1697
1695
|
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
|
|
1698
1696
|
* @permissionScope Manage Bookings Services and Settings
|
|
@@ -1716,8 +1714,6 @@ interface BookingPolicyDeletedEnvelope {
|
|
|
1716
1714
|
}
|
|
1717
1715
|
/**
|
|
1718
1716
|
* Triggered when a booking policy is deleted.
|
|
1719
|
-
* @permissionScope Manage Stores
|
|
1720
|
-
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
1721
1717
|
* @permissionScope Read Bookings - Public Data
|
|
1722
1718
|
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
|
|
1723
1719
|
* @permissionScope Manage Bookings Services and Settings
|
|
@@ -1743,8 +1739,6 @@ interface BookingPolicyUpdatedEnvelope {
|
|
|
1743
1739
|
/**
|
|
1744
1740
|
* Triggered when a booking policy is updated, including when a policy's
|
|
1745
1741
|
* `default` attribute changes.
|
|
1746
|
-
* @permissionScope Manage Stores
|
|
1747
|
-
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
1748
1742
|
* @permissionScope Read Bookings - Public Data
|
|
1749
1743
|
* @permissionScopeId SCOPE.DC-BOOKINGS.READ-BOOKINGS-PUBLIC
|
|
1750
1744
|
* @permissionScope Manage Bookings Services and Settings
|
|
@@ -440,6 +440,7 @@ var Namespace = /* @__PURE__ */ ((Namespace2) => {
|
|
|
440
440
|
Namespace2["MIMIR"] = "MIMIR";
|
|
441
441
|
Namespace2["TWINS"] = "TWINS";
|
|
442
442
|
Namespace2["NANO"] = "NANO";
|
|
443
|
+
Namespace2["BASE44"] = "BASE44";
|
|
443
444
|
return Namespace2;
|
|
444
445
|
})(Namespace || {});
|
|
445
446
|
var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
|