@remnic/core 9.3.728 → 9.3.729

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/schemas.d.ts CHANGED
@@ -7,13 +7,13 @@ declare const MemoryActionEligibilityContextSchema: z.ZodObject<{
7
7
  importance: z.ZodNumber;
8
8
  source: z.ZodEnum<["extraction", "consolidation", "replay", "manual", "unknown"]>;
9
9
  }, "strict", z.ZodTypeAny, {
10
- source: "manual" | "extraction" | "consolidation" | "replay" | "unknown";
11
10
  confidence: number;
11
+ source: "unknown" | "manual" | "extraction" | "consolidation" | "replay";
12
12
  lifecycleState: "active" | "archived" | "candidate" | "validated" | "stale";
13
13
  importance: number;
14
14
  }, {
15
- source: "manual" | "extraction" | "consolidation" | "replay" | "unknown";
16
15
  confidence: number;
16
+ source: "unknown" | "manual" | "extraction" | "consolidation" | "replay";
17
17
  lifecycleState: "active" | "archived" | "candidate" | "validated" | "stale";
18
18
  importance: number;
19
19
  }>;
@@ -152,10 +152,10 @@ declare const ExtractedFactSchema: z.ZodEffects<z.ZodObject<{
152
152
  eventTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
153
153
  event_time: z.ZodNullable<z.ZodOptional<z.ZodString>>;
154
154
  }, "strip", z.ZodTypeAny, {
155
- tags: string[];
155
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
156
156
  content: string;
157
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
158
157
  confidence: number;
158
+ tags: string[];
159
159
  scope?: "project" | "global" | null | undefined;
160
160
  entityRef?: string | null | undefined;
161
161
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -184,10 +184,10 @@ declare const ExtractedFactSchema: z.ZodEffects<z.ZodObject<{
184
184
  eventTime?: string | null | undefined;
185
185
  event_time?: string | null | undefined;
186
186
  }, {
187
- tags: string[];
187
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
188
188
  content: string;
189
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
190
189
  confidence: number;
190
+ tags: string[];
191
191
  scope?: "project" | "global" | null | undefined;
192
192
  entityRef?: string | null | undefined;
193
193
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -216,10 +216,10 @@ declare const ExtractedFactSchema: z.ZodEffects<z.ZodObject<{
216
216
  eventTime?: string | null | undefined;
217
217
  event_time?: string | null | undefined;
218
218
  }>, {
219
- tags: string[];
219
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
220
220
  content: string;
221
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
222
221
  confidence: number;
222
+ tags: string[];
223
223
  scope?: "project" | "global" | null | undefined;
224
224
  entityRef?: string | null | undefined;
225
225
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -248,10 +248,10 @@ declare const ExtractedFactSchema: z.ZodEffects<z.ZodObject<{
248
248
  eventTime?: string | null | undefined;
249
249
  event_time?: string | null | undefined;
250
250
  }, {
251
- tags: string[];
251
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
252
252
  content: string;
253
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
254
253
  confidence: number;
254
+ tags: string[];
255
255
  scope?: "project" | "global" | null | undefined;
256
256
  entityRef?: string | null | undefined;
257
257
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -324,12 +324,12 @@ declare const ExtractedQuestionSchema: z.ZodObject<{
324
324
  context: z.ZodString;
325
325
  priority: z.ZodNumber;
326
326
  }, "strip", z.ZodTypeAny, {
327
- question: string;
328
327
  context: string;
328
+ question: string;
329
329
  priority: number;
330
330
  }, {
331
- question: string;
332
331
  context: string;
332
+ question: string;
333
333
  priority: number;
334
334
  }>;
335
335
  declare const ProactiveQuestionsResultSchema: z.ZodObject<{
@@ -338,24 +338,24 @@ declare const ProactiveQuestionsResultSchema: z.ZodObject<{
338
338
  context: z.ZodString;
339
339
  priority: z.ZodNumber;
340
340
  }, "strip", z.ZodTypeAny, {
341
- question: string;
342
341
  context: string;
342
+ question: string;
343
343
  priority: number;
344
344
  }, {
345
- question: string;
346
345
  context: string;
346
+ question: string;
347
347
  priority: number;
348
348
  }>, "many">;
349
349
  }, "strip", z.ZodTypeAny, {
350
350
  questions: {
351
- question: string;
352
351
  context: string;
352
+ question: string;
353
353
  priority: number;
354
354
  }[];
355
355
  }, {
356
356
  questions: {
357
- question: string;
358
357
  context: string;
358
+ question: string;
359
359
  priority: number;
360
360
  }[];
361
361
  }>;
@@ -475,10 +475,10 @@ declare const ProactiveExtractionResultSchema: z.ZodObject<{
475
475
  eventTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
476
476
  event_time: z.ZodNullable<z.ZodOptional<z.ZodString>>;
477
477
  }, "strip", z.ZodTypeAny, {
478
- tags: string[];
478
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
479
479
  content: string;
480
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
481
480
  confidence: number;
481
+ tags: string[];
482
482
  scope?: "project" | "global" | null | undefined;
483
483
  entityRef?: string | null | undefined;
484
484
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -507,10 +507,10 @@ declare const ProactiveExtractionResultSchema: z.ZodObject<{
507
507
  eventTime?: string | null | undefined;
508
508
  event_time?: string | null | undefined;
509
509
  }, {
510
- tags: string[];
510
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
511
511
  content: string;
512
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
513
512
  confidence: number;
513
+ tags: string[];
514
514
  scope?: "project" | "global" | null | undefined;
515
515
  entityRef?: string | null | undefined;
516
516
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -539,10 +539,10 @@ declare const ProactiveExtractionResultSchema: z.ZodObject<{
539
539
  eventTime?: string | null | undefined;
540
540
  event_time?: string | null | undefined;
541
541
  }>, {
542
- tags: string[];
542
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
543
543
  content: string;
544
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
545
544
  confidence: number;
545
+ tags: string[];
546
546
  scope?: "project" | "global" | null | undefined;
547
547
  entityRef?: string | null | undefined;
548
548
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -571,10 +571,10 @@ declare const ProactiveExtractionResultSchema: z.ZodObject<{
571
571
  eventTime?: string | null | undefined;
572
572
  event_time?: string | null | undefined;
573
573
  }, {
574
- tags: string[];
574
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
575
575
  content: string;
576
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
577
576
  confidence: number;
577
+ tags: string[];
578
578
  scope?: "project" | "global" | null | undefined;
579
579
  entityRef?: string | null | undefined;
580
580
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -661,10 +661,10 @@ declare const ProactiveExtractionResultSchema: z.ZodObject<{
661
661
  }>, "many">>>;
662
662
  }, "strip", z.ZodTypeAny, {
663
663
  facts: {
664
- tags: string[];
664
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
665
665
  content: string;
666
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
667
666
  confidence: number;
667
+ tags: string[];
668
668
  scope?: "project" | "global" | null | undefined;
669
669
  entityRef?: string | null | undefined;
670
670
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -713,10 +713,10 @@ declare const ProactiveExtractionResultSchema: z.ZodObject<{
713
713
  }[] | null | undefined;
714
714
  }, {
715
715
  facts: {
716
- tags: string[];
716
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
717
717
  content: string;
718
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
719
718
  confidence: number;
719
+ tags: string[];
720
720
  scope?: "project" | "global" | null | undefined;
721
721
  entityRef?: string | null | undefined;
722
722
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -864,10 +864,10 @@ declare const ExtractionResultSchema: z.ZodObject<{
864
864
  eventTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
865
865
  event_time: z.ZodNullable<z.ZodOptional<z.ZodString>>;
866
866
  }, "strip", z.ZodTypeAny, {
867
- tags: string[];
867
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
868
868
  content: string;
869
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
870
869
  confidence: number;
870
+ tags: string[];
871
871
  scope?: "project" | "global" | null | undefined;
872
872
  entityRef?: string | null | undefined;
873
873
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -896,10 +896,10 @@ declare const ExtractionResultSchema: z.ZodObject<{
896
896
  eventTime?: string | null | undefined;
897
897
  event_time?: string | null | undefined;
898
898
  }, {
899
- tags: string[];
899
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
900
900
  content: string;
901
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
902
901
  confidence: number;
902
+ tags: string[];
903
903
  scope?: "project" | "global" | null | undefined;
904
904
  entityRef?: string | null | undefined;
905
905
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -928,10 +928,10 @@ declare const ExtractionResultSchema: z.ZodObject<{
928
928
  eventTime?: string | null | undefined;
929
929
  event_time?: string | null | undefined;
930
930
  }>, {
931
- tags: string[];
931
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
932
932
  content: string;
933
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
934
933
  confidence: number;
934
+ tags: string[];
935
935
  scope?: "project" | "global" | null | undefined;
936
936
  entityRef?: string | null | undefined;
937
937
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -960,10 +960,10 @@ declare const ExtractionResultSchema: z.ZodObject<{
960
960
  eventTime?: string | null | undefined;
961
961
  event_time?: string | null | undefined;
962
962
  }, {
963
- tags: string[];
963
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
964
964
  content: string;
965
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
966
965
  confidence: number;
966
+ tags: string[];
967
967
  scope?: "project" | "global" | null | undefined;
968
968
  entityRef?: string | null | undefined;
969
969
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -1037,12 +1037,12 @@ declare const ExtractionResultSchema: z.ZodObject<{
1037
1037
  context: z.ZodString;
1038
1038
  priority: z.ZodNumber;
1039
1039
  }, "strip", z.ZodTypeAny, {
1040
- question: string;
1041
1040
  context: string;
1041
+ question: string;
1042
1042
  priority: number;
1043
1043
  }, {
1044
- question: string;
1045
1044
  context: string;
1045
+ question: string;
1046
1046
  priority: number;
1047
1047
  }>, "many">;
1048
1048
  identityReflection: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -1064,15 +1064,15 @@ declare const ExtractionResultSchema: z.ZodObject<{
1064
1064
  }>, "many">>>;
1065
1065
  }, "strip", z.ZodTypeAny, {
1066
1066
  questions: {
1067
- question: string;
1068
1067
  context: string;
1068
+ question: string;
1069
1069
  priority: number;
1070
1070
  }[];
1071
1071
  facts: {
1072
- tags: string[];
1072
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
1073
1073
  content: string;
1074
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
1075
1074
  confidence: number;
1075
+ tags: string[];
1076
1076
  scope?: "project" | "global" | null | undefined;
1077
1077
  entityRef?: string | null | undefined;
1078
1078
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -1122,15 +1122,15 @@ declare const ExtractionResultSchema: z.ZodObject<{
1122
1122
  identityReflection?: string | null | undefined;
1123
1123
  }, {
1124
1124
  questions: {
1125
- question: string;
1126
1125
  context: string;
1126
+ question: string;
1127
1127
  priority: number;
1128
1128
  }[];
1129
1129
  facts: {
1130
- tags: string[];
1130
+ category: "decision" | "fact" | "preference" | "correction" | "entity" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
1131
1131
  content: string;
1132
- category: "fact" | "preference" | "correction" | "entity" | "decision" | "relationship" | "principle" | "commitment" | "moment" | "skill" | "rule" | "procedure" | "reasoning_trace";
1133
1132
  confidence: number;
1133
+ tags: string[];
1134
1134
  scope?: "project" | "global" | null | undefined;
1135
1135
  entityRef?: string | null | undefined;
1136
1136
  structuredAttributes?: Record<string, string> | null | undefined;
@@ -1342,13 +1342,13 @@ declare const ContradictionVerificationSchema: z.ZodObject<{
1342
1342
  reasoning: z.ZodString;
1343
1343
  whichIsNewer: z.ZodEnum<["first", "second", "unclear"]>;
1344
1344
  }, "strip", z.ZodTypeAny, {
1345
- reasoning: string;
1346
1345
  confidence: number;
1346
+ reasoning: string;
1347
1347
  isContradiction: boolean;
1348
1348
  whichIsNewer: "second" | "first" | "unclear";
1349
1349
  }, {
1350
- reasoning: string;
1351
1350
  confidence: number;
1351
+ reasoning: string;
1352
1352
  isContradiction: boolean;
1353
1353
  whichIsNewer: "second" | "first" | "unclear";
1354
1354
  }>;
@@ -1443,8 +1443,8 @@ declare const BehaviorLoopAdjustmentSchema: z.ZodObject<{
1443
1443
  reason: z.ZodString;
1444
1444
  appliedAt: z.ZodString;
1445
1445
  }, "strip", z.ZodTypeAny, {
1446
- confidence: number;
1447
1446
  delta: number;
1447
+ confidence: number;
1448
1448
  reason: string;
1449
1449
  parameter: string;
1450
1450
  previousValue: number;
@@ -1452,8 +1452,8 @@ declare const BehaviorLoopAdjustmentSchema: z.ZodObject<{
1452
1452
  evidenceCount: number;
1453
1453
  appliedAt: string;
1454
1454
  }, {
1455
- confidence: number;
1456
1455
  delta: number;
1456
+ confidence: number;
1457
1457
  reason: string;
1458
1458
  parameter: string;
1459
1459
  previousValue: number;
@@ -1477,8 +1477,8 @@ declare const BehaviorLoopPolicyStateSchema: z.ZodObject<{
1477
1477
  reason: z.ZodString;
1478
1478
  appliedAt: z.ZodString;
1479
1479
  }, "strip", z.ZodTypeAny, {
1480
- confidence: number;
1481
1480
  delta: number;
1481
+ confidence: number;
1482
1482
  reason: string;
1483
1483
  parameter: string;
1484
1484
  previousValue: number;
@@ -1486,8 +1486,8 @@ declare const BehaviorLoopPolicyStateSchema: z.ZodObject<{
1486
1486
  evidenceCount: number;
1487
1487
  appliedAt: string;
1488
1488
  }, {
1489
- confidence: number;
1490
1489
  delta: number;
1490
+ confidence: number;
1491
1491
  reason: string;
1492
1492
  parameter: string;
1493
1493
  previousValue: number;
@@ -1504,8 +1504,8 @@ declare const BehaviorLoopPolicyStateSchema: z.ZodObject<{
1504
1504
  maxDeltaPerCycle: number;
1505
1505
  protectedParams: string[];
1506
1506
  adjustments: {
1507
- confidence: number;
1508
1507
  delta: number;
1508
+ confidence: number;
1509
1509
  reason: string;
1510
1510
  parameter: string;
1511
1511
  previousValue: number;
@@ -1521,8 +1521,8 @@ declare const BehaviorLoopPolicyStateSchema: z.ZodObject<{
1521
1521
  maxDeltaPerCycle: number;
1522
1522
  protectedParams: string[];
1523
1523
  adjustments: {
1524
- confidence: number;
1525
1524
  delta: number;
1525
+ confidence: number;
1526
1526
  reason: string;
1527
1527
  parameter: string;
1528
1528
  previousValue: number;
@@ -22,9 +22,9 @@ declare const SharedFeedbackEntrySchema: z.ZodObject<{
22
22
  reason: string;
23
23
  date: string;
24
24
  agent: string;
25
+ confidence?: number | undefined;
25
26
  workflow?: string | undefined;
26
27
  tags?: string[] | undefined;
27
- confidence?: number | undefined;
28
28
  severity?: "high" | "low" | "medium" | undefined;
29
29
  outcome?: string | undefined;
30
30
  refs?: string[] | undefined;
@@ -36,9 +36,9 @@ declare const SharedFeedbackEntrySchema: z.ZodObject<{
36
36
  reason: string;
37
37
  date: string;
38
38
  agent: string;
39
+ confidence?: number | undefined;
39
40
  workflow?: string | undefined;
40
41
  tags?: string[] | undefined;
41
- confidence?: number | undefined;
42
42
  severity?: "high" | "low" | "medium" | undefined;
43
43
  outcome?: string | undefined;
44
44
  refs?: string[] | undefined;
@@ -313,14 +313,14 @@ declare const CapsuleBlockSchema: z.ZodObject<{
313
313
  peerProfiles: boolean;
314
314
  }>;
315
315
  }, "strip", z.ZodTypeAny, {
316
- schemaVersion: string;
316
+ id: string;
317
317
  includes: {
318
318
  procedural: boolean;
319
319
  taxonomy: boolean;
320
320
  identityAnchors: boolean;
321
321
  peerProfiles: boolean;
322
322
  };
323
- id: string;
323
+ schemaVersion: string;
324
324
  version: string;
325
325
  description: string;
326
326
  parentCapsule: string | null;
@@ -334,14 +334,14 @@ declare const CapsuleBlockSchema: z.ZodObject<{
334
334
  directAnswerEnabled: boolean;
335
335
  };
336
336
  }, {
337
- schemaVersion: string;
337
+ id: string;
338
338
  includes: {
339
339
  procedural: boolean;
340
340
  taxonomy: boolean;
341
341
  identityAnchors: boolean;
342
342
  peerProfiles: boolean;
343
343
  };
344
- id: string;
344
+ schemaVersion: string;
345
345
  version: string;
346
346
  description: string;
347
347
  parentCapsule: string | null;
@@ -464,14 +464,14 @@ declare const ExportManifestV2Schema: z.ZodObject<{
464
464
  peerProfiles: boolean;
465
465
  }>;
466
466
  }, "strip", z.ZodTypeAny, {
467
- schemaVersion: string;
467
+ id: string;
468
468
  includes: {
469
469
  procedural: boolean;
470
470
  taxonomy: boolean;
471
471
  identityAnchors: boolean;
472
472
  peerProfiles: boolean;
473
473
  };
474
- id: string;
474
+ schemaVersion: string;
475
475
  version: string;
476
476
  description: string;
477
477
  parentCapsule: string | null;
@@ -485,14 +485,14 @@ declare const ExportManifestV2Schema: z.ZodObject<{
485
485
  directAnswerEnabled: boolean;
486
486
  };
487
487
  }, {
488
- schemaVersion: string;
488
+ id: string;
489
489
  includes: {
490
490
  procedural: boolean;
491
491
  taxonomy: boolean;
492
492
  identityAnchors: boolean;
493
493
  peerProfiles: boolean;
494
494
  };
495
- id: string;
495
+ schemaVersion: string;
496
496
  version: string;
497
497
  description: string;
498
498
  parentCapsule: string | null;
@@ -518,14 +518,14 @@ declare const ExportManifestV2Schema: z.ZodObject<{
518
518
  pluginVersion: string;
519
519
  includesTranscripts: boolean;
520
520
  capsule: {
521
- schemaVersion: string;
521
+ id: string;
522
522
  includes: {
523
523
  procedural: boolean;
524
524
  taxonomy: boolean;
525
525
  identityAnchors: boolean;
526
526
  peerProfiles: boolean;
527
527
  };
528
- id: string;
528
+ schemaVersion: string;
529
529
  version: string;
530
530
  description: string;
531
531
  parentCapsule: string | null;
@@ -551,14 +551,14 @@ declare const ExportManifestV2Schema: z.ZodObject<{
551
551
  pluginVersion: string;
552
552
  includesTranscripts: boolean;
553
553
  capsule: {
554
- schemaVersion: string;
554
+ id: string;
555
555
  includes: {
556
556
  procedural: boolean;
557
557
  taxonomy: boolean;
558
558
  identityAnchors: boolean;
559
559
  peerProfiles: boolean;
560
560
  };
561
- id: string;
561
+ schemaVersion: string;
562
562
  version: string;
563
563
  description: string;
564
564
  parentCapsule: string | null;
@@ -683,14 +683,14 @@ declare const ExportBundleV2Schema: z.ZodObject<{
683
683
  peerProfiles: boolean;
684
684
  }>;
685
685
  }, "strip", z.ZodTypeAny, {
686
- schemaVersion: string;
686
+ id: string;
687
687
  includes: {
688
688
  procedural: boolean;
689
689
  taxonomy: boolean;
690
690
  identityAnchors: boolean;
691
691
  peerProfiles: boolean;
692
692
  };
693
- id: string;
693
+ schemaVersion: string;
694
694
  version: string;
695
695
  description: string;
696
696
  parentCapsule: string | null;
@@ -704,14 +704,14 @@ declare const ExportBundleV2Schema: z.ZodObject<{
704
704
  directAnswerEnabled: boolean;
705
705
  };
706
706
  }, {
707
- schemaVersion: string;
707
+ id: string;
708
708
  includes: {
709
709
  procedural: boolean;
710
710
  taxonomy: boolean;
711
711
  identityAnchors: boolean;
712
712
  peerProfiles: boolean;
713
713
  };
714
- id: string;
714
+ schemaVersion: string;
715
715
  version: string;
716
716
  description: string;
717
717
  parentCapsule: string | null;
@@ -737,14 +737,14 @@ declare const ExportBundleV2Schema: z.ZodObject<{
737
737
  pluginVersion: string;
738
738
  includesTranscripts: boolean;
739
739
  capsule: {
740
- schemaVersion: string;
740
+ id: string;
741
741
  includes: {
742
742
  procedural: boolean;
743
743
  taxonomy: boolean;
744
744
  identityAnchors: boolean;
745
745
  peerProfiles: boolean;
746
746
  };
747
- id: string;
747
+ schemaVersion: string;
748
748
  version: string;
749
749
  description: string;
750
750
  parentCapsule: string | null;
@@ -770,14 +770,14 @@ declare const ExportBundleV2Schema: z.ZodObject<{
770
770
  pluginVersion: string;
771
771
  includesTranscripts: boolean;
772
772
  capsule: {
773
- schemaVersion: string;
773
+ id: string;
774
774
  includes: {
775
775
  procedural: boolean;
776
776
  taxonomy: boolean;
777
777
  identityAnchors: boolean;
778
778
  peerProfiles: boolean;
779
779
  };
780
- id: string;
780
+ schemaVersion: string;
781
781
  version: string;
782
782
  description: string;
783
783
  parentCapsule: string | null;
@@ -819,14 +819,14 @@ declare const ExportBundleV2Schema: z.ZodObject<{
819
819
  pluginVersion: string;
820
820
  includesTranscripts: boolean;
821
821
  capsule: {
822
- schemaVersion: string;
822
+ id: string;
823
823
  includes: {
824
824
  procedural: boolean;
825
825
  taxonomy: boolean;
826
826
  identityAnchors: boolean;
827
827
  peerProfiles: boolean;
828
828
  };
829
- id: string;
829
+ schemaVersion: string;
830
830
  version: string;
831
831
  description: string;
832
832
  parentCapsule: string | null;
@@ -858,14 +858,14 @@ declare const ExportBundleV2Schema: z.ZodObject<{
858
858
  pluginVersion: string;
859
859
  includesTranscripts: boolean;
860
860
  capsule: {
861
- schemaVersion: string;
861
+ id: string;
862
862
  includes: {
863
863
  procedural: boolean;
864
864
  taxonomy: boolean;
865
865
  identityAnchors: boolean;
866
866
  peerProfiles: boolean;
867
867
  };
868
- id: string;
868
+ schemaVersion: string;
869
869
  version: string;
870
870
  description: string;
871
871
  parentCapsule: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remnic/core",
3
- "version": "9.3.728",
3
+ "version": "9.3.729",
4
4
  "description": "Framework-agnostic Remnic memory engine — orchestrator, storage, extraction, search, trust zones",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -2990,7 +2990,7 @@
2990
2990
  "core"
2991
2991
  ],
2992
2992
  "peerDependencies": {
2993
- "@remnic/coding-graph": "^9.3.728"
2993
+ "@remnic/coding-graph": "^9.3.729"
2994
2994
  },
2995
2995
  "peerDependenciesMeta": {
2996
2996
  "@remnic/coding-graph": {