@effect-agent/storage-cloudflare 0.1.0-beta.85 → 0.1.0-beta.86

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist/DoMemoryStore.d.mts +3 -3
  2. package/dist/DoMemoryStore.mjs +2 -2
  3. package/dist/DoMemoryStore.mjs.map +1 -1
  4. package/dist/DoMessageDeliveryStore.d.mts +1 -1
  5. package/dist/DoMessageDeliveryStore.mjs +3 -3
  6. package/dist/DoMessageDeliveryStore.mjs.map +1 -1
  7. package/dist/DoScheduleStore.d.mts +1 -1
  8. package/dist/DoScheduleStore.mjs +3 -3
  9. package/dist/DoScheduleStore.mjs.map +1 -1
  10. package/dist/DoStorageError.mjs +1 -1
  11. package/dist/DoStorageError.mjs.map +1 -1
  12. package/dist/DoSubmissionLedger.d.mts +1 -1
  13. package/dist/DoSubmissionLedger.mjs +5 -5
  14. package/dist/DoSubmissionLedger.mjs.map +1 -1
  15. package/dist/DoSubscriptionStore.d.mts +1 -1
  16. package/dist/DoSubscriptionStore.mjs +3 -3
  17. package/dist/DoSubscriptionStore.mjs.map +1 -1
  18. package/dist/DoThreadStore.d.mts +2 -2
  19. package/dist/DoThreadStore.mjs +5 -5
  20. package/dist/DoThreadStore.mjs.map +1 -1
  21. package/dist/MemoryProtocol.d.mts +272 -272
  22. package/dist/MemoryProtocol.mjs +7 -7
  23. package/dist/MemoryProtocol.mjs.map +1 -1
  24. package/dist/PortProtocol.d.mts +327 -327
  25. package/dist/PortProtocol.mjs +3 -3
  26. package/dist/PortProtocol.mjs.map +1 -1
  27. package/dist/PortRouting.d.mts +2 -2
  28. package/dist/PortRouting.mjs +2 -2
  29. package/dist/PortRouting.mjs.map +1 -1
  30. package/dist/{do-journal-C18d6Yu0.mjs → do-journal-dJ01KSKf.mjs} +5 -5
  31. package/dist/do-journal-dJ01KSKf.mjs.map +1 -0
  32. package/package.json +1 -1
  33. package/src/DoMemoryStore.ts +2 -5
  34. package/src/DoMessageDeliveryStore.ts +3 -3
  35. package/src/DoScheduleStore.ts +4 -4
  36. package/src/DoStorageError.ts +1 -1
  37. package/src/DoSubmissionLedger.ts +7 -7
  38. package/src/DoSubscriptionStore.ts +5 -5
  39. package/src/DoThreadStore.ts +19 -19
  40. package/src/MemoryProtocol.ts +8 -12
  41. package/src/PortProtocol.ts +4 -4
  42. package/src/PortRouting.ts +3 -3
  43. package/src/internal/do-journal.ts +6 -6
  44. package/dist/do-journal-C18d6Yu0.mjs.map +0 -1
@@ -1,9 +1,9 @@
1
1
  import { Context, Effect, Schema } from "effect";
2
- import { MemoryConflict, MemoryMutationFailure, MemoryOperationConflict, MemoryReader, MemoryStorageError, MemoryWithdrawn, MemoryWriter } from "@effect-agent/core/MemoryStore";
3
- import * as MemoryNamespace from "@effect-agent/core/MemoryNamespace";
4
- import { MemoryRecallError, MemoryRecallLimits } from "@effect-agent/core/MemoryReference";
5
- import { MemoryIndexError, MemoryIndexSearch, SemanticMemoryProfile } from "@effect-agent/core/SemanticMemoryIndex";
6
- import { SemanticCandidateLimits, SemanticCandidateResult, SemanticMemoryError } from "@effect-agent/core/SemanticMemoryRevalidation";
2
+ import { MemoryConflict, MemoryMutationFailure, MemoryOperationConflict, MemoryReader, MemoryStorageError, MemoryWithdrawn, MemoryWriter } from "effect-agent/memory-store";
3
+ import * as MemoryNamespace from "effect-agent/memory-namespace";
4
+ import { MemoryRecallError, MemoryRecallLimits } from "effect-agent/memory-reference";
5
+ import { MemoryIndexError, MemoryIndexSearch, SemanticMemoryProfile } from "effect-agent/semantic-memory-index";
6
+ import { SemanticCandidateLimits, SemanticCandidateResult, SemanticMemoryError } from "effect-agent/semantic-memory-revalidation";
7
7
  declare namespace MemoryProtocol_d_exports {
8
8
  export { MemoryOwnerAuthorizer, MemoryOwnerFailure, MemoryOwnerIdentity, MemoryOwnerRequest, MemoryOwnerResponse, MemoryRpcError, MemoryRpcLimits, decodeMemoryWire, defaultMemoryRpcLimits, encodeMemoryWire, handleMemoryOwnerRequest, memoryWireBytes };
9
9
  }
@@ -705,7 +705,7 @@ declare const RevalidateRequest: Schema.TaggedStruct<"Revalidate", {
705
705
  readonly principal: Schema.brand<Schema.NonEmptyString, "@effect-agent/thread/Principal">;
706
706
  readonly deadlineMillis: Schema.Finite;
707
707
  readonly lookup: Schema.Union<readonly [Schema.TaggedStruct<"Found", {
708
- readonly passages: Schema.$Array<typeof import("@effect-agent/core/MemoryReference").MemoryPassage>;
708
+ readonly passages: Schema.$Array<typeof import("effect-agent/memory-reference").MemoryPassage>;
709
709
  }>, Schema.TaggedStruct<"NoMatch", {}>, Schema.TaggedStruct<"Unavailable", {
710
710
  readonly message: Schema.String;
711
711
  }>, Schema.TaggedStruct<"InsufficientFreshness", {
@@ -1395,7 +1395,7 @@ declare const ChangeRequest: Schema.TaggedStruct<"Change", {
1395
1395
  readonly operationId: Schema.NonEmptyString;
1396
1396
  readonly expectedRevision: Schema.NullOr<Schema.NonEmptyString>;
1397
1397
  readonly locator: Schema.NonEmptyString;
1398
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
1398
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
1399
1399
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
1400
1400
  }>, Schema.TaggedStruct<"Withdraw", {
1401
1401
  readonly key: {
@@ -2767,7 +2767,7 @@ declare const LookupResponse: Schema.TaggedStruct<"Lookup", {
2767
2767
  };
2768
2768
  };
2769
2769
  readonly lookup: Schema.Union<readonly [Schema.TaggedStruct<"Found", {
2770
- readonly passages: Schema.$Array<typeof import("@effect-agent/core/MemoryReference").MemoryPassage>;
2770
+ readonly passages: Schema.$Array<typeof import("effect-agent/memory-reference").MemoryPassage>;
2771
2771
  }>, Schema.TaggedStruct<"NoMatch", {}>, Schema.TaggedStruct<"Unavailable", {
2772
2772
  readonly message: Schema.String;
2773
2773
  }>, Schema.TaggedStruct<"InsufficientFreshness", {
@@ -3128,9 +3128,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
3128
3128
  readonly revision: string;
3129
3129
  };
3130
3130
  readonly generation: number;
3131
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
3131
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
3132
3132
  readonly modifiedAt: number;
3133
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
3133
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
3134
3134
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
3135
3135
  }, options?: Schema.MakeOptions | undefined): {
3136
3136
  readonly _tag: "ActiveMemoryDocument";
@@ -3147,9 +3147,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
3147
3147
  readonly revision: string;
3148
3148
  };
3149
3149
  readonly generation: number;
3150
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
3150
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
3151
3151
  readonly modifiedAt: number;
3152
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
3152
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
3153
3153
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
3154
3154
  };
3155
3155
  pipe<A>(this: A): A;
@@ -3189,9 +3189,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
3189
3189
  readonly revision: string;
3190
3190
  };
3191
3191
  readonly generation: number;
3192
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
3192
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
3193
3193
  readonly modifiedAt: number;
3194
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
3194
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
3195
3195
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
3196
3196
  }, {
3197
3197
  readonly _tag: "ActiveMemoryDocument";
@@ -3576,9 +3576,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
3576
3576
  readonly revision: Schema.NonEmptyString;
3577
3577
  }>;
3578
3578
  readonly generation: Schema.Int;
3579
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
3579
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
3580
3580
  readonly modifiedAt: Schema.Finite;
3581
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
3581
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
3582
3582
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
3583
3583
  }>], {
3584
3584
  readonly _tag: "ActiveMemoryDocument";
@@ -3963,9 +3963,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
3963
3963
  readonly revision: Schema.NonEmptyString;
3964
3964
  }>;
3965
3965
  readonly generation: Schema.Int;
3966
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
3966
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
3967
3967
  readonly modifiedAt: Schema.Finite;
3968
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
3968
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
3969
3969
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
3970
3970
  }>, never, never>;
3971
3971
  readonly "~effect/Schema/Schema": "~effect/Schema/Schema";
@@ -4315,9 +4315,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
4315
4315
  readonly revision: Schema.NonEmptyString;
4316
4316
  }>;
4317
4317
  readonly generation: Schema.Int;
4318
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
4318
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
4319
4319
  readonly modifiedAt: Schema.Finite;
4320
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
4320
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
4321
4321
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
4322
4322
  }>];
4323
4323
  readonly "~type.constructor.default": "no-default";
@@ -4340,9 +4340,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
4340
4340
  readonly revision: string;
4341
4341
  };
4342
4342
  readonly generation: number;
4343
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
4343
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
4344
4344
  readonly modifiedAt: number;
4345
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
4345
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
4346
4346
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
4347
4347
  }, readonly [Schema.TaggedStruct<"ActiveMemoryDocument", {
4348
4348
  readonly version: Schema.Literal<1>;
@@ -4689,9 +4689,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
4689
4689
  readonly revision: Schema.NonEmptyString;
4690
4690
  }>;
4691
4691
  readonly generation: Schema.Int;
4692
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
4692
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
4693
4693
  readonly modifiedAt: Schema.Finite;
4694
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
4694
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
4695
4695
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
4696
4696
  }>]>): Schema.decodeTo<Schema.declareConstructor<{
4697
4697
  readonly _tag: "ActiveMemoryDocument";
@@ -4708,9 +4708,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
4708
4708
  readonly revision: string;
4709
4709
  };
