@bendyline/gilde 0.1.24 → 0.1.26
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/authoring/gstack/evals/cso.json +2 -0
- package/authoring/gstack/overlays/cso.json +1 -0
- package/authoring/gstack/wave.json +2 -2
- package/data/craftbook-templates/br/browser-qa-audit/versions/2.0.1/craftbook.json +358 -0
- package/data/craftbook-templates/br/browser-qa-audit/versions/2.0.1/test.json +376 -0
- package/data/craftbook-templates/de/design-system-consultation/versions/2.0.1/craftbook.json +385 -0
- package/data/craftbook-templates/de/design-system-consultation/versions/2.0.1/test.json +201 -0
- package/data/craftbook-templates/en/engineering-retrospective/versions/2.0.1/craftbook.json +353 -0
- package/data/craftbook-templates/en/engineering-retrospective/versions/2.0.1/test.json +191 -0
- package/data/craftbook-templates/ex/executive-level-review/versions/2.0.1/craftbook.json +347 -0
- package/data/craftbook-templates/ex/executive-level-review/versions/2.0.1/test.json +135 -0
- package/data/craftbook-templates/id/idea-office-hours/versions/2.0.1/craftbook.json +333 -0
- package/data/craftbook-templates/id/idea-office-hours/versions/2.0.1/test.json +141 -0
- package/data/craftbook-templates/index.json +1 -1
- package/data/craftbook-templates/pu/pull-request-review/manifest.json +1 -1
- package/data/craftbook-templates/pu/pull-request-review/versions/1.4.0/craftbook.json +179 -0
- package/data/craftbook-templates/pu/pull-request-review/versions/1.4.0/test.json +123 -0
- package/data/craftbook-templates/ro/root-cause-investigation/versions/2.0.1/craftbook.json +348 -0
- package/data/craftbook-templates/ro/root-cause-investigation/versions/2.0.1/test.json +153 -0
- package/data/craftbook-templates/se/security-architecture-review/versions/2.0.1/craftbook.json +390 -0
- package/data/craftbook-templates/se/security-architecture-review/versions/2.0.1/test.json +154 -0
- package/data/craftbook-templates/se/security-architecture-review/versions/2.0.2/craftbook.json +450 -0
- package/data/craftbook-templates/se/security-architecture-review/versions/2.0.2/test.json +154 -0
- package/data/craftbook-templates/sp/spec-authoring/versions/2.0.1/craftbook.json +391 -0
- package/data/craftbook-templates/sp/spec-authoring/versions/2.0.1/test.json +162 -0
- package/data/craftbook-templates/te/technical-documentation/versions/2.0.1/craftbook.json +343 -0
- package/data/craftbook-templates/te/technical-documentation/versions/2.0.1/test.json +174 -0
- package/package.json +1 -1
- package/schemas/craftbook-doc.schema.json +170 -0
- package/schemas/craftbook-template-version.schema.json +170 -0
- package/schemas/craftbook-test.schema.json +143 -0
|
@@ -40,6 +40,14 @@
|
|
|
40
40
|
"missionObjectives": {
|
|
41
41
|
"type": "string"
|
|
42
42
|
},
|
|
43
|
+
"managedWorkspaceWritePolicy": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"enum": [
|
|
46
|
+
"auto",
|
|
47
|
+
"allow",
|
|
48
|
+
"deny"
|
|
49
|
+
]
|
|
50
|
+
},
|
|
43
51
|
"files": {
|
|
44
52
|
"default": [],
|
|
45
53
|
"type": "array",
|
|
@@ -412,6 +420,9 @@
|
|
|
412
420
|
"generic-file"
|
|
413
421
|
]
|
|
414
422
|
},
|
|
423
|
+
"artifact": {
|
|
424
|
+
"type": "boolean"
|
|
425
|
+
},
|
|
415
426
|
"minBytes": {
|
|
416
427
|
"type": "integer",
|
|
417
428
|
"exclusiveMinimum": 0,
|
|
@@ -712,6 +723,9 @@
|
|
|
712
723
|
"label": {
|
|
713
724
|
"type": "string",
|
|
714
725
|
"minLength": 1
|
|
726
|
+
},
|
|
727
|
+
"artifact": {
|
|
728
|
+
"type": "boolean"
|
|
715
729
|
}
|
|
716
730
|
},
|
|
717
731
|
"required": [
|
|
@@ -1019,6 +1033,36 @@
|
|
|
1019
1033
|
"tools"
|
|
1020
1034
|
]
|
|
1021
1035
|
},
|
|
1036
|
+
{
|
|
1037
|
+
"type": "object",
|
|
1038
|
+
"properties": {
|
|
1039
|
+
"kind": {
|
|
1040
|
+
"type": "string",
|
|
1041
|
+
"const": "corpusCoverage"
|
|
1042
|
+
},
|
|
1043
|
+
"file": {
|
|
1044
|
+
"type": "string",
|
|
1045
|
+
"minLength": 1
|
|
1046
|
+
},
|
|
1047
|
+
"corpusDir": {
|
|
1048
|
+
"type": "string",
|
|
1049
|
+
"minLength": 1
|
|
1050
|
+
},
|
|
1051
|
+
"reviewedField": {
|
|
1052
|
+
"type": "string",
|
|
1053
|
+
"minLength": 1
|
|
1054
|
+
},
|
|
1055
|
+
"recordField": {
|
|
1056
|
+
"type": "string",
|
|
1057
|
+
"minLength": 1
|
|
1058
|
+
}
|
|
1059
|
+
},
|
|
1060
|
+
"required": [
|
|
1061
|
+
"kind",
|
|
1062
|
+
"file",
|
|
1063
|
+
"corpusDir"
|
|
1064
|
+
]
|
|
1065
|
+
},
|
|
1022
1066
|
{
|
|
1023
1067
|
"type": "object",
|
|
1024
1068
|
"properties": {
|
|
@@ -1658,6 +1702,9 @@
|
|
|
1658
1702
|
"label": {
|
|
1659
1703
|
"type": "string",
|
|
1660
1704
|
"minLength": 1
|
|
1705
|
+
},
|
|
1706
|
+
"artifact": {
|
|
1707
|
+
"type": "boolean"
|
|
1661
1708
|
}
|
|
1662
1709
|
},
|
|
1663
1710
|
"required": [
|
|
@@ -1965,6 +2012,36 @@
|
|
|
1965
2012
|
"tools"
|
|
1966
2013
|
]
|
|
1967
2014
|
},
|
|
2015
|
+
{
|
|
2016
|
+
"type": "object",
|
|
2017
|
+
"properties": {
|
|
2018
|
+
"kind": {
|
|
2019
|
+
"type": "string",
|
|
2020
|
+
"const": "corpusCoverage"
|
|
2021
|
+
},
|
|
2022
|
+
"file": {
|
|
2023
|
+
"type": "string",
|
|
2024
|
+
"minLength": 1
|
|
2025
|
+
},
|
|
2026
|
+
"corpusDir": {
|
|
2027
|
+
"type": "string",
|
|
2028
|
+
"minLength": 1
|
|
2029
|
+
},
|
|
2030
|
+
"reviewedField": {
|
|
2031
|
+
"type": "string",
|
|
2032
|
+
"minLength": 1
|
|
2033
|
+
},
|
|
2034
|
+
"recordField": {
|
|
2035
|
+
"type": "string",
|
|
2036
|
+
"minLength": 1
|
|
2037
|
+
}
|
|
2038
|
+
},
|
|
2039
|
+
"required": [
|
|
2040
|
+
"kind",
|
|
2041
|
+
"file",
|
|
2042
|
+
"corpusDir"
|
|
2043
|
+
]
|
|
2044
|
+
},
|
|
1968
2045
|
{
|
|
1969
2046
|
"type": "object",
|
|
1970
2047
|
"properties": {
|
|
@@ -2604,6 +2681,9 @@
|
|
|
2604
2681
|
"label": {
|
|
2605
2682
|
"type": "string",
|
|
2606
2683
|
"minLength": 1
|
|
2684
|
+
},
|
|
2685
|
+
"artifact": {
|
|
2686
|
+
"type": "boolean"
|
|
2607
2687
|
}
|
|
2608
2688
|
},
|
|
2609
2689
|
"required": [
|
|
@@ -2911,6 +2991,36 @@
|
|
|
2911
2991
|
"tools"
|
|
2912
2992
|
]
|
|
2913
2993
|
},
|
|
2994
|
+
{
|
|
2995
|
+
"type": "object",
|
|
2996
|
+
"properties": {
|
|
2997
|
+
"kind": {
|
|
2998
|
+
"type": "string",
|
|
2999
|
+
"const": "corpusCoverage"
|
|
3000
|
+
},
|
|
3001
|
+
"file": {
|
|
3002
|
+
"type": "string",
|
|
3003
|
+
"minLength": 1
|
|
3004
|
+
},
|
|
3005
|
+
"corpusDir": {
|
|
3006
|
+
"type": "string",
|
|
3007
|
+
"minLength": 1
|
|
3008
|
+
},
|
|
3009
|
+
"reviewedField": {
|
|
3010
|
+
"type": "string",
|
|
3011
|
+
"minLength": 1
|
|
3012
|
+
},
|
|
3013
|
+
"recordField": {
|
|
3014
|
+
"type": "string",
|
|
3015
|
+
"minLength": 1
|
|
3016
|
+
}
|
|
3017
|
+
},
|
|
3018
|
+
"required": [
|
|
3019
|
+
"kind",
|
|
3020
|
+
"file",
|
|
3021
|
+
"corpusDir"
|
|
3022
|
+
]
|
|
3023
|
+
},
|
|
2914
3024
|
{
|
|
2915
3025
|
"type": "object",
|
|
2916
3026
|
"properties": {
|
|
@@ -3551,6 +3661,9 @@
|
|
|
3551
3661
|
"label": {
|
|
3552
3662
|
"type": "string",
|
|
3553
3663
|
"minLength": 1
|
|
3664
|
+
},
|
|
3665
|
+
"artifact": {
|
|
3666
|
+
"type": "boolean"
|
|
3554
3667
|
}
|
|
3555
3668
|
},
|
|
3556
3669
|
"required": [
|
|
@@ -3858,6 +3971,36 @@
|
|
|
3858
3971
|
"tools"
|
|
3859
3972
|
]
|
|
3860
3973
|
},
|
|
3974
|
+
{
|
|
3975
|
+
"type": "object",
|
|
3976
|
+
"properties": {
|
|
3977
|
+
"kind": {
|
|
3978
|
+
"type": "string",
|
|
3979
|
+
"const": "corpusCoverage"
|
|
3980
|
+
},
|
|
3981
|
+
"file": {
|
|
3982
|
+
"type": "string",
|
|
3983
|
+
"minLength": 1
|
|
3984
|
+
},
|
|
3985
|
+
"corpusDir": {
|
|
3986
|
+
"type": "string",
|
|
3987
|
+
"minLength": 1
|
|
3988
|
+
},
|
|
3989
|
+
"reviewedField": {
|
|
3990
|
+
"type": "string",
|
|
3991
|
+
"minLength": 1
|
|
3992
|
+
},
|
|
3993
|
+
"recordField": {
|
|
3994
|
+
"type": "string",
|
|
3995
|
+
"minLength": 1
|
|
3996
|
+
}
|
|
3997
|
+
},
|
|
3998
|
+
"required": [
|
|
3999
|
+
"kind",
|
|
4000
|
+
"file",
|
|
4001
|
+
"corpusDir"
|
|
4002
|
+
]
|
|
4003
|
+
},
|
|
3861
4004
|
{
|
|
3862
4005
|
"type": "object",
|
|
3863
4006
|
"properties": {
|