@remnic/core 9.69.26 → 9.69.27
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/access-admin-ops-surface.d.ts +1 -1
- package/dist/access-authorization-probe.d.ts +1 -1
- package/dist/access-boundary.d.ts +1 -1
- package/dist/access-extraction-force-flush.d.ts +1 -1
- package/dist/access-http-briefing.d.ts +1 -1
- package/dist/access-http-lcm-compaction.d.ts +1 -1
- package/dist/access-http-lifecycle-flush.d.ts +1 -1
- package/dist/access-http-offline-stream.d.ts +1 -1
- package/dist/access-http.d.ts +2 -2
- package/dist/access-lcm-surface.d.ts +1 -1
- package/dist/access-mcp.d.ts +1 -1
- package/dist/access-observe-write-surface.d.ts +1 -1
- package/dist/access-operations.d.ts +6 -6
- package/dist/access-recall-concurrency.d.ts +1 -1
- package/dist/access-recall-response.d.ts +1 -1
- package/dist/access-recall-surface.d.ts +1 -1
- package/dist/access-schema.d.ts +91 -91
- package/dist/access-service-helpers.d.ts +1 -1
- package/dist/access-service.d.ts +1 -1
- package/dist/access-surface-catalog.d.ts +1 -1
- package/dist/{cli-B_YwqoIr.d.ts → cli-DD0P-lu8.d.ts} +1 -1
- package/dist/cli.d.ts +2 -2
- package/dist/deep-recall-http-glue.d.ts +1 -1
- package/dist/deep-recall-mcp-tools.d.ts +1 -1
- package/dist/external-wiki-access.d.ts +1 -1
- package/dist/external-wiki-mcp-tools.d.ts +1 -1
- package/dist/index.d.ts +680 -680
- package/dist/mcp-memory-inspector-app.d.ts +1 -1
- package/dist/memory-subject-cli.d.ts +1 -1
- package/dist/memory-subject.d.ts +1 -1
- package/dist/{public-http-D6d4W8x-.d.ts → public-http-C4i8Opxc.d.ts} +1 -1
- package/dist/schemas.d.ts +176 -176
- package/dist/shared-context/manager.d.ts +6 -6
- package/dist/support-passport/index.d.ts +4 -4
- package/dist/transfer/types.d.ts +78 -78
- package/dist/who-knows-cli.d.ts +1 -1
- package/dist/who-knows.d.ts +1 -1
- package/package.json +2 -2
- package/dist/{access-service-Cv8Rizo0.d.ts → access-service-DWdY9Mlk.d.ts} +64 -64
package/dist/access-schema.d.ts
CHANGED
|
@@ -21,13 +21,13 @@ declare const codingContextSchema: z.ZodNullable<z.ZodObject<{
|
|
|
21
21
|
rootPath: z.ZodString;
|
|
22
22
|
defaultBranch: z.ZodNullable<z.ZodString>;
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
|
-
projectId: string;
|
|
25
24
|
branch: string | null;
|
|
25
|
+
projectId: string;
|
|
26
26
|
defaultBranch: string | null;
|
|
27
27
|
rootPath: string;
|
|
28
28
|
}, {
|
|
29
|
-
projectId: string;
|
|
30
29
|
branch: string | null;
|
|
30
|
+
projectId: string;
|
|
31
31
|
defaultBranch: string | null;
|
|
32
32
|
rootPath: string;
|
|
33
33
|
}>>;
|
|
@@ -62,13 +62,13 @@ declare const recallRequestSchema: z.ZodObject<{
|
|
|
62
62
|
rootPath: z.ZodString;
|
|
63
63
|
defaultBranch: z.ZodNullable<z.ZodString>;
|
|
64
64
|
}, "strip", z.ZodTypeAny, {
|
|
65
|
-
projectId: string;
|
|
66
65
|
branch: string | null;
|
|
66
|
+
projectId: string;
|
|
67
67
|
defaultBranch: string | null;
|
|
68
68
|
rootPath: string;
|
|
69
69
|
}, {
|
|
70
|
-
projectId: string;
|
|
71
70
|
branch: string | null;
|
|
71
|
+
projectId: string;
|
|
72
72
|
defaultBranch: string | null;
|
|
73
73
|
rootPath: string;
|
|
74
74
|
}>>>;
|
|
@@ -104,16 +104,16 @@ declare const recallRequestSchema: z.ZodObject<{
|
|
|
104
104
|
includeLowConfidence: z.ZodOptional<z.ZodBoolean>;
|
|
105
105
|
}, "strip", z.ZodTypeAny, {
|
|
106
106
|
query: string;
|
|
107
|
+
namespace?: string | undefined;
|
|
108
|
+
mode?: "auto" | "no_recall" | "minimal" | "full" | "graph_mode" | undefined;
|
|
107
109
|
sessionKey?: string | undefined;
|
|
108
110
|
tags?: string[] | undefined;
|
|
109
111
|
codingContext?: {
|
|
110
|
-
projectId: string;
|
|
111
112
|
branch: string | null;
|
|
113
|
+
projectId: string;
|
|
112
114
|
defaultBranch: string | null;
|
|
113
115
|
rootPath: string;
|
|
114
116
|
} | null | undefined;
|
|
115
|
-
namespace?: string | undefined;
|
|
116
|
-
mode?: "auto" | "no_recall" | "minimal" | "full" | "graph_mode" | undefined;
|
|
117
117
|
cwd?: string | undefined;
|
|
118
118
|
projectTag?: string | undefined;
|
|
119
119
|
topK?: number | undefined;
|
|
@@ -125,16 +125,16 @@ declare const recallRequestSchema: z.ZodObject<{
|
|
|
125
125
|
includeLowConfidence?: boolean | undefined;
|
|
126
126
|
}, {
|
|
127
127
|
query: string;
|
|
128
|
+
namespace?: string | undefined;
|
|
129
|
+
mode?: "auto" | "no_recall" | "minimal" | "full" | "graph_mode" | undefined;
|
|
128
130
|
sessionKey?: string | undefined;
|
|
129
131
|
tags?: string[] | undefined;
|
|
130
132
|
codingContext?: {
|
|
131
|
-
projectId: string;
|
|
132
133
|
branch: string | null;
|
|
134
|
+
projectId: string;
|
|
133
135
|
defaultBranch: string | null;
|
|
134
136
|
rootPath: string;
|
|
135
137
|
} | null | undefined;
|
|
136
|
-
namespace?: string | undefined;
|
|
137
|
-
mode?: "auto" | "no_recall" | "minimal" | "full" | "graph_mode" | undefined;
|
|
138
138
|
cwd?: string | undefined;
|
|
139
139
|
projectTag?: string | undefined;
|
|
140
140
|
topK?: number | undefined;
|
|
@@ -149,11 +149,11 @@ declare const recallExplainRequestSchema: z.ZodObject<{
|
|
|
149
149
|
sessionKey: z.ZodOptional<z.ZodString>;
|
|
150
150
|
namespace: z.ZodOptional<z.ZodString>;
|
|
151
151
|
}, "strip", z.ZodTypeAny, {
|
|
152
|
-
sessionKey?: string | undefined;
|
|
153
152
|
namespace?: string | undefined;
|
|
154
|
-
}, {
|
|
155
153
|
sessionKey?: string | undefined;
|
|
154
|
+
}, {
|
|
156
155
|
namespace?: string | undefined;
|
|
156
|
+
sessionKey?: string | undefined;
|
|
157
157
|
}>;
|
|
158
158
|
/**
|
|
159
159
|
* Standalone "set coding context" request. Used by the HTTP endpoint
|
|
@@ -168,13 +168,13 @@ declare const setCodingContextRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
168
168
|
rootPath: z.ZodString;
|
|
169
169
|
defaultBranch: z.ZodNullable<z.ZodString>;
|
|
170
170
|
}, "strip", z.ZodTypeAny, {
|
|
171
|
-
projectId: string;
|
|
172
171
|
branch: string | null;
|
|
172
|
+
projectId: string;
|
|
173
173
|
defaultBranch: string | null;
|
|
174
174
|
rootPath: string;
|
|
175
175
|
}, {
|
|
176
|
-
projectId: string;
|
|
177
176
|
branch: string | null;
|
|
177
|
+
projectId: string;
|
|
178
178
|
defaultBranch: string | null;
|
|
179
179
|
rootPath: string;
|
|
180
180
|
}>>>;
|
|
@@ -187,8 +187,8 @@ declare const setCodingContextRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
187
187
|
}, "strip", z.ZodTypeAny, {
|
|
188
188
|
sessionKey: string;
|
|
189
189
|
codingContext?: {
|
|
190
|
-
projectId: string;
|
|
191
190
|
branch: string | null;
|
|
191
|
+
projectId: string;
|
|
192
192
|
defaultBranch: string | null;
|
|
193
193
|
rootPath: string;
|
|
194
194
|
} | null | undefined;
|
|
@@ -196,8 +196,8 @@ declare const setCodingContextRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
196
196
|
}, {
|
|
197
197
|
sessionKey: string;
|
|
198
198
|
codingContext?: {
|
|
199
|
-
projectId: string;
|
|
200
199
|
branch: string | null;
|
|
200
|
+
projectId: string;
|
|
201
201
|
defaultBranch: string | null;
|
|
202
202
|
rootPath: string;
|
|
203
203
|
} | null | undefined;
|
|
@@ -205,8 +205,8 @@ declare const setCodingContextRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
205
205
|
}>, {
|
|
206
206
|
sessionKey: string;
|
|
207
207
|
codingContext?: {
|
|
208
|
-
projectId: string;
|
|
209
208
|
branch: string | null;
|
|
209
|
+
projectId: string;
|
|
210
210
|
defaultBranch: string | null;
|
|
211
211
|
rootPath: string;
|
|
212
212
|
} | null | undefined;
|
|
@@ -214,8 +214,8 @@ declare const setCodingContextRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
214
214
|
}, {
|
|
215
215
|
sessionKey: string;
|
|
216
216
|
codingContext?: {
|
|
217
|
-
projectId: string;
|
|
218
217
|
branch: string | null;
|
|
218
|
+
projectId: string;
|
|
219
219
|
defaultBranch: string | null;
|
|
220
220
|
rootPath: string;
|
|
221
221
|
} | null | undefined;
|
|
@@ -241,9 +241,9 @@ declare const observeRequestSchema: z.ZodObject<{
|
|
|
241
241
|
}, "strip", z.ZodTypeAny, {
|
|
242
242
|
kind: "snapshot" | "tool_result" | "retry" | "text" | "tool_call" | "patch" | "file_read" | "file_write" | "step_start" | "step_finish";
|
|
243
243
|
payload: Record<string, unknown>;
|
|
244
|
+
createdAt?: string | null | undefined;
|
|
244
245
|
filePath?: string | null | undefined;
|
|
245
246
|
toolName?: string | null | undefined;
|
|
246
|
-
createdAt?: string | null | undefined;
|
|
247
247
|
ordinal?: number | null | undefined;
|
|
248
248
|
tool_name?: string | null | undefined;
|
|
249
249
|
file_path?: string | null | undefined;
|
|
@@ -251,9 +251,9 @@ declare const observeRequestSchema: z.ZodObject<{
|
|
|
251
251
|
}, {
|
|
252
252
|
kind: "snapshot" | "tool_result" | "retry" | "text" | "tool_call" | "patch" | "file_read" | "file_write" | "step_start" | "step_finish";
|
|
253
253
|
payload: Record<string, unknown>;
|
|
254
|
+
createdAt?: string | null | undefined;
|
|
254
255
|
filePath?: string | null | undefined;
|
|
255
256
|
toolName?: string | null | undefined;
|
|
256
|
-
createdAt?: string | null | undefined;
|
|
257
257
|
ordinal?: number | null | undefined;
|
|
258
258
|
tool_name?: string | null | undefined;
|
|
259
259
|
file_path?: string | null | undefined;
|
|
@@ -265,9 +265,9 @@ declare const observeRequestSchema: z.ZodObject<{
|
|
|
265
265
|
parts?: {
|
|
266
266
|
kind: "snapshot" | "tool_result" | "retry" | "text" | "tool_call" | "patch" | "file_read" | "file_write" | "step_start" | "step_finish";
|
|
267
267
|
payload: Record<string, unknown>;
|
|
268
|
+
createdAt?: string | null | undefined;
|
|
268
269
|
filePath?: string | null | undefined;
|
|
269
270
|
toolName?: string | null | undefined;
|
|
270
|
-
createdAt?: string | null | undefined;
|
|
271
271
|
ordinal?: number | null | undefined;
|
|
272
272
|
tool_name?: string | null | undefined;
|
|
273
273
|
file_path?: string | null | undefined;
|
|
@@ -281,9 +281,9 @@ declare const observeRequestSchema: z.ZodObject<{
|
|
|
281
281
|
parts?: {
|
|
282
282
|
kind: "snapshot" | "tool_result" | "retry" | "text" | "tool_call" | "patch" | "file_read" | "file_write" | "step_start" | "step_finish";
|
|
283
283
|
payload: Record<string, unknown>;
|
|
284
|
+
createdAt?: string | null | undefined;
|
|
284
285
|
filePath?: string | null | undefined;
|
|
285
286
|
toolName?: string | null | undefined;
|
|
286
|
-
createdAt?: string | null | undefined;
|
|
287
287
|
ordinal?: number | null | undefined;
|
|
288
288
|
tool_name?: string | null | undefined;
|
|
289
289
|
file_path?: string | null | undefined;
|
|
@@ -317,9 +317,9 @@ declare const observeRequestSchema: z.ZodObject<{
|
|
|
317
317
|
parts?: {
|
|
318
318
|
kind: "snapshot" | "tool_result" | "retry" | "text" | "tool_call" | "patch" | "file_read" | "file_write" | "step_start" | "step_finish";
|
|
319
319
|
payload: Record<string, unknown>;
|
|
320
|
+
createdAt?: string | null | undefined;
|
|
320
321
|
filePath?: string | null | undefined;
|
|
321
322
|
toolName?: string | null | undefined;
|
|
322
|
-
createdAt?: string | null | undefined;
|
|
323
323
|
ordinal?: number | null | undefined;
|
|
324
324
|
tool_name?: string | null | undefined;
|
|
325
325
|
file_path?: string | null | undefined;
|
|
@@ -341,9 +341,9 @@ declare const observeRequestSchema: z.ZodObject<{
|
|
|
341
341
|
parts?: {
|
|
342
342
|
kind: "snapshot" | "tool_result" | "retry" | "text" | "tool_call" | "patch" | "file_read" | "file_write" | "step_start" | "step_finish";
|
|
343
343
|
payload: Record<string, unknown>;
|
|
344
|
+
createdAt?: string | null | undefined;
|
|
344
345
|
filePath?: string | null | undefined;
|
|
345
346
|
toolName?: string | null | undefined;
|
|
346
|
-
createdAt?: string | null | undefined;
|
|
347
347
|
ordinal?: number | null | undefined;
|
|
348
348
|
tool_name?: string | null | undefined;
|
|
349
349
|
file_path?: string | null | undefined;
|
|
@@ -366,14 +366,14 @@ declare const deepRecallRequestSchema: z.ZodObject<{
|
|
|
366
366
|
sessionKey: z.ZodOptional<z.ZodString>;
|
|
367
367
|
}, "strip", z.ZodTypeAny, {
|
|
368
368
|
query: string;
|
|
369
|
+
namespace?: string | undefined;
|
|
369
370
|
sessionKey?: string | undefined;
|
|
370
371
|
maxSteps?: string | number | undefined;
|
|
371
|
-
namespace?: string | undefined;
|
|
372
372
|
}, {
|
|
373
373
|
query: string;
|
|
374
|
+
namespace?: string | undefined;
|
|
374
375
|
sessionKey?: string | undefined;
|
|
375
376
|
maxSteps?: string | number | undefined;
|
|
376
|
-
namespace?: string | undefined;
|
|
377
377
|
}>;
|
|
378
378
|
declare const memoryStoreRequestSchema: z.ZodObject<{
|
|
379
379
|
schemaVersion: z.ZodOptional<z.ZodNumber>;
|
|
@@ -392,14 +392,14 @@ declare const memoryStoreRequestSchema: z.ZodObject<{
|
|
|
392
392
|
projectTag: z.ZodOptional<z.ZodString>;
|
|
393
393
|
}, "strip", z.ZodTypeAny, {
|
|
394
394
|
content: string;
|
|
395
|
-
|
|
395
|
+
namespace?: string | undefined;
|
|
396
396
|
sessionKey?: string | undefined;
|
|
397
|
-
tags?: string[] | undefined;
|
|
398
|
-
confidence?: number | undefined;
|
|
399
397
|
dryRun?: boolean | undefined;
|
|
400
|
-
category?: "
|
|
398
|
+
category?: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace" | undefined;
|
|
399
|
+
confidence?: number | undefined;
|
|
400
|
+
tags?: string[] | undefined;
|
|
401
401
|
entityRef?: string | undefined;
|
|
402
|
-
|
|
402
|
+
schemaVersion?: number | undefined;
|
|
403
403
|
cwd?: string | undefined;
|
|
404
404
|
projectTag?: string | undefined;
|
|
405
405
|
ttl?: string | undefined;
|
|
@@ -407,14 +407,14 @@ declare const memoryStoreRequestSchema: z.ZodObject<{
|
|
|
407
407
|
sourceReason?: string | undefined;
|
|
408
408
|
}, {
|
|
409
409
|
content: string;
|
|
410
|
-
|
|
410
|
+
namespace?: string | undefined;
|
|
411
411
|
sessionKey?: string | undefined;
|
|
412
|
-
tags?: string[] | undefined;
|
|
413
|
-
confidence?: number | undefined;
|
|
414
412
|
dryRun?: boolean | undefined;
|
|
415
|
-
category?: "
|
|
413
|
+
category?: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace" | undefined;
|
|
414
|
+
confidence?: number | undefined;
|
|
415
|
+
tags?: string[] | undefined;
|
|
416
416
|
entityRef?: string | undefined;
|
|
417
|
-
|
|
417
|
+
schemaVersion?: number | undefined;
|
|
418
418
|
cwd?: string | undefined;
|
|
419
419
|
projectTag?: string | undefined;
|
|
420
420
|
ttl?: string | undefined;
|
|
@@ -438,14 +438,14 @@ declare const suggestionSubmitRequestSchema: z.ZodObject<{
|
|
|
438
438
|
projectTag: z.ZodOptional<z.ZodString>;
|
|
439
439
|
}, "strip", z.ZodTypeAny, {
|
|
440
440
|
content: string;
|
|
441
|
-
|
|
441
|
+
namespace?: string | undefined;
|
|
442
442
|
sessionKey?: string | undefined;
|
|
443
|
-
tags?: string[] | undefined;
|
|
444
|
-
confidence?: number | undefined;
|
|
445
443
|
dryRun?: boolean | undefined;
|
|
446
|
-
category?: "
|
|
444
|
+
category?: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace" | undefined;
|
|
445
|
+
confidence?: number | undefined;
|
|
446
|
+
tags?: string[] | undefined;
|
|
447
447
|
entityRef?: string | undefined;
|
|
448
|
-
|
|
448
|
+
schemaVersion?: number | undefined;
|
|
449
449
|
cwd?: string | undefined;
|
|
450
450
|
projectTag?: string | undefined;
|
|
451
451
|
ttl?: string | undefined;
|
|
@@ -453,14 +453,14 @@ declare const suggestionSubmitRequestSchema: z.ZodObject<{
|
|
|
453
453
|
sourceReason?: string | undefined;
|
|
454
454
|
}, {
|
|
455
455
|
content: string;
|
|
456
|
-
|
|
456
|
+
namespace?: string | undefined;
|
|
457
457
|
sessionKey?: string | undefined;
|
|
458
|
-
tags?: string[] | undefined;
|
|
459
|
-
confidence?: number | undefined;
|
|
460
458
|
dryRun?: boolean | undefined;
|
|
461
|
-
category?: "
|
|
459
|
+
category?: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace" | undefined;
|
|
460
|
+
confidence?: number | undefined;
|
|
461
|
+
tags?: string[] | undefined;
|
|
462
462
|
entityRef?: string | undefined;
|
|
463
|
-
|
|
463
|
+
schemaVersion?: number | undefined;
|
|
464
464
|
cwd?: string | undefined;
|
|
465
465
|
projectTag?: string | undefined;
|
|
466
466
|
ttl?: string | undefined;
|
|
@@ -473,14 +473,14 @@ declare const reviewDispositionRequestSchema: z.ZodObject<{
|
|
|
473
473
|
reasonCode: z.ZodString;
|
|
474
474
|
namespace: z.ZodOptional<z.ZodString>;
|
|
475
475
|
}, "strip", z.ZodTypeAny, {
|
|
476
|
-
memoryId: string;
|
|
477
|
-
status: "active" | "pending_review" | "rejected" | "quarantined" | "superseded" | "archived";
|
|
478
476
|
reasonCode: string;
|
|
477
|
+
status: "active" | "pending_review" | "rejected" | "quarantined" | "superseded" | "archived";
|
|
478
|
+
memoryId: string;
|
|
479
479
|
namespace?: string | undefined;
|
|
480
480
|
}, {
|
|
481
|
-
memoryId: string;
|
|
482
|
-
status: "active" | "pending_review" | "rejected" | "quarantined" | "superseded" | "archived";
|
|
483
481
|
reasonCode: string;
|
|
482
|
+
status: "active" | "pending_review" | "rejected" | "quarantined" | "superseded" | "archived";
|
|
483
|
+
memoryId: string;
|
|
484
484
|
namespace?: string | undefined;
|
|
485
485
|
}>;
|
|
486
486
|
declare const trustZonePromoteRequestSchema: z.ZodObject<{
|
|
@@ -495,18 +495,18 @@ declare const trustZonePromoteRequestSchema: z.ZodObject<{
|
|
|
495
495
|
recordId: string;
|
|
496
496
|
targetZone: "working" | "trusted";
|
|
497
497
|
promotionReason: string;
|
|
498
|
-
|
|
498
|
+
namespace?: string | undefined;
|
|
499
499
|
summary?: string | undefined;
|
|
500
500
|
dryRun?: boolean | undefined;
|
|
501
|
-
|
|
501
|
+
recordedAt?: string | undefined;
|
|
502
502
|
}, {
|
|
503
503
|
recordId: string;
|
|
504
504
|
targetZone: "working" | "trusted";
|
|
505
505
|
promotionReason: string;
|
|
506
|
-
|
|
506
|
+
namespace?: string | undefined;
|
|
507
507
|
summary?: string | undefined;
|
|
508
508
|
dryRun?: boolean | undefined;
|
|
509
|
-
|
|
509
|
+
recordedAt?: string | undefined;
|
|
510
510
|
}>;
|
|
511
511
|
declare const trustZoneDemoSeedRequestSchema: z.ZodObject<{
|
|
512
512
|
scenario: z.ZodOptional<z.ZodString>;
|
|
@@ -514,14 +514,14 @@ declare const trustZoneDemoSeedRequestSchema: z.ZodObject<{
|
|
|
514
514
|
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
515
515
|
namespace: z.ZodOptional<z.ZodString>;
|
|
516
516
|
}, "strip", z.ZodTypeAny, {
|
|
517
|
-
recordedAt?: string | undefined;
|
|
518
|
-
dryRun?: boolean | undefined;
|
|
519
517
|
namespace?: string | undefined;
|
|
518
|
+
dryRun?: boolean | undefined;
|
|
519
|
+
recordedAt?: string | undefined;
|
|
520
520
|
scenario?: string | undefined;
|
|
521
521
|
}, {
|
|
522
|
-
recordedAt?: string | undefined;
|
|
523
|
-
dryRun?: boolean | undefined;
|
|
524
522
|
namespace?: string | undefined;
|
|
523
|
+
dryRun?: boolean | undefined;
|
|
524
|
+
recordedAt?: string | undefined;
|
|
525
525
|
scenario?: string | undefined;
|
|
526
526
|
}>;
|
|
527
527
|
declare const lcmSearchRequestSchema: z.ZodObject<{
|
|
@@ -532,14 +532,14 @@ declare const lcmSearchRequestSchema: z.ZodObject<{
|
|
|
532
532
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
533
533
|
}, "strip", z.ZodTypeAny, {
|
|
534
534
|
query: string;
|
|
535
|
-
sessionKey?: string | undefined;
|
|
536
535
|
namespace?: string | undefined;
|
|
536
|
+
sessionKey?: string | undefined;
|
|
537
537
|
limit?: number | undefined;
|
|
538
538
|
sessionPrefix?: string | undefined;
|
|
539
539
|
}, {
|
|
540
540
|
query: string;
|
|
541
|
-
sessionKey?: string | undefined;
|
|
542
541
|
namespace?: string | undefined;
|
|
542
|
+
sessionKey?: string | undefined;
|
|
543
543
|
limit?: number | undefined;
|
|
544
544
|
sessionPrefix?: string | undefined;
|
|
545
545
|
}>;
|
|
@@ -555,26 +555,26 @@ declare const lcmCompactionFlushRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
555
555
|
namespaces: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
556
556
|
}, "strip", z.ZodTypeAny, {
|
|
557
557
|
sessionKey: string;
|
|
558
|
-
namespaces?: string[] | undefined;
|
|
559
558
|
namespace?: string | undefined;
|
|
559
|
+
namespaces?: string[] | undefined;
|
|
560
560
|
cwd?: string | undefined;
|
|
561
561
|
projectTag?: string | undefined;
|
|
562
562
|
}, {
|
|
563
563
|
sessionKey: string;
|
|
564
|
-
namespaces?: string[] | undefined;
|
|
565
564
|
namespace?: string | undefined;
|
|
565
|
+
namespaces?: string[] | undefined;
|
|
566
566
|
cwd?: string | undefined;
|
|
567
567
|
projectTag?: string | undefined;
|
|
568
568
|
}>, {
|
|
569
569
|
sessionKey: string;
|
|
570
|
-
namespaces?: string[] | undefined;
|
|
571
570
|
namespace?: string | undefined;
|
|
571
|
+
namespaces?: string[] | undefined;
|
|
572
572
|
cwd?: string | undefined;
|
|
573
573
|
projectTag?: string | undefined;
|
|
574
574
|
}, {
|
|
575
575
|
sessionKey: string;
|
|
576
|
-
namespaces?: string[] | undefined;
|
|
577
576
|
namespace?: string | undefined;
|
|
577
|
+
namespaces?: string[] | undefined;
|
|
578
578
|
cwd?: string | undefined;
|
|
579
579
|
projectTag?: string | undefined;
|
|
580
580
|
}>;
|
|
@@ -619,13 +619,13 @@ declare const daySummaryRequestSchema: z.ZodObject<{
|
|
|
619
619
|
namespace: z.ZodOptional<z.ZodString>;
|
|
620
620
|
timeZone: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
621
621
|
}, "strip", z.ZodTypeAny, {
|
|
622
|
-
sessionKey?: string | undefined;
|
|
623
622
|
namespace?: string | undefined;
|
|
623
|
+
sessionKey?: string | undefined;
|
|
624
624
|
memories?: string | undefined;
|
|
625
625
|
timeZone?: string | undefined;
|
|
626
626
|
}, {
|
|
627
|
-
sessionKey?: string | undefined;
|
|
628
627
|
namespace?: string | undefined;
|
|
628
|
+
sessionKey?: string | undefined;
|
|
629
629
|
memories?: string | undefined;
|
|
630
630
|
timeZone?: string | undefined;
|
|
631
631
|
}>;
|
|
@@ -674,11 +674,11 @@ declare const capsuleListRequestSchema: z.ZodObject<{
|
|
|
674
674
|
namespace: z.ZodOptional<z.ZodString>;
|
|
675
675
|
sessionKey: z.ZodOptional<z.ZodString>;
|
|
676
676
|
}, "strip", z.ZodTypeAny, {
|
|
677
|
-
sessionKey?: string | undefined;
|
|
678
677
|
namespace?: string | undefined;
|
|
679
|
-
}, {
|
|
680
678
|
sessionKey?: string | undefined;
|
|
679
|
+
}, {
|
|
681
680
|
namespace?: string | undefined;
|
|
681
|
+
sessionKey?: string | undefined;
|
|
682
682
|
}>;
|
|
683
683
|
declare const offlineSyncSnapshotRequestSchema: z.ZodObject<{
|
|
684
684
|
namespace: z.ZodOptional<z.ZodString>;
|
|
@@ -766,21 +766,21 @@ declare const offlineSyncFileContentRequestSchema: z.ZodObject<{
|
|
|
766
766
|
length: z.ZodOptional<z.ZodNumber>;
|
|
767
767
|
}, "strip", z.ZodTypeAny, {
|
|
768
768
|
path: string;
|
|
769
|
-
length?: number | undefined;
|
|
770
769
|
namespace?: string | undefined;
|
|
770
|
+
length?: number | undefined;
|
|
771
771
|
offset?: number | undefined;
|
|
772
772
|
includeTranscripts?: boolean | undefined;
|
|
773
773
|
}, {
|
|
774
774
|
path: string;
|
|
775
|
-
length?: number | undefined;
|
|
776
775
|
namespace?: string | undefined;
|
|
776
|
+
length?: number | undefined;
|
|
777
777
|
offset?: number | undefined;
|
|
778
778
|
includeTranscripts?: boolean | undefined;
|
|
779
779
|
}>;
|
|
780
780
|
declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
781
781
|
intendedAction: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
782
782
|
confidence: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodNumber>>, number | undefined, number | null | undefined>;
|
|
783
|
-
risk: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodEnum<["low", "medium", "high", "irreversible", "restricted"]>>>, NonNullable<"
|
|
783
|
+
risk: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodEnum<["low", "medium", "high", "irreversible", "restricted"]>>>, NonNullable<"low" | "medium" | "high" | "irreversible" | "restricted"> | undefined, "low" | "medium" | "high" | "irreversible" | "restricted" | null | undefined>;
|
|
784
784
|
contextReadiness: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodEnum<["none", "partial", "sufficient"]>>>, NonNullable<"partial" | "none" | "sufficient"> | undefined, "partial" | "none" | "sufficient" | null | undefined>;
|
|
785
785
|
currentContextScopes: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>, string[] | undefined, string[] | null | undefined>;
|
|
786
786
|
userRules: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -819,12 +819,12 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
819
819
|
safety: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodEnum<["safe", "requires-review", "blocked"]>>>, NonNullable<"safe" | "requires-review" | "blocked"> | undefined, "safe" | "requires-review" | "blocked" | null | undefined>;
|
|
820
820
|
safetyReasons: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>, string[] | undefined, string[] | null | undefined>;
|
|
821
821
|
}, "strict", z.ZodTypeAny, {
|
|
822
|
+
updated?: string | undefined;
|
|
823
|
+
created?: string | undefined;
|
|
822
824
|
source?: string | undefined;
|
|
825
|
+
confidence?: number | undefined;
|
|
823
826
|
stale?: boolean | undefined;
|
|
824
|
-
created?: string | undefined;
|
|
825
|
-
updated?: string | undefined;
|
|
826
827
|
scope?: string | undefined;
|
|
827
|
-
confidence?: number | undefined;
|
|
828
828
|
retrievalReason?: string | undefined;
|
|
829
829
|
safety?: NonNullable<"safe" | "requires-review" | "blocked"> | undefined;
|
|
830
830
|
safeToUse?: boolean | undefined;
|
|
@@ -833,12 +833,12 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
833
833
|
safetyReasons?: string[] | undefined;
|
|
834
834
|
userContextScopes?: string[] | undefined;
|
|
835
835
|
}, {
|
|
836
|
+
updated?: string | null | undefined;
|
|
837
|
+
created?: string | null | undefined;
|
|
836
838
|
source?: string | null | undefined;
|
|
839
|
+
confidence?: number | null | undefined;
|
|
837
840
|
stale?: boolean | null | undefined;
|
|
838
|
-
created?: string | null | undefined;
|
|
839
|
-
updated?: string | null | undefined;
|
|
840
841
|
scope?: string | null | undefined;
|
|
841
|
-
confidence?: number | null | undefined;
|
|
842
842
|
retrievalReason?: string | null | undefined;
|
|
843
843
|
safety?: "safe" | "requires-review" | "blocked" | null | undefined;
|
|
844
844
|
safeToUse?: boolean | null | undefined;
|
|
@@ -847,12 +847,12 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
847
847
|
safetyReasons?: string[] | null | undefined;
|
|
848
848
|
userContextScopes?: string[] | null | undefined;
|
|
849
849
|
}>, "many">>>, {
|
|
850
|
+
updated?: string | undefined;
|
|
851
|
+
created?: string | undefined;
|
|
850
852
|
source?: string | undefined;
|
|
853
|
+
confidence?: number | undefined;
|
|
851
854
|
stale?: boolean | undefined;
|
|
852
|
-
created?: string | undefined;
|
|
853
|
-
updated?: string | undefined;
|
|
854
855
|
scope?: string | undefined;
|
|
855
|
-
confidence?: number | undefined;
|
|
856
856
|
retrievalReason?: string | undefined;
|
|
857
857
|
safety?: NonNullable<"safe" | "requires-review" | "blocked"> | undefined;
|
|
858
858
|
safeToUse?: boolean | undefined;
|
|
@@ -861,12 +861,12 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
861
861
|
safetyReasons?: string[] | undefined;
|
|
862
862
|
userContextScopes?: string[] | undefined;
|
|
863
863
|
}[] | undefined, {
|
|
864
|
+
updated?: string | null | undefined;
|
|
865
|
+
created?: string | null | undefined;
|
|
864
866
|
source?: string | null | undefined;
|
|
867
|
+
confidence?: number | null | undefined;
|
|
865
868
|
stale?: boolean | null | undefined;
|
|
866
|
-
created?: string | null | undefined;
|
|
867
|
-
updated?: string | null | undefined;
|
|
868
869
|
scope?: string | null | undefined;
|
|
869
|
-
confidence?: number | null | undefined;
|
|
870
870
|
retrievalReason?: string | null | undefined;
|
|
871
871
|
safety?: "safe" | "requires-review" | "blocked" | null | undefined;
|
|
872
872
|
safeToUse?: boolean | null | undefined;
|
|
@@ -879,7 +879,7 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
879
879
|
confidence?: number | undefined;
|
|
880
880
|
currentContextScopes?: string[] | undefined;
|
|
881
881
|
intendedAction?: string | undefined;
|
|
882
|
-
risk?: NonNullable<"
|
|
882
|
+
risk?: NonNullable<"low" | "medium" | "high" | "irreversible" | "restricted"> | undefined;
|
|
883
883
|
contextReadiness?: NonNullable<"partial" | "none" | "sufficient"> | undefined;
|
|
884
884
|
userRules?: {
|
|
885
885
|
kind: "never" | "do-not-use-outside-this-context" | "ask-before" | "requires-escalation";
|
|
@@ -887,12 +887,12 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
887
887
|
matched?: boolean | undefined;
|
|
888
888
|
}[] | undefined;
|
|
889
889
|
retrievedMemories?: {
|
|
890
|
+
updated?: string | undefined;
|
|
891
|
+
created?: string | undefined;
|
|
890
892
|
source?: string | undefined;
|
|
893
|
+
confidence?: number | undefined;
|
|
891
894
|
stale?: boolean | undefined;
|
|
892
|
-
created?: string | undefined;
|
|
893
|
-
updated?: string | undefined;
|
|
894
895
|
scope?: string | undefined;
|
|
895
|
-
confidence?: number | undefined;
|
|
896
896
|
retrievalReason?: string | undefined;
|
|
897
897
|
safety?: NonNullable<"safe" | "requires-review" | "blocked"> | undefined;
|
|
898
898
|
safeToUse?: boolean | undefined;
|
|
@@ -905,7 +905,7 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
905
905
|
confidence?: number | null | undefined;
|
|
906
906
|
currentContextScopes?: string[] | null | undefined;
|
|
907
907
|
intendedAction?: string | null | undefined;
|
|
908
|
-
risk?: "
|
|
908
|
+
risk?: "low" | "medium" | "high" | "irreversible" | "restricted" | null | undefined;
|
|
909
909
|
contextReadiness?: "partial" | "none" | "sufficient" | null | undefined;
|
|
910
910
|
userRules?: {
|
|
911
911
|
kind: "never" | "do-not-use-outside-this-context" | "ask-before" | "requires-escalation";
|
|
@@ -913,12 +913,12 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
913
913
|
matched?: boolean | null | undefined;
|
|
914
914
|
}[] | null | undefined;
|
|
915
915
|
retrievedMemories?: {
|
|
916
|
+
updated?: string | null | undefined;
|
|
917
|
+
created?: string | null | undefined;
|
|
916
918
|
source?: string | null | undefined;
|
|
919
|
+
confidence?: number | null | undefined;
|
|
917
920
|
stale?: boolean | null | undefined;
|
|
918
|
-
created?: string | null | undefined;
|
|
919
|
-
updated?: string | null | undefined;
|
|
920
921
|
scope?: string | null | undefined;
|
|
921
|
-
confidence?: number | null | undefined;
|
|
922
922
|
retrievalReason?: string | null | undefined;
|
|
923
923
|
safety?: "safe" | "requires-review" | "blocked" | null | undefined;
|
|
924
924
|
safeToUse?: boolean | null | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { d as EngramAccessExtractionForceFlushRequest, e as EngramAccessExtractionForceFlushResponse, cb as EngramAccessLcmCompactionFlushRequest, g as EngramAccessLcmCompactionFlushResponse, cc as ExtractionForceFlushDelegate, cd as delegateExtractionForceFlush } from './access-service-
|
|
1
|
+
export { d as EngramAccessExtractionForceFlushRequest, e as EngramAccessExtractionForceFlushResponse, cb as EngramAccessLcmCompactionFlushRequest, g as EngramAccessLcmCompactionFlushResponse, cc as ExtractionForceFlushDelegate, cd as delegateExtractionForceFlush } from './access-service-DWdY9Mlk.js';
|
|
2
2
|
import './types-YY-eKKU7.js';
|
|
3
3
|
import './message-parts/index.js';
|
|
4
4
|
import './bounded-jsonl-state.js';
|
package/dist/access-service.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import './storage-BLJRnFi6.js';
|
|
|
5
5
|
import './semantic-BalR6EXU.js';
|
|
6
6
|
import './local-llm.js';
|
|
7
7
|
import './fallback-llm.js';
|
|
8
|
-
export { A as AccessProfilingReportRequest, a as AccessProfilingReportResponse, C as CodingScopedWriteInput, ct as ENGRAM_ACCESS_WRITE_SCHEMA_VERSION, cu as EngramAccessActionConfidenceRequest, cv as EngramAccessActionConfidenceResponse, o as EngramAccessBriefingRequest, p as EngramAccessBriefingResponse, b as EngramAccessCapsuleListResponse, cw as EngramAccessDaySummaryRequest, cx as EngramAccessEntityListResponse, cy as EngramAccessEntityResponse, cz as EngramAccessEntitySummary, d as EngramAccessExtractionForceFlushRequest, e as EngramAccessExtractionForceFlushResponse, cb as EngramAccessLcmCompactionFlushRequest, g as EngramAccessLcmCompactionFlushResponse, cA as EngramAccessLcmCompactionRecordRequest, h as EngramAccessLcmCompactionRecordResponse, j as EngramAccessLcmSearchRequest, k as EngramAccessLcmSearchResponse, cB as EngramAccessLcmStatusResponse, cC as EngramAccessMaintenanceResponse, cD as EngramAccessMemoryBrowseRequest, cE as EngramAccessMemoryBrowseResponse, cF as EngramAccessMemoryRecord, y as EngramAccessMemoryResponse, m as EngramAccessMemoryStoreRequest, I as EngramAccessMemorySummary, cG as EngramAccessObserveMessage, r as EngramAccessObserveRequest, s as EngramAccessObserveResponse, cH as EngramAccessOfflineSyncApplyFileContentRequest, cI as EngramAccessOfflineSyncApplyFileContentResponse, cJ as EngramAccessOfflineSyncApplyRequest, cK as EngramAccessOfflineSyncApplyResponse, cL as EngramAccessOfflineSyncFileContentRequest, cM as EngramAccessOfflineSyncFileContentResponse, cN as EngramAccessOfflineSyncFilesRequest, cO as EngramAccessOfflineSyncFilesResponse, cP as EngramAccessOfflineSyncFinalizeConvergenceRequest, cQ as EngramAccessOfflineSyncFinalizeConvergenceResponse, cR as EngramAccessOfflineSyncManifestRequest, cS as EngramAccessOfflineSyncSnapshotRequest, cT as EngramAccessOfflineSyncSnapshotResponse, i as EngramAccessOfflineSyncSnapshotStreamResponse, cU as EngramAccessQualityResponse, cV as EngramAccessRecallExplainRequest, cW as EngramAccessRecallExplainResponse, H as EngramAccessRecallRequest, G as EngramAccessRecallResponse, cX as EngramAccessReviewDispositionRequest, cY as EngramAccessReviewDispositionResponse, E as EngramAccessReviewQueueResponse, cZ as EngramAccessScopeDebug, f as EngramAccessService, J as EngramAccessSetCodingContextRequest, n as EngramAccessSuggestionSubmitRequest, c_ as EngramAccessTimelineResponse, c$ as EngramAccessTrustZoneBrowseRequest, d0 as EngramAccessTrustZoneBrowseResponse, d1 as EngramAccessTrustZoneDemoSeedRequest, d2 as EngramAccessTrustZoneDemoSeedResponse, d3 as EngramAccessTrustZonePromoteRequest, d4 as EngramAccessTrustZonePromoteResponse, d5 as EngramAccessTrustZoneRecordSummary, d6 as EngramAccessTrustZoneStatusResponse, d7 as EngramAccessWriteEnvelope, q as EngramAccessWriteResponse, l as MemoryScopePlan, d8 as buildProjectedGovernanceProposedActions, d9 as hasGroupedGovernanceActions, da as shapeMemorySummary } from './access-service-
|
|
8
|
+
export { A as AccessProfilingReportRequest, a as AccessProfilingReportResponse, C as CodingScopedWriteInput, ct as ENGRAM_ACCESS_WRITE_SCHEMA_VERSION, cu as EngramAccessActionConfidenceRequest, cv as EngramAccessActionConfidenceResponse, o as EngramAccessBriefingRequest, p as EngramAccessBriefingResponse, b as EngramAccessCapsuleListResponse, cw as EngramAccessDaySummaryRequest, cx as EngramAccessEntityListResponse, cy as EngramAccessEntityResponse, cz as EngramAccessEntitySummary, d as EngramAccessExtractionForceFlushRequest, e as EngramAccessExtractionForceFlushResponse, cb as EngramAccessLcmCompactionFlushRequest, g as EngramAccessLcmCompactionFlushResponse, cA as EngramAccessLcmCompactionRecordRequest, h as EngramAccessLcmCompactionRecordResponse, j as EngramAccessLcmSearchRequest, k as EngramAccessLcmSearchResponse, cB as EngramAccessLcmStatusResponse, cC as EngramAccessMaintenanceResponse, cD as EngramAccessMemoryBrowseRequest, cE as EngramAccessMemoryBrowseResponse, cF as EngramAccessMemoryRecord, y as EngramAccessMemoryResponse, m as EngramAccessMemoryStoreRequest, I as EngramAccessMemorySummary, cG as EngramAccessObserveMessage, r as EngramAccessObserveRequest, s as EngramAccessObserveResponse, cH as EngramAccessOfflineSyncApplyFileContentRequest, cI as EngramAccessOfflineSyncApplyFileContentResponse, cJ as EngramAccessOfflineSyncApplyRequest, cK as EngramAccessOfflineSyncApplyResponse, cL as EngramAccessOfflineSyncFileContentRequest, cM as EngramAccessOfflineSyncFileContentResponse, cN as EngramAccessOfflineSyncFilesRequest, cO as EngramAccessOfflineSyncFilesResponse, cP as EngramAccessOfflineSyncFinalizeConvergenceRequest, cQ as EngramAccessOfflineSyncFinalizeConvergenceResponse, cR as EngramAccessOfflineSyncManifestRequest, cS as EngramAccessOfflineSyncSnapshotRequest, cT as EngramAccessOfflineSyncSnapshotResponse, i as EngramAccessOfflineSyncSnapshotStreamResponse, cU as EngramAccessQualityResponse, cV as EngramAccessRecallExplainRequest, cW as EngramAccessRecallExplainResponse, H as EngramAccessRecallRequest, G as EngramAccessRecallResponse, cX as EngramAccessReviewDispositionRequest, cY as EngramAccessReviewDispositionResponse, E as EngramAccessReviewQueueResponse, cZ as EngramAccessScopeDebug, f as EngramAccessService, J as EngramAccessSetCodingContextRequest, n as EngramAccessSuggestionSubmitRequest, c_ as EngramAccessTimelineResponse, c$ as EngramAccessTrustZoneBrowseRequest, d0 as EngramAccessTrustZoneBrowseResponse, d1 as EngramAccessTrustZoneDemoSeedRequest, d2 as EngramAccessTrustZoneDemoSeedResponse, d3 as EngramAccessTrustZonePromoteRequest, d4 as EngramAccessTrustZonePromoteResponse, d5 as EngramAccessTrustZoneRecordSummary, d6 as EngramAccessTrustZoneStatusResponse, d7 as EngramAccessWriteEnvelope, q as EngramAccessWriteResponse, l as MemoryScopePlan, d8 as buildProjectedGovernanceProposedActions, d9 as hasGroupedGovernanceActions, da as shapeMemorySummary } from './access-service-DWdY9Mlk.js';
|
|
9
9
|
import './trust-zones.js';
|
|
10
10
|
import './message-parts/index.js';
|
|
11
11
|
import './access-schema.js';
|
|
@@ -5,7 +5,7 @@ import { M as MemoryFile, m as MemoryFrontmatter, w as MemoryStatus, a9 as Behav
|
|
|
5
5
|
import { C as ConversationIndexCoordinator, T as TierMigrationCoordinator, O as Orchestrator } from './orchestrator-DgyvFfPR.js';
|
|
6
6
|
import { S as StorageManager } from './storage-BLJRnFi6.js';
|
|
7
7
|
import { TrustZoneDemoSeedResult, TrustZoneName, TrustZonePromotionResult, TrustZoneStoreStatus } from './trust-zones.js';
|
|
8
|
-
import { f as EngramAccessService } from './access-service-
|
|
8
|
+
import { f as EngramAccessService } from './access-service-DWdY9Mlk.js';
|
|
9
9
|
import { Writable, Readable } from 'node:stream';
|
|
10
10
|
import { ResolveSecretRefFn } from './resolve-auth-token.js';
|
|
11
11
|
import { CausalTrajectoryStoreStatus } from './causal-trajectory.js';
|
package/dist/cli.d.ts
CHANGED
|
@@ -5,8 +5,8 @@ import './types-YY-eKKU7.js';
|
|
|
5
5
|
import './orchestrator-DgyvFfPR.js';
|
|
6
6
|
import './storage-BLJRnFi6.js';
|
|
7
7
|
import './trust-zones.js';
|
|
8
|
-
export { c as AccessHttpServeCliCommandOptions, d as ArchiveObservationsCliCommandOptions, e as AuditMemoryCliCommandOptions, B as BulkImportCliCommandOptions, C as CliApi, g as CliCommand, h as CliProgram, i as CompatCliCommandOptions, j as ConnectorsRunCliOutputOptions, k as ConversationIndexHealthCliOrchestrator, D as DashboardStartCliCommandOptions, l as DedupeCandidate, E as ExactDedupePlan, G as GraphHealthCliCommandOptions, M as MemoryActionAuditCliCommandOptions, m as MemoryActionAuditCliNamespaceSummary, n as MemoryActionAuditCliReport, o as MemoryGovernanceCliCommandOptions, q as MemoryGovernanceReportCliCommandOptions, s as MemoryGovernanceRestoreCliCommandOptions, t as MemoryReviewDispositionCliCommandOptions, u as MemoryTimelineCliCommandOptions, v as MigrateCliOrchestrator, w as MigrateCliReport, x as MigrateObservationsCliCommandOptions, P as PolicyDiffCliReport, y as PolicyDiffEntry, z as PolicyRollbackCliReport, F as PolicyStatusCliReport, H as PolicyTuningCliOrchestrator, R as RebuildMemoryLifecycleLedgerCliCommandOptions, I as RebuildMemoryProjectionCliCommandOptions, J as RebuildObservationsCliCommandOptions, K as RepairMemoryProjectionCliCommandOptions, L as ReplayCliCommandOptions, N as ReplayCliOrchestrator, O as RouteCliCommandOptions, S as SessionIntegrityCliCommandOptions, Q as SessionRepairCliCommandOptions, T as TailscaleStatusCliCommandOptions, U as TailscaleSyncCliCommandOptions, V as TierMigrateCliAdapter, W as TierMigrateCoordinatorCliAdapter, X as TierMigrateLegacyCliAdapter, Y as TierStatusCliAdapter, Z as TierStatusCoordinatorCliAdapter, _ as TierStatusLegacyCliAdapter, $ as TrainingExportCliCommandOptions, a0 as VerifyMemoryProjectionCliCommandOptions, a1 as WebDavServeCliCommandOptions, a2 as WorkProjectCliCommandOptions, a3 as WorkTaskCliCommandOptions, a4 as emitConnectorsRunCliResult, a5 as filterNormalMemorySearchResults, a6 as hasDestructivePurgeFailures, a7 as isNormalRetrievalVisibleMemory, a8 as listMemoryMarkdownFilePaths, a9 as parseDurationToMs, aa as parseStrictCliDate, ab as planAggressiveDuplicateDeletions, ac as planExactDuplicateDeletions, ad as registerCli, ae as resolveAccessPrincipalOverride, af as resolveMemoryDirForNamespace, ag as runAbstractionNodeStatusCliCommand, ah as runAccessHttpServeCliCommand, ai as runAccessHttpStatusCliCommand, aj as runAccessHttpStopCliCommand, ak as runAccessMcpServeCliCommand, al as runArchiveObservationsCliCommand, r as runAuditMemoryCliCommand, am as runBenchmarkBaselineReportCliCommand, an as runBenchmarkBaselineSnapshotCliCommand, ao as runBenchmarkCiGateCliCommand, ap as runBenchmarkImportCliCommand, aq as runBenchmarkStatusCliCommand, ar as runBenchmarkStoredBaselineCiGateCliCommand, as as runBenchmarkValidateCliCommand, b as runBulkImportCliCommand, at as runCausalTrajectoryStatusCliCommand, au as runCommitmentLifecycleCliCommand, av as runCommitmentRecordCliCommand, aw as runCommitmentSetStateCliCommand, ax as runCommitmentStatusCliCommand, ay as runCompatCliCommand, az as runCompoundingPromoteCliCommand, aA as runConversationIndexHealthCliCommand, aB as runConversationIndexInspectCliCommand, aC as runConversationIndexRebuildCliCommand, aD as runCueAnchorStatusCliCommand, aE as runDashboardStartCliCommand, aF as runDashboardStatusCliCommand, aG as runDashboardStopCliCommand, aH as runGraphHealthCliCommand, aI as runHarmonicSearchCliCommand, aJ as runMemoryActionAuditCliCommand, aK as runMemoryGovernanceCliCommand, aL as runMemoryGovernanceReportCliCommand, aM as runMemoryGovernanceRestoreCliCommand, aN as runMemoryReviewDispositionCliCommand, aO as runMemoryTimelineCliCommand, aP as runMigrateNormalizeFrontmatterCliCommand, aQ as runMigrateObservationsCliCommand, aR as runMigrateRechunkCliCommand, aS as runMigrateReextractCliCommand, aT as runMigrateRescoreImportanceCliCommand, aU as runObjectiveStateStatusCliCommand, aV as runPolicyDiffCliCommand, aW as runPolicyRollbackCliCommand, aX as runPolicyStatusCliCommand, aY as runRebuildMemoryLifecycleLedgerCliCommand, aZ as runRebuildMemoryProjectionCliCommand, a_ as runRebuildObservationsCliCommand, a$ as runRepairMemoryProjectionCliCommand, b0 as runReplayCliCommand, b1 as runResumeBundleBuildCliCommand, b2 as runResumeBundleRecordCliCommand, b3 as runResumeBundleStatusCliCommand, b4 as runRouteCliCommand, b5 as runSemanticRulePromoteCliCommand, b6 as runSemanticRuleVerifyCliCommand, b7 as runSessionCheckCliCommand, b8 as runSessionRepairCliCommand, b9 as runTailscaleStatusCliCommand, ba as runTailscaleSyncCliCommand, bb as runTierMigrateCliCommand, bc as runTierStatusCliCommand, bd as runTrainingExportCliCommand, be as runTrustZoneDemoSeedCliCommand, bf as runTrustZonePromoteCliCommand, bg as runTrustZoneStatusCliCommand, bh as runUtilityLearningCliCommand, bi as runUtilityLearningStatusCliCommand, bj as runUtilityTelemetryRecordCliCommand, bk as runUtilityTelemetryStatusCliCommand, bl as runVerifiedRecallSearchCliCommand, bm as runVerifyMemoryProjectionCliCommand, bn as runWebDavServeCliCommand, bo as runWebDavStopCliCommand, bp as runWorkProductRecallSearchCliCommand, bq as runWorkProductRecordCliCommand, br as runWorkProductStatusCliCommand, bs as runWorkProjectCliCommand, bt as runWorkTaskCliCommand } from './cli-
|
|
9
|
-
import './access-service-
|
|
8
|
+
export { c as AccessHttpServeCliCommandOptions, d as ArchiveObservationsCliCommandOptions, e as AuditMemoryCliCommandOptions, B as BulkImportCliCommandOptions, C as CliApi, g as CliCommand, h as CliProgram, i as CompatCliCommandOptions, j as ConnectorsRunCliOutputOptions, k as ConversationIndexHealthCliOrchestrator, D as DashboardStartCliCommandOptions, l as DedupeCandidate, E as ExactDedupePlan, G as GraphHealthCliCommandOptions, M as MemoryActionAuditCliCommandOptions, m as MemoryActionAuditCliNamespaceSummary, n as MemoryActionAuditCliReport, o as MemoryGovernanceCliCommandOptions, q as MemoryGovernanceReportCliCommandOptions, s as MemoryGovernanceRestoreCliCommandOptions, t as MemoryReviewDispositionCliCommandOptions, u as MemoryTimelineCliCommandOptions, v as MigrateCliOrchestrator, w as MigrateCliReport, x as MigrateObservationsCliCommandOptions, P as PolicyDiffCliReport, y as PolicyDiffEntry, z as PolicyRollbackCliReport, F as PolicyStatusCliReport, H as PolicyTuningCliOrchestrator, R as RebuildMemoryLifecycleLedgerCliCommandOptions, I as RebuildMemoryProjectionCliCommandOptions, J as RebuildObservationsCliCommandOptions, K as RepairMemoryProjectionCliCommandOptions, L as ReplayCliCommandOptions, N as ReplayCliOrchestrator, O as RouteCliCommandOptions, S as SessionIntegrityCliCommandOptions, Q as SessionRepairCliCommandOptions, T as TailscaleStatusCliCommandOptions, U as TailscaleSyncCliCommandOptions, V as TierMigrateCliAdapter, W as TierMigrateCoordinatorCliAdapter, X as TierMigrateLegacyCliAdapter, Y as TierStatusCliAdapter, Z as TierStatusCoordinatorCliAdapter, _ as TierStatusLegacyCliAdapter, $ as TrainingExportCliCommandOptions, a0 as VerifyMemoryProjectionCliCommandOptions, a1 as WebDavServeCliCommandOptions, a2 as WorkProjectCliCommandOptions, a3 as WorkTaskCliCommandOptions, a4 as emitConnectorsRunCliResult, a5 as filterNormalMemorySearchResults, a6 as hasDestructivePurgeFailures, a7 as isNormalRetrievalVisibleMemory, a8 as listMemoryMarkdownFilePaths, a9 as parseDurationToMs, aa as parseStrictCliDate, ab as planAggressiveDuplicateDeletions, ac as planExactDuplicateDeletions, ad as registerCli, ae as resolveAccessPrincipalOverride, af as resolveMemoryDirForNamespace, ag as runAbstractionNodeStatusCliCommand, ah as runAccessHttpServeCliCommand, ai as runAccessHttpStatusCliCommand, aj as runAccessHttpStopCliCommand, ak as runAccessMcpServeCliCommand, al as runArchiveObservationsCliCommand, r as runAuditMemoryCliCommand, am as runBenchmarkBaselineReportCliCommand, an as runBenchmarkBaselineSnapshotCliCommand, ao as runBenchmarkCiGateCliCommand, ap as runBenchmarkImportCliCommand, aq as runBenchmarkStatusCliCommand, ar as runBenchmarkStoredBaselineCiGateCliCommand, as as runBenchmarkValidateCliCommand, b as runBulkImportCliCommand, at as runCausalTrajectoryStatusCliCommand, au as runCommitmentLifecycleCliCommand, av as runCommitmentRecordCliCommand, aw as runCommitmentSetStateCliCommand, ax as runCommitmentStatusCliCommand, ay as runCompatCliCommand, az as runCompoundingPromoteCliCommand, aA as runConversationIndexHealthCliCommand, aB as runConversationIndexInspectCliCommand, aC as runConversationIndexRebuildCliCommand, aD as runCueAnchorStatusCliCommand, aE as runDashboardStartCliCommand, aF as runDashboardStatusCliCommand, aG as runDashboardStopCliCommand, aH as runGraphHealthCliCommand, aI as runHarmonicSearchCliCommand, aJ as runMemoryActionAuditCliCommand, aK as runMemoryGovernanceCliCommand, aL as runMemoryGovernanceReportCliCommand, aM as runMemoryGovernanceRestoreCliCommand, aN as runMemoryReviewDispositionCliCommand, aO as runMemoryTimelineCliCommand, aP as runMigrateNormalizeFrontmatterCliCommand, aQ as runMigrateObservationsCliCommand, aR as runMigrateRechunkCliCommand, aS as runMigrateReextractCliCommand, aT as runMigrateRescoreImportanceCliCommand, aU as runObjectiveStateStatusCliCommand, aV as runPolicyDiffCliCommand, aW as runPolicyRollbackCliCommand, aX as runPolicyStatusCliCommand, aY as runRebuildMemoryLifecycleLedgerCliCommand, aZ as runRebuildMemoryProjectionCliCommand, a_ as runRebuildObservationsCliCommand, a$ as runRepairMemoryProjectionCliCommand, b0 as runReplayCliCommand, b1 as runResumeBundleBuildCliCommand, b2 as runResumeBundleRecordCliCommand, b3 as runResumeBundleStatusCliCommand, b4 as runRouteCliCommand, b5 as runSemanticRulePromoteCliCommand, b6 as runSemanticRuleVerifyCliCommand, b7 as runSessionCheckCliCommand, b8 as runSessionRepairCliCommand, b9 as runTailscaleStatusCliCommand, ba as runTailscaleSyncCliCommand, bb as runTierMigrateCliCommand, bc as runTierStatusCliCommand, bd as runTrainingExportCliCommand, be as runTrustZoneDemoSeedCliCommand, bf as runTrustZonePromoteCliCommand, bg as runTrustZoneStatusCliCommand, bh as runUtilityLearningCliCommand, bi as runUtilityLearningStatusCliCommand, bj as runUtilityTelemetryRecordCliCommand, bk as runUtilityTelemetryStatusCliCommand, bl as runVerifiedRecallSearchCliCommand, bm as runVerifyMemoryProjectionCliCommand, bn as runWebDavServeCliCommand, bo as runWebDavStopCliCommand, bp as runWorkProductRecallSearchCliCommand, bq as runWorkProductRecordCliCommand, br as runWorkProductStatusCliCommand, bs as runWorkProjectCliCommand, bt as runWorkTaskCliCommand } from './cli-DD0P-lu8.js';
|
|
9
|
+
import './access-service-DWdY9Mlk.js';
|
|
10
10
|
import 'node:stream';
|
|
11
11
|
import './resolve-auth-token.js';
|
|
12
12
|
import './causal-trajectory.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IncomingMessage, ServerResponse } from 'node:http';
|
|
2
|
-
import { f as EngramAccessService } from './access-service-
|
|
2
|
+
import { f as EngramAccessService } from './access-service-DWdY9Mlk.js';
|
|
3
3
|
import './types-YY-eKKU7.js';
|
|
4
4
|
import './message-parts/index.js';
|
|
5
5
|
import './bounded-jsonl-state.js';
|