4710
4710
  readonly generation: number;
4711
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
4711
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
4712
4712
  readonly modifiedAt: number;
4713
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
4713
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
4714
4714
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
4715
4715
  }, {
4716
4716
  readonly _tag: "ActiveMemoryDocument";
@@ -5095,9 +5095,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
5095
5095
  readonly revision: Schema.NonEmptyString;
5096
5096
  }>;
5097
5097
  readonly generation: Schema.Int;
5098
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
5098
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
5099
5099
  readonly modifiedAt: Schema.Finite;
5100
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
5100
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
5101
5101
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
5102
5102
  }>], {
5103
5103
  readonly _tag: "ActiveMemoryDocument";
@@ -5482,9 +5482,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
5482
5482
  readonly revision: Schema.NonEmptyString;
5483
5483
  }>;
5484
5484
  readonly generation: Schema.Int;
5485
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
5485
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
5486
5486
  readonly modifiedAt: Schema.Finite;
5487
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
5487
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
5488
5488
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
5489
5489
  }>, never, never>;
5490
5490
  annotateKey(annotations: Schema.Annotations.Key<{
@@ -5502,9 +5502,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
5502
5502
  readonly revision: string;
5503
5503
  };
5504
5504
  readonly generation: number;
5505
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
5505
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
5506
5506
  readonly modifiedAt: number;
5507
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
5507
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
5508
5508
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
5509
5509
  }>): Schema.decodeTo<Schema.declareConstructor<{
5510
5510
  readonly _tag: "ActiveMemoryDocument";
@@ -5521,9 +5521,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
5521
5521
  readonly revision: string;
5522
5522
  };
5523
5523
  readonly generation: number;
5524
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
5524
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
5525
5525
  readonly modifiedAt: number;
5526
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
5526
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
5527
5527
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
5528
5528
  }, {
5529
5529
  readonly _tag: "ActiveMemoryDocument";
@@ -5908,9 +5908,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
5908
5908
  readonly revision: Schema.NonEmptyString;
5909
5909
  }>;
5910
5910
  readonly generation: Schema.Int;
5911
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
5911
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
5912
5912
  readonly modifiedAt: Schema.Finite;
5913
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
5913
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
5914
5914
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
5915
5915
  }>], {
5916
5916
  readonly _tag: "ActiveMemoryDocument";
@@ -6295,9 +6295,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
6295
6295
  readonly revision: Schema.NonEmptyString;
6296
6296
  }>;
6297
6297
  readonly generation: Schema.Int;
6298
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
6298
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
6299
6299
  readonly modifiedAt: Schema.Finite;
6300
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
6300
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
6301
6301
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
6302
6302
  }>, never, never>;
6303
6303
  check(checks_0: import("effect/SchemaAST").Check<{
@@ -6315,9 +6315,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
6315
6315
  readonly revision: string;
6316
6316
  };
6317
6317
  readonly generation: number;
6318
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
6318
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
6319
6319
  readonly modifiedAt: number;
6320
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
6320
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
6321
6321
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
6322
6322
  }>, ...checks: import("effect/SchemaAST").Check<{
6323
6323
  readonly _tag: "ActiveMemoryDocument";
@@ -6334,9 +6334,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
6334
6334
  readonly revision: string;
6335
6335
  };
6336
6336
  readonly generation: number;
6337
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
6337
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
6338
6338
  readonly modifiedAt: number;
6339
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
6339
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
6340
6340
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
6341
6341
  }>[]): Schema.decodeTo<Schema.declareConstructor<{
6342
6342
  readonly _tag: "ActiveMemoryDocument";
@@ -6353,9 +6353,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
6353
6353
  readonly revision: string;
6354
6354
  };
6355
6355
  readonly generation: number;
6356
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
6356
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
6357
6357
  readonly modifiedAt: number;
6358
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
6358
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
6359
6359
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
6360
6360
  }, {
6361
6361
  readonly _tag: "ActiveMemoryDocument";
@@ -6740,9 +6740,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
6740
6740
  readonly revision: Schema.NonEmptyString;
6741
6741
  }>;
6742
6742
  readonly generation: Schema.Int;
6743
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
6743
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
6744
6744
  readonly modifiedAt: Schema.Finite;
6745
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
6745
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
6746
6746
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
6747
6747
  }>], {
6748
6748
  readonly _tag: "ActiveMemoryDocument";
@@ -7127,9 +7127,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
7127
7127
  readonly revision: Schema.NonEmptyString;
7128
7128
  }>;
7129
7129
  readonly generation: Schema.Int;
7130
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
7130
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
7131
7131
  readonly modifiedAt: Schema.Finite;
7132
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
7132
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
7133
7133
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
7134
7134
  }>, never, never>;
7135
7135
  rebuild(ast: import("effect/SchemaAST").Declaration): Schema.decodeTo<Schema.declareConstructor<{
@@ -7147,9 +7147,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
7147
7147
  readonly revision: string;
7148
7148
  };
7149
7149
  readonly generation: number;
7150
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
7150
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
7151
7151
  readonly modifiedAt: number;
7152
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
7152
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
7153
7153
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
7154
7154
  }, {
7155
7155
  readonly _tag: "ActiveMemoryDocument";
@@ -7534,9 +7534,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
7534
7534
  readonly revision: Schema.NonEmptyString;
7535
7535
  }>;
7536
7536
  readonly generation: Schema.Int;
7537
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
7537
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
7538
7538
  readonly modifiedAt: Schema.Finite;
7539
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
7539
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
7540
7540
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
7541
7541
  }>], {
7542
7542
  readonly _tag: "ActiveMemoryDocument";
@@ -7921,9 +7921,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
7921
7921
  readonly revision: Schema.NonEmptyString;
7922
7922
  }>;
7923
7923
  readonly generation: Schema.Int;
7924
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
7924
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
7925
7925
  readonly modifiedAt: Schema.Finite;
7926
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
7926
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
7927
7927
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
7928
7928
  }>, never, never>;
7929
7929
  make(input: {
@@ -7941,9 +7941,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
7941
7941
  readonly revision: string;
7942
7942
  };
7943
7943
  readonly generation: number;
7944
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
7944
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
7945
7945
  readonly modifiedAt: number;
7946
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
7946
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
7947
7947
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
7948
7948
  }, options?: Schema.MakeOptions): {
7949
7949
  readonly _tag: "ActiveMemoryDocument";
@@ -7960,9 +7960,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
7960
7960
  readonly revision: string;
7961
7961
  };
7962
7962
  readonly generation: number;
7963
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
7963
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
7964
7964
  readonly modifiedAt: number;
7965
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
7965
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
7966
7966
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
7967
7967
  };
7968
7968
  makeOption(input: {
@@ -7980,9 +7980,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
7980
7980
  readonly revision: string;
7981
7981
  };
7982
7982
  readonly generation: number;
7983
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
7983
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
7984
7984
  readonly modifiedAt: number;
7985
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
7985
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
7986
7986
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
7987
7987
  }, options?: Schema.MakeOptions): import("effect/Option").Option<{
7988
7988
  readonly _tag: "ActiveMemoryDocument";
@@ -7999,9 +7999,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
7999
7999
  readonly revision: string;
8000
8000
  };
8001
8001
  readonly generation: number;
8002
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
8002
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
8003
8003
  readonly modifiedAt: number;
8004
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
8004
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
8005
8005
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
8006
8006
  }>;
8007
8007
  makeEffect(input: {
@@ -8019,9 +8019,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
8019
8019
  readonly revision: string;
8020
8020
  };
8021
8021
  readonly generation: number;
8022
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
8022
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
8023
8023
  readonly modifiedAt: number;
8024
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
8024
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
8025
8025
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
8026
8026
  }, options?: Schema.MakeOptions): Effect.Effect<{
8027
8027
  readonly _tag: "ActiveMemoryDocument";
@@ -8038,9 +8038,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
8038
8038
  readonly revision: string;
8039
8039
  };
8040
8040
  readonly generation: number;
8041
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
8041
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
8042
8042
  readonly modifiedAt: number;
8043
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
8043
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
8044
8044
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
8045
8045
  }, import("effect/SchemaIssue").Issue, never>;
8046
8046
  readonly Type: {
@@ -8058,9 +8058,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
8058
8058
  readonly revision: string;
8059
8059
  };
8060
8060
  readonly generation: number;
8061
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
8061
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
8062
8062
  readonly modifiedAt: number;
8063
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
8063
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
8064
8064
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
8065
8065
  };
8066
8066
  readonly Encoded: {
@@ -8119,9 +8119,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
8119
8119
  readonly revision: string;
8120
8120
  };
8121
8121
  readonly generation: number;
8122
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
8122
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
8123
8123
  readonly modifiedAt: number;
8124
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
8124
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
8125
8125
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
8126
8126
  };
8127
8127
  readonly "~type.make": {
@@ -8139,9 +8139,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
8139
8139
  readonly revision: string;
8140
8140
  };
8141
8141
  readonly generation: number;
8142
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
8142
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
8143
8143
  readonly modifiedAt: number;
8144
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
8144
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
8145
8145
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
8146
8146
  };
8147
8147
  readonly Iso: {
@@ -8530,9 +8530,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
8530
8530
  readonly revision: Schema.NonEmptyString;
8531
8531
  }>;
8532
8532
  readonly generation: Schema.Int;
8533
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
8533
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
8534
8534
  readonly modifiedAt: Schema.Finite;
8535
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
8535
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
8536
8536
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
8537
8537
  };
8538
8538
  mapFields<To extends Schema.Struct.Fields>(f: (fields: {
@@ -8881,9 +8881,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
8881
8881
  readonly revision: Schema.NonEmptyString;
8882
8882
  }>;
8883
8883
  readonly generation: Schema.Int;
8884
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
8884
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
8885
8885
  readonly modifiedAt: Schema.Finite;
8886
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
8886
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
8887
8887
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
8888
8888
  }) => To, options?: {
8889
8889
  readonly unsafePreserveChecks?: boolean | undefined;
@@ -9235,9 +9235,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
9235
9235
  readonly revision: Schema.NonEmptyString;
9236
9236
  }>;
9237
9237
  readonly generation: Schema.Int;
