@grove-dev/core 0.4.1 → 0.5.0-next.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.
- package/dist/awesome-readme.d.ts +63 -0
- package/dist/awesome-readme.d.ts.map +1 -0
- package/dist/awesome-readme.js +164 -0
- package/dist/awesome-readme.js.map +1 -0
- package/dist/build-data.d.ts.map +1 -1
- package/dist/build-data.js +9 -3
- package/dist/build-data.js.map +1 -1
- package/dist/collections.d.ts +5 -0
- package/dist/collections.d.ts.map +1 -1
- package/dist/collections.js +6 -0
- package/dist/collections.js.map +1 -1
- package/dist/content-body.d.ts +109 -0
- package/dist/content-body.d.ts.map +1 -0
- package/dist/content-body.js +194 -0
- package/dist/content-body.js.map +1 -0
- package/dist/contributors.d.ts.map +1 -1
- package/dist/contributors.js +9 -0
- package/dist/contributors.js.map +1 -1
- package/dist/decisions.js +1 -1
- package/dist/decisions.js.map +1 -1
- package/dist/directory-display.d.ts +16 -0
- package/dist/directory-display.d.ts.map +1 -1
- package/dist/directory-display.js +85 -0
- package/dist/directory-display.js.map +1 -1
- package/dist/directory-search.d.ts +14 -1
- package/dist/directory-search.d.ts.map +1 -1
- package/dist/directory-search.js +65 -7
- package/dist/directory-search.js.map +1 -1
- package/dist/index.d.ts +7 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +18 -1
- package/dist/index.js.map +1 -1
- package/dist/io.d.ts.map +1 -1
- package/dist/io.js +9 -1
- package/dist/io.js.map +1 -1
- package/dist/markdown.d.ts.map +1 -1
- package/dist/markdown.js +10 -0
- package/dist/markdown.js.map +1 -1
- package/dist/schema.d.ts +127 -44
- package/dist/schema.d.ts.map +1 -1
- package/dist/schema.js +71 -1
- package/dist/schema.js.map +1 -1
- package/dist/validate.d.ts.map +1 -1
- package/dist/validate.js +9 -3
- package/dist/validate.js.map +1 -1
- package/package.json +1 -1
package/dist/schema.d.ts
CHANGED
|
@@ -36,12 +36,12 @@ export declare const healthStatusSchema: z.ZodEnum<{
|
|
|
36
36
|
unavailable: "unavailable";
|
|
37
37
|
}>;
|
|
38
38
|
export declare const decisionVisibilitySchema: z.ZodEnum<{
|
|
39
|
+
hide: "hide";
|
|
40
|
+
remove: "remove";
|
|
39
41
|
historical: "historical";
|
|
40
42
|
needs_review: "needs_review";
|
|
41
43
|
highlight: "highlight";
|
|
42
44
|
keep: "keep";
|
|
43
|
-
hide: "hide";
|
|
44
|
-
remove: "remove";
|
|
45
45
|
}>;
|
|
46
46
|
export type DecisionVisibility = z.infer<typeof decisionVisibilitySchema>;
|
|
47
47
|
export declare const healthTierSchema: z.ZodEnum<{
|
|
@@ -61,6 +61,7 @@ export declare const projectTypeSchema: z.ZodEnum<{
|
|
|
61
61
|
template: "template";
|
|
62
62
|
}>;
|
|
63
63
|
export declare const resourceTypeSchema: z.ZodEnum<{
|
|
64
|
+
other: "other";
|
|
64
65
|
tool: "tool";
|
|
65
66
|
guide: "guide";
|
|
66
67
|
comparison: "comparison";
|
|
@@ -71,7 +72,6 @@ export declare const resourceTypeSchema: z.ZodEnum<{
|
|
|
71
72
|
course: "course";
|
|
72
73
|
book: "book";
|
|
73
74
|
podcast: "podcast";
|
|
74
|
-
other: "other";
|
|
75
75
|
}>;
|
|
76
76
|
export declare const entityTypeSchema: z.ZodEnum<{
|
|
77
77
|
other: "other";
|
|
@@ -206,12 +206,12 @@ export declare const healthBlockSchema: z.ZodObject<{
|
|
|
206
206
|
hidden: "hidden";
|
|
207
207
|
}>>;
|
|
208
208
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
209
|
+
hide: "hide";
|
|
210
|
+
remove: "remove";
|
|
209
211
|
historical: "historical";
|
|
210
212
|
needs_review: "needs_review";
|
|
211
213
|
highlight: "highlight";
|
|
212
214
|
keep: "keep";
|
|
213
|
-
hide: "hide";
|
|
214
|
-
remove: "remove";
|
|
215
215
|
}>>;
|
|
216
216
|
cleanupCandidate: z.ZodDefault<z.ZodBoolean>;
|
|
217
217
|
staleReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -283,12 +283,12 @@ export declare const healthEntrySchema: z.ZodObject<{
|
|
|
283
283
|
hidden: "hidden";
|
|
284
284
|
}>>;
|
|
285
285
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
286
|
+
hide: "hide";
|
|
287
|
+
remove: "remove";
|
|
286
288
|
historical: "historical";
|
|
287
289
|
needs_review: "needs_review";
|
|
288
290
|
highlight: "highlight";
|
|
289
291
|
keep: "keep";
|
|
290
|
-
hide: "hide";
|
|
291
|
-
remove: "remove";
|
|
292
292
|
}>>;
|
|
293
293
|
cleanupCandidate: z.ZodDefault<z.ZodBoolean>;
|
|
294
294
|
staleReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -361,12 +361,12 @@ export declare const healthFileSchema: z.ZodUnion<readonly [z.ZodArray<z.ZodObje
|
|
|
361
361
|
hidden: "hidden";
|
|
362
362
|
}>>;
|
|
363
363
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
364
|
+
hide: "hide";
|
|
365
|
+
remove: "remove";
|
|
364
366
|
historical: "historical";
|
|
365
367
|
needs_review: "needs_review";
|
|
366
368
|
highlight: "highlight";
|
|
367
369
|
keep: "keep";
|
|
368
|
-
hide: "hide";
|
|
369
|
-
remove: "remove";
|
|
370
370
|
}>>;
|
|
371
371
|
cleanupCandidate: z.ZodDefault<z.ZodBoolean>;
|
|
372
372
|
staleReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -439,12 +439,12 @@ export declare const healthFileSchema: z.ZodUnion<readonly [z.ZodArray<z.ZodObje
|
|
|
439
439
|
hidden: "hidden";
|
|
440
440
|
}>>;
|
|
441
441
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
442
|
+
hide: "hide";
|
|
443
|
+
remove: "remove";
|
|
442
444
|
historical: "historical";
|
|
443
445
|
needs_review: "needs_review";
|
|
444
446
|
highlight: "highlight";
|
|
445
447
|
keep: "keep";
|
|
446
|
-
hide: "hide";
|
|
447
|
-
remove: "remove";
|
|
448
448
|
}>>;
|
|
449
449
|
cleanupCandidate: z.ZodDefault<z.ZodBoolean>;
|
|
450
450
|
staleReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -461,12 +461,12 @@ export declare const decisionSchema: z.ZodObject<{
|
|
|
461
461
|
id: z.ZodString;
|
|
462
462
|
decision: z.ZodObject<{
|
|
463
463
|
visibility: z.ZodEnum<{
|
|
464
|
+
hide: "hide";
|
|
465
|
+
remove: "remove";
|
|
464
466
|
historical: "historical";
|
|
465
467
|
needs_review: "needs_review";
|
|
466
468
|
highlight: "highlight";
|
|
467
469
|
keep: "keep";
|
|
468
|
-
hide: "hide";
|
|
469
|
-
remove: "remove";
|
|
470
470
|
}>;
|
|
471
471
|
reason: z.ZodString;
|
|
472
472
|
reviewedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -477,12 +477,12 @@ export declare const decisionsFileSchema: z.ZodUnion<readonly [z.ZodArray<z.ZodO
|
|
|
477
477
|
id: z.ZodString;
|
|
478
478
|
decision: z.ZodObject<{
|
|
479
479
|
visibility: z.ZodEnum<{
|
|
480
|
+
hide: "hide";
|
|
481
|
+
remove: "remove";
|
|
480
482
|
historical: "historical";
|
|
481
483
|
needs_review: "needs_review";
|
|
482
484
|
highlight: "highlight";
|
|
483
485
|
keep: "keep";
|
|
484
|
-
hide: "hide";
|
|
485
|
-
remove: "remove";
|
|
486
486
|
}>;
|
|
487
487
|
reason: z.ZodString;
|
|
488
488
|
reviewedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -493,12 +493,12 @@ export declare const decisionsFileSchema: z.ZodUnion<readonly [z.ZodArray<z.ZodO
|
|
|
493
493
|
id: z.ZodString;
|
|
494
494
|
decision: z.ZodObject<{
|
|
495
495
|
visibility: z.ZodEnum<{
|
|
496
|
+
hide: "hide";
|
|
497
|
+
remove: "remove";
|
|
496
498
|
historical: "historical";
|
|
497
499
|
needs_review: "needs_review";
|
|
498
500
|
highlight: "highlight";
|
|
499
501
|
keep: "keep";
|
|
500
|
-
hide: "hide";
|
|
501
|
-
remove: "remove";
|
|
502
502
|
}>;
|
|
503
503
|
reason: z.ZodString;
|
|
504
504
|
reviewedBy: z.ZodOptional<z.ZodString>;
|
|
@@ -522,6 +522,8 @@ export declare const overridesFileSchema: z.ZodUnion<readonly [z.ZodArray<z.ZodO
|
|
|
522
522
|
export declare const projectRecordSchema: z.ZodObject<{
|
|
523
523
|
slug: z.ZodString;
|
|
524
524
|
description: z.ZodDefault<z.ZodString>;
|
|
525
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
526
|
+
sourceDescription: z.ZodOptional<z.ZodString>;
|
|
525
527
|
category: z.ZodDefault<z.ZodString>;
|
|
526
528
|
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
527
529
|
links: z.ZodDefault<z.ZodObject<{
|
|
@@ -567,12 +569,12 @@ export declare const projectRecordSchema: z.ZodObject<{
|
|
|
567
569
|
overall: z.ZodOptional<z.ZodNumber>;
|
|
568
570
|
}, z.core.$strip>>;
|
|
569
571
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
572
|
+
hide: "hide";
|
|
573
|
+
remove: "remove";
|
|
570
574
|
historical: "historical";
|
|
571
575
|
needs_review: "needs_review";
|
|
572
576
|
highlight: "highlight";
|
|
573
577
|
keep: "keep";
|
|
574
|
-
hide: "hide";
|
|
575
|
-
remove: "remove";
|
|
576
578
|
}>>;
|
|
577
579
|
kind: z.ZodLiteral<"project">;
|
|
578
580
|
name: z.ZodString;
|
|
@@ -589,6 +591,7 @@ export declare const projectRecordSchema: z.ZodObject<{
|
|
|
589
591
|
stack: z.ZodOptional<z.ZodString>;
|
|
590
592
|
stacks: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
591
593
|
platforms: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
594
|
+
licenses: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
592
595
|
difficulty: z.ZodOptional<z.ZodEnum<{
|
|
593
596
|
beginner: "beginner";
|
|
594
597
|
intermediate: "intermediate";
|
|
@@ -602,6 +605,13 @@ export declare const projectRecordSchema: z.ZodObject<{
|
|
|
602
605
|
}>>;
|
|
603
606
|
repoUrl: z.ZodOptional<z.ZodString>;
|
|
604
607
|
logoUrl: z.ZodOptional<z.ZodString>;
|
|
608
|
+
screenshots: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
609
|
+
src: z.ZodString;
|
|
610
|
+
alt: z.ZodString;
|
|
611
|
+
source: z.ZodOptional<z.ZodString>;
|
|
612
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
613
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
614
|
+
}, z.core.$strip>>>;
|
|
605
615
|
bestFor: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
606
616
|
whyListed: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
607
617
|
caveats: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -684,12 +694,12 @@ export declare const projectRecordSchema: z.ZodObject<{
|
|
|
684
694
|
hidden: "hidden";
|
|
685
695
|
}>>;
|
|
686
696
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
697
|
+
hide: "hide";
|
|
698
|
+
remove: "remove";
|
|
687
699
|
historical: "historical";
|
|
688
700
|
needs_review: "needs_review";
|
|
689
701
|
highlight: "highlight";
|
|
690
702
|
keep: "keep";
|
|
691
|
-
hide: "hide";
|
|
692
|
-
remove: "remove";
|
|
693
703
|
}>>;
|
|
694
704
|
cleanupCandidate: z.ZodDefault<z.ZodBoolean>;
|
|
695
705
|
staleReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -705,6 +715,8 @@ export type ProjectRecord = z.infer<typeof projectRecordSchema>;
|
|
|
705
715
|
export declare const resourceRecordSchema: z.ZodObject<{
|
|
706
716
|
slug: z.ZodString;
|
|
707
717
|
description: z.ZodDefault<z.ZodString>;
|
|
718
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
719
|
+
sourceDescription: z.ZodOptional<z.ZodString>;
|
|
708
720
|
category: z.ZodDefault<z.ZodString>;
|
|
709
721
|
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
710
722
|
links: z.ZodDefault<z.ZodObject<{
|
|
@@ -750,16 +762,17 @@ export declare const resourceRecordSchema: z.ZodObject<{
|
|
|
750
762
|
overall: z.ZodOptional<z.ZodNumber>;
|
|
751
763
|
}, z.core.$strip>>;
|
|
752
764
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
765
|
+
hide: "hide";
|
|
766
|
+
remove: "remove";
|
|
753
767
|
historical: "historical";
|
|
754
768
|
needs_review: "needs_review";
|
|
755
769
|
highlight: "highlight";
|
|
756
770
|
keep: "keep";
|
|
757
|
-
hide: "hide";
|
|
758
|
-
remove: "remove";
|
|
759
771
|
}>>;
|
|
760
772
|
kind: z.ZodLiteral<"resource">;
|
|
761
773
|
title: z.ZodString;
|
|
762
774
|
type: z.ZodEnum<{
|
|
775
|
+
other: "other";
|
|
763
776
|
tool: "tool";
|
|
764
777
|
guide: "guide";
|
|
765
778
|
comparison: "comparison";
|
|
@@ -770,7 +783,6 @@ export declare const resourceRecordSchema: z.ZodObject<{
|
|
|
770
783
|
course: "course";
|
|
771
784
|
book: "book";
|
|
772
785
|
podcast: "podcast";
|
|
773
|
-
other: "other";
|
|
774
786
|
}>;
|
|
775
787
|
topic: z.ZodString;
|
|
776
788
|
related: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -781,6 +793,8 @@ export type ResourceRecord = z.infer<typeof resourceRecordSchema>;
|
|
|
781
793
|
export declare const entityRecordSchema: z.ZodObject<{
|
|
782
794
|
slug: z.ZodString;
|
|
783
795
|
description: z.ZodDefault<z.ZodString>;
|
|
796
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
797
|
+
sourceDescription: z.ZodOptional<z.ZodString>;
|
|
784
798
|
category: z.ZodDefault<z.ZodString>;
|
|
785
799
|
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
786
800
|
links: z.ZodDefault<z.ZodObject<{
|
|
@@ -826,12 +840,12 @@ export declare const entityRecordSchema: z.ZodObject<{
|
|
|
826
840
|
overall: z.ZodOptional<z.ZodNumber>;
|
|
827
841
|
}, z.core.$strip>>;
|
|
828
842
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
843
|
+
hide: "hide";
|
|
844
|
+
remove: "remove";
|
|
829
845
|
historical: "historical";
|
|
830
846
|
needs_review: "needs_review";
|
|
831
847
|
highlight: "highlight";
|
|
832
848
|
keep: "keep";
|
|
833
|
-
hide: "hide";
|
|
834
|
-
remove: "remove";
|
|
835
849
|
}>>;
|
|
836
850
|
kind: z.ZodLiteral<"entity">;
|
|
837
851
|
name: z.ZodString;
|
|
@@ -857,6 +871,8 @@ export type EntityRecord = z.infer<typeof entityRecordSchema>;
|
|
|
857
871
|
export declare const resourceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
858
872
|
slug: z.ZodString;
|
|
859
873
|
description: z.ZodDefault<z.ZodString>;
|
|
874
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
875
|
+
sourceDescription: z.ZodOptional<z.ZodString>;
|
|
860
876
|
category: z.ZodDefault<z.ZodString>;
|
|
861
877
|
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
862
878
|
links: z.ZodDefault<z.ZodObject<{
|
|
@@ -902,12 +918,12 @@ export declare const resourceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
902
918
|
overall: z.ZodOptional<z.ZodNumber>;
|
|
903
919
|
}, z.core.$strip>>;
|
|
904
920
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
921
|
+
hide: "hide";
|
|
922
|
+
remove: "remove";
|
|
905
923
|
historical: "historical";
|
|
906
924
|
needs_review: "needs_review";
|
|
907
925
|
highlight: "highlight";
|
|
908
926
|
keep: "keep";
|
|
909
|
-
hide: "hide";
|
|
910
|
-
remove: "remove";
|
|
911
927
|
}>>;
|
|
912
928
|
kind: z.ZodLiteral<"project">;
|
|
913
929
|
name: z.ZodString;
|
|
@@ -924,6 +940,7 @@ export declare const resourceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
924
940
|
stack: z.ZodOptional<z.ZodString>;
|
|
925
941
|
stacks: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
926
942
|
platforms: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
943
|
+
licenses: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
927
944
|
difficulty: z.ZodOptional<z.ZodEnum<{
|
|
928
945
|
beginner: "beginner";
|
|
929
946
|
intermediate: "intermediate";
|
|
@@ -937,6 +954,13 @@ export declare const resourceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
937
954
|
}>>;
|
|
938
955
|
repoUrl: z.ZodOptional<z.ZodString>;
|
|
939
956
|
logoUrl: z.ZodOptional<z.ZodString>;
|
|
957
|
+
screenshots: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
958
|
+
src: z.ZodString;
|
|
959
|
+
alt: z.ZodString;
|
|
960
|
+
source: z.ZodOptional<z.ZodString>;
|
|
961
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
962
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
963
|
+
}, z.core.$strip>>>;
|
|
940
964
|
bestFor: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
941
965
|
whyListed: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
942
966
|
caveats: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -1019,12 +1043,12 @@ export declare const resourceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1019
1043
|
hidden: "hidden";
|
|
1020
1044
|
}>>;
|
|
1021
1045
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
1046
|
+
hide: "hide";
|
|
1047
|
+
remove: "remove";
|
|
1022
1048
|
historical: "historical";
|
|
1023
1049
|
needs_review: "needs_review";
|
|
1024
1050
|
highlight: "highlight";
|
|
1025
1051
|
keep: "keep";
|
|
1026
|
-
hide: "hide";
|
|
1027
|
-
remove: "remove";
|
|
1028
1052
|
}>>;
|
|
1029
1053
|
cleanupCandidate: z.ZodDefault<z.ZodBoolean>;
|
|
1030
1054
|
staleReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1038,6 +1062,8 @@ export declare const resourceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1038
1062
|
}, z.core.$strip>, z.ZodObject<{
|
|
1039
1063
|
slug: z.ZodString;
|
|
1040
1064
|
description: z.ZodDefault<z.ZodString>;
|
|
1065
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
1066
|
+
sourceDescription: z.ZodOptional<z.ZodString>;
|
|
1041
1067
|
category: z.ZodDefault<z.ZodString>;
|
|
1042
1068
|
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1043
1069
|
links: z.ZodDefault<z.ZodObject<{
|
|
@@ -1083,16 +1109,17 @@ export declare const resourceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1083
1109
|
overall: z.ZodOptional<z.ZodNumber>;
|
|
1084
1110
|
}, z.core.$strip>>;
|
|
1085
1111
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
1112
|
+
hide: "hide";
|
|
1113
|
+
remove: "remove";
|
|
1086
1114
|
historical: "historical";
|
|
1087
1115
|
needs_review: "needs_review";
|
|
1088
1116
|
highlight: "highlight";
|
|
1089
1117
|
keep: "keep";
|
|
1090
|
-
hide: "hide";
|
|
1091
|
-
remove: "remove";
|
|
1092
1118
|
}>>;
|
|
1093
1119
|
kind: z.ZodLiteral<"resource">;
|
|
1094
1120
|
title: z.ZodString;
|
|
1095
1121
|
type: z.ZodEnum<{
|
|
1122
|
+
other: "other";
|
|
1096
1123
|
tool: "tool";
|
|
1097
1124
|
guide: "guide";
|
|
1098
1125
|
comparison: "comparison";
|
|
@@ -1103,7 +1130,6 @@ export declare const resourceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1103
1130
|
course: "course";
|
|
1104
1131
|
book: "book";
|
|
1105
1132
|
podcast: "podcast";
|
|
1106
|
-
other: "other";
|
|
1107
1133
|
}>;
|
|
1108
1134
|
topic: z.ZodString;
|
|
1109
1135
|
related: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -1112,6 +1138,8 @@ export declare const resourceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1112
1138
|
}, z.core.$strip>, z.ZodObject<{
|
|
1113
1139
|
slug: z.ZodString;
|
|
1114
1140
|
description: z.ZodDefault<z.ZodString>;
|
|
1141
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
1142
|
+
sourceDescription: z.ZodOptional<z.ZodString>;
|
|
1115
1143
|
category: z.ZodDefault<z.ZodString>;
|
|
1116
1144
|
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1117
1145
|
links: z.ZodDefault<z.ZodObject<{
|
|
@@ -1157,12 +1185,12 @@ export declare const resourceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1157
1185
|
overall: z.ZodOptional<z.ZodNumber>;
|
|
1158
1186
|
}, z.core.$strip>>;
|
|
1159
1187
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
1188
|
+
hide: "hide";
|
|
1189
|
+
remove: "remove";
|
|
1160
1190
|
historical: "historical";
|
|
1161
1191
|
needs_review: "needs_review";
|
|
1162
1192
|
highlight: "highlight";
|
|
1163
1193
|
keep: "keep";
|
|
1164
|
-
hide: "hide";
|
|
1165
|
-
remove: "remove";
|
|
1166
1194
|
}>>;
|
|
1167
1195
|
kind: z.ZodLiteral<"entity">;
|
|
1168
1196
|
name: z.ZodString;
|
|
@@ -1188,6 +1216,8 @@ export type Resource = z.infer<typeof resourceSchema>;
|
|
|
1188
1216
|
export declare const recordsFileSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1189
1217
|
slug: z.ZodString;
|
|
1190
1218
|
description: z.ZodDefault<z.ZodString>;
|
|
1219
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
1220
|
+
sourceDescription: z.ZodOptional<z.ZodString>;
|
|
1191
1221
|
category: z.ZodDefault<z.ZodString>;
|
|
1192
1222
|
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1193
1223
|
links: z.ZodDefault<z.ZodObject<{
|
|
@@ -1233,12 +1263,12 @@ export declare const recordsFileSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1233
1263
|
overall: z.ZodOptional<z.ZodNumber>;
|
|
1234
1264
|
}, z.core.$strip>>;
|
|
1235
1265
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
1266
|
+
hide: "hide";
|
|
1267
|
+
remove: "remove";
|
|
1236
1268
|
historical: "historical";
|
|
1237
1269
|
needs_review: "needs_review";
|
|
1238
1270
|
highlight: "highlight";
|
|
1239
1271
|
keep: "keep";
|
|
1240
|
-
hide: "hide";
|
|
1241
|
-
remove: "remove";
|
|
1242
1272
|
}>>;
|
|
1243
1273
|
kind: z.ZodLiteral<"project">;
|
|
1244
1274
|
name: z.ZodString;
|
|
@@ -1255,6 +1285,7 @@ export declare const recordsFileSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1255
1285
|
stack: z.ZodOptional<z.ZodString>;
|
|
1256
1286
|
stacks: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1257
1287
|
platforms: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1288
|
+
licenses: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1258
1289
|
difficulty: z.ZodOptional<z.ZodEnum<{
|
|
1259
1290
|
beginner: "beginner";
|
|
1260
1291
|
intermediate: "intermediate";
|
|
@@ -1268,6 +1299,13 @@ export declare const recordsFileSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1268
1299
|
}>>;
|
|
1269
1300
|
repoUrl: z.ZodOptional<z.ZodString>;
|
|
1270
1301
|
logoUrl: z.ZodOptional<z.ZodString>;
|
|
1302
|
+
screenshots: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1303
|
+
src: z.ZodString;
|
|
1304
|
+
alt: z.ZodString;
|
|
1305
|
+
source: z.ZodOptional<z.ZodString>;
|
|
1306
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
1307
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
1308
|
+
}, z.core.$strip>>>;
|
|
1271
1309
|
bestFor: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1272
1310
|
whyListed: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1273
1311
|
caveats: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -1350,12 +1388,12 @@ export declare const recordsFileSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1350
1388
|
hidden: "hidden";
|
|
1351
1389
|
}>>;
|
|
1352
1390
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
1391
|
+
hide: "hide";
|
|
1392
|
+
remove: "remove";
|
|
1353
1393
|
historical: "historical";
|
|
1354
1394
|
needs_review: "needs_review";
|
|
1355
1395
|
highlight: "highlight";
|
|
1356
1396
|
keep: "keep";
|
|
1357
|
-
hide: "hide";
|
|
1358
|
-
remove: "remove";
|
|
1359
1397
|
}>>;
|
|
1360
1398
|
cleanupCandidate: z.ZodDefault<z.ZodBoolean>;
|
|
1361
1399
|
staleReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1369,6 +1407,8 @@ export declare const recordsFileSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1369
1407
|
}, z.core.$strip>, z.ZodObject<{
|
|
1370
1408
|
slug: z.ZodString;
|
|
1371
1409
|
description: z.ZodDefault<z.ZodString>;
|
|
1410
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
1411
|
+
sourceDescription: z.ZodOptional<z.ZodString>;
|
|
1372
1412
|
category: z.ZodDefault<z.ZodString>;
|
|
1373
1413
|
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1374
1414
|
links: z.ZodDefault<z.ZodObject<{
|
|
@@ -1414,16 +1454,17 @@ export declare const recordsFileSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1414
1454
|
overall: z.ZodOptional<z.ZodNumber>;
|
|
1415
1455
|
}, z.core.$strip>>;
|
|
1416
1456
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
1457
|
+
hide: "hide";
|
|
1458
|
+
remove: "remove";
|
|
1417
1459
|
historical: "historical";
|
|
1418
1460
|
needs_review: "needs_review";
|
|
1419
1461
|
highlight: "highlight";
|
|
1420
1462
|
keep: "keep";
|
|
1421
|
-
hide: "hide";
|
|
1422
|
-
remove: "remove";
|
|
1423
1463
|
}>>;
|
|
1424
1464
|
kind: z.ZodLiteral<"resource">;
|
|
1425
1465
|
title: z.ZodString;
|
|
1426
1466
|
type: z.ZodEnum<{
|
|
1467
|
+
other: "other";
|
|
1427
1468
|
tool: "tool";
|
|
1428
1469
|
guide: "guide";
|
|
1429
1470
|
comparison: "comparison";
|
|
@@ -1434,7 +1475,6 @@ export declare const recordsFileSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1434
1475
|
course: "course";
|
|
1435
1476
|
book: "book";
|
|
1436
1477
|
podcast: "podcast";
|
|
1437
|
-
other: "other";
|
|
1438
1478
|
}>;
|
|
1439
1479
|
topic: z.ZodString;
|
|
1440
1480
|
related: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
@@ -1443,6 +1483,8 @@ export declare const recordsFileSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1443
1483
|
}, z.core.$strip>, z.ZodObject<{
|
|
1444
1484
|
slug: z.ZodString;
|
|
1445
1485
|
description: z.ZodDefault<z.ZodString>;
|
|
1486
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
1487
|
+
sourceDescription: z.ZodOptional<z.ZodString>;
|
|
1446
1488
|
category: z.ZodDefault<z.ZodString>;
|
|
1447
1489
|
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1448
1490
|
links: z.ZodDefault<z.ZodObject<{
|
|
@@ -1488,12 +1530,12 @@ export declare const recordsFileSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1488
1530
|
overall: z.ZodOptional<z.ZodNumber>;
|
|
1489
1531
|
}, z.core.$strip>>;
|
|
1490
1532
|
visibility: z.ZodDefault<z.ZodEnum<{
|
|
1533
|
+
hide: "hide";
|
|
1534
|
+
remove: "remove";
|
|
1491
1535
|
historical: "historical";
|
|
1492
1536
|
needs_review: "needs_review";
|
|
1493
1537
|
highlight: "highlight";
|
|
1494
1538
|
keep: "keep";
|
|
1495
|
-
hide: "hide";
|
|
1496
|
-
remove: "remove";
|
|
1497
1539
|
}>>;
|
|
1498
1540
|
kind: z.ZodLiteral<"entity">;
|
|
1499
1541
|
name: z.ZodString;
|
|
@@ -1595,6 +1637,26 @@ export declare const auditSchema: z.ZodObject<{
|
|
|
1595
1637
|
sample: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1596
1638
|
}, z.core.$strip>>;
|
|
1597
1639
|
}, z.core.$strip>;
|
|
1640
|
+
/**
|
|
1641
|
+
* README preamble configuration. Every field is optional; unset fields
|
|
1642
|
+
* fall back to the matching site.* field, or to a sensible default.
|
|
1643
|
+
*
|
|
1644
|
+
* `intro` is rendered as raw markdown between the H1 and the
|
|
1645
|
+
* `## Contents` TOC, so curators can write a hand-rolled lead section
|
|
1646
|
+
* (sub-headings, paragraphs, lists) without editing the generated
|
|
1647
|
+
* README on every regeneration.
|
|
1648
|
+
*/
|
|
1649
|
+
export declare const readmeConfigSchema: z.ZodObject<{
|
|
1650
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1651
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
1652
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1653
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1654
|
+
browseLabel: z.ZodOptional<z.ZodString>;
|
|
1655
|
+
intro: z.ZodOptional<z.ZodString>;
|
|
1656
|
+
showBadge: z.ZodDefault<z.ZodBoolean>;
|
|
1657
|
+
showToc: z.ZodDefault<z.ZodBoolean>;
|
|
1658
|
+
showBrowseLink: z.ZodDefault<z.ZodBoolean>;
|
|
1659
|
+
}, z.core.$strip>;
|
|
1598
1660
|
export declare const groveConfigSchema: z.ZodObject<{
|
|
1599
1661
|
blueprint: z.ZodDefault<z.ZodEnum<{
|
|
1600
1662
|
"project-directory": "project-directory";
|
|
@@ -1681,6 +1743,17 @@ export declare const groveConfigSchema: z.ZodObject<{
|
|
|
1681
1743
|
sample: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1682
1744
|
}, z.core.$strip>>;
|
|
1683
1745
|
}, z.core.$strip>>;
|
|
1746
|
+
readme: z.ZodOptional<z.ZodObject<{
|
|
1747
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1748
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
1749
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1750
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1751
|
+
browseLabel: z.ZodOptional<z.ZodString>;
|
|
1752
|
+
intro: z.ZodOptional<z.ZodString>;
|
|
1753
|
+
showBadge: z.ZodDefault<z.ZodBoolean>;
|
|
1754
|
+
showToc: z.ZodDefault<z.ZodBoolean>;
|
|
1755
|
+
showBrowseLink: z.ZodDefault<z.ZodBoolean>;
|
|
1756
|
+
}, z.core.$strip>>;
|
|
1684
1757
|
components: z.ZodDefault<z.ZodObject<{
|
|
1685
1758
|
Header: z.ZodOptional<z.ZodString>;
|
|
1686
1759
|
Footer: z.ZodOptional<z.ZodString>;
|
|
@@ -1726,6 +1799,7 @@ export type EntityType = z.infer<typeof entityTypeSchema>;
|
|
|
1726
1799
|
export type AppLabel = z.infer<typeof appLabelSchema>;
|
|
1727
1800
|
export type Score = z.infer<typeof scoreSchema>;
|
|
1728
1801
|
export type Links = z.infer<typeof linksSchema>;
|
|
1802
|
+
export type ReadmeConfig = z.infer<typeof readmeConfigSchema>;
|
|
1729
1803
|
export declare function unwrapHealth(value: HealthFile): HealthEntry[];
|
|
1730
1804
|
export declare function unwrapDecisions(value: DecisionsFile): Decision[];
|
|
1731
1805
|
export declare function unwrapOverrides(value: OverridesFile): Override[];
|
|
@@ -1746,8 +1820,15 @@ export interface IndexBase {
|
|
|
1746
1820
|
tags: string[];
|
|
1747
1821
|
links: Links;
|
|
1748
1822
|
description: string;
|
|
1823
|
+
/** Open Apps-written summary, surfaced as the lead paragraph on the
|
|
1824
|
+
* detail page above the original (GitHub-sourced) description. */
|
|
1825
|
+
summary?: string | undefined;
|
|
1826
|
+
/** The original GitHub description, preserved separately so curators
|
|
1827
|
+
* can write their own `summary` without overwriting it. */
|
|
1828
|
+
sourceDescription?: string | undefined;
|
|
1749
1829
|
content?: string | undefined;
|
|
1750
1830
|
curation: ProjectRecord["curation"];
|
|
1831
|
+
licenses: string[];
|
|
1751
1832
|
}
|
|
1752
1833
|
export interface IndexGithubSummary {
|
|
1753
1834
|
fullName: string | undefined;
|
|
@@ -1766,9 +1847,11 @@ export interface IndexProjectRecord extends IndexBase {
|
|
|
1766
1847
|
stack: ProjectRecord["stack"];
|
|
1767
1848
|
stacks: string[];
|
|
1768
1849
|
platforms: string[];
|
|
1850
|
+
licenses: string[];
|
|
1769
1851
|
projectType: ProjectRecord["projectType"];
|
|
1770
1852
|
repoUrl: ProjectRecord["repoUrl"];
|
|
1771
1853
|
logoUrl: ProjectRecord["logoUrl"];
|
|
1854
|
+
screenshots: ProjectRecord["screenshots"];
|
|
1772
1855
|
difficulty: ProjectRecord["difficulty"];
|
|
1773
1856
|
codebaseSize: ProjectRecord["codebaseSize"];
|
|
1774
1857
|
bestFor: string[];
|
package/dist/schema.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB;;;;;GAKG;AACH,eAAO,MAAM,eAAe;;;;EAI1B,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAExD;;;;GAIG;AACH,eAAO,MAAM,kBAAkB;;;;EAA4C,CAAC;AAE5E,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,SAAS,EAAE,YAAY,CAIzD,CAAC;AAMF,eAAO,MAAM,kBAAkB;;;;;;;;;;;EAW7B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;EAOnC,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,gBAAgB;;;;;EAK3B,CAAC;AAMH,eAAO,MAAM,iBAAiB;;;;;;;;;EAS5B,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;EAY7B,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;EAY3B,CAAC;AAEH,eAAO,MAAM,cAAc;;;;;EAA+C,CAAC;AAE3E,eAAO,MAAM,WAAW;;;;;;;iBAOtB,CAAC;AAMH,eAAO,MAAM,WAAW;;;;;kCAQV,CAAC;AAMf,eAAO,MAAM,mBAAmB;;;;;mBASnB,CAAC;AAEd,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA+BnB,CAAC;AAEjB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAoC/B,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAS5B,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAI5B,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAG3B,CAAC;AAMH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;iBAQzB,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAG9B,CAAC;AAMH,eAAO,MAAM,cAAc;;;iBAGzB,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;mBAG9B,CAAC;
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"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"}
|