arkham-investigator-data 1.0.2 → 1.0.3

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.
@@ -3,6 +3,7 @@ export declare type Investigator = {
3
3
  code: string;
4
4
  previewId?: string;
5
5
  variantName?: string;
6
+ additionalAction?: boolean;
6
7
  image?: InvestigatorImage;
7
8
  variants?: InvestigatorVariant[];
8
9
  skins?: InvestigatorSkin[];
@@ -29,6 +30,7 @@ export declare type InvestigatorSkin = {
29
30
  };
30
31
  export declare type InvestigatorVariant = InvestigatorVariantIdentity & {
31
32
  name: string;
33
+ additionalAction?: boolean;
32
34
  };
33
35
  export declare type InvestigatorVariantIdentity = InvestigatorVariantWithPack | InvestigatorCustomVariant;
34
36
  export declare type InvestigatorCustomVariant = {
@@ -46,6 +48,7 @@ export declare type InvestigatorVariantWithPack = {
46
48
  code: string;
47
49
  } & ({
48
50
  type: 'parallel';
51
+ image?: InvestigatorImage;
49
52
  } | {
50
53
  type: 'book';
51
54
  image: InvestigatorImage;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arkham-investigator-data",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "main": "index.js",
5
5
  "types": "build/types.d.ts",
6
6
  "scripts": {