5etools-utils 0.8.2 → 0.8.4
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/package.json +1 -1
- package/schema/brew/homebrew.json +4 -1
- package/schema/brew/items-base.json +34 -1
- package/schema/brew/util.json +20 -1
- package/schema/brew/vehicles.json +2 -1
- package/schema/brew-fast/homebrew.json +4 -1
- package/schema/brew-fast/items-base.json +34 -1
- package/schema/brew-fast/util.json +20 -1
- package/schema/brew-fast/vehicles.json +2 -1
- package/schema/site/homebrew.json +4 -1
- package/schema/site/items-base.json +34 -1
- package/schema/site/util.json +20 -1
- package/schema/site/vehicles.json +2 -1
- package/schema/site-fast/homebrew.json +4 -1
- package/schema/site-fast/items-base.json +34 -1
- package/schema/site-fast/util.json +20 -1
- package/schema/site-fast/vehicles.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.8",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -455,6 +455,9 @@
|
|
|
455
455
|
"itemTypeAdditionalEntries": {
|
|
456
456
|
"$ref": "items-base.json#/properties/itemTypeAdditionalEntries"
|
|
457
457
|
},
|
|
458
|
+
"itemMastery": {
|
|
459
|
+
"$ref": "items-base.json#/properties/itemMastery"
|
|
460
|
+
},
|
|
458
461
|
"magicvariant": {
|
|
459
462
|
"$ref": "magicvariants.json#/properties/magicvariant"
|
|
460
463
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items-base.json",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.6",
|
|
5
5
|
"$defs": {
|
|
6
6
|
"itemPropertyLookupArray": {
|
|
7
7
|
"type": "array",
|
|
@@ -472,6 +472,39 @@
|
|
|
472
472
|
},
|
|
473
473
|
"additionalProperties": false
|
|
474
474
|
}
|
|
475
|
+
},
|
|
476
|
+
"itemMastery": {
|
|
477
|
+
"type": "array",
|
|
478
|
+
"minItems": 1,
|
|
479
|
+
"items": {
|
|
480
|
+
"type": "object",
|
|
481
|
+
"properties": {
|
|
482
|
+
"name": {
|
|
483
|
+
"type": "string"
|
|
484
|
+
},
|
|
485
|
+
"source": {
|
|
486
|
+
"type": "string"
|
|
487
|
+
},
|
|
488
|
+
"page": {
|
|
489
|
+
"$ref": "util.json#/$defs/page"
|
|
490
|
+
},
|
|
491
|
+
"prerequisite": {
|
|
492
|
+
"$ref": "util.json#/$defs/prerequisite"
|
|
493
|
+
},
|
|
494
|
+
"entries": {
|
|
495
|
+
"type": "array",
|
|
496
|
+
"items": {
|
|
497
|
+
"$ref": "entry.json"
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
"required": [
|
|
502
|
+
"name",
|
|
503
|
+
"source",
|
|
504
|
+
"entries"
|
|
505
|
+
],
|
|
506
|
+
"additionalProperties": false
|
|
507
|
+
}
|
|
475
508
|
}
|
|
476
509
|
},
|
|
477
510
|
"additionalProperties": false
|
package/schema/brew/util.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "util.json",
|
|
4
4
|
"title": "Util",
|
|
5
5
|
"description": "Utility definitions to be used in other schemas.",
|
|
6
|
-
"version": "1.13.
|
|
6
|
+
"version": "1.13.14",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaBlock": {
|
|
9
9
|
"type": "object",
|
|
@@ -1585,6 +1585,25 @@
|
|
|
1585
1585
|
"$ref": "entry.json"
|
|
1586
1586
|
}
|
|
1587
1587
|
},
|
|
1588
|
+
"itemType": {
|
|
1589
|
+
"type": "array",
|
|
1590
|
+
"items": {
|
|
1591
|
+
"$ref": "items-shared.json#/$defs/itemType"
|
|
1592
|
+
}
|
|
1593
|
+
},
|
|
1594
|
+
"itemProperty": {
|
|
1595
|
+
"type": "array",
|
|
1596
|
+
"items": {
|
|
1597
|
+
"oneOf": [
|
|
1598
|
+
{
|
|
1599
|
+
"$ref": "items-shared.json#/$defs/itemProperty"
|
|
1600
|
+
},
|
|
1601
|
+
{
|
|
1602
|
+
"type": "null"
|
|
1603
|
+
}
|
|
1604
|
+
]
|
|
1605
|
+
}
|
|
1606
|
+
},
|
|
1588
1607
|
"other": {
|
|
1589
1608
|
"description": "A free text prerequisite",
|
|
1590
1609
|
"type": "string"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "vehicles.json",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.2",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"vehicleTerrain": {
|
|
@@ -392,6 +392,7 @@
|
|
|
392
392
|
}
|
|
393
393
|
},
|
|
394
394
|
"required": [
|
|
395
|
+
"name",
|
|
395
396
|
"entries"
|
|
396
397
|
],
|
|
397
398
|
"additionalProperties": false
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.8",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -453,6 +453,9 @@
|
|
|
453
453
|
"itemTypeAdditionalEntries": {
|
|
454
454
|
"$ref": "items-base.json#/properties/itemTypeAdditionalEntries"
|
|
455
455
|
},
|
|
456
|
+
"itemMastery": {
|
|
457
|
+
"$ref": "items-base.json#/properties/itemMastery"
|
|
458
|
+
},
|
|
456
459
|
"magicvariant": {
|
|
457
460
|
"$ref": "magicvariants.json#/properties/magicvariant"
|
|
458
461
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items-base.json",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.6",
|
|
5
5
|
"$defs": {
|
|
6
6
|
"itemPropertyLookupArray": {
|
|
7
7
|
"type": "array",
|
|
@@ -472,6 +472,39 @@
|
|
|
472
472
|
},
|
|
473
473
|
"additionalProperties": false
|
|
474
474
|
}
|
|
475
|
+
},
|
|
476
|
+
"itemMastery": {
|
|
477
|
+
"type": "array",
|
|
478
|
+
"minItems": 1,
|
|
479
|
+
"items": {
|
|
480
|
+
"type": "object",
|
|
481
|
+
"properties": {
|
|
482
|
+
"name": {
|
|
483
|
+
"type": "string"
|
|
484
|
+
},
|
|
485
|
+
"source": {
|
|
486
|
+
"type": "string"
|
|
487
|
+
},
|
|
488
|
+
"page": {
|
|
489
|
+
"$ref": "util.json#/$defs/page"
|
|
490
|
+
},
|
|
491
|
+
"prerequisite": {
|
|
492
|
+
"$ref": "util.json#/$defs/prerequisite"
|
|
493
|
+
},
|
|
494
|
+
"entries": {
|
|
495
|
+
"type": "array",
|
|
496
|
+
"items": {
|
|
497
|
+
"$ref": "entry.json"
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
"required": [
|
|
502
|
+
"name",
|
|
503
|
+
"source",
|
|
504
|
+
"entries"
|
|
505
|
+
],
|
|
506
|
+
"additionalProperties": false
|
|
507
|
+
}
|
|
475
508
|
}
|
|
476
509
|
},
|
|
477
510
|
"additionalProperties": false
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "util.json",
|
|
4
4
|
"title": "Util",
|
|
5
5
|
"description": "Utility definitions to be used in other schemas.",
|
|
6
|
-
"version": "1.13.
|
|
6
|
+
"version": "1.13.14",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaBlock": {
|
|
9
9
|
"type": "object",
|
|
@@ -1585,6 +1585,25 @@
|
|
|
1585
1585
|
"$ref": "entry.json"
|
|
1586
1586
|
}
|
|
1587
1587
|
},
|
|
1588
|
+
"itemType": {
|
|
1589
|
+
"type": "array",
|
|
1590
|
+
"items": {
|
|
1591
|
+
"$ref": "items-shared.json#/$defs/itemType"
|
|
1592
|
+
}
|
|
1593
|
+
},
|
|
1594
|
+
"itemProperty": {
|
|
1595
|
+
"type": "array",
|
|
1596
|
+
"items": {
|
|
1597
|
+
"oneOf": [
|
|
1598
|
+
{
|
|
1599
|
+
"$ref": "items-shared.json#/$defs/itemProperty"
|
|
1600
|
+
},
|
|
1601
|
+
{
|
|
1602
|
+
"type": "null"
|
|
1603
|
+
}
|
|
1604
|
+
]
|
|
1605
|
+
}
|
|
1606
|
+
},
|
|
1588
1607
|
"other": {
|
|
1589
1608
|
"description": "A free text prerequisite",
|
|
1590
1609
|
"type": "string"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "vehicles.json",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.2",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"vehicleTerrain": {
|
|
@@ -392,6 +392,7 @@
|
|
|
392
392
|
}
|
|
393
393
|
},
|
|
394
394
|
"required": [
|
|
395
|
+
"name",
|
|
395
396
|
"entries"
|
|
396
397
|
],
|
|
397
398
|
"additionalProperties": false
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.8",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -455,6 +455,9 @@
|
|
|
455
455
|
"itemTypeAdditionalEntries": {
|
|
456
456
|
"$ref": "items-base.json#/properties/itemTypeAdditionalEntries"
|
|
457
457
|
},
|
|
458
|
+
"itemMastery": {
|
|
459
|
+
"$ref": "items-base.json#/properties/itemMastery"
|
|
460
|
+
},
|
|
458
461
|
"magicvariant": {
|
|
459
462
|
"$ref": "magicvariants.json#/properties/magicvariant"
|
|
460
463
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items-base.json",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.6",
|
|
5
5
|
"$defs": {
|
|
6
6
|
"itemPropertyLookupArray": {
|
|
7
7
|
"type": "array",
|
|
@@ -437,6 +437,39 @@
|
|
|
437
437
|
},
|
|
438
438
|
"additionalProperties": false
|
|
439
439
|
}
|
|
440
|
+
},
|
|
441
|
+
"itemMastery": {
|
|
442
|
+
"type": "array",
|
|
443
|
+
"minItems": 1,
|
|
444
|
+
"items": {
|
|
445
|
+
"type": "object",
|
|
446
|
+
"properties": {
|
|
447
|
+
"name": {
|
|
448
|
+
"type": "string"
|
|
449
|
+
},
|
|
450
|
+
"source": {
|
|
451
|
+
"type": "string"
|
|
452
|
+
},
|
|
453
|
+
"page": {
|
|
454
|
+
"$ref": "util.json#/$defs/page"
|
|
455
|
+
},
|
|
456
|
+
"prerequisite": {
|
|
457
|
+
"$ref": "util.json#/$defs/prerequisite"
|
|
458
|
+
},
|
|
459
|
+
"entries": {
|
|
460
|
+
"type": "array",
|
|
461
|
+
"items": {
|
|
462
|
+
"$ref": "entry.json"
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
"required": [
|
|
467
|
+
"name",
|
|
468
|
+
"source",
|
|
469
|
+
"entries"
|
|
470
|
+
],
|
|
471
|
+
"additionalProperties": false
|
|
472
|
+
}
|
|
440
473
|
}
|
|
441
474
|
},
|
|
442
475
|
"additionalProperties": false
|
package/schema/site/util.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "util.json",
|
|
4
4
|
"title": "Util",
|
|
5
5
|
"description": "Utility definitions to be used in other schemas.",
|
|
6
|
-
"version": "1.13.
|
|
6
|
+
"version": "1.13.14",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaBlock": {
|
|
9
9
|
"type": "object",
|
|
@@ -1568,6 +1568,25 @@
|
|
|
1568
1568
|
"$ref": "entry.json"
|
|
1569
1569
|
}
|
|
1570
1570
|
},
|
|
1571
|
+
"itemType": {
|
|
1572
|
+
"type": "array",
|
|
1573
|
+
"items": {
|
|
1574
|
+
"$ref": "items-shared.json#/$defs/itemType"
|
|
1575
|
+
}
|
|
1576
|
+
},
|
|
1577
|
+
"itemProperty": {
|
|
1578
|
+
"type": "array",
|
|
1579
|
+
"items": {
|
|
1580
|
+
"oneOf": [
|
|
1581
|
+
{
|
|
1582
|
+
"$ref": "items-shared.json#/$defs/itemProperty"
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
"type": "null"
|
|
1586
|
+
}
|
|
1587
|
+
]
|
|
1588
|
+
}
|
|
1589
|
+
},
|
|
1571
1590
|
"other": {
|
|
1572
1591
|
"description": "A free text prerequisite",
|
|
1573
1592
|
"type": "string"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "vehicles.json",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.2",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"vehicleTerrain": {
|
|
@@ -393,6 +393,7 @@
|
|
|
393
393
|
}
|
|
394
394
|
},
|
|
395
395
|
"required": [
|
|
396
|
+
"name",
|
|
396
397
|
"entries"
|
|
397
398
|
],
|
|
398
399
|
"additionalProperties": false
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.8",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -453,6 +453,9 @@
|
|
|
453
453
|
"itemTypeAdditionalEntries": {
|
|
454
454
|
"$ref": "items-base.json#/properties/itemTypeAdditionalEntries"
|
|
455
455
|
},
|
|
456
|
+
"itemMastery": {
|
|
457
|
+
"$ref": "items-base.json#/properties/itemMastery"
|
|
458
|
+
},
|
|
456
459
|
"magicvariant": {
|
|
457
460
|
"$ref": "magicvariants.json#/properties/magicvariant"
|
|
458
461
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items-base.json",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.6",
|
|
5
5
|
"$defs": {
|
|
6
6
|
"itemPropertyLookupArray": {
|
|
7
7
|
"type": "array",
|
|
@@ -437,6 +437,39 @@
|
|
|
437
437
|
},
|
|
438
438
|
"additionalProperties": false
|
|
439
439
|
}
|
|
440
|
+
},
|
|
441
|
+
"itemMastery": {
|
|
442
|
+
"type": "array",
|
|
443
|
+
"minItems": 1,
|
|
444
|
+
"items": {
|
|
445
|
+
"type": "object",
|
|
446
|
+
"properties": {
|
|
447
|
+
"name": {
|
|
448
|
+
"type": "string"
|
|
449
|
+
},
|
|
450
|
+
"source": {
|
|
451
|
+
"type": "string"
|
|
452
|
+
},
|
|
453
|
+
"page": {
|
|
454
|
+
"$ref": "util.json#/$defs/page"
|
|
455
|
+
},
|
|
456
|
+
"prerequisite": {
|
|
457
|
+
"$ref": "util.json#/$defs/prerequisite"
|
|
458
|
+
},
|
|
459
|
+
"entries": {
|
|
460
|
+
"type": "array",
|
|
461
|
+
"items": {
|
|
462
|
+
"$ref": "entry.json"
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
"required": [
|
|
467
|
+
"name",
|
|
468
|
+
"source",
|
|
469
|
+
"entries"
|
|
470
|
+
],
|
|
471
|
+
"additionalProperties": false
|
|
472
|
+
}
|
|
440
473
|
}
|
|
441
474
|
},
|
|
442
475
|
"additionalProperties": false
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "util.json",
|
|
4
4
|
"title": "Util",
|
|
5
5
|
"description": "Utility definitions to be used in other schemas.",
|
|
6
|
-
"version": "1.13.
|
|
6
|
+
"version": "1.13.14",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaBlock": {
|
|
9
9
|
"type": "object",
|
|
@@ -1568,6 +1568,25 @@
|
|
|
1568
1568
|
"$ref": "entry.json"
|
|
1569
1569
|
}
|
|
1570
1570
|
},
|
|
1571
|
+
"itemType": {
|
|
1572
|
+
"type": "array",
|
|
1573
|
+
"items": {
|
|
1574
|
+
"$ref": "items-shared.json#/$defs/itemType"
|
|
1575
|
+
}
|
|
1576
|
+
},
|
|
1577
|
+
"itemProperty": {
|
|
1578
|
+
"type": "array",
|
|
1579
|
+
"items": {
|
|
1580
|
+
"oneOf": [
|
|
1581
|
+
{
|
|
1582
|
+
"$ref": "items-shared.json#/$defs/itemProperty"
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
"type": "null"
|
|
1586
|
+
}
|
|
1587
|
+
]
|
|
1588
|
+
}
|
|
1589
|
+
},
|
|
1571
1590
|
"other": {
|
|
1572
1591
|
"description": "A free text prerequisite",
|
|
1573
1592
|
"type": "string"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "vehicles.json",
|
|
4
|
-
"version": "1.7.
|
|
4
|
+
"version": "1.7.2",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"vehicleTerrain": {
|
|
@@ -393,6 +393,7 @@
|
|
|
393
393
|
}
|
|
394
394
|
},
|
|
395
395
|
"required": [
|
|
396
|
+
"name",
|
|
396
397
|
"entries"
|
|
397
398
|
],
|
|
398
399
|
"additionalProperties": false
|