@opengeni/db 0.18.1 → 0.19.0
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/dist/{chunk-YKWJ7QJ2.js → chunk-SZP6KRLC.js} +2123 -1932
- package/dist/chunk-SZP6KRLC.js.map +1 -0
- package/dist/{chunk-T6RSJT6C.js → chunk-XOXEQ7HG.js} +29 -1
- package/dist/chunk-XOXEQ7HG.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1023 -561
- package/dist/index.js.map +1 -1
- package/dist/memory-domain.d.ts +110 -1
- package/dist/memory-governance-schema.d.ts +562 -0
- package/dist/memory-governance.d.ts +41 -0
- package/dist/provision-roles.js +1 -1
- package/dist/runtime-posture.d.ts +2 -2
- package/dist/schema.d.ts +199 -0
- package/dist/schema.js +5 -1
- package/drizzle/0152_hierarchical_memory_foundation.sql +1589 -0
- package/package.json +1 -1
- package/src/index.ts +10 -5
- package/src/memory-domain.ts +360 -1
- package/src/memory-governance-schema.ts +162 -0
- package/src/memory-governance.ts +317 -0
- package/src/provision-roles.ts +24 -0
- package/src/runtime-posture.ts +4 -0
- package/src/schema.ts +40 -2
- package/dist/chunk-T6RSJT6C.js.map +0 -1
- package/dist/chunk-YKWJ7QJ2.js.map +0 -1
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import type { Database } from "./index";
|
|
2
|
+
import { type MemoryOperationPlanInput, type MemoryRevertPlanInput } from "./memory-domain";
|
|
3
|
+
export declare class MemoryGovernanceAuthorityError extends Error {
|
|
4
|
+
readonly name = "MemoryGovernanceAuthorityError";
|
|
5
|
+
}
|
|
6
|
+
export type MemoryGovernanceDirectSubjectAuthority = {
|
|
7
|
+
kind: "subject";
|
|
8
|
+
accountId: string;
|
|
9
|
+
workspaceId: string;
|
|
10
|
+
subjectId: string;
|
|
11
|
+
};
|
|
12
|
+
export type MemoryGovernanceDirectServiceAuthority = {
|
|
13
|
+
kind: "service";
|
|
14
|
+
accountId: string;
|
|
15
|
+
workspaceId: string;
|
|
16
|
+
serviceId: string;
|
|
17
|
+
};
|
|
18
|
+
export type MemoryGovernanceAttemptAuthority = {
|
|
19
|
+
kind: "attempt";
|
|
20
|
+
accountId: string;
|
|
21
|
+
workspaceId: string;
|
|
22
|
+
sessionId: string;
|
|
23
|
+
turnId: string;
|
|
24
|
+
attemptId: string;
|
|
25
|
+
executionGeneration: number;
|
|
26
|
+
};
|
|
27
|
+
export type MemoryGovernanceAuthority = MemoryGovernanceDirectSubjectAuthority | MemoryGovernanceDirectServiceAuthority | MemoryGovernanceAttemptAuthority;
|
|
28
|
+
export declare function applyKnowledgeMemoryOperation(db: Database, input: {
|
|
29
|
+
authority: MemoryGovernanceAuthority;
|
|
30
|
+
plan: MemoryOperationPlanInput;
|
|
31
|
+
}): Promise<{
|
|
32
|
+
eventId: string;
|
|
33
|
+
planHash: string;
|
|
34
|
+
}>;
|
|
35
|
+
export declare function revertKnowledgeMemoryOperation(db: Database, input: {
|
|
36
|
+
authority: MemoryGovernanceAuthority;
|
|
37
|
+
plan: MemoryRevertPlanInput;
|
|
38
|
+
}): Promise<{
|
|
39
|
+
eventId: string;
|
|
40
|
+
planHash: string;
|
|
41
|
+
}>;
|
package/dist/provision-roles.js
CHANGED
|
@@ -4,7 +4,7 @@ import type { Database, RlsStrategy } from "./index";
|
|
|
4
4
|
* FORCE-RLS table is an architectural change: update this list in the same
|
|
5
5
|
* commit as the migration so startup cannot silently accept an unreviewed gap.
|
|
6
6
|
*/
|
|
7
|
-
export declare const FORCE_RLS_TABLES: readonly ["agent_run_states", "api_keys", "audit_events", "billing_customers", "capability_catalog_items", "capability_installations", "codex_capacity_waiters", "codex_credential_leases", "codex_reset_redemption_attempts", "codex_rotation_settings", "codex_subscription_credentials", "composer_drafts", "connections", "credit_ledger_entries", "device_enrollment_requests", "document_bases", "document_chunks", "documents", "enrollments", "file_uploads", "files", "github_installation_repositories", "github_installations", "host_export_config", "host_export_consumers", "host_export_cursor_state", "host_export_dead_letters", "host_export_outbox", "import_batches", "integration_oauth_state_nonces", "knowledge_memories", "machine_metrics_latest", "machine_metrics_series", "model_call_facts", "new_session_drafts", "pack_installations", "preference_registry_events", "preference_registry_preferences", "preference_registry_revisions", "preference_registry_snapshots", "rig_changes", "rig_versions", "rigs", "sandbox_checkpoint_artifacts", "sandbox_lease_holders", "sandbox_leases", "sandbox_pty_sessions", "sandbox_retained_processes", "sandbox_session_envelopes", "sandbox_workspace_mutation_admissions", "sandboxes", "scheduled_task_runs", "scheduled_tasks", "session_attempt_interruptions", "session_command_receipts", "session_events", "session_goals", "session_history_items", "session_human_input_requests", "session_list_snapshots", "session_mcp_servers", "session_pending_tool_calls", "session_pins", "session_recordings", "session_spawn_denials", "session_stream_acknowledgments", "session_system_update_outbox", "session_system_updates", "session_turn_attempts", "session_turns", "session_workflow_wake_outbox", "sessions", "slack_bot_delete_operations", "slack_bot_post_operations", "slack_bot_user_links", "slack_interaction_inbox", "slack_interaction_progress_deliveries", "slack_interactions", "social_connections", "social_posts", "usage_events", "workspace_artifact_events", "workspace_artifact_versions", "workspace_artifacts", "workspace_captures", "workspace_control_events", "workspace_inference_controls", "workspace_instruction_policy_activation_events", "workspace_instruction_policy_heads", "workspace_instruction_policy_revisions", "workspace_model_policies", "workspace_packs", "workspace_session_activity_revisions", "workspace_variable_set_variables", "workspace_variable_sets"];
|
|
7
|
+
export declare const FORCE_RLS_TABLES: readonly ["agent_run_states", "api_keys", "audit_events", "billing_customers", "capability_catalog_items", "capability_installations", "codex_capacity_waiters", "codex_credential_leases", "codex_reset_redemption_attempts", "codex_rotation_settings", "codex_subscription_credentials", "composer_drafts", "connections", "credit_ledger_entries", "device_enrollment_requests", "document_bases", "document_chunks", "documents", "enrollments", "file_uploads", "files", "github_installation_repositories", "github_installations", "host_export_config", "host_export_consumers", "host_export_cursor_state", "host_export_dead_letters", "host_export_outbox", "import_batches", "integration_oauth_state_nonces", "knowledge_memories", "knowledge_memory_lifecycle_events", "knowledge_memory_relationships", "machine_metrics_latest", "machine_metrics_series", "model_call_facts", "new_session_drafts", "pack_installations", "preference_registry_events", "preference_registry_preferences", "preference_registry_revisions", "preference_registry_snapshots", "rig_changes", "rig_versions", "rigs", "sandbox_checkpoint_artifacts", "sandbox_lease_holders", "sandbox_leases", "sandbox_pty_sessions", "sandbox_retained_processes", "sandbox_session_envelopes", "sandbox_workspace_mutation_admissions", "sandboxes", "scheduled_task_runs", "scheduled_tasks", "session_attempt_interruptions", "session_command_receipts", "session_events", "session_goals", "session_history_items", "session_human_input_requests", "session_list_snapshots", "session_mcp_servers", "session_pending_tool_calls", "session_pins", "session_recordings", "session_spawn_denials", "session_stream_acknowledgments", "session_system_update_outbox", "session_system_updates", "session_turn_attempts", "session_turns", "session_workflow_wake_outbox", "sessions", "slack_bot_delete_operations", "slack_bot_post_operations", "slack_bot_user_links", "slack_interaction_inbox", "slack_interaction_progress_deliveries", "slack_interactions", "social_connections", "social_posts", "usage_events", "workspace_artifact_events", "workspace_artifact_versions", "workspace_artifacts", "workspace_captures", "workspace_control_events", "workspace_inference_controls", "workspace_instruction_policy_activation_events", "workspace_instruction_policy_heads", "workspace_instruction_policy_revisions", "workspace_model_policies", "workspace_packs", "workspace_session_activity_revisions", "workspace_variable_set_variables", "workspace_variable_sets"];
|
|
8
8
|
/**
|
|
9
9
|
* Deployment-global and authentication tables used by ordinary API/worker
|
|
10
10
|
* traffic. They intentionally do not carry workspace RLS: their access model
|
|
@@ -18,7 +18,7 @@ export declare const NON_RLS_RUNTIME_TABLES: readonly ["auth_identities", "auth_
|
|
|
18
18
|
*/
|
|
19
19
|
export declare const RUNTIME_FULL_DML_TABLES: readonly ["agent_run_states", "api_keys", "audit_events", "auth_identities", "auth_rate_limits", "auth_sessions", "auth_users", "auth_verifications", "billing_customers", "capability_catalog_items", "capability_installations", "codex_capacity_waiters", "codex_credential_leases", "codex_reset_redemption_attempts", "codex_rotation_settings", "codex_subscription_credentials", "composer_drafts", "connections", "credit_ledger_entries", "device_enrollment_requests", "document_bases", "document_chunks", "documents", "enrollments", "file_uploads", "files", "github_installation_repositories", "github_installations", "import_batches", "integration_oauth_clients", "integration_oauth_state_nonces", "knowledge_memories", "machine_metrics_latest", "machine_metrics_series", "managed_accounts", "model_call_facts", "new_session_drafts", "pack_installations", "rig_changes", "rig_versions", "rigs", "sandbox_checkpoint_artifacts", "sandbox_lease_holders", "sandbox_leases", "sandbox_pty_sessions", "sandbox_retained_processes", "sandbox_session_envelopes", "sandbox_workspace_mutation_admissions", "sandboxes", "scheduled_task_runs", "scheduled_tasks", "session_attempt_interruptions", "session_command_receipts", "session_events", "session_goals", "session_history_items", "session_human_input_requests", "session_list_snapshots", "session_mcp_servers", "session_pending_tool_calls", "session_pins", "session_recordings", "session_stream_acknowledgments", "session_system_update_outbox", "session_system_updates", "session_turn_attempts", "session_turns", "session_workflow_wake_outbox", "sessions", "slack_bot_delete_operations", "slack_bot_post_operations", "slack_bot_user_links", "slack_interaction_inbox", "slack_interaction_progress_deliveries", "slack_interactions", "social_connections", "social_posts", "stripe_webhook_events", "usage_events", "workspace_artifacts", "workspace_captures", "workspace_control_events", "workspace_inference_controls", "workspace_instruction_policy_heads", "workspace_memberships", "workspace_model_policies", "workspace_packs", "workspace_session_activity_revisions", "workspace_variable_set_variables", "workspace_variable_sets", "workspaces"];
|
|
20
20
|
/** Configuration and lifecycle-owned audit rows are read-only at runtime. */
|
|
21
|
-
export declare const RUNTIME_READ_ONLY_TABLES: readonly ["nested_agent_depth_configuration", "preference_registry_events", "preference_registry_snapshots"];
|
|
21
|
+
export declare const RUNTIME_READ_ONLY_TABLES: readonly ["knowledge_memory_lifecycle_events", "knowledge_memory_relationships", "nested_agent_depth_configuration", "preference_registry_events", "preference_registry_snapshots"];
|
|
22
22
|
/** Append-only evidence/revision tables are insertable and queryable, never mutable. */
|
|
23
23
|
export declare const RUNTIME_READ_INSERT_TABLES: readonly ["preference_registry_preferences", "preference_registry_revisions", "session_spawn_denials", "workspace_artifact_events", "workspace_artifact_versions", "workspace_instruction_policy_activation_events", "workspace_instruction_policy_revisions"];
|
|
24
24
|
/**
|
package/dist/schema.d.ts
CHANGED
|
@@ -9542,6 +9542,204 @@ export declare const knowledgeMemories: import("drizzle-orm/pg-core").PgTableWit
|
|
|
9542
9542
|
identity: undefined;
|
|
9543
9543
|
generated: undefined;
|
|
9544
9544
|
}, {}, {}>;
|
|
9545
|
+
scopeType: import("drizzle-orm/pg-core").PgColumn<{
|
|
9546
|
+
name: "scope_type";
|
|
9547
|
+
tableName: "knowledge_memories";
|
|
9548
|
+
dataType: "string";
|
|
9549
|
+
columnType: "PgText";
|
|
9550
|
+
data: string;
|
|
9551
|
+
driverParam: string;
|
|
9552
|
+
notNull: true;
|
|
9553
|
+
hasDefault: true;
|
|
9554
|
+
isPrimaryKey: false;
|
|
9555
|
+
isAutoincrement: false;
|
|
9556
|
+
hasRuntimeDefault: false;
|
|
9557
|
+
enumValues: [string, ...string[]];
|
|
9558
|
+
baseColumn: never;
|
|
9559
|
+
identity: undefined;
|
|
9560
|
+
generated: undefined;
|
|
9561
|
+
}, {}, {}>;
|
|
9562
|
+
scopeSubjectId: import("drizzle-orm/pg-core").PgColumn<{
|
|
9563
|
+
name: "scope_subject_id";
|
|
9564
|
+
tableName: "knowledge_memories";
|
|
9565
|
+
dataType: "string";
|
|
9566
|
+
columnType: "PgText";
|
|
9567
|
+
data: string;
|
|
9568
|
+
driverParam: string;
|
|
9569
|
+
notNull: false;
|
|
9570
|
+
hasDefault: false;
|
|
9571
|
+
isPrimaryKey: false;
|
|
9572
|
+
isAutoincrement: false;
|
|
9573
|
+
hasRuntimeDefault: false;
|
|
9574
|
+
enumValues: [string, ...string[]];
|
|
9575
|
+
baseColumn: never;
|
|
9576
|
+
identity: undefined;
|
|
9577
|
+
generated: undefined;
|
|
9578
|
+
}, {}, {}>;
|
|
9579
|
+
scopeRoleKey: import("drizzle-orm/pg-core").PgColumn<{
|
|
9580
|
+
name: "scope_role_key";
|
|
9581
|
+
tableName: "knowledge_memories";
|
|
9582
|
+
dataType: "string";
|
|
9583
|
+
columnType: "PgText";
|
|
9584
|
+
data: string;
|
|
9585
|
+
driverParam: string;
|
|
9586
|
+
notNull: false;
|
|
9587
|
+
hasDefault: false;
|
|
9588
|
+
isPrimaryKey: false;
|
|
9589
|
+
isAutoincrement: false;
|
|
9590
|
+
hasRuntimeDefault: false;
|
|
9591
|
+
enumValues: [string, ...string[]];
|
|
9592
|
+
baseColumn: never;
|
|
9593
|
+
identity: undefined;
|
|
9594
|
+
generated: undefined;
|
|
9595
|
+
}, {}, {}>;
|
|
9596
|
+
scopeSessionId: import("drizzle-orm/pg-core").PgColumn<{
|
|
9597
|
+
name: "scope_session_id";
|
|
9598
|
+
tableName: "knowledge_memories";
|
|
9599
|
+
dataType: "string";
|
|
9600
|
+
columnType: "PgUUID";
|
|
9601
|
+
data: string;
|
|
9602
|
+
driverParam: string;
|
|
9603
|
+
notNull: false;
|
|
9604
|
+
hasDefault: false;
|
|
9605
|
+
isPrimaryKey: false;
|
|
9606
|
+
isAutoincrement: false;
|
|
9607
|
+
hasRuntimeDefault: false;
|
|
9608
|
+
enumValues: undefined;
|
|
9609
|
+
baseColumn: never;
|
|
9610
|
+
identity: undefined;
|
|
9611
|
+
generated: undefined;
|
|
9612
|
+
}, {}, {}>;
|
|
9613
|
+
namespace: import("drizzle-orm/pg-core").PgColumn<{
|
|
9614
|
+
name: "namespace_key";
|
|
9615
|
+
tableName: "knowledge_memories";
|
|
9616
|
+
dataType: "string";
|
|
9617
|
+
columnType: "PgText";
|
|
9618
|
+
data: string;
|
|
9619
|
+
driverParam: string;
|
|
9620
|
+
notNull: true;
|
|
9621
|
+
hasDefault: true;
|
|
9622
|
+
isPrimaryKey: false;
|
|
9623
|
+
isAutoincrement: false;
|
|
9624
|
+
hasRuntimeDefault: false;
|
|
9625
|
+
enumValues: [string, ...string[]];
|
|
9626
|
+
baseColumn: never;
|
|
9627
|
+
identity: undefined;
|
|
9628
|
+
generated: undefined;
|
|
9629
|
+
}, {}, {}>;
|
|
9630
|
+
labels: import("drizzle-orm/pg-core").PgColumn<{
|
|
9631
|
+
name: "labels";
|
|
9632
|
+
tableName: "knowledge_memories";
|
|
9633
|
+
dataType: "array";
|
|
9634
|
+
columnType: "PgArray";
|
|
9635
|
+
data: string[];
|
|
9636
|
+
driverParam: string | string[];
|
|
9637
|
+
notNull: true;
|
|
9638
|
+
hasDefault: true;
|
|
9639
|
+
isPrimaryKey: false;
|
|
9640
|
+
isAutoincrement: false;
|
|
9641
|
+
hasRuntimeDefault: false;
|
|
9642
|
+
enumValues: [string, ...string[]];
|
|
9643
|
+
baseColumn: import("drizzle-orm").Column<{
|
|
9644
|
+
name: "labels";
|
|
9645
|
+
tableName: "knowledge_memories";
|
|
9646
|
+
dataType: "string";
|
|
9647
|
+
columnType: "PgText";
|
|
9648
|
+
data: string;
|
|
9649
|
+
driverParam: string;
|
|
9650
|
+
notNull: false;
|
|
9651
|
+
hasDefault: false;
|
|
9652
|
+
isPrimaryKey: false;
|
|
9653
|
+
isAutoincrement: false;
|
|
9654
|
+
hasRuntimeDefault: false;
|
|
9655
|
+
enumValues: [string, ...string[]];
|
|
9656
|
+
baseColumn: never;
|
|
9657
|
+
identity: undefined;
|
|
9658
|
+
generated: undefined;
|
|
9659
|
+
}, {}, {}>;
|
|
9660
|
+
identity: undefined;
|
|
9661
|
+
generated: undefined;
|
|
9662
|
+
}, {}, {
|
|
9663
|
+
baseBuilder: import("drizzle-orm/pg-core").PgColumnBuilder<{
|
|
9664
|
+
name: "labels";
|
|
9665
|
+
dataType: 'string';
|
|
9666
|
+
columnType: 'PgText';
|
|
9667
|
+
data: string;
|
|
9668
|
+
enumValues: [string, ...string[]];
|
|
9669
|
+
driverParam: string;
|
|
9670
|
+
}, {}, {}, import("drizzle-orm").ColumnBuilderExtraConfig>;
|
|
9671
|
+
size: undefined;
|
|
9672
|
+
}>;
|
|
9673
|
+
memoryVersion: import("drizzle-orm/pg-core").PgColumn<{
|
|
9674
|
+
name: "memory_version";
|
|
9675
|
+
tableName: "knowledge_memories";
|
|
9676
|
+
dataType: "number";
|
|
9677
|
+
columnType: "PgInteger";
|
|
9678
|
+
data: number;
|
|
9679
|
+
driverParam: string | number;
|
|
9680
|
+
notNull: true;
|
|
9681
|
+
hasDefault: true;
|
|
9682
|
+
isPrimaryKey: false;
|
|
9683
|
+
isAutoincrement: false;
|
|
9684
|
+
hasRuntimeDefault: false;
|
|
9685
|
+
enumValues: undefined;
|
|
9686
|
+
baseColumn: never;
|
|
9687
|
+
identity: undefined;
|
|
9688
|
+
generated: undefined;
|
|
9689
|
+
}, {}, {}>;
|
|
9690
|
+
createdByKind: import("drizzle-orm/pg-core").PgColumn<{
|
|
9691
|
+
name: "created_by_kind";
|
|
9692
|
+
tableName: "knowledge_memories";
|
|
9693
|
+
dataType: "string";
|
|
9694
|
+
columnType: "PgText";
|
|
9695
|
+
data: string;
|
|
9696
|
+
driverParam: string;
|
|
9697
|
+
notNull: true;
|
|
9698
|
+
hasDefault: true;
|
|
9699
|
+
isPrimaryKey: false;
|
|
9700
|
+
isAutoincrement: false;
|
|
9701
|
+
hasRuntimeDefault: false;
|
|
9702
|
+
enumValues: [string, ...string[]];
|
|
9703
|
+
baseColumn: never;
|
|
9704
|
+
identity: undefined;
|
|
9705
|
+
generated: undefined;
|
|
9706
|
+
}, {}, {}>;
|
|
9707
|
+
createdBySubjectId: import("drizzle-orm/pg-core").PgColumn<{
|
|
9708
|
+
name: "created_by_subject_id";
|
|
9709
|
+
tableName: "knowledge_memories";
|
|
9710
|
+
dataType: "string";
|
|
9711
|
+
columnType: "PgText";
|
|
9712
|
+
data: string;
|
|
9713
|
+
driverParam: string;
|
|
9714
|
+
notNull: true;
|
|
9715
|
+
hasDefault: true;
|
|
9716
|
+
isPrimaryKey: false;
|
|
9717
|
+
isAutoincrement: false;
|
|
9718
|
+
hasRuntimeDefault: false;
|
|
9719
|
+
enumValues: [string, ...string[]];
|
|
9720
|
+
baseColumn: never;
|
|
9721
|
+
identity: undefined;
|
|
9722
|
+
generated: undefined;
|
|
9723
|
+
}, {}, {}>;
|
|
9724
|
+
createdByContext: import("drizzle-orm/pg-core").PgColumn<{
|
|
9725
|
+
name: "created_by_context";
|
|
9726
|
+
tableName: "knowledge_memories";
|
|
9727
|
+
dataType: "json";
|
|
9728
|
+
columnType: "PgJsonb";
|
|
9729
|
+
data: Record<string, unknown>;
|
|
9730
|
+
driverParam: unknown;
|
|
9731
|
+
notNull: true;
|
|
9732
|
+
hasDefault: true;
|
|
9733
|
+
isPrimaryKey: false;
|
|
9734
|
+
isAutoincrement: false;
|
|
9735
|
+
hasRuntimeDefault: false;
|
|
9736
|
+
enumValues: undefined;
|
|
9737
|
+
baseColumn: never;
|
|
9738
|
+
identity: undefined;
|
|
9739
|
+
generated: undefined;
|
|
9740
|
+
}, {}, {
|
|
9741
|
+
$type: Record<string, unknown>;
|
|
9742
|
+
}>;
|
|
9545
9743
|
textHash: import("drizzle-orm/pg-core").PgColumn<{
|
|
9546
9744
|
name: "text_hash";
|
|
9547
9745
|
tableName: "knowledge_memories";
|
|
@@ -25413,3 +25611,4 @@ export declare const rigChanges: import("drizzle-orm/pg-core").PgTableWithColumn
|
|
|
25413
25611
|
}>;
|
|
25414
25612
|
export * from "./workspace-instruction-policies-schema";
|
|
25415
25613
|
export * from "./preference-registry-schema";
|
|
25614
|
+
export * from "./memory-governance-schema";
|
package/dist/schema.js
CHANGED
|
@@ -35,6 +35,8 @@ import {
|
|
|
35
35
|
integrationOauthClients,
|
|
36
36
|
integrationOauthStateNonces,
|
|
37
37
|
knowledgeMemories,
|
|
38
|
+
knowledgeMemoryLifecycleEvents,
|
|
39
|
+
knowledgeMemoryRelationships,
|
|
38
40
|
machineMetricsLatest,
|
|
39
41
|
machineMetricsSeries,
|
|
40
42
|
managedAccounts,
|
|
@@ -112,7 +114,7 @@ import {
|
|
|
112
114
|
workspaceVariableSetVariables,
|
|
113
115
|
workspaceVariableSets,
|
|
114
116
|
workspaces
|
|
115
|
-
} from "./chunk-
|
|
117
|
+
} from "./chunk-SZP6KRLC.js";
|
|
116
118
|
import "./chunk-PZ5AY32C.js";
|
|
117
119
|
export {
|
|
118
120
|
agentRunStates,
|
|
@@ -151,6 +153,8 @@ export {
|
|
|
151
153
|
integrationOauthClients,
|
|
152
154
|
integrationOauthStateNonces,
|
|
153
155
|
knowledgeMemories,
|
|
156
|
+
knowledgeMemoryLifecycleEvents,
|
|
157
|
+
knowledgeMemoryRelationships,
|
|
154
158
|
machineMetricsLatest,
|
|
155
159
|
machineMetricsSeries,
|
|
156
160
|
managedAccounts,
|