9238
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
9238
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
9239
9239
  readonly modifiedAt: Schema.Finite;
9240
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
9240
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
9241
9241
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
9242
9242
  } & NewFields : Omit<{
9243
9243
  readonly _tag: Schema.tag<"ActiveMemoryDocument">;
@@ -9585,9 +9585,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
9585
9585
  readonly revision: Schema.NonEmptyString;
9586
9586
  }>;
9587
9587
  readonly generation: Schema.Int;
9588
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
9588
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
9589
9589
  readonly modifiedAt: Schema.Finite;
9590
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
9590
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
9591
9591
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
9592
9592
  }, ("_tag" | "content" | "generation" | "key" | "modifiedAt" | "predecessor" | "scopes" | "source" | "version") & keyof NewFields> & NewFields) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>]> | undefined): [Extended] extends [never] ? "Missing `Self` generic - use `class Self extends Base.extend<Self>(...)`" : Schema.Class<Extended, Schema.Struct<((("_tag" | "content" | "generation" | "key" | "modifiedAt" | "predecessor" | "scopes" | "source" | "version") & keyof NewFields extends never ? {
9593
9593
  readonly _tag: Schema.tag<"ActiveMemoryDocument">;
@@ -9935,9 +9935,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
9935
9935
  readonly revision: Schema.NonEmptyString;
9936
9936
  }>;
9937
9937
  readonly generation: Schema.Int;
9938
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
9938
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
9939
9939
  readonly modifiedAt: Schema.Finite;
9940
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
9940
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
9941
9941
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
9942
9942
  } & NewFields : Omit<{
9943
9943
  readonly _tag: Schema.tag<"ActiveMemoryDocument">;
@@ -10285,9 +10285,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
10285
10285
  readonly revision: Schema.NonEmptyString;
10286
10286
  }>;
10287
10287
  readonly generation: Schema.Int;
10288
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
10288
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
10289
10289
  readonly modifiedAt: Schema.Finite;
10290
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
10290
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
10291
10291
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
10292
10292
  }, ("_tag" | "content" | "generation" | "key" | "modifiedAt" | "predecessor" | "scopes" | "source" | "version") & keyof NewFields> & NewFields) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>, {
10293
10293
  readonly _tag: "ActiveMemoryDocument";
@@ -10304,9 +10304,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
10304
10304
  readonly revision: string;
10305
10305
  };
10306
10306
  readonly generation: number;
10307
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
10307
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
10308
10308
  readonly modifiedAt: number;
10309
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
10309
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
10310
10310
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
10311
10311
  } & Brand> & Pick<Static, Exclude<keyof Static, keyof Schema.Class<Extended_1, Schema.Struct<((keyof S["fields"] & keyof NewFields_2 extends never ? S["fields"] & NewFields_2 : Omit<S["fields"], keyof S["fields"] & keyof NewFields_2> & NewFields_2) extends (infer T_5) ? { [K in keyof T_5]: T_5[K]; } : never) extends (infer T_4) ? { [K in keyof T_4]: T_4[K]; } : never>, Self & Brand_1>>>;
10312
10312
  <Extension extends Schema.Struct<Schema.Struct.Fields>>(schema: Extension, annotations?: Schema.Annotations.Declaration<Extended, readonly [Schema.Struct<((("_tag" | "content" | "generation" | "key" | "modifiedAt" | "predecessor" | "scopes" | "source" | "version") & keyof Extension["fields"] extends never ? {
@@ -10655,9 +10655,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
10655
10655
  readonly revision: Schema.NonEmptyString;
10656
10656
  }>;
10657
10657
  readonly generation: Schema.Int;
10658
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
10658
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
10659
10659
  readonly modifiedAt: Schema.Finite;
10660
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
10660
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
10661
10661
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
10662
10662
  } & Extension["fields"] : Omit<{
10663
10663
  readonly _tag: Schema.tag<"ActiveMemoryDocument">;
@@ -11005,9 +11005,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
11005
11005
  readonly revision: Schema.NonEmptyString;
11006
11006
  }>;
11007
11007
  readonly generation: Schema.Int;
11008
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
11008
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
11009
11009
  readonly modifiedAt: Schema.Finite;
11010
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
11010
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
11011
11011
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
11012
11012
  }, ("_tag" | "content" | "generation" | "key" | "modifiedAt" | "predecessor" | "scopes" | "source" | "version") & keyof Extension["fields"]> & Extension["fields"]) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>]> | undefined): [Extended] extends [never] ? "Missing `Self` generic - use `class Self extends Base.extend<Self>(...)`" : Schema.Class<Extended, Schema.Struct<((("_tag" | "content" | "generation" | "key" | "modifiedAt" | "predecessor" | "scopes" | "source" | "version") & keyof Extension["fields"] extends never ? {
11013
11013
  readonly _tag: Schema.tag<"ActiveMemoryDocument">;
@@ -11355,9 +11355,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
11355
11355
  readonly revision: Schema.NonEmptyString;
11356
11356
  }>;
11357
11357
  readonly generation: Schema.Int;
11358
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
11358
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
11359
11359
  readonly modifiedAt: Schema.Finite;
11360
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
11360
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
11361
11361
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
11362
11362
  } & Extension["fields"] : Omit<{
11363
11363
  readonly _tag: Schema.tag<"ActiveMemoryDocument">;
@@ -11705,9 +11705,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
11705
11705
  readonly revision: Schema.NonEmptyString;
11706
11706
  }>;
11707
11707
  readonly generation: Schema.Int;
11708
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
11708
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
11709
11709
  readonly modifiedAt: Schema.Finite;
11710
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
11710
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
11711
11711
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
11712
11712
  }, ("_tag" | "content" | "generation" | "key" | "modifiedAt" | "predecessor" | "scopes" | "source" | "version") & keyof Extension["fields"]> & Extension["fields"]) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>, {
11713
11713
  readonly _tag: "ActiveMemoryDocument";
@@ -11724,9 +11724,9 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
11724
11724
  readonly revision: string;
11725
11725
  };
11726
11726
  readonly generation: number;
11727
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
11727
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
11728
11728
  readonly modifiedAt: number;
11729
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
11729
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
11730
11730
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
11731
11731
  } & Brand> & Pick<Static, Exclude<keyof Static, keyof Schema.Class<Extended_1, Schema.Struct<((keyof S["fields"] & keyof Extension_1["fields"] extends never ? S["fields"] & Extension_1["fields"] : Omit<S["fields"], keyof S["fields"] & keyof Extension_1["fields"]> & Extension_1["fields"]) extends (infer T_5) ? { [K in keyof T_5]: T_5[K]; } : never) extends (infer T_4) ? { [K in keyof T_4]: T_4[K]; } : never>, Self & Brand_1>>>;
11732
11732
  };
@@ -11746,7 +11746,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
11746
11746
  readonly revision: string;
11747
11747
  };
11748
11748
  readonly generation: number;
11749
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
11749
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
11750
11750
  readonly modifiedAt: number;
11751
11751
  readonly reason: string;
11752
11752
  }, options?: Schema.MakeOptions | undefined): {
@@ -11764,7 +11764,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
11764
11764
  readonly revision: string;
11765
11765
  };
11766
11766
  readonly generation: number;
11767
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
11767
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
11768
11768
  readonly modifiedAt: number;
11769
11769
  readonly reason: string;
11770
11770
  };
@@ -11805,7 +11805,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
11805
11805
  readonly revision: string;
11806
11806
  };
11807
11807
  readonly generation: number;
11808
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
11808
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
11809
11809
  readonly modifiedAt: number;
11810
11810
  readonly reason: string;
11811
11811
  }, {
@@ -12175,7 +12175,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
12175
12175
  readonly revision: Schema.NonEmptyString;
12176
12176
  }>;
12177
12177
  readonly generation: Schema.Int;
12178
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
12178
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
12179
12179
  readonly modifiedAt: Schema.Finite;
12180
12180
  readonly reason: Schema.String;
12181
12181
  }>], {
@@ -12545,7 +12545,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
12545
12545
  readonly revision: Schema.NonEmptyString;
12546
12546
  }>;
12547
12547
  readonly generation: Schema.Int;
12548
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
12548
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
12549
12549
  readonly modifiedAt: Schema.Finite;
12550
12550
  readonly reason: Schema.String;
12551
12551
  }>, never, never>;
@@ -12896,7 +12896,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
12896
12896
  readonly revision: Schema.NonEmptyString;
12897
12897
  }>;
12898
12898
  readonly generation: Schema.Int;
12899
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
12899
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
12900
12900
  readonly modifiedAt: Schema.Finite;
12901
12901
  readonly reason: Schema.String;
12902
12902
  }>];
@@ -12920,7 +12920,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
12920
12920
  readonly revision: string;
12921
12921
  };
12922
12922
  readonly generation: number;
12923
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
12923
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
12924
12924
  readonly modifiedAt: number;
12925
12925
  readonly reason: string;
12926
12926
  }, readonly [Schema.TaggedStruct<"WithdrawnMemoryDocument", {
@@ -13268,7 +13268,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
13268
13268
  readonly revision: Schema.NonEmptyString;
13269
13269
  }>;
13270
13270
  readonly generation: Schema.Int;
13271
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
13271
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
13272
13272
  readonly modifiedAt: Schema.Finite;
13273
13273
  readonly reason: Schema.String;
13274
13274
  }>]>): Schema.decodeTo<Schema.declareConstructor<{
@@ -13286,7 +13286,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
13286
13286
  readonly revision: string;
13287
13287
  };
13288
13288
  readonly generation: number;
13289
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
13289
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
13290
13290
  readonly modifiedAt: number;
13291
13291
  readonly reason: string;
13292
13292
  }, {
@@ -13656,7 +13656,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
13656
13656
  readonly revision: Schema.NonEmptyString;
13657
13657
  }>;
13658
13658
  readonly generation: Schema.Int;
13659
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
13659
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
13660
13660
  readonly modifiedAt: Schema.Finite;
13661
13661
  readonly reason: Schema.String;
13662
13662
  }>], {
@@ -14026,7 +14026,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
14026
14026
  readonly revision: Schema.NonEmptyString;
14027
14027
  }>;
14028
14028
  readonly generation: Schema.Int;
14029
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
14029
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
14030
14030
  readonly modifiedAt: Schema.Finite;
