@wix/auto_sdk_bookings_categories 1.0.3 → 1.0.4
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/src/bookings-v1-category-categories.types.d.ts +58 -14
- package/build/cjs/src/bookings-v1-category-categories.types.js.map +1 -1
- package/build/cjs/src/bookings-v1-category-categories.universal.d.ts +72 -17
- package/build/cjs/src/bookings-v1-category-categories.universal.js.map +1 -1
- package/build/es/src/bookings-v1-category-categories.types.d.ts +58 -14
- package/build/es/src/bookings-v1-category-categories.types.js.map +1 -1
- package/build/es/src/bookings-v1-category-categories.universal.d.ts +72 -17
- package/build/es/src/bookings-v1-category-categories.universal.js.map +1 -1
- package/build/internal/cjs/src/bookings-v1-category-categories.types.d.ts +58 -14
- package/build/internal/cjs/src/bookings-v1-category-categories.types.js.map +1 -1
- package/build/internal/cjs/src/bookings-v1-category-categories.universal.d.ts +72 -17
- package/build/internal/cjs/src/bookings-v1-category-categories.universal.js.map +1 -1
- package/build/internal/es/src/bookings-v1-category-categories.types.d.ts +58 -14
- package/build/internal/es/src/bookings-v1-category-categories.types.js.map +1 -1
- package/build/internal/es/src/bookings-v1-category-categories.universal.d.ts +72 -17
- package/build/internal/es/src/bookings-v1-category-categories.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -2,10 +2,14 @@
|
|
|
2
2
|
export interface Category {
|
|
3
3
|
/**
|
|
4
4
|
* Category ID.
|
|
5
|
+
* @format GUID
|
|
5
6
|
* @readonly
|
|
6
7
|
*/
|
|
7
8
|
id?: string | null;
|
|
8
|
-
/**
|
|
9
|
+
/**
|
|
10
|
+
* Category name.
|
|
11
|
+
* @maxLength 500
|
|
12
|
+
*/
|
|
9
13
|
name?: string | null;
|
|
10
14
|
/**
|
|
11
15
|
* Category status.
|
|
@@ -28,6 +32,7 @@ export interface ListCategoryRequest {
|
|
|
28
32
|
* IDs of the categories to retrieve.
|
|
29
33
|
*
|
|
30
34
|
* Default: All categories are retrieved.
|
|
35
|
+
* @format GUID
|
|
31
36
|
*/
|
|
32
37
|
categoryIds?: string[];
|
|
33
38
|
/**
|
|
@@ -79,7 +84,10 @@ export interface UpdateCategoryResponse {
|
|
|
79
84
|
category?: Category;
|
|
80
85
|
}
|
|
81
86
|
export interface DeleteCategoryRequest {
|
|
82
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* ID of the category to delete.
|
|
89
|
+
* @format GUID
|
|
90
|
+
*/
|
|
83
91
|
id: string | null;
|
|
84
92
|
/**
|
|
85
93
|
* Whether to delete all the services associated with the category.
|
|
@@ -89,11 +97,17 @@ export interface DeleteCategoryRequest {
|
|
|
89
97
|
deleteServices?: boolean | null;
|
|
90
98
|
}
|
|
91
99
|
export interface DeleteCategoryResponse {
|
|
92
|
-
/**
|
|
100
|
+
/**
|
|
101
|
+
* ID of the deleted category.
|
|
102
|
+
* @format GUID
|
|
103
|
+
*/
|
|
93
104
|
id?: string | null;
|
|
94
105
|
}
|
|
95
106
|
export interface BatchDeleteCategoryRequest {
|
|
96
|
-
/**
|
|
107
|
+
/**
|
|
108
|
+
* IDs of the categories to delete.
|
|
109
|
+
* @format GUID
|
|
110
|
+
*/
|
|
97
111
|
ids?: string[] | null;
|
|
98
112
|
}
|
|
99
113
|
export interface BatchDeleteCategoryResponse {
|
|
@@ -107,9 +121,15 @@ export interface BatchUpdateCategoryRequest {
|
|
|
107
121
|
export interface BatchUpdateCategoryResponse {
|
|
108
122
|
}
|
|
109
123
|
export interface MessageEnvelope {
|
|
110
|
-
/**
|
|
124
|
+
/**
|
|
125
|
+
* App instance ID.
|
|
126
|
+
* @format GUID
|
|
127
|
+
*/
|
|
111
128
|
instanceId?: string | null;
|
|
112
|
-
/**
|
|
129
|
+
/**
|
|
130
|
+
* Event type.
|
|
131
|
+
* @maxLength 150
|
|
132
|
+
*/
|
|
113
133
|
eventType?: string;
|
|
114
134
|
/** The identification type and identity data. */
|
|
115
135
|
identity?: IdentificationData;
|
|
@@ -117,26 +137,50 @@ export interface MessageEnvelope {
|
|
|
117
137
|
data?: string;
|
|
118
138
|
}
|
|
119
139
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
120
|
-
/**
|
|
140
|
+
/**
|
|
141
|
+
* ID of a site visitor that has not logged in to the site.
|
|
142
|
+
* @format GUID
|
|
143
|
+
*/
|
|
121
144
|
anonymousVisitorId?: string;
|
|
122
|
-
/**
|
|
145
|
+
/**
|
|
146
|
+
* ID of a site visitor that has logged in to the site.
|
|
147
|
+
* @format GUID
|
|
148
|
+
*/
|
|
123
149
|
memberId?: string;
|
|
124
|
-
/**
|
|
150
|
+
/**
|
|
151
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
152
|
+
* @format GUID
|
|
153
|
+
*/
|
|
125
154
|
wixUserId?: string;
|
|
126
|
-
/**
|
|
155
|
+
/**
|
|
156
|
+
* ID of an app.
|
|
157
|
+
* @format GUID
|
|
158
|
+
*/
|
|
127
159
|
appId?: string;
|
|
128
160
|
/** @readonly */
|
|
129
161
|
identityType?: WebhookIdentityType;
|
|
130
162
|
}
|
|
131
163
|
/** @oneof */
|
|
132
164
|
export interface IdentificationDataIdOneOf {
|
|
133
|
-
/**
|
|
165
|
+
/**
|
|
166
|
+
* ID of a site visitor that has not logged in to the site.
|
|
167
|
+
* @format GUID
|
|
168
|
+
*/
|
|
134
169
|
anonymousVisitorId?: string;
|
|
135
|
-
/**
|
|
170
|
+
/**
|
|
171
|
+
* ID of a site visitor that has logged in to the site.
|
|
172
|
+
* @format GUID
|
|
173
|
+
*/
|
|
136
174
|
memberId?: string;
|
|
137
|
-
/**
|
|
175
|
+
/**
|
|
176
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
177
|
+
* @format GUID
|
|
178
|
+
*/
|
|
138
179
|
wixUserId?: string;
|
|
139
|
-
/**
|
|
180
|
+
/**
|
|
181
|
+
* ID of an app.
|
|
182
|
+
* @format GUID
|
|
183
|
+
*/
|
|
140
184
|
appId?: string;
|
|
141
185
|
}
|
|
142
186
|
export declare enum WebhookIdentityType {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings-v1-category-categories.types.js","sourceRoot":"","sources":["../../../src/bookings-v1-category-categories.types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"bookings-v1-category-categories.types.js","sourceRoot":"","sources":["../../../src/bookings-v1-category-categories.types.ts"],"names":[],"mappings":";;;AAwBA,IAAY,MAKX;AALD,WAAY,MAAM;IAChB,gCAAgC;IAChC,6BAAmB,CAAA;IACnB,gCAAgC;IAChC,6BAAmB,CAAA;AACrB,CAAC,EALW,MAAM,sBAAN,MAAM,QAKjB;AA6BD,IAAY,KAOX;AAPD,WAAY,KAAK;IACf,4BAA4B;IAC5B,4BAAmB,CAAA;IACnB,4BAA4B;IAC5B,4BAAmB,CAAA;IACnB,4BAA4B;IAC5B,4BAAmB,CAAA;AACrB,CAAC,EAPW,KAAK,qBAAL,KAAK,QAOhB;AA2ID,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B"}
|
|
@@ -2,10 +2,14 @@
|
|
|
2
2
|
export interface Category {
|
|
3
3
|
/**
|
|
4
4
|
* Category ID.
|
|
5
|
+
* @format GUID
|
|
5
6
|
* @readonly
|
|
6
7
|
*/
|
|
7
8
|
_id?: string | null;
|
|
8
|
-
/**
|
|
9
|
+
/**
|
|
10
|
+
* Category name.
|
|
11
|
+
* @maxLength 500
|
|
12
|
+
*/
|
|
9
13
|
name?: string | null;
|
|
10
14
|
}
|
|
11
15
|
export declare enum Status {
|
|
@@ -19,6 +23,7 @@ export interface ListCategoryRequest {
|
|
|
19
23
|
* IDs of the categories to retrieve.
|
|
20
24
|
*
|
|
21
25
|
* Default: All categories are retrieved.
|
|
26
|
+
* @format GUID
|
|
22
27
|
*/
|
|
23
28
|
categoryIds?: string[];
|
|
24
29
|
}
|
|
@@ -64,7 +69,10 @@ export interface UpdateCategoryResponse {
|
|
|
64
69
|
category?: Category;
|
|
65
70
|
}
|
|
66
71
|
export interface DeleteCategoryRequest {
|
|
67
|
-
/**
|
|
72
|
+
/**
|
|
73
|
+
* ID of the category to delete.
|
|
74
|
+
* @format GUID
|
|
75
|
+
*/
|
|
68
76
|
_id: string | null;
|
|
69
77
|
/**
|
|
70
78
|
* Whether to delete all the services associated with the category.
|
|
@@ -74,11 +82,17 @@ export interface DeleteCategoryRequest {
|
|
|
74
82
|
deleteServices?: boolean | null;
|
|
75
83
|
}
|
|
76
84
|
export interface DeleteCategoryResponse {
|
|
77
|
-
/**
|
|
85
|
+
/**
|
|
86
|
+
* ID of the deleted category.
|
|
87
|
+
* @format GUID
|
|
88
|
+
*/
|
|
78
89
|
_id?: string | null;
|
|
79
90
|
}
|
|
80
91
|
export interface BatchDeleteCategoryRequest {
|
|
81
|
-
/**
|
|
92
|
+
/**
|
|
93
|
+
* IDs of the categories to delete.
|
|
94
|
+
* @format GUID
|
|
95
|
+
*/
|
|
82
96
|
ids?: string[] | null;
|
|
83
97
|
}
|
|
84
98
|
export interface BatchDeleteCategoryResponse {
|
|
@@ -92,9 +106,15 @@ export interface BatchUpdateCategoryRequest {
|
|
|
92
106
|
export interface BatchUpdateCategoryResponse {
|
|
93
107
|
}
|
|
94
108
|
export interface MessageEnvelope {
|
|
95
|
-
/**
|
|
109
|
+
/**
|
|
110
|
+
* App instance ID.
|
|
111
|
+
* @format GUID
|
|
112
|
+
*/
|
|
96
113
|
instanceId?: string | null;
|
|
97
|
-
/**
|
|
114
|
+
/**
|
|
115
|
+
* Event type.
|
|
116
|
+
* @maxLength 150
|
|
117
|
+
*/
|
|
98
118
|
eventType?: string;
|
|
99
119
|
/** The identification type and identity data. */
|
|
100
120
|
identity?: IdentificationData;
|
|
@@ -102,26 +122,50 @@ export interface MessageEnvelope {
|
|
|
102
122
|
data?: string;
|
|
103
123
|
}
|
|
104
124
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
105
|
-
/**
|
|
125
|
+
/**
|
|
126
|
+
* ID of a site visitor that has not logged in to the site.
|
|
127
|
+
* @format GUID
|
|
128
|
+
*/
|
|
106
129
|
anonymousVisitorId?: string;
|
|
107
|
-
/**
|
|
130
|
+
/**
|
|
131
|
+
* ID of a site visitor that has logged in to the site.
|
|
132
|
+
* @format GUID
|
|
133
|
+
*/
|
|
108
134
|
memberId?: string;
|
|
109
|
-
/**
|
|
135
|
+
/**
|
|
136
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
137
|
+
* @format GUID
|
|
138
|
+
*/
|
|
110
139
|
wixUserId?: string;
|
|
111
|
-
/**
|
|
140
|
+
/**
|
|
141
|
+
* ID of an app.
|
|
142
|
+
* @format GUID
|
|
143
|
+
*/
|
|
112
144
|
appId?: string;
|
|
113
145
|
/** @readonly */
|
|
114
146
|
identityType?: WebhookIdentityType;
|
|
115
147
|
}
|
|
116
148
|
/** @oneof */
|
|
117
149
|
export interface IdentificationDataIdOneOf {
|
|
118
|
-
/**
|
|
150
|
+
/**
|
|
151
|
+
* ID of a site visitor that has not logged in to the site.
|
|
152
|
+
* @format GUID
|
|
153
|
+
*/
|
|
119
154
|
anonymousVisitorId?: string;
|
|
120
|
-
/**
|
|
155
|
+
/**
|
|
156
|
+
* ID of a site visitor that has logged in to the site.
|
|
157
|
+
* @format GUID
|
|
158
|
+
*/
|
|
121
159
|
memberId?: string;
|
|
122
|
-
/**
|
|
160
|
+
/**
|
|
161
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
162
|
+
* @format GUID
|
|
163
|
+
*/
|
|
123
164
|
wixUserId?: string;
|
|
124
|
-
/**
|
|
165
|
+
/**
|
|
166
|
+
* ID of an app.
|
|
167
|
+
* @format GUID
|
|
168
|
+
*/
|
|
125
169
|
appId?: string;
|
|
126
170
|
}
|
|
127
171
|
export declare enum WebhookIdentityType {
|
|
@@ -144,9 +188,15 @@ export interface UpdateCategoryResponseNonNullableFields {
|
|
|
144
188
|
category?: CategoryNonNullableFields;
|
|
145
189
|
}
|
|
146
190
|
export interface BaseEventMetadata {
|
|
147
|
-
/**
|
|
191
|
+
/**
|
|
192
|
+
* App instance ID.
|
|
193
|
+
* @format GUID
|
|
194
|
+
*/
|
|
148
195
|
instanceId?: string | null;
|
|
149
|
-
/**
|
|
196
|
+
/**
|
|
197
|
+
* Event type.
|
|
198
|
+
* @maxLength 150
|
|
199
|
+
*/
|
|
150
200
|
eventType?: string;
|
|
151
201
|
/** The identification type and identity data. */
|
|
152
202
|
identity?: IdentificationData;
|
|
@@ -203,6 +253,7 @@ export interface ListCategoriesOptions {
|
|
|
203
253
|
* IDs of the categories to retrieve.
|
|
204
254
|
*
|
|
205
255
|
* Default: All categories are retrieved.
|
|
256
|
+
* @format GUID
|
|
206
257
|
*/
|
|
207
258
|
categoryIds?: string[];
|
|
208
259
|
}
|
|
@@ -249,10 +300,14 @@ export declare function updateCategory(_id: string | null, category: UpdateCateg
|
|
|
249
300
|
export interface UpdateCategory {
|
|
250
301
|
/**
|
|
251
302
|
* Category ID.
|
|
303
|
+
* @format GUID
|
|
252
304
|
* @readonly
|
|
253
305
|
*/
|
|
254
306
|
_id?: string | null;
|
|
255
|
-
/**
|
|
307
|
+
/**
|
|
308
|
+
* Category name.
|
|
309
|
+
* @maxLength 500
|
|
310
|
+
*/
|
|
256
311
|
name?: string | null;
|
|
257
312
|
}
|
|
258
313
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings-v1-category-categories.universal.js","sourceRoot":"","sources":["../../../src/bookings-v1-category-categories.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,oFAGiD;AAEjD,2GAA6F;
|
|
1
|
+
{"version":3,"file":"bookings-v1-category-categories.universal.js","sourceRoot":"","sources":["../../../src/bookings-v1-category-categories.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,oFAGiD;AAEjD,2GAA6F;AA2B7F,IAAY,MAKX;AALD,WAAY,MAAM;IAChB,gCAAgC;IAChC,6BAAmB,CAAA;IACnB,gCAAgC;IAChC,6BAAmB,CAAA;AACrB,CAAC,EALW,MAAM,sBAAN,MAAM,QAKjB;AA2BD,IAAY,KAOX;AAPD,WAAY,KAAK;IACf,4BAA4B;IAC5B,4BAAmB,CAAA;IACnB,4BAA4B;IAC5B,4BAAmB,CAAA;IACnB,4BAA4B;IAC5B,4BAAmB,CAAA;AACrB,CAAC,EAPW,KAAK,qBAAL,KAAK,QAOhB;AA2ID,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B;AA6DD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACI,KAAK,UAAU,cAAc,CAClC,OAA+B;IAE/B,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,8DAAqC,EAAC;QACpD,WAAW,EAAE,OAAO,EAAE,WAAW;QACjC,cAAc,EAAE,OAAO,EAAE,cAAc;KACxC,CAAC,CAAC;IAEH,MAAM,OAAO,GAAG,+BAA+B,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAE9D,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,IAAA,gEAAuC,EAAC,MAAM,CAAC,IAAI,CAAE,CAAC;IAC/D,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE;gBACxB,WAAW,EAAE,kBAAkB;gBAC/B,cAAc,EAAE,qBAAqB;aACtC;YACD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,SAAS,CAAC,CACZ,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AAvCD,wCAuCC;AAcD;;;;;;;;;;;;;;;GAeG;AACI,KAAK,UAAU,cAAc,CAClC,QAAkB;IAElB,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,8DAAqC,EAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC,CAAC;IAE9E,MAAM,OAAO,GAAG,+BAA+B,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAEhE,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,IAAA,gEAAuC,EAAC,MAAM,CAAC,IAAI,CAAC,EAAE,QAAS,CAAC;IACzE,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE;YAC9C,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,UAAU,CAAC,CACb,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AAjCD,wCAiCC;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACI,KAAK,UAAU,cAAc,CAClC,GAAkB,EAClB,QAAwB;IAExB,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,8DAAqC,EAAC;QACpD,QAAQ,EAAE,EAAE,GAAG,QAAQ,EAAE,EAAE,EAAE,GAAG,EAAE;KACnC,CAAC,CAAC;IAEH,MAAM,OAAO,GAAG,+BAA+B,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAEhE,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,IAAA,gEAAuC,EAAC,MAAM,CAAC,IAAI,CAAE,CAAC;IAC/D,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE;YAC5C,wBAAwB,EAAE,EAAE,aAAa,EAAE,MAAM,EAAE;YACnD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,KAAK,EAAE,UAAU,CAAC,CACpB,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AApCD,wCAoCC;AAuBD;;;;;;;;;;;;;;;;;;GAkBG;AACI,KAAK,UAAU,cAAc,CAClC,GAAkB,EAClB,OAA+B;IAE/B,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,8DAAqC,EAAC;QACpD,EAAE,EAAE,GAAG;QACP,cAAc,EAAE,OAAO,EAAE,cAAc;KACxC,CAAC,CAAC;IAEH,MAAM,OAAO,GAAG,+BAA+B,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;IAEjE,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,IAAA,gEAAuC,EAAC,MAAM,CAAC,IAAI,CAAE,CAAC;IAC/D,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE;gBACxB,EAAE,EAAE,MAAM;gBACV,cAAc,EAAE,qBAAqB;aACtC;YACD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,KAAK,EAAE,SAAS,CAAC,CACnB,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AAxCD,wCAwCC"}
|
|
@@ -2,10 +2,14 @@
|
|
|
2
2
|
export interface Category {
|
|
3
3
|
/**
|
|
4
4
|
* Category ID.
|
|
5
|
+
* @format GUID
|
|
5
6
|
* @readonly
|
|
6
7
|
*/
|
|
7
8
|
id?: string | null;
|
|
8
|
-
/**
|
|
9
|
+
/**
|
|
10
|
+
* Category name.
|
|
11
|
+
* @maxLength 500
|
|
12
|
+
*/
|
|
9
13
|
name?: string | null;
|
|
10
14
|
/**
|
|
11
15
|
* Category status.
|
|
@@ -28,6 +32,7 @@ export interface ListCategoryRequest {
|
|
|
28
32
|
* IDs of the categories to retrieve.
|
|
29
33
|
*
|
|
30
34
|
* Default: All categories are retrieved.
|
|
35
|
+
* @format GUID
|
|
31
36
|
*/
|
|
32
37
|
categoryIds?: string[];
|
|
33
38
|
/**
|
|
@@ -79,7 +84,10 @@ export interface UpdateCategoryResponse {
|
|
|
79
84
|
category?: Category;
|
|
80
85
|
}
|
|
81
86
|
export interface DeleteCategoryRequest {
|
|
82
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* ID of the category to delete.
|
|
89
|
+
* @format GUID
|
|
90
|
+
*/
|
|
83
91
|
id: string | null;
|
|
84
92
|
/**
|
|
85
93
|
* Whether to delete all the services associated with the category.
|
|
@@ -89,11 +97,17 @@ export interface DeleteCategoryRequest {
|
|
|
89
97
|
deleteServices?: boolean | null;
|
|
90
98
|
}
|
|
91
99
|
export interface DeleteCategoryResponse {
|
|
92
|
-
/**
|
|
100
|
+
/**
|
|
101
|
+
* ID of the deleted category.
|
|
102
|
+
* @format GUID
|
|
103
|
+
*/
|
|
93
104
|
id?: string | null;
|
|
94
105
|
}
|
|
95
106
|
export interface BatchDeleteCategoryRequest {
|
|
96
|
-
/**
|
|
107
|
+
/**
|
|
108
|
+
* IDs of the categories to delete.
|
|
109
|
+
* @format GUID
|
|
110
|
+
*/
|
|
97
111
|
ids?: string[] | null;
|
|
98
112
|
}
|
|
99
113
|
export interface BatchDeleteCategoryResponse {
|
|
@@ -107,9 +121,15 @@ export interface BatchUpdateCategoryRequest {
|
|
|
107
121
|
export interface BatchUpdateCategoryResponse {
|
|
108
122
|
}
|
|
109
123
|
export interface MessageEnvelope {
|
|
110
|
-
/**
|
|
124
|
+
/**
|
|
125
|
+
* App instance ID.
|
|
126
|
+
* @format GUID
|
|
127
|
+
*/
|
|
111
128
|
instanceId?: string | null;
|
|
112
|
-
/**
|
|
129
|
+
/**
|
|
130
|
+
* Event type.
|
|
131
|
+
* @maxLength 150
|
|
132
|
+
*/
|
|
113
133
|
eventType?: string;
|
|
114
134
|
/** The identification type and identity data. */
|
|
115
135
|
identity?: IdentificationData;
|
|
@@ -117,26 +137,50 @@ export interface MessageEnvelope {
|
|
|
117
137
|
data?: string;
|
|
118
138
|
}
|
|
119
139
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
120
|
-
/**
|
|
140
|
+
/**
|
|
141
|
+
* ID of a site visitor that has not logged in to the site.
|
|
142
|
+
* @format GUID
|
|
143
|
+
*/
|
|
121
144
|
anonymousVisitorId?: string;
|
|
122
|
-
/**
|
|
145
|
+
/**
|
|
146
|
+
* ID of a site visitor that has logged in to the site.
|
|
147
|
+
* @format GUID
|
|
148
|
+
*/
|
|
123
149
|
memberId?: string;
|
|
124
|
-
/**
|
|
150
|
+
/**
|
|
151
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
152
|
+
* @format GUID
|
|
153
|
+
*/
|
|
125
154
|
wixUserId?: string;
|
|
126
|
-
/**
|
|
155
|
+
/**
|
|
156
|
+
* ID of an app.
|
|
157
|
+
* @format GUID
|
|
158
|
+
*/
|
|
127
159
|
appId?: string;
|
|
128
160
|
/** @readonly */
|
|
129
161
|
identityType?: WebhookIdentityType;
|
|
130
162
|
}
|
|
131
163
|
/** @oneof */
|
|
132
164
|
export interface IdentificationDataIdOneOf {
|
|
133
|
-
/**
|
|
165
|
+
/**
|
|
166
|
+
* ID of a site visitor that has not logged in to the site.
|
|
167
|
+
* @format GUID
|
|
168
|
+
*/
|
|
134
169
|
anonymousVisitorId?: string;
|
|
135
|
-
/**
|
|
170
|
+
/**
|
|
171
|
+
* ID of a site visitor that has logged in to the site.
|
|
172
|
+
* @format GUID
|
|
173
|
+
*/
|
|
136
174
|
memberId?: string;
|
|
137
|
-
/**
|
|
175
|
+
/**
|
|
176
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
177
|
+
* @format GUID
|
|
178
|
+
*/
|
|
138
179
|
wixUserId?: string;
|
|
139
|
-
/**
|
|
180
|
+
/**
|
|
181
|
+
* ID of an app.
|
|
182
|
+
* @format GUID
|
|
183
|
+
*/
|
|
140
184
|
appId?: string;
|
|
141
185
|
}
|
|
142
186
|
export declare enum WebhookIdentityType {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings-v1-category-categories.types.js","sourceRoot":"","sources":["../../../src/bookings-v1-category-categories.types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"bookings-v1-category-categories.types.js","sourceRoot":"","sources":["../../../src/bookings-v1-category-categories.types.ts"],"names":[],"mappings":"AAwBA,MAAM,CAAN,IAAY,MAKX;AALD,WAAY,MAAM;IAChB,gCAAgC;IAChC,6BAAmB,CAAA;IACnB,gCAAgC;IAChC,6BAAmB,CAAA;AACrB,CAAC,EALW,MAAM,KAAN,MAAM,QAKjB;AA6BD,MAAM,CAAN,IAAY,KAOX;AAPD,WAAY,KAAK;IACf,4BAA4B;IAC5B,4BAAmB,CAAA;IACnB,4BAA4B;IAC5B,4BAAmB,CAAA;IACnB,4BAA4B;IAC5B,4BAAmB,CAAA;AACrB,CAAC,EAPW,KAAK,KAAL,KAAK,QAOhB;AA2ID,MAAM,CAAN,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,KAAnB,mBAAmB,QAM9B"}
|
|
@@ -2,10 +2,14 @@
|
|
|
2
2
|
export interface Category {
|
|
3
3
|
/**
|
|
4
4
|
* Category ID.
|
|
5
|
+
* @format GUID
|
|
5
6
|
* @readonly
|
|
6
7
|
*/
|
|
7
8
|
_id?: string | null;
|
|
8
|
-
/**
|
|
9
|
+
/**
|
|
10
|
+
* Category name.
|
|
11
|
+
* @maxLength 500
|
|
12
|
+
*/
|
|
9
13
|
name?: string | null;
|
|
10
14
|
}
|
|
11
15
|
export declare enum Status {
|
|
@@ -19,6 +23,7 @@ export interface ListCategoryRequest {
|
|
|
19
23
|
* IDs of the categories to retrieve.
|
|
20
24
|
*
|
|
21
25
|
* Default: All categories are retrieved.
|
|
26
|
+
* @format GUID
|
|
22
27
|
*/
|
|
23
28
|
categoryIds?: string[];
|
|
24
29
|
}
|
|
@@ -64,7 +69,10 @@ export interface UpdateCategoryResponse {
|
|
|
64
69
|
category?: Category;
|
|
65
70
|
}
|
|
66
71
|
export interface DeleteCategoryRequest {
|
|
67
|
-
/**
|
|
72
|
+
/**
|
|
73
|
+
* ID of the category to delete.
|
|
74
|
+
* @format GUID
|
|
75
|
+
*/
|
|
68
76
|
_id: string | null;
|
|
69
77
|
/**
|
|
70
78
|
* Whether to delete all the services associated with the category.
|
|
@@ -74,11 +82,17 @@ export interface DeleteCategoryRequest {
|
|
|
74
82
|
deleteServices?: boolean | null;
|
|
75
83
|
}
|
|
76
84
|
export interface DeleteCategoryResponse {
|
|
77
|
-
/**
|
|
85
|
+
/**
|
|
86
|
+
* ID of the deleted category.
|
|
87
|
+
* @format GUID
|
|
88
|
+
*/
|
|
78
89
|
_id?: string | null;
|
|
79
90
|
}
|
|
80
91
|
export interface BatchDeleteCategoryRequest {
|
|
81
|
-
/**
|
|
92
|
+
/**
|
|
93
|
+
* IDs of the categories to delete.
|
|
94
|
+
* @format GUID
|
|
95
|
+
*/
|
|
82
96
|
ids?: string[] | null;
|
|
83
97
|
}
|
|
84
98
|
export interface BatchDeleteCategoryResponse {
|
|
@@ -92,9 +106,15 @@ export interface BatchUpdateCategoryRequest {
|
|
|
92
106
|
export interface BatchUpdateCategoryResponse {
|
|
93
107
|
}
|
|
94
108
|
export interface MessageEnvelope {
|
|
95
|
-
/**
|
|
109
|
+
/**
|
|
110
|
+
* App instance ID.
|
|
111
|
+
* @format GUID
|
|
112
|
+
*/
|
|
96
113
|
instanceId?: string | null;
|
|
97
|
-
/**
|
|
114
|
+
/**
|
|
115
|
+
* Event type.
|
|
116
|
+
* @maxLength 150
|
|
117
|
+
*/
|
|
98
118
|
eventType?: string;
|
|
99
119
|
/** The identification type and identity data. */
|
|
100
120
|
identity?: IdentificationData;
|
|
@@ -102,26 +122,50 @@ export interface MessageEnvelope {
|
|
|
102
122
|
data?: string;
|
|
103
123
|
}
|
|
104
124
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
105
|
-
/**
|
|
125
|
+
/**
|
|
126
|
+
* ID of a site visitor that has not logged in to the site.
|
|
127
|
+
* @format GUID
|
|
128
|
+
*/
|
|
106
129
|
anonymousVisitorId?: string;
|
|
107
|
-
/**
|
|
130
|
+
/**
|
|
131
|
+
* ID of a site visitor that has logged in to the site.
|
|
132
|
+
* @format GUID
|
|
133
|
+
*/
|
|
108
134
|
memberId?: string;
|
|
109
|
-
/**
|
|
135
|
+
/**
|
|
136
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
137
|
+
* @format GUID
|
|
138
|
+
*/
|
|
110
139
|
wixUserId?: string;
|
|
111
|
-
/**
|
|
140
|
+
/**
|
|
141
|
+
* ID of an app.
|
|
142
|
+
* @format GUID
|
|
143
|
+
*/
|
|
112
144
|
appId?: string;
|
|
113
145
|
/** @readonly */
|
|
114
146
|
identityType?: WebhookIdentityType;
|
|
115
147
|
}
|
|
116
148
|
/** @oneof */
|
|
117
149
|
export interface IdentificationDataIdOneOf {
|
|
118
|
-
/**
|
|
150
|
+
/**
|
|
151
|
+
* ID of a site visitor that has not logged in to the site.
|
|
152
|
+
* @format GUID
|
|
153
|
+
*/
|
|
119
154
|
anonymousVisitorId?: string;
|
|
120
|
-
/**
|
|
155
|
+
/**
|
|
156
|
+
* ID of a site visitor that has logged in to the site.
|
|
157
|
+
* @format GUID
|
|
158
|
+
*/
|
|
121
159
|
memberId?: string;
|
|
122
|
-
/**
|
|
160
|
+
/**
|
|
161
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
162
|
+
* @format GUID
|
|
163
|
+
*/
|
|
123
164
|
wixUserId?: string;
|
|
124
|
-
/**
|
|
165
|
+
/**
|
|
166
|
+
* ID of an app.
|
|
167
|
+
* @format GUID
|
|
168
|
+
*/
|
|
125
169
|
appId?: string;
|
|
126
170
|
}
|
|
127
171
|
export declare enum WebhookIdentityType {
|
|
@@ -144,9 +188,15 @@ export interface UpdateCategoryResponseNonNullableFields {
|
|
|
144
188
|
category?: CategoryNonNullableFields;
|
|
145
189
|
}
|
|
146
190
|
export interface BaseEventMetadata {
|
|
147
|
-
/**
|
|
191
|
+
/**
|
|
192
|
+
* App instance ID.
|
|
193
|
+
* @format GUID
|
|
194
|
+
*/
|
|
148
195
|
instanceId?: string | null;
|
|
149
|
-
/**
|
|
196
|
+
/**
|
|
197
|
+
* Event type.
|
|
198
|
+
* @maxLength 150
|
|
199
|
+
*/
|
|
150
200
|
eventType?: string;
|
|
151
201
|
/** The identification type and identity data. */
|
|
152
202
|
identity?: IdentificationData;
|
|
@@ -203,6 +253,7 @@ export interface ListCategoriesOptions {
|
|
|
203
253
|
* IDs of the categories to retrieve.
|
|
204
254
|
*
|
|
205
255
|
* Default: All categories are retrieved.
|
|
256
|
+
* @format GUID
|
|
206
257
|
*/
|
|
207
258
|
categoryIds?: string[];
|
|
208
259
|
}
|
|
@@ -249,10 +300,14 @@ export declare function updateCategory(_id: string | null, category: UpdateCateg
|
|
|
249
300
|
export interface UpdateCategory {
|
|
250
301
|
/**
|
|
251
302
|
* Category ID.
|
|
303
|
+
* @format GUID
|
|
252
304
|
* @readonly
|
|
253
305
|
*/
|
|
254
306
|
_id?: string | null;
|
|
255
|
-
/**
|
|
307
|
+
/**
|
|
308
|
+
* Category name.
|
|
309
|
+
* @maxLength 500
|
|
310
|
+
*/
|
|
256
311
|
name?: string | null;
|
|
257
312
|
}
|
|
258
313
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings-v1-category-categories.universal.js","sourceRoot":"","sources":["../../../src/bookings-v1-category-categories.universal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,IAAI,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACvF,OAAO,EACL,qCAAqC,EACrC,uCAAuC,GACxC,MAAM,yCAAyC,CAAC;AAEjD,OAAO,KAAK,+BAA+B,MAAM,2CAA2C,CAAC;
|
|
1
|
+
{"version":3,"file":"bookings-v1-category-categories.universal.js","sourceRoot":"","sources":["../../../src/bookings-v1-category-categories.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,10 +2,14 @@
|
|
|
2
2
|
export interface Category {
|
|
3
3
|
/**
|
|
4
4
|
* Category ID.
|
|
5
|
+
* @format GUID
|
|
5
6
|
* @readonly
|
|
6
7
|
*/
|
|
7
8
|
id?: string | null;
|
|
8
|
-
/**
|
|
9
|
+
/**
|
|
10
|
+
* Category name.
|
|
11
|
+
* @maxLength 500
|
|
12
|
+
*/
|
|
9
13
|
name?: string | null;
|
|
10
14
|
/**
|
|
11
15
|
* Category status.
|
|
@@ -28,6 +32,7 @@ export interface ListCategoryRequest {
|
|
|
28
32
|
* IDs of the categories to retrieve.
|
|
29
33
|
*
|
|
30
34
|
* Default: All categories are retrieved.
|
|
35
|
+
* @format GUID
|
|
31
36
|
*/
|
|
32
37
|
categoryIds?: string[];
|
|
33
38
|
/**
|
|
@@ -79,7 +84,10 @@ export interface UpdateCategoryResponse {
|
|
|
79
84
|
category?: Category;
|
|
80
85
|
}
|
|
81
86
|
export interface DeleteCategoryRequest {
|
|
82
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* ID of the category to delete.
|
|
89
|
+
* @format GUID
|
|
90
|
+
*/
|
|
83
91
|
id: string | null;
|
|
84
92
|
/**
|
|
85
93
|
* Whether to delete all the services associated with the category.
|
|
@@ -89,11 +97,17 @@ export interface DeleteCategoryRequest {
|
|
|
89
97
|
deleteServices?: boolean | null;
|
|
90
98
|
}
|
|
91
99
|
export interface DeleteCategoryResponse {
|
|
92
|
-
/**
|
|
100
|
+
/**
|
|
101
|
+
* ID of the deleted category.
|
|
102
|
+
* @format GUID
|
|
103
|
+
*/
|
|
93
104
|
id?: string | null;
|
|
94
105
|
}
|
|
95
106
|
export interface BatchDeleteCategoryRequest {
|
|
96
|
-
/**
|
|
107
|
+
/**
|
|
108
|
+
* IDs of the categories to delete.
|
|
109
|
+
* @format GUID
|
|
110
|
+
*/
|
|
97
111
|
ids?: string[] | null;
|
|
98
112
|
}
|
|
99
113
|
export interface BatchDeleteCategoryResponse {
|
|
@@ -107,9 +121,15 @@ export interface BatchUpdateCategoryRequest {
|
|
|
107
121
|
export interface BatchUpdateCategoryResponse {
|
|
108
122
|
}
|
|
109
123
|
export interface MessageEnvelope {
|
|
110
|
-
/**
|
|
124
|
+
/**
|
|
125
|
+
* App instance ID.
|
|
126
|
+
* @format GUID
|
|
127
|
+
*/
|
|
111
128
|
instanceId?: string | null;
|
|
112
|
-
/**
|
|
129
|
+
/**
|
|
130
|
+
* Event type.
|
|
131
|
+
* @maxLength 150
|
|
132
|
+
*/
|
|
113
133
|
eventType?: string;
|
|
114
134
|
/** The identification type and identity data. */
|
|
115
135
|
identity?: IdentificationData;
|
|
@@ -117,26 +137,50 @@ export interface MessageEnvelope {
|
|
|
117
137
|
data?: string;
|
|
118
138
|
}
|
|
119
139
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
120
|
-
/**
|
|
140
|
+
/**
|
|
141
|
+
* ID of a site visitor that has not logged in to the site.
|
|
142
|
+
* @format GUID
|
|
143
|
+
*/
|
|
121
144
|
anonymousVisitorId?: string;
|
|
122
|
-
/**
|
|
145
|
+
/**
|
|
146
|
+
* ID of a site visitor that has logged in to the site.
|
|
147
|
+
* @format GUID
|
|
148
|
+
*/
|
|
123
149
|
memberId?: string;
|
|
124
|
-
/**
|
|
150
|
+
/**
|
|
151
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
152
|
+
* @format GUID
|
|
153
|
+
*/
|
|
125
154
|
wixUserId?: string;
|
|
126
|
-
/**
|
|
155
|
+
/**
|
|
156
|
+
* ID of an app.
|
|
157
|
+
* @format GUID
|
|
158
|
+
*/
|
|
127
159
|
appId?: string;
|
|
128
160
|
/** @readonly */
|
|
129
161
|
identityType?: WebhookIdentityType;
|
|
130
162
|
}
|
|
131
163
|
/** @oneof */
|
|
132
164
|
export interface IdentificationDataIdOneOf {
|
|
133
|
-
/**
|
|
165
|
+
/**
|
|
166
|
+
* ID of a site visitor that has not logged in to the site.
|
|
167
|
+
* @format GUID
|
|
168
|
+
*/
|
|
134
169
|
anonymousVisitorId?: string;
|
|
135
|
-
/**
|
|
170
|
+
/**
|
|
171
|
+
* ID of a site visitor that has logged in to the site.
|
|
172
|
+
* @format GUID
|
|
173
|
+
*/
|
|
136
174
|
memberId?: string;
|
|
137
|
-
/**
|
|
175
|
+
/**
|
|
176
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
177
|
+
* @format GUID
|
|
178
|
+
*/
|
|
138
179
|
wixUserId?: string;
|
|
139
|
-
/**
|
|
180
|
+
/**
|
|
181
|
+
* ID of an app.
|
|
182
|
+
* @format GUID
|
|
183
|
+
*/
|
|
140
184
|
appId?: string;
|
|
141
185
|
}
|
|
142
186
|
export declare enum WebhookIdentityType {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings-v1-category-categories.types.js","sourceRoot":"","sources":["../../../../src/bookings-v1-category-categories.types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"bookings-v1-category-categories.types.js","sourceRoot":"","sources":["../../../../src/bookings-v1-category-categories.types.ts"],"names":[],"mappings":";;;AAwBA,IAAY,MAKX;AALD,WAAY,MAAM;IAChB,gCAAgC;IAChC,6BAAmB,CAAA;IACnB,gCAAgC;IAChC,6BAAmB,CAAA;AACrB,CAAC,EALW,MAAM,sBAAN,MAAM,QAKjB;AA6BD,IAAY,KAOX;AAPD,WAAY,KAAK;IACf,4BAA4B;IAC5B,4BAAmB,CAAA;IACnB,4BAA4B;IAC5B,4BAAmB,CAAA;IACnB,4BAA4B;IAC5B,4BAAmB,CAAA;AACrB,CAAC,EAPW,KAAK,qBAAL,KAAK,QAOhB;AA2ID,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B"}
|
|
@@ -2,10 +2,14 @@
|
|
|
2
2
|
export interface Category {
|
|
3
3
|
/**
|
|
4
4
|
* Category ID.
|
|
5
|
+
* @format GUID
|
|
5
6
|
* @readonly
|
|
6
7
|
*/
|
|
7
8
|
_id?: string | null;
|
|
8
|
-
/**
|
|
9
|
+
/**
|
|
10
|
+
* Category name.
|
|
11
|
+
* @maxLength 500
|
|
12
|
+
*/
|
|
9
13
|
name?: string | null;
|
|
10
14
|
/**
|
|
11
15
|
* @internal
|
|
@@ -29,6 +33,7 @@ export interface ListCategoryRequest {
|
|
|
29
33
|
* IDs of the categories to retrieve.
|
|
30
34
|
*
|
|
31
35
|
* Default: All categories are retrieved.
|
|
36
|
+
* @format GUID
|
|
32
37
|
*/
|
|
33
38
|
categoryIds?: string[];
|
|
34
39
|
/**
|
|
@@ -78,7 +83,10 @@ export interface UpdateCategoryResponse {
|
|
|
78
83
|
category?: Category;
|
|
79
84
|
}
|
|
80
85
|
export interface DeleteCategoryRequest {
|
|
81
|
-
/**
|
|
86
|
+
/**
|
|
87
|
+
* ID of the category to delete.
|
|
88
|
+
* @format GUID
|
|
89
|
+
*/
|
|
82
90
|
_id: string | null;
|
|
83
91
|
/**
|
|
84
92
|
* Whether to delete all the services associated with the category.
|
|
@@ -88,11 +96,17 @@ export interface DeleteCategoryRequest {
|
|
|
88
96
|
deleteServices?: boolean | null;
|
|
89
97
|
}
|
|
90
98
|
export interface DeleteCategoryResponse {
|
|
91
|
-
/**
|
|
99
|
+
/**
|
|
100
|
+
* ID of the deleted category.
|
|
101
|
+
* @format GUID
|
|
102
|
+
*/
|
|
92
103
|
_id?: string | null;
|
|
93
104
|
}
|
|
94
105
|
export interface BatchDeleteCategoryRequest {
|
|
95
|
-
/**
|
|
106
|
+
/**
|
|
107
|
+
* IDs of the categories to delete.
|
|
108
|
+
* @format GUID
|
|
109
|
+
*/
|
|
96
110
|
ids?: string[] | null;
|
|
97
111
|
}
|
|
98
112
|
export interface BatchDeleteCategoryResponse {
|
|
@@ -106,9 +120,15 @@ export interface BatchUpdateCategoryRequest {
|
|
|
106
120
|
export interface BatchUpdateCategoryResponse {
|
|
107
121
|
}
|
|
108
122
|
export interface MessageEnvelope {
|
|
109
|
-
/**
|
|
123
|
+
/**
|
|
124
|
+
* App instance ID.
|
|
125
|
+
* @format GUID
|
|
126
|
+
*/
|
|
110
127
|
instanceId?: string | null;
|
|
111
|
-
/**
|
|
128
|
+
/**
|
|
129
|
+
* Event type.
|
|
130
|
+
* @maxLength 150
|
|
131
|
+
*/
|
|
112
132
|
eventType?: string;
|
|
113
133
|
/** The identification type and identity data. */
|
|
114
134
|
identity?: IdentificationData;
|
|
@@ -116,26 +136,50 @@ export interface MessageEnvelope {
|
|
|
116
136
|
data?: string;
|
|
117
137
|
}
|
|
118
138
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
119
|
-
/**
|
|
139
|
+
/**
|
|
140
|
+
* ID of a site visitor that has not logged in to the site.
|
|
141
|
+
* @format GUID
|
|
142
|
+
*/
|
|
120
143
|
anonymousVisitorId?: string;
|
|
121
|
-
/**
|
|
144
|
+
/**
|
|
145
|
+
* ID of a site visitor that has logged in to the site.
|
|
146
|
+
* @format GUID
|
|
147
|
+
*/
|
|
122
148
|
memberId?: string;
|
|
123
|
-
/**
|
|
149
|
+
/**
|
|
150
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
151
|
+
* @format GUID
|
|
152
|
+
*/
|
|
124
153
|
wixUserId?: string;
|
|
125
|
-
/**
|
|
154
|
+
/**
|
|
155
|
+
* ID of an app.
|
|
156
|
+
* @format GUID
|
|
157
|
+
*/
|
|
126
158
|
appId?: string;
|
|
127
159
|
/** @readonly */
|
|
128
160
|
identityType?: WebhookIdentityType;
|
|
129
161
|
}
|
|
130
162
|
/** @oneof */
|
|
131
163
|
export interface IdentificationDataIdOneOf {
|
|
132
|
-
/**
|
|
164
|
+
/**
|
|
165
|
+
* ID of a site visitor that has not logged in to the site.
|
|
166
|
+
* @format GUID
|
|
167
|
+
*/
|
|
133
168
|
anonymousVisitorId?: string;
|
|
134
|
-
/**
|
|
169
|
+
/**
|
|
170
|
+
* ID of a site visitor that has logged in to the site.
|
|
171
|
+
* @format GUID
|
|
172
|
+
*/
|
|
135
173
|
memberId?: string;
|
|
136
|
-
/**
|
|
174
|
+
/**
|
|
175
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
176
|
+
* @format GUID
|
|
177
|
+
*/
|
|
137
178
|
wixUserId?: string;
|
|
138
|
-
/**
|
|
179
|
+
/**
|
|
180
|
+
* ID of an app.
|
|
181
|
+
* @format GUID
|
|
182
|
+
*/
|
|
139
183
|
appId?: string;
|
|
140
184
|
}
|
|
141
185
|
export declare enum WebhookIdentityType {
|
|
@@ -158,9 +202,15 @@ export interface UpdateCategoryResponseNonNullableFields {
|
|
|
158
202
|
category?: CategoryNonNullableFields;
|
|
159
203
|
}
|
|
160
204
|
export interface BaseEventMetadata {
|
|
161
|
-
/**
|
|
205
|
+
/**
|
|
206
|
+
* App instance ID.
|
|
207
|
+
* @format GUID
|
|
208
|
+
*/
|
|
162
209
|
instanceId?: string | null;
|
|
163
|
-
/**
|
|
210
|
+
/**
|
|
211
|
+
* Event type.
|
|
212
|
+
* @maxLength 150
|
|
213
|
+
*/
|
|
164
214
|
eventType?: string;
|
|
165
215
|
/** The identification type and identity data. */
|
|
166
216
|
identity?: IdentificationData;
|
|
@@ -217,6 +267,7 @@ export interface ListCategoriesOptions {
|
|
|
217
267
|
* IDs of the categories to retrieve.
|
|
218
268
|
*
|
|
219
269
|
* Default: All categories are retrieved.
|
|
270
|
+
* @format GUID
|
|
220
271
|
*/
|
|
221
272
|
categoryIds?: string[];
|
|
222
273
|
/** @internal */
|
|
@@ -265,10 +316,14 @@ export declare function updateCategory(_id: string | null, category: UpdateCateg
|
|
|
265
316
|
export interface UpdateCategory {
|
|
266
317
|
/**
|
|
267
318
|
* Category ID.
|
|
319
|
+
* @format GUID
|
|
268
320
|
* @readonly
|
|
269
321
|
*/
|
|
270
322
|
_id?: string | null;
|
|
271
|
-
/**
|
|
323
|
+
/**
|
|
324
|
+
* Category name.
|
|
325
|
+
* @maxLength 500
|
|
326
|
+
*/
|
|
272
327
|
name?: string | null;
|
|
273
328
|
/**
|
|
274
329
|
* @internal
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings-v1-category-categories.universal.js","sourceRoot":"","sources":["../../../../src/bookings-v1-category-categories.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,oFAGiD;AAEjD,2GAA6F;
|
|
1
|
+
{"version":3,"file":"bookings-v1-category-categories.universal.js","sourceRoot":"","sources":["../../../../src/bookings-v1-category-categories.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,10 +2,14 @@
|
|
|
2
2
|
export interface Category {
|
|
3
3
|
/**
|
|
4
4
|
* Category ID.
|
|
5
|
+
* @format GUID
|
|
5
6
|
* @readonly
|
|
6
7
|
*/
|
|
7
8
|
id?: string | null;
|
|
8
|
-
/**
|
|
9
|
+
/**
|
|
10
|
+
* Category name.
|
|
11
|
+
* @maxLength 500
|
|
12
|
+
*/
|
|
9
13
|
name?: string | null;
|
|
10
14
|
/**
|
|
11
15
|
* Category status.
|
|
@@ -28,6 +32,7 @@ export interface ListCategoryRequest {
|
|
|
28
32
|
* IDs of the categories to retrieve.
|
|
29
33
|
*
|
|
30
34
|
* Default: All categories are retrieved.
|
|
35
|
+
* @format GUID
|
|
31
36
|
*/
|
|
32
37
|
categoryIds?: string[];
|
|
33
38
|
/**
|
|
@@ -79,7 +84,10 @@ export interface UpdateCategoryResponse {
|
|
|
79
84
|
category?: Category;
|
|
80
85
|
}
|
|
81
86
|
export interface DeleteCategoryRequest {
|
|
82
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* ID of the category to delete.
|
|
89
|
+
* @format GUID
|
|
90
|
+
*/
|
|
83
91
|
id: string | null;
|
|
84
92
|
/**
|
|
85
93
|
* Whether to delete all the services associated with the category.
|
|
@@ -89,11 +97,17 @@ export interface DeleteCategoryRequest {
|
|
|
89
97
|
deleteServices?: boolean | null;
|
|
90
98
|
}
|
|
91
99
|
export interface DeleteCategoryResponse {
|
|
92
|
-
/**
|
|
100
|
+
/**
|
|
101
|
+
* ID of the deleted category.
|
|
102
|
+
* @format GUID
|
|
103
|
+
*/
|
|
93
104
|
id?: string | null;
|
|
94
105
|
}
|
|
95
106
|
export interface BatchDeleteCategoryRequest {
|
|
96
|
-
/**
|
|
107
|
+
/**
|
|
108
|
+
* IDs of the categories to delete.
|
|
109
|
+
* @format GUID
|
|
110
|
+
*/
|
|
97
111
|
ids?: string[] | null;
|
|
98
112
|
}
|
|
99
113
|
export interface BatchDeleteCategoryResponse {
|
|
@@ -107,9 +121,15 @@ export interface BatchUpdateCategoryRequest {
|
|
|
107
121
|
export interface BatchUpdateCategoryResponse {
|
|
108
122
|
}
|
|
109
123
|
export interface MessageEnvelope {
|
|
110
|
-
/**
|
|
124
|
+
/**
|
|
125
|
+
* App instance ID.
|
|
126
|
+
* @format GUID
|
|
127
|
+
*/
|
|
111
128
|
instanceId?: string | null;
|
|
112
|
-
/**
|
|
129
|
+
/**
|
|
130
|
+
* Event type.
|
|
131
|
+
* @maxLength 150
|
|
132
|
+
*/
|
|
113
133
|
eventType?: string;
|
|
114
134
|
/** The identification type and identity data. */
|
|
115
135
|
identity?: IdentificationData;
|
|
@@ -117,26 +137,50 @@ export interface MessageEnvelope {
|
|
|
117
137
|
data?: string;
|
|
118
138
|
}
|
|
119
139
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
120
|
-
/**
|
|
140
|
+
/**
|
|
141
|
+
* ID of a site visitor that has not logged in to the site.
|
|
142
|
+
* @format GUID
|
|
143
|
+
*/
|
|
121
144
|
anonymousVisitorId?: string;
|
|
122
|
-
/**
|
|
145
|
+
/**
|
|
146
|
+
* ID of a site visitor that has logged in to the site.
|
|
147
|
+
* @format GUID
|
|
148
|
+
*/
|
|
123
149
|
memberId?: string;
|
|
124
|
-
/**
|
|
150
|
+
/**
|
|
151
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
152
|
+
* @format GUID
|
|
153
|
+
*/
|
|
125
154
|
wixUserId?: string;
|
|
126
|
-
/**
|
|
155
|
+
/**
|
|
156
|
+
* ID of an app.
|
|
157
|
+
* @format GUID
|
|
158
|
+
*/
|
|
127
159
|
appId?: string;
|
|
128
160
|
/** @readonly */
|
|
129
161
|
identityType?: WebhookIdentityType;
|
|
130
162
|
}
|
|
131
163
|
/** @oneof */
|
|
132
164
|
export interface IdentificationDataIdOneOf {
|
|
133
|
-
/**
|
|
165
|
+
/**
|
|
166
|
+
* ID of a site visitor that has not logged in to the site.
|
|
167
|
+
* @format GUID
|
|
168
|
+
*/
|
|
134
169
|
anonymousVisitorId?: string;
|
|
135
|
-
/**
|
|
170
|
+
/**
|
|
171
|
+
* ID of a site visitor that has logged in to the site.
|
|
172
|
+
* @format GUID
|
|
173
|
+
*/
|
|
136
174
|
memberId?: string;
|
|
137
|
-
/**
|
|
175
|
+
/**
|
|
176
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
177
|
+
* @format GUID
|
|
178
|
+
*/
|
|
138
179
|
wixUserId?: string;
|
|
139
|
-
/**
|
|
180
|
+
/**
|
|
181
|
+
* ID of an app.
|
|
182
|
+
* @format GUID
|
|
183
|
+
*/
|
|
140
184
|
appId?: string;
|
|
141
185
|
}
|
|
142
186
|
export declare enum WebhookIdentityType {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings-v1-category-categories.types.js","sourceRoot":"","sources":["../../../../src/bookings-v1-category-categories.types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"bookings-v1-category-categories.types.js","sourceRoot":"","sources":["../../../../src/bookings-v1-category-categories.types.ts"],"names":[],"mappings":"AAwBA,MAAM,CAAN,IAAY,MAKX;AALD,WAAY,MAAM;IAChB,gCAAgC;IAChC,6BAAmB,CAAA;IACnB,gCAAgC;IAChC,6BAAmB,CAAA;AACrB,CAAC,EALW,MAAM,KAAN,MAAM,QAKjB;AA6BD,MAAM,CAAN,IAAY,KAOX;AAPD,WAAY,KAAK;IACf,4BAA4B;IAC5B,4BAAmB,CAAA;IACnB,4BAA4B;IAC5B,4BAAmB,CAAA;IACnB,4BAA4B;IAC5B,4BAAmB,CAAA;AACrB,CAAC,EAPW,KAAK,KAAL,KAAK,QAOhB;AA2ID,MAAM,CAAN,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,KAAnB,mBAAmB,QAM9B"}
|
|
@@ -2,10 +2,14 @@
|
|
|
2
2
|
export interface Category {
|
|
3
3
|
/**
|
|
4
4
|
* Category ID.
|
|
5
|
+
* @format GUID
|
|
5
6
|
* @readonly
|
|
6
7
|
*/
|
|
7
8
|
_id?: string | null;
|
|
8
|
-
/**
|
|
9
|
+
/**
|
|
10
|
+
* Category name.
|
|
11
|
+
* @maxLength 500
|
|
12
|
+
*/
|
|
9
13
|
name?: string | null;
|
|
10
14
|
/**
|
|
11
15
|
* @internal
|
|
@@ -29,6 +33,7 @@ export interface ListCategoryRequest {
|
|
|
29
33
|
* IDs of the categories to retrieve.
|
|
30
34
|
*
|
|
31
35
|
* Default: All categories are retrieved.
|
|
36
|
+
* @format GUID
|
|
32
37
|
*/
|
|
33
38
|
categoryIds?: string[];
|
|
34
39
|
/**
|
|
@@ -78,7 +83,10 @@ export interface UpdateCategoryResponse {
|
|
|
78
83
|
category?: Category;
|
|
79
84
|
}
|
|
80
85
|
export interface DeleteCategoryRequest {
|
|
81
|
-
/**
|
|
86
|
+
/**
|
|
87
|
+
* ID of the category to delete.
|
|
88
|
+
* @format GUID
|
|
89
|
+
*/
|
|
82
90
|
_id: string | null;
|
|
83
91
|
/**
|
|
84
92
|
* Whether to delete all the services associated with the category.
|
|
@@ -88,11 +96,17 @@ export interface DeleteCategoryRequest {
|
|
|
88
96
|
deleteServices?: boolean | null;
|
|
89
97
|
}
|
|
90
98
|
export interface DeleteCategoryResponse {
|
|
91
|
-
/**
|
|
99
|
+
/**
|
|
100
|
+
* ID of the deleted category.
|
|
101
|
+
* @format GUID
|
|
102
|
+
*/
|
|
92
103
|
_id?: string | null;
|
|
93
104
|
}
|
|
94
105
|
export interface BatchDeleteCategoryRequest {
|
|
95
|
-
/**
|
|
106
|
+
/**
|
|
107
|
+
* IDs of the categories to delete.
|
|
108
|
+
* @format GUID
|
|
109
|
+
*/
|
|
96
110
|
ids?: string[] | null;
|
|
97
111
|
}
|
|
98
112
|
export interface BatchDeleteCategoryResponse {
|
|
@@ -106,9 +120,15 @@ export interface BatchUpdateCategoryRequest {
|
|
|
106
120
|
export interface BatchUpdateCategoryResponse {
|
|
107
121
|
}
|
|
108
122
|
export interface MessageEnvelope {
|
|
109
|
-
/**
|
|
123
|
+
/**
|
|
124
|
+
* App instance ID.
|
|
125
|
+
* @format GUID
|
|
126
|
+
*/
|
|
110
127
|
instanceId?: string | null;
|
|
111
|
-
/**
|
|
128
|
+
/**
|
|
129
|
+
* Event type.
|
|
130
|
+
* @maxLength 150
|
|
131
|
+
*/
|
|
112
132
|
eventType?: string;
|
|
113
133
|
/** The identification type and identity data. */
|
|
114
134
|
identity?: IdentificationData;
|
|
@@ -116,26 +136,50 @@ export interface MessageEnvelope {
|
|
|
116
136
|
data?: string;
|
|
117
137
|
}
|
|
118
138
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
119
|
-
/**
|
|
139
|
+
/**
|
|
140
|
+
* ID of a site visitor that has not logged in to the site.
|
|
141
|
+
* @format GUID
|
|
142
|
+
*/
|
|
120
143
|
anonymousVisitorId?: string;
|
|
121
|
-
/**
|
|
144
|
+
/**
|
|
145
|
+
* ID of a site visitor that has logged in to the site.
|
|
146
|
+
* @format GUID
|
|
147
|
+
*/
|
|
122
148
|
memberId?: string;
|
|
123
|
-
/**
|
|
149
|
+
/**
|
|
150
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
151
|
+
* @format GUID
|
|
152
|
+
*/
|
|
124
153
|
wixUserId?: string;
|
|
125
|
-
/**
|
|
154
|
+
/**
|
|
155
|
+
* ID of an app.
|
|
156
|
+
* @format GUID
|
|
157
|
+
*/
|
|
126
158
|
appId?: string;
|
|
127
159
|
/** @readonly */
|
|
128
160
|
identityType?: WebhookIdentityType;
|
|
129
161
|
}
|
|
130
162
|
/** @oneof */
|
|
131
163
|
export interface IdentificationDataIdOneOf {
|
|
132
|
-
/**
|
|
164
|
+
/**
|
|
165
|
+
* ID of a site visitor that has not logged in to the site.
|
|
166
|
+
* @format GUID
|
|
167
|
+
*/
|
|
133
168
|
anonymousVisitorId?: string;
|
|
134
|
-
/**
|
|
169
|
+
/**
|
|
170
|
+
* ID of a site visitor that has logged in to the site.
|
|
171
|
+
* @format GUID
|
|
172
|
+
*/
|
|
135
173
|
memberId?: string;
|
|
136
|
-
/**
|
|
174
|
+
/**
|
|
175
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
176
|
+
* @format GUID
|
|
177
|
+
*/
|
|
137
178
|
wixUserId?: string;
|
|
138
|
-
/**
|
|
179
|
+
/**
|
|
180
|
+
* ID of an app.
|
|
181
|
+
* @format GUID
|
|
182
|
+
*/
|
|
139
183
|
appId?: string;
|
|
140
184
|
}
|
|
141
185
|
export declare enum WebhookIdentityType {
|
|
@@ -158,9 +202,15 @@ export interface UpdateCategoryResponseNonNullableFields {
|
|
|
158
202
|
category?: CategoryNonNullableFields;
|
|
159
203
|
}
|
|
160
204
|
export interface BaseEventMetadata {
|
|
161
|
-
/**
|
|
205
|
+
/**
|
|
206
|
+
* App instance ID.
|
|
207
|
+
* @format GUID
|
|
208
|
+
*/
|
|
162
209
|
instanceId?: string | null;
|
|
163
|
-
/**
|
|
210
|
+
/**
|
|
211
|
+
* Event type.
|
|
212
|
+
* @maxLength 150
|
|
213
|
+
*/
|
|
164
214
|
eventType?: string;
|
|
165
215
|
/** The identification type and identity data. */
|
|
166
216
|
identity?: IdentificationData;
|
|
@@ -217,6 +267,7 @@ export interface ListCategoriesOptions {
|
|
|
217
267
|
* IDs of the categories to retrieve.
|
|
218
268
|
*
|
|
219
269
|
* Default: All categories are retrieved.
|
|
270
|
+
* @format GUID
|
|
220
271
|
*/
|
|
221
272
|
categoryIds?: string[];
|
|
222
273
|
/** @internal */
|
|
@@ -265,10 +316,14 @@ export declare function updateCategory(_id: string | null, category: UpdateCateg
|
|
|
265
316
|
export interface UpdateCategory {
|
|
266
317
|
/**
|
|
267
318
|
* Category ID.
|
|
319
|
+
* @format GUID
|
|
268
320
|
* @readonly
|
|
269
321
|
*/
|
|
270
322
|
_id?: string | null;
|
|
271
|
-
/**
|
|
323
|
+
/**
|
|
324
|
+
* Category name.
|
|
325
|
+
* @maxLength 500
|
|
326
|
+
*/
|
|
272
327
|
name?: string | null;
|
|
273
328
|
/**
|
|
274
329
|
* @internal
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings-v1-category-categories.universal.js","sourceRoot":"","sources":["../../../../src/bookings-v1-category-categories.universal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,IAAI,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACvF,OAAO,EACL,qCAAqC,EACrC,uCAAuC,GACxC,MAAM,yCAAyC,CAAC;AAEjD,OAAO,KAAK,+BAA+B,MAAM,2CAA2C,CAAC;
|
|
1
|
+
{"version":3,"file":"bookings-v1-category-categories.universal.js","sourceRoot":"","sources":["../../../../src/bookings-v1-category-categories.universal.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_bookings_categories",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": "wix.bookings.v1.category"
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "126d391c1681522cd93b42449e1dc674ae39a88b537c1c84d641c87e"
|
|
52
52
|
}
|