stentor-constants 1.58.0 → 1.58.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.
package/lib/storage.d.ts CHANGED
@@ -1,4 +1,17 @@
1
1
  /*! Copyright (c) 2020, XAPPmedia */
2
+ /**
3
+ * Contains the slots from the session
4
+ */
2
5
  export declare const SESSION_STORAGE_SLOTS_KEY = "slots";
6
+ /**
7
+ * Contains a boolean if they are
8
+ */
3
9
  export declare const SESSION_STORAGE_NEW_USER = "new_user";
10
+ /**
11
+ * Stores the knowledge base results
12
+ */
4
13
  export declare const SESSION_STORAGE_KNOWLEDGE_BASE_RESULT = "knowledge_base_result";
14
+ /**
15
+ * Stores any filters used by the knowledge base
16
+ */
17
+ export declare const SESSION_STORAGE_KNOWLEDGE_BASE_FILTERS = "knowledge_base_filters";
package/lib/storage.js CHANGED
@@ -1,8 +1,21 @@
1
1
  "use strict";
2
2
  /*! Copyright (c) 2020, XAPPmedia */
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.SESSION_STORAGE_KNOWLEDGE_BASE_RESULT = exports.SESSION_STORAGE_NEW_USER = exports.SESSION_STORAGE_SLOTS_KEY = void 0;
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;
5
+ /**
6
+ * Contains the slots from the session
7
+ */
5
8
  exports.SESSION_STORAGE_SLOTS_KEY = "slots";
9
+ /**
10
+ * Contains a boolean if they are
11
+ */
6
12
  exports.SESSION_STORAGE_NEW_USER = "new_user";
13
+ /**
14
+ * Stores the knowledge base results
15
+ */
7
16
  exports.SESSION_STORAGE_KNOWLEDGE_BASE_RESULT = "knowledge_base_result";
17
+ /**
18
+ * Stores any filters used by the knowledge base
19
+ */
20
+ exports.SESSION_STORAGE_KNOWLEDGE_BASE_FILTERS = "knowledge_base_filters";
8
21
  //# sourceMappingURL=storage.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"storage.js","sourceRoot":"","sources":["../src/storage.ts"],"names":[],"mappings":";AAAA,oCAAoC;;;AAEvB,QAAA,yBAAyB,GAAG,OAAO,CAAC;AAEpC,QAAA,wBAAwB,GAAG,UAAU,CAAC;AAEtC,QAAA,qCAAqC,GAAG,uBAAuB,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"}
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.58.0",
7
+ "version": "1.58.3",
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.58.0",
20
+ "stentor-models": "1.58.3",
21
21
  "typescript": "5.2.2"
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": "a88b1dae3d88406768e35a7d78e876477f682baf"
30
+ "gitHead": "fa49afa8147a5d7457d17073758c8a30c9bfbdb2"
31
31
  }