14031
14031
  readonly reason: Schema.String;
14032
14032
  }>, never, never>;
@@ -14045,7 +14045,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
14045
14045
  readonly revision: string;
14046
14046
  };
14047
14047
  readonly generation: number;
14048
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
14048
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
14049
14049
  readonly modifiedAt: number;
14050
14050
  readonly reason: string;
14051
14051
  }>): Schema.decodeTo<Schema.declareConstructor<{
@@ -14063,7 +14063,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
14063
14063
  readonly revision: string;
14064
14064
  };
14065
14065
  readonly generation: number;
14066
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
14066
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
14067
14067
  readonly modifiedAt: number;
14068
14068
  readonly reason: string;
14069
14069
  }, {
@@ -14433,7 +14433,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
14433
14433
  readonly revision: Schema.NonEmptyString;
14434
14434
  }>;
14435
14435
  readonly generation: Schema.Int;
14436
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
14436
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
14437
14437
  readonly modifiedAt: Schema.Finite;
14438
14438
  readonly reason: Schema.String;
14439
14439
  }>], {
@@ -14803,7 +14803,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
14803
14803
  readonly revision: Schema.NonEmptyString;
14804
14804
  }>;
14805
14805
  readonly generation: Schema.Int;
14806
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
14806
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
14807
14807
  readonly modifiedAt: Schema.Finite;
14808
14808
  readonly reason: Schema.String;
14809
14809
  }>, never, never>;
@@ -14822,7 +14822,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
14822
14822
  readonly revision: string;
14823
14823
  };
14824
14824
  readonly generation: number;
14825
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
14825
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
14826
14826
  readonly modifiedAt: number;
14827
14827
  readonly reason: string;
14828
14828
  }>, ...checks: import("effect/SchemaAST").Check<{
@@ -14840,7 +14840,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
14840
14840
  readonly revision: string;
14841
14841
  };
14842
14842
  readonly generation: number;
14843
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
14843
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
14844
14844
  readonly modifiedAt: number;
14845
14845
  readonly reason: string;
14846
14846
  }>[]): Schema.decodeTo<Schema.declareConstructor<{
@@ -14858,7 +14858,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
14858
14858
  readonly revision: string;
14859
14859
  };
14860
14860
  readonly generation: number;
14861
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
14861
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
14862
14862
  readonly modifiedAt: number;
14863
14863
  readonly reason: string;
14864
14864
  }, {
@@ -15228,7 +15228,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
15228
15228
  readonly revision: Schema.NonEmptyString;
15229
15229
  }>;
15230
15230
  readonly generation: Schema.Int;
15231
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
15231
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
15232
15232
  readonly modifiedAt: Schema.Finite;
15233
15233
  readonly reason: Schema.String;
15234
15234
  }>], {
@@ -15598,7 +15598,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
15598
15598
  readonly revision: Schema.NonEmptyString;
15599
15599
  }>;
15600
15600
  readonly generation: Schema.Int;
15601
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
15601
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
15602
15602
  readonly modifiedAt: Schema.Finite;
15603
15603
  readonly reason: Schema.String;
15604
15604
  }>, never, never>;
@@ -15617,7 +15617,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
15617
15617
  readonly revision: string;
15618
15618
  };
15619
15619
  readonly generation: number;
15620
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
15620
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
15621
15621
  readonly modifiedAt: number;
15622
15622
  readonly reason: string;
15623
15623
  }, {
@@ -15987,7 +15987,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
15987
15987
  readonly revision: Schema.NonEmptyString;
15988
15988
  }>;
15989
15989
  readonly generation: Schema.Int;
15990
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
15990
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
15991
15991
  readonly modifiedAt: Schema.Finite;
15992
15992
  readonly reason: Schema.String;
15993
15993
  }>], {
@@ -16357,7 +16357,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
16357
16357
  readonly revision: Schema.NonEmptyString;
16358
16358
  }>;
16359
16359
  readonly generation: Schema.Int;
16360
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
16360
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
16361
16361
  readonly modifiedAt: Schema.Finite;
16362
16362
  readonly reason: Schema.String;
16363
16363
  }>, never, never>;
@@ -16376,7 +16376,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
16376
16376
  readonly revision: string;
16377
16377
  };
16378
16378
  readonly generation: number;
16379
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
16379
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
16380
16380
  readonly modifiedAt: number;
16381
16381
  readonly reason: string;
16382
16382
  }, options?: Schema.MakeOptions): {
@@ -16394,7 +16394,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
16394
16394
  readonly revision: string;
16395
16395
  };
16396
16396
  readonly generation: number;
16397
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
16397
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
16398
16398
  readonly modifiedAt: number;
16399
16399
  readonly reason: string;
16400
16400
  };
@@ -16413,7 +16413,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
16413
16413
  readonly revision: string;
16414
16414
  };
16415
16415
  readonly generation: number;
16416
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
16416
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
16417
16417
  readonly modifiedAt: number;
16418
16418
  readonly reason: string;
16419
16419
  }, options?: Schema.MakeOptions): import("effect/Option").Option<{
@@ -16431,7 +16431,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
16431
16431
  readonly revision: string;
16432
16432
  };
16433
16433
  readonly generation: number;
16434
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
16434
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
16435
16435
  readonly modifiedAt: number;
16436
16436
  readonly reason: string;
16437
16437
  }>;
@@ -16450,7 +16450,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
16450
16450
  readonly revision: string;
16451
16451
  };
16452
16452
  readonly generation: number;
16453
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
16453
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
16454
16454
  readonly modifiedAt: number;
16455
16455
  readonly reason: string;
16456
16456
  }, options?: Schema.MakeOptions): Effect.Effect<{
@@ -16468,7 +16468,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
16468
16468
  readonly revision: string;
16469
16469
  };
16470
16470
  readonly generation: number;
16471
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
16471
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
16472
16472
  readonly modifiedAt: number;
16473
16473
  readonly reason: string;
16474
16474
  }, import("effect/SchemaIssue").Issue, never>;
@@ -16487,7 +16487,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
16487
16487
  readonly revision: string;
16488
16488
  };
16489
16489
  readonly generation: number;
16490
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
16490
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
16491
16491
  readonly modifiedAt: number;
16492
16492
  readonly reason: string;
16493
16493
  };
@@ -16531,7 +16531,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
16531
16531
  readonly revision: string;
16532
16532
  };
16533
16533
  readonly generation: number;
16534
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
16534
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
16535
16535
  readonly modifiedAt: number;
16536
16536
  readonly reason: string;
16537
16537
  };
@@ -16550,7 +16550,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
16550
16550
  readonly revision: string;
16551
16551
  };
16552
16552
  readonly generation: number;
16553
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
16553
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
16554
16554
  readonly modifiedAt: number;
16555
16555
  readonly reason: string;
16556
16556
  };
@@ -16924,7 +16924,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
16924
16924
  readonly revision: Schema.NonEmptyString;
16925
16925
  }>;
16926
16926
  readonly generation: Schema.Int;
16927
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
16927
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
16928
16928
  readonly modifiedAt: Schema.Finite;
16929
16929
  readonly reason: Schema.String;
16930
16930
  };
@@ -17274,7 +17274,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
17274
17274
  readonly revision: Schema.NonEmptyString;
17275
17275
  }>;
17276
17276
  readonly generation: Schema.Int;
17277
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
17277
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
17278
17278
  readonly modifiedAt: Schema.Finite;
17279
17279
  readonly reason: Schema.String;
17280
17280
  }) => To, options?: {
@@ -17627,7 +17627,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
17627
17627
  readonly revision: Schema.NonEmptyString;
17628
17628
  }>;
17629
17629
  readonly generation: Schema.Int;
17630
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
17630
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
17631
17631
  readonly modifiedAt: Schema.Finite;
17632
17632
  readonly reason: Schema.String;
17633
17633
  } & NewFields : Omit<{
@@ -17976,7 +17976,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
17976
17976
  readonly revision: Schema.NonEmptyString;
17977
17977
  }>;
17978
17978
  readonly generation: Schema.Int;
17979
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
17979
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
17980
17980
  readonly modifiedAt: Schema.Finite;
17981
17981
  readonly reason: Schema.String;
17982
17982
  }, ("_tag" | "generation" | "key" | "modifiedAt" | "predecessor" | "reason" | "source" | "version") & keyof NewFields> & NewFields) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>]> | undefined): [Extended] extends [never] ? "Missing `Self` generic - use `class Self extends Base.extend<Self>(...)`" : Schema.Class<Extended, Schema.Struct<((("_tag" | "generation" | "key" | "modifiedAt" | "predecessor" | "reason" | "source" | "version") & keyof NewFields extends never ? {
@@ -18325,7 +18325,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
18325
18325
  readonly revision: Schema.NonEmptyString;
18326
18326
  }>;
18327
18327
  readonly generation: Schema.Int;
18328
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
18328
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
18329
18329
  readonly modifiedAt: Schema.Finite;
18330
18330
  readonly reason: Schema.String;
18331
18331
  } & NewFields : Omit<{
@@ -18674,7 +18674,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
18674
18674
  readonly revision: Schema.NonEmptyString;
18675
18675
  }>;
18676
18676
  readonly generation: Schema.Int;
18677
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
18677
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
18678
18678
  readonly modifiedAt: Schema.Finite;
18679
18679
  readonly reason: Schema.String;
18680
18680
  }, ("_tag" | "generation" | "key" | "modifiedAt" | "predecessor" | "reason" | "source" | "version") & keyof NewFields> & NewFields) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>, {
@@ -18692,7 +18692,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
18692
18692
  readonly revision: string;
18693
18693
  };
18694
18694
  readonly generation: number;
18695
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
18695
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
18696
18696
  readonly modifiedAt: number;
18697
18697
  readonly reason: string;
18698
18698
  } & Brand> & Pick<Static, Exclude<keyof Static, keyof Schema.Class<Extended_1, Schema.Struct<((keyof S["fields"] & keyof NewFields_2 extends never ? S["fields"] & NewFields_2 : Omit<S["fields"], keyof S["fields"] & keyof NewFields_2> & NewFields_2) extends (infer T_5) ? { [K in keyof T_5]: T_5[K]; } : never) extends (infer T_4) ? { [K in keyof T_4]: T_4[K]; } : never>, Self & Brand_1>>>;
