@arnilo/prism-server 0.2.2 → 0.2.4
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/dist/conversations.d.ts +1 -1
- package/package.json +5 -5
package/dist/conversations.d.ts
CHANGED
|
@@ -56,7 +56,7 @@ export interface ConversationServiceStore {
|
|
|
56
56
|
readonly expectedVersion?: number;
|
|
57
57
|
}): Promise<{
|
|
58
58
|
readonly version: number;
|
|
59
|
-
} |
|
|
59
|
+
} | undefined>;
|
|
60
60
|
readonly lifecycle?: Pick<PersistenceLifecycleStore, "applyRetention">;
|
|
61
61
|
}
|
|
62
62
|
export interface ConversationSessionFactoryInput {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arnilo/prism-server",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Optional framework-free Web Request-to-Response handler for explicitly selected Prism agents and workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"CHANGELOG.md"
|
|
24
24
|
],
|
|
25
25
|
"scripts": {
|
|
26
|
-
"build": "tsc -p tsconfig.json",
|
|
26
|
+
"build": "node ../../scripts/with-build-lock.mjs tsc -p tsconfig.json",
|
|
27
27
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
28
|
-
"test": "node --test dist/__tests__/*.test.js",
|
|
28
|
+
"test": "node ../../scripts/with-build-lock.mjs node --test dist/__tests__/*.test.js",
|
|
29
29
|
"pack:dry-run": "npm pack --dry-run"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@arnilo/prism": "0.2.
|
|
33
|
-
"@arnilo/prism-workflows": "0.2.
|
|
32
|
+
"@arnilo/prism": "0.2.4",
|
|
33
|
+
"@arnilo/prism-workflows": "0.2.4"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@arnilo/prism": "file:../..",
|