@wix/auto_sdk_ecom_local-delivery-options 1.0.0 → 1.0.2

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 (21) hide show
  1. package/build/cjs/src/ecom-v1-local-delivery-option-local-delivery-options.types.d.ts +176 -34
  2. package/build/cjs/src/ecom-v1-local-delivery-option-local-delivery-options.types.js.map +1 -1
  3. package/build/cjs/src/ecom-v1-local-delivery-option-local-delivery-options.universal.d.ts +215 -51
  4. package/build/cjs/src/ecom-v1-local-delivery-option-local-delivery-options.universal.js +12 -12
  5. package/build/cjs/src/ecom-v1-local-delivery-option-local-delivery-options.universal.js.map +1 -1
  6. package/build/es/src/ecom-v1-local-delivery-option-local-delivery-options.types.d.ts +176 -34
  7. package/build/es/src/ecom-v1-local-delivery-option-local-delivery-options.types.js.map +1 -1
  8. package/build/es/src/ecom-v1-local-delivery-option-local-delivery-options.universal.d.ts +215 -51
  9. package/build/es/src/ecom-v1-local-delivery-option-local-delivery-options.universal.js +12 -12
  10. package/build/es/src/ecom-v1-local-delivery-option-local-delivery-options.universal.js.map +1 -1
  11. package/build/internal/cjs/src/ecom-v1-local-delivery-option-local-delivery-options.types.d.ts +176 -34
  12. package/build/internal/cjs/src/ecom-v1-local-delivery-option-local-delivery-options.types.js.map +1 -1
  13. package/build/internal/cjs/src/ecom-v1-local-delivery-option-local-delivery-options.universal.d.ts +215 -51
  14. package/build/internal/cjs/src/ecom-v1-local-delivery-option-local-delivery-options.universal.js +12 -12
  15. package/build/internal/cjs/src/ecom-v1-local-delivery-option-local-delivery-options.universal.js.map +1 -1
  16. package/build/internal/es/src/ecom-v1-local-delivery-option-local-delivery-options.types.d.ts +176 -34
  17. package/build/internal/es/src/ecom-v1-local-delivery-option-local-delivery-options.types.js.map +1 -1
  18. package/build/internal/es/src/ecom-v1-local-delivery-option-local-delivery-options.universal.d.ts +215 -51
  19. package/build/internal/es/src/ecom-v1-local-delivery-option-local-delivery-options.universal.js +12 -12
  20. package/build/internal/es/src/ecom-v1-local-delivery-option-local-delivery-options.universal.js.map +1 -1
  21. package/package.json +4 -4
@@ -4,18 +4,26 @@ export interface LocalDeliveryOption extends LocalDeliveryOptionConfigOneOf {
4
4
  customAreaConfig?: CustomAreaConfig;
5
5
  /**
6
6
  * LocalDeliveryOptionId - unique identifier of local delivery option
7
+ * @format GUID
7
8
  * @readonly
8
9
  */
9
10
  id?: string | null;
10
- /** Area name of Local Delivery Option */
11
+ /**
12
+ * Area name of Local Delivery Option
13
+ * @maxLength 100
14
+ */
11
15
  areaName?: string | null;
12
16
  /**
13
17
  * Flat price of local delivery
18
+ * @format DECIMAL_VALUE
14
19
  * @deprecated Flat price of local delivery
15
20
  * @targetRemovalDate 2025-01-12
16
21
  */
17
22
  rate?: string | null;
18
- /** Estimated delivery time description text */
23
+ /**
24
+ * Estimated delivery time description text
25
+ * @maxLength 40
26
+ */
19
27
  estimatedDeliveryTime?: string | null;
20
28
  /**
21
29
  * Minimum order total to be eligible for free delivery
@@ -23,7 +31,10 @@ export interface LocalDeliveryOption extends LocalDeliveryOptionConfigOneOf {
23
31
  * @targetRemovalDate 2025-01-12
24
32
  */
25
33
  minimumFreeDeliveryOrderAmount?: number | null;
26
- /** List of countries with subdivisions */
34
+ /**
35
+ * List of countries with subdivisions
36
+ * @maxSize 100
37
+ */
27
38
  destinations?: Destination[];
28
39
  /**
29
40
  * Database revision of LocalDeliveryOption entity. Incremented on each modification
@@ -31,7 +42,10 @@ export interface LocalDeliveryOption extends LocalDeliveryOptionConfigOneOf {
31
42
  */
32
43
  revision?: string | null;
33
44
  scheduledDeliveryConfig?: ScheduledDelivery;
34
- /** at runtime for a given shipment input, up to one rate (price) should be returned in an option. If more than one rate is valid then we return the lowest one. */
45
+ /**
46
+ * at runtime for a given shipment input, up to one rate (price) should be returned in an option. If more than one rate is valid then we return the lowest one.
47
+ * @maxSize 50
48
+ */
35
49
  rates?: ConditionalRates[];
36
50
  /**
37
51
  * Date and time the LocalDeliveryOption was created.
@@ -43,7 +57,11 @@ export interface LocalDeliveryOption extends LocalDeliveryOptionConfigOneOf {
43
57
  * @readonly
44
58
  */
45
59
  updatedDate?: Date | null;
46
- /** This local delivery is active for the following delivery regions. */
60
+ /**
61
+ * This local delivery is active for the following delivery regions.
62
+ * @maxSize 5
63
+ * @format GUID
64
+ */
47
65
  deliveryRegionIds?: string[];
48
66
  }
