stentor-constants 1.59.31 → 1.59.33
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.
- package/lib/storage.d.ts +16 -0
- package/lib/storage.js +17 -1
- package/lib/storage.js.map +1 -1
- package/package.json +3 -3
package/lib/storage.d.ts
CHANGED
|
@@ -15,3 +15,19 @@ export declare const SESSION_STORAGE_KNOWLEDGE_BASE_RESULT = "knowledge_base_res
|
|
|
15
15
|
* Stores any filters used by the knowledge base
|
|
16
16
|
*/
|
|
17
17
|
export declare const SESSION_STORAGE_KNOWLEDGE_BASE_FILTERS = "knowledge_base_filters";
|
|
18
|
+
/**
|
|
19
|
+
* Keeps track of the unknown inputs
|
|
20
|
+
*/
|
|
21
|
+
export declare const SESSION_STORAGE_UNKNOWN_INPUTS = "unknownInputs";
|
|
22
|
+
/**
|
|
23
|
+
* Stores the current handler
|
|
24
|
+
*
|
|
25
|
+
* This can also be found directly on the storage
|
|
26
|
+
*/
|
|
27
|
+
export declare const SESSION_STORAGE_CURRENT_HANDLER = "current_handler";
|
|
28
|
+
/**
|
|
29
|
+
* Stores the previous handler
|
|
30
|
+
*
|
|
31
|
+
* This can also be found directly on the storage
|
|
32
|
+
*/
|
|
33
|
+
export declare const SESSION_STORAGE_PREVIOUS_HANDLER = "previous_handler";
|
package/lib/storage.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/*! Copyright (c) 2020, XAPPmedia */
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.SESSION_STORAGE_KNOWLEDGE_BASE_FILTERS = exports.SESSION_STORAGE_KNOWLEDGE_BASE_RESULT = exports.SESSION_STORAGE_NEW_USER = exports.SESSION_STORAGE_SLOTS_KEY = void 0;
|
|
4
|
+
exports.SESSION_STORAGE_PREVIOUS_HANDLER = exports.SESSION_STORAGE_CURRENT_HANDLER = exports.SESSION_STORAGE_UNKNOWN_INPUTS = exports.SESSION_STORAGE_KNOWLEDGE_BASE_FILTERS = exports.SESSION_STORAGE_KNOWLEDGE_BASE_RESULT = exports.SESSION_STORAGE_NEW_USER = exports.SESSION_STORAGE_SLOTS_KEY = void 0;
|
|
5
5
|
/**
|
|
6
6
|
* Contains the slots from the session
|
|
7
7
|
*/
|
|
@@ -18,4 +18,20 @@ exports.SESSION_STORAGE_KNOWLEDGE_BASE_RESULT = "knowledge_base_result";
|
|
|
18
18
|
* Stores any filters used by the knowledge base
|
|
19
19
|
*/
|
|
20
20
|
exports.SESSION_STORAGE_KNOWLEDGE_BASE_FILTERS = "knowledge_base_filters";
|
|
21
|
+
/**
|
|
22
|
+
* Keeps track of the unknown inputs
|
|
23
|
+
*/
|
|
24
|
+
exports.SESSION_STORAGE_UNKNOWN_INPUTS = "unknownInputs";
|
|
25
|
+
/**
|
|
26
|
+
* Stores the current handler
|
|
27
|
+
*
|
|
28
|
+
* This can also be found directly on the storage
|
|
29
|
+
*/
|
|
30
|
+
exports.SESSION_STORAGE_CURRENT_HANDLER = "current_handler";
|
|
31
|
+
/**
|
|
32
|
+
* Stores the previous handler
|
|
33
|
+
*
|
|
34
|
+
* This can also be found directly on the storage
|
|
35
|
+
*/
|
|
36
|
+
exports.SESSION_STORAGE_PREVIOUS_HANDLER = "previous_handler";
|
|
21
37
|
//# sourceMappingURL=storage.js.map
|
package/lib/storage.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"storage.js","sourceRoot":"","sources":["../src/storage.ts"],"names":[],"mappings":";AAAA,oCAAoC;;;AAEpC;;GAEG;AACU,QAAA,yBAAyB,GAAG,OAAO,CAAC;AACjD;;GAEG;AACU,QAAA,wBAAwB,GAAG,UAAU,CAAC;AACnD;;GAEG;AACU,QAAA,qCAAqC,GAAG,uBAAuB,CAAC;AAC7E;;GAEG;AACU,QAAA,sCAAsC,GAAG,wBAAwB,CAAC"}
|
|
1
|
+
{"version":3,"file":"storage.js","sourceRoot":"","sources":["../src/storage.ts"],"names":[],"mappings":";AAAA,oCAAoC;;;AAEpC;;GAEG;AACU,QAAA,yBAAyB,GAAG,OAAO,CAAC;AACjD;;GAEG;AACU,QAAA,wBAAwB,GAAG,UAAU,CAAC;AACnD;;GAEG;AACU,QAAA,qCAAqC,GAAG,uBAAuB,CAAC;AAC7E;;GAEG;AACU,QAAA,sCAAsC,GAAG,wBAAwB,CAAC;AAC/E;;GAEG;AACU,QAAA,8BAA8B,GAAG,eAAe,CAAC;AAC9D;;;;GAIG;AACU,QAAA,+BAA+B,GAAG,iBAAiB,CAAC;AACjE;;;;GAIG;AACU,QAAA,gCAAgC,GAAG,kBAAkB,CAAC"}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.59.
|
|
7
|
+
"version": "1.59.33",
|
|
8
8
|
"description": "Constants for 📣 stentor",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"typings": "lib/index",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@xapp/config": "0.2.3",
|
|
20
|
-
"stentor-models": "1.59.
|
|
20
|
+
"stentor-models": "1.59.33",
|
|
21
21
|
"typescript": "5.4.3"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"build": "tsc -d true -p .",
|
|
28
28
|
"clean": "rm -rf ./lib/*"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "da6f13ca2b97acd1533be651d07311b30b83cc15"
|
|
31
31
|
}
|