@axiom-lattice/pg-stores 1.0.41 → 1.0.42
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 +9 -0
- package/dist/index.js +7 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/index.ts +2 -1
- package/src/stores/ChannelIdentityMappingStore.ts +2 -1
- package/src/stores/PostgreSQLAssistantStore.ts +2 -1
- package/src/stores/PostgreSQLChannelInstallationStore.ts +2 -1
- package/src/stores/PostgreSQLDatabaseConfigStore.ts +2 -1
- package/src/stores/PostgreSQLMcpServerConfigStore.ts +2 -1
- package/src/stores/PostgreSQLMetricsServerConfigStore.ts +2 -1
- package/src/stores/PostgreSQLProjectStore.ts +2 -1
- package/src/stores/PostgreSQLScheduleStorage.ts +2 -1
- package/src/stores/PostgreSQLSkillStore.ts +2 -1
- package/src/stores/PostgreSQLTenantStore.ts +2 -1
- package/src/stores/PostgreSQLThreadStore.ts +2 -1
- package/src/stores/PostgreSQLUserStore.ts +2 -1
- package/src/stores/PostgreSQLUserTenantLinkStore.ts +2 -1
- package/src/stores/PostgreSQLWorkspaceStore.ts +2 -1
- package/src/stores/ThreadMessageQueueStore.ts +2 -2
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/index.ts
|
|
2
|
-
import { Pool as Pool15
|
|
2
|
+
import { Pool as Pool15 } from "pg";
|
|
3
3
|
|
|
4
4
|
// src/stores/PostgreSQLThreadStore.ts
|
|
5
5
|
import { Pool } from "pg";
|
|
@@ -4100,11 +4100,6 @@ var createChannelInstallationsTable = {
|
|
|
4100
4100
|
|
|
4101
4101
|
// src/stores/ThreadMessageQueueStore.ts
|
|
4102
4102
|
import crypto from "crypto";
|
|
4103
|
-
import {
|
|
4104
|
-
PendingMessage,
|
|
4105
|
-
AddMessageParams,
|
|
4106
|
-
ThreadInfo
|
|
4107
|
-
} from "@axiom-lattice/core";
|
|
4108
4103
|
|
|
4109
4104
|
// src/migrations/add_priority_command_columns.ts
|
|
4110
4105
|
var addPriorityAndCommandColumns = {
|
|
@@ -4799,12 +4794,9 @@ var PostgreSQLChannelInstallationStore = class {
|
|
|
4799
4794
|
}
|
|
4800
4795
|
};
|
|
4801
4796
|
export {
|
|
4802
|
-
AddMessageParams,
|
|
4803
4797
|
ChannelIdentityMappingStore,
|
|
4804
4798
|
MigrationManager,
|
|
4805
|
-
PendingMessage,
|
|
4806
4799
|
Pool15 as Pool,
|
|
4807
|
-
PoolConfig15 as PoolConfig,
|
|
4808
4800
|
PostgreSQLAssistantStore,
|
|
4809
4801
|
PostgreSQLChannelInstallationStore,
|
|
4810
4802
|
PostgreSQLDatabaseConfigStore,
|
|
@@ -4818,7 +4810,6 @@ export {
|
|
|
4818
4810
|
PostgreSQLUserStore,
|
|
4819
4811
|
PostgreSQLUserTenantLinkStore,
|
|
4820
4812
|
PostgreSQLWorkspaceStore,
|
|
4821
|
-
ThreadInfo,
|
|
4822
4813
|
ThreadMessageQueueStore,
|
|
4823
4814
|
addAssistantTenantId,
|
|
4824
4815
|
addScheduleTenantId,
|