5etools-utils 0.12.5 → 0.12.6

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.
@@ -110,10 +110,14 @@
110
110
  "MPP",
111
111
  "BMT",
112
112
  "DMTCRG",
113
+ "QftIS",
114
+ "VEoR",
113
115
  "GHLoE",
114
116
  "DoDk",
115
117
  "HWCS",
116
118
  "HWAitW",
119
+ "ToB1-2023",
120
+ "TD",
117
121
  "Screen",
118
122
  "ScreenWildernessKit",
119
123
  "ScreenDungeonKit",
@@ -139,6 +143,9 @@
139
143
  "LK",
140
144
  "CoA",
141
145
  "PiP",
146
+ "DitLCoT",
147
+ "VNotEE",
148
+ "LRDT",
142
149
  "ALCurseOfStrahd",
143
150
  "ALElementalEvil",
144
151
  "ALRageOfDemons",
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "util-foundry.json",
4
4
  "title": "Util: Foundry",
5
- "version": "1.0.2",
5
+ "version": "1.0.3",
6
6
  "$defs": {
7
7
  "entryDataObject": {
8
8
  "description": "Additional \"5etools-type\" data to be stored on the entry.",
@@ -86,7 +86,13 @@
86
86
  },
87
87
  "foundrySubEntitiesObject": {
88
88
  "description": "A 5etools-data-like object of additional entities to import.",
89
- "type": "object"
89
+ "type": "object",
90
+ "properties": {
91
+ "item": {
92
+ "$ref": "items.json#/$defs/subEntityItemArray"
93
+ }
94
+ },
95
+ "minProperties": 1
90
96
  },
91
97
  "_foundryEffectObject": {
92
98
  "type": "object",
@@ -1,13 +1,17 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "util-token.json",
4
- "version": "1.0.0",
4
+ "version": "1.0.1",
5
5
  "title": "Util: Token",
6
6
  "$defs": {
7
7
  "tokenUrl": {
8
8
  "deprecated": true,
9
- "description": "A full token URL for the entity. Prefer \"tokenHref\" instead.",
10
- "$ref": "util.json#/$defs/url"
9
+ "description": "A full token URL for the entity. Prefer \"tokenHref\" instead, or \"token\" for internal use.",
10
+ "$ref": "util.json#/$defs/url",
11
+ "not": {
12
+ "type": "string",
13
+ "pattern": "^https?://(5e\\.tools|5etools-mirror-\\d+\\.github\\.io)/"
14
+ }
11
15
  },
12
16
  "token": {
13
17
  "description": "A name/source pair used to construct a token URL for the entity. For example `\"name\": \"Goblin\", \"source\": \"MM\"` for a creature token would refer to the MM Goblin's token.",