arkham-investigator-data 2.3.0 → 2.3.2

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.
@@ -1,6 +1,7 @@
1
1
  import type { ArkhamCardsInvestigator } from "../../api/arkhamCards";
2
2
  export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
3
3
  taboo: boolean;
4
+ custom: boolean;
4
5
  canonical: boolean;
5
6
  official: boolean;
6
7
  image: {
@@ -33,6 +34,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
33
34
  skill_willpower: number;
34
35
  } | {
35
36
  taboo: boolean;
37
+ custom: boolean;
36
38
  canonical: boolean;
37
39
  official: boolean;
38
40
  image: {
@@ -63,6 +65,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
63
65
  spoiler: boolean;
64
66
  } | {
65
67
  taboo: boolean;
68
+ custom: boolean;
66
69
  canonical: boolean;
67
70
  official: boolean;
68
71
  image: {
@@ -93,6 +96,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
93
96
  spoiler: boolean;
94
97
  } | {
95
98
  taboo: boolean;
99
+ custom: boolean;
96
100
  canonical: boolean;
97
101
  official: boolean;
98
102
  image: {
@@ -123,6 +127,7 @@ export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
123
127
  spoiler: boolean;
124
128
  } | {
125
129
  taboo: boolean;
130
+ custom: boolean;
126
131
  canonical: boolean;
127
132
  official: boolean;
128
133
  image: {
@@ -0,0 +1,2 @@
1
+ import type { Investigator } from "../../../../../model";
2
+ export declare const Yithian: Investigator;
@@ -0,0 +1,2 @@
1
+ import type { Investigator } from "../../../../../model";
2
+ export declare const YithianB: Investigator;
@@ -0,0 +1,2 @@
1
+ import type { Investigator } from "../../../../../model";
2
+ export declare const YithianG: Investigator;
@@ -0,0 +1,2 @@
1
+ import type { Investigator } from "../../../../../model";
2
+ export declare const YithianR: Investigator;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("../../../../../model").Investigator[];
2
+ export default _default;
@@ -16,6 +16,7 @@ export type InvestigatorSignature = Omit<ArkhamCardsInvestigator, "real_name" |
16
16
  taboo: boolean;
17
17
  taboo_original_text: string | null;
18
18
  taboo_text_change: string | null;
19
+ custom: boolean;
19
20
  official: boolean;
20
21
  canonical: boolean;
21
22
  pack: InvestigatorSignaturePack;
@@ -47,6 +48,7 @@ export type InvestigatorSignatureGroup = {
47
48
  official: boolean;
48
49
  canonical: boolean;
49
50
  spoiler: boolean;
51
+ custom: boolean;
50
52
  faction_code: InvestigatorFaction;
51
53
  multiselect: boolean;
52
54
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arkham-investigator-data",
3
- "version": "2.3.0",
3
+ "version": "2.3.2",
4
4
  "main": "index.js",
5
5
  "types": "build/src/types.d.ts",
6
6
  "scripts": {