49
67
  /** @oneof */
@@ -53,19 +71,33 @@ export interface LocalDeliveryOptionConfigOneOf {
53
71
  customAreaConfig?: CustomAreaConfig;
54
72
  }
55
73
  export interface Destination {
56
- /** Country ISO code */
74
+ /**
75
+ * Country ISO code
76
+ * @format COUNTRY
77
+ */
57
78
  code?: string;
58
- /** List of subdivisions, empty means all */
79
+ /**
80
+ * List of subdivisions, empty means all
81
+ * @maxSize 200
82
+ */
59
83
  subdivisions?: string[];
60
84
  }
61
85
  export interface ZipCodeConfig {
62
- /** List of ZipCodes and ZipCode regexes. Examples: 10001, 10002 or 1000* */
86
+ /**
87
+ * List of ZipCodes and ZipCode regexes. Examples: 10001, 10002 or 1000*
88
+ * @minLength 1
89
+ * @maxLength 300
90
+ */
63
91
  zipCodes?: string[];
64
92
  }
65
93
  export interface RadiusConfig {
66
94
  /** Delivery-from address */
67
95
  address?: LocalDeliveryAddress;
68
- /** Delivery circle's radius */
96
+ /**
97
+ * Delivery circle's radius
98
+ * @min 0.1
99
+ * @max 50
100
+ */
69
101
  radius?: number;
70
102
  /**
71
103
  * Radius' unit, taken from site properties
@@ -74,7 +106,10 @@ export interface RadiusConfig {
74
106
  lengthUnit?: LengthUnit;
75
107
  }
76
108
  export interface LocalDeliveryAddress {
77
- /** A string containing the human-readable address of this location */
109
+ /**
110
+ * A string containing the human-readable address of this location
111
+ * @maxLength 400
112
+ */
78
113
  formattedAddress?: string | null;
79
114
  /** coordinates of the physical address */
80
115
  geocode?: AddressLocation;
@@ -94,7 +129,10 @@ export declare enum LengthUnit {
94
129
  MI = "MI"
95
130
  }
96
131
  export interface CustomAreaConfig {
97
- /** Geocodes of the polygon defining the delivery area. */
132
+ /**
133
+ * Geocodes of the polygon defining the delivery area.
134
+ * @maxSize 300
135
+ */
98
136
  geocodes?: AddressLocation[];
99
137
  }
100
138
  export interface ScheduledDelivery {
@@ -105,11 +143,17 @@ export interface ScheduledDelivery {
105
143
  * @targetRemovalDate 2025-01-01
106
144
  */
107
145
  days?: Days;
108
- /** Amount of days before first delivery option date */
146
+ /**
147
+ * Amount of days before first delivery option date
148
+ * @max 30
149
+ */
109
150
  handlingDays?: number | null;
110
151
  /** Cut off time after which first delivery option would be for next day */
111
152
  cutOffTime?: TimePoint;
112
- /** availability times configuration. */
153
+ /**
154
+ * availability times configuration.
155
+ * @maxSize 100
156
+ */
113
157
  timeWindows?: TimeWindow[];
114
158
  }
115
159
  export interface Days {
@@ -124,7 +168,10 @@ export interface Days {
124
168
  export interface DaySlot {
125
169
  /** Shows whether this day slot is enabled for delivery */
126
170
  enabledForDelivery?: boolean | null;
127
- /** Time slots for scheduled delivery during day */
171
+ /**
172
+ * Time slots for scheduled delivery during day
173
+ * @maxSize 8
174
+ */
128
175
  timeSlots?: TimeSlot[];
129
176
  }
130
177
  export interface TimeSlot {
@@ -134,9 +181,15 @@ export interface TimeSlot {
134
181
  to?: TimePoint;
135
182
  }
136
183
  export interface TimePoint {
137
- /** Hours in format 0-23 */
184
+ /**
185
+ * Hours in format 0-23
186
+ * @max 23
187
+ */
138
188
  hours?: number | null;
139
- /** Minutes 0-59 */
189
+ /**
190
+ * Minutes 0-59
191
+ * @max 59
192
+ */
140
193
  minutes?: number | null;
141
194
  }
142
195
  export interface TimeWindow {
@@ -166,18 +219,31 @@ export declare enum DayOfWeek {
166
219
  SUN = "SUN"
167
220
  }
168
221
  export interface TimeOfDay {
169
- /** Hours */
222
+ /**
223
+ * Hours
224
+ * @max 23
225
+ */
170
226
  hours?: number;
171
- /** Minutes */
227
+ /**
228
+ * Minutes
229
+ * @max 59
230
+ */
172
231
  minutes?: number;
173
232
  }
174
233
  export interface ConditionalRates {
175
234
  /**
176
235
  * there is an AND logic between all the conditions. Empty conditions means true.
177
236
  * For example: weight > 0 and weight <= 10
237
+ * @maxSize 10
178
238
  */
179
239
  conditions?: Condition[];
240
+ /**
241
+ * The amount of the rate that will be returned if all conditions are met.
242
+ * @decimalValue options { gte:0, lte:999999999, maxScale:3 }
243
+ */
180
244
  amount?: string;
245
+ /** When this flag is set to true, multiply the amount by the number of line items passed on the request. */
246
+ multiplyByQuantity?: boolean;
181
247
  }
182
248
  export interface Condition {
183
249
  type?: ConditionType;
@@ -186,6 +252,7 @@ export interface Condition {
186
252
  * Weight values should be in the same weight units of the store: KG / LB
187
253
  * Total price is according to the store currency
188
254
  * Quantity of items should be integers
255
+ * @decimalValue options { gte:0, lte:999999999, maxScale:6 }
189
256
  */
190
257
  value?: string;
191
258
  operator?: LogicalOperator;
@@ -212,16 +279,19 @@ export interface CreateLocalDeliveryOptionResponse {
212
279
  }
213
280
  export interface GetLocalDeliveryOptionRequest {
214
281
  /**
282
+ * @maxLength 50
215
283
  * @deprecated
216
284
  * @targetRemovalDate 2025-01-12
217
285
  */
218
286
  id?: string;
287
+ /** @maxLength 50 */
219
288
  localDeliveryOptionId: string;
220
289
  }
221
290
  export interface GetLocalDeliveryOptionResponse {
222
291
  localDeliveryOption?: LocalDeliveryOption;
223
292
  }
224
293
  export interface ListLocalDeliveryOptionsRequest {
294
+ /** @format GUID */
225
295
  externalId: string;
226
296
  }
227
297
  export interface ListLocalDeliveryOptionsResponse {
@@ -246,11 +316,20 @@ export interface QueryV2 extends QueryV2PagingMethodOneOf {
246
316
  * Sort object.
247
317
  *
248
318
  * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
319
+ * @maxSize 5
249
320
  */
250
321
  sort?: Sorting[];
251
- /** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
322
+ /**
323
+ * Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned.
324
+ * @maxSize 100
325
+ * @maxLength 20
326
+ */
252
327
  fields?: string[];
253
- /** Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned. */
328
+ /**
329
+ * Array of named, predefined sets of projected fields. A array of predefined named sets of fields to be returned. Specifying multiple `fieldsets` will return the union of fields from all sets. If `fields` are also specified, the union of `fieldsets` and `fields` is returned.
330
+ * @maxSize 100
331
+ * @maxLength 20
332
+ */
254
333
  fieldsets?: string[];
255
334
  }
256
335
  /** @oneof */
@@ -261,7 +340,10 @@ export interface QueryV2PagingMethodOneOf {
261
340
  cursorPaging?: CursorPaging;
262
341
  }
263
342
  export interface Sorting {
264
- /** Name of the field to sort by. */
343
+ /**
344
+ * Name of the field to sort by.
345
+ * @maxLength 512
346
+ */
265
347
  fieldName?: string;
266
348
  /** Sort order. */
267
349
  order?: SortOrder;
@@ -277,13 +359,17 @@ export interface Paging {
277
359
  offset?: number | null;
278
360
  }
279
361
  export interface CursorPaging {
280
- /** Maximum number of items to return in the results. */
362
+ /**
363
+ * Maximum number of items to return in the results.
364
+ * @max 100
365
+ */
281
366
  limit?: number | null;
282
367
  /**
283
368
  * Pointer to the next or previous page in the list of results.
284
369
  *
285
370
  * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
286
371
  * Not relevant for the first request.
372
+ * @maxLength 16000
287
373
  */
288
374
  cursor?: string | null;
289
375
  }
@@ -307,9 +393,15 @@ export interface CursorPagingMetadata {
307
393
  hasNext?: boolean | null;
308
394
  }
309
395
  export interface Cursors {
310
- /** Cursor string pointing to the next page in the list of results. */
396
+ /**
397
+ * Cursor string pointing to the next page in the list of results.
398
+ * @maxLength 16000
399
+ */
311
400
  next?: string | null;
312
- /** Cursor pointing to the previous page in the list of results. */
401
+ /**
402
+ * Cursor pointing to the previous page in the list of results.
403
+ * @maxLength 16000
404
+ */
313
405
  prev?: string | null;
314
406
  }
315
407
  export interface UpdateLocalDeliveryOptionRequest {
@@ -321,15 +413,21 @@ export interface UpdateLocalDeliveryOptionResponse {
321
413
  }
322
414
  export interface DeleteLocalDeliveryOptionRequest {
323
415
  /**
416
+ * @maxLength 50
324
417
  * @deprecated
325
418
  * @targetRemovalDate 2025-01-12
326
419
  */
327
420
  id?: string;
421
+ /** @maxLength 50 */
328
422
  localDeliveryOptionId: string;
329
423
  }
330
424
  export interface DeleteLocalDeliveryOptionResponse {
331
425
  }
332
426
  export interface BulkCreateLocalDeliveryOptionRequest {
427
+ /**
428
+ * @minSize 1
429
+ * @maxSize 100
430
+ */
333
431
  localDeliveryOptions: LocalDeliveryOption[];
334
432
  }
335
433
  export interface BulkCreateLocalDeliveryOptionResponse {
@@ -341,6 +439,10 @@ export interface LocalDeliveryOptionError {
341
439
  error?: string;
342
440
  }
343
441
  export interface BulkUpdateLocalDeliveryOptionRequest {
442
+ /**
443
+ * @minSize 1
444
+ * @maxSize 100
445
+ */
344
446
  localDeliveryOptions: LocalDeliveryOption[];
345
447
  }
346
448
  export interface BulkUpdateLocalDeliveryOptionResponse {
@@ -348,6 +450,11 @@ export interface BulkUpdateLocalDeliveryOptionResponse {
348
450
  errors?: LocalDeliveryOptionError[];
349
451
  }
350
452
  export interface BulkDeleteLocalDeliveryOptionRequest {
453
+ /**
454
+ * @format GUID
455
+ * @minSize 1
456
+ * @maxSize 100
457
+ */
351
458
  ids: string[];
352
459
  }
353
460
  export interface BulkDeleteLocalDeliveryOptionResponse {
@@ -427,7 +534,9 @@ export interface ActionEvent {
427
534
  bodyAsJson?: string;
428
535
  }
429
536
  export interface AddDeliveryRegionRequest {
537
+ /** @format GUID */
430
538
  deliveryRegionId: string;
539
+ /** @format GUID */
431
540
  localDeliveryOptionId: string;
432
541
  /** Revision of the PickupLocation */
433
542
  revision?: string | null;
@@ -436,7 +545,9 @@ export interface AddDeliveryRegionResponse {
436
545
  localDeliveryOption?: LocalDeliveryOption;
437
546
  }
438
547
  export interface RemoveDeliveryRegionRequest {
548
+ /** @format GUID */
439
549
  deliveryRegionId: string;
550
+ /** @format GUID */
440
551
  localDeliveryOptionId: string;
441
552
  /** Revision of the PickupLocation */
442
553
  revision?: string | null;
@@ -445,9 +556,15 @@ export interface RemoveDeliveryRegionResponse {
445
556
  localDeliveryOption?: LocalDeliveryOption;
446
557
  }
447
558
  export interface MessageEnvelope {
448
- /** App instance ID. */
559
+ /**
560
+ * App instance ID.
561
+ * @format GUID
562
+ */
449
563
  instanceId?: string | null;
450
- /** Event type. */
564
+ /**
565
+ * Event type.
566
+ * @maxLength 150
567
+ */
451
568
  eventType?: string;
452
569
  /** The identification type and identity data. */
453
570
  identity?: IdentificationData;
@@ -455,26 +572,50 @@ export interface MessageEnvelope {
455
572
  data?: string;
456
573
  }
457
574
  export interface IdentificationData extends IdentificationDataIdOneOf {
458
- /** ID of a site visitor that has not logged in to the site. */
575
+ /**
576
+ * ID of a site visitor that has not logged in to the site.
577
+ * @format GUID
578
+ */
459
579
  anonymousVisitorId?: string;
460
- /** ID of a site visitor that has logged in to the site. */
580
+ /**
581
+ * ID of a site visitor that has logged in to the site.
582
+ * @format GUID
583
+ */
461
584
  memberId?: string;
462
- /** ID of a Wix user (site owner, contributor, etc.). */
585
+ /**
586
+ * ID of a Wix user (site owner, contributor, etc.).
587
+ * @format GUID
588
+ */
463
589
  wixUserId?: string;
464
- /** ID of an app. */
590
+ /**
591
+ * ID of an app.
592
+ * @format GUID
593
+ */
465
594
  appId?: string;
466
595
  /** @readonly */
467
596
  identityType?: WebhookIdentityType;
468
597
  }
469
598
  /** @oneof */
470
599
  export interface IdentificationDataIdOneOf {
471
- /** ID of a site visitor that has not logged in to the site. */
600
+ /**
601
+ * ID of a site visitor that has not logged in to the site.
602
+ * @format GUID
603
+ */
472
604
  anonymousVisitorId?: string;
473
- /** ID of a site visitor that has logged in to the site. */
605
+ /**
606
+ * ID of a site visitor that has logged in to the site.
607
+ * @format GUID
608
+ */
474
609
  memberId?: string;
475
- /** ID of a Wix user (site owner, contributor, etc.). */
610
+ /**
611
+ * ID of a Wix user (site owner, contributor, etc.).
612
+ * @format GUID
613
+ */
476
614
  wixUserId?: string;
477
- /** ID of an app. */
615
+ /**
616
+ * ID of an app.
617
+ * @format GUID
618
+ */
478
619
  appId?: string;
479
620
  }
480
621
  export declare enum WebhookIdentityType {
@@ -515,6 +656,7 @@ interface ConditionNonNullableFields {
515
656
  interface ConditionalRatesNonNullableFields {
516
657
  conditions: ConditionNonNullableFields[];
517
658
  amount: string;
659
+ multiplyByQuantity: boolean;
518
660
  }
519
661
  interface LocalDeliveryOptionNonNullableFields {
520
662
  zipConfig?: ZipCodeConfigNonNullableFields;
@@ -1 +1 @@
1
- {"version":3,"file":"ecom-v1-local-delivery-option-local-delivery-options.types.js","sourceRoot":"","sources":["../../../src/ecom-v1-local-delivery-option-local-delivery-options.types.ts"],"names":[],"mappings":";;;AA8FA,IAAY,UAOX;AAPD,WAAY,UAAU;IACpB,uDAAuD;IACvD,iEAAmD,CAAA;IACnD,iBAAiB;IACjB,uBAAS,CAAA;IACT,YAAY;IACZ,uBAAS,CAAA;AACX,CAAC,EAPW,UAAU,0BAAV,UAAU,QAOrB;AAiED,IAAY,SAeX;AAfD,WAAY,SAAS;IACnB,cAAc;IACd,wBAAW,CAAA;IACX,eAAe;IACf,wBAAW,CAAA;IACX,iBAAiB;IACjB,wBAAW,CAAA;IACX,gBAAgB;IAChB,wBAAW,CAAA;IACX,cAAc;IACd,wBAAW,CAAA;IACX,gBAAgB;IAChB,wBAAW,CAAA;IACX,cAAc;IACd,wBAAW,CAAA;AACb,CAAC,EAfW,SAAS,yBAAT,SAAS,QAepB;AA8BD,IAAY,aAKX;AALD,WAAY,aAAa;IACvB,8CAA6B,CAAA;IAC7B,oDAAmC,CAAA;IACnC,kDAAiC,CAAA;IACjC,wDAAuC,CAAA;AACzC,CAAC,EALW,aAAa,6BAAb,aAAa,QAKxB;AAED,IAAY,eAOX;AAPD,WAAY,eAAe;IACzB,kFAA+D,CAAA;IAC/D,4BAAS,CAAA;IACT,4BAAS,CAAA;IACT,8BAAW,CAAA;IACX,4BAAS,CAAA;IACT,8BAAW,CAAA;AACb,CAAC,EAPW,eAAe,+BAAf,eAAe,QAO1B;AA0ED,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AA6OD,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":"ecom-v1-local-delivery-option-local-delivery-options.types.js","sourceRoot":"","sources":["../../../src/ecom-v1-local-delivery-option-local-delivery-options.types.ts"],"names":[],"mappings":";;;AAiIA,IAAY,UAOX;AAPD,WAAY,UAAU;IACpB,uDAAuD;IACvD,iEAAmD,CAAA;IACnD,iBAAiB;IACjB,uBAAS,CAAA;IACT,YAAY;IACZ,uBAAS,CAAA;AACX,CAAC,EAPW,UAAU,0BAAV,UAAU,QAOrB;AAmFD,IAAY,SAeX;AAfD,WAAY,SAAS;IACnB,cAAc;IACd,wBAAW,CAAA;IACX,eAAe;IACf,wBAAW,CAAA;IACX,iBAAiB;IACjB,wBAAW,CAAA;IACX,gBAAgB;IAChB,wBAAW,CAAA;IACX,cAAc;IACd,wBAAW,CAAA;IACX,gBAAgB;IAChB,wBAAW,CAAA;IACX,cAAc;IACd,wBAAW,CAAA;AACb,CAAC,EAfW,SAAS,yBAAT,SAAS,QAepB;AA4CD,IAAY,aAKX;AALD,WAAY,aAAa;IACvB,8CAA6B,CAAA;IAC7B,oDAAmC,CAAA;IACnC,kDAAiC,CAAA;IACjC,wDAAuC,CAAA;AACzC,CAAC,EALW,aAAa,6BAAb,aAAa,QAKxB;AAED,IAAY,eAOX;AAPD,WAAY,eAAe;IACzB,kFAA+D,CAAA;IAC/D,4BAAS,CAAA;IACT,4BAAS,CAAA;IACT,8BAAW,CAAA;IACX,4BAAS,CAAA;IACT,8BAAW,CAAA;AACb,CAAC,EAPW,eAAe,+BAAf,eAAe,QAO1B;AAyFD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AAwSD,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"}