5etools-utils 0.12.13 → 0.12.15

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.
@@ -90,7 +90,8 @@ class _BrewIndexMeta extends _BrewIndex {
90
90
  ? fileInfo.contents._meta.status === "ready" ? undefined : fileInfo.contents._meta.status
91
91
  : undefined,
92
92
  // partnered
93
- p: fileInfo.contents._meta.partnered ? Number(fileInfo.contents._meta.partnered) : undefined,
93
+ // TODO(Future) index at a per-source level? Make e.g. `index-sources-2.json` with `json` -> { object }` and migrate
94
+ p: fileInfo.contents._meta.sources.some(it => it.partnered) ? 1 : undefined,
94
95
  };
95
96
  }
96
97
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "5etools-utils",
3
- "version": "0.12.13",
3
+ "version": "0.12.15",
4
4
  "description": "Shared utilities for the 5etools ecosystem.",
5
5
  "type": "module",
6
6
  "main": "lib/Api.js",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "adventures.json",
4
- "version": "1.10.21",
4
+ "version": "1.10.22",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "adventure": {
@@ -157,11 +157,6 @@
157
157
  "description": "A sorting order for adventures within a single source.",
158
158
  "type": "integer"
159
159
  },
160
- "coverUrl": {
161
- "deprecated": true,
162
- "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
163
- "type": "string"
164
- },
165
160
  "cover": {
166
161
  "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
167
162
  "$ref": "entry.json#/$defs/mediaHref"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "books.json",
4
- "version": "1.2.12",
4
+ "version": "1.2.13",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "book": {
@@ -51,11 +51,6 @@
51
51
  "format": "date",
52
52
  "description": "The date of publication of the book, in the format YYYY-MM-DD (RFC3339)."
53
53
  },
54
- "coverUrl": {
55
- "deprecated": true,
56
- "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
57
- "type": "string"
58
- },
59
54
  "cover": {
60
55
  "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
61
56
  "$ref": "entry.json#/$defs/mediaHref"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.10.23",
3
+ "version": "1.10.24",
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": {
@@ -86,7 +86,7 @@
86
86
  "minLength": 3
87
87
  },
88
88
  "partnered": {
89
- "description": "If this is a \"partnered\" source; usually one which is available and similarly marked on D&D Beyond.",
89
+ "description": "If this is a \"partnered\" source; usually one which is shown under the \"Partnered\" section of \"https://www.dndbeyond.com/sources\".",
90
90
  "type": "boolean"
91
91
  },
92
92
  "targetSchema": {
@@ -287,10 +287,6 @@
287
287
  "description": "If this homebrew file should be ignored/hidden by any indexer.",
288
288
  "const": true
289
289
  },
290
- "partnered": {
291
- "description": "If this homebrew file is \"partnered\" content, usually including sources which are shown under the \"Partnered\" section of \"https://www.dndbeyond.com/sources\".",
292
- "const": true
293
- },
294
290
  "status": {
295
291
  "description": "An overall status for the homebrew.\n\"ready\" indicates that this brew is ready for use, and is in an internally consistent state.\n\"wip\" indicates that this brew is e.g. incomplete, or partially migrated between versions of the source document(s).\n\"invalid\" indicates that using this brew is inadvisable, because while it is schema-passing, it breaks clients which attempt to use it.\n\"deprecated\" indicates this brew is ready for use, but that using it is inadvisable, because e.g. it has been superseded by another brew.",
296
292
  "type": "string",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "magicvariants.json",
4
- "version": "1.8.18",
4
+ "version": "1.8.19",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "_magicvariantItemBase": {
@@ -1074,7 +1074,8 @@
1074
1074
  "additionalProperties": false,
1075
1075
  "required": [
1076
1076
  "name",
1077
- "inherits"
1077
+ "inherits",
1078
+ "requires"
1078
1079
  ]
1079
1080
  },
1080
1081
  "_magicvariantItemBrewBaseRarity": {
@@ -1618,7 +1619,8 @@
1618
1619
  "required": [
1619
1620
  "name",
1620
1621
  "rarity",
1621
- "inherits"
1622
+ "inherits",
1623
+ "requires"
1622
1624
  ]
1623
1625
  },
1624
1626
  "magicvariantItem": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "adventures.json",
4
- "version": "1.10.21",
4
+ "version": "1.10.22",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "adventure": {
@@ -157,11 +157,6 @@
157
157
  "description": "A sorting order for adventures within a single source.",
158
158
  "type": "integer"
159
159
  },
160
- "coverUrl": {
161
- "deprecated": true,
162
- "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
163
- "type": "string"
164
- },
165
160
  "cover": {
166
161
  "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
167
162
  "$ref": "entry.json#/$defs/mediaHref"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "books.json",
4
- "version": "1.2.12",
4
+ "version": "1.2.13",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "book": {
@@ -51,11 +51,6 @@
51
51
  "format": "date",
52
52
  "description": "The date of publication of the book, in the format YYYY-MM-DD (RFC3339)."
53
53
  },
54
- "coverUrl": {
55
- "deprecated": true,
56
- "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
57
- "type": "string"
58
- },
59
54
  "cover": {
60
55
  "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
61
56
  "$ref": "entry.json#/$defs/mediaHref"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.10.23",
3
+ "version": "1.10.24",
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": {
@@ -84,7 +84,7 @@
84
84
  "minLength": 3
85
85
  },
86
86
  "partnered": {
87
- "description": "If this is a \"partnered\" source; usually one which is available and similarly marked on D&D Beyond.",
87
+ "description": "If this is a \"partnered\" source; usually one which is shown under the \"Partnered\" section of \"https://www.dndbeyond.com/sources\".",
88
88
  "type": "boolean"
89
89
  },
90
90
  "targetSchema": {
@@ -285,10 +285,6 @@
285
285
  "description": "If this homebrew file should be ignored/hidden by any indexer.",
286
286
  "const": true
287
287
  },
288
- "partnered": {
289
- "description": "If this homebrew file is \"partnered\" content, usually including sources which are shown under the \"Partnered\" section of \"https://www.dndbeyond.com/sources\".",
290
- "const": true
291
- },
292
288
  "status": {
293
289
  "description": "An overall status for the homebrew.\n\"ready\" indicates that this brew is ready for use, and is in an internally consistent state.\n\"wip\" indicates that this brew is e.g. incomplete, or partially migrated between versions of the source document(s).\n\"invalid\" indicates that using this brew is inadvisable, because while it is schema-passing, it breaks clients which attempt to use it.\n\"deprecated\" indicates this brew is ready for use, but that using it is inadvisable, because e.g. it has been superseded by another brew.",
294
290
  "type": "string",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "magicvariants.json",
4
- "version": "1.8.18",
4
+ "version": "1.8.19",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "_magicvariantItemBase": {
@@ -1074,7 +1074,8 @@
1074
1074
  "additionalProperties": false,
1075
1075
  "required": [
1076
1076
  "name",
1077
- "inherits"
1077
+ "inherits",
1078
+ "requires"
1078
1079
  ]
1079
1080
  },
1080
1081
  "_magicvariantItemBrewBaseRarity": {
@@ -1618,7 +1619,8 @@
1618
1619
  "required": [
1619
1620
  "name",
1620
1621
  "rarity",
1621
- "inherits"
1622
+ "inherits",
1623
+ "requires"
1622
1624
  ]
1623
1625
  },
1624
1626
  "magicvariantItem": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "adventures.json",
4
- "version": "1.10.21",
4
+ "version": "1.10.22",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "adventure": {
@@ -157,11 +157,6 @@
157
157
  "description": "A sorting order for adventures within a single source.",
158
158
  "type": "integer"
159
159
  },
160
- "coverUrl": {
161
- "deprecated": true,
162
- "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
163
- "type": "string"
164
- },
165
160
  "cover": {
166
161
  "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
167
162
  "$ref": "entry.json#/$defs/mediaHref"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "books.json",
4
- "version": "1.2.12",
4
+ "version": "1.2.13",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "book": {
@@ -51,11 +51,6 @@
51
51
  "format": "date",
52
52
  "description": "The date of publication of the book, in the format YYYY-MM-DD (RFC3339)."
53
53
  },
54
- "coverUrl": {
55
- "deprecated": true,
56
- "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
57
- "type": "string"
58
- },
59
54
  "cover": {
60
55
  "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
61
56
  "$ref": "entry.json#/$defs/mediaHref"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.10.23",
3
+ "version": "1.10.24",
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": {
@@ -86,7 +86,7 @@
86
86
  "minLength": 3
87
87
  },
88
88
  "partnered": {
89
- "description": "If this is a \"partnered\" source; usually one which is available and similarly marked on D&D Beyond.",
89
+ "description": "If this is a \"partnered\" source; usually one which is shown under the \"Partnered\" section of \"https://www.dndbeyond.com/sources\".",
90
90
  "type": "boolean"
91
91
  },
92
92
  "targetSchema": {
@@ -287,10 +287,6 @@
287
287
  "description": "If this homebrew file should be ignored/hidden by any indexer.",
288
288
  "const": true
289
289
  },
290
- "partnered": {
291
- "description": "If this homebrew file is \"partnered\" content, usually including sources which are shown under the \"Partnered\" section of \"https://www.dndbeyond.com/sources\".",
292
- "const": true
293
- },
294
290
  "status": {
295
291
  "description": "An overall status for the homebrew.\n\"ready\" indicates that this brew is ready for use, and is in an internally consistent state.\n\"wip\" indicates that this brew is e.g. incomplete, or partially migrated between versions of the source document(s).\n\"invalid\" indicates that using this brew is inadvisable, because while it is schema-passing, it breaks clients which attempt to use it.\n\"deprecated\" indicates this brew is ready for use, but that using it is inadvisable, because e.g. it has been superseded by another brew.",
296
292
  "type": "string",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "magicvariants.json",
4
- "version": "1.8.18",
4
+ "version": "1.8.19",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "_magicvariantItemBase": {
@@ -986,7 +986,8 @@
986
986
  "additionalProperties": false,
987
987
  "required": [
988
988
  "name",
989
- "inherits"
989
+ "inherits",
990
+ "requires"
990
991
  ]
991
992
  },
992
993
  "_magicvariantItemBrewBaseRarity": {
@@ -1486,7 +1487,8 @@
1486
1487
  "required": [
1487
1488
  "name",
1488
1489
  "rarity",
1489
- "inherits"
1490
+ "inherits",
1491
+ "requires"
1490
1492
  ]
1491
1493
  },
1492
1494
  "magicvariantItem": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "adventures.json",
4
- "version": "1.10.21",
4
+ "version": "1.10.22",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "adventure": {
@@ -157,11 +157,6 @@
157
157
  "description": "A sorting order for adventures within a single source.",
158
158
  "type": "integer"
159
159
  },
160
- "coverUrl": {
161
- "deprecated": true,
162
- "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
163
- "type": "string"
164
- },
165
160
  "cover": {
166
161
  "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
167
162
  "$ref": "entry.json#/$defs/mediaHref"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "books.json",
4
- "version": "1.2.12",
4
+ "version": "1.2.13",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "book": {
@@ -51,11 +51,6 @@
51
51
  "format": "date",
52
52
  "description": "The date of publication of the book, in the format YYYY-MM-DD (RFC3339)."
53
53
  },
54
- "coverUrl": {
55
- "deprecated": true,
56
- "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
57
- "type": "string"
58
- },
59
54
  "cover": {
60
55
  "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
61
56
  "$ref": "entry.json#/$defs/mediaHref"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.10.23",
3
+ "version": "1.10.24",
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": {
@@ -84,7 +84,7 @@
84
84
  "minLength": 3
85
85
  },
86
86
  "partnered": {
87
- "description": "If this is a \"partnered\" source; usually one which is available and similarly marked on D&D Beyond.",
87
+ "description": "If this is a \"partnered\" source; usually one which is shown under the \"Partnered\" section of \"https://www.dndbeyond.com/sources\".",
88
88
  "type": "boolean"
89
89
  },
90
90
  "targetSchema": {
@@ -285,10 +285,6 @@
285
285
  "description": "If this homebrew file should be ignored/hidden by any indexer.",
286
286
  "const": true
287
287
  },
288
- "partnered": {
289
- "description": "If this homebrew file is \"partnered\" content, usually including sources which are shown under the \"Partnered\" section of \"https://www.dndbeyond.com/sources\".",
290
- "const": true
291
- },
292
288
  "status": {
293
289
  "description": "An overall status for the homebrew.\n\"ready\" indicates that this brew is ready for use, and is in an internally consistent state.\n\"wip\" indicates that this brew is e.g. incomplete, or partially migrated between versions of the source document(s).\n\"invalid\" indicates that using this brew is inadvisable, because while it is schema-passing, it breaks clients which attempt to use it.\n\"deprecated\" indicates this brew is ready for use, but that using it is inadvisable, because e.g. it has been superseded by another brew.",
294
290
  "type": "string",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "magicvariants.json",
4
- "version": "1.8.18",
4
+ "version": "1.8.19",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "_magicvariantItemBase": {
@@ -986,7 +986,8 @@
986
986
  "additionalProperties": false,
987
987
  "required": [
988
988
  "name",
989
- "inherits"
989
+ "inherits",
990
+ "requires"
990
991
  ]
991
992
  },
992
993
  "_magicvariantItemBrewBaseRarity": {
@@ -1486,7 +1487,8 @@
1486
1487
  "required": [
1487
1488
  "name",
1488
1489
  "rarity",
1489
- "inherits"
1490
+ "inherits",
1491
+ "requires"
1490
1492
  ]
1491
1493
  },
1492
1494
  "magicvariantItem": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "adventures.json",
4
- "version": "1.10.21",
4
+ "version": "1.10.22",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "adventure": {
@@ -157,11 +157,6 @@
157
157
  "description": "A sorting order for adventures within a single source.",
158
158
  "type": "integer"
159
159
  },
160
- "coverUrl": {
161
- "deprecated": true,
162
- "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
163
- "type": "string"
164
- },
165
160
  "cover": {
166
161
  "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
167
162
  "$ref": "entry.json#/$defs/mediaHref"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "books.json",
4
- "version": "1.2.12",
4
+ "version": "1.2.13",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "book": {
@@ -51,11 +51,6 @@
51
51
  "format": "date",
52
52
  "description": "The date of publication of the book, in the format YYYY-MM-DD (RFC3339)."
53
53
  },
54
- "coverUrl": {
55
- "deprecated": true,
56
- "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
57
- "type": "string"
58
- },
59
54
  "cover": {
60
55
  "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
61
56
  "$ref": "entry.json#/$defs/mediaHref"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.10.23",
3
+ "version": "1.10.24",
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": {
@@ -86,7 +86,7 @@
86
86
  "minLength": 3
87
87
  },
88
88
  "partnered": {
89
- "description": "If this is a \"partnered\" source; usually one which is available and similarly marked on D&D Beyond.",
89
+ "description": "If this is a \"partnered\" source; usually one which is shown under the \"Partnered\" section of \"https://www.dndbeyond.com/sources\".",
90
90
  "type": "boolean"
91
91
  },
92
92
  "targetSchema": {
@@ -287,10 +287,6 @@
287
287
  "description": "If this homebrew file should be ignored/hidden by any indexer.",
288
288
  "const": true
289
289
  },
290
- "partnered": {
291
- "description": "If this homebrew file is \"partnered\" content, usually including sources which are shown under the \"Partnered\" section of \"https://www.dndbeyond.com/sources\".",
292
- "const": true
293
- },
294
290
  "status": {
295
291
  "description": "An overall status for the homebrew.\n\"ready\" indicates that this brew is ready for use, and is in an internally consistent state.\n\"wip\" indicates that this brew is e.g. incomplete, or partially migrated between versions of the source document(s).\n\"invalid\" indicates that using this brew is inadvisable, because while it is schema-passing, it breaks clients which attempt to use it.\n\"deprecated\" indicates this brew is ready for use, but that using it is inadvisable, because e.g. it has been superseded by another brew.",
296
292
  "type": "string",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "magicvariants.json",
4
- "version": "1.8.18",
4
+ "version": "1.8.19",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "_magicvariantItemBase": {
@@ -1024,7 +1024,8 @@
1024
1024
  "additionalProperties": false,
1025
1025
  "required": [
1026
1026
  "name",
1027
- "inherits"
1027
+ "inherits",
1028
+ "requires"
1028
1029
  ]
1029
1030
  },
1030
1031
  "_magicvariantItemBrewBaseRarity": {
@@ -1543,7 +1544,8 @@
1543
1544
  "required": [
1544
1545
  "name",
1545
1546
  "rarity",
1546
- "inherits"
1547
+ "inherits",
1548
+ "requires"
1547
1549
  ]
1548
1550
  },
1549
1551
  "magicvariantItem": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "adventures.json",
4
- "version": "1.10.21",
4
+ "version": "1.10.22",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "adventure": {
@@ -157,11 +157,6 @@
157
157
  "description": "A sorting order for adventures within a single source.",
158
158
  "type": "integer"
159
159
  },
160
- "coverUrl": {
161
- "deprecated": true,
162
- "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
163
- "type": "string"
164
- },
165
160
  "cover": {
166
161
  "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
167
162
  "$ref": "entry.json#/$defs/mediaHref"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "books.json",
4
- "version": "1.2.12",
4
+ "version": "1.2.13",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "book": {
@@ -51,11 +51,6 @@
51
51
  "format": "date",
52
52
  "description": "The date of publication of the book, in the format YYYY-MM-DD (RFC3339)."
53
53
  },
54
- "coverUrl": {
55
- "deprecated": true,
56
- "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
57
- "type": "string"
58
- },
59
54
  "cover": {
60
55
  "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
61
56
  "$ref": "entry.json#/$defs/mediaHref"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.10.23",
3
+ "version": "1.10.24",
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": {
@@ -84,7 +84,7 @@
84
84
  "minLength": 3
85
85
  },
86
86
  "partnered": {
87
- "description": "If this is a \"partnered\" source; usually one which is available and similarly marked on D&D Beyond.",
87
+ "description": "If this is a \"partnered\" source; usually one which is shown under the \"Partnered\" section of \"https://www.dndbeyond.com/sources\".",
88
88
  "type": "boolean"
89
89
  },
90
90
  "targetSchema": {
@@ -285,10 +285,6 @@
285
285
  "description": "If this homebrew file should be ignored/hidden by any indexer.",
286
286
  "const": true
287
287
  },
288
- "partnered": {
289
- "description": "If this homebrew file is \"partnered\" content, usually including sources which are shown under the \"Partnered\" section of \"https://www.dndbeyond.com/sources\".",
290
- "const": true
291
- },
292
288
  "status": {
293
289
  "description": "An overall status for the homebrew.\n\"ready\" indicates that this brew is ready for use, and is in an internally consistent state.\n\"wip\" indicates that this brew is e.g. incomplete, or partially migrated between versions of the source document(s).\n\"invalid\" indicates that using this brew is inadvisable, because while it is schema-passing, it breaks clients which attempt to use it.\n\"deprecated\" indicates this brew is ready for use, but that using it is inadvisable, because e.g. it has been superseded by another brew.",
294
290
  "type": "string",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "magicvariants.json",
4
- "version": "1.8.18",
4
+ "version": "1.8.19",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "_magicvariantItemBase": {
@@ -1024,7 +1024,8 @@
1024
1024
  "additionalProperties": false,
1025
1025
  "required": [
1026
1026
  "name",
1027
- "inherits"
1027
+ "inherits",
1028
+ "requires"
1028
1029
  ]
1029
1030
  },
1030
1031
  "_magicvariantItemBrewBaseRarity": {
@@ -1543,7 +1544,8 @@
1543
1544
  "required": [
1544
1545
  "name",
1545
1546
  "rarity",
1546
- "inherits"
1547
+ "inherits",
1548
+ "requires"
1547
1549
  ]
1548
1550
  },
1549
1551
  "magicvariantItem": {