arkham-investigator-data 1.3.2 → 1.3.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.
@@ -1,3 +1,3 @@
1
1
  import type { ArkhamCardsInvestigator } from "../../api/arkhamCards";
2
- import type { InvestigatorTabooSignature } from "../../model";
3
- export declare const getEnglishSignatures: (data: ArkhamCardsInvestigator[]) => InvestigatorTabooSignature[];
2
+ import type { InvestigatorSignature } from "../../model";
3
+ export declare const getEnglishSignatures: (data: ArkhamCardsInvestigator[]) => InvestigatorSignature[];
@@ -1,2 +1,2 @@
1
- import type { InvestigatorTabooSignature, SignatureCollection } from "../../model";
2
- export declare const getSignatureCollection: (data: InvestigatorTabooSignature[]) => SignatureCollection;
1
+ import type { InvestigatorSignature, SignatureCollection } from "../../model";
2
+ export declare const getSignatureCollection: (data: InvestigatorSignature[]) => SignatureCollection;
@@ -1,3 +1,3 @@
1
1
  import type { ArkhamCardsInvestigator } from "../../api/arkhamCards";
2
- import type { InvestigatorTabooSignature } from "../../model";
3
- export declare const getSignatureTranslations: (data: ArkhamCardsInvestigator[]) => Map<string, InvestigatorTabooSignature[]>;
2
+ import type { InvestigatorSignature } from "../../model";
3
+ export declare const getSignatureTranslations: (data: ArkhamCardsInvestigator[]) => Map<string, InvestigatorSignature[]>;
@@ -1,5 +1,5 @@
1
1
  import type { ArkhamCardsInvestigator } from "../../api/arkhamCards";
2
- export declare type InvestigatorTabooSignature = Omit<ArkhamCardsInvestigator, "real_name" | "real_subname" | "real_text" | "real_flavor" | "real_traits" | "real_taboo_original_text" | "real_taboo_text_change" | "translations"> & {
2
+ 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"> & {
3
3
  locale: string;
4
4
  text: string;
5
5
  name: string;
@@ -9,8 +9,7 @@ export declare type InvestigatorTabooSignature = Omit<ArkhamCardsInvestigator, "
9
9
  taboo_original_text: string | null;
10
10
  taboo_text_change: string | null;
11
11
  };
12
- export declare type InvestigatorSignature = Omit<InvestigatorTabooSignature, "taboo_original_text" | "taboo_text_change" | "taboo_set">;
13
12
  export declare type SignatureCollection = {
14
13
  cards: InvestigatorSignature[];
15
- taboo: InvestigatorTabooSignature[];
14
+ taboo: InvestigatorSignature[];
16
15
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arkham-investigator-data",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "main": "index.js",
5
5
  "types": "build/src/types.d.ts",
6
6
  "scripts": {