@wix/auto_sdk_blog_categories 1.0.9 → 1.0.11

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.
@@ -169,7 +169,7 @@ export interface CreateCategoryRequest {
169
169
  * retrieve the url field in the response in addition to the category’s base fields.
170
170
  * @maxSize 10
171
171
  */
172
- fieldsets?: Field[];
172
+ fieldsets?: FieldWithLiterals[];
173
173
  }
174
174
  export declare enum Field {
175
175
  UNKNOWN = "UNKNOWN",
@@ -178,6 +178,8 @@ export declare enum Field {
178
178
  /** Includes SEO data. */
179
179
  SEO = "SEO"
180
180
  }
181
+ /** @enumType */
182
+ export type FieldWithLiterals = Field | 'UNKNOWN' | 'URL' | 'SEO';
181
183
  export interface CreateCategoryResponse {
182
184
  /** Category info. */
183
185
  category?: Category;
@@ -199,7 +201,7 @@ export interface BulkCreateCategoriesRequest {
199
201
  * retrieve the url field in the response in addition to the category’s base fields.
200
202
  * @maxSize 10
201
203
  */
202
- fieldsets?: Field[];
204
+ fieldsets?: FieldWithLiterals[];
203
205
  }
204
206
  export interface BulkCreateCategoriesResponse {
205
207
  /** Categories created by bulk action. */
@@ -256,7 +258,7 @@ export interface BulkUpdateCategoriesRequest {
256
258
  * retrieve the url field in the response in addition to the category’s base fields.
257
259
  * @maxSize 10
258
260
  */
259
- fieldsets?: Field[];
261
+ fieldsets?: FieldWithLiterals[];
260
262
  }
261
263
  export interface MaskedCategory {
262
264
  /** Category */
@@ -281,7 +283,7 @@ export interface UpdateCategoryRequest {
281
283
  * retrieve the url field in the response in addition to the category’s base fields.
282
284
  * @maxSize 10
283
285
  */
284
- fieldsets?: Field[];
286
+ fieldsets?: FieldWithLiterals[];
285
287
  }
286
288
  export interface UpdateCategoryResponse {
287
289
  /** Category info. */
@@ -317,7 +319,7 @@ export interface GetCategoryRequest {
317
319
  * retrieve the url field in the response in addition to the category’s base fields.
318
320
  * @maxSize 10
319
321
  */
320
- fieldsets?: Field[];
322
+ fieldsets?: FieldWithLiterals[];
321
323
  }
322
324
  export interface GetCategoryResponse {
323
325
  /** Category info. */
@@ -338,7 +340,7 @@ export interface GetCategoryBySlugRequest {
338
340
  * retrieve the url field in the response in addition to the category’s base fields.
339
341
  * @maxSize 10
340
342
  */
341
- fieldsets?: Field[];
343
+ fieldsets?: FieldWithLiterals[];
342
344
  /**
343
345
  * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
344
346
  * Language of the category to retrieve.
@@ -361,7 +363,7 @@ export interface ListCategoriesRequest {
361
363
  * retrieve the url field in the response in addition to the category’s base fields.
362
364
  * @maxSize 10
363
365
  */
364
- fieldsets?: Field[];
366
+ fieldsets?: FieldWithLiterals[];
365
367
  /**
366
368
  * Language filter.
367
369
  *
@@ -426,7 +428,7 @@ export interface QueryCategoriesRequest {
426
428
  * retrieve the url field in the response in addition to the category’s base fields.
427
429
  * @maxSize 10
428
430
  */
429
- fieldsets?: Field[];
431
+ fieldsets?: FieldWithLiterals[];
430
432
  }
431
433
  export interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
432
434
  /** Paging options to limit and skip the number of items. */
@@ -463,12 +465,14 @@ export interface Sorting {
463
465
  */
464
466
  fieldName?: string;
465
467
  /** Sort order. */
466
- order?: SortOrder;
468
+ order?: SortOrderWithLiterals;
467
469
  }
468
470
  export declare enum SortOrder {
469
471
  ASC = "ASC",
470
472
  DESC = "DESC"
471
473
  }
474
+ /** @enumType */
475
+ export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
472
476
  export interface Paging {
473
477
  /**
474
478
  * Number of items to load.
@@ -552,25 +556,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
552
556
  updatedEvent?: EntityUpdatedEvent;
553
557
  deletedEvent?: EntityDeletedEvent;
554
558
  actionEvent?: ActionEvent;
555
- /**
556
- * Unique event ID.
557
- * Allows clients to ignore duplicate webhooks.
558
- */
559
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
559
560
  _id?: string;
560
561
  /**
561
- * Assumes actions are also always typed to an entity_type
562
- * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
562
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
563
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
563
564
  */
564
565
  entityFqdn?: string;
565
566
  /**
566
- * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
567
- * This is although the created/updated/deleted notion is duplication of the oneof types
568
- * Example: created/updated/deleted/started/completed/email_opened
567
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
568
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
569
569
  */
570
570
  slug?: string;
571
571
  /** ID of the entity associated with the event. */
572
572
  entityId?: string;
573
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
573
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
574
574
  eventTime?: Date | null;
575
575
  /**
576
576
  * Whether the event was triggered as a result of a privacy regulation application
@@ -580,12 +580,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
580
580
  /** If present, indicates the action that triggered the event. */
581
581
  originatedFrom?: string | null;
582
582
  /**
583
- * A sequence number defining the order of updates to the underlying entity.
584
- * For example, given that some entity was updated at 16:00 and than again at 16:01,
585
- * it is guaranteed that the sequence number of the second update is strictly higher than the first.
586
- * As the consumer, you can use this value to ensure that you handle messages in the correct order.
587
- * To do so, you will need to persist this number on your end, and compare the sequence number from the
588
- * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
583
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
584
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
589
585
  */
590
586
  entityEventSequence?: string | null;
591
587
  }
@@ -611,7 +607,7 @@ export interface EntityUpdatedEvent {
611
607
  currentEntity?: string;
612
608
  }
613
609
  export interface EntityDeletedEvent {
614
- /** Entity that was deleted */
610
+ /** Entity that was deleted. */
615
611
  deletedEntity?: string | null;
616
612
  }
617
613
  export interface ActionEvent {
@@ -655,7 +651,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
655
651
  */
656
652
  appId?: string;
657
653
  /** @readonly */
658
- identityType?: WebhookIdentityType;
654
+ identityType?: WebhookIdentityTypeWithLiterals;
659
655
  }
660
656
  /** @oneof */
661
657
  export interface IdentificationDataIdOneOf {
@@ -687,6 +683,8 @@ export declare enum WebhookIdentityType {
687
683
  WIX_USER = "WIX_USER",
688
684
  APP = "APP"
689
685
  }
686
+ /** @enumType */
687
+ export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
690
688
  export interface BaseEventMetadata {
691
689
  /**
692
690
  * App instance ID.
@@ -702,25 +700,21 @@ export interface BaseEventMetadata {
702
700
  identity?: IdentificationData;
703
701
  }
704
702
  export interface EventMetadata extends BaseEventMetadata {
705
- /**
706
- * Unique event ID.
707
- * Allows clients to ignore duplicate webhooks.
708
- */
703
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
709
704
  _id?: string;
710
705
  /**
711
- * Assumes actions are also always typed to an entity_type
712
- * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
706
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
707
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
713
708
  */
714
709
  entityFqdn?: string;
715
710
  /**
716
- * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
717
- * This is although the created/updated/deleted notion is duplication of the oneof types
718
- * Example: created/updated/deleted/started/completed/email_opened
711
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
712
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
719
713
  */
720
714
  slug?: string;
721
715
  /** ID of the entity associated with the event. */
722
716
  entityId?: string;
723
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
717
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
724
718
  eventTime?: Date | null;
725
719
  /**
726
720
  * Whether the event was triggered as a result of a privacy regulation application
@@ -730,12 +724,8 @@ export interface EventMetadata extends BaseEventMetadata {
730
724
  /** If present, indicates the action that triggered the event. */
731
725
  originatedFrom?: string | null;
732
726
  /**
733
- * A sequence number defining the order of updates to the underlying entity.
734
- * For example, given that some entity was updated at 16:00 and than again at 16:01,
735
- * it is guaranteed that the sequence number of the second update is strictly higher than the first.
736
- * As the consumer, you can use this value to ensure that you handle messages in the correct order.
737
- * To do so, you will need to persist this number on your end, and compare the sequence number from the
738
- * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
727
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
728
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
739
729
  */
740
730
  entityEventSequence?: string | null;
741
731
  }
@@ -819,7 +809,7 @@ export interface CreateCategoryOptions {
819
809
  * retrieve the url field in the response in addition to the category’s base fields.
820
810
  * @maxSize 10
821
811
  */
822
- fieldsets?: Field[];
812
+ fieldsets?: FieldWithLiterals[];
823
813
  }
824
814
  /**
825
815
  * Updates a category.
@@ -912,7 +902,7 @@ export interface UpdateCategoryOptions {
912
902
  * retrieve the url field in the response in addition to the category’s base fields.
913
903
  * @maxSize 10
914
904
  */
915
- fieldsets?: Field[];
905
+ fieldsets?: FieldWithLiterals[];
916
906
  }
917
907
  /**
918
908
  * Gets a category with the specified ID.
@@ -943,7 +933,7 @@ export interface GetCategoryOptions {
943
933
  * retrieve the url field in the response in addition to the category’s base fields.
944
934
  * @maxSize 10
945
935
  */
946
- fieldsets?: Field[];
936
+ fieldsets?: FieldWithLiterals[];
947
937
  }
948
938
  /**
949
939
  * Gets a category with the specified slug.
@@ -980,7 +970,7 @@ export interface GetCategoryBySlugOptions {
980
970
  * retrieve the url field in the response in addition to the category’s base fields.
981
971
  * @maxSize 10
982
972
  */
983
- fieldsets?: Field[];
973
+ fieldsets?: FieldWithLiterals[];
984
974
  /**
985
975
  * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
986
976
  * Language of the category to retrieve.
@@ -1028,7 +1018,7 @@ export interface ListCategoriesOptions {
1028
1018
  * retrieve the url field in the response in addition to the category’s base fields.
1029
1019
  * @maxSize 10
1030
1020
  */
1031
- fieldsets?: Field[];
1021
+ fieldsets?: FieldWithLiterals[];
1032
1022
  /**
1033
1023
  * Language filter.
1034
1024
  *
@@ -1073,7 +1063,7 @@ export interface QueryCategoriesOptions {
1073
1063
 
1074
1064
  * @maxSize 10
1075
1065
  */
1076
- fieldsets?: Field[] | undefined;
1066
+ fieldsets?: FieldWithLiterals[] | undefined;
1077
1067
  }
1078
1068
  interface QueryOffsetResult {
1079
1069
  currentPage: number | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"blog-v3-category-categories.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-category-categories.universal.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"blog-v3-category-categories.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-category-categories.universal.ts"],"names":[],"mappings":"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"}
@@ -197,7 +197,7 @@ export interface CreateCategoryRequest {
197
197
  * retrieve the url field in the response in addition to the category’s base fields.
198
198
  * @maxSize 10
199
199
  */
200
- fieldsets?: Field[];
200
+ fieldsets?: FieldWithLiterals[];
201
201
  }
202
202
  export declare enum Field {
203
203
  UNKNOWN = "UNKNOWN",
@@ -206,6 +206,8 @@ export declare enum Field {
206
206
  /** Includes SEO data. */
207
207
  SEO = "SEO"
208
208
  }
209
+ /** @enumType */
210
+ export type FieldWithLiterals = Field | 'UNKNOWN' | 'URL' | 'SEO';
209
211
  export interface CreateCategoryResponse {
210
212
  /** Category info. */
211
213
  category?: Category;
@@ -227,7 +229,7 @@ export interface BulkCreateCategoriesRequest {
227
229
  * retrieve the url field in the response in addition to the category’s base fields.
228
230
  * @maxSize 10
229
231
  */
230
- fieldsets?: Field[];
232
+ fieldsets?: FieldWithLiterals[];
231
233
  }
232
234
  export interface BulkCreateCategoriesResponse {
233
235
  /** Categories created by bulk action. */
@@ -284,7 +286,7 @@ export interface BulkUpdateCategoriesRequest {
284
286
  * retrieve the url field in the response in addition to the category’s base fields.
285
287
  * @maxSize 10
286
288
  */
287
- fieldsets?: Field[];
289
+ fieldsets?: FieldWithLiterals[];
288
290
  }
289
291
  export interface MaskedCategory {
290
292
  /** Category */
@@ -309,7 +311,7 @@ export interface UpdateCategoryRequest {
309
311
  * retrieve the url field in the response in addition to the category’s base fields.
310
312
  * @maxSize 10
311
313
  */
312
- fieldsets?: Field[];
314
+ fieldsets?: FieldWithLiterals[];
313
315
  }
314
316
  export interface UpdateCategoryResponse {
315
317
  /** Category info. */
@@ -345,7 +347,7 @@ export interface GetCategoryRequest {
345
347
  * retrieve the url field in the response in addition to the category’s base fields.
346
348
  * @maxSize 10
347
349
  */
348
- fieldsets?: Field[];
350
+ fieldsets?: FieldWithLiterals[];
349
351
  }
350
352
  export interface GetCategoryResponse {
351
353
  /** Category info. */
@@ -366,7 +368,7 @@ export interface GetCategoryBySlugRequest {
366
368
  * retrieve the url field in the response in addition to the category’s base fields.
367
369
  * @maxSize 10
368
370
  */
369
- fieldsets?: Field[];
371
+ fieldsets?: FieldWithLiterals[];
370
372
  /**
371
373
  * 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
372
374
  * Language of the category to retrieve.
@@ -389,7 +391,7 @@ export interface ListCategoriesRequest {
389
391
  * retrieve the url field in the response in addition to the category’s base fields.
390
392
  * @maxSize 10
391
393
  */
392
- fieldsets?: Field[];
394
+ fieldsets?: FieldWithLiterals[];
393
395
  /**
394
396
  * Language filter.
395
397
  *
@@ -453,7 +455,7 @@ export interface QueryCategoriesRequest {
453
455
  * retrieve the url field in the response in addition to the category’s base fields.
454
456
  * @maxSize 10
455
457
  */
456
- fieldsets?: Field[];
458
+ fieldsets?: FieldWithLiterals[];
457
459
  }
458
460
  export interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
459
461
  /** Paging options to limit and skip the number of items. */
@@ -490,12 +492,14 @@ export interface Sorting {
490
492
  */
491
493
  fieldName?: string;
492
494
  /** Sort order. */
493
- order?: SortOrder;
495
+ order?: SortOrderWithLiterals;
494
496
  }
495
497
  export declare enum SortOrder {
496
498
  ASC = "ASC",
497
499
  DESC = "DESC"
498
500
  }
501
+ /** @enumType */
502
+ export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
499
503
  export interface Paging {
500
504
  /**
501
505
  * Number of items to load.
@@ -579,25 +583,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
579
583
  updatedEvent?: EntityUpdatedEvent;
580
584
  deletedEvent?: EntityDeletedEvent;
581
585
  actionEvent?: ActionEvent;
582
- /**
583
- * Unique event ID.
584
- * Allows clients to ignore duplicate webhooks.
585
- */
586
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
586
587
  id?: string;
587
588
  /**
588
- * Assumes actions are also always typed to an entity_type
589
- * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
589
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
590
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
590
591
  */
591
592
  entityFqdn?: string;
592
593
  /**
593
- * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
594
- * This is although the created/updated/deleted notion is duplication of the oneof types
595
- * Example: created/updated/deleted/started/completed/email_opened
594
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
595
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
596
596
  */
597
597
  slug?: string;
598
598
  /** ID of the entity associated with the event. */
599
599
  entityId?: string;
600
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
600
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
601
601
  eventTime?: Date | null;
602
602
  /**
603
603
  * Whether the event was triggered as a result of a privacy regulation application
@@ -607,12 +607,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
607
607
  /** If present, indicates the action that triggered the event. */
608
608
  originatedFrom?: string | null;
609
609
  /**
610
- * A sequence number defining the order of updates to the underlying entity.
611
- * For example, given that some entity was updated at 16:00 and than again at 16:01,
612
- * it is guaranteed that the sequence number of the second update is strictly higher than the first.
613
- * As the consumer, you can use this value to ensure that you handle messages in the correct order.
614
- * To do so, you will need to persist this number on your end, and compare the sequence number from the
615
- * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
610
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
611
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
616
612
  */
617
613
  entityEventSequence?: string | null;
618
614
  }
@@ -640,7 +636,7 @@ export interface EntityUpdatedEvent {
640
636
  currentEntityAsJson?: string;
641
637
  }
642
638
  export interface EntityDeletedEvent {
643
- /** Entity that was deleted */
639
+ /** Entity that was deleted. */
644
640
  deletedEntityAsJson?: string | null;
645
641
  }
646
642
  export interface ActionEvent {
@@ -684,7 +680,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
684
680
  */
685
681
  appId?: string;
686
682
  /** @readonly */
687
- identityType?: WebhookIdentityType;
683
+ identityType?: WebhookIdentityTypeWithLiterals;
688
684
  }
689
685
  /** @oneof */
690
686
  export interface IdentificationDataIdOneOf {
@@ -716,3 +712,5 @@ export declare enum WebhookIdentityType {
716
712
  WIX_USER = "WIX_USER",
717
713
  APP = "APP"
718
714
  }
715
+ /** @enumType */
716
+ export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
@@ -1 +1 @@
1
- {"version":3,"file":"blog-v3-category-categories.types.js","sourceRoot":"","sources":["../../../../src/blog-v3-category-categories.types.ts"],"names":[],"mappings":";;;AAoNA,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,qBAAL,KAAK,QAMhB;AA0TD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AAwOD,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":"blog-v3-category-categories.types.js","sourceRoot":"","sources":["../../../../src/blog-v3-category-categories.types.ts"],"names":[],"mappings":";;;AAoNA,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EANW,KAAK,qBAAL,KAAK,QAMhB;AA6TD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AAmOD,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"}