arkham-investigator-data 1.3.4 → 2.0.1

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.
Files changed (38) hide show
  1. package/.env +2 -1
  2. package/build/src/App.d.ts +1 -1
  3. package/build/src/api/arkhamCards/arkhamCards.d.ts +2 -0
  4. package/build/src/api/{arkhamCards.d.ts → arkhamCards/arkhamCards.types.d.ts} +29 -5
  5. package/build/src/api/arkhamCards/index.d.ts +2 -0
  6. package/build/src/components/meta/arkhamDivider.d.ts +2 -0
  7. package/build/src/components/meta/index.d.ts +1 -0
  8. package/build/src/components/signatures/collection/getCollectionSkins.d.ts +1 -0
  9. package/build/src/components/signatures/collection/getSignatureCollection.d.ts +3 -0
  10. package/build/src/components/signatures/collection/index.d.ts +1 -0
  11. package/build/src/components/signatures/cycle/getCycleIcon.d.ts +1 -0
  12. package/build/src/components/signatures/cycle/getCycleTranslation.d.ts +13 -0
  13. package/build/src/components/signatures/cycle/getEnglishCycle.d.ts +3 -0
  14. package/build/src/components/signatures/cycle/index.d.ts +2 -0
  15. package/build/src/components/signatures/getSignatureBase.d.ts +65 -4
  16. package/build/src/components/signatures/pack/getEnglishPack.d.ts +3 -0
  17. package/build/src/components/signatures/pack/getPackIcon.d.ts +1 -0
  18. package/build/src/components/signatures/pack/getPackTranslation.d.ts +13 -0
  19. package/build/src/components/signatures/pack/index.d.ts +2 -0
  20. package/build/src/components/signatures/special/getCardSpecial.d.ts +37 -0
  21. package/build/src/components/signatures/special/index.d.ts +1 -0
  22. package/build/src/config/api.d.ts +1 -0
  23. package/build/src/features/googleDrive/getGoogleDriveFile.d.ts +1 -2
  24. package/build/src/model/build.d.ts +5 -2
  25. package/build/src/model/common.d.ts +3 -3
  26. package/build/src/model/dimensions.d.ts +1 -1
  27. package/build/src/model/game/abilities.d.ts +6 -6
  28. package/build/src/model/game/chaosBag.d.ts +1 -1
  29. package/build/src/model/game/common.d.ts +2 -2
  30. package/build/src/model/game/entities.d.ts +4 -4
  31. package/build/src/model/game/image.d.ts +4 -4
  32. package/build/src/model/game/options.d.ts +7 -10
  33. package/build/src/model/game/signature.d.ts +33 -3
  34. package/build/src/tasks/createInvestigatorsCache.d.ts +1 -1
  35. package/build/src/tasks/createSignatureCache.d.ts +1 -1
  36. package/build/src/tasks/loadMetadata.d.ts +1 -0
  37. package/package.json +7 -6
  38. package/build/src/components/signatures/getSignatureCollection.d.ts +0 -2
package/.env CHANGED
@@ -1 +1,2 @@
1
- ARKHAM_CARDS_GRAPHQL_URL="https://gapi.arkhamcards.com/v1/graphql"
1
+ ARKHAM_CARDS_GRAPHQL_URL="https://gapi.arkhamcards.com/v1/graphql"
2
+ ARKHAM_DIVIDER_CORE_URL="http://neizerth.github.io/ArkhamDividerData/core.json"
@@ -1,4 +1,4 @@
1
1
  export declare class App {
2
- run(command: string): Promise<void>;
2
+ run(command: string): Promise<void | string[]>;
3
3
  start(): Promise<void>;
4
4
  }
