@wix/auto_sdk_portfolio_synced-project 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 (25) hide show
  1. package/build/cjs/src/portfolio-syncedprojects-v1-synced-project-synced-project.types.d.ts +168 -41
  2. package/build/cjs/src/portfolio-syncedprojects-v1-synced-project-synced-project.types.js +1 -0
  3. package/build/cjs/src/portfolio-syncedprojects-v1-synced-project-synced-project.types.js.map +1 -1
  4. package/build/cjs/src/portfolio-syncedprojects-v1-synced-project-synced-project.universal.d.ts +168 -41
  5. package/build/cjs/src/portfolio-syncedprojects-v1-synced-project-synced-project.universal.js +1 -0
  6. package/build/cjs/src/portfolio-syncedprojects-v1-synced-project-synced-project.universal.js.map +1 -1
  7. package/build/es/src/portfolio-syncedprojects-v1-synced-project-synced-project.types.d.ts +168 -41
  8. package/build/es/src/portfolio-syncedprojects-v1-synced-project-synced-project.types.js +1 -0
  9. package/build/es/src/portfolio-syncedprojects-v1-synced-project-synced-project.types.js.map +1 -1
  10. package/build/es/src/portfolio-syncedprojects-v1-synced-project-synced-project.universal.d.ts +168 -41
  11. package/build/es/src/portfolio-syncedprojects-v1-synced-project-synced-project.universal.js +1 -0
  12. package/build/es/src/portfolio-syncedprojects-v1-synced-project-synced-project.universal.js.map +1 -1
  13. package/build/internal/cjs/src/portfolio-syncedprojects-v1-synced-project-synced-project.types.d.ts +168 -41
  14. package/build/internal/cjs/src/portfolio-syncedprojects-v1-synced-project-synced-project.types.js +1 -0
  15. package/build/internal/cjs/src/portfolio-syncedprojects-v1-synced-project-synced-project.types.js.map +1 -1
  16. package/build/internal/cjs/src/portfolio-syncedprojects-v1-synced-project-synced-project.universal.d.ts +168 -41
  17. package/build/internal/cjs/src/portfolio-syncedprojects-v1-synced-project-synced-project.universal.js +1 -0
  18. package/build/internal/cjs/src/portfolio-syncedprojects-v1-synced-project-synced-project.universal.js.map +1 -1
  19. package/build/internal/es/src/portfolio-syncedprojects-v1-synced-project-synced-project.types.d.ts +168 -41
  20. package/build/internal/es/src/portfolio-syncedprojects-v1-synced-project-synced-project.types.js +1 -0
  21. package/build/internal/es/src/portfolio-syncedprojects-v1-synced-project-synced-project.types.js.map +1 -1
  22. package/build/internal/es/src/portfolio-syncedprojects-v1-synced-project-synced-project.universal.d.ts +168 -41
  23. package/build/internal/es/src/portfolio-syncedprojects-v1-synced-project-synced-project.universal.js +1 -0
  24. package/build/internal/es/src/portfolio-syncedprojects-v1-synced-project-synced-project.universal.js.map +1 -1
  25. package/package.json +2 -2
@@ -1,15 +1,30 @@
1
1
  export interface SyncedProject {
2
- /** Project ID in Portfolio - if project was yet to be create, will be None */
2
+ /**
3
+ * Project ID in Portfolio - if project was yet to be create, will be None
4
+ * @format GUID
5
+ */
3
6
  portfolioProjectId?: string | null;
4
- /** External Project ID */
7
+ /**
8
+ * External Project ID
9
+ * @maxLength 50
10
+ */
5
11
  externalId?: string;
6
- /** Project name */
12
+ /**
13
+ * Project name
14
+ * @maxLength 100
15
+ */
7
16
  title?: string | null;
8
17
  /** Project media count */
9
18
  mediaCount?: number;
10
- /** Project image url */
19
+ /**
20
+ * Project image url
21
+ * @format WEB_URL
22
+ */
11
23
  coverImage?: string | null;
12
- /** Project url in external */
24
+ /**
25
+ * Project url in external
26
+ * @format WEB_URL
27
+ */
13
28
  link?: string | null;
14
29
  /**
15
30
  * Represents the last time project was synced - returned only if external project is synced
@@ -54,19 +69,26 @@ export interface SyncProjectPagingEvent {
54
69
  projectSyncRevision?: Date | null;
55
70
  }
56
71
  export interface SyncSiteEvent {
57
- /** Portfolio instance id */
72
+ /**
73
+ * Portfolio instance id
74
+ * @format GUID
75
+ */
58
76
  instanceId?: string;
59
77
  /** Paging */
60
78
  paging?: CursorPaging;
61
79
  }
