@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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @axiom-lattice/pg-stores@3.1.13 build /home/runner/work/agentic/agentic/packages/pg-stores
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
  CLI Building entry: src/index.ts
@@ -8,13 +8,13 @@
8
8
  CLI Target: es2020
9
9
  CJS Build start
10
10
  ESM Build start
11
- CJS dist/index.js 399.36 KB
12
- CJS dist/index.js.map 728.38 KB
13
- CJS ⚡️ Build success in 593ms
14
- ESM dist/index.mjs 391.15 KB
15
- ESM dist/index.mjs.map 728.02 KB
16
- ESM ⚡️ Build success in 631ms
11
+ CJS dist/index.js 399.60 KB
12
+ CJS dist/index.js.map 728.88 KB
13
+ CJS ⚡️ Build success in 625ms
14
+ ESM dist/index.mjs 391.39 KB
15
+ ESM dist/index.mjs.map 728.51 KB
16
+ ESM ⚡️ Build success in 664ms
17
17
  DTS Build start
18
- DTS ⚡️ Build success in 11532ms
18
+ DTS ⚡️ Build success in 14015ms
19
19
  DTS dist/index.d.ts 82.14 KB
20
20
  DTS dist/index.d.mts 82.14 KB
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;