@axiom-lattice/pg-stores 1.0.23 → 1.0.25

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.23 build /home/runner/work/agentic/agentic/packages/pg-stores
2
+ > @axiom-lattice/pg-stores@1.0.25 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 295ms
14
- ESM dist/index.mjs 117.18 KB
15
- ESM dist/index.mjs.map 222.45 KB
16
- ESM ⚡️ Build success in 295ms
11
+ CJS dist/index.js 120.17 KB
12
+ CJS dist/index.js.map 226.44 KB
13
+ CJS ⚡️ Build success in 325ms
14
+ ESM dist/index.mjs 117.15 KB
15
+ ESM dist/index.mjs.map 222.41 KB
16
+ ESM ⚡️ Build success in 330ms
17
17
  DTS Build start
18
- DTS ⚡️ Build success in 12376ms
18
+ DTS ⚡️ Build success in 12339ms
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.25
4
+
5
+ ### Patch Changes
6
+
7
+ - 45997c9: update tenants
8
+ - Updated dependencies [45997c9]
9
+ - @axiom-lattice/core@2.1.35
10
+
11
+ ## 1.0.24
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [65aa690]
16
+ - @axiom-lattice/core@2.1.34
17
+
3
18
  ## 1.0.23
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,