@feltdb/core 0.6.9 → 0.6.11

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.
Files changed (122) hide show
  1. package/dist/cli/application-lifecycle.js +112 -0
  2. package/dist/cli/application.js +10 -0
  3. package/dist/cli/commands.js +407 -119
  4. package/dist/cli/development-session.js +54 -0
  5. package/dist/cli/index.js +1 -1
  6. package/dist/cli/workspace-integration.js +146 -20
  7. package/dist/collection.d.ts +110 -2
  8. package/dist/collection.d.ts.map +1 -1
  9. package/dist/collection.js +228 -3
  10. package/dist/create/cli.js +4 -2
  11. package/dist/create/create.js +42 -6
  12. package/dist/create/frameworks.js +18 -0
  13. package/dist/create/package-versions.js +1 -1
  14. package/dist/create/server-source/crates/feltdb/src/bin/feltdb_node.rs +408 -178
  15. package/dist/create/server-source/crates/feltdb/src/lib.rs +49 -5
  16. package/dist/create/server-source/crates/feltdb/src/multi_operation_transaction.rs +659 -0
  17. package/dist/create/server-source/crates/feltdb/src/p1_application_atomicity.rs +285 -0
  18. package/dist/create/server-source/crates/feltdb/src/p1_atomicity_acceptance.rs +582 -0
  19. package/dist/create/server-source/crates/feltdb-server/src/main.rs +141 -0
  20. package/dist/create/workspace-initialization.js +4 -5
  21. package/dist/db.d.ts +63 -1
  22. package/dist/db.d.ts.map +1 -1
  23. package/dist/db.js +145 -4
  24. package/dist/development-runtime-bridge.d.ts +60 -0
  25. package/dist/development-runtime-bridge.d.ts.map +1 -0
  26. package/dist/development-runtime-bridge.js +171 -0
  27. package/dist/embedded-transaction.d.ts +77 -0
  28. package/dist/embedded-transaction.d.ts.map +1 -0
  29. package/dist/embedded-transaction.js +102 -0
  30. package/dist/feltdb.d.ts +49 -1
  31. package/dist/feltdb.d.ts.map +1 -1
  32. package/dist/file-db.d.ts +33 -0
  33. package/dist/file-db.d.ts.map +1 -1
  34. package/dist/file-db.js +128 -4
  35. package/dist/freshness.d.ts +119 -0
  36. package/dist/freshness.d.ts.map +1 -0
  37. package/dist/freshness.js +115 -0
  38. package/dist/http-db.d.ts +48 -0
  39. package/dist/http-db.d.ts.map +1 -1
  40. package/dist/http-db.js +77 -1
  41. package/dist/index-backend.d.ts +8 -0
  42. package/dist/index-backend.d.ts.map +1 -1
  43. package/dist/index-backend.js +13 -0
  44. package/dist/index-core.d.ts +80 -0
  45. package/dist/index-core.d.ts.map +1 -0
  46. package/dist/index-core.js +74 -0
  47. package/dist/index-manager.d.ts +11 -0
  48. package/dist/index-manager.d.ts.map +1 -1
  49. package/dist/index-manager.js +30 -13
  50. package/dist/index-types.d.ts +17 -0
  51. package/dist/index-types.d.ts.map +1 -1
  52. package/dist/index.browser.d.ts +14 -0
  53. package/dist/index.browser.d.ts.map +1 -0
  54. package/dist/index.browser.js +13 -0
  55. package/dist/index.d.ts +8 -59
  56. package/dist/index.d.ts.map +1 -1
  57. package/dist/index.js +11 -54
  58. package/dist/indexeddb-db.d.ts +32 -0
  59. package/dist/indexeddb-db.d.ts.map +1 -1
  60. package/dist/indexeddb-db.js +151 -1
  61. package/dist/memory-db.d.ts +26 -0
  62. package/dist/memory-db.d.ts.map +1 -1
  63. package/dist/memory-db.js +86 -0
  64. package/dist/runtime-registry.d.ts +32 -0
  65. package/dist/runtime-registry.d.ts.map +1 -0
  66. package/dist/runtime-registry.js +38 -0
  67. package/dist/studio/app.d.ts +2 -1
  68. package/dist/studio/app.d.ts.map +1 -1
  69. package/dist/studio/components/StateExplorer.d.ts +2 -1
  70. package/dist/studio/components/StateExplorer.d.ts.map +1 -1
  71. package/dist/studio/components/index.js +1 -1
  72. package/dist/studio/{components-9kDSWiGL.js → components-C5p2TfIU.js} +25 -14
  73. package/dist/studio/index.js +234 -160
  74. package/dist/studio-app/assets/{feltdb_wasm-B4wq4mqp.js → feltdb_wasm-CJv3wHzi.js} +1 -1
  75. package/dist/studio-app/assets/feltdb_wasm_bg-C8TG8r2n.wasm +0 -0
  76. package/dist/studio-app/assets/index-DospFFYE.js +28 -0
  77. package/dist/studio-app/index.html +1 -1
  78. package/dist/transaction.d.ts +98 -0
  79. package/dist/transaction.d.ts.map +1 -0
  80. package/dist/transaction.js +86 -0
  81. package/dist/wasm/feltdb_wasm_bg.wasm +0 -0
  82. package/dist/workspace/browser.d.ts +22 -0
  83. package/dist/workspace/browser.d.ts.map +1 -0
  84. package/dist/workspace/browser.js +17 -0
  85. package/dist/workspace/development-node.d.ts +16 -0
  86. package/dist/workspace/development-node.d.ts.map +1 -1
  87. package/dist/workspace/development-node.js +85 -1
  88. package/dist/workspace/git-identity.d.ts +35 -0
  89. package/dist/workspace/git-identity.d.ts.map +1 -0
  90. package/dist/workspace/git-identity.js +81 -0
  91. package/dist/workspace/index.d.ts +12 -2
  92. package/dist/workspace/index.d.ts.map +1 -1
  93. package/dist/workspace/index.js +7 -1
  94. package/dist/workspace/investigation-analysis.d.ts +47 -0
  95. package/dist/workspace/investigation-analysis.d.ts.map +1 -0
  96. package/dist/workspace/investigation-analysis.js +181 -0
  97. package/dist/workspace/investigation-lifecycle-manager.d.ts +88 -0
  98. package/dist/workspace/investigation-lifecycle-manager.d.ts.map +1 -0
  99. package/dist/workspace/investigation-lifecycle-manager.js +259 -0
  100. package/dist/workspace/investigation-supervisor.d.ts +100 -0
  101. package/dist/workspace/investigation-supervisor.d.ts.map +1 -0
  102. package/dist/workspace/investigation-supervisor.js +238 -0
  103. package/dist/workspace/runtime-investigation.d.ts +5 -1
  104. package/dist/workspace/runtime-investigation.d.ts.map +1 -1
  105. package/dist/workspace/runtime-investigation.js +50 -21
  106. package/dist/workspace/runtime-observation.d.ts +82 -0
  107. package/dist/workspace/runtime-observation.d.ts.map +1 -0
  108. package/dist/workspace/runtime-observation.js +170 -0
  109. package/dist/workspace/runtime-observer.d.ts +57 -0
  110. package/dist/workspace/runtime-observer.d.ts.map +1 -0
  111. package/dist/workspace/runtime-observer.js +272 -0
  112. package/dist/workspace/workspace-connection.d.ts.map +1 -1
  113. package/dist/workspace/workspace-connection.js +14 -5
  114. package/dist/workspace/workspace-identity.d.ts +1 -1
  115. package/dist/workspace/workspace-identity.d.ts.map +1 -1
  116. package/dist/workspace/workspace-identity.js +4 -4
  117. package/dist/workspace/workspace-types.d.ts +208 -0
  118. package/dist/workspace/workspace-types.d.ts.map +1 -1
  119. package/package.json +12 -4
  120. package/dist/create/server-source/crates/feltdb/src/phase_1c_three_node.rs +0 -523
  121. package/dist/studio-app/assets/feltdb_wasm_bg-Ceyi7l21.wasm +0 -0
  122. package/dist/studio-app/assets/index-BF45M757.js +0 -28
