@wix/bookings 1.0.396 → 1.0.397
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/bookings",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.397",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
"@wix/bookings_availability-calendar": "1.0.28",
|
|
23
23
|
"@wix/bookings_availability-time-slots": "1.0.24",
|
|
24
24
|
"@wix/bookings_bookings": "1.0.39",
|
|
25
|
-
"@wix/bookings_categories": "1.0.
|
|
25
|
+
"@wix/bookings_categories": "1.0.29",
|
|
26
26
|
"@wix/bookings_extended-bookings": "1.0.30",
|
|
27
27
|
"@wix/bookings_external-calendars": "1.0.26",
|
|
28
28
|
"@wix/bookings_multi-service-availability-time-slots": "1.0.23",
|
|
29
29
|
"@wix/bookings_pricing": "1.0.25",
|
|
30
30
|
"@wix/bookings_resources": "1.0.29",
|
|
31
31
|
"@wix/bookings_service-options-and-variants": "1.0.35",
|
|
32
|
-
"@wix/bookings_services": "1.0.
|
|
32
|
+
"@wix/bookings_services": "1.0.45"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@wix/sdk": "https://cdn.dev.wixpress.com/@wix/sdk/02e8069ab2fd783e0e6a080fc7d590e76cb26ab93c8389574286305b.tar.gz",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"fqdn": ""
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
|
-
"falconPackageHash": "
|
|
57
|
+
"falconPackageHash": "a734c09d5578a33c6169f3de6ef46e4cad0bb1c17be09fb6f9ad8d03"
|
|
58
58
|
}
|
|
@@ -5188,9 +5188,9 @@ interface Category {
|
|
|
5188
5188
|
sortOrder?: number | null;
|
|
5189
5189
|
}
|
|
5190
5190
|
declare enum Status {
|
|
5191
|
-
/**
|
|
5191
|
+
/** The category is created. */
|
|
5192
5192
|
CREATED = "CREATED",
|
|
5193
|
-
/**
|
|
5193
|
+
/** The category is deleted. */
|
|
5194
5194
|
DELETED = "DELETED"
|
|
5195
5195
|
}
|
|
5196
5196
|
interface ListCategoryResponse {
|
|
@@ -10814,10 +10814,12 @@ interface Category$1 {
|
|
|
10814
10814
|
name?: string | null;
|
|
10815
10815
|
/**
|
|
10816
10816
|
* Category status.
|
|
10817
|
+
*
|
|
10817
10818
|
* Supported values:
|
|
10818
|
-
* - "CREATED"
|
|
10819
|
-
* - "DELETED"
|
|
10820
|
-
*
|
|
10819
|
+
* - `"CREATED"`: The category is created.
|
|
10820
|
+
* - `"DELETED"`: The category is deleted.
|
|
10821
|
+
*
|
|
10822
|
+
* Default: `"CREATED"`
|
|
10821
10823
|
* @readonly
|
|
10822
10824
|
*/
|
|
10823
10825
|
status?: CategoryStatus;
|
|
@@ -10825,9 +10827,9 @@ interface Category$1 {
|
|
|
10825
10827
|
sortOrder?: number | null;
|
|
10826
10828
|
}
|
|
10827
10829
|
declare enum CategoryStatus {
|
|
10828
|
-
/**
|
|
10830
|
+
/** The category is created. */
|
|
10829
10831
|
CREATED = "CREATED",
|
|
10830
|
-
/**
|
|
10832
|
+
/** The category is deleted. */
|
|
10831
10833
|
DELETED = "DELETED"
|
|
10832
10834
|
}
|
|
10833
10835
|
declare enum CategoryNotificationEvent {
|
|
@@ -13993,9 +13995,9 @@ interface Category {
|
|
|
13993
13995
|
sortOrder?: number | null;
|
|
13994
13996
|
}
|
|
13995
13997
|
declare enum Status {
|
|
13996
|
-
/**
|
|
13998
|
+
/** The category is created. */
|
|
13997
13999
|
CREATED = "CREATED",
|
|
13998
|
-
/**
|
|
14000
|
+
/** The category is deleted. */
|
|
13999
14001
|
DELETED = "DELETED"
|
|
14000
14002
|
}
|
|
14001
14003
|
interface ListCategoryRequest {
|
|
@@ -11850,10 +11850,12 @@ interface Category$1 {
|
|
|
11850
11850
|
name?: string | null;
|
|
11851
11851
|
/**
|
|
11852
11852
|
* Category status.
|
|
11853
|
+
*
|
|
11853
11854
|
* Supported values:
|
|
11854
|
-
* - "CREATED"
|
|
11855
|
-
* - "DELETED"
|
|
11856
|
-
*
|
|
11855
|
+
* - `"CREATED"`: The category is created.
|
|
11856
|
+
* - `"DELETED"`: The category is deleted.
|
|
11857
|
+
*
|
|
11858
|
+
* Default: `"CREATED"`
|
|
11857
11859
|
* @readonly
|
|
11858
11860
|
*/
|
|
11859
11861
|
status?: Status$1;
|
|
@@ -11861,15 +11863,19 @@ interface Category$1 {
|
|
|
11861
11863
|
sortOrder?: number | null;
|
|
11862
11864
|
}
|
|
11863
11865
|
declare enum Status$1 {
|
|
11864
|
-
/**
|
|
11866
|
+
/** The category is created. */
|
|
11865
11867
|
CREATED = "CREATED",
|
|
11866
|
-
/**
|
|
11868
|
+
/** The category is deleted. */
|
|
11867
11869
|
DELETED = "DELETED"
|
|
11868
11870
|
}
|
|
11869
11871
|
interface ListCategoryRequest$1 {
|
|
11870
11872
|
/** Category IDs. */
|
|
11871
11873
|
categoryIds?: string[];
|
|
11872
|
-
/**
|
|
11874
|
+
/**
|
|
11875
|
+
* Whether to include deleted categories in the list.
|
|
11876
|
+
*
|
|
11877
|
+
* Default: `false`
|
|
11878
|
+
*/
|
|
11873
11879
|
includeDeleted?: boolean | null;
|
|
11874
11880
|
}
|
|
11875
11881
|
interface ListCategoryResponse$1 {
|
|
@@ -11938,9 +11944,9 @@ interface Category {
|
|
|
11938
11944
|
sortOrder?: number | null;
|
|
11939
11945
|
}
|
|
11940
11946
|
declare enum Status {
|
|
11941
|
-
/**
|
|
11947
|
+
/** The category is created. */
|
|
11942
11948
|
CREATED = "CREATED",
|
|
11943
|
-
/**
|
|
11949
|
+
/** The category is deleted. */
|
|
11944
11950
|
DELETED = "DELETED"
|
|
11945
11951
|
}
|
|
11946
11952
|
interface ListCategoryRequest {
|