@xyo-network/bip39 2.73.3 → 2.74.0

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 (47) hide show
  1. package/dist/index.d.mts +8 -20
  2. package/dist/index.d.mts.map +1 -0
  3. package/dist/index.d.ts +8 -20
  4. package/dist/index.d.ts.map +1 -0
  5. package/dist/wordlists/czech.d.mts +2 -0
  6. package/dist/wordlists/czech.d.mts.map +1 -0
  7. package/dist/wordlists/czech.d.ts +2 -0
  8. package/dist/wordlists/czech.d.ts.map +1 -0
  9. package/dist/wordlists/english.d.mts +2 -0
  10. package/dist/wordlists/english.d.mts.map +1 -0
  11. package/dist/wordlists/english.d.ts +2 -0
  12. package/dist/wordlists/english.d.ts.map +1 -0
  13. package/dist/wordlists/french.d.mts +2 -0
  14. package/dist/wordlists/french.d.mts.map +1 -0
  15. package/dist/wordlists/french.d.ts +2 -0
  16. package/dist/wordlists/french.d.ts.map +1 -0
  17. package/dist/wordlists/index.d.mts +12 -0
  18. package/dist/wordlists/index.d.mts.map +1 -0
  19. package/dist/wordlists/index.d.ts +12 -0
  20. package/dist/wordlists/index.d.ts.map +1 -0
  21. package/dist/wordlists/italian.d.mts +2 -0
  22. package/dist/wordlists/italian.d.mts.map +1 -0
  23. package/dist/wordlists/italian.d.ts +2 -0
  24. package/dist/wordlists/italian.d.ts.map +1 -0
  25. package/dist/wordlists/japanese.d.mts +2 -0
  26. package/dist/wordlists/japanese.d.mts.map +1 -0
  27. package/dist/wordlists/japanese.d.ts +2 -0
  28. package/dist/wordlists/japanese.d.ts.map +1 -0
  29. package/dist/wordlists/korean.d.mts +2 -0
  30. package/dist/wordlists/korean.d.mts.map +1 -0
  31. package/dist/wordlists/korean.d.ts +2 -0
  32. package/dist/wordlists/korean.d.ts.map +1 -0
  33. package/dist/wordlists/simplified-chinese.d.mts +2 -0
  34. package/dist/wordlists/simplified-chinese.d.mts.map +1 -0
  35. package/dist/wordlists/simplified-chinese.d.ts +2 -0
  36. package/dist/wordlists/simplified-chinese.d.ts.map +1 -0
  37. package/dist/wordlists/spanish.d.mts +2 -0
  38. package/dist/wordlists/spanish.d.mts.map +1 -0
  39. package/dist/wordlists/spanish.d.ts +2 -0
  40. package/dist/wordlists/spanish.d.ts.map +1 -0
  41. package/dist/wordlists/traditional-chinese.d.mts +2 -0
  42. package/dist/wordlists/traditional-chinese.d.mts.map +1 -0
  43. package/dist/wordlists/traditional-chinese.d.ts +2 -0
  44. package/dist/wordlists/traditional-chinese.d.ts.map +1 -0
  45. package/package.json +3 -9
  46. package/dist/docs.json +0 -1057
  47. package/tsup.config.ts +0 -16
package/dist/index.d.mts CHANGED
@@ -1,15 +1,4 @@
1
- declare const wordlists: {
2
- czech: string[];
3
- english: string[];
4
- french: string[];
5
- italian: string[];
6
- japanese: string[];
7
- korean: string[];
8
- simplifiedChinese: string[];
9
- spanish: string[];
10
- traditionalChinese: string[];
11
- };
12
-
1
+ export * from './wordlists';
13
2
  /**
14
3
  * Generate x random words. Uses Cryptographically-Secure Random Number Generator.
15
4
  * @param wordlist imported wordlist for specific language
@@ -18,7 +7,7 @@ declare const wordlists: {
18
7
  * generateMnemonic(wordlist, 128)
19
8
  * // 'legal winner thank year wave sausage worth useful legal winner thank yellow'
20
9
  */
21
- declare function generateMnemonic(wordlist: string[], strength?: number): string;
10
+ export declare function generateMnemonic(wordlist: string[], strength?: number): string;
22
11
  /**
23
12
  * Reversible: Converts mnemonic string to raw entropy in form of byte array.
24
13
  * @param mnemonic 12-24 words
@@ -32,7 +21,7 @@ declare function generateMnemonic(wordlist: string[], strength?: number): string
32
21
  * 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f
33
22
  * ])
34
23
  */
