@axiom-lattice/pg-stores 1.0.24 → 1.0.26

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@1.0.24 build /home/runner/work/agentic/agentic/packages/pg-stores
2
+ > @axiom-lattice/pg-stores@1.0.26 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 120.19 KB
12
- CJS dist/index.js.map 226.47 KB
13
- CJS ⚡️ Build success in 413ms
14
- ESM dist/index.mjs 117.18 KB
15
- ESM dist/index.mjs.map 222.45 KB
16
- ESM ⚡️ Build success in 419ms
11
+ CJS dist/index.js 120.17 KB
12
+ CJS dist/index.js.map 226.44 KB
13
+ CJS ⚡️ Build success in 289ms
14
+ ESM dist/index.mjs 117.15 KB
15
+ ESM dist/index.mjs.map 222.41 KB
16
+ ESM ⚡️ Build success in 293ms
17
17
  DTS Build start
18
- DTS ⚡️ Build success in 11980ms
18
+ DTS ⚡️ Build success in 11590ms
19
19
  DTS dist/index.d.ts 31.85 KB
20
20
  DTS dist/index.d.mts 31.85 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @axiom-lattice/pg-stores
2
2
 
3
+ ## 1.0.26
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [ce3fc2f]
8
+ - @axiom-lattice/core@2.1.36
9
+
10
+ ## 1.0.25
11
+
12
+ ### Patch Changes
13
+
14
+ - 45997c9: update tenants
15
+ - Updated dependencies [45997c9]
16
+ - @axiom-lattice/core@2.1.35
17
+
3
18
  ## 1.0.24
4
19
 
5
20
  ### Patch Changes
package/dist/index.js CHANGED
@@ -735,8 +735,7 @@ var PostgreSQLAssistantStore = class {
735
735
  `
736
736
  INSERT INTO lattice_assistants (id, tenant_id, name, description, graph_definition, created_at, updated_at)
737
737
  VALUES ($1, $2, $3, $4, $5, $6, $7)
738
- ON CONFLICT (id) DO UPDATE SET
739
- tenant_id = EXCLUDED.tenant_id,
738
+ ON CONFLICT (id, tenant_id) DO UPDATE SET
740
739
  name = EXCLUDED.name,
741
740
  description = EXCLUDED.description,
742
741
  graph_definition = EXCLUDED.graph_definition,