@@ -19042,7 +19042,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
19042
19042
  readonly revision: Schema.NonEmptyString;
19043
19043
  }>;
19044
19044
  readonly generation: Schema.Int;
19045
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
19045
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
19046
19046
  readonly modifiedAt: Schema.Finite;
19047
19047
  readonly reason: Schema.String;
19048
19048
  } & Extension["fields"] : Omit<{
@@ -19391,7 +19391,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
19391
19391
  readonly revision: Schema.NonEmptyString;
19392
19392
  }>;
19393
19393
  readonly generation: Schema.Int;
19394
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
19394
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
19395
19395
  readonly modifiedAt: Schema.Finite;
19396
19396
  readonly reason: Schema.String;
19397
19397
  }, ("_tag" | "generation" | "key" | "modifiedAt" | "predecessor" | "reason" | "source" | "version") & keyof Extension["fields"]> & Extension["fields"]) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>]> | undefined): [Extended] extends [never] ? "Missing `Self` generic - use `class Self extends Base.extend<Self>(...)`" : Schema.Class<Extended, Schema.Struct<((("_tag" | "generation" | "key" | "modifiedAt" | "predecessor" | "reason" | "source" | "version") & keyof Extension["fields"] extends never ? {
@@ -19740,7 +19740,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
19740
19740
  readonly revision: Schema.NonEmptyString;
19741
19741
  }>;
19742
19742
  readonly generation: Schema.Int;
19743
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
19743
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
19744
19744
  readonly modifiedAt: Schema.Finite;
19745
19745
  readonly reason: Schema.String;
19746
19746
  } & Extension["fields"] : Omit<{
@@ -20089,7 +20089,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
20089
20089
  readonly revision: Schema.NonEmptyString;
20090
20090
  }>;
20091
20091
  readonly generation: Schema.Int;
20092
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
20092
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
20093
20093
  readonly modifiedAt: Schema.Finite;
20094
20094
  readonly reason: Schema.String;
20095
20095
  }, ("_tag" | "generation" | "key" | "modifiedAt" | "predecessor" | "reason" | "source" | "version") & keyof Extension["fields"]> & Extension["fields"]) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>, {
@@ -20107,7 +20107,7 @@ declare const ChangedResponse: Schema.TaggedStruct<"Changed", {
20107
20107
  readonly revision: string;
20108
20108
  };
20109
20109
  readonly generation: number;
20110
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
20110
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
20111
20111
  readonly modifiedAt: number;
20112
20112
  readonly reason: string;
20113
20113
  } & Brand> & Pick<Static, Exclude<keyof Static, keyof Schema.Class<Extended_1, Schema.Struct<((keyof S["fields"] & keyof Extension_1["fields"] extends never ? S["fields"] & Extension_1["fields"] : Omit<S["fields"], keyof S["fields"] & keyof Extension_1["fields"]> & Extension_1["fields"]) extends (infer T_5) ? { [K in keyof T_5]: T_5[K]; } : never) extends (infer T_4) ? { [K in keyof T_4]: T_4[K]; } : never>, Self & Brand_1>>>;
@@ -21145,9 +21145,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
21145
21145
  readonly revision: string;
21146
21146
  };
21147
21147
  readonly generation: number;
21148
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
21148
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
21149
21149
  readonly modifiedAt: number;
21150
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
21150
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
21151
21151
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
21152
21152
  }, options?: Schema.MakeOptions | undefined): {
21153
21153
  readonly _tag: "ActiveMemoryDocument";
@@ -21164,9 +21164,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
21164
21164
  readonly revision: string;
21165
21165
  };
21166
21166
  readonly generation: number;
21167
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
21167
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
21168
21168
  readonly modifiedAt: number;
21169
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
21169
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
21170
21170
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
21171
21171
  };
21172
21172
  pipe<A>(this: A): A;
@@ -21206,9 +21206,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
21206
21206
  readonly revision: string;
21207
21207
  };
21208
21208
  readonly generation: number;
21209
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
21209
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
21210
21210
  readonly modifiedAt: number;
21211
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
21211
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
21212
21212
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
21213
21213
  }, {
21214
21214
  readonly _tag: "ActiveMemoryDocument";
@@ -21593,9 +21593,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
21593
21593
  readonly revision: Schema.NonEmptyString;
21594
21594
  }>;
21595
21595
  readonly generation: Schema.Int;
21596
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
21596
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
21597
21597
  readonly modifiedAt: Schema.Finite;
21598
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
21598
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
21599
21599
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
21600
21600
  }>], {
21601
21601
  readonly _tag: "ActiveMemoryDocument";
@@ -21980,9 +21980,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
21980
21980
  readonly revision: Schema.NonEmptyString;
21981
21981
  }>;
21982
21982
  readonly generation: Schema.Int;
21983
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
21983
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
21984
21984
  readonly modifiedAt: Schema.Finite;
21985
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
21985
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
21986
21986
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
21987
21987
  }>, never, never>;
21988
21988
  readonly "~effect/Schema/Schema": "~effect/Schema/Schema";
@@ -22332,9 +22332,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
22332
22332
  readonly revision: Schema.NonEmptyString;
22333
22333
  }>;
22334
22334
  readonly generation: Schema.Int;
22335
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
22335
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
22336
22336
  readonly modifiedAt: Schema.Finite;
22337
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
22337
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
22338
22338
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
22339
22339
  }>];
22340
22340
  readonly "~type.constructor.default": "no-default";
@@ -22357,9 +22357,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
22357
22357
  readonly revision: string;
22358
22358
  };
22359
22359
  readonly generation: number;
22360
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
22360
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
22361
22361
  readonly modifiedAt: number;
22362
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
22362
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
22363
22363
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
22364
22364
  }, readonly [Schema.TaggedStruct<"ActiveMemoryDocument", {
22365
22365
  readonly version: Schema.Literal<1>;
@@ -22706,9 +22706,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
22706
22706
  readonly revision: Schema.NonEmptyString;
22707
22707
  }>;
22708
22708
  readonly generation: Schema.Int;
22709
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
22709
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
22710
22710
  readonly modifiedAt: Schema.Finite;
22711
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
22711
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
22712
22712
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
22713
22713
  }>]>): Schema.decodeTo<Schema.declareConstructor<{
22714
22714
  readonly _tag: "ActiveMemoryDocument";
@@ -22725,9 +22725,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
22725
22725
  readonly revision: string;
22726
22726
  };
22727
22727
  readonly generation: number;
22728
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
22728
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
22729
22729
  readonly modifiedAt: number;
22730
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
22730
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
22731
22731
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
22732
22732
  }, {
22733
22733
  readonly _tag: "ActiveMemoryDocument";
@@ -23112,9 +23112,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
23112
23112
  readonly revision: Schema.NonEmptyString;
23113
23113
  }>;
23114
23114
  readonly generation: Schema.Int;
23115
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
23115
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
23116
23116
  readonly modifiedAt: Schema.Finite;
23117
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
23117
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
23118
23118
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
23119
23119
  }>], {
23120
23120
  readonly _tag: "ActiveMemoryDocument";
@@ -23499,9 +23499,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
23499
23499
  readonly revision: Schema.NonEmptyString;
23500
23500
  }>;
23501
23501
  readonly generation: Schema.Int;
23502
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
23502
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
23503
23503
  readonly modifiedAt: Schema.Finite;
23504
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
23504
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
23505
23505
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
23506
23506
  }>, never, never>;
23507
23507
  annotateKey(annotations: Schema.Annotations.Key<{
@@ -23519,9 +23519,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
23519
23519
  readonly revision: string;
23520
23520
  };
23521
23521
  readonly generation: number;
23522
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
23522
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
23523
23523
  readonly modifiedAt: number;
23524
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
23524
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
23525
23525
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
23526
23526
  }>): Schema.decodeTo<Schema.declareConstructor<{
23527
23527
  readonly _tag: "ActiveMemoryDocument";
@@ -23538,9 +23538,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
23538
23538
  readonly revision: string;
23539
23539
  };
23540
23540
  readonly generation: number;
23541
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
23541
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
23542
23542
  readonly modifiedAt: number;
23543
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
23543
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
23544
23544
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
23545
23545
  }, {
23546
23546
  readonly _tag: "ActiveMemoryDocument";
@@ -23925,9 +23925,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
23925
23925
  readonly revision: Schema.NonEmptyString;
23926
23926
  }>;
23927
23927
  readonly generation: Schema.Int;
23928
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
23928
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
23929
23929
  readonly modifiedAt: Schema.Finite;
23930
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
23930
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
23931
23931
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
23932
23932
  }>], {
23933
23933
  readonly _tag: "ActiveMemoryDocument";
@@ -24312,9 +24312,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
24312
24312
  readonly revision: Schema.NonEmptyString;
24313
24313
  }>;
24314
24314
  readonly generation: Schema.Int;
24315
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
24315
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
24316
24316
  readonly modifiedAt: Schema.Finite;
24317
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
24317
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
24318
24318
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
24319
24319
  }>, never, never>;
24320
24320
  check(checks_0: import("effect/SchemaAST").Check<{
@@ -24332,9 +24332,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
24332
24332
  readonly revision: string;
24333
24333
  };
24334
24334
  readonly generation: number;
24335
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
24335
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
24336
24336
  readonly modifiedAt: number;
24337
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
24337
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
24338
24338
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
24339
24339
  }>, ...checks: import("effect/SchemaAST").Check<{
24340
24340
  readonly _tag: "ActiveMemoryDocument";
@@ -24351,9 +24351,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
24351
24351
  readonly revision: string;
24352
24352
  };
24353
24353
  readonly generation: number;
24354
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
24354
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
24355
24355
  readonly modifiedAt: number;
24356
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
24356
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
24357
24357
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
24358
24358
  }>[]): Schema.decodeTo<Schema.declareConstructor<{
24359
24359
  readonly _tag: "ActiveMemoryDocument";
@@ -24370,9 +24370,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
24370
24370
  readonly revision: string;
24371
24371
  };
24372
24372
  readonly generation: number;
24373
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
24373
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
24374
24374
  readonly modifiedAt: number;
24375
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
24375
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
24376
24376
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
24377
24377
  }, {
24378
24378
  readonly _tag: "ActiveMemoryDocument";
@@ -24757,9 +24757,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
24757
24757
  readonly revision: Schema.NonEmptyString;
24758
24758
  }>;
