@bendyline/gilde 0.1.25 → 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/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/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/package.json +1 -1
- package/schemas/craftbook-doc.schema.json +158 -0
- package/schemas/craftbook-template-version.schema.json +158 -0
- package/schemas/craftbook-test.schema.json +120 -0
|
@@ -1033,6 +1033,25 @@
|
|
|
1033
1033
|
}
|
|
1034
1034
|
]
|
|
1035
1035
|
},
|
|
1036
|
+
"consumes": {
|
|
1037
|
+
"minItems": 1,
|
|
1038
|
+
"type": "array",
|
|
1039
|
+
"items": {
|
|
1040
|
+
"type": "object",
|
|
1041
|
+
"properties": {
|
|
1042
|
+
"file": {
|
|
1043
|
+
"type": "string",
|
|
1044
|
+
"minLength": 1
|
|
1045
|
+
},
|
|
1046
|
+
"artifact": {
|
|
1047
|
+
"type": "boolean"
|
|
1048
|
+
}
|
|
1049
|
+
},
|
|
1050
|
+
"required": [
|
|
1051
|
+
"file"
|
|
1052
|
+
]
|
|
1053
|
+
}
|
|
1054
|
+
},
|
|
1036
1055
|
"advanceWhen": {
|
|
1037
1056
|
"type": "object",
|
|
1038
1057
|
"properties": {
|
|
@@ -1684,6 +1703,36 @@
|
|
|
1684
1703
|
"tools"
|
|
1685
1704
|
]
|
|
1686
1705
|
},
|
|
1706
|
+
{
|
|
1707
|
+
"type": "object",
|
|
1708
|
+
"properties": {
|
|
1709
|
+
"kind": {
|
|
1710
|
+
"type": "string",
|
|
1711
|
+
"const": "corpusCoverage"
|
|
1712
|
+
},
|
|
1713
|
+
"file": {
|
|
1714
|
+
"type": "string",
|
|
1715
|
+
"minLength": 1
|
|
1716
|
+
},
|
|
1717
|
+
"corpusDir": {
|
|
1718
|
+
"type": "string",
|
|
1719
|
+
"minLength": 1
|
|
1720
|
+
},
|
|
1721
|
+
"reviewedField": {
|
|
1722
|
+
"type": "string",
|
|
1723
|
+
"minLength": 1
|
|
1724
|
+
},
|
|
1725
|
+
"recordField": {
|
|
1726
|
+
"type": "string",
|
|
1727
|
+
"minLength": 1
|
|
1728
|
+
}
|
|
1729
|
+
},
|
|
1730
|
+
"required": [
|
|
1731
|
+
"kind",
|
|
1732
|
+
"file",
|
|
1733
|
+
"corpusDir"
|
|
1734
|
+
]
|
|
1735
|
+
},
|
|
1687
1736
|
{
|
|
1688
1737
|
"type": "object",
|
|
1689
1738
|
"properties": {
|
|
@@ -2555,6 +2604,36 @@
|
|
|
2555
2604
|
"tools"
|
|
2556
2605
|
]
|
|
2557
2606
|
},
|
|
2607
|
+
{
|
|
2608
|
+
"type": "object",
|
|
2609
|
+
"properties": {
|
|
2610
|
+
"kind": {
|
|
2611
|
+
"type": "string",
|
|
2612
|
+
"const": "corpusCoverage"
|
|
2613
|
+
},
|
|
2614
|
+
"file": {
|
|
2615
|
+
"type": "string",
|
|
2616
|
+
"minLength": 1
|
|
2617
|
+
},
|
|
2618
|
+
"corpusDir": {
|
|
2619
|
+
"type": "string",
|
|
2620
|
+
"minLength": 1
|
|
2621
|
+
},
|
|
2622
|
+
"reviewedField": {
|
|
2623
|
+
"type": "string",
|
|
2624
|
+
"minLength": 1
|
|
2625
|
+
},
|
|
2626
|
+
"recordField": {
|
|
2627
|
+
"type": "string",
|
|
2628
|
+
"minLength": 1
|
|
2629
|
+
}
|
|
2630
|
+
},
|
|
2631
|
+
"required": [
|
|
2632
|
+
"kind",
|
|
2633
|
+
"file",
|
|
2634
|
+
"corpusDir"
|
|
2635
|
+
]
|
|
2636
|
+
},
|
|
2558
2637
|
{
|
|
2559
2638
|
"type": "object",
|
|
2560
2639
|
"properties": {
|
|
@@ -3680,6 +3759,25 @@
|
|
|
3680
3759
|
}
|
|
3681
3760
|
]
|
|
3682
3761
|
},
|
|
3762
|
+
"consumes": {
|
|
3763
|
+
"minItems": 1,
|
|
3764
|
+
"type": "array",
|
|
3765
|
+
"items": {
|
|
3766
|
+
"type": "object",
|
|
3767
|
+
"properties": {
|
|
3768
|
+
"file": {
|
|
3769
|
+
"type": "string",
|
|
3770
|
+
"minLength": 1
|
|
3771
|
+
},
|
|
3772
|
+
"artifact": {
|
|
3773
|
+
"type": "boolean"
|
|
3774
|
+
}
|
|
3775
|
+
},
|
|
3776
|
+
"required": [
|
|
3777
|
+
"file"
|
|
3778
|
+
]
|
|
3779
|
+
}
|
|
3780
|
+
},
|
|
3683
3781
|
"advanceWhen": {
|
|
3684
3782
|
"type": "object",
|
|
3685
3783
|
"properties": {
|
|
@@ -4331,6 +4429,36 @@
|
|
|
4331
4429
|
"tools"
|
|
4332
4430
|
]
|
|
4333
4431
|
},
|
|
4432
|
+
{
|
|
4433
|
+
"type": "object",
|
|
4434
|
+
"properties": {
|
|
4435
|
+
"kind": {
|
|
4436
|
+
"type": "string",
|
|
4437
|
+
"const": "corpusCoverage"
|
|
4438
|
+
},
|
|
4439
|
+
"file": {
|
|
4440
|
+
"type": "string",
|
|
4441
|
+
"minLength": 1
|
|
4442
|
+
},
|
|
4443
|
+
"corpusDir": {
|
|
4444
|
+
"type": "string",
|
|
4445
|
+
"minLength": 1
|
|
4446
|
+
},
|
|
4447
|
+
"reviewedField": {
|
|
4448
|
+
"type": "string",
|
|
4449
|
+
"minLength": 1
|
|
4450
|
+
},
|
|
4451
|
+
"recordField": {
|
|
4452
|
+
"type": "string",
|
|
4453
|
+
"minLength": 1
|
|
4454
|
+
}
|
|
4455
|
+
},
|
|
4456
|
+
"required": [
|
|
4457
|
+
"kind",
|
|
4458
|
+
"file",
|
|
4459
|
+
"corpusDir"
|
|
4460
|
+
]
|
|
4461
|
+
},
|
|
4334
4462
|
{
|
|
4335
4463
|
"type": "object",
|
|
4336
4464
|
"properties": {
|
|
@@ -5202,6 +5330,36 @@
|
|
|
5202
5330
|
"tools"
|
|
5203
5331
|
]
|
|
5204
5332
|
},
|
|
5333
|
+
{
|
|
5334
|
+
"type": "object",
|
|
5335
|
+
"properties": {
|
|
5336
|
+
"kind": {
|
|
5337
|
+
"type": "string",
|
|
5338
|
+
"const": "corpusCoverage"
|
|
5339
|
+
},
|
|
5340
|
+
"file": {
|
|
5341
|
+
"type": "string",
|
|
5342
|
+
"minLength": 1
|
|
5343
|
+
},
|
|
5344
|
+
"corpusDir": {
|
|
5345
|
+
"type": "string",
|
|
5346
|
+
"minLength": 1
|
|
5347
|
+
},
|
|
5348
|
+
"reviewedField": {
|
|
5349
|
+
"type": "string",
|
|
5350
|
+
"minLength": 1
|
|
5351
|
+
},
|
|
5352
|
+
"recordField": {
|
|
5353
|
+
"type": "string",
|
|
5354
|
+
"minLength": 1
|
|
5355
|
+
}
|
|
5356
|
+
},
|
|
5357
|
+
"required": [
|
|
5358
|
+
"kind",
|
|
5359
|
+
"file",
|
|
5360
|
+
"corpusDir"
|
|
5361
|
+
]
|
|
5362
|
+
},
|
|
5205
5363
|
{
|
|
5206
5364
|
"type": "object",
|
|
5207
5365
|
"properties": {
|
|
@@ -686,6 +686,25 @@
|
|
|
686
686
|
}
|
|
687
687
|
]
|
|
688
688
|
},
|
|
689
|
+
"consumes": {
|
|
690
|
+
"minItems": 1,
|
|
691
|
+
"type": "array",
|
|
692
|
+
"items": {
|
|
693
|
+
"type": "object",
|
|
694
|
+
"properties": {
|
|
695
|
+
"file": {
|
|
696
|
+
"type": "string",
|
|
697
|
+
"minLength": 1
|
|
698
|
+
},
|
|
699
|
+
"artifact": {
|
|
700
|
+
"type": "boolean"
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
"required": [
|
|
704
|
+
"file"
|
|
705
|
+
]
|
|
706
|
+
}
|
|
707
|
+
},
|
|
689
708
|
"advanceWhen": {
|
|
690
709
|
"type": "object",
|
|
691
710
|
"properties": {
|
|
@@ -1337,6 +1356,36 @@
|
|
|
1337
1356
|
"tools"
|
|
1338
1357
|
]
|
|
1339
1358
|
},
|
|
1359
|
+
{
|
|
1360
|
+
"type": "object",
|
|
1361
|
+
"properties": {
|
|
1362
|
+
"kind": {
|
|
1363
|
+
"type": "string",
|
|
1364
|
+
"const": "corpusCoverage"
|
|
1365
|
+
},
|
|
1366
|
+
"file": {
|
|
1367
|
+
"type": "string",
|
|
1368
|
+
"minLength": 1
|
|
1369
|
+
},
|
|
1370
|
+
"corpusDir": {
|
|
1371
|
+
"type": "string",
|
|
1372
|
+
"minLength": 1
|
|
1373
|
+
},
|
|
1374
|
+
"reviewedField": {
|
|
1375
|
+
"type": "string",
|
|
1376
|
+
"minLength": 1
|
|
1377
|
+
},
|
|
1378
|
+
"recordField": {
|
|
1379
|
+
"type": "string",
|
|
1380
|
+
"minLength": 1
|
|
1381
|
+
}
|
|
1382
|
+
},
|
|
1383
|
+
"required": [
|
|
1384
|
+
"kind",
|
|
1385
|
+
"file",
|
|
1386
|
+
"corpusDir"
|
|
1387
|
+
]
|
|
1388
|
+
},
|
|
1340
1389
|
{
|
|
1341
1390
|
"type": "object",
|
|
1342
1391
|
"properties": {
|
|
@@ -2208,6 +2257,36 @@
|
|
|
2208
2257
|
"tools"
|
|
2209
2258
|
]
|
|
2210
2259
|
},
|
|
2260
|
+
{
|
|
2261
|
+
"type": "object",
|
|
2262
|
+
"properties": {
|
|
2263
|
+
"kind": {
|
|
2264
|
+
"type": "string",
|
|
2265
|
+
"const": "corpusCoverage"
|
|
2266
|
+
},
|
|
2267
|
+
"file": {
|
|
2268
|
+
"type": "string",
|
|
2269
|
+
"minLength": 1
|
|
2270
|
+
},
|
|
2271
|
+
"corpusDir": {
|
|
2272
|
+
"type": "string",
|
|
2273
|
+
"minLength": 1
|
|
2274
|
+
},
|
|
2275
|
+
"reviewedField": {
|
|
2276
|
+
"type": "string",
|
|
2277
|
+
"minLength": 1
|
|
2278
|
+
},
|
|
2279
|
+
"recordField": {
|
|
2280
|
+
"type": "string",
|
|
2281
|
+
"minLength": 1
|
|
2282
|
+
}
|
|
2283
|
+
},
|
|
2284
|
+
"required": [
|
|
2285
|
+
"kind",
|
|
2286
|
+
"file",
|
|
2287
|
+
"corpusDir"
|
|
2288
|
+
]
|
|
2289
|
+
},
|
|
2211
2290
|
{
|
|
2212
2291
|
"type": "object",
|
|
2213
2292
|
"properties": {
|
|
@@ -3327,6 +3406,25 @@
|
|
|
3327
3406
|
}
|
|
3328
3407
|
]
|
|
3329
3408
|
},
|
|
3409
|
+
"consumes": {
|
|
3410
|
+
"minItems": 1,
|
|
3411
|
+
"type": "array",
|
|
3412
|
+
"items": {
|
|
3413
|
+
"type": "object",
|
|
3414
|
+
"properties": {
|
|
3415
|
+
"file": {
|
|
3416
|
+
"type": "string",
|
|
3417
|
+
"minLength": 1
|
|
3418
|
+
},
|
|
3419
|
+
"artifact": {
|
|
3420
|
+
"type": "boolean"
|
|
3421
|
+
}
|
|
3422
|
+
},
|
|
3423
|
+
"required": [
|
|
3424
|
+
"file"
|
|
3425
|
+
]
|
|
3426
|
+
}
|
|
3427
|
+
},
|
|
3330
3428
|
"advanceWhen": {
|
|
3331
3429
|
"type": "object",
|
|
3332
3430
|
"properties": {
|
|
@@ -3978,6 +4076,36 @@
|
|
|
3978
4076
|
"tools"
|
|
3979
4077
|
]
|
|
3980
4078
|
},
|
|
4079
|
+
{
|
|
4080
|
+
"type": "object",
|
|
4081
|
+
"properties": {
|
|
4082
|
+
"kind": {
|
|
4083
|
+
"type": "string",
|
|
4084
|
+
"const": "corpusCoverage"
|
|
4085
|
+
},
|
|
4086
|
+
"file": {
|
|
4087
|
+
"type": "string",
|
|
4088
|
+
"minLength": 1
|
|
4089
|
+
},
|
|
4090
|
+
"corpusDir": {
|
|
4091
|
+
"type": "string",
|
|
4092
|
+
"minLength": 1
|
|
4093
|
+
},
|
|
4094
|
+
"reviewedField": {
|
|
4095
|
+
"type": "string",
|
|
4096
|
+
"minLength": 1
|
|
4097
|
+
},
|
|
4098
|
+
"recordField": {
|
|
4099
|
+
"type": "string",
|
|
4100
|
+
"minLength": 1
|
|
4101
|
+
}
|
|
4102
|
+
},
|
|
4103
|
+
"required": [
|
|
4104
|
+
"kind",
|
|
4105
|
+
"file",
|
|
4106
|
+
"corpusDir"
|
|
4107
|
+
]
|
|
4108
|
+
},
|
|
3981
4109
|
{
|
|
3982
4110
|
"type": "object",
|
|
3983
4111
|
"properties": {
|
|
@@ -4849,6 +4977,36 @@
|
|
|
4849
4977
|
"tools"
|
|
4850
4978
|
]
|
|
4851
4979
|
},
|
|
4980
|
+
{
|
|
4981
|
+
"type": "object",
|
|
4982
|
+
"properties": {
|
|
4983
|
+
"kind": {
|
|
4984
|
+
"type": "string",
|
|
4985
|
+
"const": "corpusCoverage"
|
|
4986
|
+
},
|
|
4987
|
+
"file": {
|
|
4988
|
+
"type": "string",
|
|
4989
|
+
"minLength": 1
|
|
4990
|
+
},
|
|
4991
|
+
"corpusDir": {
|
|
4992
|
+
"type": "string",
|
|
4993
|
+
"minLength": 1
|
|
4994
|
+
},
|
|
4995
|
+
"reviewedField": {
|
|
4996
|
+
"type": "string",
|
|
4997
|
+
"minLength": 1
|
|
4998
|
+
},
|
|
4999
|
+
"recordField": {
|
|
5000
|
+
"type": "string",
|
|
5001
|
+
"minLength": 1
|
|
5002
|
+
}
|
|
5003
|
+
},
|
|
5004
|
+
"required": [
|
|
5005
|
+
"kind",
|
|
5006
|
+
"file",
|
|
5007
|
+
"corpusDir"
|
|
5008
|
+
]
|
|
5009
|
+
},
|
|
4852
5010
|
{
|
|
4853
5011
|
"type": "object",
|
|
4854
5012
|
"properties": {
|
|
@@ -1033,6 +1033,36 @@
|
|
|
1033
1033
|
"tools"
|
|
1034
1034
|
]
|
|
1035
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
|
+
},
|
|
1036
1066
|
{
|
|
1037
1067
|
"type": "object",
|
|
1038
1068
|
"properties": {
|
|
@@ -1982,6 +2012,36 @@
|
|
|
1982
2012
|
"tools"
|
|
1983
2013
|
]
|
|
1984
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
|
+
},
|
|
1985
2045
|
{
|
|
1986
2046
|
"type": "object",
|
|
1987
2047
|
"properties": {
|
|
@@ -2931,6 +2991,36 @@
|
|
|
2931
2991
|
"tools"
|
|
2932
2992
|
]
|
|
2933
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
|
+
},
|
|
2934
3024
|
{
|
|
2935
3025
|
"type": "object",
|
|
2936
3026
|
"properties": {
|
|
@@ -3881,6 +3971,36 @@
|
|
|
3881
3971
|
"tools"
|
|
3882
3972
|
]
|
|
3883
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
|
+
},
|
|
3884
4004
|
{
|
|
3885
4005
|
"type": "object",
|
|
3886
4006
|
"properties": {
|