35
- declare function mnemonicToEntropy(mnemonic: string, wordlist: string[]): Uint8Array;
24
+ export declare function mnemonicToEntropy(mnemonic: string, wordlist: string[]): Uint8Array;
36
25
  /**
37
26
  * Reversible: Converts raw entropy in form of byte array to mnemonic string.
38
27
  * @param entropy byte array
@@ -46,11 +35,11 @@ declare function mnemonicToEntropy(mnemonic: string, wordlist: string[]): Uint8A
46
35
  * entropyToMnemonic(ent, wordlist);
47
36
  * // 'legal winner thank year wave sausage worth useful legal winner thank yellow'
48
37
  */
49
- declare function entropyToMnemonic(entropy: Uint8Array, wordlist: string[]): string;
38
+ export declare function entropyToMnemonic(entropy: Uint8Array, wordlist: string[]): string;
50
39
  /**
51
40
  * Validates mnemonic for being 12-24 words contained in `wordlist`.
52
41
  */
53
- declare function validateMnemonic(mnemonic: string, wordlist: string[]): boolean;
42
+ export declare function validateMnemonic(mnemonic: string, wordlist: string[]): boolean;
54
43
  /**
55
44
  * Irreversible: Uses KDF to derive 64 bytes of key data from mnemonic + optional password.
56
45
  * @param mnemonic 12-24 words
@@ -61,7 +50,7 @@ declare function validateMnemonic(mnemonic: string, wordlist: string[]): boolean
61
50
  * await mnemonicToSeed(mnem, 'password');
62
51
  * // new Uint8Array([...64 bytes])
63
52
  */
64
- declare function mnemonicToSeed(mnemonic: string, passphrase?: string): Promise<Uint8Array>;
53
+ export declare function mnemonicToSeed(mnemonic: string, passphrase?: string): Promise<Uint8Array>;
65
54
  /**
66
55
  * Irreversible: Uses KDF to derive 64 bytes of key data from mnemonic + optional password.
67
56
  * @param mnemonic 12-24 words
@@ -72,6 +61,5 @@ declare function mnemonicToSeed(mnemonic: string, passphrase?: string): Promise<
72
61
  * mnemonicToSeedSync(mnem, 'password');
73
62
  * // new Uint8Array([...64 bytes])
74
63
  */
75
- declare function mnemonicToSeedSync(mnemonic: string, passphrase?: string): Uint8Array;
76
-
77
- export { entropyToMnemonic, generateMnemonic, mnemonicToEntropy, mnemonicToSeed, mnemonicToSeedSync, validateMnemonic, wordlists };
64
+ export declare function mnemonicToSeedSync(mnemonic: string, passphrase?: string): Uint8Array;
65
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAUA,cAAc,aAAa,CAAA;AAwB3B;;;;;;;GAOG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,QAAQ,SAAM,GAAG,MAAM,CAI3E;AAmBD;;;;;;;;;;;;GAYG;AACH,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,UAAU,CAKlF;AAED;;;;;;;;;;;;GAYG;AACH,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,MAAM,CAIjF;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAO9E;AAID;;;;;;;;;GASG;AACH,wBAAgB,cAAc,CAAC,QAAQ,EAAE,MAAM,EAAE,UAAU,SAAK,uBAE/D;AAED;;;;;;;;;GASG;AACH,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,UAAU,SAAK,cAEnE"}
package/dist/index.d.ts CHANGED
@@ -1,15 +1,4 @@
1
- declare const wordlists: {
2
- czech: string[];
3
- english: string[];
4
- french: string[];
5
- italian: string[];
6
- japanese: string[];
7
- korean: string[];
8
- simplifiedChinese: string[];
9
- spanish: string[];
10
- traditionalChinese: string[];
11
- };
12
-
1
+ export * from './wordlists';
13
2
  /**
14
3
  * Generate x random words. Uses Cryptographically-Secure Random Number Generator.
15
4
  * @param wordlist imported wordlist for specific language
@@ -18,7 +7,7 @@ declare const wordlists: {
18
7
  * generateMnemonic(wordlist, 128)
19
8
  * // 'legal winner thank year wave sausage worth useful legal winner thank yellow'
20
9
  */
