@wix/table-reservations 1.0.172 → 1.0.174
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/table-reservations",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.174",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"type-bundles"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@wix/table-reservations_reservation-locations": "1.0.
|
|
25
|
-
"@wix/table-reservations_reservations": "1.0.
|
|
24
|
+
"@wix/table-reservations_reservation-locations": "1.0.79",
|
|
25
|
+
"@wix/table-reservations_reservations": "1.0.61",
|
|
26
26
|
"@wix/table-reservations_time-slots": "1.0.54"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": ""
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "f5da0efcabde5da55ac422c27ba563448738f9ed452ac89e41b7b13b"
|
|
52
52
|
}
|
|
@@ -1107,11 +1107,7 @@ declare enum ScalarType {
|
|
|
1107
1107
|
/** Minimum value. */
|
|
1108
1108
|
MIN = "MIN",
|
|
1109
1109
|
/** Maximum value. */
|
|
1110
|
-
MAX = "MAX"
|
|
1111
|
-
/** Sum of values. */
|
|
1112
|
-
SUM = "SUM",
|
|
1113
|
-
/** Average of values. */
|
|
1114
|
-
AVG = "AVG"
|
|
1110
|
+
MAX = "MAX"
|
|
1115
1111
|
}
|
|
1116
1112
|
declare enum NestedAggregationType {
|
|
1117
1113
|
/** Undefined aggregation type. */
|
|
@@ -3720,6 +3716,21 @@ interface SiteMarkedAsTemplate {
|
|
|
3720
3716
|
}
|
|
3721
3717
|
interface SiteMarkedAsWixSite {
|
|
3722
3718
|
}
|
|
3719
|
+
/**
|
|
3720
|
+
* Represents a service provisioned a site.
|
|
3721
|
+
*
|
|
3722
|
+
* Note on `origin_instance_id`:
|
|
3723
|
+
* There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
|
|
3724
|
+
* This is because of the following scenario:
|
|
3725
|
+
*
|
|
3726
|
+
* Imagine you have a template where a third-party application (TPA) includes some stub data,
|
|
3727
|
+
* such as a product catalog. When you create a site from this template, you inherit this
|
|
3728
|
+
* default product catalog. However, if the template's product catalog is modified,
|
|
3729
|
+
* your site will retain the catalog as it was at the time of site creation. This ensures that
|
|
3730
|
+
* your site remains consistent with what you initially received and does not include any
|
|
3731
|
+
* changes made to the original template afterward.
|
|
3732
|
+
* To ensure this, the TPA on the template gets a new instance_id.
|
|
3733
|
+
*/
|
|
3723
3734
|
interface ServiceProvisioned {
|
|
3724
3735
|
/** Either UUID or EmbeddedServiceType. */
|
|
3725
3736
|
appDefId?: string;
|
|
@@ -3829,7 +3840,7 @@ interface Properties {
|
|
|
3829
3840
|
businessSchedule?: BusinessSchedule;
|
|
3830
3841
|
/** Supported languages of a site and the primary language. */
|
|
3831
3842
|
multilingual?: Multilingual;
|
|
3832
|
-
/** Cookie policy the
|
|
3843
|
+
/** Cookie policy the Wix user defined for their site (before the site visitor interacts with/limits it). */
|
|
3833
3844
|
consentPolicy?: ConsentPolicy;
|
|
3834
3845
|
/**
|
|
3835
3846
|
* Supported values: `FITNESS SERVICE`, `RESTAURANT`, `BLOG`, `STORE`, `EVENT`, `UNKNOWN`.
|
|
@@ -3837,9 +3848,9 @@ interface Properties {
|
|
|
3837
3848
|
* Site business type.
|
|
3838
3849
|
*/
|
|
3839
3850
|
businessConfig?: string | null;
|
|
3840
|
-
/** External site
|
|
3851
|
+
/** External site URL that uses Wix as its headless business solution. */
|
|
3841
3852
|
externalSiteUrl?: string | null;
|
|
3842
|
-
/** Track clicks analytics */
|
|
3853
|
+
/** Track clicks analytics. */
|
|
3843
3854
|
trackClicksAnalytics?: boolean;
|
|
3844
3855
|
}
|
|
3845
3856
|
interface Categories {
|
|
@@ -3883,8 +3894,7 @@ interface Address {
|
|
|
3883
3894
|
/**
|
|
3884
3895
|
* Extra information on displayed addresses.
|
|
3885
3896
|
* This is used for display purposes. Used to add additional data about the address, such as "In the passage".
|
|
3886
|
-
* Free text. In addition the user can state where
|
|
3887
|
-
* the address string.
|
|
3897
|
+
* Free text. In addition, the user can state where to display the additional description - before, after, or instead of the address string.
|
|
3888
3898
|
*/
|
|
3889
3899
|
interface AddressHint {
|
|
3890
3900
|
/** Extra text displayed next to, or instead of, the actual address. */
|
|
@@ -1107,11 +1107,7 @@ declare enum ScalarType {
|
|
|
1107
1107
|
/** Minimum value. */
|
|
1108
1108
|
MIN = "MIN",
|
|
1109
1109
|
/** Maximum value. */
|
|
1110
|
-
MAX = "MAX"
|
|
1111
|
-
/** Sum of values. */
|
|
1112
|
-
SUM = "SUM",
|
|
1113
|
-
/** Average of values. */
|
|
1114
|
-
AVG = "AVG"
|
|
1110
|
+
MAX = "MAX"
|
|
1115
1111
|
}
|
|
1116
1112
|
declare enum NestedAggregationType {
|
|
1117
1113
|
/** Undefined aggregation type. */
|
|
@@ -3720,6 +3716,21 @@ interface SiteMarkedAsTemplate {
|
|
|
3720
3716
|
}
|
|
3721
3717
|
interface SiteMarkedAsWixSite {
|
|
3722
3718
|
}
|
|
3719
|
+
/**
|
|
3720
|
+
* Represents a service provisioned a site.
|
|
3721
|
+
*
|
|
3722
|
+
* Note on `origin_instance_id`:
|
|
3723
|
+
* There is no guarantee that you will be able to find a meta site using `origin_instance_id`.
|
|
3724
|
+
* This is because of the following scenario:
|
|
3725
|
+
*
|
|
3726
|
+
* Imagine you have a template where a third-party application (TPA) includes some stub data,
|
|
3727
|
+
* such as a product catalog. When you create a site from this template, you inherit this
|
|
3728
|
+
* default product catalog. However, if the template's product catalog is modified,
|
|
3729
|
+
* your site will retain the catalog as it was at the time of site creation. This ensures that
|
|
3730
|
+
* your site remains consistent with what you initially received and does not include any
|
|
3731
|
+
* changes made to the original template afterward.
|
|
3732
|
+
* To ensure this, the TPA on the template gets a new instance_id.
|
|
3733
|
+
*/
|
|
3723
3734
|
interface ServiceProvisioned {
|
|
3724
3735
|
/** Either UUID or EmbeddedServiceType. */
|
|
3725
3736
|
appDefId?: string;
|
|
@@ -3829,7 +3840,7 @@ interface Properties {
|
|
|
3829
3840
|
businessSchedule?: BusinessSchedule;
|
|
3830
3841
|
/** Supported languages of a site and the primary language. */
|
|
3831
3842
|
multilingual?: Multilingual;
|
|
3832
|
-
/** Cookie policy the
|
|
3843
|
+
/** Cookie policy the Wix user defined for their site (before the site visitor interacts with/limits it). */
|
|
3833
3844
|
consentPolicy?: ConsentPolicy;
|
|
3834
3845
|
/**
|
|
3835
3846
|
* Supported values: `FITNESS SERVICE`, `RESTAURANT`, `BLOG`, `STORE`, `EVENT`, `UNKNOWN`.
|
|
@@ -3837,9 +3848,9 @@ interface Properties {
|
|
|
3837
3848
|
* Site business type.
|
|
3838
3849
|
*/
|
|
3839
3850
|
businessConfig?: string | null;
|
|
3840
|
-
/** External site
|
|
3851
|
+
/** External site URL that uses Wix as its headless business solution. */
|
|
3841
3852
|
externalSiteUrl?: string | null;
|
|
3842
|
-
/** Track clicks analytics */
|
|
3853
|
+
/** Track clicks analytics. */
|
|
3843
3854
|
trackClicksAnalytics?: boolean;
|
|
3844
3855
|
}
|
|
3845
3856
|
interface Categories {
|
|
@@ -3883,8 +3894,7 @@ interface Address {
|
|
|
3883
3894
|
/**
|
|
3884
3895
|
* Extra information on displayed addresses.
|
|
3885
3896
|
* This is used for display purposes. Used to add additional data about the address, such as "In the passage".
|
|
3886
|
-
* Free text. In addition the user can state where
|
|
3887
|
-
* the address string.
|
|
3897
|
+
* Free text. In addition, the user can state where to display the additional description - before, after, or instead of the address string.
|
|
3888
3898
|
*/
|
|
3889
3899
|
interface AddressHint {
|
|
3890
3900
|
/** Extra text displayed next to, or instead of, the actual address. */
|
|
@@ -555,11 +555,7 @@ declare enum ScalarType$1 {
|
|
|
555
555
|
/** Minimum value. */
|
|
556
556
|
MIN = "MIN",
|
|
557
557
|
/** Maximum value. */
|
|
558
|
-
MAX = "MAX"
|
|
559
|
-
/** Sum of values. */
|
|
560
|
-
SUM = "SUM",
|
|
561
|
-
/** Average of values. */
|
|
562
|
-
AVG = "AVG"
|
|
558
|
+
MAX = "MAX"
|
|
563
559
|
}
|
|
564
560
|
declare enum NestedAggregationType$1 {
|
|
565
561
|
/** Undefined aggregation type. */
|
|
@@ -1530,11 +1526,7 @@ declare enum ScalarType {
|
|
|
1530
1526
|
/** Minimum value. */
|
|
1531
1527
|
MIN = "MIN",
|
|
1532
1528
|
/** Maximum value. */
|
|
1533
|
-
MAX = "MAX"
|
|
1534
|
-
/** Sum of values. */
|
|
1535
|
-
SUM = "SUM",
|
|
1536
|
-
/** Average of values. */
|
|
1537
|
-
AVG = "AVG"
|
|
1529
|
+
MAX = "MAX"
|
|
1538
1530
|
}
|
|
1539
1531
|
declare enum NestedAggregationType {
|
|
1540
1532
|
/** Undefined aggregation type. */
|