@cloudfleet/sdk 0.0.1-95c9d9a → 0.0.1-965e662

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.
@@ -416,13 +416,24 @@ export declare const ClusterSchema: {
416
416
  readonly anyOf: readonly [{
417
417
  readonly type: "string";
418
418
  readonly format: "uri";
419
- readonly description: "URL of the Kubernetes cluster control plane. This is the endpoint that kubectl uses to connect to the cluster.";
419
+ readonly description: "URL signed by the private CA of the Kubernetes cluster control plane. This is the endpoint that kubectl uses to connect to the cluster. (Deprecated, use endpoint_public instead)";
420
420
  readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.cloudfleet.dev:6443";
421
421
  }, {
422
422
  readonly type: "string";
423
423
  readonly enum: readonly [""];
424
424
  }];
425
425
  };
426
+ readonly endpoint_public: {
427
+ readonly anyOf: readonly [{
428
+ readonly type: "string";
429
+ readonly format: "uri";
430
+ readonly description: "URL signed by a public CA of the Kubernetes cluster control plane. This is the endpoint that kubectl uses to connect to the cluster.";
431
+ readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.io";
432
+ }, {
433
+ readonly type: "string";
434
+ readonly enum: readonly [""];
435
+ }];
436
+ };
426
437
  readonly certificate_ca: {
427
438
  readonly type: "string";
428
439
  readonly description: "Certificate authority data for the kubernetes cluster. This is the root certificate authority for the cluster.";
@@ -492,10 +503,10 @@ export declare const FleetCreateInputSchema: {
492
503
  readonly type: "object";
493
504
  readonly properties: {
494
505
  readonly cpu: {
495
- readonly type: "number";
496
- readonly format: "float";
497
- readonly minimum: 8;
498
- readonly description: "CPU limit in cores.";
506
+ readonly type: "integer";
507
+ readonly minimum: 0;
508
+ readonly maximum: 100000;
509
+ readonly description: "CPU limit in cores. Maximum 100,000.";
499
510
  };
500
511
  };
501
512
  readonly additionalProperties: false;
@@ -506,14 +517,15 @@ export declare const FleetCreateInputSchema: {
506
517
  readonly properties: {
507
518
  readonly enabled: {
508
519
  readonly type: "boolean";
509
- readonly default: true;
510
520
  };
511
521
  readonly project: {
512
522
  readonly type: "string";
513
- readonly description: "Project GCP Project id to deploy instances into";
523
+ readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
524
+ readonly description: "GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.";
525
+ readonly example: "my-cloudfleet-project";
514
526
  };
515
527
  };
516
- readonly required: readonly ["project"];
528
+ readonly required: readonly ["enabled"];
517
529
  readonly additionalProperties: false;
518
530
  };
519
531
  readonly hetzner: {
@@ -521,13 +533,16 @@ export declare const FleetCreateInputSchema: {
521
533
  readonly properties: {
522
534
  readonly enabled: {
523
535
  readonly type: "boolean";
524
- readonly default: true;
525
536
  };
526
537
  readonly apiKey: {
527
538
  readonly type: "string";
528
- readonly description: "Hetzner Cloud API key with read / write access. On update, omit this field to keep the existing value.";
539
+ readonly maxLength: 64;
540
+ readonly minLength: 64;
541
+ readonly pattern: "^[A-Za-z0-9]+$";
542
+ readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
529
543
  };
530
544
  };
545
+ readonly required: readonly ["enabled"];
531
546
  readonly additionalProperties: false;
532
547
  };
533
548
  readonly aws: {
@@ -535,14 +550,15 @@ export declare const FleetCreateInputSchema: {
535
550
  readonly properties: {
536
551
  readonly enabled: {
537
552
  readonly type: "boolean";
538
- readonly default: true;
539
553
  };
540
554
  readonly controllerRoleArn: {
541
555
  readonly type: "string";
542
- readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
556
+ readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
557
+ readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
558
+ readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
543
559
  };
544
560
  };
545
- readonly required: readonly ["controllerRoleArn"];
561
+ readonly required: readonly ["enabled"];
546
562
  readonly additionalProperties: false;
547
563
  };
548
564
  readonly constraints: {
@@ -554,7 +570,9 @@ export declare const FleetCreateInputSchema: {
554
570
  readonly type: "string";
555
571
  readonly enum: readonly ["on-demand", "spot"];
556
572
  };
573
+ readonly minItems: 1;
557
574
  readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
575
+ readonly default: readonly ["on-demand", "spot"];
558
576
  };
559
577
  readonly 'kubernetes.io/arch': {
560
578
  readonly type: "array";
@@ -562,7 +580,9 @@ export declare const FleetCreateInputSchema: {
562
580
  readonly type: "string";
563
581
  readonly enum: readonly ["amd64", "arm64"];
564
582
  };
583
+ readonly minItems: 1;
565
584
  readonly description: "Allowed values for `kubernetes.io/arch`.";
585
+ readonly default: readonly ["amd64"];
566
586
  };
567
587
  readonly 'cfke.io/instance-family': {
568
588
  readonly type: "array";
@@ -587,6 +607,7 @@ export declare const FleetCreateInputSchema: {
587
607
  readonly scalingProfile: {
588
608
  readonly type: "string";
589
609
  readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
610
+ readonly default: "conservative";
590
611
  readonly example: "conservative";
591
612
  readonly enum: readonly ["aggressive", "conservative"];
592
613
  };
@@ -609,10 +630,10 @@ export declare const FleetSchema: {
609
630
  readonly type: "object";
610
631
  readonly properties: {
611
632
  readonly cpu: {
612
- readonly type: "number";
613
- readonly format: "float";
614
- readonly minimum: 8;
615
- readonly description: "CPU limit in cores.";
633
+ readonly type: "integer";
634
+ readonly minimum: 0;
635
+ readonly maximum: 100000;
636
+ readonly description: "CPU limit in cores. Maximum 100,000.";
616
637
  };
617
638
  };
618
639
  readonly additionalProperties: false;
@@ -623,14 +644,15 @@ export declare const FleetSchema: {
623
644
  readonly properties: {
624
645
  readonly enabled: {
625
646
  readonly type: "boolean";
626
- readonly default: true;
627
647
  };
628
648
  readonly project: {
629
649
  readonly type: "string";
630
- readonly description: "Project GCP Project id to deploy instances into";
650
+ readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
651
+ readonly description: "GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.";
652
+ readonly example: "my-cloudfleet-project";
631
653
  };
632
654
  };
633
- readonly required: readonly ["project"];
655
+ readonly required: readonly ["enabled"];
634
656
  readonly additionalProperties: false;
635
657
  };
636
658
  readonly hetzner: {
@@ -638,13 +660,14 @@ export declare const FleetSchema: {
638
660
  readonly properties: {
639
661
  readonly enabled: {
640
662
  readonly type: "boolean";
641
- readonly default: true;
642
663
  };
643
664
  readonly apiKey: {
644
665
  readonly type: "string";
645
- readonly description: "Hetzner Cloud API key with read / write access. On update, omit this field to keep the existing value.";
666
+ readonly pattern: "^\\*{64}$";
667
+ readonly description: "Redacted Hetzner API token. Returned as 64 asterisks when a token is configured; omitted otherwise. The real value is never echoed by the API.";
646
668
  };
647
669
  };
670
+ readonly required: readonly ["enabled"];
648
671
  readonly additionalProperties: false;
649
672
  };
650
673
  readonly aws: {
@@ -652,14 +675,15 @@ export declare const FleetSchema: {
652
675
  readonly properties: {
653
676
  readonly enabled: {
654
677
  readonly type: "boolean";
655
- readonly default: true;
656
678
  };
657
679
  readonly controllerRoleArn: {
658
680
  readonly type: "string";
659
- readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
681
+ readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
682
+ readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
683
+ readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
660
684
  };
661
685
  };
662
- readonly required: readonly ["controllerRoleArn"];
686
+ readonly required: readonly ["enabled"];
663
687
  readonly additionalProperties: false;
664
688
  };
665
689
  readonly constraints: {
@@ -671,7 +695,9 @@ export declare const FleetSchema: {
671
695
  readonly type: "string";
672
696
  readonly enum: readonly ["on-demand", "spot"];
673
697
  };
698
+ readonly minItems: 1;
674
699
  readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
700
+ readonly default: readonly ["on-demand", "spot"];
675
701
  };
676
702
  readonly 'kubernetes.io/arch': {
677
703
  readonly type: "array";
@@ -679,7 +705,9 @@ export declare const FleetSchema: {
679
705
  readonly type: "string";
680
706
  readonly enum: readonly ["amd64", "arm64"];
681
707
  };
708
+ readonly minItems: 1;
682
709
  readonly description: "Allowed values for `kubernetes.io/arch`.";
710
+ readonly default: readonly ["amd64"];
683
711
  };
684
712
  readonly 'cfke.io/instance-family': {
685
713
  readonly type: "array";
@@ -704,6 +732,7 @@ export declare const FleetSchema: {
704
732
  readonly scalingProfile: {
705
733
  readonly type: "string";
706
734
  readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
735
+ readonly default: "conservative";
707
736
  readonly example: "conservative";
708
737
  readonly enum: readonly ["aggressive", "conservative"];
709
738
  };
@@ -716,7 +745,7 @@ export declare const FleetSchema: {
716
745
  readonly example: "new-clouds-fleet";
717
746
  };
718
747
  };
719
- readonly required: readonly ["id"];
748
+ readonly required: readonly ["scalingProfile", "id"];
720
749
  readonly additionalProperties: false;
721
750
  };
722
751
  export declare const FleetUpdateInputSchema: {
@@ -726,10 +755,10 @@ export declare const FleetUpdateInputSchema: {
726
755
  readonly type: "object";
727
756
  readonly properties: {
728
757
  readonly cpu: {
729
- readonly type: "number";
730
- readonly format: "float";
731
- readonly minimum: 8;
732
- readonly description: "CPU limit in cores.";
758
+ readonly type: "integer";
759
+ readonly minimum: 0;
760
+ readonly maximum: 100000;
761
+ readonly description: "CPU limit in cores. Maximum 100,000.";
733
762
  };
734
763
  };
735
764
  readonly additionalProperties: false;
@@ -740,14 +769,15 @@ export declare const FleetUpdateInputSchema: {
740
769
  readonly properties: {
741
770
  readonly enabled: {
742
771
  readonly type: "boolean";
743
- readonly default: true;
744
772
  };
745
773
  readonly project: {
746
774
  readonly type: "string";
747
- readonly description: "Project GCP Project id to deploy instances into";
775
+ readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
776
+ readonly description: "GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.";
777
+ readonly example: "my-cloudfleet-project";
748
778
  };
749
779
  };
750
- readonly required: readonly ["project"];
780
+ readonly required: readonly ["enabled"];
751
781
  readonly additionalProperties: false;
752
782
  };
753
783
  readonly hetzner: {
@@ -755,13 +785,16 @@ export declare const FleetUpdateInputSchema: {
755
785
  readonly properties: {
756
786
  readonly enabled: {
757
787
  readonly type: "boolean";
758
- readonly default: true;
759
788
  };
760
789
  readonly apiKey: {
761
790
  readonly type: "string";
762
- readonly description: "Hetzner Cloud API key with read / write access. On update, omit this field to keep the existing value.";
791
+ readonly maxLength: 64;
792
+ readonly minLength: 64;
793
+ readonly pattern: "^[A-Za-z0-9]+$";
794
+ readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
763
795
  };
764
796
  };
797
+ readonly required: readonly ["enabled"];
765
798
  readonly additionalProperties: false;
766
799
  };
767
800
  readonly aws: {
@@ -769,14 +802,15 @@ export declare const FleetUpdateInputSchema: {
769
802
  readonly properties: {
770
803
  readonly enabled: {
771
804
  readonly type: "boolean";
772
- readonly default: true;
773
805
  };
774
806
  readonly controllerRoleArn: {
775
807
  readonly type: "string";
776
- readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
808
+ readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
809
+ readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
810
+ readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
777
811
  };
778
812
  };
779
- readonly required: readonly ["controllerRoleArn"];
813
+ readonly required: readonly ["enabled"];
780
814
  readonly additionalProperties: false;
781
815
  };
782
816
  readonly constraints: {
@@ -788,6 +822,7 @@ export declare const FleetUpdateInputSchema: {
788
822
  readonly type: "string";
789
823
  readonly enum: readonly ["on-demand", "spot"];
790
824
  };
825
+ readonly minItems: 1;
791
826
  readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
792
827
  };
793
828
  readonly 'kubernetes.io/arch': {
@@ -796,6 +831,7 @@ export declare const FleetUpdateInputSchema: {
796
831
  readonly type: "string";
797
832
  readonly enum: readonly ["amd64", "arm64"];
798
833
  };
834
+ readonly minItems: 1;
799
835
  readonly description: "Allowed values for `kubernetes.io/arch`.";
800
836
  };
801
837
  readonly 'cfke.io/instance-family': {
@@ -825,6 +861,7 @@ export declare const FleetUpdateInputSchema: {
825
861
  readonly enum: readonly ["aggressive", "conservative"];
826
862
  };
827
863
  };
864
+ readonly required: readonly ["scalingProfile"];
828
865
  readonly additionalProperties: false;
829
866
  };
830
867
  export declare const InviteSchema: {
@@ -1 +1 @@
1
- {"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoNvB,CAAC;AAEX,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2DvB,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8CzB,CAAC;AAEX,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4Fd,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;CAmBzB,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmD3B,CAAC;AAEX,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoG/B,CAAC;AAEX,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2HhB,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;CA+B3B,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoXzB,CAAC;AAEX,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmXd,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoWzB,CAAC;AAEX,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoCf,CAAC;AAEX,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuDhB,CAAC;AAEX,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;CAoBhC,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoI3B,CAAC;AAEX,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyChC,CAAC;AAEX,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsIrB,CAAC;AAEX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwEtB,CAAC;AAEX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6FtB,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;CAyB3B,CAAC;AAEX,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0EnC,CAAC;AAEX,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmKpB,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;CA+BzB,CAAC;AAEX,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoC1B,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqK3B,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;CAgB3B,CAAC;AAEX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmFtB,CAAC;AAEX,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqJf,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;CA0BzB,CAAC;AAEX,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2Cd,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;CAsBzB,CAAC;AAEX,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;CA0BpB,CAAC;AAEX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuFtB,CAAC;AAEX,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6Cd,CAAC;AAEX,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6DxB,CAAC;AAEX,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgEb,CAAC;AAEX,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2CxB,CAAC"}