@@ -0,0 +1,2 @@
1
+ import type { ArkhamCardsInvestigator } from "./arkhamCards.types";
2
+ export declare const loadArkhamCardsInvestigators: () => Promise<ArkhamCardsInvestigator[]>;
@@ -1,6 +1,7 @@
1
- import type { InvestigatorFaction } from "../model";
2
- export declare type ArkhamCardsInvestigator = {
1
+ import type { InvestigatorFaction } from "../../model";
2
+ export type ArkhamCardsInvestigator = {
3
3
  id: string;
4
+ alternate_of_code: string | null;
4
5
  code: string;
5
6
  real_text: string;
6
7
  real_name: string;
@@ -18,9 +19,33 @@ export declare type ArkhamCardsInvestigator = {
18
19
  skill_willpower: number;
19
20
  translations: ArkhamCardsInvestigatorTranslation[];
20
21
  taboo_set: ArkhamCardsTabooSet | null;
22
+ pack: ArkhamCardsPack;
21
23
  spoiler: boolean;
22
24
  };
23
- export declare type ArkhamCardsInvestigatorTranslation = {
25
+ export type ArkhamCardsPack = {
26
+ code: string;
27
+ position: number;
28
+ real_name: string;
29
+ official: boolean;
30
+ translations: ArkhamCardsPackTranslation[];
31
+ cycle: ArkhamCardsCycle;
32
+ };
33
+ export type ArkhamCardsCycle = {
34
+ code: string;
35
+ position: number;
36
+ real_name: string;
37
+ official: boolean;
38
+ translations: ArkhamCardsPackTranslation[];
39
+ };
40
+ export type ArkhamCardsPackTranslation = {
41
+ locale: string;
42
+ name: string;
43
+ };
44
+ export type ArkhamCardsCycleTranslation = {
45
+ locale: string;
46
+ name: string;
47
+ };
48
+ export type ArkhamCardsInvestigatorTranslation = {
24
49
  locale: string;
25
50
  name: string;
26
51
  subname: string;
@@ -30,10 +55,9 @@ export declare type ArkhamCardsInvestigatorTranslation = {
30
55
  taboo_original_text: string;
31
56
  taboo_text_change: string;
32
57
  };
33
- export declare type ArkhamCardsTabooSet = {
58
+ export type ArkhamCardsTabooSet = {
34
59
  id: number;
35
60
  date: string;
36
61
  code: string;
37
62
  name: string;
38
63
  };
39
- export declare const loadArkhamCardsInvestigators: () => Promise<ArkhamCardsInvestigator[]>;
@@ -0,0 +1,2 @@
1
+ export * from "./arkhamCards";
2
+ export * from "./arkhamCards.types";
@@ -0,0 +1,2 @@
1
+ export declare const getStories: () => import("arkham-divider-data/build/types/database").IDatabase.Story[];
2
+ export declare const getIcons: () => import("arkham-divider-data/build/types/cache").ICache.IconInfo[];
@@ -0,0 +1 @@
1
+ export * from "./arkhamDivider";
@@ -0,0 +1 @@
1
+ export declare const getCollectionSkins: (code: string) => import("../../../model").InvestigatorSkin[];
@@ -0,0 +1,3 @@
1
+ import type { InvestigatorFaction, InvestigatorSignature, SignatureCollection } from "../../../model";
2
+ export declare const FACTION_ORDER: Record<InvestigatorFaction, number>;
3
+ export declare const getSignatureCollection: (data: InvestigatorSignature[]) => SignatureCollection;
@@ -0,0 +1 @@
1
+ export * from "./getSignatureCollection";
@@ -0,0 +1 @@
1
+ export declare const getCycleIcon: (code: string) => string;
@@ -0,0 +1,13 @@
1
+ import type { ArkhamCardsCycle } from "../../../api/arkhamCards";
2
+ type Options = {
3
+ item: ArkhamCardsCycle;
4
+ locale: string;
5
+ };
6
+ export declare const getCycleTranslation: ({ item, locale }: Options) => {
7
+ locale: string;
8
+ code: string;
9
+ name: string;
10
+ position: number;
11
+ icon: string;
12
+ };
13
+ export {};
@@ -0,0 +1,3 @@
1
+ import type { ArkhamCardsCycle } from "../../../api/arkhamCards";
2
+ import type { InvestigatorSignatureCycle } from "../../../model";
3
+ export declare const getEnglishCycle: ({ code, real_name, position, }: ArkhamCardsCycle) => InvestigatorSignatureCycle;
@@ -0,0 +1,2 @@
1
+ export * from "./getEnglishCycle";
2
+ export * from "./getCycleTranslation";
@@ -1,23 +1,84 @@
1
1
  import type { ArkhamCardsInvestigator } from "../../api/arkhamCards";
2
2
  export declare const getSignatureBase: (card: ArkhamCardsInvestigator) => {
3
+ official: boolean;
4
+ type: "original";
3
5
  code: string;
6
+ image: import("../../model").InvestigatorImage;
7
+ spoiler: boolean;
4
8
  previewId?: string;
5
9
  variantName?: string;
6
10
  additionalAction?: boolean;
7
- image: import("../../model").InvestigatorImage;
8
- variants?: import("../../model").InvestigatorVariant[];
9
- skins?: import("../../model").InvestigatorSkin[];
10
11
  multiselect?: boolean;
11
12
  abilities?: import("../../model").InvestigatorAbility[];
12
13
  roles?: import("../../model").InvestigatorFaction[];
14
+ id: string;
15
+ health: number;
16
+ sanity: number;
17
+ alternate_of_code: string | null;
18
+ faction_code: import("../../model").InvestigatorFaction;
19
+ skill_agility: number;
20
+ skill_combat: number;
21
+ skill_intellect: number;
22
+ skill_willpower: number;
23
+ taboo_set: import("../../api/arkhamCards").ArkhamCardsTabooSet | null;
24
+ } | {
25
+ official: boolean;
26
+ image: import("../../model").InvestigatorImage;
27
+ code: string;
28
+ type: "parallel";
29
+ name: string;
30
+ additionalAction?: boolean;
31
+ abilities?: import("../../model").InvestigatorAbility[];
32
+ taboo?: boolean;
33
+ id: string;
34
+ health: number;
35
+ sanity: number;
36
+ alternate_of_code: string | null;
37
+ faction_code: import("../../model").InvestigatorFaction;
38
+ skill_agility: number;
39
+ skill_combat: number;
40
+ skill_intellect: number;
41
+ skill_willpower: number;
42
+ taboo_set: import("../../api/arkhamCards").ArkhamCardsTabooSet | null;
43
+ spoiler: boolean;
44
+ } | {
45
+ official: boolean;
46
+ image: import("../../model").InvestigatorImage;
47
+ code: string;
48
+ type: "book";
49
+ name: string;
50
+ additionalAction?: boolean;
51
+ abilities?: import("../../model").InvestigatorAbility[];
52
+ taboo?: boolean;
53
+ id: string;
54
+ health: number;
55
+ sanity: number;
56
+ alternate_of_code: string | null;
57
+ faction_code: import("../../model").InvestigatorFaction;
58
+ skill_agility: number;
59
+ skill_combat: number;
60
+ skill_intellect: number;
61
+ skill_willpower: number;
62
+ taboo_set: import("../../api/arkhamCards").ArkhamCardsTabooSet | null;
13
63
  spoiler: boolean;
64
+ } | {
65
+ official: boolean;
66
+ image: import("../../model").InvestigatorImage;
67
+ type: "custom";
68
+ code: string;
69
+ name: string;
70
+ additionalAction?: boolean;
71
+ abilities?: import("../../model").InvestigatorAbility[];
72
+ taboo?: boolean;
14
73
  id: string;
15
74
  health: number;
16
75
  sanity: number;
76
+ alternate_of_code: string | null;
17
77
  faction_code: import("../../model").InvestigatorFaction;
18
78
  skill_agility: number;
19
79
  skill_combat: number;
20
80
  skill_intellect: number;
21
81
  skill_willpower: number;
22
- taboo_set: import("../../api/arkhamCards").ArkhamCardsTabooSet;
82
+ taboo_set: import("../../api/arkhamCards").ArkhamCardsTabooSet | null;
83
+ spoiler: boolean;
23
84
  };
@@ -0,0 +1,3 @@
1
+ import type { ArkhamCardsPack } from "../../../api/arkhamCards";
2
+ import type { InvestigatorSignaturePack } from "../../../model";
3
+ export declare const getEnglishPack: ({ code, real_name, position, }: ArkhamCardsPack) => InvestigatorSignaturePack;
@@ -0,0 +1 @@
1
+ export declare const getPackIcon: (code: string) => string;
@@ -0,0 +1,13 @@
1
+ import type { ArkhamCardsPack } from "../../../api/arkhamCards";
2
+ type Options = {
3
+ item: ArkhamCardsPack;
4
+ locale: string;
5
+ };
6
+ export declare const getPackTranslation: ({ item, locale }: Options) => {
7
+ locale: string;
8
+ code: string;
9
+ name: string;
10
+ position: number;
11
+ icon: string;
12
+ };
13
+ export {};
@@ -0,0 +1,2 @@
1
+ export * from "./getEnglishPack";
2
+ export * from "./getPackTranslation";
@@ -0,0 +1,37 @@
1
+ import type { ArkhamCardsInvestigator } from "../../../api/arkhamCards";
2
+ export declare const getCardSpecial: (card: ArkhamCardsInvestigator) => {
3
+ type: "original";
4
+ code: string;
5
+ image: import("../../../model").InvestigatorImage;
6
+ spoiler?: boolean;
7
+ previewId?: string;
8
+ variantName?: string;
9
+ additionalAction?: boolean;
10
+ multiselect?: boolean;
11
+ abilities?: import("../../../model").InvestigatorAbility[];
12
+ roles?: import("../../../model").InvestigatorFaction[];
13
+ } | {
14
+ image: import("../../../model").InvestigatorImage;
15
+ code: string;
16
+ type: "parallel";
17
+ name: string;
18
+ additionalAction?: boolean;
19
+ abilities?: import("../../../model").InvestigatorAbility[];
20
+ taboo?: boolean;
21
+ } | {
22
+ image: import("../../../model").InvestigatorImage;
23
+ code: string;
24
+ type: "book";
25
+ name: string;
26
+ additionalAction?: boolean;
27
+ abilities?: import("../../../model").InvestigatorAbility[];
28
+ taboo?: boolean;
29
+ } | {
30
+ image: import("../../../model").InvestigatorImage;
31
+ type: "custom";
32
+ code: string;
33
+ name: string;
34
+ additionalAction?: boolean;
35
+ abilities?: import("../../../model").InvestigatorAbility[];
36
+ taboo?: boolean;
37
+ };
@@ -0,0 +1 @@
1
+ export * from "./getCardSpecial";
@@ -1 +1,2 @@
1
1
  export declare const ARKHAM_CARDS_GRAPHQL_URL: string;
2
+ export declare const ARKHAM_DIVIDER_CORE_URL: string;
@@ -1,7 +1,6 @@
1
- /// <reference types="node" />
2
1
  import type { WriteStream } from "node:fs";
3
2
  import type { drive_v3 } from "@googleapis/drive";
4
- export declare type IGetGoogleDriveFileOptions = drive_v3.Schema$File & {
3
+ export type IGetGoogleDriveFileOptions = drive_v3.Schema$File & {
5
4
  stream: WriteStream;
6
5
  };
7
6
  export declare const getGoogleDriveFile: ({ id, name, stream, }: IGetGoogleDriveFileOptions) => Promise<unknown>;
@@ -1,7 +1,10 @@
1
+ import type { ArkhamDivider } from "arkham-divider-data";
1
2
  import type { Investigator, SignatureCollection } from "./game";
2
- export declare type Build = {
3
+ export type Build = {
3
4
  version: string;
4
5
  minClientVersion: string;
5
6
  data: Investigator[];
7
+ icons: ArkhamDivider.Core["icons"];
8
+ languages: string[];
6
9
  };
7
- export declare type SignatureBuild = SignatureCollection;
10
+ export type SignatureBuild = SignatureCollection;
@@ -1,7 +1,7 @@
1
- export declare type Nullable<T> = T | null;
2
- export declare type WithCode = {
1
+ export type Nullable<T> = T | null;
2
+ export type WithCode = {
3
3
  code: string;
4
4
  };
5
- export declare type WithId = {
5
+ export type WithId = {
6
6
  id: string;
7
7
  };
@@ -1,4 +1,4 @@
1
- export declare type Box = {
1
+ export type Box = {
2
2
  width: number;
3
3
  height: number;
4
4
  };
@@ -1,14 +1,14 @@
1
1
  import type { ChaosBagToken } from "./chaosBag";
2
2
  import type { Stat } from "./entities";
3
- export declare type LimitType = "round" | "turn" | "phase" | "ability" | "test" | "game";
4
- export declare type InvestigatorAbilityType = {
3
+ export type LimitType = "round" | "turn" | "phase" | "ability" | "test" | "game";
4
+ export type InvestigatorAbilityType = {
5
5
  type: "reaction" | "fast" | "permanent";
6
6
  icon?: string;
7
7
  } | {
8
8
  type: "action" | "special-action";
9
9
  icon: string;
10
10
  };
11
- export declare type InvestigatorAbility = InvestigatorAbilityType & {
11
+ export type InvestigatorAbility = InvestigatorAbilityType & {
12
12
  id: string;
13
13
  limitPer?: LimitType | LimitType[];
14
14
  perInvestigator?: boolean;
@@ -16,11 +16,11 @@ export declare type InvestigatorAbility = InvestigatorAbilityType & {
16
16
  enabledIf?: string;
17
17
  onUse?: InvestigatorAbilityUse[];
18
18
  };
19
- export declare type InvestigatorAbilityUse = {
19
+ export type InvestigatorAbilityUse = {
20
20
  phase?: "upkeep";
21
21
  script: InvestigatorAbilityScript;
22
22
  };
23
- export declare type InvestigatorAbilityScript = Partial<Record<Stat, string>> & {
23
+ export type InvestigatorAbilityScript = Partial<Record<Stat, string>> & {
24
24
  chaosBag?: ChaosBagScript;
25
25
  };
26
- export declare type ChaosBagScript = Partial<Record<ChaosBagToken, string>>;
26
+ export type ChaosBagScript = Partial<Record<ChaosBagToken, string>>;
@@ -1 +1 @@
1
- export declare type ChaosBagToken = "bless" | "curse" | "elderSign" | "skull" | "cultist" | "autoFail" | "tablet" | "frost" | "elderThing";
1
+ export type ChaosBagToken = "bless" | "curse" | "elderSign" | "skull" | "cultist" | "autoFail" | "tablet" | "frost" | "elderThing";
@@ -1,7 +1,7 @@
1
1
  import type { InvestigatorAbility } from "./abilities";
2
2
  import type { InvestigatorImage } from "./image";
3
3
  import type { InvestigatorSkin, InvestigatorVariant } from "./options";
4
- export declare type Investigator = {
4
+ export type Investigator = {
5
5
  code: string;
6
6
  previewId?: string;
7
7
  variantName?: string;
@@ -14,4 +14,4 @@ export declare type Investigator = {
14
14
  roles?: InvestigatorFaction[];
15
15
  spoiler?: boolean;
16
16
  };
17
- export declare type InvestigatorFaction = "guardian" | "rogue" | "seeker" | "mystic" | "survivor" | "neutral";
17
+ export type InvestigatorFaction = "guardian" | "rogue" | "seeker" | "mystic" | "survivor" | "neutral";
@@ -1,4 +1,4 @@
1
- export declare type Stat = MainStat | SecondaryStat | Skill;
2
- export declare type MainStat = "health" | "sanity";
3
- export declare type SecondaryStat = "actions" | "clues" | "resources";
4
- export declare type Skill = "willpower" | "intellect" | "combat" | "agility";
1
+ export type Stat = MainStat | SecondaryStat | Skill;
2
+ export type MainStat = "health" | "sanity";
3
+ export type SecondaryStat = "actions" | "clues" | "resources";
4
+ export type Skill = "willpower" | "intellect" | "combat" | "agility";
@@ -1,19 +1,19 @@
1
1
  import type { Box } from "../dimensions";
2
- export declare type InvestigatorImageBox = Box & {
2
+ export type InvestigatorImageBox = Box & {
3
3
  top: number;
4
4
  left: number;
5
5
  };
6
- export declare type InvestigatorImageSource = Box & {
6
+ export type InvestigatorImageSource = Box & {
7
7
  type: "mini" | "full";
8
8
  id: string;
9
9
  face: InvestigatorImageBox;
10
10
  };
11
- export declare type InvestigatorImageMedia = InvestigatorImageBox & {
11
+ export type InvestigatorImageMedia = InvestigatorImageBox & {
12
12
  source?: InvestigatorImageSource;
13
13
  primary?: boolean;
14
14
  type?: "face" | "body";
15
15
  };
16
- export declare type InvestigatorImage = Box & {
16
+ export type InvestigatorImage = Box & {
17
17
  id?: string;
18
18
  face?: InvestigatorImageBox;
19
19
  media?: InvestigatorImageMedia[];
@@ -1,26 +1,23 @@
1
1
  import type { InvestigatorAbility } from "./abilities";
2
2
  import type { InvestigatorImage } from "./image";
3
- export declare type InvestigatorSkin = {
3
+ export type InvestigatorSkin = {
4
4
  id: string;
5
5
  name: string;
6
6
  image: InvestigatorImage;
7
7
  };
8
- export declare type InvestigatorVariant = InvestigatorVariantIdentity & {
8
+ export type InvestigatorVariant = InvestigatorVariantIdentity & {
9
9
  name: string;
10
10
  additionalAction?: boolean;
11
11
  abilities?: InvestigatorAbility[];
12
+ taboo?: boolean;
12
13
  };
13
- export declare type InvestigatorVariantIdentity = InvestigatorVariantWithPack | InvestigatorCustomVariant;
14
- export declare type InvestigatorCustomVariant = {
14
+ export type InvestigatorVariantIdentity = InvestigatorVariantWithPack | InvestigatorCustomVariant;
15
+ export type InvestigatorCustomVariant = {
15
16
  type: "custom";
16
- } & ({
17
17
  code: string;
18
18
  image?: InvestigatorImage;
19
- } | {
20
- id: string;
21
- image: InvestigatorImage;
22
- });
23
- export declare type InvestigatorVariantWithPack = {
19
+ };
20
+ export type InvestigatorVariantWithPack = {
24
21
  code: string;
25
22
  } & ({
26
23
  type: "parallel";
@@ -1,6 +1,8 @@
1
1
  import type { ArkhamCardsInvestigator } from "../../api/arkhamCards";
2
2
  import type { Investigator } from "./common";
3
- export declare type InvestigatorSignature = Omit<ArkhamCardsInvestigator, "real_name" | "real_subname" | "real_text" | "real_flavor" | "real_traits" | "real_taboo_original_text" | "real_taboo_text_change" | "translations"> & Investigator & {
3
+ import type { InvestigatorSkin } from "./options";
4
+ export type InvestigatorSignature = Omit<ArkhamCardsInvestigator, "real_name" | "real_subname" | "real_text" | "real_flavor" | "real_traits" | "real_taboo_original_text" | "real_taboo_text_change" | "translations" | "pack"> & Omit<Investigator, "variants" | "skins"> & {
5
+ type: InvestigatorSignatureType;
4
6
  locale: string;
5
7
  text: string;
6
8
  name: string;
@@ -9,8 +11,36 @@ export declare type InvestigatorSignature = Omit<ArkhamCardsInvestigator, "real_
9
11
  traits: string;
10
12
  taboo_original_text: string | null;
11
13
  taboo_text_change: string | null;
14
+ official: boolean;
15
+ pack: InvestigatorSignaturePack;
16
+ cycle: InvestigatorSignatureCycle;
12
17
  };
13
- export declare type SignatureCollection = {
14
- cards: InvestigatorSignature[];
18
+ export type InvestigatorSignatureType = "original" | "custom" | "parallel" | "book";
19
+ export type InvestigatorSignaturePack = {
20
+ locale: string;
21
+ code: string;
22
+ name: string;
23
+ position: number;
24
+ icon: string;
25
+ };
26
+ export type InvestigatorSignatureCycle = {
27
+ locale: string;
28
+ code: string;
29
+ name: string;
30
+ position: number;
31
+ icon: string;
32
+ };
33
+ export type InvestigatorSignatureGroup = {
34
+ id: string;
35
+ locale: string;
36
+ code: string;
37
+ name: string;
38
+ subname: string;
39
+ signatures: InvestigatorSignature[];
40
+ skins: InvestigatorSkin[];
41
+ official: boolean;
42
+ };
43
+ export type SignatureCollection = {
44
+ groups: InvestigatorSignatureGroup[];
15
45
  taboo: InvestigatorSignature[];
16
46
  };
@@ -1 +1 @@
1
- export declare const createInvestigatorsCache: () => Promise<void>;
1
+ export declare const createInvestigatorsCache: (languages?: string[]) => Promise<void>;
@@ -1 +1 @@
1
- export declare const createSignatureCache: () => Promise<void>;
1
+ export declare const createSignatureCache: () => Promise<string[]>;
@@ -0,0 +1 @@
1
+ export declare const loadMetadata: () => Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arkham-investigator-data",
3
- "version": "1.3.4",
3
+ "version": "2.0.1",
4
4
  "main": "index.js",
5
5
  "types": "build/src/types.d.ts",
6
6
  "scripts": {
@@ -27,17 +27,18 @@
27
27
  "description": "",
28
28
  "devDependencies": {
29
29
  "@biomejs/biome": "^1.9.4",
30
+ "@googleapis/drive": "^8.14.0",
30
31
  "@types/decompress": "^4.2.7",
31
32
  "@types/node": "^22.13.1",
32
33
  "@types/ramda": "^0.30.2",
33
- "http-server": "^14.1.1",
34
- "rimraf": "^6.0.1",
35
- "tsx": "^4.19.2",
36
- "@googleapis/drive": "^8.14.0",
34
+ "arkham-divider-data": "^1.2.0",
37
35
  "decompress": "^4.2.1",
38
36
  "dotenv": "^16.4.7",
39
37
  "graphql-request": "^7.1.2",
38
+ "http-server": "^14.1.1",
40
39
  "ramda": "^0.30.1",
41
- "tsc-alias": "^1.8.10"
40
+ "rimraf": "^6.0.1",
41
+ "tsc-alias": "^1.8.10",
42
+ "tsx": "^4.19.2"
42
43
  }
43
44
  }
@@ -1,2 +0,0 @@
1
- import type { InvestigatorSignature, SignatureCollection } from "../../model";
2
- export declare const getSignatureCollection: (data: InvestigatorSignature[]) => SignatureCollection;