@@ -0,0 +1,80 @@
1
+ /**
2
+ * Shared @feltdb/core surface.
3
+ *
4
+ * Everything here loads in any JavaScript environment. Modules that need Node
5
+ * built-ins are re-exported by `index.ts` (the Node entry) instead, so that a
6
+ * browser can load this graph without hitting a bare `fs` or `path`
7
+ * specifier.
8
+ *
9
+ * Applications import `@feltdb/core`, not this module directly.
10
+ */
11
+ export * from './db.js';
12
+ export * from './collection.js';
13
+ export * from './transaction.js';
14
+ export * from './freshness.js';
15
+ export * from './cell.js';
16
+ export * from './reactive-graph.js';
17
+ export * from './index-types.js';
18
+ export * from './index-backend.js';
19
+ export * from './index-store.js';
20
+ export * from './index-recovery.js';
21
+ export * from './query-planner.js';
22
+ export * from './index-analytics.js';
23
+ export * from './analytics-backend.js';
24
+ export * from './index-dashboard.js';
25
+ export * from './index-monitoring.js';
26
+ export * from './distributed-indexing.js';
27
+ export * from './sharding.js';
28
+ export * from './recovery.js';
29
+ export * from './execution.js';
30
+ export * from './workflow.js';
31
+ export * from './capability.js';
32
+ export * from './memory-db.js';
33
+ export * from './http-db.js';
34
+ export * from './http-client.js';
35
+ export * from './indexeddb-db.js';
36
+ export * from './flowspec.js';
37
+ export * from './application-manifest.js';
38
+ export * from './state-contract.js';
39
+ export * from './revision-recovery.js';
40
+ export * from './operation-admission.js';
41
+ export * from './error-codes.js';
42
+ export * from './authorization.js';
43
+ export * from './sync-contract.js';
44
+ export * from './workload.js';
45
+ export * from './worker.js';
46
+ export * from './artifact.js';
47
+ export * from './bundle.js';
48
+ export * from './release.js';
49
+ export * from './observe.js';
50
+ export * from './provider.js';
51
+ export * from './identity.js';
52
+ export * from './development-runtime-bridge.js';
53
+ export * from './application-contract.js';
54
+ export { ProtocolHandler, type Message, type Operation as ProtocolOperation, type Response as ProtocolResponse, } from './protocol.js';
55
+ /**
56
+ * Agent Runtime APIs
57
+ */
58
+ export * from './agent.js';
59
+ export * from './agent-observation.js';
60
+ export * from './agent-decision.js';
61
+ export * from './agent-memory.js';
62
+ export * from './agent-registry.js';
63
+ export * from './agent-runtime.js';
64
+ /**
65
+ * Telemetry APIs
66
+ */
67
+ export { emitTelemetry, getTelemetryClient } from './telemetry.js';
68
+ export type { TelemetryEvent, TelemetryEventType } from './telemetry.js';
69
+ /**
70
+ * Observability and inspection APIs
71
+ */
72
+ export type { ProvenanceGraph, ProvenanceNode, ProvenanceEdge, ProvenanceEdgeType, RuntimeDiagnostics, } from './db.js';
73
+ /**
74
+ * Development Workspace APIs
75
+ *
76
+ * Shared development state for coordinating Browser, IDE, and Agent clients.
77
+ */
78
+ export * from './workspace/browser.js';
79
+ export * from './development-runtime-bridge.js';
80
+ //# sourceMappingURL=index-core.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index-core.d.ts","sourceRoot":"","sources":["../src/index-core.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,iCAAiC,CAAC;AAChD,cAAc,2BAA2B,CAAC;AAC1C,OAAO,EACL,eAAe,EACf,KAAK,OAAO,EACZ,KAAK,SAAS,IAAI,iBAAiB,EACnC,KAAK,QAAQ,IAAI,gBAAgB,GAClC,MAAM,eAAe,CAAC;AAEvB;;GAEG;AACH,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AAEnC;;GAEG;AACH,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AACnE,YAAY,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAEzE;;GAEG;AACH,YAAY,EACV,eAAe,EACf,cAAc,EACd,cAAc,EACd,kBAAkB,EAClB,kBAAkB,GACnB,MAAM,SAAS,CAAC;AAEjB;;;;GAIG;AACH,cAAc,wBAAwB,CAAC;AACvC,cAAc,iCAAiC,CAAC"}
@@ -0,0 +1,74 @@
1
+ /**
2
+ * Shared @feltdb/core surface.
3
+ *
4
+ * Everything here loads in any JavaScript environment. Modules that need Node
5
+ * built-ins are re-exported by `index.ts` (the Node entry) instead, so that a
6
+ * browser can load this graph without hitting a bare `fs` or `path`
7
+ * specifier.
8
+ *
9
+ * Applications import `@feltdb/core`, not this module directly.
10
+ */
11
+ export * from './db.js';
12
+ export * from './collection.js';
13
+ export * from './transaction.js';
14
+ export * from './freshness.js';
15
+ export * from './cell.js';
16
+ export * from './reactive-graph.js';
17
+ export * from './index-types.js';
18
+ export * from './index-backend.js';
19
+ export * from './index-store.js';
20
+ export * from './index-recovery.js';
21
+ export * from './query-planner.js';
22
+ export * from './index-analytics.js';
23
+ export * from './analytics-backend.js';
24
+ export * from './index-dashboard.js';
25
+ export * from './index-monitoring.js';
26
+ export * from './distributed-indexing.js';
27
+ export * from './sharding.js';
28
+ export * from './recovery.js';
29
+ export * from './execution.js';
30
+ export * from './workflow.js';
31
+ export * from './capability.js';
32
+ export * from './memory-db.js';
33
+ export * from './http-db.js';
34
+ export * from './http-client.js';
35
+ export * from './indexeddb-db.js';
36
+ export * from './flowspec.js';
37
+ export * from './application-manifest.js';
38
+ export * from './state-contract.js';
39
+ export * from './revision-recovery.js';
40
+ export * from './operation-admission.js';
41
+ export * from './error-codes.js';
42
+ export * from './authorization.js';
43
+ export * from './sync-contract.js';
44
+ export * from './workload.js';
45
+ export * from './worker.js';
46
+ export * from './artifact.js';
47
+ export * from './bundle.js';
48
+ export * from './release.js';
49
+ export * from './observe.js';
50
+ export * from './provider.js';
51
+ export * from './identity.js';
52
+ export * from './development-runtime-bridge.js';
53
+ export * from './application-contract.js';
54
+ export { ProtocolHandler, } from './protocol.js';
55
+ /**
56
+ * Agent Runtime APIs
57
+ */
58
+ export * from './agent.js';
59
+ export * from './agent-observation.js';
60
+ export * from './agent-decision.js';
61
+ export * from './agent-memory.js';
62
+ export * from './agent-registry.js';
63
+ export * from './agent-runtime.js';
64
+ /**
65
+ * Telemetry APIs
66
+ */
67
+ export { emitTelemetry, getTelemetryClient } from './telemetry.js';
68
+ /**
69
+ * Development Workspace APIs
70
+ *
71
+ * Shared development state for coordinating Browser, IDE, and Agent clients.
72
+ */
73
+ export * from './workspace/browser.js';
74
+ export * from './development-runtime-bridge.js';
@@ -8,6 +8,17 @@ export declare class IndexManager {
8
8
  private indexes;
9
9
  private config;
10
10
  private indexStats;
11
+ /** Construct an empty index from its configuration. */
12
+ private buildIndex;
13
+ /**
14
+ * Discard every indexed entry while keeping the index definitions.
15
+ *
16
+ * A caller that derives its indexes from a snapshot of the data needs to
17
+ * rebuild them when that snapshot is replaced. Without this, entries for
18
+ * records that are no longer present would linger and a query could return
19
+ * ids the caller can no longer resolve.
20
+ */
21
+ resetEntries(): void;
11
22
  createIndex(config: IndexConfig): void;
12
23
  updateRecord(recordId: string, oldValue: Record<string, any> | null, newValue: Record<string, any>): void;
13
24
  queryIndex(name: string, query: IndexQuery): string[];
@@ -1 +1 @@
1
- {"version":3,"file":"index-manager.d.ts","sourceRoot":"","sources":["../src/index-manager.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAc,UAAU,EAAE,UAAU,EAAe,SAAS,EAAiB,MAAM,kBAAkB,CAAC;AAyN/H,qBAAa,YAAY;IACvB,OAAO,CAAC,OAAO,CAAyE;IACxF,OAAO,CAAC,MAAM,CAAuC;IACrD,OAAO,CAAC,UAAU,CAAsC;IAExD,WAAW,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI;IA8BtC,YAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,IAAI,EAAE,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,IAAI;IA6BzG,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,GAAG,MAAM,EAAE;IA0BrD,WAAW,IAAI,WAAW,EAAE;IAI5B,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,UAAU,GAAG,IAAI;IAIzC,SAAS,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,SAAS;CAwCvC"}
1
+ {"version":3,"file":"index-manager.d.ts","sourceRoot":"","sources":["../src/index-manager.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAc,UAAU,EAAE,UAAU,EAAe,SAAS,EAAiB,MAAM,kBAAkB,CAAC;AAyN/H,qBAAa,YAAY;IACvB,OAAO,CAAC,OAAO,CAAyE;IACxF,OAAO,CAAC,MAAM,CAAuC;IACrD,OAAO,CAAC,UAAU,CAAsC;IAExD,uDAAuD;IACvD,OAAO,CAAC,UAAU;IAOlB;;;;;;;OAOG;IACH,YAAY,IAAI,IAAI;IAQpB,WAAW,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI;IAqBtC,YAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,IAAI,EAAE,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,IAAI;IA6BzG,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,GAAG,MAAM,EAAE;IA0BrD,WAAW,IAAI,WAAW,EAAE;IAI5B,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,UAAU,GAAG,IAAI;IAIzC,SAAS,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,SAAS;CAwCvC"}
@@ -201,23 +201,40 @@ export class IndexManager {
201
201
  this.config = new Map();
202
202
  this.indexStats = new Map();
203
203
  }
204
+ /** Construct an empty index from its configuration. */
205
+ buildIndex(config) {
206
+ if (config.type === 'hash' && config.field)
207
+ return new HashIndex(config.field);
208
+ if (config.type === 'sorted' && config.field)
209
+ return new SortedIndex(config.field);
210
+ if (config.type === 'text' && config.textFields)
211
+ return new TextIndex(config.textFields);
212
+ throw new Error(`Invalid index config: ${JSON.stringify(config)}`);
213
+ }
214
+ /**
215
+ * Discard every indexed entry while keeping the index definitions.
216
+ *
217
+ * A caller that derives its indexes from a snapshot of the data needs to
218
+ * rebuild them when that snapshot is replaced. Without this, entries for
219
+ * records that are no longer present would linger and a query could return
220
+ * ids the caller can no longer resolve.
221
+ */
222
+ resetEntries() {
223
+ for (const [name, config] of this.config) {
224
+ this.indexes.set(name, this.buildIndex(config));
225
+ const stats = this.indexStats.get(name);
226
+ if (stats) {
227
+ stats.entries = 0;
228
+ stats.size = 0;
229
+ stats.lastUpdated = Date.now();
230
+ }
231
+ }
232
+ }
204
233
  createIndex(config) {
205
234
  if (this.indexes.has(config.name)) {
206
235
  throw new Error(`Index ${config.name} already exists`);
207
236
  }
208
- let index;
209
- if (config.type === 'hash' && config.field) {
210
- index = new HashIndex(config.field);
211
- }
212
- else if (config.type === 'sorted' && config.field) {
213
- index = new SortedIndex(config.field);
214
- }
215
- else if (config.type === 'text' && config.textFields) {
216
- index = new TextIndex(config.textFields);
217
- }
218
- else {
219
- throw new Error(`Invalid index config: ${JSON.stringify(config)}`);
220
- }
237
+ const index = this.buildIndex(config);
221
238
  this.indexes.set(config.name, index);
222
239
  this.config.set(config.name, config);
223
240
  this.indexStats.set(config.name, {
@@ -35,6 +35,23 @@ export interface IndexQuery {
35
35
  min?: any;
36
36
  max?: any;
37
37
  }
38
+ /**
39
+ * How a `Collection.find` call was answered.
40
+ *
41
+ * Distinct from `QueryPlan`, which describes the cost-based planner's output.
42
+ * This records what a single collection read actually did.
43
+ */
44
+ export interface CollectionQueryPlan {
45
+ strategy: 'index' | 'scan';
46
+ /** Present when the index was used. */
47
+ indexName?: string;
48
+ field?: string;
49
+ /** Present when a scan was chosen, explaining why. */
50
+ reason?: string;
51
+ /** Records the predicate was applied to. */
52
+ candidatesExamined: number;
53
+ recordsReturned: number;
54
+ }
38
55
  export interface IndexScanPlan {
39
56
  indexName: string;
40
57
  indexType: IndexType;
@@ -1 +1 @@
1
- {"version":3,"file":"index-types.d.ts","sourceRoot":"","sources":["../src/index-types.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,QAAQ,GAAG,UAAU,GAAG,MAAM,CAAC;AAEhE,MAAM,WAAW,WAAW;IAC1B,iCAAiC;IACjC,IAAI,EAAE,MAAM,CAAC;IAEb,mDAAmD;IACnD,IAAI,EAAE,SAAS,CAAC;IAEhB,+CAA+C;IAC/C,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,iDAAiD;IACjD,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAElB,yCAAyC;IACzC,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IAEtB,8CAA8C;IAC9C,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,+CAA+C;IAC/C,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,2BAA2B;IAC3B,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,UAAU,CAAC,CAAC,GAAG,GAAG,EAAE,CAAC,GAAG,GAAG;IAC1C,GAAG,EAAE,CAAC,CAAC;IACP,MAAM,EAAE,CAAC,EAAE,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,UAAU;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,UAAU,GAAG,YAAY,GAAG,OAAO,CAAC;IAC1F,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC;IACf,GAAG,CAAC,EAAE,GAAG,CAAC;IACV,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AAED,MAAM,WAAW,aAAa;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,SAAS,CAAC;IACrB,aAAa,EAAE,MAAM,CAAC;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,OAAO,CAAC;IACrB,kBAAkB,EAAE,OAAO,CAAC;CAC7B;AAED,MAAM,WAAW,SAAS;IACxB,QAAQ,EAAE,WAAW,GAAG,YAAY,GAAG,aAAa,GAAG,YAAY,CAAC;IACpE,OAAO,EAAE,aAAa,EAAE,CAAC;IACzB,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,SAAS,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,WAAW,CAAC,CAAC;IAC5B,SAAS,EAAE,MAAM,EAAE,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,CAAC;IACxB,IAAI,EAAE,MAAM,CAAC;CACd"}
1
+ {"version":3,"file":"index-types.d.ts","sourceRoot":"","sources":["../src/index-types.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,QAAQ,GAAG,UAAU,GAAG,MAAM,CAAC;AAEhE,MAAM,WAAW,WAAW;IAC1B,iCAAiC;IACjC,IAAI,EAAE,MAAM,CAAC;IAEb,mDAAmD;IACnD,IAAI,EAAE,SAAS,CAAC;IAEhB,+CAA+C;IAC/C,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,iDAAiD;IACjD,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAElB,yCAAyC;IACzC,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IAEtB,8CAA8C;IAC9C,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,+CAA+C;IAC/C,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB,2BAA2B;IAC3B,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,UAAU,CAAC,CAAC,GAAG,GAAG,EAAE,CAAC,GAAG,GAAG;IAC1C,GAAG,EAAE,CAAC,CAAC;IACP,MAAM,EAAE,CAAC,EAAE,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,UAAU;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,IAAI,GAAG,UAAU,GAAG,YAAY,GAAG,OAAO,CAAC;IAC1F,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC;IACf,GAAG,CAAC,EAAE,GAAG,CAAC;IACV,GAAG,CAAC,EAAE,GAAG,CAAC;CACX;AAED;;;;;GAKG;AACH,MAAM,WAAW,mBAAmB;IAClC,QAAQ,EAAE,OAAO,GAAG,MAAM,CAAC;IAC3B,uCAAuC;IACvC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,sDAAsD;IACtD,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,4CAA4C;IAC5C,kBAAkB,EAAE,MAAM,CAAC;IAC3B,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,aAAa;IAC5B,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,SAAS,CAAC;IACrB,aAAa,EAAE,MAAM,CAAC;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,OAAO,CAAC;IACrB,kBAAkB,EAAE,OAAO,CAAC;CAC7B;AAED,MAAM,WAAW,SAAS;IACxB,QAAQ,EAAE,WAAW,GAAG,YAAY,GAAG,aAAa,GAAG,YAAY,CAAC;IACpE,OAAO,EAAE,aAAa,EAAE,CAAC;IACzB,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,SAAS,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,WAAW,CAAC,CAAC;IAC5B,SAAS,EAAE,MAAM,EAAE,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,CAAC;IACxB,IAAI,EAAE,MAAM,CAAC;CACd"}
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Browser entry point for @feltdb/core.
3
+ *
4
+ * Selected by the `browser` condition in the package exports map, so a browser
5
+ * application writing `import { createFeltDB } from '@feltdb/core'` gets a
6
+ * module graph with no Node built-ins in it.
7
+ *
8
+ * The browser runtime itself has no Node dependencies, so it is imported
9
+ * directly by `db.ts`. What this entry does is leave the file runtime out of
10
+ * the graph, which is what makes `createFeltDB({ browser: true })` — and
11
+ * therefore `db.transaction()` — reachable through the public package entry.
12
+ */
13
+ export * from './index-core.js';
14
+ //# sourceMappingURL=index.browser.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.browser.d.ts","sourceRoot":"","sources":["../src/index.browser.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,cAAc,iBAAiB,CAAC"}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Browser entry point for @feltdb/core.
3
+ *
4
+ * Selected by the `browser` condition in the package exports map, so a browser
5
+ * application writing `import { createFeltDB } from '@feltdb/core'` gets a
6
+ * module graph with no Node built-ins in it.
7
+ *
8
+ * The browser runtime itself has no Node dependencies, so it is imported
9
+ * directly by `db.ts`. What this entry does is leave the file runtime out of
10
+ * the graph, which is what makes `createFeltDB({ browser: true })` — and
11
+ * therefore `db.transaction()` — reachable through the public package entry.
12
+ */
13
+ export * from './index-core.js';
package/dist/index.d.ts CHANGED
@@ -4,71 +4,20 @@
4
4
  * The primary interface for developers using FeltDB.
5
5
  * Provides a simple, state-first API for data persistence,
6
6
  * reactivity, and distributed operations.
7
+ *
8
+ * This is the Node entry point. It adds the runtimes and workspace tooling
9
+ * that need Node built-ins on top of the shared surface in `index-core.ts`.
10
+ * Browsers resolve `index.browser.ts` instead, through the package exports
11
+ * map, so that a bare `fs` import never enters a browser module graph.
7
12
  */
8
- export * from './db.js';
9
- export * from './collection.js';
10
- export * from './cell.js';
11
- export * from './reactive-graph.js';
12
- export * from './index-types.js';
13
- export * from './index-backend.js';
14
- export * from './index-store.js';
15
- export * from './index-recovery.js';
16
- export * from './query-planner.js';
17
- export * from './index-analytics.js';
18
- export * from './analytics-backend.js';
19
- export * from './index-dashboard.js';
20
- export * from './index-monitoring.js';
21
- export * from './distributed-indexing.js';
22
- export * from './sharding.js';
23
- export * from './recovery.js';
24
- export * from './execution.js';
25
- export * from './workflow.js';
26
- export * from './capability.js';
27
- export * from './memory-db.js';
28
- export * from './http-db.js';
29
- export * from './http-client.js';
30
- export * from './indexeddb-db.js';
13
+ export * from './index-core.js';
31
14
  export * from './file-db.js';
32
- export * from './flowspec.js';
33
- export * from './application-manifest.js';
34
- export * from './state-contract.js';
35
- export * from './revision-recovery.js';
36
- export * from './operation-admission.js';
37
- export * from './error-codes.js';
38
- export * from './authorization.js';
39
- export * from './sync-contract.js';
40
- export * from './workload.js';
41
- export * from './worker.js';
42
- export * from './artifact.js';
43
- export * from './bundle.js';
44
- export * from './release.js';
45
- export * from './observe.js';
46
- export * from './provider.js';
47
- export * from './identity.js';
48
- export * from './application-contract.js';
49
- export { ProtocolHandler, type Message, type Operation as ProtocolOperation, type Response as ProtocolResponse, } from './protocol.js';
50
- /**
51
- * Agent Runtime APIs
52
- */
53
- export * from './agent.js';
54
- export * from './agent-observation.js';
55
- export * from './agent-decision.js';
56
- export * from './agent-memory.js';
57
- export * from './agent-registry.js';
58
- export * from './agent-runtime.js';
59
- /**
60
- * Telemetry APIs
61
- */
62
- export { emitTelemetry, getTelemetryClient } from './telemetry.js';
63
- export type { TelemetryEvent, TelemetryEventType } from './telemetry.js';
64
- /**
65
- * Observability and inspection APIs
66
- */
67
- export type { ProvenanceGraph, ProvenanceNode, ProvenanceEdge, ProvenanceEdgeType, RuntimeDiagnostics, } from './db.js';
68
15
  /**
69
16
  * Development Workspace APIs
70
17
  *
71
18
  * Shared development state for coordinating Browser, IDE, and Agent clients.
19
+ * The Node-only pieces (durable investigation store, supervisor, local
20
+ * development authority, Git inspection) are available from this entry only.
72
21
  */
73
22
  export * from './workspace/index.js';
74
23
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,cAAc,SAAS,CAAC;AACxB,cAAc,iBAAiB,CAAC;AAChC,cAAc,WAAW,CAAC;AAC1B,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC;AACvC,cAAc,sBAAsB,CAAC;AACrC,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,2BAA2B,CAAC;AAC1C,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,eAAe,CAAC;AAC9B,cAAc,2BAA2B,CAAC;AAC1C,OAAO,EACL,eAAe,EACf,KAAK,OAAO,EACZ,KAAK,SAAS,IAAI,iBAAiB,EACnC,KAAK,QAAQ,IAAI,gBAAgB,GAClC,MAAM,eAAe,CAAC;AAEvB;;GAEG;AACH,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AAEnC;;GAEG;AACH,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AACnE,YAAY,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAEzE;;GAEG;AACH,YAAY,EACV,eAAe,EACf,cAAc,EACd,cAAc,EACd,kBAAkB,EAClB,kBAAkB,GACnB,MAAM,SAAS,CAAC;AAEjB;;;;GAIG;AACH,cAAc,sBAAsB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAOH,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAE7B;;;;;;GAMG;AACH,cAAc,sBAAsB,CAAC"}
package/dist/index.js CHANGED
@@ -4,65 +4,22 @@
4
4
  * The primary interface for developers using FeltDB.
5
5
  * Provides a simple, state-first API for data persistence,
6
6
  * reactivity, and distributed operations.
7
+ *
8
+ * This is the Node entry point. It adds the runtimes and workspace tooling
9
+ * that need Node built-ins on top of the shared surface in `index-core.ts`.
10
+ * Browsers resolve `index.browser.ts` instead, through the package exports
11
+ * map, so that a bare `fs` import never enters a browser module graph.
7
12
  */
8
- export * from './db.js';
9
- export * from './collection.js';
10
- export * from './cell.js';
11
- export * from './reactive-graph.js';
12
- export * from './index-types.js';
13
- export * from './index-backend.js';
14
- export * from './index-store.js';
15
- export * from './index-recovery.js';
16
- export * from './query-planner.js';
17
- export * from './index-analytics.js';
18
- export * from './analytics-backend.js';
19
- export * from './index-dashboard.js';
20
- export * from './index-monitoring.js';
21
- export * from './distributed-indexing.js';
22
- export * from './sharding.js';
23
- export * from './recovery.js';
24
- export * from './execution.js';
25
- export * from './workflow.js';
26
- export * from './capability.js';
27
- export * from './memory-db.js';
28
- export * from './http-db.js';
29
- export * from './http-client.js';
30
- export * from './indexeddb-db.js';
13
+ import { registerRuntime } from './runtime-registry.js';
14
+ import { FileJsDb } from './file-db.js';
15
+ registerRuntime('file', path => new FileJsDb(path));
16
+ export * from './index-core.js';
31
17
  export * from './file-db.js';
32
- export * from './flowspec.js';
33
- export * from './application-manifest.js';
34
- export * from './state-contract.js';
35
- export * from './revision-recovery.js';
36
- export * from './operation-admission.js';
37
- export * from './error-codes.js';
38
- export * from './authorization.js';
39
- export * from './sync-contract.js';
40
- export * from './workload.js';
41
- export * from './worker.js';
42
- export * from './artifact.js';
43
- export * from './bundle.js';
44
- export * from './release.js';
45
- export * from './observe.js';
46
- export * from './provider.js';
47
- export * from './identity.js';
48
- export * from './application-contract.js';
49
- export { ProtocolHandler, } from './protocol.js';
50
- /**
51
- * Agent Runtime APIs
52
- */
53
- export * from './agent.js';
54
- export * from './agent-observation.js';
55
- export * from './agent-decision.js';
56
- export * from './agent-memory.js';
57
- export * from './agent-registry.js';
58
- export * from './agent-runtime.js';
59
- /**
60
- * Telemetry APIs
61
- */
62
- export { emitTelemetry, getTelemetryClient } from './telemetry.js';
63
18
  /**
64
19
  * Development Workspace APIs
65
20
  *
66
21
  * Shared development state for coordinating Browser, IDE, and Agent clients.
22
+ * The Node-only pieces (durable investigation store, supervisor, local
23
+ * development authority, Git inspection) are available from this entry only.
67
24
  */
68
25
  export * from './workspace/index.js';
@@ -1,4 +1,6 @@
1
1
  import type { JsDb } from './feltdb.js';
2
+ import { type FreshnessCapability, type Revision } from './freshness.js';
3
+ import type { AtomicTransactionRequest, AtomicTransactionResult } from './transaction.js';
2
4
  interface JsResult {
3
5
  success: boolean;
4
6
  data?: string;
@@ -38,6 +40,15 @@ export declare class IndexedDbJsDb implements JsDb {
38
40
  insert(key: string, value: string): Promise<JsResult>;
39
41
  update(key: string, value: string): Promise<JsResult>;
40
42
  delete(key: string): Promise<JsResult>;
43
+ /**
44
+ * Commit several operations atomically and durably.
45
+ *
46
+ * Reads, precondition checks, and writes all happen inside a single
47
+ * IndexedDB readwrite transaction, which is the browser's own atomic commit
48
+ * boundary. If any step fails the transaction aborts and nothing is written,
49
+ * and the promise resolves only after the transaction has committed.
50
+ */
51
+ commit_transaction(request: AtomicTransactionRequest): Promise<AtomicTransactionResult>;
41
52
  cas(params: {
42
53
  key: string;
43
54
  expectedVersion: number;
@@ -70,6 +81,27 @@ export declare class IndexedDbJsDb implements JsDb {
70
81
  acknowledge_peer_operations(): JsResult;
71
82
  instance_id(): string;
72
83
  get_sequence(): number;
84
+ /**
85
+ * IndexedDB is the serialization authority for this database.
86
+ *
87
+ * The `changes` store is `autoIncrement`, so its key is assigned by the
88
+ * storage engine inside the same readwrite transaction that writes the record,
89
+ * and the browser serializes readwrite transactions on an object store across
90
+ * tabs. A second tab's commit therefore advances the same durable counter,
91
+ * with no coordination code of our own.
92
+ *
93
+ * Note what is *not* used here: `this.sequence` counts what this handle wrote
94
+ * and would miss every other tab. The durable key is the authoritative value.
95
+ */
96
+ freshness(): FreshnessCapability;
97
+ /**
98
+ * The highest durable `changes` key.
99
+ *
100
+ * Read from the store rather than from memory so a write committed by another
101
+ * tab is included. An empty store is revision 0, which is a real value: it
102
+ * means nothing has been committed, and a cache built at 0 is still current.
103
+ */
104
+ revision(): Promise<Revision>;
73
105
  audit_events(): Promise<ChangeRecord[]>;
74
106
  export_operations(sinceSequence: number): Promise<ChangeRecord[]>;
75
107
  apply_remote_operations(operations: ChangeRecord[]): Promise<{
@@ -1 +1 @@
1
- {"version":3,"file":"indexeddb-db.d.ts","sourceRoot":"","sources":["../src/indexeddb-db.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"indexeddb-db.d.ts","sourceRoot":"","sources":["../src/indexeddb-db.ts"],"names":[],"mappings":"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"}