@blurpaper/shared 1.0.12 → 1.1.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.
|
@@ -3,6 +3,8 @@ export declare class KeyAlphabet {
|
|
|
3
3
|
private keyAlphabetMap;
|
|
4
4
|
private alphabetKeyMap;
|
|
5
5
|
private lastGeneratedAlphabetMap;
|
|
6
|
+
getEntireKeyAlphabet(): Record<string, Record<string, string>>;
|
|
7
|
+
getEntireAlphabetKey(): Record<string, Record<string, string>>;
|
|
6
8
|
getKeyAlphabetMap(session?: string): Record<string, string>;
|
|
7
9
|
getAlphabetKeyMap(session?: string): Record<string, string>;
|
|
8
10
|
addToAlphabet(key: string, session?: string, settings?: IAlphabetSettingsInput): string;
|
|
@@ -6,6 +6,12 @@ class KeyAlphabet {
|
|
|
6
6
|
keyAlphabetMap = {};
|
|
7
7
|
alphabetKeyMap = {};
|
|
8
8
|
lastGeneratedAlphabetMap = {};
|
|
9
|
+
getEntireKeyAlphabet() {
|
|
10
|
+
return this.keyAlphabetMap;
|
|
11
|
+
}
|
|
12
|
+
getEntireAlphabetKey() {
|
|
13
|
+
return this.alphabetKeyMap;
|
|
14
|
+
}
|
|
9
15
|
getKeyAlphabetMap(session = constants_1.ALPHABET_DEFAULT_SESSION) {
|
|
10
16
|
return this.keyAlphabetMap[session];
|
|
11
17
|
}
|
package/package.json
CHANGED