@bolta-io/cli 0.0.17 → 0.1.1
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.
- package/CHANGELOG.md +18 -0
- package/CLAUDE.md +32 -5
- package/README.md +45 -4
- package/dist/bin/bolta.js +16 -2
- package/dist/bin/bolta.js.map +1 -1
- package/dist/src/client/bolta-client.d.ts +10 -1
- package/dist/src/client/bolta-client.d.ts.map +1 -1
- package/dist/src/client/bolta-client.js +26 -0
- package/dist/src/client/bolta-client.js.map +1 -1
- package/dist/src/commands/cash-receipt/cancel.d.ts +5 -0
- package/dist/src/commands/cash-receipt/cancel.d.ts.map +1 -0
- package/dist/src/commands/cash-receipt/cancel.js +27 -0
- package/dist/src/commands/cash-receipt/cancel.js.map +1 -0
- package/dist/src/commands/cash-receipt/index.d.ts +3 -0
- package/dist/src/commands/cash-receipt/index.d.ts.map +1 -0
- package/dist/src/commands/cash-receipt/index.js +63 -0
- package/dist/src/commands/cash-receipt/index.js.map +1 -0
- package/dist/src/commands/cash-receipt/issue.d.ts +8 -0
- package/dist/src/commands/cash-receipt/issue.d.ts.map +1 -0
- package/dist/src/commands/cash-receipt/issue.js +29 -0
- package/dist/src/commands/cash-receipt/issue.js.map +1 -0
- package/dist/src/commands/cash-receipt/status.d.ts +5 -0
- package/dist/src/commands/cash-receipt/status.d.ts.map +1 -0
- package/dist/src/commands/cash-receipt/status.js +22 -0
- package/dist/src/commands/cash-receipt/status.js.map +1 -0
- package/dist/src/commands/cash-receipt/validation.d.ts +3 -0
- package/dist/src/commands/cash-receipt/validation.d.ts.map +1 -0
- package/dist/src/commands/cash-receipt/validation.js +15 -0
- package/dist/src/commands/cash-receipt/validation.js.map +1 -0
- package/dist/src/commands/examples/index.d.ts.map +1 -1
- package/dist/src/commands/examples/index.js +69 -0
- package/dist/src/commands/examples/index.js.map +1 -1
- package/dist/src/commands/guide/index.d.ts.map +1 -1
- package/dist/src/commands/guide/index.js +49 -3
- package/dist/src/commands/guide/index.js.map +1 -1
- package/dist/src/commands/invoice/amend.d.ts.map +1 -1
- package/dist/src/commands/invoice/amend.js +4 -0
- package/dist/src/commands/invoice/amend.js.map +1 -1
- package/dist/src/commands/invoice/index.d.ts.map +1 -1
- package/dist/src/commands/invoice/index.js +3 -0
- package/dist/src/commands/invoice/index.js.map +1 -1
- package/dist/src/commands/schema/index.d.ts.map +1 -1
- package/dist/src/commands/schema/index.js +1 -0
- package/dist/src/commands/schema/index.js.map +1 -1
- package/dist/src/types/api.d.ts +50 -0
- package/dist/src/types/api.d.ts.map +1 -1
- package/dist/src/types/api.js +4 -1
- package/dist/src/types/api.js.map +1 -1
- package/dist/src/utils/client.d.ts +9 -1
- package/dist/src/utils/client.d.ts.map +1 -1
- package/dist/src/utils/client.js +4 -6
- package/dist/src/utils/client.js.map +1 -1
- package/dist/src/utils/errors.d.ts +2 -2
- package/dist/src/utils/errors.d.ts.map +1 -1
- package/dist/src/utils/errors.js +4 -4
- package/dist/src/utils/errors.js.map +1 -1
- package/dist/src/validators/schemas.d.ts +222 -1
- package/dist/src/validators/schemas.d.ts.map +1 -1
- package/dist/src/validators/schemas.js +281 -6
- package/dist/src/validators/schemas.js.map +1 -1
- package/llms.txt +32 -10
- package/package.json +4 -2
|
@@ -12,6 +12,7 @@ export declare const managerSchema: z.ZodObject<{
|
|
|
12
12
|
name?: string | null | undefined;
|
|
13
13
|
telephone?: string | null | undefined;
|
|
14
14
|
}>;
|
|
15
|
+
export declare const taxInvoiceTaxTypeSchema: z.ZodEnum<["TAXABLE", "ZERO_RATE", "TAX_FREE"]>;
|
|
15
16
|
export declare const taxInvoiceSupplierSchema: z.ZodObject<{
|
|
16
17
|
identificationNumber: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>;
|
|
17
18
|
organizationName: z.ZodString;
|
|
@@ -139,6 +140,7 @@ export declare const taxInvoiceItemSchema: z.ZodObject<{
|
|
|
139
140
|
export declare const createTaxInvoiceSchema: z.ZodEffects<z.ZodObject<{
|
|
140
141
|
date: z.ZodString;
|
|
141
142
|
purpose: z.ZodEnum<["CLAIM", "RECEIPT"]>;
|
|
143
|
+
taxType: z.ZodEnum<["TAXABLE", "ZERO_RATE", "TAX_FREE"]>;
|
|
142
144
|
supplier: z.ZodObject<{
|
|
143
145
|
identificationNumber: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>;
|
|
144
146
|
organizationName: z.ZodString;
|
|
@@ -267,6 +269,7 @@ export declare const createTaxInvoiceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
267
269
|
}, "strip", z.ZodTypeAny, {
|
|
268
270
|
date: string;
|
|
269
271
|
purpose: "CLAIM" | "RECEIPT";
|
|
272
|
+
taxType: "TAXABLE" | "ZERO_RATE" | "TAX_FREE";
|
|
270
273
|
supplier: {
|
|
271
274
|
identificationNumber: string;
|
|
272
275
|
organizationName: string;
|
|
@@ -309,6 +312,7 @@ export declare const createTaxInvoiceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
309
312
|
}, {
|
|
310
313
|
date: string;
|
|
311
314
|
purpose: "CLAIM" | "RECEIPT";
|
|
315
|
+
taxType: "TAXABLE" | "ZERO_RATE" | "TAX_FREE";
|
|
312
316
|
supplier: {
|
|
313
317
|
identificationNumber: string;
|
|
314
318
|
organizationName: string;
|
|
@@ -351,6 +355,7 @@ export declare const createTaxInvoiceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
351
355
|
}>, {
|
|
352
356
|
date: string;
|
|
353
357
|
purpose: "CLAIM" | "RECEIPT";
|
|
358
|
+
taxType: "TAXABLE" | "ZERO_RATE" | "TAX_FREE";
|
|
354
359
|
supplier: {
|
|
355
360
|
identificationNumber: string;
|
|
356
361
|
organizationName: string;
|
|
@@ -393,6 +398,7 @@ export declare const createTaxInvoiceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
393
398
|
}, {
|
|
394
399
|
date: string;
|
|
395
400
|
purpose: "CLAIM" | "RECEIPT";
|
|
401
|
+
taxType: "TAXABLE" | "ZERO_RATE" | "TAX_FREE";
|
|
396
402
|
supplier: {
|
|
397
403
|
identificationNumber: string;
|
|
398
404
|
organizationName: string;
|
|
@@ -436,6 +442,7 @@ export declare const createTaxInvoiceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
436
442
|
export declare const createTaxInvoiceIssueRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
437
443
|
date: z.ZodString;
|
|
438
444
|
purpose: z.ZodEnum<["CLAIM", "RECEIPT"]>;
|
|
445
|
+
taxType: z.ZodEnum<["TAXABLE", "ZERO_RATE", "TAX_FREE"]>;
|
|
439
446
|
supplier: z.ZodObject<{
|
|
440
447
|
identificationNumber: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>;
|
|
441
448
|
organizationName: z.ZodString;
|
|
@@ -564,6 +571,7 @@ export declare const createTaxInvoiceIssueRequestSchema: z.ZodEffects<z.ZodObjec
|
|
|
564
571
|
}, "strip", z.ZodTypeAny, {
|
|
565
572
|
date: string;
|
|
566
573
|
purpose: "CLAIM" | "RECEIPT";
|
|
574
|
+
taxType: "TAXABLE" | "ZERO_RATE" | "TAX_FREE";
|
|
567
575
|
supplier: {
|
|
568
576
|
identificationNumber: string;
|
|
569
577
|
organizationName: string;
|
|
@@ -606,6 +614,7 @@ export declare const createTaxInvoiceIssueRequestSchema: z.ZodEffects<z.ZodObjec
|
|
|
606
614
|
}, {
|
|
607
615
|
date: string;
|
|
608
616
|
purpose: "CLAIM" | "RECEIPT";
|
|
617
|
+
taxType: "TAXABLE" | "ZERO_RATE" | "TAX_FREE";
|
|
609
618
|
supplier: {
|
|
610
619
|
identificationNumber: string;
|
|
611
620
|
organizationName: string;
|
|
@@ -648,6 +657,7 @@ export declare const createTaxInvoiceIssueRequestSchema: z.ZodEffects<z.ZodObjec
|
|
|
648
657
|
}>, {
|
|
649
658
|
date: string;
|
|
650
659
|
purpose: "CLAIM" | "RECEIPT";
|
|
660
|
+
taxType: "TAXABLE" | "ZERO_RATE" | "TAX_FREE";
|
|
651
661
|
supplier: {
|
|
652
662
|
identificationNumber: string;
|
|
653
663
|
organizationName: string;
|
|
@@ -690,6 +700,7 @@ export declare const createTaxInvoiceIssueRequestSchema: z.ZodEffects<z.ZodObjec
|
|
|
690
700
|
}, {
|
|
691
701
|
date: string;
|
|
692
702
|
purpose: "CLAIM" | "RECEIPT";
|
|
703
|
+
taxType: "TAXABLE" | "ZERO_RATE" | "TAX_FREE";
|
|
693
704
|
supplier: {
|
|
694
705
|
identificationNumber: string;
|
|
695
706
|
organizationName: string;
|
|
@@ -730,6 +741,187 @@ export declare const createTaxInvoiceIssueRequestSchema: z.ZodEffects<z.ZodObjec
|
|
|
730
741
|
}[];
|
|
731
742
|
description?: string | null | undefined;
|
|
732
743
|
}>;
|
|
744
|
+
export declare const clientReferenceIdSchema: z.ZodString;
|
|
745
|
+
export declare const cashReceiptRecipientSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
746
|
+
type: z.ZodLiteral<"SELF">;
|
|
747
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"">, z.ZodNull]>>;
|
|
748
|
+
}, "strict", z.ZodTypeAny, {
|
|
749
|
+
type: "SELF";
|
|
750
|
+
value?: "" | null | undefined;
|
|
751
|
+
}, {
|
|
752
|
+
type: "SELF";
|
|
753
|
+
value?: "" | null | undefined;
|
|
754
|
+
}>, z.ZodObject<{
|
|
755
|
+
type: z.ZodLiteral<"PHONE">;
|
|
756
|
+
value: z.ZodString;
|
|
757
|
+
}, "strict", z.ZodTypeAny, {
|
|
758
|
+
value: string;
|
|
759
|
+
type: "PHONE";
|
|
760
|
+
}, {
|
|
761
|
+
value: string;
|
|
762
|
+
type: "PHONE";
|
|
763
|
+
}>, z.ZodObject<{
|
|
764
|
+
type: z.ZodLiteral<"BUSINESS_REGISTRATION_NUMBER">;
|
|
765
|
+
value: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>;
|
|
766
|
+
}, "strict", z.ZodTypeAny, {
|
|
767
|
+
value: string;
|
|
768
|
+
type: "BUSINESS_REGISTRATION_NUMBER";
|
|
769
|
+
}, {
|
|
770
|
+
value: string;
|
|
771
|
+
type: "BUSINESS_REGISTRATION_NUMBER";
|
|
772
|
+
}>]>;
|
|
773
|
+
export declare const createCashReceiptSchema: z.ZodEffects<z.ZodObject<{
|
|
774
|
+
itemName: z.ZodString;
|
|
775
|
+
issuer: z.ZodObject<{
|
|
776
|
+
businessRegistrationNumber: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>;
|
|
777
|
+
organizationName: z.ZodString;
|
|
778
|
+
representativeName: z.ZodString;
|
|
779
|
+
telephone: z.ZodString;
|
|
780
|
+
}, "strip", z.ZodTypeAny, {
|
|
781
|
+
telephone: string;
|
|
782
|
+
organizationName: string;
|
|
783
|
+
representativeName: string;
|
|
784
|
+
businessRegistrationNumber: string;
|
|
785
|
+
}, {
|
|
786
|
+
telephone: string;
|
|
787
|
+
organizationName: string;
|
|
788
|
+
representativeName: string;
|
|
789
|
+
businessRegistrationNumber: string;
|
|
790
|
+
}>;
|
|
791
|
+
recipient: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
792
|
+
type: z.ZodLiteral<"SELF">;
|
|
793
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"">, z.ZodNull]>>;
|
|
794
|
+
}, "strict", z.ZodTypeAny, {
|
|
795
|
+
type: "SELF";
|
|
796
|
+
value?: "" | null | undefined;
|
|
797
|
+
}, {
|
|
798
|
+
type: "SELF";
|
|
799
|
+
value?: "" | null | undefined;
|
|
800
|
+
}>, z.ZodObject<{
|
|
801
|
+
type: z.ZodLiteral<"PHONE">;
|
|
802
|
+
value: z.ZodString;
|
|
803
|
+
}, "strict", z.ZodTypeAny, {
|
|
804
|
+
value: string;
|
|
805
|
+
type: "PHONE";
|
|
806
|
+
}, {
|
|
807
|
+
value: string;
|
|
808
|
+
type: "PHONE";
|
|
809
|
+
}>, z.ZodObject<{
|
|
810
|
+
type: z.ZodLiteral<"BUSINESS_REGISTRATION_NUMBER">;
|
|
811
|
+
value: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>;
|
|
812
|
+
}, "strict", z.ZodTypeAny, {
|
|
813
|
+
value: string;
|
|
814
|
+
type: "BUSINESS_REGISTRATION_NUMBER";
|
|
815
|
+
}, {
|
|
816
|
+
value: string;
|
|
817
|
+
type: "BUSINESS_REGISTRATION_NUMBER";
|
|
818
|
+
}>]>;
|
|
819
|
+
amount: z.ZodObject<{
|
|
820
|
+
supplyAmount: z.ZodNumber;
|
|
821
|
+
vatAmount: z.ZodNumber;
|
|
822
|
+
taxFreeAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
823
|
+
}, "strip", z.ZodTypeAny, {
|
|
824
|
+
supplyAmount: number;
|
|
825
|
+
vatAmount: number;
|
|
826
|
+
taxFreeAmount?: number | null | undefined;
|
|
827
|
+
}, {
|
|
828
|
+
supplyAmount: number;
|
|
829
|
+
vatAmount: number;
|
|
830
|
+
taxFreeAmount?: number | null | undefined;
|
|
831
|
+
}>;
|
|
832
|
+
}, "strip", z.ZodTypeAny, {
|
|
833
|
+
itemName: string;
|
|
834
|
+
issuer: {
|
|
835
|
+
telephone: string;
|
|
836
|
+
organizationName: string;
|
|
837
|
+
representativeName: string;
|
|
838
|
+
businessRegistrationNumber: string;
|
|
839
|
+
};
|
|
840
|
+
recipient: {
|
|
841
|
+
type: "SELF";
|
|
842
|
+
value?: "" | null | undefined;
|
|
843
|
+
} | {
|
|
844
|
+
value: string;
|
|
845
|
+
type: "PHONE";
|
|
846
|
+
} | {
|
|
847
|
+
value: string;
|
|
848
|
+
type: "BUSINESS_REGISTRATION_NUMBER";
|
|
849
|
+
};
|
|
850
|
+
amount: {
|
|
851
|
+
supplyAmount: number;
|
|
852
|
+
vatAmount: number;
|
|
853
|
+
taxFreeAmount?: number | null | undefined;
|
|
854
|
+
};
|
|
855
|
+
}, {
|
|
856
|
+
itemName: string;
|
|
857
|
+
issuer: {
|
|
858
|
+
telephone: string;
|
|
859
|
+
organizationName: string;
|
|
860
|
+
representativeName: string;
|
|
861
|
+
businessRegistrationNumber: string;
|
|
862
|
+
};
|
|
863
|
+
recipient: {
|
|
864
|
+
type: "SELF";
|
|
865
|
+
value?: "" | null | undefined;
|
|
866
|
+
} | {
|
|
867
|
+
value: string;
|
|
868
|
+
type: "PHONE";
|
|
869
|
+
} | {
|
|
870
|
+
value: string;
|
|
871
|
+
type: "BUSINESS_REGISTRATION_NUMBER";
|
|
872
|
+
};
|
|
873
|
+
amount: {
|
|
874
|
+
supplyAmount: number;
|
|
875
|
+
vatAmount: number;
|
|
876
|
+
taxFreeAmount?: number | null | undefined;
|
|
877
|
+
};
|
|
878
|
+
}>, {
|
|
879
|
+
itemName: string;
|
|
880
|
+
issuer: {
|
|
881
|
+
telephone: string;
|
|
882
|
+
organizationName: string;
|
|
883
|
+
representativeName: string;
|
|
884
|
+
businessRegistrationNumber: string;
|
|
885
|
+
};
|
|
886
|
+
recipient: {
|
|
887
|
+
type: "SELF";
|
|
888
|
+
value?: "" | null | undefined;
|
|
889
|
+
} | {
|
|
890
|
+
value: string;
|
|
891
|
+
type: "PHONE";
|
|
892
|
+
} | {
|
|
893
|
+
value: string;
|
|
894
|
+
type: "BUSINESS_REGISTRATION_NUMBER";
|
|
895
|
+
};
|
|
896
|
+
amount: {
|
|
897
|
+
supplyAmount: number;
|
|
898
|
+
vatAmount: number;
|
|
899
|
+
taxFreeAmount?: number | null | undefined;
|
|
900
|
+
};
|
|
901
|
+
}, {
|
|
902
|
+
itemName: string;
|
|
903
|
+
issuer: {
|
|
904
|
+
telephone: string;
|
|
905
|
+
organizationName: string;
|
|
906
|
+
representativeName: string;
|
|
907
|
+
businessRegistrationNumber: string;
|
|
908
|
+
};
|
|
909
|
+
recipient: {
|
|
910
|
+
type: "SELF";
|
|
911
|
+
value?: "" | null | undefined;
|
|
912
|
+
} | {
|
|
913
|
+
value: string;
|
|
914
|
+
type: "PHONE";
|
|
915
|
+
} | {
|
|
916
|
+
value: string;
|
|
917
|
+
type: "BUSINESS_REGISTRATION_NUMBER";
|
|
918
|
+
};
|
|
919
|
+
amount: {
|
|
920
|
+
supplyAmount: number;
|
|
921
|
+
vatAmount: number;
|
|
922
|
+
taxFreeAmount?: number | null | undefined;
|
|
923
|
+
};
|
|
924
|
+
}>;
|
|
733
925
|
export declare const createSupplierSchema: z.ZodObject<{
|
|
734
926
|
identificationNumber: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodString>;
|
|
735
927
|
organizationName: z.ZodString;
|
|
@@ -753,8 +945,9 @@ export declare const amendTerminationSchema: z.ZodObject<{
|
|
|
753
945
|
}, {
|
|
754
946
|
date: string;
|
|
755
947
|
}>;
|
|
756
|
-
export declare const amendChangeSupplyCostSchema: z.ZodObject<{
|
|
948
|
+
export declare const amendChangeSupplyCostSchema: z.ZodEffects<z.ZodObject<{
|
|
757
949
|
date: z.ZodString;
|
|
950
|
+
taxType: z.ZodEnum<["TAXABLE", "ZERO_RATE", "TAX_FREE"]>;
|
|
758
951
|
items: z.ZodArray<z.ZodObject<{
|
|
759
952
|
date: z.ZodString;
|
|
760
953
|
name: z.ZodString;
|
|
@@ -786,6 +979,33 @@ export declare const amendChangeSupplyCostSchema: z.ZodObject<{
|
|
|
786
979
|
}>, "many">;
|
|
787
980
|
}, "strip", z.ZodTypeAny, {
|
|
788
981
|
date: string;
|
|
982
|
+
taxType: "TAXABLE" | "ZERO_RATE" | "TAX_FREE";
|
|
983
|
+
items: {
|
|
984
|
+
date: string;
|
|
985
|
+
name: string;
|
|
986
|
+
supplyCost: number;
|
|
987
|
+
unitPrice?: number | null | undefined;
|
|
988
|
+
quantity?: number | null | undefined;
|
|
989
|
+
tax?: number | null | undefined;
|
|
990
|
+
specification?: string | null | undefined;
|
|
991
|
+
description?: string | null | undefined;
|
|
992
|
+
}[];
|
|
993
|
+
}, {
|
|
994
|
+
date: string;
|
|
995
|
+
taxType: "TAXABLE" | "ZERO_RATE" | "TAX_FREE";
|
|
996
|
+
items: {
|
|
997
|
+
date: string;
|
|
998
|
+
name: string;
|
|
999
|
+
supplyCost: number;
|
|
1000
|
+
unitPrice?: number | null | undefined;
|
|
1001
|
+
quantity?: number | null | undefined;
|
|
1002
|
+
tax?: number | null | undefined;
|
|
1003
|
+
specification?: string | null | undefined;
|
|
1004
|
+
description?: string | null | undefined;
|
|
1005
|
+
}[];
|
|
1006
|
+
}>, {
|
|
1007
|
+
date: string;
|
|
1008
|
+
taxType: "TAXABLE" | "ZERO_RATE" | "TAX_FREE";
|
|
789
1009
|
items: {
|
|
790
1010
|
date: string;
|
|
791
1011
|
name: string;
|
|
@@ -798,6 +1018,7 @@ export declare const amendChangeSupplyCostSchema: z.ZodObject<{
|
|
|
798
1018
|
}[];
|
|
799
1019
|
}, {
|
|
800
1020
|
date: string;
|
|
1021
|
+
taxType: "TAXABLE" | "ZERO_RATE" | "TAX_FREE";
|
|
801
1022
|
items: {
|
|
802
1023
|
date: string;
|
|
803
1024
|
name: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../../src/validators/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../../../src/validators/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAwBxB,eAAO,MAAM,aAAa;;;;;;;;;;;;EAOxB,CAAC;AA8FH,eAAO,MAAM,uBAAuB,iDAMlC,CAAC;AAMH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASnC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASnC,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAY/B,CAAC;AAiDH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwBjC,CAAC;AAEH,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAe7C,CAAC;AAMH,eAAO,MAAM,uBAAuB,aAKiB,CAAC;AAyCtD,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;IAIrC,CAAC;AAcH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+BhC,CAAC;AAML,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;EAK/B,CAAC;AAMH,eAAO,MAAM,sBAAsB;;;;;;EAEjC,CAAC;AAOH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWpC,CAAC;AAML,eAAO,MAAM,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CA8R9C,CAAC"}
|