@axiom-lattice/pg-stores 1.0.84 → 1.0.86
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 +10 -10
- package/CHANGELOG.md +19 -0
- package/dist/index.d.mts +66 -2
- package/dist/index.d.ts +66 -2
- package/dist/index.js +270 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +266 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -3
- package/src/PGVectorStoreProvider.ts +113 -0
- package/src/createPgStoreConfig.ts +6 -0
- package/src/index.ts +4 -0
- package/src/migrations/collection_migrations.ts +41 -0
- package/src/migrations/migration.ts +9 -0
- package/src/stores/PostgreSQLCollectionStore.ts +165 -0
- package/src/stores/PostgreSQLMcpServerConfigStore.ts +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @axiom-lattice/pg-stores@1.0.
|
|
2
|
+
> @axiom-lattice/pg-stores@1.0.86 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
|
-
[32mESM[39m [1mdist/index.mjs [22m[
|
|
12
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[
|
|
13
|
-
[32mESM[39m ⚡️ Build success in
|
|
14
|
-
[32mCJS[39m [1mdist/index.js [22m[
|
|
15
|
-
[32mCJS[39m [1mdist/index.js.map [22m[
|
|
16
|
-
[32mCJS[39m ⚡️ Build success in
|
|
11
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m250.81 KB[39m
|
|
12
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m480.82 KB[39m
|
|
13
|
+
[32mESM[39m ⚡️ Build success in 696ms
|
|
14
|
+
[32mCJS[39m [1mdist/index.js [22m[32m256.93 KB[39m
|
|
15
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m481.04 KB[39m
|
|
16
|
+
[32mCJS[39m ⚡️ Build success in 707ms
|
|
17
17
|
[34mDTS[39m Build start
|
|
18
|
-
[32mDTS[39m ⚡️ Build success in
|
|
19
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
|
20
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[
|
|
18
|
+
[32mDTS[39m ⚡️ Build success in 16062ms
|
|
19
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m59.56 KB[39m
|
|
20
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m59.56 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @axiom-lattice/pg-stores
|
|
2
2
|
|
|
3
|
+
## 1.0.86
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f3bb4f1: huge update
|
|
8
|
+
- Updated dependencies [f3bb4f1]
|
|
9
|
+
- @axiom-lattice/core@2.1.95
|
|
10
|
+
- @axiom-lattice/protocols@2.1.49
|
|
11
|
+
|
|
12
|
+
## 1.0.85
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- c8749a0: fix pg store
|
|
17
|
+
- 2954442: fix issue
|
|
18
|
+
- Updated dependencies [2954442]
|
|
19
|
+
- @axiom-lattice/core@2.1.94
|
|
20
|
+
- @axiom-lattice/protocols@2.1.48
|
|
21
|
+
|
|
3
22
|
## 1.0.84
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { Pool, PoolConfig, PoolClient } from 'pg';
|
|
2
2
|
export { Pool, PoolConfig } from 'pg';
|
|
3
|
-
import { ThreadStore, Thread, CreateThreadRequest, AssistantStore, Assistant, CreateAssistantRequest, DatabaseConfigStore, DatabaseConfigEntry, CreateDatabaseConfigRequest, UpdateDatabaseConfigRequest, MetricsServerConfigStore, MetricsServerConfigEntry, CreateMetricsServerConfigRequest, UpdateMetricsServerConfigRequest, McpServerConfigStore, McpServerConfigEntry, CreateMcpServerConfigRequest, UpdateMcpServerConfigRequest, WorkspaceStore, Workspace, CreateWorkspaceRequest, UpdateWorkspaceRequest, ProjectStore, Project, CreateProjectRequest, UpdateProjectRequest, UserStore, User, CreateUserRequest, UpdateUserRequest, TenantStore, Tenant, CreateTenantRequest, UpdateTenantRequest, UserTenantLinkStore, UserTenantLink, CreateUserTenantLinkRequest, UpdateUserTenantLinkRequest, WorkflowTrackingStore, CreateWorkflowRunRequest, WorkflowRun, UpdateWorkflowRunRequest, CreateRunStepRequest, RunStep, UpdateRunStepRequest, StepType, EvalStore, EvalProject, CreateEvalProjectRequest, EvalSuite, CreateEvalSuiteRequest, EvalCase, CreateEvalCaseRequest, EvalRun, CreateEvalRunRequest, EvalRunResult, EvalProjectReport, BindingRegistry, Binding, CreateBindingInput, ChannelInstallationStore, ChannelInstallation, ChannelInstallationType, CreateChannelInstallationRequest, UpdateChannelInstallationRequest, A2AApiKeyStore, A2AApiKeyRecord, CreateA2AApiKeyInput, A2AApiKeyEntry, ScheduleStorage, ScheduledTaskDefinition, ScheduledTaskStatus, ScheduleExecutionType, TaskStore, CreateTaskRequest, TaskItem, TaskListFilter, UpdateTaskRequest, MenuRegistry, MenuItem, CreateMenuItemInput, UpdateMenuItemInput, SharedResourceStore, ShareRecord, SkillStore, Skill, CreateSkillRequest } from '@axiom-lattice/protocols';
|
|
3
|
+
import { ThreadStore, Thread, CreateThreadRequest, AssistantStore, Assistant, CreateAssistantRequest, DatabaseConfigStore, DatabaseConfigEntry, CreateDatabaseConfigRequest, UpdateDatabaseConfigRequest, MetricsServerConfigStore, MetricsServerConfigEntry, CreateMetricsServerConfigRequest, UpdateMetricsServerConfigRequest, McpServerConfigStore, McpServerConfigEntry, CreateMcpServerConfigRequest, UpdateMcpServerConfigRequest, WorkspaceStore, Workspace, CreateWorkspaceRequest, UpdateWorkspaceRequest, ProjectStore, Project, CreateProjectRequest, UpdateProjectRequest, UserStore, User, CreateUserRequest, UpdateUserRequest, TenantStore, Tenant, CreateTenantRequest, UpdateTenantRequest, UserTenantLinkStore, UserTenantLink, CreateUserTenantLinkRequest, UpdateUserTenantLinkRequest, WorkflowTrackingStore, CreateWorkflowRunRequest, WorkflowRun, UpdateWorkflowRunRequest, CreateRunStepRequest, RunStep, UpdateRunStepRequest, StepType, EvalStore, EvalProject, CreateEvalProjectRequest, EvalSuite, CreateEvalSuiteRequest, EvalCase, CreateEvalCaseRequest, EvalRun, CreateEvalRunRequest, EvalRunResult, EvalProjectReport, BindingRegistry, Binding, CreateBindingInput, ChannelInstallationStore, ChannelInstallation, ChannelInstallationType, CreateChannelInstallationRequest, UpdateChannelInstallationRequest, A2AApiKeyStore, A2AApiKeyRecord, CreateA2AApiKeyInput, A2AApiKeyEntry, ScheduleStorage, ScheduledTaskDefinition, ScheduledTaskStatus, ScheduleExecutionType, TaskStore, CreateTaskRequest, TaskItem, TaskListFilter, UpdateTaskRequest, MenuRegistry, MenuItem, CreateMenuItemInput, UpdateMenuItemInput, SharedResourceStore, ShareRecord, CollectionStore, Collection, CreateCollectionRequest, UpdateCollectionRequest, VectorStoreProvider, VectorStoreCreateParams, SkillStore, Skill, CreateSkillRequest } from '@axiom-lattice/protocols';
|
|
4
4
|
export { Assistant, AssistantStore, Binding, BindingRegistry, ChannelInstallation, ChannelInstallationStore, CreateAssistantRequest, CreateBindingInput, CreateChannelInstallationRequest, CreateDatabaseConfigRequest, CreateEvalCaseRequest, CreateEvalProjectRequest, CreateEvalRunRequest, CreateEvalSuiteRequest, CreateMcpServerConfigRequest, CreateMenuItemInput, CreateMetricsServerConfigRequest, CreateProjectRequest, CreateRunStepRequest, CreateShareRequest, CreateSkillRequest, CreateTenantRequest, CreateThreadRequest, CreateUserRequest, CreateUserTenantLinkRequest, CreateWorkflowRunRequest, CreateWorkspaceRequest, DatabaseConfig, DatabaseConfigEntry, DatabaseConfigStore, DatabaseType, EvalCase, EvalProject, EvalProjectReport, EvalRun, EvalRunResult, EvalStore, EvalSuite, LarkChannelInstallationConfig, McpServerConfigEntry, McpServerConfigStore, MenuItem, MenuRegistry, MetricsServerConfig, MetricsServerConfigEntry, MetricsServerConfigStore, Project, ProjectStore, ResourceAddress, RunStep, ScheduleExecutionType, ScheduleStorage, ScheduledTaskDefinition, ScheduledTaskStatus, ShareRecord, ShareResult, ShareVisibility, SharedResourceStore, Skill, SkillStore, StorageType, Tenant, TenantStatus, TenantStore, Thread, ThreadStore, UpdateChannelInstallationRequest, UpdateDatabaseConfigRequest, UpdateMcpServerConfigRequest, UpdateMetricsServerConfigRequest, UpdateProjectRequest, UpdateRunStepRequest, UpdateTenantRequest, UpdateUserRequest, UpdateUserTenantLinkRequest, UpdateWorkflowRunRequest, UpdateWorkspaceRequest, User, UserStore, UserTenantLink, UserTenantLinkStore, UserTenantRole, WorkflowRun, WorkflowTrackingStore, Workspace, WorkspaceStore } from '@axiom-lattice/protocols';
|
|
5
5
|
import { IMessageQueueStore, AddMessageParams, PendingMessage, ThreadInfo } from '@axiom-lattice/core';
|
|
6
6
|
export { AddMessageParams, PendingMessage, ThreadInfo } from '@axiom-lattice/core';
|
|
7
7
|
import { PostgresSaver } from '@langchain/langgraph-checkpoint-postgres';
|
|
8
|
+
import { DocumentInterface } from '@langchain/core/documents';
|
|
8
9
|
|
|
9
10
|
/**
|
|
10
11
|
* PostgreSQL implementation of ThreadStore
|
|
@@ -1231,6 +1232,61 @@ declare class PostgresSharedResourceStore implements SharedResourceStore {
|
|
|
1231
1232
|
private _mapRow;
|
|
1232
1233
|
}
|
|
1233
1234
|
|
|
1235
|
+
/**
|
|
1236
|
+
* PostgreSQL implementation of CollectionStore with tenant isolation
|
|
1237
|
+
*/
|
|
1238
|
+
|
|
1239
|
+
interface PostgreSQLCollectionStoreOptions {
|
|
1240
|
+
pool?: Pool;
|
|
1241
|
+
poolConfig?: string | PoolConfig;
|
|
1242
|
+
autoMigrate?: boolean;
|
|
1243
|
+
}
|
|
1244
|
+
declare class PostgreSQLCollectionStore implements CollectionStore {
|
|
1245
|
+
private pool;
|
|
1246
|
+
private initialized;
|
|
1247
|
+
private ownsPool;
|
|
1248
|
+
private initPromise;
|
|
1249
|
+
constructor(options: PostgreSQLCollectionStoreOptions);
|
|
1250
|
+
initialize(): Promise<void>;
|
|
1251
|
+
private ensureInit;
|
|
1252
|
+
getAllCollections(tenantId: string): Promise<Collection[]>;
|
|
1253
|
+
getCollectionByName(tenantId: string, name: string): Promise<Collection | null>;
|
|
1254
|
+
createCollection(tenantId: string, data: CreateCollectionRequest): Promise<Collection>;
|
|
1255
|
+
updateCollection(tenantId: string, name: string, updates: UpdateCollectionRequest): Promise<Collection | null>;
|
|
1256
|
+
deleteCollection(tenantId: string, name: string): Promise<boolean>;
|
|
1257
|
+
dispose(): Promise<void>;
|
|
1258
|
+
private rowToCollection;
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
/**
|
|
1262
|
+
* PGVectorStoreProvider
|
|
1263
|
+
*
|
|
1264
|
+
* VectorStoreProvider implementation using PostgreSQL with pgvector extension.
|
|
1265
|
+
* Each created VectorStore maps to a separate table with the vector column.
|
|
1266
|
+
*/
|
|
1267
|
+
|
|
1268
|
+
declare class PGVectorStoreProvider implements VectorStoreProvider {
|
|
1269
|
+
private pool;
|
|
1270
|
+
private connectionString;
|
|
1271
|
+
constructor(pool: Pool, connectionString: string);
|
|
1272
|
+
create(params: VectorStoreCreateParams): Promise<any>;
|
|
1273
|
+
getEntryCount(tableName: string): Promise<number>;
|
|
1274
|
+
listEntries(tableName: string): Promise<DocumentInterface[]>;
|
|
1275
|
+
dropTable(tableName: string): Promise<void>;
|
|
1276
|
+
dispose(_name: string): Promise<void>;
|
|
1277
|
+
}
|
|
1278
|
+
/**
|
|
1279
|
+
* Create a PGVectorStoreProvider from a connection string.
|
|
1280
|
+
* Creates its own Pool — call pool.end() to clean up.
|
|
1281
|
+
*
|
|
1282
|
+
* @param connectionString PostgreSQL connection string
|
|
1283
|
+
* @returns PGVectorStoreProvider instance
|
|
1284
|
+
*/
|
|
1285
|
+
declare function createPGVectorStoreProvider(connectionString: string): {
|
|
1286
|
+
provider: PGVectorStoreProvider;
|
|
1287
|
+
pool: Pool;
|
|
1288
|
+
};
|
|
1289
|
+
|
|
1234
1290
|
declare function createPgStoreConfig(connectionString: string): Promise<{
|
|
1235
1291
|
workspace: PostgreSQLWorkspaceStore;
|
|
1236
1292
|
project: PostgreSQLProjectStore;
|
|
@@ -1252,6 +1308,8 @@ declare function createPgStoreConfig(connectionString: string): Promise<{
|
|
|
1252
1308
|
schedule: PostgreSQLScheduleStorage;
|
|
1253
1309
|
menu: MenuStore;
|
|
1254
1310
|
sharedResource: PostgresSharedResourceStore;
|
|
1311
|
+
collection: PostgreSQLCollectionStore;
|
|
1312
|
+
vectorStoreProvider: PGVectorStoreProvider;
|
|
1255
1313
|
checkpoint: PostgresSaver;
|
|
1256
1314
|
}>;
|
|
1257
1315
|
|
|
@@ -1712,4 +1770,10 @@ declare const createMenuItemsTable: Migration;
|
|
|
1712
1770
|
|
|
1713
1771
|
declare const addFileContentType: Migration;
|
|
1714
1772
|
|
|
1715
|
-
|
|
1773
|
+
/**
|
|
1774
|
+
* Collection table migrations
|
|
1775
|
+
*/
|
|
1776
|
+
|
|
1777
|
+
declare const createCollectionsTable: Migration;
|
|
1778
|
+
|
|
1779
|
+
export { ChannelBindingStore, type ChannelBindingStoreOptions, type ChannelIdentityMapping, ChannelIdentityMappingStore, type ChannelIdentityMappingStoreOptions, type CreateChannelIdentityMappingInput, MenuStore, type MenuStoreOptions, type Migration, MigrationManager, PGVectorStoreProvider, PostgreSQLA2AApiKeyStore, type PostgreSQLA2AApiKeyStoreOptions, PostgreSQLAssistantStore, type PostgreSQLAssistantStoreOptions, PostgreSQLChannelInstallationStore, type PostgreSQLChannelInstallationStoreOptions, PostgreSQLCollectionStore, type PostgreSQLCollectionStoreOptions, PostgreSQLDatabaseConfigStore, type PostgreSQLDatabaseConfigStoreOptions, PostgreSQLEvalStore, type PostgreSQLEvalStoreOptions, PostgreSQLMcpServerConfigStore, type PostgreSQLMcpServerConfigStoreOptions, PostgreSQLMetricsServerConfigStore, type PostgreSQLMetricsServerConfigStoreOptions, PostgreSQLProjectStore, type PostgreSQLProjectStoreOptions, PostgreSQLScheduleStorage, type PostgreSQLScheduleStorageOptions, PostgreSQLSkillStore, type PostgreSQLSkillStoreOptions, PostgreSQLTenantStore, type PostgreSQLTenantStoreOptions, type PostgreSQLThreadMessageQueueStoreOptions, PostgreSQLThreadStore, type PostgreSQLThreadStoreOptions, PostgreSQLUserStore, type PostgreSQLUserStoreOptions, PostgreSQLUserTenantLinkStore, type PostgreSQLUserTenantLinkStoreOptions, PostgreSQLWorkflowTrackingStore, type PostgreSQLWorkflowTrackingStoreOptions, PostgreSQLWorkspaceStore, type PostgreSQLWorkspaceStoreOptions, PostgresSharedResourceStore, type PostgresSharedResourceStoreOptions, ThreadMessageQueueStore, addAssistantTenantId, addFileContentType, addProjectConfigColumn, addScheduleTenantId, addSkillTenantId, addStepThreadId, addThreadTenantId, alterChannelInstallationsTable, changeAssistantPrimaryKey, changeSkillPrimaryKey, changeThreadPrimaryKey, createA2AApiKeysTable, createAssistantsTable, createChannelBindingsTable, createChannelIdentityMappingTables, createChannelInstallationsTable, createCollectionsTable, createDatabaseConfigsTable, createEvalCasesTable, createEvalProjectsTable, createEvalRunResultsTable, createEvalRunsTable, createEvalSuitesTable, createMcpServerConfigsTable, createMenuItemsTable, createMetricsConfigsTable, createPGVectorStoreProvider, createPgStoreConfig, createProjectsTable, createScheduledTasksTable, createSharedResourcesTable, createSkillsTable, createTenantsTable, createThreadMessageQueueTable, createThreadsTable, createUsersTable, createWorkflowTrackingTables, createWorkspacesTable, evalMigrations, mapRowToRunStep, mapRowToWorkflowRun, safeParse };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { Pool, PoolConfig, PoolClient } from 'pg';
|
|
2
2
|
export { Pool, PoolConfig } from 'pg';
|
|
3
|
-
import { ThreadStore, Thread, CreateThreadRequest, AssistantStore, Assistant, CreateAssistantRequest, DatabaseConfigStore, DatabaseConfigEntry, CreateDatabaseConfigRequest, UpdateDatabaseConfigRequest, MetricsServerConfigStore, MetricsServerConfigEntry, CreateMetricsServerConfigRequest, UpdateMetricsServerConfigRequest, McpServerConfigStore, McpServerConfigEntry, CreateMcpServerConfigRequest, UpdateMcpServerConfigRequest, WorkspaceStore, Workspace, CreateWorkspaceRequest, UpdateWorkspaceRequest, ProjectStore, Project, CreateProjectRequest, UpdateProjectRequest, UserStore, User, CreateUserRequest, UpdateUserRequest, TenantStore, Tenant, CreateTenantRequest, UpdateTenantRequest, UserTenantLinkStore, UserTenantLink, CreateUserTenantLinkRequest, UpdateUserTenantLinkRequest, WorkflowTrackingStore, CreateWorkflowRunRequest, WorkflowRun, UpdateWorkflowRunRequest, CreateRunStepRequest, RunStep, UpdateRunStepRequest, StepType, EvalStore, EvalProject, CreateEvalProjectRequest, EvalSuite, CreateEvalSuiteRequest, EvalCase, CreateEvalCaseRequest, EvalRun, CreateEvalRunRequest, EvalRunResult, EvalProjectReport, BindingRegistry, Binding, CreateBindingInput, ChannelInstallationStore, ChannelInstallation, ChannelInstallationType, CreateChannelInstallationRequest, UpdateChannelInstallationRequest, A2AApiKeyStore, A2AApiKeyRecord, CreateA2AApiKeyInput, A2AApiKeyEntry, ScheduleStorage, ScheduledTaskDefinition, ScheduledTaskStatus, ScheduleExecutionType, TaskStore, CreateTaskRequest, TaskItem, TaskListFilter, UpdateTaskRequest, MenuRegistry, MenuItem, CreateMenuItemInput, UpdateMenuItemInput, SharedResourceStore, ShareRecord, SkillStore, Skill, CreateSkillRequest } from '@axiom-lattice/protocols';
|
|
3
|
+
import { ThreadStore, Thread, CreateThreadRequest, AssistantStore, Assistant, CreateAssistantRequest, DatabaseConfigStore, DatabaseConfigEntry, CreateDatabaseConfigRequest, UpdateDatabaseConfigRequest, MetricsServerConfigStore, MetricsServerConfigEntry, CreateMetricsServerConfigRequest, UpdateMetricsServerConfigRequest, McpServerConfigStore, McpServerConfigEntry, CreateMcpServerConfigRequest, UpdateMcpServerConfigRequest, WorkspaceStore, Workspace, CreateWorkspaceRequest, UpdateWorkspaceRequest, ProjectStore, Project, CreateProjectRequest, UpdateProjectRequest, UserStore, User, CreateUserRequest, UpdateUserRequest, TenantStore, Tenant, CreateTenantRequest, UpdateTenantRequest, UserTenantLinkStore, UserTenantLink, CreateUserTenantLinkRequest, UpdateUserTenantLinkRequest, WorkflowTrackingStore, CreateWorkflowRunRequest, WorkflowRun, UpdateWorkflowRunRequest, CreateRunStepRequest, RunStep, UpdateRunStepRequest, StepType, EvalStore, EvalProject, CreateEvalProjectRequest, EvalSuite, CreateEvalSuiteRequest, EvalCase, CreateEvalCaseRequest, EvalRun, CreateEvalRunRequest, EvalRunResult, EvalProjectReport, BindingRegistry, Binding, CreateBindingInput, ChannelInstallationStore, ChannelInstallation, ChannelInstallationType, CreateChannelInstallationRequest, UpdateChannelInstallationRequest, A2AApiKeyStore, A2AApiKeyRecord, CreateA2AApiKeyInput, A2AApiKeyEntry, ScheduleStorage, ScheduledTaskDefinition, ScheduledTaskStatus, ScheduleExecutionType, TaskStore, CreateTaskRequest, TaskItem, TaskListFilter, UpdateTaskRequest, MenuRegistry, MenuItem, CreateMenuItemInput, UpdateMenuItemInput, SharedResourceStore, ShareRecord, CollectionStore, Collection, CreateCollectionRequest, UpdateCollectionRequest, VectorStoreProvider, VectorStoreCreateParams, SkillStore, Skill, CreateSkillRequest } from '@axiom-lattice/protocols';
|
|
4
4
|
export { Assistant, AssistantStore, Binding, BindingRegistry, ChannelInstallation, ChannelInstallationStore, CreateAssistantRequest, CreateBindingInput, CreateChannelInstallationRequest, CreateDatabaseConfigRequest, CreateEvalCaseRequest, CreateEvalProjectRequest, CreateEvalRunRequest, CreateEvalSuiteRequest, CreateMcpServerConfigRequest, CreateMenuItemInput, CreateMetricsServerConfigRequest, CreateProjectRequest, CreateRunStepRequest, CreateShareRequest, CreateSkillRequest, CreateTenantRequest, CreateThreadRequest, CreateUserRequest, CreateUserTenantLinkRequest, CreateWorkflowRunRequest, CreateWorkspaceRequest, DatabaseConfig, DatabaseConfigEntry, DatabaseConfigStore, DatabaseType, EvalCase, EvalProject, EvalProjectReport, EvalRun, EvalRunResult, EvalStore, EvalSuite, LarkChannelInstallationConfig, McpServerConfigEntry, McpServerConfigStore, MenuItem, MenuRegistry, MetricsServerConfig, MetricsServerConfigEntry, MetricsServerConfigStore, Project, ProjectStore, ResourceAddress, RunStep, ScheduleExecutionType, ScheduleStorage, ScheduledTaskDefinition, ScheduledTaskStatus, ShareRecord, ShareResult, ShareVisibility, SharedResourceStore, Skill, SkillStore, StorageType, Tenant, TenantStatus, TenantStore, Thread, ThreadStore, UpdateChannelInstallationRequest, UpdateDatabaseConfigRequest, UpdateMcpServerConfigRequest, UpdateMetricsServerConfigRequest, UpdateProjectRequest, UpdateRunStepRequest, UpdateTenantRequest, UpdateUserRequest, UpdateUserTenantLinkRequest, UpdateWorkflowRunRequest, UpdateWorkspaceRequest, User, UserStore, UserTenantLink, UserTenantLinkStore, UserTenantRole, WorkflowRun, WorkflowTrackingStore, Workspace, WorkspaceStore } from '@axiom-lattice/protocols';
|
|
5
5
|
import { IMessageQueueStore, AddMessageParams, PendingMessage, ThreadInfo } from '@axiom-lattice/core';
|
|
6
6
|
export { AddMessageParams, PendingMessage, ThreadInfo } from '@axiom-lattice/core';
|
|
7
7
|
import { PostgresSaver } from '@langchain/langgraph-checkpoint-postgres';
|
|
8
|
+
import { DocumentInterface } from '@langchain/core/documents';
|
|
8
9
|
|
|
9
10
|
/**
|
|
10
11
|
* PostgreSQL implementation of ThreadStore
|
|
@@ -1231,6 +1232,61 @@ declare class PostgresSharedResourceStore implements SharedResourceStore {
|
|
|
1231
1232
|
private _mapRow;
|
|
1232
1233
|
}
|
|
1233
1234
|
|
|
1235
|
+
/**
|
|
1236
|
+
* PostgreSQL implementation of CollectionStore with tenant isolation
|
|
1237
|
+
*/
|
|
1238
|
+
|
|
1239
|
+
interface PostgreSQLCollectionStoreOptions {
|
|
1240
|
+
pool?: Pool;
|
|
1241
|
+
poolConfig?: string | PoolConfig;
|
|
1242
|
+
autoMigrate?: boolean;
|
|
1243
|
+
}
|
|
1244
|
+
declare class PostgreSQLCollectionStore implements CollectionStore {
|
|
1245
|
+
private pool;
|
|
1246
|
+
private initialized;
|
|
1247
|
+
private ownsPool;
|
|
1248
|
+
private initPromise;
|
|
1249
|
+
constructor(options: PostgreSQLCollectionStoreOptions);
|
|
1250
|
+
initialize(): Promise<void>;
|
|
1251
|
+
private ensureInit;
|
|
1252
|
+
getAllCollections(tenantId: string): Promise<Collection[]>;
|
|
1253
|
+
getCollectionByName(tenantId: string, name: string): Promise<Collection | null>;
|
|
1254
|
+
createCollection(tenantId: string, data: CreateCollectionRequest): Promise<Collection>;
|
|
1255
|
+
updateCollection(tenantId: string, name: string, updates: UpdateCollectionRequest): Promise<Collection | null>;
|
|
1256
|
+
deleteCollection(tenantId: string, name: string): Promise<boolean>;
|
|
1257
|
+
dispose(): Promise<void>;
|
|
1258
|
+
private rowToCollection;
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
/**
|
|
1262
|
+
* PGVectorStoreProvider
|
|
1263
|
+
*
|
|
1264
|
+
* VectorStoreProvider implementation using PostgreSQL with pgvector extension.
|
|
1265
|
+
* Each created VectorStore maps to a separate table with the vector column.
|
|
1266
|
+
*/
|
|
1267
|
+
|
|
1268
|
+
declare class PGVectorStoreProvider implements VectorStoreProvider {
|
|
1269
|
+
private pool;
|
|
1270
|
+
private connectionString;
|
|
1271
|
+
constructor(pool: Pool, connectionString: string);
|
|
1272
|
+
create(params: VectorStoreCreateParams): Promise<any>;
|
|
1273
|
+
getEntryCount(tableName: string): Promise<number>;
|
|
1274
|
+
listEntries(tableName: string): Promise<DocumentInterface[]>;
|
|
1275
|
+
dropTable(tableName: string): Promise<void>;
|
|
1276
|
+
dispose(_name: string): Promise<void>;
|
|
1277
|
+
}
|
|
1278
|
+
/**
|
|
1279
|
+
* Create a PGVectorStoreProvider from a connection string.
|
|
1280
|
+
* Creates its own Pool — call pool.end() to clean up.
|
|
1281
|
+
*
|
|
1282
|
+
* @param connectionString PostgreSQL connection string
|
|
1283
|
+
* @returns PGVectorStoreProvider instance
|
|
1284
|
+
*/
|
|
1285
|
+
declare function createPGVectorStoreProvider(connectionString: string): {
|
|
1286
|
+
provider: PGVectorStoreProvider;
|
|
1287
|
+
pool: Pool;
|
|
1288
|
+
};
|
|
1289
|
+
|
|
1234
1290
|
declare function createPgStoreConfig(connectionString: string): Promise<{
|
|
1235
1291
|
workspace: PostgreSQLWorkspaceStore;
|
|
1236
1292
|
project: PostgreSQLProjectStore;
|
|
@@ -1252,6 +1308,8 @@ declare function createPgStoreConfig(connectionString: string): Promise<{
|
|
|
1252
1308
|
schedule: PostgreSQLScheduleStorage;
|
|
1253
1309
|
menu: MenuStore;
|
|
1254
1310
|
sharedResource: PostgresSharedResourceStore;
|
|
1311
|
+
collection: PostgreSQLCollectionStore;
|
|
1312
|
+
vectorStoreProvider: PGVectorStoreProvider;
|
|
1255
1313
|
checkpoint: PostgresSaver;
|
|
1256
1314
|
}>;
|
|
1257
1315
|
|
|
@@ -1712,4 +1770,10 @@ declare const createMenuItemsTable: Migration;
|
|
|
1712
1770
|
|
|
1713
1771
|
declare const addFileContentType: Migration;
|
|
1714
1772
|
|
|
1715
|
-
|
|
1773
|
+
/**
|
|
1774
|
+
* Collection table migrations
|
|
1775
|
+
*/
|
|
1776
|
+
|
|
1777
|
+
declare const createCollectionsTable: Migration;
|
|
1778
|
+
|
|
1779
|
+
export { ChannelBindingStore, type ChannelBindingStoreOptions, type ChannelIdentityMapping, ChannelIdentityMappingStore, type ChannelIdentityMappingStoreOptions, type CreateChannelIdentityMappingInput, MenuStore, type MenuStoreOptions, type Migration, MigrationManager, PGVectorStoreProvider, PostgreSQLA2AApiKeyStore, type PostgreSQLA2AApiKeyStoreOptions, PostgreSQLAssistantStore, type PostgreSQLAssistantStoreOptions, PostgreSQLChannelInstallationStore, type PostgreSQLChannelInstallationStoreOptions, PostgreSQLCollectionStore, type PostgreSQLCollectionStoreOptions, PostgreSQLDatabaseConfigStore, type PostgreSQLDatabaseConfigStoreOptions, PostgreSQLEvalStore, type PostgreSQLEvalStoreOptions, PostgreSQLMcpServerConfigStore, type PostgreSQLMcpServerConfigStoreOptions, PostgreSQLMetricsServerConfigStore, type PostgreSQLMetricsServerConfigStoreOptions, PostgreSQLProjectStore, type PostgreSQLProjectStoreOptions, PostgreSQLScheduleStorage, type PostgreSQLScheduleStorageOptions, PostgreSQLSkillStore, type PostgreSQLSkillStoreOptions, PostgreSQLTenantStore, type PostgreSQLTenantStoreOptions, type PostgreSQLThreadMessageQueueStoreOptions, PostgreSQLThreadStore, type PostgreSQLThreadStoreOptions, PostgreSQLUserStore, type PostgreSQLUserStoreOptions, PostgreSQLUserTenantLinkStore, type PostgreSQLUserTenantLinkStoreOptions, PostgreSQLWorkflowTrackingStore, type PostgreSQLWorkflowTrackingStoreOptions, PostgreSQLWorkspaceStore, type PostgreSQLWorkspaceStoreOptions, PostgresSharedResourceStore, type PostgresSharedResourceStoreOptions, ThreadMessageQueueStore, addAssistantTenantId, addFileContentType, addProjectConfigColumn, addScheduleTenantId, addSkillTenantId, addStepThreadId, addThreadTenantId, alterChannelInstallationsTable, changeAssistantPrimaryKey, changeSkillPrimaryKey, changeThreadPrimaryKey, createA2AApiKeysTable, createAssistantsTable, createChannelBindingsTable, createChannelIdentityMappingTables, createChannelInstallationsTable, createCollectionsTable, createDatabaseConfigsTable, createEvalCasesTable, createEvalProjectsTable, createEvalRunResultsTable, createEvalRunsTable, createEvalSuitesTable, createMcpServerConfigsTable, createMenuItemsTable, createMetricsConfigsTable, createPGVectorStoreProvider, createPgStoreConfig, createProjectsTable, createScheduledTasksTable, createSharedResourcesTable, createSkillsTable, createTenantsTable, createThreadMessageQueueTable, createThreadsTable, createUsersTable, createWorkflowTrackingTables, createWorkspacesTable, evalMigrations, mapRowToRunStep, mapRowToWorkflowRun, safeParse };
|