24759
24759
  readonly generation: Schema.Int;
24760
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
24760
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
24761
24761
  readonly modifiedAt: Schema.Finite;
24762
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
24762
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
24763
24763
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
24764
24764
  }>], {
24765
24765
  readonly _tag: "ActiveMemoryDocument";
@@ -25144,9 +25144,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
25144
25144
  readonly revision: Schema.NonEmptyString;
25145
25145
  }>;
25146
25146
  readonly generation: Schema.Int;
25147
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
25147
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
25148
25148
  readonly modifiedAt: Schema.Finite;
25149
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
25149
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
25150
25150
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
25151
25151
  }>, never, never>;
25152
25152
  rebuild(ast: import("effect/SchemaAST").Declaration): Schema.decodeTo<Schema.declareConstructor<{
@@ -25164,9 +25164,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
25164
25164
  readonly revision: string;
25165
25165
  };
25166
25166
  readonly generation: number;
25167
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
25167
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
25168
25168
  readonly modifiedAt: number;
25169
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
25169
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
25170
25170
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
25171
25171
  }, {
25172
25172
  readonly _tag: "ActiveMemoryDocument";
@@ -25551,9 +25551,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
25551
25551
  readonly revision: Schema.NonEmptyString;
25552
25552
  }>;
25553
25553
  readonly generation: Schema.Int;
25554
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
25554
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
25555
25555
  readonly modifiedAt: Schema.Finite;
25556
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
25556
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
25557
25557
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
25558
25558
  }>], {
25559
25559
  readonly _tag: "ActiveMemoryDocument";
@@ -25938,9 +25938,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
25938
25938
  readonly revision: Schema.NonEmptyString;
25939
25939
  }>;
25940
25940
  readonly generation: Schema.Int;
25941
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
25941
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
25942
25942
  readonly modifiedAt: Schema.Finite;
25943
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
25943
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
25944
25944
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
25945
25945
  }>, never, never>;
25946
25946
  make(input: {
@@ -25958,9 +25958,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
25958
25958
  readonly revision: string;
25959
25959
  };
25960
25960
  readonly generation: number;
25961
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
25961
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
25962
25962
  readonly modifiedAt: number;
25963
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
25963
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
25964
25964
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
25965
25965
  }, options?: Schema.MakeOptions): {
25966
25966
  readonly _tag: "ActiveMemoryDocument";
@@ -25977,9 +25977,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
25977
25977
  readonly revision: string;
25978
25978
  };
25979
25979
  readonly generation: number;
25980
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
25980
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
25981
25981
  readonly modifiedAt: number;
25982
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
25982
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
25983
25983
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
25984
25984
  };
25985
25985
  makeOption(input: {
@@ -25997,9 +25997,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
25997
25997
  readonly revision: string;
25998
25998
  };
25999
25999
  readonly generation: number;
26000
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
26000
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
26001
26001
  readonly modifiedAt: number;
26002
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
26002
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
26003
26003
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
26004
26004
  }, options?: Schema.MakeOptions): import("effect/Option").Option<{
26005
26005
  readonly _tag: "ActiveMemoryDocument";
@@ -26016,9 +26016,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
26016
26016
  readonly revision: string;
26017
26017
  };
26018
26018
  readonly generation: number;
26019
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
26019
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
26020
26020
  readonly modifiedAt: number;
26021
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
26021
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
26022
26022
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
26023
26023
  }>;
26024
26024
  makeEffect(input: {
@@ -26036,9 +26036,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
26036
26036
  readonly revision: string;
26037
26037
  };
26038
26038
  readonly generation: number;
26039
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
26039
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
26040
26040
  readonly modifiedAt: number;
26041
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
26041
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
26042
26042
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
26043
26043
  }, options?: Schema.MakeOptions): Effect.Effect<{
26044
26044
  readonly _tag: "ActiveMemoryDocument";
@@ -26055,9 +26055,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
26055
26055
  readonly revision: string;
26056
26056
  };
26057
26057
  readonly generation: number;
26058
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
26058
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
26059
26059
  readonly modifiedAt: number;
26060
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
26060
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
26061
26061
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
26062
26062
  }, import("effect/SchemaIssue").Issue, never>;
26063
26063
  readonly Type: {
@@ -26075,9 +26075,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
26075
26075
  readonly revision: string;
26076
26076
  };
26077
26077
  readonly generation: number;
26078
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
26078
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
26079
26079
  readonly modifiedAt: number;
26080
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
26080
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
26081
26081
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
26082
26082
  };
26083
26083
  readonly Encoded: {
@@ -26136,9 +26136,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
26136
26136
  readonly revision: string;
26137
26137
  };
26138
26138
  readonly generation: number;
26139
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
26139
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
26140
26140
  readonly modifiedAt: number;
26141
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
26141
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
26142
26142
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
26143
26143
  };
26144
26144
  readonly "~type.make": {
@@ -26156,9 +26156,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
26156
26156
  readonly revision: string;
26157
26157
  };
26158
26158
  readonly generation: number;
26159
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
26159
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
26160
26160
  readonly modifiedAt: number;
26161
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
26161
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
26162
26162
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
26163
26163
  };
26164
26164
  readonly Iso: {
@@ -26547,9 +26547,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
26547
26547
  readonly revision: Schema.NonEmptyString;
26548
26548
  }>;
26549
26549
  readonly generation: Schema.Int;
26550
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
26550
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
26551
26551
  readonly modifiedAt: Schema.Finite;
26552
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
26552
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
26553
26553
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
26554
26554
  };
26555
26555
  mapFields<To extends Schema.Struct.Fields>(f: (fields: {
@@ -26898,9 +26898,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
26898
26898
  readonly revision: Schema.NonEmptyString;
26899
26899
  }>;
26900
26900
  readonly generation: Schema.Int;
26901
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
26901
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
26902
26902
  readonly modifiedAt: Schema.Finite;
26903
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
26903
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
26904
26904
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
26905
26905
  }) => To, options?: {
26906
26906
  readonly unsafePreserveChecks?: boolean | undefined;
@@ -27252,9 +27252,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
27252
27252
  readonly revision: Schema.NonEmptyString;
27253
27253
  }>;
27254
27254
  readonly generation: Schema.Int;
27255
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
27255
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
27256
27256
  readonly modifiedAt: Schema.Finite;
27257
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
27257
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
27258
27258
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
27259
27259
  } & NewFields : Omit<{
27260
27260
  readonly _tag: Schema.tag<"ActiveMemoryDocument">;
@@ -27602,9 +27602,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
27602
27602
  readonly revision: Schema.NonEmptyString;
27603
27603
  }>;
27604
27604
  readonly generation: Schema.Int;
27605
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
27605
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
27606
27606
  readonly modifiedAt: Schema.Finite;
27607
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
27607
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
27608
27608
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
27609
27609
  }, ("_tag" | "content" | "generation" | "key" | "modifiedAt" | "predecessor" | "scopes" | "source" | "version") & keyof NewFields> & NewFields) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>]> | undefined): [Extended] extends [never] ? "Missing `Self` generic - use `class Self extends Base.extend<Self>(...)`" : Schema.Class<Extended, Schema.Struct<((("_tag" | "content" | "generation" | "key" | "modifiedAt" | "predecessor" | "scopes" | "source" | "version") & keyof NewFields extends never ? {
27610
27610
  readonly _tag: Schema.tag<"ActiveMemoryDocument">;
@@ -27952,9 +27952,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
27952
27952
  readonly revision: Schema.NonEmptyString;
27953
27953
  }>;
27954
27954
  readonly generation: Schema.Int;
27955
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
27955
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
27956
27956
  readonly modifiedAt: Schema.Finite;
27957
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
27957
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
27958
27958
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
27959
27959
  } & NewFields : Omit<{
27960
27960
  readonly _tag: Schema.tag<"ActiveMemoryDocument">;
@@ -28302,9 +28302,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
28302
28302
  readonly revision: Schema.NonEmptyString;
28303
28303
  }>;
28304
28304
  readonly generation: Schema.Int;
28305
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
28305
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
28306
28306
  readonly modifiedAt: Schema.Finite;
28307
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
28307
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
28308
28308
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
28309
28309
  }, ("_tag" | "content" | "generation" | "key" | "modifiedAt" | "predecessor" | "scopes" | "source" | "version") & keyof NewFields> & NewFields) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>, {
28310
28310
  readonly _tag: "ActiveMemoryDocument";
@@ -28321,9 +28321,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
28321
28321
  readonly revision: string;
28322
28322
  };
28323
28323
  readonly generation: number;
28324
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
28324
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
28325
28325
  readonly modifiedAt: number;
28326
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
28326
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
28327
28327
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
28328
28328
  } & Brand> & Pick<Static, Exclude<keyof Static, keyof Schema.Class<Extended_1, Schema.Struct<((keyof S["fields"] & keyof NewFields_2 extends never ? S["fields"] & NewFields_2 : Omit<S["fields"], keyof S["fields"] & keyof NewFields_2> & NewFields_2) extends (infer T_5) ? { [K in keyof T_5]: T_5[K]; } : never) extends (infer T_4) ? { [K in keyof T_4]: T_4[K]; } : never>, Self & Brand_1>>>;
