@wix/auto_sdk_bookings_resource-types 1.0.3 → 1.0.5

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.
Files changed (17) hide show
  1. package/build/cjs/src/bookings-resources-v2-resource-type-resource-types.types.d.ts +76 -17
  2. package/build/cjs/src/bookings-resources-v2-resource-type-resource-types.types.js.map +1 -1
  3. package/build/cjs/src/bookings-resources-v2-resource-type-resource-types.universal.d.ts +87 -19
  4. package/build/cjs/src/bookings-resources-v2-resource-type-resource-types.universal.js.map +1 -1
  5. package/build/es/src/bookings-resources-v2-resource-type-resource-types.types.d.ts +76 -17
  6. package/build/es/src/bookings-resources-v2-resource-type-resource-types.types.js.map +1 -1
  7. package/build/es/src/bookings-resources-v2-resource-type-resource-types.universal.d.ts +87 -19
  8. package/build/es/src/bookings-resources-v2-resource-type-resource-types.universal.js.map +1 -1
  9. package/build/internal/cjs/src/bookings-resources-v2-resource-type-resource-types.types.d.ts +76 -17
  10. package/build/internal/cjs/src/bookings-resources-v2-resource-type-resource-types.types.js.map +1 -1
  11. package/build/internal/cjs/src/bookings-resources-v2-resource-type-resource-types.universal.d.ts +87 -19
  12. package/build/internal/cjs/src/bookings-resources-v2-resource-type-resource-types.universal.js.map +1 -1
  13. package/build/internal/es/src/bookings-resources-v2-resource-type-resource-types.types.d.ts +76 -17
  14. package/build/internal/es/src/bookings-resources-v2-resource-type-resource-types.types.js.map +1 -1
  15. package/build/internal/es/src/bookings-resources-v2-resource-type-resource-types.universal.d.ts +87 -19
  16. package/build/internal/es/src/bookings-resources-v2-resource-type-resource-types.universal.js.map +1 -1
  17. package/package.json +4 -4