62
80
  export interface CursorPaging {
63
- /** Maximum number of items to return in the results. */
81
+ /**
82
+ * Maximum number of items to return in the results.
83
+ * @max 100
84
+ */
64
85
  limit?: number | null;
65
86
  /**
66
87
  * Pointer to the next or previous page in the list of results.
67
88
  *
68
89
  * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
69
90
  * Not relevant for the first request.
91
+ * @maxLength 16000
70
92
  */
71
93
  cursor?: string | null;
72
94
  }
@@ -101,9 +123,15 @@ export interface PagingMetadataV2 {
101
123
  cursors?: Cursors;
102
124
  }
103
125
  export interface Cursors {
104
- /** Cursor string pointing to the next page in the list of results. */
126
+ /**
127
+ * Cursor string pointing to the next page in the list of results.
128
+ * @maxLength 16000
129
+ */
105
130
  next?: string | null;
106
- /** Cursor pointing to the previous page in the list of results. */
131
+ /**
132
+ * Cursor pointing to the previous page in the list of results.
133
+ * @maxLength 16000
134
+ */
107
135
  prev?: string | null;
108
136
  }
109
137
  export interface SyncProjectResponse {
@@ -233,6 +261,7 @@ export interface ItemCreatedMediaCallbackRequest {
233
261
  width?: number | null;
234
262
  height?: number | null;
235
263
  fileOutput?: MediaFileOutput;
264
+ /** @format GUID */
236
265
  siteId?: string | null;
237
266
  }
238
267
  export interface MediaFileOutput {
@@ -270,6 +299,7 @@ export interface ProjectCoverImageCreatedMediaCallbackRequest {
270
299
  width?: number | null;
271
300
  height?: number | null;
272
301
  fileOutput?: MediaFileOutput;
302
+ /** @format GUID */
273
303
  siteId?: string | null;
274
304
  }
275
305
  export interface ProjectCoverImageCreatedMediaCallbackResponse {
@@ -305,7 +335,10 @@ export interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
305
335
  studioAssigned?: StudioAssigned;
306
336
  /** Emitted when Studio is detached. */
307
337
  studioUnassigned?: StudioUnassigned;
308
- /** A meta site id. */
338
+ /**
339
+ * A meta site id.
340
+ * @format GUID
341
+ */
309
342
  metaSiteId?: string;
310
343
  /** A meta site version. Monotonically increasing. */
311
344
  version?: string;
@@ -314,6 +347,7 @@ export interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
314
347
  /**
315
348
  * TODO(meta-site): Change validation once validations are disabled for consumers
316
349
  * More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
350
+ * @maxSize 4000
317
351
  */
318
352
  assets?: Asset[];
319
353
  }
@@ -351,9 +385,15 @@ export interface MetaSiteSpecialEventPayloadOneOf {
351
385
  studioUnassigned?: StudioUnassigned;
352
386
  }
353
387
  export interface Asset {
354
- /** An application definition id (app_id in dev-center). For legacy reasons may be UUID or a string (from Java Enum). */
388
+ /**
389
+ * An application definition id (app_id in dev-center). For legacy reasons may be UUID or a string (from Java Enum).
390
+ * @maxLength 36
391
+ */
355
392
  appDefId?: string;
356
- /** An instance id. For legacy reasons may be UUID or a string. */
393
+ /**
394
+ * An instance id. For legacy reasons may be UUID or a string.
395
+ * @maxLength 200
396
+ */
357
397
  instanceId?: string;
358
398
  /** An application state. */
359
399
  state?: State;
@@ -366,9 +406,15 @@ export declare enum State {
366
406
  DEMO = "DEMO"
367
407
  }
368
408
  export interface SiteCreated {
369
- /** A template identifier (empty if not created from a template). */
409
+ /**
410
+ * A template identifier (empty if not created from a template).
411
+ * @maxLength 36
412
+ */
370
413
  originTemplateId?: string;
371
- /** An account id of the owner. */
414
+ /**
415
+ * An account id of the owner.
416
+ * @format GUID
417
+ */
372
418
  ownerId?: string;
373
419
  /** A context in which meta site was created. */
374
420
  context?: SiteCreatedContext;
@@ -377,9 +423,13 @@ export interface SiteCreated {
377
423
  *
378
424
  * In case of a creation from a template it's a template id.
379
425
  * In case of a site duplication ("Save As" in dashboard or duplicate in UM) it's an id of a source site.
426
+ * @format GUID
380
427
  */
381
428
  originMetaSiteId?: string | null;
382
- /** A meta site name (URL slug). */
429
+ /**
430
+ * A meta site name (URL slug).
431
+ * @maxLength 20
432
+ */
383
433
  siteName?: string;
384
434
  /** A namespace. */
385
435
  namespace?: Namespace;
@@ -476,9 +526,15 @@ export declare enum Namespace {
476
526
  }
477
527
  /** Site transferred to another user. */
478
528
  export interface SiteTransferred {
479
- /** A previous owner id (user that transfers meta site). */
529
+ /**
530
+ * A previous owner id (user that transfers meta site).
531
+ * @format GUID
532
+ */
480
533
  oldOwnerId?: string;
481
- /** A new owner id (user that accepts meta site). */
534
+ /**
535
+ * A new owner id (user that accepts meta site).
536
+ * @format GUID
537
+ */
482
538
  newOwnerId?: string;
483
539
  }
484
540
  /** Soft deletion of the meta site. Could be restored. */
@@ -491,16 +547,23 @@ export interface DeleteContext {
491
547
  dateDeleted?: Date | null;
492
548
  /** A status. */
493
549
  deleteStatus?: DeleteStatus;
494
- /** A reason (flow). */
550
+ /**
551
+ * A reason (flow).
552
+ * @maxLength 255
553
+ */
495
554
  deleteOrigin?: string;
496
- /** A service that deleted it. */
555
+ /**
556
+ * A service that deleted it.
557
+ * @maxLength 255
558
+ */
497
559
  initiatorId?: string | null;
498
560
  }
499
561
  export declare enum DeleteStatus {
500
562
  UNKNOWN = "UNKNOWN",
501
563
  TRASH = "TRASH",
502
564
  DELETED = "DELETED",
503
- PENDING_PURGE = "PENDING_PURGE"
565
+ PENDING_PURGE = "PENDING_PURGE",
566
+ PURGED_EXTERNALLY = "PURGED_EXTERNALLY"
504
567
  }
505
568
  /** Restoration of the meta site. */
506
569
  export interface SiteUndeleted {
@@ -509,7 +572,11 @@ export interface SiteUndeleted {
509
572
  export interface SitePublished {
510
573
  }
511
574
  export interface SiteUnpublished {
512
- /** A list of URLs previously associated with the meta site. */
575
+ /**
576
+ * A list of URLs previously associated with the meta site.
577
+ * @maxLength 4000
578
+ * @maxSize 10000
579
+ */
513
580
  urls?: string[];
514
581
  }
515
582
  export interface SiteMarkedAsTemplate {
@@ -532,30 +599,60 @@ export interface SiteMarkedAsWixSite {
532
599
  * To ensure this, the TPA on the template gets a new instance_id.
533
600
  */
534
601
  export interface ServiceProvisioned {
535
- /** Either UUID or EmbeddedServiceType. */
602
+ /**
603
+ * Either UUID or EmbeddedServiceType.
604
+ * @maxLength 36
605
+ */
536
606
  appDefId?: string;
537
- /** Not only UUID. Something here could be something weird. */
607
+ /**
608
+ * Not only UUID. Something here could be something weird.
609
+ * @maxLength 36
610
+ */
538
611
  instanceId?: string;
539
- /** An instance id from which this instance is originated. */
612
+ /**
613
+ * An instance id from which this instance is originated.
614
+ * @maxLength 36
615
+ */
540
616
  originInstanceId?: string;
541
- /** A version. */
617
+ /**
618
+ * A version.
619
+ * @maxLength 500
620
+ */
542
621
  version?: string | null;
543
- /** The origin meta site id */
622
+ /**
623
+ * The origin meta site id
624
+ * @format GUID
625
+ */
544
626
  originMetaSiteId?: string | null;
545
627
  }
546
628
  export interface ServiceRemoved {
547
- /** Either UUID or EmbeddedServiceType. */
629
+ /**
630
+ * Either UUID or EmbeddedServiceType.
631
+ * @maxLength 36
632
+ */
548
633
  appDefId?: string;
549
- /** Not only UUID. Something here could be something weird. */
634
+ /**
635
+ * Not only UUID. Something here could be something weird.
636
+ * @maxLength 36
637
+ */
550
638
  instanceId?: string;
551
- /** A version. */
639
+ /**
640
+ * A version.
641
+ * @maxLength 500
642
+ */
552
643
  version?: string | null;
553
644
  }
554
645
  /** Rename of the site. Meaning, free public url has been changed as well. */
555
646
  export interface SiteRenamed {
556
- /** A new meta site name (URL slug). */
647
+ /**
648
+ * A new meta site name (URL slug).
649
+ * @maxLength 20
650
+ */
557
651
  newSiteName?: string;
558
- /** A previous meta site name (URL slug). */
652
+ /**
653
+ * A previous meta site name (URL slug).
654
+ * @maxLength 255
655
+ */
559
656
  oldSiteName?: string;
560
657
  }
561
658
  /**
@@ -584,9 +681,15 @@ export interface SyncAllSitesEvent {
584
681
  paging?: CursorPaging;
585
682
  }
586
683
  export interface MessageEnvelope {
587
- /** App instance ID. */
684
+ /**
685
+ * App instance ID.
686
+ * @format GUID
687
+ */
588
688
  instanceId?: string | null;
589
- /** Event type. */
689
+ /**
690
+ * Event type.
691
+ * @maxLength 150
692
+ */
590
693
  eventType?: string;
591
694
  /** The identification type and identity data. */
592
695
  identity?: IdentificationData;
@@ -594,26 +697,50 @@ export interface MessageEnvelope {
594
697
  data?: string;
595
698
  }
596
699
  export interface IdentificationData extends IdentificationDataIdOneOf {
597
- /** ID of a site visitor that has not logged in to the site. */
700
+ /**
701
+ * ID of a site visitor that has not logged in to the site.
702
+ * @format GUID
703
+ */
598
704
  anonymousVisitorId?: string;
599
- /** ID of a site visitor that has logged in to the site. */
705
+ /**
706
+ * ID of a site visitor that has logged in to the site.
707
+ * @format GUID
708
+ */
600
709
  memberId?: string;
601
- /** ID of a Wix user (site owner, contributor, etc.). */
710
+ /**
711
+ * ID of a Wix user (site owner, contributor, etc.).
712
+ * @format GUID
713
+ */
602
714
  wixUserId?: string;
603
- /** ID of an app. */
715
+ /**
716
+ * ID of an app.
717
+ * @format GUID
718
+ */
604
719
  appId?: string;
605
720
  /** @readonly */
606
721
  identityType?: WebhookIdentityType;
607
722
  }
608
723
  /** @oneof */
609
724
  export interface IdentificationDataIdOneOf {
610
- /** ID of a site visitor that has not logged in to the site. */
725
+ /**
726
+ * ID of a site visitor that has not logged in to the site.
727
+ * @format GUID
728
+ */
611
729
  anonymousVisitorId?: string;
612
- /** ID of a site visitor that has logged in to the site. */
730
+ /**
731
+ * ID of a site visitor that has logged in to the site.
732
+ * @format GUID
733
+ */
613
734
  memberId?: string;
614
- /** ID of a Wix user (site owner, contributor, etc.). */
735
+ /**
736
+ * ID of a Wix user (site owner, contributor, etc.).
737
+ * @format GUID
738
+ */
615
739
  wixUserId?: string;
616
- /** ID of an app. */
740
+ /**
741
+ * ID of an app.
742
+ * @format GUID
743
+ */
617
744
  appId?: string;
618
745
  }
619
746
  export declare enum WebhookIdentityType {
@@ -118,6 +118,7 @@ var DeleteStatus;
118
118
  DeleteStatus["TRASH"] = "TRASH";
119
119
  DeleteStatus["DELETED"] = "DELETED";
120
120
  DeleteStatus["PENDING_PURGE"] = "PENDING_PURGE";
121
+ DeleteStatus["PURGED_EXTERNALLY"] = "PURGED_EXTERNALLY";
121
122
  })(DeleteStatus || (exports.DeleteStatus = DeleteStatus = {}));
122
123
  var WebhookIdentityType;
123
124
  (function (WebhookIdentityType) {
@@ -1 +1 @@
1
- {"version":3,"file":"portfolio-syncedprojects-v1-synced-project-synced-project.types.js","sourceRoot":"","sources":["../../../src/portfolio-syncedprojects-v1-synced-project-synced-project.types.ts"],"names":[],"mappings":";;;AAsBA,IAAY,UASX;AATD,WAAY,UAAU;IACpB,6BAA6B;IAC7B,uCAAyB,CAAA;IACzB,kCAAkC;IAClC,iCAAmB,CAAA;IACnB,kCAAkC;IAClC,iCAAmB,CAAA;IACnB,yBAAyB;IACzB,+BAAiB,CAAA;AACnB,CAAC,EATW,UAAU,0BAAV,UAAU,QASrB;AA0WD,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,4BAAmB,CAAA;IACnB,8BAAqB,CAAA;IACrB,4BAAmB,CAAA;IACnB,sBAAa,CAAA;AACf,CAAC,EANW,KAAK,qBAAL,KAAK,QAMhB;AAsBD,IAAY,kBAaX;AAbD,WAAY,kBAAkB;IAC5B,6EAA6E;IAC7E,qCAAe,CAAA;IACf,6CAA6C;IAC7C,qDAA+B,CAAA;IAC/B,wEAAwE;IACxE,+EAAyD,CAAA;IACzD,oCAAoC;IACpC,6CAAuB,CAAA;IACvB,wGAAwG;IACxG,6DAAuC,CAAA;IACvC,2DAA2D;IAC3D,qCAAe,CAAA;AACjB,CAAC,EAbW,kBAAkB,kCAAlB,kBAAkB,QAa7B;AAED,IAAY,SA2EX;AA3ED,WAAY,SAAS;IACnB,oDAAuC,CAAA;IACvC,qHAAqH;IACrH,wBAAW,CAAA;IACX,6KAA6K;IAC7K,oCAAuB,CAAA;IACvB,0KAA0K;IAC1K,8BAAiB,CAAA;IACjB,6RAA6R;IAC7R,4DAA+C,CAAA;IAC/C,wHAAwH;IACxH,8BAAiB,CAAA;IACjB,kJAAkJ;IAClJ,4BAAe,CAAA;IACf,2HAA2H;IAC3H,kDAAqC,CAAA;IACrC,iIAAiI;IACjI,kCAAqB,CAAA;IACrB,sJAAsJ;IACtJ,4BAAe,CAAA;IACf,wJAAwJ;IACxJ,wCAA2B,CAAA;IAC3B,0FAA0F;IAC1F,oDAAuC,CAAA;IACvC,0FAA0F;IAC1F,sDAAyC,CAAA;IACzC;;;;OAIG;IACH,sCAAyB,CAAA;IACzB;;;;OAIG;IACH,oDAAuC,CAAA;IACvC,oGAAoG;IACpG,gDAAmC,CAAA;IACnC,sDAAsD;IACtD,gDAAmC,CAAA;IACnC,2CAA2C;IAC3C,kCAAqB,CAAA;IACrB,uDAAuD;IACvD,kCAAqB,CAAA;IACrB;;;OAGG;IACH,sDAAyC,CAAA;IACzC,2EAA2E;IAC3E,0BAAa,CAAA;IACb;;;;OAIG;IACH,4CAA+B,CAAA;IAC/B,0EAA0E;IAC1E,8BAAiB,CAAA;IACjB;;;OAGG;IACH,0CAA6B,CAAA;IAC7B,2BAA2B;IAC3B,4BAAe,CAAA;IACf,gCAAgC;IAChC,0DAA6C,CAAA;IAC7C;;;OAGG;IACH,8DAAiD,CAAA;AACnD,CAAC,EA3EW,SAAS,yBAAT,SAAS,QA2EpB;AA2BD,IAAY,YAKX;AALD,WAAY,YAAY;IACtB,mCAAmB,CAAA;IACnB,+BAAe,CAAA;IACf,mCAAmB,CAAA;IACnB,+CAA+B,CAAA;AACjC,CAAC,EALW,YAAY,4BAAZ,YAAY,QAKvB;AA8HD,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":"portfolio-syncedprojects-v1-synced-project-synced-project.types.js","sourceRoot":"","sources":["../../../src/portfolio-syncedprojects-v1-synced-project-synced-project.types.ts"],"names":[],"mappings":";;;AAqCA,IAAY,UASX;AATD,WAAY,UAAU;IACpB,6BAA6B;IAC7B,uCAAyB,CAAA;IACzB,kCAAkC;IAClC,iCAAmB,CAAA;IACnB,kCAAkC;IAClC,iCAAmB,CAAA;IACnB,yBAAyB;IACzB,+BAAiB,CAAA;AACnB,CAAC,EATW,UAAU,0BAAV,UAAU,QASrB;AAmYD,IAAY,KAMX;AAND,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,4BAAmB,CAAA;IACnB,8BAAqB,CAAA;IACrB,4BAAmB,CAAA;IACnB,sBAAa,CAAA;AACf,CAAC,EANW,KAAK,qBAAL,KAAK,QAMhB;AAgCD,IAAY,kBAaX;AAbD,WAAY,kBAAkB;IAC5B,6EAA6E;IAC7E,qCAAe,CAAA;IACf,6CAA6C;IAC7C,qDAA+B,CAAA;IAC/B,wEAAwE;IACxE,+EAAyD,CAAA;IACzD,oCAAoC;IACpC,6CAAuB,CAAA;IACvB,wGAAwG;IACxG,6DAAuC,CAAA;IACvC,2DAA2D;IAC3D,qCAAe,CAAA;AACjB,CAAC,EAbW,kBAAkB,kCAAlB,kBAAkB,QAa7B;AAED,IAAY,SA2EX;AA3ED,WAAY,SAAS;IACnB,oDAAuC,CAAA;IACvC,qHAAqH;IACrH,wBAAW,CAAA;IACX,6KAA6K;IAC7K,oCAAuB,CAAA;IACvB,0KAA0K;IAC1K,8BAAiB,CAAA;IACjB,6RAA6R;IAC7R,4DAA+C,CAAA;IAC/C,wHAAwH;IACxH,8BAAiB,CAAA;IACjB,kJAAkJ;IAClJ,4BAAe,CAAA;IACf,2HAA2H;IAC3H,kDAAqC,CAAA;IACrC,iIAAiI;IACjI,kCAAqB,CAAA;IACrB,sJAAsJ;IACtJ,4BAAe,CAAA;IACf,wJAAwJ;IACxJ,wCAA2B,CAAA;IAC3B,0FAA0F;IAC1F,oDAAuC,CAAA;IACvC,0FAA0F;IAC1F,sDAAyC,CAAA;IACzC;;;;OAIG;IACH,sCAAyB,CAAA;IACzB;;;;OAIG;IACH,oDAAuC,CAAA;IACvC,oGAAoG;IACpG,gDAAmC,CAAA;IACnC,sDAAsD;IACtD,gDAAmC,CAAA;IACnC,2CAA2C;IAC3C,kCAAqB,CAAA;IACrB,uDAAuD;IACvD,kCAAqB,CAAA;IACrB;;;OAGG;IACH,sDAAyC,CAAA;IACzC,2EAA2E;IAC3E,0BAAa,CAAA;IACb;;;;OAIG;IACH,4CAA+B,CAAA;IAC/B,0EAA0E;IAC1E,8BAAiB,CAAA;IACjB;;;OAGG;IACH,0CAA6B,CAAA;IAC7B,2BAA2B;IAC3B,4BAAe,CAAA;IACf,gCAAgC;IAChC,0DAA6C,CAAA;IAC7C;;;OAGG;IACH,8DAAiD,CAAA;AACnD,CAAC,EA3EW,SAAS,yBAAT,SAAS,QA2EpB;AAuCD,IAAY,YAMX;AAND,WAAY,YAAY;IACtB,mCAAmB,CAAA;IACnB,+BAAe,CAAA;IACf,mCAAmB,CAAA;IACnB,+CAA+B,CAAA;IAC/B,uDAAuC,CAAA;AACzC,CAAC,EANW,YAAY,4BAAZ,YAAY,QAMvB;AA8LD,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"}