@axiom-lattice/pg-stores 3.1.13 → 3.1.14
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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +10 -0
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/__tests__/PostgreSQLAgentWebAppStore.test.ts +18 -0
- package/src/stores/PostgreSQLAgentWebAppStore.ts +10 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @axiom-lattice/pg-stores@3.1.
|
|
2
|
+
> @axiom-lattice/pg-stores@3.1.14 build /home/runner/work/agentic/agentic/packages/pg-stores
|
|
3
3
|
> tsup src/index.ts --format cjs,esm --dts --sourcemap
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
[34mCLI[39m Target: es2020
|
|
9
9
|
[34mCJS[39m Build start
|
|
10
10
|
[34mESM[39m Build start
|
|
11
|
-
[32mCJS[39m [1mdist/index.js [22m[32m399.
|
|
12
|
-
[32mCJS[39m [1mdist/index.js.map [22m[32m728.
|
|
13
|
-
[32mCJS[39m ⚡️ Build success in
|
|
14
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m391.
|
|
15
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[32m728.
|
|
16
|
-
[32mESM[39m ⚡️ Build success in
|
|
11
|
+
[32mCJS[39m [1mdist/index.js [22m[32m399.60 KB[39m
|
|
12
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m728.88 KB[39m
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 625ms
|
|
14
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m391.39 KB[39m
|
|
15
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m728.51 KB[39m
|
|
16
|
+
[32mESM[39m ⚡️ Build success in 664ms
|
|
17
17
|
[34mDTS[39m Build start
|
|
18
|
-
[32mDTS[39m ⚡️ Build success in
|
|
18
|
+
[32mDTS[39m ⚡️ Build success in 14015ms
|
|
19
19
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m82.14 KB[39m
|
|
20
20
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m82.14 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @axiom-lattice/pg-stores
|
|
2
2
|
|
|
3
|
+
## 3.1.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 693a1ab: Add `quickPrompts` (up to 6 `{ label, text }` suggestions) to Agent Web App appearance, with strict server validation, Console form editing, store round-tripping, and runtime bootstrap passthrough for the chat empty state.
|
|
8
|
+
- Updated dependencies [693a1ab]
|
|
9
|
+
- Updated dependencies [d36a7b6]
|
|
10
|
+
- @axiom-lattice/protocols@4.3.0
|
|
11
|
+
- @axiom-lattice/core@4.2.14
|
|
12
|
+
|
|
3
13
|
## 3.1.13
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -6724,8 +6724,11 @@ function isScope(value) {
|
|
|
6724
6724
|
function isFeatures(value) {
|
|
6725
6725
|
return isRecord(value) && typeof value.projectSelector === "boolean" && typeof value.modelSelector === "boolean" && typeof value.threadManagement === "boolean" && typeof value.attachments === "boolean" && typeof value.hitl === "boolean" && typeof value.genUI === "boolean" && (value.files === void 0 || typeof value.files === "boolean");
|
|
6726
6726
|
}
|
|
6727
|
+
function isQuickPrompt(value) {
|
|
6728
|
+
return isRecord(value) && typeof value.label === "string" && typeof value.text === "string";
|
|
6729
|
+
}
|
|
6727
6730
|
function isAppearance(value) {
|
|
6728
|
-
return isRecord(value) && (value.title === void 0 || typeof value.title === "string") && (value.welcomeMessage === void 0 || typeof value.welcomeMessage === "string") && (value.primaryColor === void 0 || typeof value.primaryColor === "string");
|
|
6731
|
+
return isRecord(value) && (value.title === void 0 || typeof value.title === "string") && (value.welcomeMessage === void 0 || typeof value.welcomeMessage === "string") && (value.primaryColor === void 0 || typeof value.primaryColor === "string") && (value.quickPrompts === void 0 || Array.isArray(value.quickPrompts) && value.quickPrompts.every(isQuickPrompt));
|
|
6729
6732
|
}
|
|
6730
6733
|
function isIdentity(value) {
|
|
6731
6734
|
if (value === null || value === void 0) return true;
|