@remnic/core 9.69.35 → 9.69.36
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 +5 -5
- 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 +89 -89
- package/dist/{access-service-CKu5ixg9.d.ts → access-service-Cl_x57xR.d.ts} +64 -64
- 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-Bk7Ctql4.d.ts → cli-p813oxbm.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-BetSQn7q.d.ts → public-http-C3bLjE-L.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-schema.d.ts
CHANGED
|
@@ -36,13 +36,13 @@ declare const codingContextSchema: z.ZodNullable<z.ZodObject<{
|
|
|
36
36
|
rootPath: z.ZodString;
|
|
37
37
|
defaultBranch: z.ZodNullable<z.ZodString>;
|
|
38
38
|
}, "strip", z.ZodTypeAny, {
|
|
39
|
-
projectId: string;
|
|
40
39
|
branch: string | null;
|
|
40
|
+
projectId: string;
|
|
41
41
|
defaultBranch: string | null;
|
|
42
42
|
rootPath: string;
|
|
43
43
|
}, {
|
|
44
|
-
projectId: string;
|
|
45
44
|
branch: string | null;
|
|
45
|
+
projectId: string;
|
|
46
46
|
defaultBranch: string | null;
|
|
47
47
|
rootPath: string;
|
|
48
48
|
}>>;
|
|
@@ -77,13 +77,13 @@ declare const recallRequestSchema: z.ZodObject<{
|
|
|
77
77
|
rootPath: z.ZodString;
|
|
78
78
|
defaultBranch: z.ZodNullable<z.ZodString>;
|
|
79
79
|
}, "strip", z.ZodTypeAny, {
|
|
80
|
-
projectId: string;
|
|
81
80
|
branch: string | null;
|
|
81
|
+
projectId: string;
|
|
82
82
|
defaultBranch: string | null;
|
|
83
83
|
rootPath: string;
|
|
84
84
|
}, {
|
|
85
|
-
projectId: string;
|
|
86
85
|
branch: string | null;
|
|
86
|
+
projectId: string;
|
|
87
87
|
defaultBranch: string | null;
|
|
88
88
|
rootPath: string;
|
|
89
89
|
}>>>;
|
|
@@ -126,16 +126,16 @@ declare const recallRequestSchema: z.ZodObject<{
|
|
|
126
126
|
stateView: z.ZodOptional<z.ZodBoolean>;
|
|
127
127
|
}, "strip", z.ZodTypeAny, {
|
|
128
128
|
query: string;
|
|
129
|
+
namespace?: string | undefined;
|
|
130
|
+
mode?: "auto" | "no_recall" | "minimal" | "full" | "graph_mode" | undefined;
|
|
129
131
|
sessionKey?: string | undefined;
|
|
130
132
|
tags?: string[] | undefined;
|
|
131
|
-
mode?: "auto" | "no_recall" | "minimal" | "full" | "graph_mode" | undefined;
|
|
132
133
|
codingContext?: {
|
|
133
|
-
projectId: string;
|
|
134
134
|
branch: string | null;
|
|
135
|
+
projectId: string;
|
|
135
136
|
defaultBranch: string | null;
|
|
136
137
|
rootPath: string;
|
|
137
138
|
} | null | undefined;
|
|
138
|
-
namespace?: string | undefined;
|
|
139
139
|
cwd?: string | undefined;
|
|
140
140
|
projectTag?: string | undefined;
|
|
141
141
|
topK?: number | undefined;
|
|
@@ -148,16 +148,16 @@ declare const recallRequestSchema: z.ZodObject<{
|
|
|
148
148
|
stateView?: boolean | undefined;
|
|
149
149
|
}, {
|
|
150
150
|
query: string;
|
|
151
|
+
namespace?: string | undefined;
|
|
152
|
+
mode?: "auto" | "no_recall" | "minimal" | "full" | "graph_mode" | undefined;
|
|
151
153
|
sessionKey?: string | undefined;
|
|
152
154
|
tags?: string[] | undefined;
|
|
153
|
-
mode?: "auto" | "no_recall" | "minimal" | "full" | "graph_mode" | undefined;
|
|
154
155
|
codingContext?: {
|
|
155
|
-
projectId: string;
|
|
156
156
|
branch: string | null;
|
|
157
|
+
projectId: string;
|
|
157
158
|
defaultBranch: string | null;
|
|
158
159
|
rootPath: string;
|
|
159
160
|
} | null | undefined;
|
|
160
|
-
namespace?: string | undefined;
|
|
161
161
|
cwd?: string | undefined;
|
|
162
162
|
projectTag?: string | undefined;
|
|
163
163
|
topK?: number | undefined;
|
|
@@ -173,11 +173,11 @@ declare const recallExplainRequestSchema: z.ZodObject<{
|
|
|
173
173
|
sessionKey: z.ZodOptional<z.ZodString>;
|
|
174
174
|
namespace: z.ZodOptional<z.ZodString>;
|
|
175
175
|
}, "strip", z.ZodTypeAny, {
|
|
176
|
-
sessionKey?: string | undefined;
|
|
177
176
|
namespace?: string | undefined;
|
|
178
|
-
}, {
|
|
179
177
|
sessionKey?: string | undefined;
|
|
178
|
+
}, {
|
|
180
179
|
namespace?: string | undefined;
|
|
180
|
+
sessionKey?: string | undefined;
|
|
181
181
|
}>;
|
|
182
182
|
/**
|
|
183
183
|
* Standalone "set coding context" request. Used by the HTTP endpoint
|
|
@@ -192,13 +192,13 @@ declare const setCodingContextRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
192
192
|
rootPath: z.ZodString;
|
|
193
193
|
defaultBranch: z.ZodNullable<z.ZodString>;
|
|
194
194
|
}, "strip", z.ZodTypeAny, {
|
|
195
|
-
projectId: string;
|
|
196
195
|
branch: string | null;
|
|
196
|
+
projectId: string;
|
|
197
197
|
defaultBranch: string | null;
|
|
198
198
|
rootPath: string;
|
|
199
199
|
}, {
|
|
200
|
-
projectId: string;
|
|
201
200
|
branch: string | null;
|
|
201
|
+
projectId: string;
|
|
202
202
|
defaultBranch: string | null;
|
|
203
203
|
rootPath: string;
|
|
204
204
|
}>>>;
|
|
@@ -211,8 +211,8 @@ declare const setCodingContextRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
211
211
|
}, "strip", z.ZodTypeAny, {
|
|
212
212
|
sessionKey: string;
|
|
213
213
|
codingContext?: {
|
|
214
|
-
projectId: string;
|
|
215
214
|
branch: string | null;
|
|
215
|
+
projectId: string;
|
|
216
216
|
defaultBranch: string | null;
|
|
217
217
|
rootPath: string;
|
|
218
218
|
} | null | undefined;
|
|
@@ -220,8 +220,8 @@ declare const setCodingContextRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
220
220
|
}, {
|
|
221
221
|
sessionKey: string;
|
|
222
222
|
codingContext?: {
|
|
223
|
-
projectId: string;
|
|
224
223
|
branch: string | null;
|
|
224
|
+
projectId: string;
|
|
225
225
|
defaultBranch: string | null;
|
|
226
226
|
rootPath: string;
|
|
227
227
|
} | null | undefined;
|
|
@@ -229,8 +229,8 @@ declare const setCodingContextRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
229
229
|
}>, {
|
|
230
230
|
sessionKey: string;
|
|
231
231
|
codingContext?: {
|
|
232
|
-
projectId: string;
|
|
233
232
|
branch: string | null;
|
|
233
|
+
projectId: string;
|
|
234
234
|
defaultBranch: string | null;
|
|
235
235
|
rootPath: string;
|
|
236
236
|
} | null | undefined;
|
|
@@ -238,8 +238,8 @@ declare const setCodingContextRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
238
238
|
}, {
|
|
239
239
|
sessionKey: string;
|
|
240
240
|
codingContext?: {
|
|
241
|
-
projectId: string;
|
|
242
241
|
branch: string | null;
|
|
242
|
+
projectId: string;
|
|
243
243
|
defaultBranch: string | null;
|
|
244
244
|
rootPath: string;
|
|
245
245
|
} | null | undefined;
|
|
@@ -265,9 +265,9 @@ declare const observeRequestSchema: z.ZodObject<{
|
|
|
265
265
|
}, "strip", z.ZodTypeAny, {
|
|
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;
|
|
@@ -275,9 +275,9 @@ declare const observeRequestSchema: z.ZodObject<{
|
|
|
275
275
|
}, {
|
|
276
276
|
kind: "snapshot" | "tool_result" | "retry" | "text" | "tool_call" | "patch" | "file_read" | "file_write" | "step_start" | "step_finish";
|
|
277
277
|
payload: Record<string, unknown>;
|
|
278
|
+
createdAt?: string | null | undefined;
|
|
278
279
|
filePath?: string | null | undefined;
|
|
279
280
|
toolName?: string | null | undefined;
|
|
280
|
-
createdAt?: string | null | undefined;
|
|
281
281
|
ordinal?: number | null | undefined;
|
|
282
282
|
tool_name?: string | null | undefined;
|
|
283
283
|
file_path?: string | null | undefined;
|
|
@@ -289,9 +289,9 @@ declare const observeRequestSchema: z.ZodObject<{
|
|
|
289
289
|
parts?: {
|
|
290
290
|
kind: "snapshot" | "tool_result" | "retry" | "text" | "tool_call" | "patch" | "file_read" | "file_write" | "step_start" | "step_finish";
|
|
291
291
|
payload: Record<string, unknown>;
|
|
292
|
+
createdAt?: string | null | undefined;
|
|
292
293
|
filePath?: string | null | undefined;
|
|
293
294
|
toolName?: string | null | undefined;
|
|
294
|
-
createdAt?: string | null | undefined;
|
|
295
295
|
ordinal?: number | null | undefined;
|
|
296
296
|
tool_name?: string | null | undefined;
|
|
297
297
|
file_path?: string | null | undefined;
|
|
@@ -305,9 +305,9 @@ declare const observeRequestSchema: z.ZodObject<{
|
|
|
305
305
|
parts?: {
|
|
306
306
|
kind: "snapshot" | "tool_result" | "retry" | "text" | "tool_call" | "patch" | "file_read" | "file_write" | "step_start" | "step_finish";
|
|
307
307
|
payload: Record<string, unknown>;
|
|
308
|
+
createdAt?: string | null | undefined;
|
|
308
309
|
filePath?: string | null | undefined;
|
|
309
310
|
toolName?: string | null | undefined;
|
|
310
|
-
createdAt?: string | null | undefined;
|
|
311
311
|
ordinal?: number | null | undefined;
|
|
312
312
|
tool_name?: string | null | undefined;
|
|
313
313
|
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;
|
|
@@ -365,9 +365,9 @@ declare const observeRequestSchema: z.ZodObject<{
|
|
|
365
365
|
parts?: {
|
|
366
366
|
kind: "snapshot" | "tool_result" | "retry" | "text" | "tool_call" | "patch" | "file_read" | "file_write" | "step_start" | "step_finish";
|
|
367
367
|
payload: Record<string, unknown>;
|
|
368
|
+
createdAt?: string | null | undefined;
|
|
368
369
|
filePath?: string | null | undefined;
|
|
369
370
|
toolName?: string | null | undefined;
|
|
370
|
-
createdAt?: string | null | undefined;
|
|
371
371
|
ordinal?: number | null | undefined;
|
|
372
372
|
tool_name?: string | null | undefined;
|
|
373
373
|
file_path?: string | null | undefined;
|
|
@@ -390,14 +390,14 @@ declare const deepRecallRequestSchema: z.ZodObject<{
|
|
|
390
390
|
sessionKey: z.ZodOptional<z.ZodString>;
|
|
391
391
|
}, "strip", z.ZodTypeAny, {
|
|
392
392
|
query: string;
|
|
393
|
+
namespace?: string | undefined;
|
|
393
394
|
sessionKey?: string | undefined;
|
|
394
395
|
maxSteps?: string | number | undefined;
|
|
395
|
-
namespace?: string | undefined;
|
|
396
396
|
}, {
|
|
397
397
|
query: string;
|
|
398
|
+
namespace?: string | undefined;
|
|
398
399
|
sessionKey?: string | undefined;
|
|
399
400
|
maxSteps?: string | number | undefined;
|
|
400
|
-
namespace?: string | undefined;
|
|
401
401
|
}>;
|
|
402
402
|
interface CategoryAliasCoercion {
|
|
403
403
|
from: string;
|
|
@@ -435,14 +435,14 @@ declare const memoryStoreRequestSchema: z.ZodObject<{
|
|
|
435
435
|
projectTag: z.ZodOptional<z.ZodString>;
|
|
436
436
|
}, "strip", z.ZodTypeAny, {
|
|
437
437
|
content: string;
|
|
438
|
-
|
|
438
|
+
namespace?: string | undefined;
|
|
439
439
|
sessionKey?: string | undefined;
|
|
440
|
-
tags?: string[] | undefined;
|
|
441
|
-
confidence?: number | undefined;
|
|
442
440
|
dryRun?: boolean | undefined;
|
|
443
441
|
category?: MemoryCategory | undefined;
|
|
442
|
+
confidence?: number | undefined;
|
|
443
|
+
tags?: string[] | undefined;
|
|
444
444
|
entityRef?: string | undefined;
|
|
445
|
-
|
|
445
|
+
schemaVersion?: number | undefined;
|
|
446
446
|
cwd?: string | undefined;
|
|
447
447
|
projectTag?: string | undefined;
|
|
448
448
|
ttl?: string | undefined;
|
|
@@ -450,14 +450,14 @@ declare const memoryStoreRequestSchema: z.ZodObject<{
|
|
|
450
450
|
sourceReason?: string | undefined;
|
|
451
451
|
}, {
|
|
452
452
|
content: string;
|
|
453
|
-
|
|
453
|
+
namespace?: string | undefined;
|
|
454
454
|
sessionKey?: string | undefined;
|
|
455
|
-
tags?: string[] | undefined;
|
|
456
|
-
confidence?: number | undefined;
|
|
457
455
|
dryRun?: boolean | undefined;
|
|
458
456
|
category?: MemoryCategory | undefined;
|
|
457
|
+
confidence?: number | undefined;
|
|
458
|
+
tags?: string[] | undefined;
|
|
459
459
|
entityRef?: string | undefined;
|
|
460
|
-
|
|
460
|
+
schemaVersion?: number | undefined;
|
|
461
461
|
cwd?: string | undefined;
|
|
462
462
|
projectTag?: string | undefined;
|
|
463
463
|
ttl?: string | undefined;
|
|
@@ -481,14 +481,14 @@ declare const suggestionSubmitRequestSchema: z.ZodObject<{
|
|
|
481
481
|
projectTag: z.ZodOptional<z.ZodString>;
|
|
482
482
|
}, "strip", z.ZodTypeAny, {
|
|
483
483
|
content: string;
|
|
484
|
-
|
|
484
|
+
namespace?: string | undefined;
|
|
485
485
|
sessionKey?: string | undefined;
|
|
486
|
-
tags?: string[] | undefined;
|
|
487
|
-
confidence?: number | undefined;
|
|
488
486
|
dryRun?: boolean | undefined;
|
|
489
487
|
category?: MemoryCategory | undefined;
|
|
488
|
+
confidence?: number | undefined;
|
|
489
|
+
tags?: string[] | undefined;
|
|
490
490
|
entityRef?: string | undefined;
|
|
491
|
-
|
|
491
|
+
schemaVersion?: number | undefined;
|
|
492
492
|
cwd?: string | undefined;
|
|
493
493
|
projectTag?: string | undefined;
|
|
494
494
|
ttl?: string | undefined;
|
|
@@ -496,14 +496,14 @@ declare const suggestionSubmitRequestSchema: z.ZodObject<{
|
|
|
496
496
|
sourceReason?: string | undefined;
|
|
497
497
|
}, {
|
|
498
498
|
content: string;
|
|
499
|
-
|
|
499
|
+
namespace?: string | undefined;
|
|
500
500
|
sessionKey?: string | undefined;
|
|
501
|
-
tags?: string[] | undefined;
|
|
502
|
-
confidence?: number | undefined;
|
|
503
501
|
dryRun?: boolean | undefined;
|
|
504
502
|
category?: MemoryCategory | undefined;
|
|
503
|
+
confidence?: number | undefined;
|
|
504
|
+
tags?: string[] | undefined;
|
|
505
505
|
entityRef?: string | undefined;
|
|
506
|
-
|
|
506
|
+
schemaVersion?: number | undefined;
|
|
507
507
|
cwd?: string | undefined;
|
|
508
508
|
projectTag?: string | undefined;
|
|
509
509
|
ttl?: string | undefined;
|
|
@@ -516,14 +516,14 @@ declare const reviewDispositionRequestSchema: z.ZodObject<{
|
|
|
516
516
|
reasonCode: z.ZodString;
|
|
517
517
|
namespace: z.ZodOptional<z.ZodString>;
|
|
518
518
|
}, "strip", z.ZodTypeAny, {
|
|
519
|
-
memoryId: string;
|
|
520
|
-
status: "superseded" | "active" | "pending_review" | "rejected" | "quarantined" | "archived";
|
|
521
519
|
reasonCode: string;
|
|
520
|
+
status: "active" | "pending_review" | "rejected" | "quarantined" | "superseded" | "archived";
|
|
521
|
+
memoryId: string;
|
|
522
522
|
namespace?: string | undefined;
|
|
523
523
|
}, {
|
|
524
|
-
memoryId: string;
|
|
525
|
-
status: "superseded" | "active" | "pending_review" | "rejected" | "quarantined" | "archived";
|
|
526
524
|
reasonCode: string;
|
|
525
|
+
status: "active" | "pending_review" | "rejected" | "quarantined" | "superseded" | "archived";
|
|
526
|
+
memoryId: string;
|
|
527
527
|
namespace?: string | undefined;
|
|
528
528
|
}>;
|
|
529
529
|
declare const trustZonePromoteRequestSchema: z.ZodObject<{
|
|
@@ -538,18 +538,18 @@ declare const trustZonePromoteRequestSchema: z.ZodObject<{
|
|
|
538
538
|
recordId: string;
|
|
539
539
|
targetZone: "working" | "trusted";
|
|
540
540
|
promotionReason: string;
|
|
541
|
-
|
|
541
|
+
namespace?: string | undefined;
|
|
542
542
|
summary?: string | undefined;
|
|
543
543
|
dryRun?: boolean | undefined;
|
|
544
|
-
|
|
544
|
+
recordedAt?: string | undefined;
|
|
545
545
|
}, {
|
|
546
546
|
recordId: string;
|
|
547
547
|
targetZone: "working" | "trusted";
|
|
548
548
|
promotionReason: string;
|
|
549
|
-
|
|
549
|
+
namespace?: string | undefined;
|
|
550
550
|
summary?: string | undefined;
|
|
551
551
|
dryRun?: boolean | undefined;
|
|
552
|
-
|
|
552
|
+
recordedAt?: string | undefined;
|
|
553
553
|
}>;
|
|
554
554
|
declare const trustZoneDemoSeedRequestSchema: z.ZodObject<{
|
|
555
555
|
scenario: z.ZodOptional<z.ZodString>;
|
|
@@ -557,14 +557,14 @@ declare const trustZoneDemoSeedRequestSchema: z.ZodObject<{
|
|
|
557
557
|
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
558
558
|
namespace: z.ZodOptional<z.ZodString>;
|
|
559
559
|
}, "strip", z.ZodTypeAny, {
|
|
560
|
-
recordedAt?: string | undefined;
|
|
561
|
-
dryRun?: boolean | undefined;
|
|
562
560
|
namespace?: string | undefined;
|
|
561
|
+
dryRun?: boolean | undefined;
|
|
562
|
+
recordedAt?: string | undefined;
|
|
563
563
|
scenario?: string | undefined;
|
|
564
564
|
}, {
|
|
565
|
-
recordedAt?: string | undefined;
|
|
566
|
-
dryRun?: boolean | undefined;
|
|
567
565
|
namespace?: string | undefined;
|
|
566
|
+
dryRun?: boolean | undefined;
|
|
567
|
+
recordedAt?: string | undefined;
|
|
568
568
|
scenario?: string | undefined;
|
|
569
569
|
}>;
|
|
570
570
|
declare const lcmSearchRequestSchema: z.ZodObject<{
|
|
@@ -575,14 +575,14 @@ declare const lcmSearchRequestSchema: z.ZodObject<{
|
|
|
575
575
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
576
576
|
}, "strip", z.ZodTypeAny, {
|
|
577
577
|
query: string;
|
|
578
|
-
sessionKey?: string | undefined;
|
|
579
578
|
namespace?: string | undefined;
|
|
579
|
+
sessionKey?: string | undefined;
|
|
580
580
|
limit?: number | undefined;
|
|
581
581
|
sessionPrefix?: string | undefined;
|
|
582
582
|
}, {
|
|
583
583
|
query: string;
|
|
584
|
-
sessionKey?: string | undefined;
|
|
585
584
|
namespace?: string | undefined;
|
|
585
|
+
sessionKey?: string | undefined;
|
|
586
586
|
limit?: number | undefined;
|
|
587
587
|
sessionPrefix?: string | undefined;
|
|
588
588
|
}>;
|
|
@@ -598,26 +598,26 @@ declare const lcmCompactionFlushRequestSchema: z.ZodEffects<z.ZodObject<{
|
|
|
598
598
|
namespaces: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
599
599
|
}, "strip", z.ZodTypeAny, {
|
|
600
600
|
sessionKey: string;
|
|
601
|
-
namespaces?: string[] | undefined;
|
|
602
601
|
namespace?: string | undefined;
|
|
602
|
+
namespaces?: string[] | undefined;
|
|
603
603
|
cwd?: string | undefined;
|
|
604
604
|
projectTag?: string | undefined;
|
|
605
605
|
}, {
|
|
606
606
|
sessionKey: string;
|
|
607
|
-
namespaces?: string[] | undefined;
|
|
608
607
|
namespace?: string | undefined;
|
|
608
|
+
namespaces?: string[] | undefined;
|
|
609
609
|
cwd?: string | undefined;
|
|
610
610
|
projectTag?: string | undefined;
|
|
611
611
|
}>, {
|
|
612
612
|
sessionKey: string;
|
|
613
|
-
namespaces?: string[] | undefined;
|
|
614
613
|
namespace?: string | undefined;
|
|
614
|
+
namespaces?: string[] | undefined;
|
|
615
615
|
cwd?: string | undefined;
|
|
616
616
|
projectTag?: string | undefined;
|
|
617
617
|
}, {
|
|
618
618
|
sessionKey: string;
|
|
619
|
-
namespaces?: string[] | undefined;
|
|
620
619
|
namespace?: string | undefined;
|
|
620
|
+
namespaces?: string[] | undefined;
|
|
621
621
|
cwd?: string | undefined;
|
|
622
622
|
projectTag?: string | undefined;
|
|
623
623
|
}>;
|
|
@@ -662,13 +662,13 @@ declare const daySummaryRequestSchema: z.ZodObject<{
|
|
|
662
662
|
namespace: z.ZodOptional<z.ZodString>;
|
|
663
663
|
timeZone: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
664
664
|
}, "strip", z.ZodTypeAny, {
|
|
665
|
-
sessionKey?: string | undefined;
|
|
666
665
|
namespace?: string | undefined;
|
|
666
|
+
sessionKey?: string | undefined;
|
|
667
667
|
memories?: string | undefined;
|
|
668
668
|
timeZone?: string | undefined;
|
|
669
669
|
}, {
|
|
670
|
-
sessionKey?: string | undefined;
|
|
671
670
|
namespace?: string | undefined;
|
|
671
|
+
sessionKey?: string | undefined;
|
|
672
672
|
memories?: string | undefined;
|
|
673
673
|
timeZone?: string | undefined;
|
|
674
674
|
}>;
|
|
@@ -704,24 +704,24 @@ declare const capsuleImportRequestSchema: z.ZodObject<{
|
|
|
704
704
|
passphrase: z.ZodOptional<z.ZodString>;
|
|
705
705
|
}, "strip", z.ZodTypeAny, {
|
|
706
706
|
archivePath: string;
|
|
707
|
-
mode?: "skip" | "overwrite" | "fork" | undefined;
|
|
708
707
|
namespace?: string | undefined;
|
|
708
|
+
mode?: "skip" | "overwrite" | "fork" | undefined;
|
|
709
709
|
passphrase?: string | undefined;
|
|
710
710
|
}, {
|
|
711
711
|
archivePath: string;
|
|
712
|
-
mode?: "skip" | "overwrite" | "fork" | undefined;
|
|
713
712
|
namespace?: string | undefined;
|
|
713
|
+
mode?: "skip" | "overwrite" | "fork" | undefined;
|
|
714
714
|
passphrase?: string | undefined;
|
|
715
715
|
}>;
|
|
716
716
|
declare const capsuleListRequestSchema: z.ZodObject<{
|
|
717
717
|
namespace: z.ZodOptional<z.ZodString>;
|
|
718
718
|
sessionKey: z.ZodOptional<z.ZodString>;
|
|
719
719
|
}, "strip", z.ZodTypeAny, {
|
|
720
|
-
sessionKey?: string | undefined;
|
|
721
720
|
namespace?: string | undefined;
|
|
722
|
-
}, {
|
|
723
721
|
sessionKey?: string | undefined;
|
|
722
|
+
}, {
|
|
724
723
|
namespace?: string | undefined;
|
|
724
|
+
sessionKey?: string | undefined;
|
|
725
725
|
}>;
|
|
726
726
|
declare const offlineSyncSnapshotRequestSchema: z.ZodObject<{
|
|
727
727
|
namespace: z.ZodOptional<z.ZodString>;
|
|
@@ -809,21 +809,21 @@ declare const offlineSyncFileContentRequestSchema: z.ZodObject<{
|
|
|
809
809
|
length: z.ZodOptional<z.ZodNumber>;
|
|
810
810
|
}, "strip", z.ZodTypeAny, {
|
|
811
811
|
path: string;
|
|
812
|
-
length?: number | undefined;
|
|
813
812
|
namespace?: string | undefined;
|
|
813
|
+
length?: number | undefined;
|
|
814
814
|
offset?: number | undefined;
|
|
815
815
|
includeTranscripts?: boolean | undefined;
|
|
816
816
|
}, {
|
|
817
817
|
path: string;
|
|
818
|
-
length?: number | undefined;
|
|
819
818
|
namespace?: string | undefined;
|
|
819
|
+
length?: number | undefined;
|
|
820
820
|
offset?: number | undefined;
|
|
821
821
|
includeTranscripts?: boolean | undefined;
|
|
822
822
|
}>;
|
|
823
823
|
declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
824
824
|
intendedAction: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
825
825
|
confidence: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodNumber>>, number | undefined, number | null | undefined>;
|
|
826
|
-
risk: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodEnum<["low", "medium", "high", "irreversible", "restricted"]>>>, NonNullable<"
|
|
826
|
+
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>;
|
|
827
827
|
contextReadiness: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodEnum<["none", "partial", "sufficient"]>>>, NonNullable<"partial" | "none" | "sufficient"> | undefined, "partial" | "none" | "sufficient" | null | undefined>;
|
|
828
828
|
currentContextScopes: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>, string[] | undefined, string[] | null | undefined>;
|
|
829
829
|
userRules: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -862,12 +862,12 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
862
862
|
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>;
|
|
863
863
|
safetyReasons: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>, string[] | undefined, string[] | null | undefined>;
|
|
864
864
|
}, "strict", z.ZodTypeAny, {
|
|
865
|
+
updated?: string | undefined;
|
|
866
|
+
created?: string | undefined;
|
|
865
867
|
source?: string | undefined;
|
|
868
|
+
confidence?: number | undefined;
|
|
866
869
|
stale?: boolean | undefined;
|
|
867
|
-
created?: string | undefined;
|
|
868
|
-
updated?: string | undefined;
|
|
869
870
|
scope?: string | undefined;
|
|
870
|
-
confidence?: number | undefined;
|
|
871
871
|
retrievalReason?: string | undefined;
|
|
872
872
|
safety?: NonNullable<"safe" | "requires-review" | "blocked"> | undefined;
|
|
873
873
|
safeToUse?: boolean | undefined;
|
|
@@ -876,12 +876,12 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
876
876
|
safetyReasons?: string[] | undefined;
|
|
877
877
|
userContextScopes?: string[] | undefined;
|
|
878
878
|
}, {
|
|
879
|
+
updated?: string | null | undefined;
|
|
880
|
+
created?: string | null | undefined;
|
|
879
881
|
source?: string | null | undefined;
|
|
882
|
+
confidence?: number | null | undefined;
|
|
880
883
|
stale?: boolean | null | undefined;
|
|
881
|
-
created?: string | null | undefined;
|
|
882
|
-
updated?: string | null | undefined;
|
|
883
884
|
scope?: string | null | undefined;
|
|
884
|
-
confidence?: number | null | undefined;
|
|
885
885
|
retrievalReason?: string | null | undefined;
|
|
886
886
|
safety?: "safe" | "requires-review" | "blocked" | null | undefined;
|
|
887
887
|
safeToUse?: boolean | null | undefined;
|
|
@@ -890,12 +890,12 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
890
890
|
safetyReasons?: string[] | null | undefined;
|
|
891
891
|
userContextScopes?: string[] | null | undefined;
|
|
892
892
|
}>, "many">>>, {
|
|
893
|
+
updated?: string | undefined;
|
|
894
|
+
created?: string | undefined;
|
|
893
895
|
source?: string | undefined;
|
|
896
|
+
confidence?: number | undefined;
|
|
894
897
|
stale?: boolean | undefined;
|
|
895
|
-
created?: string | undefined;
|
|
896
|
-
updated?: string | undefined;
|
|
897
898
|
scope?: string | undefined;
|
|
898
|
-
confidence?: number | undefined;
|
|
899
899
|
retrievalReason?: string | undefined;
|
|
900
900
|
safety?: NonNullable<"safe" | "requires-review" | "blocked"> | undefined;
|
|
901
901
|
safeToUse?: boolean | undefined;
|
|
@@ -904,12 +904,12 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
904
904
|
safetyReasons?: string[] | undefined;
|
|
905
905
|
userContextScopes?: string[] | undefined;
|
|
906
906
|
}[] | undefined, {
|
|
907
|
+
updated?: string | null | undefined;
|
|
908
|
+
created?: string | null | undefined;
|
|
907
909
|
source?: string | null | undefined;
|
|
910
|
+
confidence?: number | null | undefined;
|
|
908
911
|
stale?: boolean | null | undefined;
|
|
909
|
-
created?: string | null | undefined;
|
|
910
|
-
updated?: string | null | undefined;
|
|
911
912
|
scope?: string | null | undefined;
|
|
912
|
-
confidence?: number | null | undefined;
|
|
913
913
|
retrievalReason?: string | null | undefined;
|
|
914
914
|
safety?: "safe" | "requires-review" | "blocked" | null | undefined;
|
|
915
915
|
safeToUse?: boolean | null | undefined;
|
|
@@ -922,7 +922,7 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
922
922
|
confidence?: number | undefined;
|
|
923
923
|
currentContextScopes?: string[] | undefined;
|
|
924
924
|
intendedAction?: string | undefined;
|
|
925
|
-
risk?: NonNullable<"
|
|
925
|
+
risk?: NonNullable<"low" | "medium" | "high" | "irreversible" | "restricted"> | undefined;
|
|
926
926
|
contextReadiness?: NonNullable<"partial" | "none" | "sufficient"> | undefined;
|
|
927
927
|
userRules?: {
|
|
928
928
|
kind: "never" | "do-not-use-outside-this-context" | "ask-before" | "requires-escalation";
|
|
@@ -930,12 +930,12 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
930
930
|
matched?: boolean | undefined;
|
|
931
931
|
}[] | undefined;
|
|
932
932
|
retrievedMemories?: {
|
|
933
|
+
updated?: string | undefined;
|
|
934
|
+
created?: string | undefined;
|
|
933
935
|
source?: string | undefined;
|
|
936
|
+
confidence?: number | undefined;
|
|
934
937
|
stale?: boolean | undefined;
|
|
935
|
-
created?: string | undefined;
|
|
936
|
-
updated?: string | undefined;
|
|
937
938
|
scope?: string | undefined;
|
|
938
|
-
confidence?: number | undefined;
|
|
939
939
|
retrievalReason?: string | undefined;
|
|
940
940
|
safety?: NonNullable<"safe" | "requires-review" | "blocked"> | undefined;
|
|
941
941
|
safeToUse?: boolean | undefined;
|
|
@@ -948,7 +948,7 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
948
948
|
confidence?: number | null | undefined;
|
|
949
949
|
currentContextScopes?: string[] | null | undefined;
|
|
950
950
|
intendedAction?: string | null | undefined;
|
|
951
|
-
risk?: "
|
|
951
|
+
risk?: "low" | "medium" | "high" | "irreversible" | "restricted" | null | undefined;
|
|
952
952
|
contextReadiness?: "partial" | "none" | "sufficient" | null | undefined;
|
|
953
953
|
userRules?: {
|
|
954
954
|
kind: "never" | "do-not-use-outside-this-context" | "ask-before" | "requires-escalation";
|
|
@@ -956,12 +956,12 @@ declare const actionConfidenceRequestSchema: z.ZodObject<{
|
|
|
956
956
|
matched?: boolean | null | undefined;
|
|
957
957
|
}[] | null | undefined;
|
|
958
958
|
retrievedMemories?: {
|
|
959
|
+
updated?: string | null | undefined;
|
|
960
|
+
created?: string | null | undefined;
|
|
959
961
|
source?: string | null | undefined;
|
|
962
|
+
confidence?: number | null | undefined;
|
|
960
963
|
stale?: boolean | null | undefined;
|
|
961
|
-
created?: string | null | undefined;
|
|
962
|
-
updated?: string | null | undefined;
|
|
963
964
|
scope?: string | null | undefined;
|
|
964
|
-
confidence?: number | null | undefined;
|
|
965
965
|
retrievalReason?: string | null | undefined;
|
|
966
966
|
safety?: "safe" | "requires-review" | "blocked" | null | undefined;
|
|
967
967
|
safeToUse?: boolean | null | undefined;
|