21
- declare function generateMnemonic(wordlist: string[], strength?: number): string;
10
+ export declare function generateMnemonic(wordlist: string[], strength?: number): string;
22
11
  /**
23
12
  * Reversible: Converts mnemonic string to raw entropy in form of byte array.
24
13
  * @param mnemonic 12-24 words
@@ -32,7 +21,7 @@ declare function generateMnemonic(wordlist: string[], strength?: number): string
32
21
  * 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f
33
22
  * ])
34
23
  */
35
- declare function mnemonicToEntropy(mnemonic: string, wordlist: string[]): Uint8Array;
24
+ export declare function mnemonicToEntropy(mnemonic: string, wordlist: string[]): Uint8Array;
36
25
  /**
37
26
  * Reversible: Converts raw entropy in form of byte array to mnemonic string.
38
27
  * @param entropy byte array
@@ -46,11 +35,11 @@ declare function mnemonicToEntropy(mnemonic: string, wordlist: string[]): Uint8A
46
35
  * entropyToMnemonic(ent, wordlist);
47
36
  * // 'legal winner thank year wave sausage worth useful legal winner thank yellow'
48
37
  */
49
- declare function entropyToMnemonic(entropy: Uint8Array, wordlist: string[]): string;
38
+ export declare function entropyToMnemonic(entropy: Uint8Array, wordlist: string[]): string;
50
39
  /**
51
40
  * Validates mnemonic for being 12-24 words contained in `wordlist`.
52
41
  */
53
- declare function validateMnemonic(mnemonic: string, wordlist: string[]): boolean;
42
+ export declare function validateMnemonic(mnemonic: string, wordlist: string[]): boolean;
54
43
  /**
55
44
  * Irreversible: Uses KDF to derive 64 bytes of key data from mnemonic + optional password.
56
45
  * @param mnemonic 12-24 words
@@ -61,7 +50,7 @@ declare function validateMnemonic(mnemonic: string, wordlist: string[]): boolean
61
50
  * await mnemonicToSeed(mnem, 'password');
62
51
  * // new Uint8Array([...64 bytes])
63
52
  */
64
- declare function mnemonicToSeed(mnemonic: string, passphrase?: string): Promise<Uint8Array>;
53
+ export declare function mnemonicToSeed(mnemonic: string, passphrase?: string): Promise<Uint8Array>;
65
54
  /**
66
55
  * Irreversible: Uses KDF to derive 64 bytes of key data from mnemonic + optional password.
67
56
  * @param mnemonic 12-24 words
@@ -72,6 +61,5 @@ declare function mnemonicToSeed(mnemonic: string, passphrase?: string): Promise<
72
61
  * mnemonicToSeedSync(mnem, 'password');
73
62
  * // new Uint8Array([...64 bytes])
74
63
  */