28329
28329
  <Extension extends Schema.Struct<Schema.Struct.Fields>>(schema: Extension, annotations?: Schema.Annotations.Declaration<Extended, readonly [Schema.Struct<((("_tag" | "content" | "generation" | "key" | "modifiedAt" | "predecessor" | "scopes" | "source" | "version") & keyof Extension["fields"] extends never ? {
@@ -28672,9 +28672,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
28672
28672
  readonly revision: Schema.NonEmptyString;
28673
28673
  }>;
28674
28674
  readonly generation: Schema.Int;
28675
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
28675
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
28676
28676
  readonly modifiedAt: Schema.Finite;
28677
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
28677
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
28678
28678
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
28679
28679
  } & Extension["fields"] : Omit<{
28680
28680
  readonly _tag: Schema.tag<"ActiveMemoryDocument">;
@@ -29022,9 +29022,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
29022
29022
  readonly revision: Schema.NonEmptyString;
29023
29023
  }>;
29024
29024
  readonly generation: Schema.Int;
29025
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
29025
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
29026
29026
  readonly modifiedAt: Schema.Finite;
29027
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
29027
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
29028
29028
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
29029
29029
  }, ("_tag" | "content" | "generation" | "key" | "modifiedAt" | "predecessor" | "scopes" | "source" | "version") & keyof Extension["fields"]> & Extension["fields"]) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>]> | undefined): [Extended] extends [never] ? "Missing `Self` generic - use `class Self extends Base.extend<Self>(...)`" : Schema.Class<Extended, Schema.Struct<((("_tag" | "content" | "generation" | "key" | "modifiedAt" | "predecessor" | "scopes" | "source" | "version") & keyof Extension["fields"] extends never ? {
29030
29030
  readonly _tag: Schema.tag<"ActiveMemoryDocument">;
@@ -29372,9 +29372,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
29372
29372
  readonly revision: Schema.NonEmptyString;
29373
29373
  }>;
29374
29374
  readonly generation: Schema.Int;
29375
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
29375
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
29376
29376
  readonly modifiedAt: Schema.Finite;
29377
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
29377
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
29378
29378
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
29379
29379
  } & Extension["fields"] : Omit<{
29380
29380
  readonly _tag: Schema.tag<"ActiveMemoryDocument">;
@@ -29722,9 +29722,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
29722
29722
  readonly revision: Schema.NonEmptyString;
29723
29723
  }>;
29724
29724
  readonly generation: Schema.Int;
29725
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
29725
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
29726
29726
  readonly modifiedAt: Schema.Finite;
29727
- readonly content: typeof import("@effect-agent/core/MemoryReference").MemoryContent;
29727
+ readonly content: typeof import("effect-agent/memory-reference").MemoryContent;
29728
29728
  readonly scopes: Schema.$Array<Schema.brand<Schema.NonEmptyString, "@effect-agent/core/MemoryScope">>;
29729
29729
  }, ("_tag" | "content" | "generation" | "key" | "modifiedAt" | "predecessor" | "scopes" | "source" | "version") & keyof Extension["fields"]> & Extension["fields"]) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>, {
29730
29730
  readonly _tag: "ActiveMemoryDocument";
@@ -29741,9 +29741,9 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
29741
29741
  readonly revision: string;
29742
29742
  };
29743
29743
  readonly generation: number;
29744
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
29744
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
29745
29745
  readonly modifiedAt: number;
29746
- readonly content: import("@effect-agent/core/MemoryReference").MemoryContent;
29746
+ readonly content: import("effect-agent/memory-reference").MemoryContent;
29747
29747
  readonly scopes: readonly (string & import("effect/Brand").Brand<"@effect-agent/core/MemoryScope">)[];
29748
29748
  } & Brand> & Pick<Static, Exclude<keyof Static, keyof Schema.Class<Extended_1, Schema.Struct<((keyof S["fields"] & keyof Extension_1["fields"] extends never ? S["fields"] & Extension_1["fields"] : Omit<S["fields"], keyof S["fields"] & keyof Extension_1["fields"]> & Extension_1["fields"]) extends (infer T_5) ? { [K in keyof T_5]: T_5[K]; } : never) extends (infer T_4) ? { [K in keyof T_4]: T_4[K]; } : never>, Self & Brand_1>>>;
29749
29749
  };
@@ -29763,7 +29763,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
29763
29763
  readonly revision: string;
29764
29764
  };
29765
29765
  readonly generation: number;
29766
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
29766
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
29767
29767
  readonly modifiedAt: number;
29768
29768
  readonly reason: string;
29769
29769
  }, options?: Schema.MakeOptions | undefined): {
@@ -29781,7 +29781,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
29781
29781
  readonly revision: string;
29782
29782
  };
29783
29783
  readonly generation: number;
29784
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
29784
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
29785
29785
  readonly modifiedAt: number;
29786
29786
  readonly reason: string;
29787
29787
  };
@@ -29822,7 +29822,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
29822
29822
  readonly revision: string;
29823
29823
  };
29824
29824
  readonly generation: number;
29825
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
29825
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
29826
29826
  readonly modifiedAt: number;
29827
29827
  readonly reason: string;
29828
29828
  }, {
@@ -30192,7 +30192,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
30192
30192
  readonly revision: Schema.NonEmptyString;
30193
30193
  }>;
30194
30194
  readonly generation: Schema.Int;
30195
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
30195
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
30196
30196
  readonly modifiedAt: Schema.Finite;
30197
30197
  readonly reason: Schema.String;
30198
30198
  }>], {
@@ -30562,7 +30562,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
30562
30562
  readonly revision: Schema.NonEmptyString;
30563
30563
  }>;
30564
30564
  readonly generation: Schema.Int;
30565
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
30565
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
30566
30566
  readonly modifiedAt: Schema.Finite;
30567
30567
  readonly reason: Schema.String;
30568
30568
  }>, never, never>;
@@ -30913,7 +30913,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
30913
30913
  readonly revision: Schema.NonEmptyString;
30914
30914
  }>;
30915
30915
  readonly generation: Schema.Int;
30916
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
30916
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
30917
30917
  readonly modifiedAt: Schema.Finite;
30918
30918
  readonly reason: Schema.String;
30919
30919
  }>];
@@ -30937,7 +30937,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
30937
30937
  readonly revision: string;
30938
30938
  };
30939
30939
  readonly generation: number;
30940
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
30940
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
30941
30941
  readonly modifiedAt: number;
30942
30942
  readonly reason: string;
30943
30943
  }, readonly [Schema.TaggedStruct<"WithdrawnMemoryDocument", {
@@ -31285,7 +31285,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
31285
31285
  readonly revision: Schema.NonEmptyString;
31286
31286
  }>;
31287
31287
  readonly generation: Schema.Int;
31288
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
31288
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
31289
31289
  readonly modifiedAt: Schema.Finite;
31290
31290
  readonly reason: Schema.String;
31291
31291
  }>]>): Schema.decodeTo<Schema.declareConstructor<{
@@ -31303,7 +31303,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
31303
31303
  readonly revision: string;
31304
31304
  };
31305
31305
  readonly generation: number;
31306
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
31306
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
31307
31307
  readonly modifiedAt: number;
31308
31308
  readonly reason: string;
31309
31309
  }, {
@@ -31673,7 +31673,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
31673
31673
  readonly revision: Schema.NonEmptyString;
31674
31674
  }>;
31675
31675
  readonly generation: Schema.Int;
31676
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
31676
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
31677
31677
  readonly modifiedAt: Schema.Finite;
31678
31678
  readonly reason: Schema.String;
31679
31679
  }>], {
@@ -32043,7 +32043,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
32043
32043
  readonly revision: Schema.NonEmptyString;
32044
32044
  }>;
32045
32045
  readonly generation: Schema.Int;
32046
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
32046
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
32047
32047
  readonly modifiedAt: Schema.Finite;
32048
32048
  readonly reason: Schema.String;
32049
32049
  }>, never, never>;
@@ -32062,7 +32062,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
32062
32062
  readonly revision: string;
32063
32063
  };
32064
32064
  readonly generation: number;
32065
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
32065
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
32066
32066
  readonly modifiedAt: number;
32067
32067
  readonly reason: string;
32068
32068
  }>): Schema.decodeTo<Schema.declareConstructor<{
@@ -32080,7 +32080,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
32080
32080
  readonly revision: string;
32081
32081
  };
32082
32082
  readonly generation: number;
32083
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
32083
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
32084
32084
  readonly modifiedAt: number;
32085
32085
  readonly reason: string;
32086
32086
  }, {
@@ -32450,7 +32450,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
32450
32450
  readonly revision: Schema.NonEmptyString;
32451
32451
  }>;
32452
32452
  readonly generation: Schema.Int;
32453
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
32453
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
32454
32454
  readonly modifiedAt: Schema.Finite;
32455
32455
  readonly reason: Schema.String;
32456
32456
  }>], {
@@ -32820,7 +32820,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
32820
32820
  readonly revision: Schema.NonEmptyString;
32821
32821
  }>;
32822
32822
  readonly generation: Schema.Int;
32823
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
32823
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
32824
32824
  readonly modifiedAt: Schema.Finite;
32825
32825
  readonly reason: Schema.String;
32826
32826
  }>, never, never>;
@@ -32839,7 +32839,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
32839
32839
  readonly revision: string;
32840
32840
  };
32841
32841
  readonly generation: number;
32842
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
32842
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
32843
32843
  readonly modifiedAt: number;
32844
32844
  readonly reason: string;
32845
32845
  }>, ...checks: import("effect/SchemaAST").Check<{
@@ -32857,7 +32857,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
32857
32857
  readonly revision: string;
32858
32858
  };
32859
32859
  readonly generation: number;
32860
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
32860
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
32861
32861
  readonly modifiedAt: number;
32862
32862
  readonly reason: string;
32863
32863
  }>[]): Schema.decodeTo<Schema.declareConstructor<{
@@ -32875,7 +32875,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
32875
32875
  readonly revision: string;
32876
32876
  };
32877
32877
  readonly generation: number;
32878
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
32878
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
32879
32879
  readonly modifiedAt: number;
32880
32880
  readonly reason: string;
32881
32881
  }, {
@@ -33245,7 +33245,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
33245
33245
  readonly revision: Schema.NonEmptyString;
33246
33246
  }>;
33247
33247
  readonly generation: Schema.Int;
33248
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
33248
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
33249
33249
  readonly modifiedAt: Schema.Finite;
33250
33250
  readonly reason: Schema.String;
33251
33251
  }>], {
@@ -33615,7 +33615,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
33615
33615
  readonly revision: Schema.NonEmptyString;
33616
33616
  }>;
33617
33617
  readonly generation: Schema.Int;
33618
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
33618
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
33619
33619
  readonly modifiedAt: Schema.Finite;
33620
33620
  readonly reason: Schema.String;
33621
33621
  }>, never, never>;
@@ -33634,7 +33634,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
33634
33634
  readonly revision: string;
33635
33635
  };
33636
33636
  readonly generation: number;
33637
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
33637
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
33638
33638
  readonly modifiedAt: number;
33639
33639
  readonly reason: string;
33640
33640
  }, {
@@ -34004,7 +34004,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
34004
34004
  readonly revision: Schema.NonEmptyString;
34005
34005
  }>;
34006
34006
  readonly generation: Schema.Int;