@@ -9,6 +9,7 @@
9
9
  export interface ResourceType {
10
10
  /**
11
11
  * Resource type ID.
12
+ * @format GUID
12
13
  * @readonly
13
14
  */
14
15
  id?: string | null;
@@ -32,6 +33,8 @@ export interface ResourceType {
32
33
  /**
33
34
  * Name of the resource type. For example, `meeting room`. The name must be
34
35
  * unique per site.
36
+ * @maxLength 40
37
+ * @minLength 1
35
38
  */
36
39
  name?: string | null;
37
40
  /** Extensions enabling users to save custom data related to the resource type. */
@@ -72,7 +75,11 @@ export interface ResourceCounts {
72
75
  distinctLocationIds?: DistinctLocationIds;
73
76
  }
74
77
  export interface DistinctLocationIds {
75
- /** IDs of the business locations with a resource connected to the type. */
78
+ /**
79
+ * IDs of the business locations with a resource connected to the type.
80
+ * @format GUID
81
+ * @maxSize 50
82
+ */
76
83
  values?: string[];
77
84
  }
78
85
  export interface ExtendedFields {
@@ -120,6 +127,7 @@ export interface SpecificLocation {
120
127
  * Not returned, if the resource is available in either all business locations
121
128
  * or in no business location.
122
129
  * You can specify up to 5 business locations.
130
+ * @maxSize 5
123
131
  */
124
132
  businessLocations?: BusinessLocation[];
125
133
  }
@@ -127,6 +135,7 @@ export interface BusinessLocation {
127
135
  /**
128
136
  * ID of the business *location*
129
137
  * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/locations/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/locations/introduction)).
138
+ * @format GUID
130
139
  */
131
140
  locationId?: string | null;
132
141
  }
@@ -145,7 +154,10 @@ export declare enum CreateResourceTypeErrors {
145
154
  FAILED_TO_CREATE_RESOURCES = "FAILED_TO_CREATE_RESOURCES"
146
155
  }
147
156
  export interface GetResourceTypeRequest {
148
- /** ID of the resource type to retrieve. */
157
+ /**
158
+ * ID of the resource type to retrieve.
159
+ * @format GUID
160
+ */
149
161
  resourceTypeId: string;
150
162
  }
151
163
  export interface GetResourceTypeResponse {
@@ -161,7 +173,10 @@ export interface UpdateResourceTypeResponse {
161
173
  resourceType?: ResourceType;
162
174
  }
163
175
  export interface DeleteResourceTypeRequest {
164
- /** ID of the resource type to delete. */
176
+ /**
177
+ * ID of the resource type to delete.
178
+ * @format GUID
179
+ */
165
180
  resourceTypeId: string;
166
181
  }
167
182
  export interface DeleteResourceTypeResponse {
@@ -190,6 +205,7 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
190
205
  /**
191
206
  * Sort object in the following format:
192
207
  * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
208
+ * @maxSize 3
193
209
  */
194
210
  sort?: Sorting[];
195
211
  }
@@ -199,7 +215,10 @@ export interface CursorQueryPagingMethodOneOf {
199
215
  cursorPaging?: CursorPaging;
200
216
  }
201
217
  export interface Sorting {
202
- /** Name of the field to sort by. */
218
+ /**
219
+ * Name of the field to sort by.
220
+ * @maxLength 200
221
+ */
203
222
  fieldName?: string;
204
223
  /** Sort order. */
205
224
  order?: SortOrder;
@@ -209,7 +228,10 @@ export declare enum SortOrder {
209
228
  DESC = "DESC"
210
229
  }
211
230
  export interface CursorPaging {
212
- /** Number of items to load. */
231
+ /**
232
+ * Number of items to load.
233
+ * @max 100
234
+ */
213
235
  limit?: number | null;
214
236
  /**
215
237
  * Pointer to the next or previous page in the list of results.
@@ -217,6 +239,7 @@ export interface CursorPaging {
217
239
  * You can get the relevant cursor token
218
240
  * from the `pagingMetadata` object in the previous call's response.
219
241
  * Not relevant for the first request.
242
+ * @maxLength 16000
220
243
  */
221
244
  cursor?: string | null;
222
245
  }
@@ -239,9 +262,15 @@ export interface CursorPagingMetadata {
239
262
  hasNext?: boolean | null;
240
263
  }
241
264
  export interface Cursors {
242
- /** Cursor pointing to next page in the list of results. */
265
+ /**
266
+ * Cursor pointing to next page in the list of results.
267
+ * @maxLength 16000
268
+ */
243
269
  next?: string | null;
244
- /** Cursor pointing to previous page in the list of results. */
270
+ /**
271
+ * Cursor pointing to previous page in the list of results.
272
+ * @maxLength 16000
273
+ */
245
274
  prev?: string | null;
246
275
  }
247
276
  export interface CountResourceTypesRequest {
@@ -330,9 +359,15 @@ export interface ActionEvent {
330
359
  bodyAsJson?: string;
331
360
  }
332
361
  export interface MessageEnvelope {
333
- /** App instance ID. */
362
+ /**
363
+ * App instance ID.
364
+ * @format GUID
365
+ */
334
366
  instanceId?: string | null;
335
- /** Event type. */
367
+ /**
368
+ * Event type.
369
+ * @maxLength 150
370
+ */
336
371
  eventType?: string;
337
372
  /** The identification type and identity data. */
338
373
  identity?: IdentificationData;
@@ -340,26 +375,50 @@ export interface MessageEnvelope {
340
375
  data?: string;
341
376
  }
342
377
  export interface IdentificationData extends IdentificationDataIdOneOf {
343
- /** ID of a site visitor that has not logged in to the site. */
378
+ /**
379
+ * ID of a site visitor that has not logged in to the site.
380
+ * @format GUID
381
+ */
344
382
  anonymousVisitorId?: string;
345
- /** ID of a site visitor that has logged in to the site. */
383
+ /**
384
+ * ID of a site visitor that has logged in to the site.
385
+ * @format GUID
386
+ */
346
387
  memberId?: string;
347
- /** ID of a Wix user (site owner, contributor, etc.). */
388
+ /**
389
+ * ID of a Wix user (site owner, contributor, etc.).
390
+ * @format GUID
391
+ */
348
392
  wixUserId?: string;
349
- /** ID of an app. */
393
+ /**
394
+ * ID of an app.
395
+ * @format GUID
396
+ */
350
397
  appId?: string;
351
398
  /** @readonly */
352
399
  identityType?: WebhookIdentityType;
353
400
  }
354
401
  /** @oneof */
355
402
  export interface IdentificationDataIdOneOf {
356
- /** ID of a site visitor that has not logged in to the site. */
403
+ /**
404
+ * ID of a site visitor that has not logged in to the site.
405
+ * @format GUID
406
+ */
357
407
  anonymousVisitorId?: string;
358
- /** ID of a site visitor that has logged in to the site. */
408
+ /**
409
+ * ID of a site visitor that has logged in to the site.
410
+ * @format GUID
411
+ */
359
412
  memberId?: string;
360
- /** ID of a Wix user (site owner, contributor, etc.). */
413
+ /**
414
+ * ID of a Wix user (site owner, contributor, etc.).
415
+ * @format GUID
416
+ */
361
417
  wixUserId?: string;
362
- /** ID of an app. */
418
+ /**
419
+ * ID of an app.
420
+ * @format GUID
421
+ */
363
422
  appId?: string;
364
423
  }
365
424
  export declare enum WebhookIdentityType {
@@ -1 +1 @@
1
- {"version":3,"file":"bookings-resources-v2-resource-type-resource-types.types.js","sourceRoot":"","sources":["../../../src/bookings-resources-v2-resource-type-resource-types.types.ts"],"names":[],"mappings":";;;AA4IA,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,gEAA6C,CAAA;IAC7C,oGAAiF,CAAA;IACjF,8EAA2D,CAAA;AAC7D,CAAC,EAJW,eAAe,+BAAf,eAAe,QAI1B;AAOD,IAAY,wBAIX;AAJD,WAAY,wBAAwB;IAClC,qGAAyE,CAAA;IACzE,+EAA+E;IAC/E,qFAAyD,CAAA;AAC3D,CAAC,EAJW,wBAAwB,wCAAxB,wBAAwB,QAInC;AAuED,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AA4KD,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"}
1
+ {"version":3,"file":"bookings-resources-v2-resource-type-resource-types.types.js","sourceRoot":"","sources":["../../../src/bookings-resources-v2-resource-type-resource-types.types.ts"],"names":[],"mappings":";;;AAqJA,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,gEAA6C,CAAA;IAC7C,oGAAiF,CAAA;IACjF,8EAA2D,CAAA;AAC7D,CAAC,EAJW,eAAe,+BAAf,eAAe,QAI1B;AAOD,IAAY,wBAIX;AAJD,WAAY,wBAAwB;IAClC,qGAAyE,CAAA;IACzE,+EAA+E;IAC/E,qFAAyD,CAAA;AAC3D,CAAC,EAJW,wBAAwB,wCAAxB,wBAAwB,QAInC;AAiFD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AAoND,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"}
@@ -9,6 +9,7 @@
9
9
  export interface ResourceType {
10
10
  /**
11
11
  * Resource type ID.
12
+ * @format GUID
12
13
  * @readonly
13
14
  */
14
15
  _id?: string | null;
@@ -32,6 +33,8 @@ export interface ResourceType {
32
33
  /**
33
34
  * Name of the resource type. For example, `meeting room`. The name must be
34
35
  * unique per site.
36
+ * @maxLength 40
37
+ * @minLength 1
35
38
  */
36
39
  name?: string | null;
37
40
  /** Extensions enabling users to save custom data related to the resource type. */
@@ -72,7 +75,11 @@ export interface ResourceCounts {
72
75
  distinctLocationIds?: DistinctLocationIds;
73
76
  }
74
77
  export interface DistinctLocationIds {
75
- /** IDs of the business locations with a resource connected to the type. */
78
+ /**
79
+ * IDs of the business locations with a resource connected to the type.
80
+ * @format GUID
81
+ * @maxSize 50
82
+ */
76
83
  values?: string[];
77
84
  }
78
85
  export interface ExtendedFields {
@@ -120,6 +127,7 @@ export interface SpecificLocation {
120
127
  * Not returned, if the resource is available in either all business locations
121
128
  * or in no business location.
122
129
  * You can specify up to 5 business locations.
130
+ * @maxSize 5
123
131
  */
124
132
  businessLocations?: BusinessLocation[];
125
133
  }
@@ -127,6 +135,7 @@ export interface BusinessLocation {
127
135
  /**
128
136
  * ID of the business *location*
129
137
  * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/locations/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/locations/introduction)).
138
+ * @format GUID
130
139
  */
131
140
  locationId?: string | null;
132
141
  }
@@ -145,7 +154,10 @@ export declare enum CreateResourceTypeErrors {
145
154
  FAILED_TO_CREATE_RESOURCES = "FAILED_TO_CREATE_RESOURCES"
146
155
  }
147
156
  export interface GetResourceTypeRequest {
148
- /** ID of the resource type to retrieve. */
157
+ /**
158
+ * ID of the resource type to retrieve.
159
+ * @format GUID
160
+ */
149
161
  resourceTypeId: string;
150
162
  }
151
163
  export interface GetResourceTypeResponse {
@@ -161,7 +173,10 @@ export interface UpdateResourceTypeResponse {
161
173
  resourceType?: ResourceType;
162
174
  }
163
175
  export interface DeleteResourceTypeRequest {
164
- /** ID of the resource type to delete. */
176
+ /**
177
+ * ID of the resource type to delete.
178
+ * @format GUID
179
+ */
165
180
  resourceTypeId: string;
166
181
  }
167
182
  export interface DeleteResourceTypeResponse {
@@ -190,6 +205,7 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
190
205
  /**
191
206
  * Sort object in the following format:
192
207
  * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
208
+ * @maxSize 3
193
209
  */
194
210
  sort?: Sorting[];
195
211
  }
@@ -199,7 +215,10 @@ export interface CursorQueryPagingMethodOneOf {
199
215
  cursorPaging?: CursorPaging;
200
216
  }
201
217
  export interface Sorting {
202
- /** Name of the field to sort by. */
218
+ /**
219
+ * Name of the field to sort by.
220
+ * @maxLength 200
221
+ */
203
222
  fieldName?: string;
204
223
  /** Sort order. */
205
224
  order?: SortOrder;
@@ -209,7 +228,10 @@ export declare enum SortOrder {
209
228
  DESC = "DESC"
210
229
  }
211
230
  export interface CursorPaging {
212
- /** Number of items to load. */
231
+ /**
232
+ * Number of items to load.
233
+ * @max 100
234
+ */
213
235
  limit?: number | null;
214
236
  /**
215
237
  * Pointer to the next or previous page in the list of results.
@@ -217,6 +239,7 @@ export interface CursorPaging {
217
239
  * You can get the relevant cursor token
218
240
  * from the `pagingMetadata` object in the previous call's response.
219
241
  * Not relevant for the first request.
242
+ * @maxLength 16000
220
243
  */
221
244
  cursor?: string | null;
222
245
  }
@@ -239,9 +262,15 @@ export interface CursorPagingMetadata {
239
262
  hasNext?: boolean | null;
240
263
  }
241
264
  export interface Cursors {
242
- /** Cursor pointing to next page in the list of results. */
265
+ /**
266
+ * Cursor pointing to next page in the list of results.
267
+ * @maxLength 16000
268
+ */
243
269
  next?: string | null;
244
- /** Cursor pointing to previous page in the list of results. */
270
+ /**
271
+ * Cursor pointing to previous page in the list of results.
272
+ * @maxLength 16000
273
+ */
245
274
  prev?: string | null;
246
275
  }
247
276
  export interface CountResourceTypesRequest {
@@ -328,9 +357,15 @@ export interface ActionEvent {
328
357
  body?: string;
329
358
  }
330
359
  export interface MessageEnvelope {
331
- /** App instance ID. */
360
+ /**
361
+ * App instance ID.
362
+ * @format GUID
363
+ */
332
364
  instanceId?: string | null;
333
- /** Event type. */
365
+ /**
366
+ * Event type.
367
+ * @maxLength 150
368
+ */
334
369
  eventType?: string;
335
370
  /** The identification type and identity data. */
336
371
  identity?: IdentificationData;
@@ -338,26 +373,50 @@ export interface MessageEnvelope {
338
373
  data?: string;
339
374
  }
340
375
  export interface IdentificationData extends IdentificationDataIdOneOf {
341
- /** ID of a site visitor that has not logged in to the site. */
376
+ /**
377
+ * ID of a site visitor that has not logged in to the site.
378
+ * @format GUID
379
+ */
342
380
  anonymousVisitorId?: string;
343
- /** ID of a site visitor that has logged in to the site. */
381
+ /**
382
+ * ID of a site visitor that has logged in to the site.
383
+ * @format GUID
384
+ */
344
385
  memberId?: string;
345
- /** ID of a Wix user (site owner, contributor, etc.). */
386
+ /**
387
+ * ID of a Wix user (site owner, contributor, etc.).
388
+ * @format GUID
389
+ */
346
390
  wixUserId?: string;
347
- /** ID of an app. */
391
+ /**
392
+ * ID of an app.
393
+ * @format GUID
394
+ */
348
395
  appId?: string;
349
396
  /** @readonly */
350
397
  identityType?: WebhookIdentityType;
351
398
  }
352
399
  /** @oneof */
353
400
  export interface IdentificationDataIdOneOf {
354
- /** ID of a site visitor that has not logged in to the site. */
401
+ /**
402
+ * ID of a site visitor that has not logged in to the site.
403
+ * @format GUID
404
+ */
355
405
  anonymousVisitorId?: string;
356
- /** ID of a site visitor that has logged in to the site. */
406
+ /**
407
+ * ID of a site visitor that has logged in to the site.
408
+ * @format GUID
409
+ */
357
410
  memberId?: string;
358
- /** ID of a Wix user (site owner, contributor, etc.). */
411
+ /**
412
+ * ID of a Wix user (site owner, contributor, etc.).
413
+ * @format GUID
414
+ */
359
415
  wixUserId?: string;
360
- /** ID of an app. */
416
+ /**
417
+ * ID of an app.
418
+ * @format GUID
419
+ */
361
420
  appId?: string;
362
421
  }
363
422
  export declare enum WebhookIdentityType {
@@ -393,9 +452,15 @@ export interface CountResourceTypesResponseNonNullableFields {
393
452
  count: number;
394
453
  }
395
454
  export interface BaseEventMetadata {
396
- /** App instance ID. */
455
+ /**
456
+ * App instance ID.
457
+ * @format GUID
458
+ */
397
459
  instanceId?: string | null;
398
- /** Event type. */
460
+ /**
461
+ * Event type.
462
+ * @maxLength 150
463
+ */
399
464
  eventType?: string;
400
465
  /** The identification type and identity data. */
401
466
  identity?: IdentificationData;
@@ -559,6 +624,7 @@ export declare function updateResourceType(_id: string | null, resourceType: Upd
559
624
  export interface UpdateResourceType {
560
625
  /**
561
626
  * Resource type ID.
627
+ * @format GUID
562
628
  * @readonly
563
629
  */
564
630
  _id?: string | null;
@@ -582,6 +648,8 @@ export interface UpdateResourceType {
582
648
  /**
583
649
  * Name of the resource type. For example, `meeting room`. The name must be
584
650
  * unique per site.
651
+ * @maxLength 40
652
+ * @minLength 1
585
653
  */
586
654
  name?: string | null;
587
655
  /** Extensions enabling users to save custom data related to the resource type. */
@@ -1 +1 @@
1
- {"version":3,"file":"bookings-resources-v2-resource-type-resource-types.universal.js","sourceRoot":"","sources":["../../../src/bookings-resources-v2-resource-type-resource-types.universal.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"bookings-resources-v2-resource-type-resource-types.universal.js","sourceRoot":"","sources":["../../../src/bookings-resources-v2-resource-type-resource-types.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,kEAA8D;AAC9D,oFAGiD;AAEjD,2IAA6H;AAwJ7H,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,gEAA6C,CAAA;IAC7C,oGAAiF,CAAA;IACjF,8EAA2D,CAAA;AAC7D,CAAC,EAJW,eAAe,+BAAf,eAAe,QAI1B;AAOD,IAAY,wBAIX;AAJD,WAAY,wBAAwB;IAClC,qGAAyE,CAAA;IACzE,+EAA+E;IAC/E,qFAAyD,CAAA;AAC3D,CAAC,EAJW,wBAAwB,wCAAxB,wBAAwB,QAInC;AAiFD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AAkND,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;AA2ID;;;;;;;;;;;;;;;GAeG;AACI,KAAK,UAAU,kBAAkB,CACtC,YAA0B;IAE1B,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,8DAAqC,EAAC;QACpD,YAAY,EAAE,YAAY;KAC3B,CAAC,CAAC;IAEH,MAAM,OAAO,GACX,4CAA4C,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;IAE3E,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,YAAa,CAAC;IAC7E,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE,EAAE,YAAY,EAAE,MAAM,EAAE;YAClD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,cAAc,CAAC,CACjB,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AApCD,gDAoCC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACI,KAAK,UAAU,eAAe,CACnC,cAAsB;IAEtB,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,8DAAqC,EAAC;QACpD,cAAc,EAAE,cAAc;KAC/B,CAAC,CAAC;IAEH,MAAM,OAAO,GACX,4CAA4C,CAAC,eAAe,CAAC,OAAO,CAAC,CAAC;IAExE,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,YAAa,CAAC;IAC7E,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE,EAAE,cAAc,EAAE,MAAM,EAAE;YACpD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,gBAAgB,CAAC,CACnB,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AApCD,0CAoCC;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACI,KAAK,UAAU,kBAAkB,CACtC,GAAkB,EAClB,YAAgC;IAEhC,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,8DAAqC,EAAC;QACpD,YAAY,EAAE,EAAE,GAAG,YAAY,EAAE,EAAE,EAAE,GAAG,EAAE;KAC3C,CAAC,CAAC;IAEH,MAAM,OAAO,GACX,4CAA4C,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;IAE3E,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,YAAa,CAAC;IAC7E,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE,YAAY,EAAE,MAAM,EAAE;YAChD,wBAAwB,EAAE,EAAE,iBAAiB,EAAE,MAAM,EAAE;YACvD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,KAAK,EAAE,cAAc,CAAC,CACxB,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AArCD,gDAqCC;AAqCD;;;;;;;;;;;;;;;;GAgBG;AACI,KAAK,UAAU,kBAAkB,CACtC,cAAsB;IAEtB,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,8DAAqC,EAAC;QACpD,cAAc,EAAE,cAAc;KAC/B,CAAC,CAAC;IAEH,MAAM,OAAO,GACX,4CAA4C,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;IAE3E,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;IACnC,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE,EAAE,cAAc,EAAE,MAAM,EAAE;YACpD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,gBAAgB,CAAC,CACnB,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AAlCD,gDAkCC;AAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,kBAAkB,CAChC,OAAmC;IAEnC,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,OAAO,IAAA,4BAAY,EAKjB;QACA,IAAI,EAAE,KAAK,EAAE,OAAkC,EAAE,EAAE;YACjD,MAAM,OAAO,GACX,4CAA4C,CAAC,kBAAkB,CAAC;gBAC9D,GAAG,OAAO;gBACV,GAAG,CAAC,OAAO,IAAI,EAAE,CAAC;aACnB,CAAC,CAAC;YAEL,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;YAC5B,IAAI,CAAC;gBACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;gBACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;gBACjC,OAAO,MAAM,CAAC;YAChB,CAAC;YAAC,OAAO,GAAG,EAAE,CAAC;gBACb,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;gBAC5B,MAAM,GAAG,CAAC;YACZ,CAAC;QACH,CAAC;QACD,kBAAkB,EAAE,CAAC,KAAyC,EAAE,EAAE;YAChE,MAAM,IAAI,GAAG,CAAC,KAAK,EAAE,OAAO,CAG3B,CAAC;YACF,OAAO,IAAA,8DAAqC,EAAC;gBAC3C,GAAG,IAAI,EAAE,CAAC,CAAC,CAAC;gBACZ,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;aACjB,CAAC,CAAC;QACL,CAAC;QACD,mBAAmB,EAAE,CAAC,EACpB,IAAI,GACqC,EAAE,EAAE;YAC7C,MAAM,eAAe,GAAG,IAAA,gEAAuC,EAAC,IAAI,CAAC,CAAC;YAEtE,OAAO;gBACL,KAAK,EAAE,eAAe,EAAE,aAAa;gBACrC,cAAc,EAAE,eAAe,EAAE,cAAc;aAChD,CAAC;QACJ,CAAC;QACD,gBAAgB,EAAE,CAAC,GAAY,EAAE,EAAE;YACjC,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EAAC,GAAG,EAAE;gBAC9C,sBAAsB,EAAE,EAAE;gBAC1B,wBAAwB,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;gBAC3C,uBAAuB,EAAE,KAAK;aAC/B,CAAC,CAAC;YAEH,MAAM,gBAAgB,CAAC;QACzB,CAAC;QACD,YAAY,EAAE,QAAQ;QACtB,mBAAmB,EAAE,EAAE;KACxB,CAAC,CAAC;AACL,CAAC;AAhED,gDAgEC;AA2DD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACI,KAAK,UAAU,kBAAkB,CACtC,OAAmC;IAInC,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,8DAAqC,EAAC;QACpD,MAAM,EAAE,OAAO,EAAE,MAAM;KACxB,CAAC,CAAC;IAEH,MAAM,OAAO,GACX,4CAA4C,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;IAE3E,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,EAAE,MAAM,EAAE,aAAa,EAAE;YACnD,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;AAtCD,gDAsCC"}
@@ -9,6 +9,7 @@
9
9
  export interface ResourceType {
10
10
  /**
11
11
  * Resource type ID.
12
+ * @format GUID
12
13
  * @readonly
13
14
  */
14
15
  id?: string | null;
@@ -32,6 +33,8 @@ export interface ResourceType {
32
33
  /**
33
34
  * Name of the resource type. For example, `meeting room`. The name must be
34
35
  * unique per site.
36
+ * @maxLength 40
37
+ * @minLength 1
35
38
  */
36
39
  name?: string | null;
37
40
  /** Extensions enabling users to save custom data related to the resource type. */
@@ -72,7 +75,11 @@ export interface ResourceCounts {
72
75
  distinctLocationIds?: DistinctLocationIds;
73
76
  }
74
77
  export interface DistinctLocationIds {
75
- /** IDs of the business locations with a resource connected to the type. */
78
+ /**
79
+ * IDs of the business locations with a resource connected to the type.
80
+ * @format GUID
81
+ * @maxSize 50
82
+ */
76
83
  values?: string[];
77
84
  }
78
85
  export interface ExtendedFields {
@@ -120,6 +127,7 @@ export interface SpecificLocation {
120
127
  * Not returned, if the resource is available in either all business locations
121
128
  * or in no business location.
122
129
  * You can specify up to 5 business locations.
130
+ * @maxSize 5
123
131
  */
124
132
  businessLocations?: BusinessLocation[];
125
133
  }
@@ -127,6 +135,7 @@ export interface BusinessLocation {
127
135
  /**
128
136
  * ID of the business *location*
129
137
  * ([SDK](https://dev.wix.com/docs/sdk/backend-modules/business-tools/locations/introduction) | [REST](https://dev.wix.com/docs/rest/business-management/locations/introduction)).
138
+ * @format GUID
130
139
  */
131
140
  locationId?: string | null;
132
141
  }
@@ -145,7 +154,10 @@ export declare enum CreateResourceTypeErrors {
145
154
  FAILED_TO_CREATE_RESOURCES = "FAILED_TO_CREATE_RESOURCES"
146
155
  }
147
156
  export interface GetResourceTypeRequest {
148
- /** ID of the resource type to retrieve. */
157
+ /**
158
+ * ID of the resource type to retrieve.
159
+ * @format GUID
160
+ */
149
161
  resourceTypeId: string;
150
162
  }
151
163
  export interface GetResourceTypeResponse {
@@ -161,7 +173,10 @@ export interface UpdateResourceTypeResponse {
161
173
  resourceType?: ResourceType;
162
174
  }
163
175
  export interface DeleteResourceTypeRequest {
164
- /** ID of the resource type to delete. */
176
+ /**
177
+ * ID of the resource type to delete.
178
+ * @format GUID
179
+ */
165
180
  resourceTypeId: string;
166
181
  }
167
182
  export interface DeleteResourceTypeResponse {
@@ -190,6 +205,7 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
190
205
  /**
191
206
  * Sort object in the following format:
192
207
  * `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
208
+ * @maxSize 3
193
209
  */
194
210
  sort?: Sorting[];
195
211
  }
@@ -199,7 +215,10 @@ export interface CursorQueryPagingMethodOneOf {
199
215
  cursorPaging?: CursorPaging;
200
216
  }
201
217
  export interface Sorting {
202
- /** Name of the field to sort by. */
218
+ /**
219
+ * Name of the field to sort by.
220
+ * @maxLength 200
221
+ */
203
222
  fieldName?: string;
204
223
  /** Sort order. */
205
224
  order?: SortOrder;
@@ -209,7 +228,10 @@ export declare enum SortOrder {
209
228
  DESC = "DESC"
210
229
  }
211
230
  export interface CursorPaging {
212
- /** Number of items to load. */
231
+ /**
232
+ * Number of items to load.
233
+ * @max 100
234
+ */
213
235
  limit?: number | null;
214
236
  /**
215
237
  * Pointer to the next or previous page in the list of results.
@@ -217,6 +239,7 @@ export interface CursorPaging {
217
239
  * You can get the relevant cursor token
218
240
  * from the `pagingMetadata` object in the previous call's response.
219
241
  * Not relevant for the first request.
242
+ * @maxLength 16000
220
243
  */
221
244
  cursor?: string | null;
222
245
  }
@@ -239,9 +262,15 @@ export interface CursorPagingMetadata {
239
262
  hasNext?: boolean | null;
240
263
  }
241
264
  export interface Cursors {
242
- /** Cursor pointing to next page in the list of results. */
265
+ /**
266
+ * Cursor pointing to next page in the list of results.
267
+ * @maxLength 16000
268
+ */
243
269
  next?: string | null;
244
- /** Cursor pointing to previous page in the list of results. */
270
+ /**
271
+ * Cursor pointing to previous page in the list of results.
272
+ * @maxLength 16000
273
+ */
245
274
  prev?: string | null;
246
275
  }
247
276
  export interface CountResourceTypesRequest {
@@ -330,9 +359,15 @@ export interface ActionEvent {
330
359
  bodyAsJson?: string;
331
360
  }
332
361
  export interface MessageEnvelope {
333
- /** App instance ID. */
362
+ /**
363
+ * App instance ID.
364
+ * @format GUID
365
+ */
334
366
  instanceId?: string | null;
335
- /** Event type. */
367
+ /**
368
+ * Event type.
369
+ * @maxLength 150
370
+ */
336
371
  eventType?: string;
337
372
  /** The identification type and identity data. */
338
373
  identity?: IdentificationData;
@@ -340,26 +375,50 @@ export interface MessageEnvelope {
340
375
  data?: string;
341
376
  }
342
377
  export interface IdentificationData extends IdentificationDataIdOneOf {
343
- /** ID of a site visitor that has not logged in to the site. */
378
+ /**
379
+ * ID of a site visitor that has not logged in to the site.
380
+ * @format GUID
381
+ */
344
382
  anonymousVisitorId?: string;
345
- /** ID of a site visitor that has logged in to the site. */
383
+ /**
384
+ * ID of a site visitor that has logged in to the site.
385
+ * @format GUID
386
+ */
346
387
  memberId?: string;
347
- /** ID of a Wix user (site owner, contributor, etc.). */
388
+ /**
389
+ * ID of a Wix user (site owner, contributor, etc.).
390
+ * @format GUID
391
+ */
348
392
  wixUserId?: string;
349
- /** ID of an app. */
393
+ /**
394
+ * ID of an app.
395
+ * @format GUID
396
+ */
350
397
  appId?: string;
351
398
  /** @readonly */
352
399
  identityType?: WebhookIdentityType;
353
400
  }
354
401
  /** @oneof */
355
402
  export interface IdentificationDataIdOneOf {
356
- /** ID of a site visitor that has not logged in to the site. */
403
+ /**
404
+ * ID of a site visitor that has not logged in to the site.
405
+ * @format GUID
406
+ */
357
407
  anonymousVisitorId?: string;
358
- /** ID of a site visitor that has logged in to the site. */
408
+ /**
409
+ * ID of a site visitor that has logged in to the site.
410
+ * @format GUID
411
+ */
359
412
  memberId?: string;
360
- /** ID of a Wix user (site owner, contributor, etc.). */
413
+ /**
414
+ * ID of a Wix user (site owner, contributor, etc.).
415
+ * @format GUID
416
+ */
361
417
  wixUserId?: string;
362
- /** ID of an app. */
418
+ /**
419
+ * ID of an app.
420
+ * @format GUID
421
+ */
363
422
  appId?: string;
364
423
  }
365
424
  export declare enum WebhookIdentityType {
@@ -1 +1 @@
1
- {"version":3,"file":"bookings-resources-v2-resource-type-resource-types.types.js","sourceRoot":"","sources":["../../../src/bookings-resources-v2-resource-type-resource-types.types.ts"],"names":[],"mappings":"AA4IA,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,gEAA6C,CAAA;IAC7C,oGAAiF,CAAA;IACjF,8EAA2D,CAAA;AAC7D,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B;AAOD,MAAM,CAAN,IAAY,wBAIX;AAJD,WAAY,wBAAwB;IAClC,qGAAyE,CAAA;IACzE,+EAA+E;IAC/E,qFAAyD,CAAA;AAC3D,CAAC,EAJW,wBAAwB,KAAxB,wBAAwB,QAInC;AAuED,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AA4KD,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"}
1
+ {"version":3,"file":"bookings-resources-v2-resource-type-resource-types.types.js","sourceRoot":"","sources":["../../../src/bookings-resources-v2-resource-type-resource-types.types.ts"],"names":[],"mappings":"AAqJA,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,gEAA6C,CAAA;IAC7C,oGAAiF,CAAA;IACjF,8EAA2D,CAAA;AAC7D,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B;AAOD,MAAM,CAAN,IAAY,wBAIX;AAJD,WAAY,wBAAwB;IAClC,qGAAyE,CAAA;IACzE,+EAA+E;IAC/E,qFAAyD,CAAA;AAC3D,CAAC,EAJW,wBAAwB,KAAxB,wBAAwB,QAInC;AAiFD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AAoND,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"}