75
- declare function mnemonicToSeedSync(mnemonic: string, passphrase?: string): Uint8Array;
76
-
77
- export { entropyToMnemonic, generateMnemonic, mnemonicToEntropy, mnemonicToSeed, mnemonicToSeedSync, validateMnemonic, wordlists };
64
+ export declare function mnemonicToSeedSync(mnemonic: string, passphrase?: string): Uint8Array;
65
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAUA,cAAc,aAAa,CAAA;AAwB3B;;;;;;;GAOG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,QAAQ,SAAM,GAAG,MAAM,CAI3E;AAmBD;;;;;;;;;;;;GAYG;AACH,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,UAAU,CAKlF;AAED;;;;;;;;;;;;GAYG;AACH,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,MAAM,CAIjF;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAO9E;AAID;;;;;;;;;GASG;AACH,wBAAgB,cAAc,CAAC,QAAQ,EAAE,MAAM,EAAE,UAAU,SAAK,uBAE/D;AAED;;;;;;;;;GASG;AACH,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,UAAU,SAAK,cAEnE"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=czech.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"czech.d.ts","sourceRoot":"","sources":["../../src/wordlists/czech.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/DZ,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=czech.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"czech.d.ts","sourceRoot":"","sources":["../../src/wordlists/czech.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/DZ,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=english.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"english.d.ts","sourceRoot":"","sources":["../../src/wordlists/english.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/Db,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=english.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"english.d.ts","sourceRoot":"","sources":["../../src/wordlists/english.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/Db,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=french.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"french.d.ts","sourceRoot":"","sources":["../../src/wordlists/french.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/DR,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=french.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"french.d.ts","sourceRoot":"","sources":["../../src/wordlists/french.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/DR,CAAA"}
@@ -0,0 +1,12 @@
1
+ export declare const wordlists: {
2
+ czech: string[];
3
+ english: string[];
4
+ french: string[];
5
+ italian: string[];
6
+ japanese: string[];
7
+ korean: string[];
8
+ simplifiedChinese: string[];
9
+ spanish: string[];
10
+ traditionalChinese: string[];
11
+ };
12
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/wordlists/index.ts"],"names":[],"mappings":"AAUA,eAAO,MAAM,SAAS;;;;;;;;;;CAUrB,CAAA"}
@@ -0,0 +1,12 @@
1
+ export declare const wordlists: {
2
+ czech: string[];
3
+ english: string[];
4
+ french: string[];
5
+ italian: string[];
6
+ japanese: string[];
7
+ korean: string[];
8
+ simplifiedChinese: string[];
9
+ spanish: string[];
10
+ traditionalChinese: string[];
11
+ };
12
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/wordlists/index.ts"],"names":[],"mappings":"AAUA,eAAO,MAAM,SAAS;;;;;;;;;;CAUrB,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=italian.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"italian.d.ts","sourceRoot":"","sources":["../../src/wordlists/italian.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/DX,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=italian.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"italian.d.ts","sourceRoot":"","sources":["../../src/wordlists/italian.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/DX,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=japanese.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"japanese.d.ts","sourceRoot":"","sources":["../../src/wordlists/japanese.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/Db,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=japanese.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"japanese.d.ts","sourceRoot":"","sources":["../../src/wordlists/japanese.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/Db,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=korean.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"korean.d.ts","sourceRoot":"","sources":["../../src/wordlists/korean.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/DV,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=korean.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"korean.d.ts","sourceRoot":"","sources":["../../src/wordlists/korean.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/DV,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=simplified-chinese.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"simplified-chinese.d.ts","sourceRoot":"","sources":["../../src/wordlists/simplified-chinese.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/Df,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=simplified-chinese.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"simplified-chinese.d.ts","sourceRoot":"","sources":["../../src/wordlists/simplified-chinese.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/Df,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=spanish.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"spanish.d.ts","sourceRoot":"","sources":["../../src/wordlists/spanish.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/DX,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=spanish.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"spanish.d.ts","sourceRoot":"","sources":["../../src/wordlists/spanish.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/DX,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=traditional-chinese.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"traditional-chinese.d.ts","sourceRoot":"","sources":["../../src/wordlists/traditional-chinese.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/Df,CAAA"}
@@ -0,0 +1,2 @@
1
+ export declare const wordlist: string[];
2
+ //# sourceMappingURL=traditional-chinese.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"traditional-chinese.d.ts","sourceRoot":"","sources":["../../src/wordlists/traditional-chinese.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,QAAQ,EAAE,MAAM,EA+/Df,CAAA"}
package/package.json CHANGED
@@ -15,10 +15,8 @@
15
15
  },
16
16
  "description": "Primary SDK for using XYO Protocol 2.0",
17
17
  "devDependencies": {
18
- "@xylabs/ts-scripts-yarn3": "^2.19.5",
19
- "@xylabs/tsconfig": "^2.19.5",
20
- "publint": "^0.2.2",
21
- "tsup": "^7.2.0",
18
+ "@xylabs/ts-scripts-yarn3": "^3.0.27",
19
+ "@xylabs/tsconfig": "^3.0.27",
22
20
  "typescript": "^5.2.2"
23
21
  },
24
22
  "docs": "dist/docs.json",
@@ -54,15 +52,11 @@
54
52
  "publishConfig": {
55
53
  "access": "public"
56
54
  },
57
- "scripts": {
58
- "package-compile": "tsup && publint",
59
- "package-recompile": "tsup && publint"
60
- },
61
55
  "repository": {
62
56
  "type": "git",
63
57
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
64
58
  },
65
59
  "sideEffects": false,
66
60
  "types": "dist/index.d.ts",
67
- "version": "2.73.3"
61
+ "version": "2.74.0"
68
62
  }