34007
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
34007
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
34008
34008
  readonly modifiedAt: Schema.Finite;
34009
34009
  readonly reason: Schema.String;
34010
34010
  }>], {
@@ -34374,7 +34374,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
34374
34374
  readonly revision: Schema.NonEmptyString;
34375
34375
  }>;
34376
34376
  readonly generation: Schema.Int;
34377
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
34377
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
34378
34378
  readonly modifiedAt: Schema.Finite;
34379
34379
  readonly reason: Schema.String;
34380
34380
  }>, never, never>;
@@ -34393,7 +34393,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
34393
34393
  readonly revision: string;
34394
34394
  };
34395
34395
  readonly generation: number;
34396
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
34396
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
34397
34397
  readonly modifiedAt: number;
34398
34398
  readonly reason: string;
34399
34399
  }, options?: Schema.MakeOptions): {
@@ -34411,7 +34411,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
34411
34411
  readonly revision: string;
34412
34412
  };
34413
34413
  readonly generation: number;
34414
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
34414
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
34415
34415
  readonly modifiedAt: number;
34416
34416
  readonly reason: string;
34417
34417
  };
@@ -34430,7 +34430,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
34430
34430
  readonly revision: string;
34431
34431
  };
34432
34432
  readonly generation: number;
34433
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
34433
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
34434
34434
  readonly modifiedAt: number;
34435
34435
  readonly reason: string;
34436
34436
  }, options?: Schema.MakeOptions): import("effect/Option").Option<{
@@ -34448,7 +34448,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
34448
34448
  readonly revision: string;
34449
34449
  };
34450
34450
  readonly generation: number;
34451
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
34451
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
34452
34452
  readonly modifiedAt: number;
34453
34453
  readonly reason: string;
34454
34454
  }>;
@@ -34467,7 +34467,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
34467
34467
  readonly revision: string;
34468
34468
  };
34469
34469
  readonly generation: number;
34470
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
34470
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
34471
34471
  readonly modifiedAt: number;
34472
34472
  readonly reason: string;
34473
34473
  }, options?: Schema.MakeOptions): Effect.Effect<{
@@ -34485,7 +34485,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
34485
34485
  readonly revision: string;
34486
34486
  };
34487
34487
  readonly generation: number;
34488
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
34488
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
34489
34489
  readonly modifiedAt: number;
34490
34490
  readonly reason: string;
34491
34491
  }, import("effect/SchemaIssue").Issue, never>;
@@ -34504,7 +34504,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
34504
34504
  readonly revision: string;
34505
34505
  };
34506
34506
  readonly generation: number;
34507
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
34507
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
34508
34508
  readonly modifiedAt: number;
34509
34509
  readonly reason: string;
34510
34510
  };
@@ -34548,7 +34548,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
34548
34548
  readonly revision: string;
34549
34549
  };
34550
34550
  readonly generation: number;
34551
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
34551
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
34552
34552
  readonly modifiedAt: number;
34553
34553
  readonly reason: string;
34554
34554
  };
@@ -34567,7 +34567,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
34567
34567
  readonly revision: string;
34568
34568
  };
34569
34569
  readonly generation: number;
34570
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
34570
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
34571
34571
  readonly modifiedAt: number;
34572
34572
  readonly reason: string;
34573
34573
  };
@@ -34941,7 +34941,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
34941
34941
  readonly revision: Schema.NonEmptyString;
34942
34942
  }>;
34943
34943
  readonly generation: Schema.Int;
34944
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
34944
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
34945
34945
  readonly modifiedAt: Schema.Finite;
34946
34946
  readonly reason: Schema.String;
34947
34947
  };
@@ -35291,7 +35291,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
35291
35291
  readonly revision: Schema.NonEmptyString;
35292
35292
  }>;
35293
35293
  readonly generation: Schema.Int;
35294
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
35294
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
35295
35295
  readonly modifiedAt: Schema.Finite;
35296
35296
  readonly reason: Schema.String;
35297
35297
  }) => To, options?: {
@@ -35644,7 +35644,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
35644
35644
  readonly revision: Schema.NonEmptyString;
35645
35645
  }>;
35646
35646
  readonly generation: Schema.Int;
35647
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
35647
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
35648
35648
  readonly modifiedAt: Schema.Finite;
35649
35649
  readonly reason: Schema.String;
35650
35650
  } & NewFields : Omit<{
@@ -35993,7 +35993,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
35993
35993
  readonly revision: Schema.NonEmptyString;
35994
35994
  }>;
35995
35995
  readonly generation: Schema.Int;
35996
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
35996
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
35997
35997
  readonly modifiedAt: Schema.Finite;
35998
35998
  readonly reason: Schema.String;
35999
35999
  }, ("_tag" | "generation" | "key" | "modifiedAt" | "predecessor" | "reason" | "source" | "version") & keyof NewFields> & NewFields) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>]> | undefined): [Extended] extends [never] ? "Missing `Self` generic - use `class Self extends Base.extend<Self>(...)`" : Schema.Class<Extended, Schema.Struct<((("_tag" | "generation" | "key" | "modifiedAt" | "predecessor" | "reason" | "source" | "version") & keyof NewFields extends never ? {
@@ -36342,7 +36342,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
36342
36342
  readonly revision: Schema.NonEmptyString;
36343
36343
  }>;
36344
36344
  readonly generation: Schema.Int;
36345
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
36345
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
36346
36346
  readonly modifiedAt: Schema.Finite;
36347
36347
  readonly reason: Schema.String;
36348
36348
  } & NewFields : Omit<{
@@ -36691,7 +36691,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
36691
36691
  readonly revision: Schema.NonEmptyString;
36692
36692
  }>;
36693
36693
  readonly generation: Schema.Int;
36694
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
36694
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
36695
36695
  readonly modifiedAt: Schema.Finite;
36696
36696
  readonly reason: Schema.String;
36697
36697
  }, ("_tag" | "generation" | "key" | "modifiedAt" | "predecessor" | "reason" | "source" | "version") & keyof NewFields> & NewFields) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>, {
@@ -36709,7 +36709,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
36709
36709
  readonly revision: string;
36710
36710
  };
36711
36711
  readonly generation: number;
36712
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
36712
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
36713
36713
  readonly modifiedAt: number;
36714
36714
  readonly reason: string;
36715
36715
  } & Brand> & Pick<Static, Exclude<keyof Static, keyof Schema.Class<Extended_1, Schema.Struct<((keyof S["fields"] & keyof NewFields_2 extends never ? S["fields"] & NewFields_2 : Omit<S["fields"], keyof S["fields"] & keyof NewFields_2> & NewFields_2) extends (infer T_5) ? { [K in keyof T_5]: T_5[K]; } : never) extends (infer T_4) ? { [K in keyof T_4]: T_4[K]; } : never>, Self & Brand_1>>>;
@@ -37059,7 +37059,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
37059
37059
  readonly revision: Schema.NonEmptyString;
37060
37060
  }>;
37061
37061
  readonly generation: Schema.Int;
37062
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
37062
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
37063
37063
  readonly modifiedAt: Schema.Finite;
37064
37064
  readonly reason: Schema.String;
37065
37065
  } & Extension["fields"] : Omit<{
@@ -37408,7 +37408,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
37408
37408
  readonly revision: Schema.NonEmptyString;
37409
37409
  }>;
37410
37410
  readonly generation: Schema.Int;
37411
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
37411
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
37412
37412
  readonly modifiedAt: Schema.Finite;
37413
37413
  readonly reason: Schema.String;
37414
37414
  }, ("_tag" | "generation" | "key" | "modifiedAt" | "predecessor" | "reason" | "source" | "version") & keyof Extension["fields"]> & Extension["fields"]) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>]> | undefined): [Extended] extends [never] ? "Missing `Self` generic - use `class Self extends Base.extend<Self>(...)`" : Schema.Class<Extended, Schema.Struct<((("_tag" | "generation" | "key" | "modifiedAt" | "predecessor" | "reason" | "source" | "version") & keyof Extension["fields"] extends never ? {
@@ -37757,7 +37757,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
37757
37757
  readonly revision: Schema.NonEmptyString;
37758
37758
  }>;
37759
37759
  readonly generation: Schema.Int;
37760
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
37760
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
37761
37761
  readonly modifiedAt: Schema.Finite;
37762
37762
  readonly reason: Schema.String;
37763
37763
  } & Extension["fields"] : Omit<{
@@ -38106,7 +38106,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
38106
38106
  readonly revision: Schema.NonEmptyString;
38107
38107
  }>;
38108
38108
  readonly generation: Schema.Int;
38109
- readonly predecessor: Schema.NullOr<typeof import("@effect-agent/core/MemoryReference").MemorySourceReference>;
38109
+ readonly predecessor: Schema.NullOr<typeof import("effect-agent/memory-reference").MemorySourceReference>;
38110
38110
  readonly modifiedAt: Schema.Finite;
38111
38111
  readonly reason: Schema.String;
38112
38112
  }, ("_tag" | "generation" | "key" | "modifiedAt" | "predecessor" | "reason" | "source" | "version") & keyof Extension["fields"]> & Extension["fields"]) extends (infer T_1) ? { [K in keyof T_1]: T_1[K]; } : never) extends (infer T) ? { [K in keyof T]: T[K]; } : never>, {
@@ -38124,7 +38124,7 @@ declare const DocumentResponse: Schema.TaggedStruct<"Document", {
38124
38124
  readonly revision: string;
38125
38125
  };
38126
38126
  readonly generation: number;
38127
- readonly predecessor: import("@effect-agent/core/MemoryReference").MemorySourceReference | null;
38127
+ readonly predecessor: import("effect-agent/memory-reference").MemorySourceReference | null;
38128
38128
  readonly modifiedAt: number;
38129
38129
  readonly reason: string;
38130
38130
  } & Brand> & Pick<Static, Exclude<keyof Static, keyof Schema.Class<Extended_1, Schema.Struct<((keyof S["fields"] & keyof Extension_1["fields"] extends never ? S["fields"] & Extension_1["fields"] : Omit<S["fields"], keyof S["fields"] & keyof Extension_1["fields"]> & Extension_1["fields"]) extends (infer T_5) ? { [K in keyof T_5]: T_5[K]; } : never) extends (infer T_4) ? { [K in keyof T_4]: T_4[K]; } : never>, Self & Brand_1>>>;