@stigmer/protos 3.12.6 → 3.12.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ai/stigmer/agentic/agentexecution/v1/spec_pb.d.ts +58 -0
- package/ai/stigmer/agentic/agentexecution/v1/spec_pb.js +11 -1
- package/ai/stigmer/agentic/agentexecution/v1/spec_pb.js.map +1 -1
- package/ai/stigmer/agentic/memory/v1/api_pb.d.ts +57 -0
- package/ai/stigmer/agentic/memory/v1/api_pb.js +18 -0
- package/ai/stigmer/agentic/memory/v1/api_pb.js.map +1 -0
- package/ai/stigmer/agentic/memory/v1/command_connect.d.ts +93 -0
- package/ai/stigmer/agentic/memory/v1/command_connect.js +101 -0
- package/ai/stigmer/agentic/memory/v1/command_connect.js.map +1 -0
- package/ai/stigmer/agentic/memory/v1/command_pb.d.ts +92 -0
- package/ai/stigmer/agentic/memory/v1/command_pb.js +19 -0
- package/ai/stigmer/agentic/memory/v1/command_pb.js.map +1 -0
- package/ai/stigmer/agentic/memory/v1/enum_pb.d.ts +40 -0
- package/ai/stigmer/agentic/memory/v1/enum_pb.js +45 -0
- package/ai/stigmer/agentic/memory/v1/enum_pb.js.map +1 -0
- package/ai/stigmer/agentic/memory/v1/io_pb.d.ts +74 -0
- package/ai/stigmer/agentic/memory/v1/io_pb.js +27 -0
- package/ai/stigmer/agentic/memory/v1/io_pb.js.map +1 -0
- package/ai/stigmer/agentic/memory/v1/query_connect.d.ts +35 -0
- package/ai/stigmer/agentic/memory/v1/query_connect.js +43 -0
- package/ai/stigmer/agentic/memory/v1/query_connect.js.map +1 -0
- package/ai/stigmer/agentic/memory/v1/query_pb.d.ts +37 -0
- package/ai/stigmer/agentic/memory/v1/query_pb.js +19 -0
- package/ai/stigmer/agentic/memory/v1/query_pb.js.map +1 -0
- package/ai/stigmer/agentic/memory/v1/spec_pb.d.ts +76 -0
- package/ai/stigmer/agentic/memory/v1/spec_pb.js +20 -0
- package/ai/stigmer/agentic/memory/v1/spec_pb.js.map +1 -0
- package/ai/stigmer/agentic/memory/v1/status_pb.d.ts +39 -0
- package/ai/stigmer/agentic/memory/v1/status_pb.js +17 -0
- package/ai/stigmer/agentic/memory/v1/status_pb.js.map +1 -0
- package/ai/stigmer/agentic/workflow/v1/tasks/wait_pb.js +1 -1
- package/ai/stigmer/agentic/workflow/v1/tasks/wait_pb.js.map +1 -1
- package/ai/stigmer/commons/apiresource/apiresourcekind/api_resource_kind_pb.d.ts +6 -0
- package/ai/stigmer/commons/apiresource/apiresourcekind/api_resource_kind_pb.js +7 -1
- package/ai/stigmer/commons/apiresource/apiresourcekind/api_resource_kind_pb.js.map +1 -1
- package/ai/stigmer/iam/identityaccount/v1/spec_pb.d.ts +8 -0
- package/ai/stigmer/iam/identityaccount/v1/spec_pb.js +1 -1
- package/ai/stigmer/iam/identityaccount/v1/spec_pb.js.map +1 -1
- package/ai/stigmer/tenancy/organization/v1/spec_pb.d.ts +8 -0
- package/ai/stigmer/tenancy/organization/v1/spec_pb.js +1 -1
- package/ai/stigmer/tenancy/organization/v1/spec_pb.js.map +1 -1
- package/package.json +1 -1
|
@@ -236,6 +236,13 @@ export type AgentExecutionSpec = Message<"ai.stigmer.agentic.agentexecution.v1.A
|
|
|
236
236
|
* @generated from field: ai.stigmer.agentic.agentexecution.v1.DeclaredPreferences declared_preferences = 15;
|
|
237
237
|
*/
|
|
238
238
|
declaredPreferences?: DeclaredPreferences;
|
|
239
|
+
/**
|
|
240
|
+
* The caller's confirmed memories, snapshotted into this execution at
|
|
241
|
+
* create time (optional).
|
|
242
|
+
*
|
|
243
|
+
* @generated from field: ai.stigmer.agentic.agentexecution.v1.RecalledMemories recalled_memories = 16;
|
|
244
|
+
*/
|
|
245
|
+
recalledMemories?: RecalledMemories;
|
|
239
246
|
};
|
|
240
247
|
/**
|
|
241
248
|
* Describes the message ai.stigmer.agentic.agentexecution.v1.AgentExecutionSpec.
|
|
@@ -682,3 +689,54 @@ export type DeclaredPreferences = Message<"ai.stigmer.agentic.agentexecution.v1.
|
|
|
682
689
|
* Use `create(DeclaredPreferencesSchema)` to create a new message.
|
|
683
690
|
*/
|
|
684
691
|
export declare const DeclaredPreferencesSchema: GenMessage<DeclaredPreferences>;
|
|
692
|
+
/**
|
|
693
|
+
* RecalledMemories is the server-composed snapshot of the caller's
|
|
694
|
+
* confirmed memories for one execution.
|
|
695
|
+
*
|
|
696
|
+
* @generated from message ai.stigmer.agentic.agentexecution.v1.RecalledMemories
|
|
697
|
+
*/
|
|
698
|
+
export type RecalledMemories = Message<"ai.stigmer.agentic.agentexecution.v1.RecalledMemories"> & {
|
|
699
|
+
/**
|
|
700
|
+
* Whether memory is enabled for this execution's caller.
|
|
701
|
+
*
|
|
702
|
+
* @generated from field: bool enabled = 1;
|
|
703
|
+
*/
|
|
704
|
+
enabled: boolean;
|
|
705
|
+
/**
|
|
706
|
+
* The confirmed facts, wholesale — every confirmed memory of the
|
|
707
|
+
* caller in this organization.
|
|
708
|
+
*
|
|
709
|
+
* @generated from field: repeated ai.stigmer.agentic.agentexecution.v1.RecalledMemoryFact facts = 2;
|
|
710
|
+
*/
|
|
711
|
+
facts: RecalledMemoryFact[];
|
|
712
|
+
};
|
|
713
|
+
/**
|
|
714
|
+
* Describes the message ai.stigmer.agentic.agentexecution.v1.RecalledMemories.
|
|
715
|
+
* Use `create(RecalledMemoriesSchema)` to create a new message.
|
|
716
|
+
*/
|
|
717
|
+
export declare const RecalledMemoriesSchema: GenMessage<RecalledMemories>;
|
|
718
|
+
/**
|
|
719
|
+
* RecalledMemoryFact is one confirmed memory as injected into an
|
|
720
|
+
* execution.
|
|
721
|
+
*
|
|
722
|
+
* @generated from message ai.stigmer.agentic.agentexecution.v1.RecalledMemoryFact
|
|
723
|
+
*/
|
|
724
|
+
export type RecalledMemoryFact = Message<"ai.stigmer.agentic.agentexecution.v1.RecalledMemoryFact"> & {
|
|
725
|
+
/**
|
|
726
|
+
* ID of the memory record this fact came from.
|
|
727
|
+
*
|
|
728
|
+
* @generated from field: string memory_id = 1;
|
|
729
|
+
*/
|
|
730
|
+
memoryId: string;
|
|
731
|
+
/**
|
|
732
|
+
* The remembered fact, verbatim as stored at snapshot time.
|
|
733
|
+
*
|
|
734
|
+
* @generated from field: string content = 2;
|
|
735
|
+
*/
|
|
736
|
+
content: string;
|
|
737
|
+
};
|
|
738
|
+
/**
|
|
739
|
+
* Describes the message ai.stigmer.agentic.agentexecution.v1.RecalledMemoryFact.
|
|
740
|
+
* Use `create(RecalledMemoryFactSchema)` to create a new message.
|
|
741
|
+
*/
|
|
742
|
+
export declare const RecalledMemoryFactSchema: GenMessage<RecalledMemoryFact>;
|
|
@@ -10,7 +10,7 @@ import { file_google_protobuf_struct, file_google_protobuf_timestamp } from "@bu
|
|
|
10
10
|
/**
|
|
11
11
|
* Describes the file ai/stigmer/agentic/agentexecution/v1/spec.proto.
|
|
12
12
|
*/
|
|
13
|
-
export const file_ai_stigmer_agentic_agentexecution_v1_spec = /*@__PURE__*/ fileDesc("
|
|
13
|
+
export const file_ai_stigmer_agentic_agentexecution_v1_spec = /*@__PURE__*/ fileDesc("Ci9haS9zdGlnbWVyL2FnZW50aWMvYWdlbnRleGVjdXRpb24vdjEvc3BlYy5wcm90bxIkYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxIuEKChJBZ2VudEV4ZWN1dGlvblNwZWMSEgoKc2Vzc2lvbl9pZBgBIAEoCRIQCghhZ2VudF9pZBgCIAEoCRJACgxzZXNzaW9uX3NwZWMYDSABKAsyKi5haS5zdGlnbWVyLmFnZW50aWMuc2Vzc2lvbi52MS5TZXNzaW9uU3BlYxIYCgdtZXNzYWdlGAMgASgJQge6SARyAhABEk8KEGV4ZWN1dGlvbl9jb25maWcYBCABKAsyNS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuRXhlY3V0aW9uQ29uZmlnEl0KC3J1bnRpbWVfZW52GAUgAygLMkguYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkFnZW50RXhlY3V0aW9uU3BlYy5SdW50aW1lRW52RW50cnkSFgoOY2FsbGJhY2tfdG9rZW4YBiABKAwSGAoQYXV0b19hcHByb3ZlX2FsbBgHIAEoCBIaChJwYXJlbnRfd29ya2Zsb3dfaWQYCCABKAkSRQoLYXR0YWNobWVudHMYCSADKAsyMC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuQXR0YWNobWVudBIbChN3b3Jrc3BhY2VfZmlsZV9yZWZzGAogAygJEhsKE2FjdGl2aXR5X3Rhc2tfcXVldWUYCyABKAkSHwoXc3VwZXJzZWRlc19leGVjdXRpb25faWQYDCABKAkSVwoUY29udmVyc2F0aW9uX2NhdGNodXAYDiABKAsyOS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuQ29udmVyc2F0aW9uQ2F0Y2h1cBJXChRkZWNsYXJlZF9wcmVmZXJlbmNlcxgPIAEoCzI5LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5EZWNsYXJlZFByZWZlcmVuY2VzElEKEXJlY2FsbGVkX21lbW9yaWVzGBAgASgLMjYuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLlJlY2FsbGVkTWVtb3JpZXMaaQoPUnVudGltZUVudkVudHJ5EgsKA2tleRgBIAEoCRJFCgV2YWx1ZRgCIAEoCzI2LmFpLnN0aWdtZXIuYWdlbnRpYy5leGVjdXRpb25jb250ZXh0LnYxLkV4ZWN1dGlvblZhbHVlOgI4ATq4A7pItAMaywEKIWFnZW50X2V4ZWN1dGlvbi5zZXNzaW9uX2V4Y2x1c2l2ZRJyc2Vzc2lvbl9pZCBhbmQgc2Vzc2lvbl9zcGVjIGFyZSBtdXR1YWxseSBleGNsdXNpdmUg4oCUIHJlZmVyZW5jZSBhbiBleGlzdGluZyBzZXNzaW9uIG9yIGRlZmluZSBhIG5ldyBvbmUsIG5vdCBib3RoGjIhKHRoaXMuc2Vzc2lvbl9pZCAhPSAnJyAmJiBoYXModGhpcy5zZXNzaW9uX3NwZWMpKRrjAQoqYWdlbnRfZXhlY3V0aW9uLnNlc3Npb25fc3BlY19oYXJuZXNzX3N0YXRlEnBzZXNzaW9uX3NwZWMuaGFybmVzc19zdGF0ZV9pZCBtdXN0IGJlIGVtcHR5IOKAlCBoYXJuZXNzIHN0YXRlIGlzIGNyZWF0ZWQgYnkgdGhlIHJ1bm5lciBhZnRlciB0aGUgZmlyc3QgZXhlY3V0aW9uGkMhaGFzKHRoaXMuc2Vzc2lvbl9zcGVjKSB8fCB0aGlzLnNlc3Npb25fc3BlYy5oYXJuZXNzX3N0YXRlX2lkID09ICcnIvoECg9FeGVjdXRpb25Db25maWcSEgoKbW9kZWxfbmFtZRgBIAEoCRJZChJjb250ZXh0X21hbmFnZW1lbnQYAiABKAsyPS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuQ29udGV4dE1hbmFnZW1lbnRDb25maWcSFwoPbWF4X3Rvb2xfcm91bmRzGAMgASgFEh0KFW1heF90b29sX3Jlc3VsdF9jaGFycxgEIAEoBRIUCgxtYXhfY29zdF91c2QYBSABKAESWQoQaW50ZXJhY3Rpb25fbW9kZRgGIAEoDjI1LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5JbnRlcmFjdGlvbk1vZGVCCLpIBYIBAhABEjkKGHN0cnVjdHVyZWRfb3V0cHV0X3NjaGVtYRgHIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3QSFwoPYnVpbGRfZnJvbV9wbGFuGAggASgIElMKDWFwcHJvdmFsX21vZGUYCSABKA4yMi5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuQXBwcm92YWxNb2RlQgi6SAWCAQIQARJRCgxzZXJ2aWNlX3RpZXIYCiABKA4yMS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuU2VydmljZVRpZXJCCLpIBYIBAhABElMKDXRoaW5raW5nX21vZGUYCyABKA4yMi5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuVGhpbmtpbmdNb2RlQgi6SAWCAQIQASKKAQoXQ29udGV4dE1hbmFnZW1lbnRDb25maWcSHQoVZGlzYWJsZV9zdW1tYXJpemF0aW9uGAEgASgIEikKGGN1c3RvbV90cmlnZ2VyX3RocmVzaG9sZBgCIAEoBUIHukgEGgIoABIlChRjdXN0b21fdGFyZ2V0X3Rva2VucxgDIAEoBUIHukgEGgIoACLUAgoKQXR0YWNobWVudBLYAQoIZmlsZW5hbWUYASABKAlCxQG6SMEBugG5AQobYXR0YWNobWVudC5maWxlbmFtZS5ub19wYXRoEk5maWxlbmFtZSBtdXN0IGJlIGEgYmFyZSBmaWxlbmFtZSB3aXRob3V0IHBhdGggc2VwYXJhdG9ycyBvciB0cmF2ZXJzYWwgc2VnbWVudHMaSiF0aGlzLmNvbnRhaW5zKCcvJykgJiYgIXRoaXMuY29udGFpbnMoJ1xcJykgJiYgdGhpcyAhPSAnLicgJiYgdGhpcyAhPSAnLi4ncgIQARIcCgtzdG9yYWdlX2tleRgCIAEoCUIHukgEcgIQARISCgptb3VudF9wYXRoGAMgASgJEhQKDGNvbnRlbnRfdHlwZRgEIAEoCRIPCgdleHRyYWN0GAUgASgIEhIKCmxvY2FsX3BhdGgYBiABKAkiVQoTQ29udmVyc2F0aW9uQ2F0Y2h1cBIOCgZkaWdlc3QYASABKAkSLgoKd2luZG93X2VuZBgCIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiQAoTRGVjbGFyZWRQcmVmZXJlbmNlcxITCgtvcmdfY29udGV4dBgBIAEoCRIUCgx1c2VyX2NvbnRleHQYAiABKAkibAoQUmVjYWxsZWRNZW1vcmllcxIPCgdlbmFibGVkGAEgASgIEkcKBWZhY3RzGAIgAygLMjguYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLlJlY2FsbGVkTWVtb3J5RmFjdCI4ChJSZWNhbGxlZE1lbW9yeUZhY3QSEQoJbWVtb3J5X2lkGAEgASgJEg8KB2NvbnRlbnQYAiABKAliBnByb3RvMw", [file_ai_stigmer_agentic_agentexecution_v1_enum, file_ai_stigmer_agentic_executioncontext_v1_spec, file_ai_stigmer_agentic_session_v1_spec, file_buf_validate_validate, file_google_protobuf_struct, file_google_protobuf_timestamp]);
|
|
14
14
|
/**
|
|
15
15
|
* Describes the message ai.stigmer.agentic.agentexecution.v1.AgentExecutionSpec.
|
|
16
16
|
* Use `create(AgentExecutionSpecSchema)` to create a new message.
|
|
@@ -41,4 +41,14 @@ export const ConversationCatchupSchema = /*@__PURE__*/ messageDesc(file_ai_stigm
|
|
|
41
41
|
* Use `create(DeclaredPreferencesSchema)` to create a new message.
|
|
42
42
|
*/
|
|
43
43
|
export const DeclaredPreferencesSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentexecution_v1_spec, 5);
|
|
44
|
+
/**
|
|
45
|
+
* Describes the message ai.stigmer.agentic.agentexecution.v1.RecalledMemories.
|
|
46
|
+
* Use `create(RecalledMemoriesSchema)` to create a new message.
|
|
47
|
+
*/
|
|
48
|
+
export const RecalledMemoriesSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentexecution_v1_spec, 6);
|
|
49
|
+
/**
|
|
50
|
+
* Describes the message ai.stigmer.agentic.agentexecution.v1.RecalledMemoryFact.
|
|
51
|
+
* Use `create(RecalledMemoryFactSchema)` to create a new message.
|
|
52
|
+
*/
|
|
53
|
+
export const RecalledMemoryFactSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentexecution_v1_spec, 7);
|
|
44
54
|
//# sourceMappingURL=spec_pb.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"spec_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/spec_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,qIAAqI;AACrI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,8CAA8C,EAAE,MAAM,cAAc,CAAC;AAE9E,OAAO,EAAE,gDAAgD,EAAE,MAAM,sCAAsC,CAAC;AAExG,OAAO,EAAE,uCAAuC,EAAE,MAAM,6BAA6B,CAAC;AACtF,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAExF,OAAO,EAAE,2BAA2B,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGrG;;GAEG;AACH,MAAM,CAAC,MAAM,8CAA8C,GAAY,aAAa,CAClF,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"spec_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/spec_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,qIAAqI;AACrI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,8CAA8C,EAAE,MAAM,cAAc,CAAC;AAE9E,OAAO,EAAE,gDAAgD,EAAE,MAAM,sCAAsC,CAAC;AAExG,OAAO,EAAE,uCAAuC,EAAE,MAAM,6BAA6B,CAAC;AACtF,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAExF,OAAO,EAAE,2BAA2B,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGrG;;GAEG;AACH,MAAM,CAAC,MAAM,8CAA8C,GAAY,aAAa,CAClF,QAAQ,CAAC,ozHAAozH,EAAE,CAAC,8CAA8C,EAAE,gDAAgD,EAAE,uCAAuC,EAAE,0BAA0B,EAAE,2BAA2B,EAAE,8BAA8B,CAAC,CAAC,CAAC;AA4PviI;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmC,aAAa,CACnF,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC;AAyMjE;;;GAGG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAgC,aAAa,CAC7E,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC;AAsGjE;;;GAGG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAwC,aAAa,CAC7F,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC;AAiGjE;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAA2B,aAAa,CACnE,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC;AAyBjE;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC;AAwBjE;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC;AAyBjE;;;GAGG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAiC,aAAa,CAC/E,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC;AAwBjE;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmC,aAAa,CACnF,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { MemorySpec } from "./spec_pb.js";
|
|
3
|
+
import type { MemoryStatus } from "./status_pb.js";
|
|
4
|
+
import type { ApiResourceMetadata } from "../../../commons/apiresource/metadata_pb.js";
|
|
5
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
6
|
+
/**
|
|
7
|
+
* Describes the file ai/stigmer/agentic/memory/v1/api.proto.
|
|
8
|
+
*/
|
|
9
|
+
export declare const file_ai_stigmer_agentic_memory_v1_api: GenFile;
|
|
10
|
+
/**
|
|
11
|
+
* Memory is a single fact the platform remembers about a person.
|
|
12
|
+
*
|
|
13
|
+
* A memory is proposed by an agent during a session, and becomes active
|
|
14
|
+
* only after the person it is about confirms it. Confirmed memories are
|
|
15
|
+
* recalled into that person's future agent executions as background
|
|
16
|
+
* context. Every memory is individually listable, editable, and
|
|
17
|
+
* deletable — the record is the trust surface over the recall seam.
|
|
18
|
+
*
|
|
19
|
+
* @generated from message ai.stigmer.agentic.memory.v1.Memory
|
|
20
|
+
*/
|
|
21
|
+
export type Memory = Message<"ai.stigmer.agentic.memory.v1.Memory"> & {
|
|
22
|
+
/**
|
|
23
|
+
* API version for this resource type.
|
|
24
|
+
*
|
|
25
|
+
* @generated from field: string api_version = 1;
|
|
26
|
+
*/
|
|
27
|
+
apiVersion: string;
|
|
28
|
+
/**
|
|
29
|
+
* Resource kind identifier.
|
|
30
|
+
*
|
|
31
|
+
* @generated from field: string kind = 2;
|
|
32
|
+
*/
|
|
33
|
+
kind: string;
|
|
34
|
+
/**
|
|
35
|
+
* Resource metadata including name, organization, and labels.
|
|
36
|
+
*
|
|
37
|
+
* @generated from field: ai.stigmer.commons.apiresource.ApiResourceMetadata metadata = 3;
|
|
38
|
+
*/
|
|
39
|
+
metadata?: ApiResourceMetadata;
|
|
40
|
+
/**
|
|
41
|
+
* The remembered fact, its subject, and where it came from.
|
|
42
|
+
*
|
|
43
|
+
* @generated from field: ai.stigmer.agentic.memory.v1.MemorySpec spec = 4;
|
|
44
|
+
*/
|
|
45
|
+
spec?: MemorySpec;
|
|
46
|
+
/**
|
|
47
|
+
* System-managed state: the consent lifecycle and audit trail.
|
|
48
|
+
*
|
|
49
|
+
* @generated from field: ai.stigmer.agentic.memory.v1.MemoryStatus status = 5;
|
|
50
|
+
*/
|
|
51
|
+
status?: MemoryStatus;
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* Describes the message ai.stigmer.agentic.memory.v1.Memory.
|
|
55
|
+
* Use `create(MemorySchema)` to create a new message.
|
|
56
|
+
*/
|
|
57
|
+
export declare const MemorySchema: GenMessage<Memory>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.2 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file ai/stigmer/agentic/memory/v1/api.proto (package ai.stigmer.agentic.memory.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
|
+
import { file_ai_stigmer_agentic_memory_v1_spec } from "./spec_pb.js";
|
|
6
|
+
import { file_ai_stigmer_agentic_memory_v1_status } from "./status_pb.js";
|
|
7
|
+
import { file_ai_stigmer_commons_apiresource_metadata } from "../../../commons/apiresource/metadata_pb.js";
|
|
8
|
+
import { file_buf_validate_validate } from "../../../../../buf/validate/validate_pb.js";
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file ai/stigmer/agentic/memory/v1/api.proto.
|
|
11
|
+
*/
|
|
12
|
+
export const file_ai_stigmer_agentic_memory_v1_api = /*@__PURE__*/ fileDesc("CiZhaS9zdGlnbWVyL2FnZW50aWMvbWVtb3J5L3YxL2FwaS5wcm90bxIcYWkuc3RpZ21lci5hZ2VudGljLm1lbW9yeS52MSKbAgoGTWVtb3J5EjEKC2FwaV92ZXJzaW9uGAEgASgJQhy6SBlyFwoVYWdlbnRpYy5zdGlnbWVyLmFpL3YxEhsKBGtpbmQYAiABKAlCDbpICnIICgZNZW1vcnkSTQoIbWV0YWRhdGEYAyABKAsyMy5haS5zdGlnbWVyLmNvbW1vbnMuYXBpcmVzb3VyY2UuQXBpUmVzb3VyY2VNZXRhZGF0YUIGukgDyAEBEjYKBHNwZWMYBCABKAsyKC5haS5zdGlnbWVyLmFnZW50aWMubWVtb3J5LnYxLk1lbW9yeVNwZWMSOgoGc3RhdHVzGAUgASgLMiouYWkuc3RpZ21lci5hZ2VudGljLm1lbW9yeS52MS5NZW1vcnlTdGF0dXNiBnByb3RvMw", [file_ai_stigmer_agentic_memory_v1_spec, file_ai_stigmer_agentic_memory_v1_status, file_ai_stigmer_commons_apiresource_metadata, file_buf_validate_validate]);
|
|
13
|
+
/**
|
|
14
|
+
* Describes the message ai.stigmer.agentic.memory.v1.Memory.
|
|
15
|
+
* Use `create(MemorySchema)` to create a new message.
|
|
16
|
+
*/
|
|
17
|
+
export const MemorySchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_memory_v1_api, 0);
|
|
18
|
+
//# sourceMappingURL=api_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/memory/v1/api_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,oHAAoH;AACpH,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,sCAAsC,EAAE,MAAM,cAAc,CAAC;AAEtE,OAAO,EAAE,wCAAwC,EAAE,MAAM,gBAAgB,CAAC;AAE1E,OAAO,EAAE,4CAA4C,EAAE,MAAM,6CAA6C,CAAC;AAC3G,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAGxF;;GAEG;AACH,MAAM,CAAC,MAAM,qCAAqC,GAAY,aAAa,CACzE,QAAQ,CAAC,weAAwe,EAAE,CAAC,sCAAsC,EAAE,wCAAwC,EAAE,4CAA4C,EAAE,0BAA0B,CAAC,CAAC,CAAC;AAkDnpB;;;GAGG;AACH,MAAM,CAAC,MAAM,YAAY,GAAuB,aAAa,CAC3D,WAAW,CAAC,qCAAqC,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* MemoryCommandController handles write operations for memories.
|
|
3
|
+
*
|
|
4
|
+
* @generated from service ai.stigmer.agentic.memory.v1.MemoryCommandController
|
|
5
|
+
*/
|
|
6
|
+
export declare const MemoryCommandController: {
|
|
7
|
+
readonly typeName: "ai.stigmer.agentic.memory.v1.MemoryCommandController";
|
|
8
|
+
readonly methods: {
|
|
9
|
+
/**
|
|
10
|
+
* Create a memory in the proposed state.
|
|
11
|
+
*
|
|
12
|
+
* The memory starts its consent lifecycle as proposed: it is not
|
|
13
|
+
* recalled into any execution until the person it is about confirms
|
|
14
|
+
* it. The subject and provenance are derived by the server from the
|
|
15
|
+
* calling credential and request context — values supplied on the
|
|
16
|
+
* request are overwritten.
|
|
17
|
+
*
|
|
18
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryCommandController.create
|
|
19
|
+
*/
|
|
20
|
+
readonly create: {
|
|
21
|
+
readonly name: "create";
|
|
22
|
+
readonly I: any;
|
|
23
|
+
readonly O: any;
|
|
24
|
+
readonly kind: any;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Update a memory's fact text.
|
|
28
|
+
*
|
|
29
|
+
* Replaces the spec wholesale, but only the content may actually
|
|
30
|
+
* change: the subject and provenance are immutable, and the consent
|
|
31
|
+
* lifecycle in status is never touched by updates — use confirm or
|
|
32
|
+
* reject to decide on a proposal.
|
|
33
|
+
*
|
|
34
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryCommandController.update
|
|
35
|
+
*/
|
|
36
|
+
readonly update: {
|
|
37
|
+
readonly name: "update";
|
|
38
|
+
readonly I: any;
|
|
39
|
+
readonly O: any;
|
|
40
|
+
readonly kind: any;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Delete a memory permanently, in any lifecycle state.
|
|
44
|
+
*
|
|
45
|
+
* Deletion is the retention mechanism: deleting a confirmed memory is
|
|
46
|
+
* how consent is revoked, and the fact stops reaching future
|
|
47
|
+
* executions immediately. Past executions that already recalled it
|
|
48
|
+
* keep their immutable snapshots.
|
|
49
|
+
*
|
|
50
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryCommandController.delete
|
|
51
|
+
*/
|
|
52
|
+
readonly delete: {
|
|
53
|
+
readonly name: "delete";
|
|
54
|
+
readonly I: any;
|
|
55
|
+
readonly O: any;
|
|
56
|
+
readonly kind: any;
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* Confirm a proposed memory, making it recallable.
|
|
60
|
+
*
|
|
61
|
+
* Confirmation is the consent act: from the next eligible execution
|
|
62
|
+
* on, the fact is injected as background context. Confirming an
|
|
63
|
+
* already-confirmed memory succeeds and changes nothing. Confirming a
|
|
64
|
+
* rejected memory is refused — delete it instead and let the agent
|
|
65
|
+
* propose again.
|
|
66
|
+
*
|
|
67
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryCommandController.confirm
|
|
68
|
+
*/
|
|
69
|
+
readonly confirm: {
|
|
70
|
+
readonly name: "confirm";
|
|
71
|
+
readonly I: any;
|
|
72
|
+
readonly O: any;
|
|
73
|
+
readonly kind: any;
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* Reject a proposed memory, keeping it as an audit record.
|
|
77
|
+
*
|
|
78
|
+
* A rejected memory is never recalled. The record is kept rather than
|
|
79
|
+
* deleted so the decision is auditable; delete it to remove it
|
|
80
|
+
* entirely. Rejecting an already-rejected memory succeeds and changes
|
|
81
|
+
* nothing. Rejecting a confirmed memory is refused — deleting it is
|
|
82
|
+
* how a confirmed fact is revoked.
|
|
83
|
+
*
|
|
84
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryCommandController.reject
|
|
85
|
+
*/
|
|
86
|
+
readonly reject: {
|
|
87
|
+
readonly name: "reject";
|
|
88
|
+
readonly I: any;
|
|
89
|
+
readonly O: any;
|
|
90
|
+
readonly kind: any;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
};
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
// @generated by protoc-gen-connect-es v1.6.1 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file ai/stigmer/agentic/memory/v1/command.proto (package ai.stigmer.agentic.memory.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
import { Memory } from "./api_pbjs";
|
|
6
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
|
7
|
+
import { MemoryId } from "./io_pbjs";
|
|
8
|
+
/**
|
|
9
|
+
* MemoryCommandController handles write operations for memories.
|
|
10
|
+
*
|
|
11
|
+
* @generated from service ai.stigmer.agentic.memory.v1.MemoryCommandController
|
|
12
|
+
*/
|
|
13
|
+
export const MemoryCommandController = {
|
|
14
|
+
typeName: "ai.stigmer.agentic.memory.v1.MemoryCommandController",
|
|
15
|
+
methods: {
|
|
16
|
+
/**
|
|
17
|
+
* Create a memory in the proposed state.
|
|
18
|
+
*
|
|
19
|
+
* The memory starts its consent lifecycle as proposed: it is not
|
|
20
|
+
* recalled into any execution until the person it is about confirms
|
|
21
|
+
* it. The subject and provenance are derived by the server from the
|
|
22
|
+
* calling credential and request context — values supplied on the
|
|
23
|
+
* request are overwritten.
|
|
24
|
+
*
|
|
25
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryCommandController.create
|
|
26
|
+
*/
|
|
27
|
+
create: {
|
|
28
|
+
name: "create",
|
|
29
|
+
I: Memory,
|
|
30
|
+
O: Memory,
|
|
31
|
+
kind: MethodKind.Unary,
|
|
32
|
+
},
|
|
33
|
+
/**
|
|
34
|
+
* Update a memory's fact text.
|
|
35
|
+
*
|
|
36
|
+
* Replaces the spec wholesale, but only the content may actually
|
|
37
|
+
* change: the subject and provenance are immutable, and the consent
|
|
38
|
+
* lifecycle in status is never touched by updates — use confirm or
|
|
39
|
+
* reject to decide on a proposal.
|
|
40
|
+
*
|
|
41
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryCommandController.update
|
|
42
|
+
*/
|
|
43
|
+
update: {
|
|
44
|
+
name: "update",
|
|
45
|
+
I: Memory,
|
|
46
|
+
O: Memory,
|
|
47
|
+
kind: MethodKind.Unary,
|
|
48
|
+
},
|
|
49
|
+
/**
|
|
50
|
+
* Delete a memory permanently, in any lifecycle state.
|
|
51
|
+
*
|
|
52
|
+
* Deletion is the retention mechanism: deleting a confirmed memory is
|
|
53
|
+
* how consent is revoked, and the fact stops reaching future
|
|
54
|
+
* executions immediately. Past executions that already recalled it
|
|
55
|
+
* keep their immutable snapshots.
|
|
56
|
+
*
|
|
57
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryCommandController.delete
|
|
58
|
+
*/
|
|
59
|
+
delete: {
|
|
60
|
+
name: "delete",
|
|
61
|
+
I: MemoryId,
|
|
62
|
+
O: Memory,
|
|
63
|
+
kind: MethodKind.Unary,
|
|
64
|
+
},
|
|
65
|
+
/**
|
|
66
|
+
* Confirm a proposed memory, making it recallable.
|
|
67
|
+
*
|
|
68
|
+
* Confirmation is the consent act: from the next eligible execution
|
|
69
|
+
* on, the fact is injected as background context. Confirming an
|
|
70
|
+
* already-confirmed memory succeeds and changes nothing. Confirming a
|
|
71
|
+
* rejected memory is refused — delete it instead and let the agent
|
|
72
|
+
* propose again.
|
|
73
|
+
*
|
|
74
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryCommandController.confirm
|
|
75
|
+
*/
|
|
76
|
+
confirm: {
|
|
77
|
+
name: "confirm",
|
|
78
|
+
I: MemoryId,
|
|
79
|
+
O: Memory,
|
|
80
|
+
kind: MethodKind.Unary,
|
|
81
|
+
},
|
|
82
|
+
/**
|
|
83
|
+
* Reject a proposed memory, keeping it as an audit record.
|
|
84
|
+
*
|
|
85
|
+
* A rejected memory is never recalled. The record is kept rather than
|
|
86
|
+
* deleted so the decision is auditable; delete it to remove it
|
|
87
|
+
* entirely. Rejecting an already-rejected memory succeeds and changes
|
|
88
|
+
* nothing. Rejecting a confirmed memory is refused — deleting it is
|
|
89
|
+
* how a confirmed fact is revoked.
|
|
90
|
+
*
|
|
91
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryCommandController.reject
|
|
92
|
+
*/
|
|
93
|
+
reject: {
|
|
94
|
+
name: "reject",
|
|
95
|
+
I: MemoryId,
|
|
96
|
+
O: Memory,
|
|
97
|
+
kind: MethodKind.Unary,
|
|
98
|
+
},
|
|
99
|
+
}
|
|
100
|
+
};
|
|
101
|
+
//# sourceMappingURL=command_connect.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"command_connect.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/memory/v1/command_connect.ts"],"names":[],"mappings":"AAAA,4FAA4F;AAC5F,wHAAwH;AACxH,oBAAoB;AACpB,cAAc;AAEd,OAAO,EAAE,MAAM,EAAE,MAAM,YAAY,CAAC;AACpC,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAErC;;;;GAIG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG;IACrC,QAAQ,EAAE,sDAAsD;IAChE,OAAO,EAAE;QACP;;;;;;;;;;WAUG;QACH,MAAM,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,CAAC,EAAE,MAAM;YACT,CAAC,EAAE,MAAM;YACT,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;WASG;QACH,MAAM,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,CAAC,EAAE,MAAM;YACT,CAAC,EAAE,MAAM;YACT,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;WASG;QACH,MAAM,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,CAAC,EAAE,QAAQ;YACX,CAAC,EAAE,MAAM;YACT,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;WAUG;QACH,OAAO,EAAE;YACP,IAAI,EAAE,SAAS;YACf,CAAC,EAAE,QAAQ;YACX,CAAC,EAAE,MAAM;YACT,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;WAUG;QACH,MAAM,EAAE;YACN,IAAI,EAAE,QAAQ;YACd,CAAC,EAAE,QAAQ;YACX,CAAC,EAAE,MAAM;YACT,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;KACF;CACO,CAAC"}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import type { GenFile, GenService } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { MemorySchema } from "./api_pb.js";
|
|
3
|
+
import type { MemoryIdSchema } from "./io_pb.js";
|
|
4
|
+
/**
|
|
5
|
+
* Describes the file ai/stigmer/agentic/memory/v1/command.proto.
|
|
6
|
+
*/
|
|
7
|
+
export declare const file_ai_stigmer_agentic_memory_v1_command: GenFile;
|
|
8
|
+
/**
|
|
9
|
+
* MemoryCommandController handles write operations for memories.
|
|
10
|
+
*
|
|
11
|
+
* @generated from service ai.stigmer.agentic.memory.v1.MemoryCommandController
|
|
12
|
+
*/
|
|
13
|
+
export declare const MemoryCommandController: GenService<{
|
|
14
|
+
/**
|
|
15
|
+
* Create a memory in the proposed state.
|
|
16
|
+
*
|
|
17
|
+
* The memory starts its consent lifecycle as proposed: it is not
|
|
18
|
+
* recalled into any execution until the person it is about confirms
|
|
19
|
+
* it. The subject and provenance are derived by the server from the
|
|
20
|
+
* calling credential and request context — values supplied on the
|
|
21
|
+
* request are overwritten.
|
|
22
|
+
*
|
|
23
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryCommandController.create
|
|
24
|
+
*/
|
|
25
|
+
create: {
|
|
26
|
+
methodKind: "unary";
|
|
27
|
+
input: typeof MemorySchema;
|
|
28
|
+
output: typeof MemorySchema;
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* Update a memory's fact text.
|
|
32
|
+
*
|
|
33
|
+
* Replaces the spec wholesale, but only the content may actually
|
|
34
|
+
* change: the subject and provenance are immutable, and the consent
|
|
35
|
+
* lifecycle in status is never touched by updates — use confirm or
|
|
36
|
+
* reject to decide on a proposal.
|
|
37
|
+
*
|
|
38
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryCommandController.update
|
|
39
|
+
*/
|
|
40
|
+
update: {
|
|
41
|
+
methodKind: "unary";
|
|
42
|
+
input: typeof MemorySchema;
|
|
43
|
+
output: typeof MemorySchema;
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* Delete a memory permanently, in any lifecycle state.
|
|
47
|
+
*
|
|
48
|
+
* Deletion is the retention mechanism: deleting a confirmed memory is
|
|
49
|
+
* how consent is revoked, and the fact stops reaching future
|
|
50
|
+
* executions immediately. Past executions that already recalled it
|
|
51
|
+
* keep their immutable snapshots.
|
|
52
|
+
*
|
|
53
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryCommandController.delete
|
|
54
|
+
*/
|
|
55
|
+
delete: {
|
|
56
|
+
methodKind: "unary";
|
|
57
|
+
input: typeof MemoryIdSchema;
|
|
58
|
+
output: typeof MemorySchema;
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* Confirm a proposed memory, making it recallable.
|
|
62
|
+
*
|
|
63
|
+
* Confirmation is the consent act: from the next eligible execution
|
|
64
|
+
* on, the fact is injected as background context. Confirming an
|
|
65
|
+
* already-confirmed memory succeeds and changes nothing. Confirming a
|
|
66
|
+
* rejected memory is refused — delete it instead and let the agent
|
|
67
|
+
* propose again.
|
|
68
|
+
*
|
|
69
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryCommandController.confirm
|
|
70
|
+
*/
|
|
71
|
+
confirm: {
|
|
72
|
+
methodKind: "unary";
|
|
73
|
+
input: typeof MemoryIdSchema;
|
|
74
|
+
output: typeof MemorySchema;
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* Reject a proposed memory, keeping it as an audit record.
|
|
78
|
+
*
|
|
79
|
+
* A rejected memory is never recalled. The record is kept rather than
|
|
80
|
+
* deleted so the decision is auditable; delete it to remove it
|
|
81
|
+
* entirely. Rejecting an already-rejected memory succeeds and changes
|
|
82
|
+
* nothing. Rejecting a confirmed memory is refused — deleting it is
|
|
83
|
+
* how a confirmed fact is revoked.
|
|
84
|
+
*
|
|
85
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryCommandController.reject
|
|
86
|
+
*/
|
|
87
|
+
reject: {
|
|
88
|
+
methodKind: "unary";
|
|
89
|
+
input: typeof MemoryIdSchema;
|
|
90
|
+
output: typeof MemorySchema;
|
|
91
|
+
};
|
|
92
|
+
}>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.2 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file ai/stigmer/agentic/memory/v1/command.proto (package ai.stigmer.agentic.memory.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, serviceDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
|
+
import { file_ai_stigmer_agentic_memory_v1_api } from "./api_pb.js";
|
|
6
|
+
import { file_ai_stigmer_agentic_memory_v1_io } from "./io_pb.js";
|
|
7
|
+
import { file_ai_stigmer_commons_apiresource_rpc_service_options } from "../../../commons/apiresource/rpc_service_options_pb.js";
|
|
8
|
+
import { file_ai_stigmer_commons_rpc_method_options } from "../../../commons/rpc/method_options_pb.js";
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file ai/stigmer/agentic/memory/v1/command.proto.
|
|
11
|
+
*/
|
|
12
|
+
export const file_ai_stigmer_agentic_memory_v1_command = /*@__PURE__*/ fileDesc("CiphaS9zdGlnbWVyL2FnZW50aWMvbWVtb3J5L3YxL2NvbW1hbmQucHJvdG8SHGFpLnN0aWdtZXIuYWdlbnRpYy5tZW1vcnkudjEypQUKF01lbW9yeUNvbW1hbmRDb250cm9sbGVyEloKBmNyZWF0ZRIkLmFpLnN0aWdtZXIuYWdlbnRpYy5tZW1vcnkudjEuTWVtb3J5GiQuYWkuc3RpZ21lci5hZ2VudGljLm1lbW9yeS52MS5NZW1vcnkiBNC4GAESigEKBnVwZGF0ZRIkLmFpLnN0aWdtZXIuYWdlbnRpYy5tZW1vcnkudjEuTWVtb3J5GiQuYWkuc3RpZ21lci5hZ2VudGljLm1lbW9yeS52MS5NZW1vcnkiNMK4GDAIAhA5IgttZXRhZGF0YS5pZCoddW5hdXRob3JpemVkIHRvIHVwZGF0ZSBtZW1vcnkShgEKBmRlbGV0ZRImLmFpLnN0aWdtZXIuYWdlbnRpYy5tZW1vcnkudjEuTWVtb3J5SWQaJC5haS5zdGlnbWVyLmFnZW50aWMubWVtb3J5LnYxLk1lbW9yeSIuwrgYKggDEDkiBXZhbHVlKh11bmF1dGhvcml6ZWQgdG8gZGVsZXRlIG1lbW9yeRKIAQoHY29uZmlybRImLmFpLnN0aWdtZXIuYWdlbnRpYy5tZW1vcnkudjEuTWVtb3J5SWQaJC5haS5zdGlnbWVyLmFnZW50aWMubWVtb3J5LnYxLk1lbW9yeSIvwrgYKwgCEDkiBXZhbHVlKh51bmF1dGhvcml6ZWQgdG8gY29uZmlybSBtZW1vcnkShgEKBnJlamVjdBImLmFpLnN0aWdtZXIuYWdlbnRpYy5tZW1vcnkudjEuTWVtb3J5SWQaJC5haS5zdGlnbWVyLmFnZW50aWMubWVtb3J5LnYxLk1lbW9yeSIuwrgYKggCEDkiBXZhbHVlKh11bmF1dGhvcml6ZWQgdG8gcmVqZWN0IG1lbW9yeRoEoP8rOWIGcHJvdG8z", [file_ai_stigmer_agentic_memory_v1_api, file_ai_stigmer_agentic_memory_v1_io, file_ai_stigmer_commons_apiresource_rpc_service_options, file_ai_stigmer_commons_rpc_method_options]);
|
|
13
|
+
/**
|
|
14
|
+
* MemoryCommandController handles write operations for memories.
|
|
15
|
+
*
|
|
16
|
+
* @generated from service ai.stigmer.agentic.memory.v1.MemoryCommandController
|
|
17
|
+
*/
|
|
18
|
+
export const MemoryCommandController = /*@__PURE__*/ serviceDesc(file_ai_stigmer_agentic_memory_v1_command, 0);
|
|
19
|
+
//# sourceMappingURL=command_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"command_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/memory/v1/command_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,wHAAwH;AACxH,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,qCAAqC,EAAE,MAAM,aAAa,CAAC;AAEpE,OAAO,EAAE,oCAAoC,EAAE,MAAM,YAAY,CAAC;AAClE,OAAO,EAAE,uDAAuD,EAAE,MAAM,wDAAwD,CAAC;AACjI,OAAO,EAAE,0CAA0C,EAAE,MAAM,2CAA2C,CAAC;AAEvG;;GAEG;AACH,MAAM,CAAC,MAAM,yCAAyC,GAAY,aAAa,CAC7E,QAAQ,CAAC,0/BAA0/B,EAAE,CAAC,qCAAqC,EAAE,oCAAoC,EAAE,uDAAuD,EAAE,0CAA0C,CAAC,CAAC,CAAC;AAE3rC;;;;GAIG;AACH,MAAM,CAAC,MAAM,uBAAuB,GA+E/B,aAAa,CAChB,WAAW,CAAC,yCAAyC,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import type { GenEnum, GenFile } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
/**
|
|
3
|
+
* Describes the file ai/stigmer/agentic/memory/v1/enum.proto.
|
|
4
|
+
*/
|
|
5
|
+
export declare const file_ai_stigmer_agentic_memory_v1_enum: GenFile;
|
|
6
|
+
/**
|
|
7
|
+
* MemoryLifecycleState tracks a memory's consent lifecycle.
|
|
8
|
+
*
|
|
9
|
+
* @generated from enum ai.stigmer.agentic.memory.v1.MemoryLifecycleState
|
|
10
|
+
*/
|
|
11
|
+
export declare enum MemoryLifecycleState {
|
|
12
|
+
/**
|
|
13
|
+
* @generated from enum value: lifecycle_state_unspecified = 0;
|
|
14
|
+
*/
|
|
15
|
+
lifecycle_state_unspecified = 0,
|
|
16
|
+
/**
|
|
17
|
+
* Proposed by an agent; awaiting the subject's decision. Never
|
|
18
|
+
* recalled.
|
|
19
|
+
*
|
|
20
|
+
* @generated from enum value: lifecycle_state_proposed = 1;
|
|
21
|
+
*/
|
|
22
|
+
lifecycle_state_proposed = 1,
|
|
23
|
+
/**
|
|
24
|
+
* Confirmed by the subject. Recalled into the subject's future
|
|
25
|
+
* eligible executions.
|
|
26
|
+
*
|
|
27
|
+
* @generated from enum value: lifecycle_state_confirmed = 2;
|
|
28
|
+
*/
|
|
29
|
+
lifecycle_state_confirmed = 2,
|
|
30
|
+
/**
|
|
31
|
+
* Rejected by the subject. Kept for audit, never recalled.
|
|
32
|
+
*
|
|
33
|
+
* @generated from enum value: lifecycle_state_rejected = 3;
|
|
34
|
+
*/
|
|
35
|
+
lifecycle_state_rejected = 3
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Describes the enum ai.stigmer.agentic.memory.v1.MemoryLifecycleState.
|
|
39
|
+
*/
|
|
40
|
+
export declare const MemoryLifecycleStateSchema: GenEnum<MemoryLifecycleState>;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.2 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file ai/stigmer/agentic/memory/v1/enum.proto (package ai.stigmer.agentic.memory.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { enumDesc, fileDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
|
+
/**
|
|
6
|
+
* Describes the file ai/stigmer/agentic/memory/v1/enum.proto.
|
|
7
|
+
*/
|
|
8
|
+
export const file_ai_stigmer_agentic_memory_v1_enum = /*@__PURE__*/ fileDesc("CidhaS9zdGlnbWVyL2FnZW50aWMvbWVtb3J5L3YxL2VudW0ucHJvdG8SHGFpLnN0aWdtZXIuYWdlbnRpYy5tZW1vcnkudjEqkgEKFE1lbW9yeUxpZmVjeWNsZVN0YXRlEh8KG2xpZmVjeWNsZV9zdGF0ZV91bnNwZWNpZmllZBAAEhwKGGxpZmVjeWNsZV9zdGF0ZV9wcm9wb3NlZBABEh0KGWxpZmVjeWNsZV9zdGF0ZV9jb25maXJtZWQQAhIcChhsaWZlY3ljbGVfc3RhdGVfcmVqZWN0ZWQQA2IGcHJvdG8z");
|
|
9
|
+
/**
|
|
10
|
+
* MemoryLifecycleState tracks a memory's consent lifecycle.
|
|
11
|
+
*
|
|
12
|
+
* @generated from enum ai.stigmer.agentic.memory.v1.MemoryLifecycleState
|
|
13
|
+
*/
|
|
14
|
+
export var MemoryLifecycleState;
|
|
15
|
+
(function (MemoryLifecycleState) {
|
|
16
|
+
/**
|
|
17
|
+
* @generated from enum value: lifecycle_state_unspecified = 0;
|
|
18
|
+
*/
|
|
19
|
+
MemoryLifecycleState[MemoryLifecycleState["lifecycle_state_unspecified"] = 0] = "lifecycle_state_unspecified";
|
|
20
|
+
/**
|
|
21
|
+
* Proposed by an agent; awaiting the subject's decision. Never
|
|
22
|
+
* recalled.
|
|
23
|
+
*
|
|
24
|
+
* @generated from enum value: lifecycle_state_proposed = 1;
|
|
25
|
+
*/
|
|
26
|
+
MemoryLifecycleState[MemoryLifecycleState["lifecycle_state_proposed"] = 1] = "lifecycle_state_proposed";
|
|
27
|
+
/**
|
|
28
|
+
* Confirmed by the subject. Recalled into the subject's future
|
|
29
|
+
* eligible executions.
|
|
30
|
+
*
|
|
31
|
+
* @generated from enum value: lifecycle_state_confirmed = 2;
|
|
32
|
+
*/
|
|
33
|
+
MemoryLifecycleState[MemoryLifecycleState["lifecycle_state_confirmed"] = 2] = "lifecycle_state_confirmed";
|
|
34
|
+
/**
|
|
35
|
+
* Rejected by the subject. Kept for audit, never recalled.
|
|
36
|
+
*
|
|
37
|
+
* @generated from enum value: lifecycle_state_rejected = 3;
|
|
38
|
+
*/
|
|
39
|
+
MemoryLifecycleState[MemoryLifecycleState["lifecycle_state_rejected"] = 3] = "lifecycle_state_rejected";
|
|
40
|
+
})(MemoryLifecycleState || (MemoryLifecycleState = {}));
|
|
41
|
+
/**
|
|
42
|
+
* Describes the enum ai.stigmer.agentic.memory.v1.MemoryLifecycleState.
|
|
43
|
+
*/
|
|
44
|
+
export const MemoryLifecycleStateSchema = /*@__PURE__*/ enumDesc(file_ai_stigmer_agentic_memory_v1_enum, 0);
|
|
45
|
+
//# sourceMappingURL=enum_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enum_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/memory/v1/enum_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,qHAAqH;AACrH,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,8BAA8B,CAAC;AAElE;;GAEG;AACH,MAAM,CAAC,MAAM,sCAAsC,GAAY,aAAa,CAC1E,QAAQ,CAAC,kTAAkT,CAAC,CAAC;AAE/T;;;;GAIG;AACH,MAAM,CAAN,IAAY,oBA4BX;AA5BD,WAAY,oBAAoB;IAC9B;;OAEG;IACH,6GAA+B,CAAA;IAE/B;;;;;OAKG;IACH,uGAA4B,CAAA;IAE5B;;;;;OAKG;IACH,yGAA6B,CAAA;IAE7B;;;;OAIG;IACH,uGAA4B,CAAA;AAC9B,CAAC,EA5BW,oBAAoB,KAApB,oBAAoB,QA4B/B;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAkC,aAAa,CACpF,QAAQ,CAAC,sCAAsC,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { Memory } from "./api_pb.js";
|
|
3
|
+
import type { PageInfo } from "../../../commons/rpc/pagination_pb.js";
|
|
4
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
5
|
+
/**
|
|
6
|
+
* Describes the file ai/stigmer/agentic/memory/v1/io.proto.
|
|
7
|
+
*/
|
|
8
|
+
export declare const file_ai_stigmer_agentic_memory_v1_io: GenFile;
|
|
9
|
+
/**
|
|
10
|
+
* MemoryId wraps a memory identifier.
|
|
11
|
+
*
|
|
12
|
+
* @generated from message ai.stigmer.agentic.memory.v1.MemoryId
|
|
13
|
+
*/
|
|
14
|
+
export type MemoryId = Message<"ai.stigmer.agentic.memory.v1.MemoryId"> & {
|
|
15
|
+
/**
|
|
16
|
+
* Unique identifier of the memory.
|
|
17
|
+
*
|
|
18
|
+
* @generated from field: string value = 1;
|
|
19
|
+
*/
|
|
20
|
+
value: string;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Describes the message ai.stigmer.agentic.memory.v1.MemoryId.
|
|
24
|
+
* Use `create(MemoryIdSchema)` to create a new message.
|
|
25
|
+
*/
|
|
26
|
+
export declare const MemoryIdSchema: GenMessage<MemoryId>;
|
|
27
|
+
/**
|
|
28
|
+
* Input for listing memories within an organization.
|
|
29
|
+
*
|
|
30
|
+
* @generated from message ai.stigmer.agentic.memory.v1.ListMemoriesRequest
|
|
31
|
+
*/
|
|
32
|
+
export type ListMemoriesRequest = Message<"ai.stigmer.agentic.memory.v1.ListMemoriesRequest"> & {
|
|
33
|
+
/**
|
|
34
|
+
* Organization slug to scope the listing.
|
|
35
|
+
*
|
|
36
|
+
* @generated from field: string org = 1;
|
|
37
|
+
*/
|
|
38
|
+
org: string;
|
|
39
|
+
/**
|
|
40
|
+
* Pagination options.
|
|
41
|
+
*
|
|
42
|
+
* @generated from field: ai.stigmer.commons.rpc.PageInfo page_info = 2;
|
|
43
|
+
*/
|
|
44
|
+
pageInfo?: PageInfo;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* Describes the message ai.stigmer.agentic.memory.v1.ListMemoriesRequest.
|
|
48
|
+
* Use `create(ListMemoriesRequestSchema)` to create a new message.
|
|
49
|
+
*/
|
|
50
|
+
export declare const ListMemoriesRequestSchema: GenMessage<ListMemoriesRequest>;
|
|
51
|
+
/**
|
|
52
|
+
* Response containing a paginated list of memories.
|
|
53
|
+
*
|
|
54
|
+
* @generated from message ai.stigmer.agentic.memory.v1.MemoryList
|
|
55
|
+
*/
|
|
56
|
+
export type MemoryList = Message<"ai.stigmer.agentic.memory.v1.MemoryList"> & {
|
|
57
|
+
/**
|
|
58
|
+
* Total number of memories matching the query.
|
|
59
|
+
*
|
|
60
|
+
* @generated from field: int32 total_count = 1;
|
|
61
|
+
*/
|
|
62
|
+
totalCount: number;
|
|
63
|
+
/**
|
|
64
|
+
* Memories in the current page.
|
|
65
|
+
*
|
|
66
|
+
* @generated from field: repeated ai.stigmer.agentic.memory.v1.Memory items = 2;
|
|
67
|
+
*/
|
|
68
|
+
items: Memory[];
|
|
69
|
+
};
|
|
70
|
+
/**
|
|
71
|
+
* Describes the message ai.stigmer.agentic.memory.v1.MemoryList.
|
|
72
|
+
* Use `create(MemoryListSchema)` to create a new message.
|
|
73
|
+
*/
|
|
74
|
+
export declare const MemoryListSchema: GenMessage<MemoryList>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.2 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file ai/stigmer/agentic/memory/v1/io.proto (package ai.stigmer.agentic.memory.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
|
+
import { file_ai_stigmer_agentic_memory_v1_api } from "./api_pb.js";
|
|
6
|
+
import { file_ai_stigmer_commons_rpc_pagination } from "../../../commons/rpc/pagination_pb.js";
|
|
7
|
+
import { file_buf_validate_validate } from "../../../../../buf/validate/validate_pb.js";
|
|
8
|
+
/**
|
|
9
|
+
* Describes the file ai/stigmer/agentic/memory/v1/io.proto.
|
|
10
|
+
*/
|
|
11
|
+
export const file_ai_stigmer_agentic_memory_v1_io = /*@__PURE__*/ fileDesc("CiVhaS9zdGlnbWVyL2FnZW50aWMvbWVtb3J5L3YxL2lvLnByb3RvEhxhaS5zdGlnbWVyLmFnZW50aWMubWVtb3J5LnYxIiEKCE1lbW9yeUlkEhUKBXZhbHVlGAEgASgJQga6SAPIAQEiYAoTTGlzdE1lbW9yaWVzUmVxdWVzdBIUCgNvcmcYASABKAlCB7pIBHICEAESMwoJcGFnZV9pbmZvGAIgASgLMiAuYWkuc3RpZ21lci5jb21tb25zLnJwYy5QYWdlSW5mbyJWCgpNZW1vcnlMaXN0EhMKC3RvdGFsX2NvdW50GAEgASgFEjMKBWl0ZW1zGAIgAygLMiQuYWkuc3RpZ21lci5hZ2VudGljLm1lbW9yeS52MS5NZW1vcnliBnByb3RvMw", [file_ai_stigmer_agentic_memory_v1_api, file_ai_stigmer_commons_rpc_pagination, file_buf_validate_validate]);
|
|
12
|
+
/**
|
|
13
|
+
* Describes the message ai.stigmer.agentic.memory.v1.MemoryId.
|
|
14
|
+
* Use `create(MemoryIdSchema)` to create a new message.
|
|
15
|
+
*/
|
|
16
|
+
export const MemoryIdSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_memory_v1_io, 0);
|
|
17
|
+
/**
|
|
18
|
+
* Describes the message ai.stigmer.agentic.memory.v1.ListMemoriesRequest.
|
|
19
|
+
* Use `create(ListMemoriesRequestSchema)` to create a new message.
|
|
20
|
+
*/
|
|
21
|
+
export const ListMemoriesRequestSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_memory_v1_io, 1);
|
|
22
|
+
/**
|
|
23
|
+
* Describes the message ai.stigmer.agentic.memory.v1.MemoryList.
|
|
24
|
+
* Use `create(MemoryListSchema)` to create a new message.
|
|
25
|
+
*/
|
|
26
|
+
export const MemoryListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_memory_v1_io, 2);
|
|
27
|
+
//# sourceMappingURL=io_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"io_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/memory/v1/io_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,mHAAmH;AACnH,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,qCAAqC,EAAE,MAAM,aAAa,CAAC;AAEpE,OAAO,EAAE,sCAAsC,EAAE,MAAM,uCAAuC,CAAC;AAC/F,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAGxF;;GAEG;AACH,MAAM,CAAC,MAAM,oCAAoC,GAAY,aAAa,CACxE,QAAQ,CAAC,gZAAgZ,EAAE,CAAC,qCAAqC,EAAE,sCAAsC,EAAE,0BAA0B,CAAC,CAAC,CAAC;AAgB1gB;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAyB,aAAa,CAC/D,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC;AAuBvD;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC;AAuBvD;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAA2B,aAAa,CACnE,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* MemoryQueryController handles read operations for memories.
|
|
3
|
+
*
|
|
4
|
+
* @generated from service ai.stigmer.agentic.memory.v1.MemoryQueryController
|
|
5
|
+
*/
|
|
6
|
+
export declare const MemoryQueryController: {
|
|
7
|
+
readonly typeName: "ai.stigmer.agentic.memory.v1.MemoryQueryController";
|
|
8
|
+
readonly methods: {
|
|
9
|
+
/**
|
|
10
|
+
* Get a single memory by ID.
|
|
11
|
+
*
|
|
12
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryQueryController.get
|
|
13
|
+
*/
|
|
14
|
+
readonly get: {
|
|
15
|
+
readonly name: "get";
|
|
16
|
+
readonly I: any;
|
|
17
|
+
readonly O: any;
|
|
18
|
+
readonly kind: any;
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* List the caller's memories in an organization.
|
|
22
|
+
*
|
|
23
|
+
* Returns only memories the caller can view — for memories that is
|
|
24
|
+
* always exactly the ones about the caller.
|
|
25
|
+
*
|
|
26
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryQueryController.list
|
|
27
|
+
*/
|
|
28
|
+
readonly list: {
|
|
29
|
+
readonly name: "list";
|
|
30
|
+
readonly I: any;
|
|
31
|
+
readonly O: any;
|
|
32
|
+
readonly kind: any;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
// @generated by protoc-gen-connect-es v1.6.1 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file ai/stigmer/agentic/memory/v1/query.proto (package ai.stigmer.agentic.memory.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
import { ListMemoriesRequest, MemoryId, MemoryList } from "./io_pbjs";
|
|
6
|
+
import { Memory } from "./api_pbjs";
|
|
7
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
|
+
/**
|
|
9
|
+
* MemoryQueryController handles read operations for memories.
|
|
10
|
+
*
|
|
11
|
+
* @generated from service ai.stigmer.agentic.memory.v1.MemoryQueryController
|
|
12
|
+
*/
|
|
13
|
+
export const MemoryQueryController = {
|
|
14
|
+
typeName: "ai.stigmer.agentic.memory.v1.MemoryQueryController",
|
|
15
|
+
methods: {
|
|
16
|
+
/**
|
|
17
|
+
* Get a single memory by ID.
|
|
18
|
+
*
|
|
19
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryQueryController.get
|
|
20
|
+
*/
|
|
21
|
+
get: {
|
|
22
|
+
name: "get",
|
|
23
|
+
I: MemoryId,
|
|
24
|
+
O: Memory,
|
|
25
|
+
kind: MethodKind.Unary,
|
|
26
|
+
},
|
|
27
|
+
/**
|
|
28
|
+
* List the caller's memories in an organization.
|
|
29
|
+
*
|
|
30
|
+
* Returns only memories the caller can view — for memories that is
|
|
31
|
+
* always exactly the ones about the caller.
|
|
32
|
+
*
|
|
33
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryQueryController.list
|
|
34
|
+
*/
|
|
35
|
+
list: {
|
|
36
|
+
name: "list",
|
|
37
|
+
I: ListMemoriesRequest,
|
|
38
|
+
O: MemoryList,
|
|
39
|
+
kind: MethodKind.Unary,
|
|
40
|
+
},
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
//# sourceMappingURL=query_connect.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"query_connect.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/memory/v1/query_connect.ts"],"names":[],"mappings":"AAAA,4FAA4F;AAC5F,sHAAsH;AACtH,oBAAoB;AACpB,cAAc;AAEd,OAAO,EAAE,mBAAmB,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AACtE,OAAO,EAAE,MAAM,EAAE,MAAM,YAAY,CAAC;AACpC,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;GAIG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,QAAQ,EAAE,oDAAoD;IAC9D,OAAO,EAAE;QACP;;;;WAIG;QACH,GAAG,EAAE;YACH,IAAI,EAAE,KAAK;YACX,CAAC,EAAE,QAAQ;YACX,CAAC,EAAE,MAAM;YACT,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;WAOG;QACH,IAAI,EAAE;YACJ,IAAI,EAAE,MAAM;YACZ,CAAC,EAAE,mBAAmB;YACtB,CAAC,EAAE,UAAU;YACb,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;KACF;CACO,CAAC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import type { GenFile, GenService } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { MemorySchema } from "./api_pb.js";
|
|
3
|
+
import type { ListMemoriesRequestSchema, MemoryIdSchema, MemoryListSchema } from "./io_pb.js";
|
|
4
|
+
/**
|
|
5
|
+
* Describes the file ai/stigmer/agentic/memory/v1/query.proto.
|
|
6
|
+
*/
|
|
7
|
+
export declare const file_ai_stigmer_agentic_memory_v1_query: GenFile;
|
|
8
|
+
/**
|
|
9
|
+
* MemoryQueryController handles read operations for memories.
|
|
10
|
+
*
|
|
11
|
+
* @generated from service ai.stigmer.agentic.memory.v1.MemoryQueryController
|
|
12
|
+
*/
|
|
13
|
+
export declare const MemoryQueryController: GenService<{
|
|
14
|
+
/**
|
|
15
|
+
* Get a single memory by ID.
|
|
16
|
+
*
|
|
17
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryQueryController.get
|
|
18
|
+
*/
|
|
19
|
+
get: {
|
|
20
|
+
methodKind: "unary";
|
|
21
|
+
input: typeof MemoryIdSchema;
|
|
22
|
+
output: typeof MemorySchema;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* List the caller's memories in an organization.
|
|
26
|
+
*
|
|
27
|
+
* Returns only memories the caller can view — for memories that is
|
|
28
|
+
* always exactly the ones about the caller.
|
|
29
|
+
*
|
|
30
|
+
* @generated from rpc ai.stigmer.agentic.memory.v1.MemoryQueryController.list
|
|
31
|
+
*/
|
|
32
|
+
list: {
|
|
33
|
+
methodKind: "unary";
|
|
34
|
+
input: typeof ListMemoriesRequestSchema;
|
|
35
|
+
output: typeof MemoryListSchema;
|
|
36
|
+
};
|
|
37
|
+
}>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.2 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file ai/stigmer/agentic/memory/v1/query.proto (package ai.stigmer.agentic.memory.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, serviceDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
|
+
import { file_ai_stigmer_agentic_memory_v1_api } from "./api_pb.js";
|
|
6
|
+
import { file_ai_stigmer_agentic_memory_v1_io } from "./io_pb.js";
|
|
7
|
+
import { file_ai_stigmer_commons_apiresource_rpc_service_options } from "../../../commons/apiresource/rpc_service_options_pb.js";
|
|
8
|
+
import { file_ai_stigmer_commons_rpc_method_options } from "../../../commons/rpc/method_options_pb.js";
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file ai/stigmer/agentic/memory/v1/query.proto.
|
|
11
|
+
*/
|
|
12
|
+
export const file_ai_stigmer_agentic_memory_v1_query = /*@__PURE__*/ fileDesc("CihhaS9zdGlnbWVyL2FnZW50aWMvbWVtb3J5L3YxL3F1ZXJ5LnByb3RvEhxhaS5zdGlnbWVyLmFnZW50aWMubWVtb3J5LnYxMosCChVNZW1vcnlRdWVyeUNvbnRyb2xsZXISgAEKA2dldBImLmFpLnN0aWdtZXIuYWdlbnRpYy5tZW1vcnkudjEuTWVtb3J5SWQaJC5haS5zdGlnbWVyLmFnZW50aWMubWVtb3J5LnYxLk1lbW9yeSIrwrgYJwgBEDkiBXZhbHVlKhp1bmF1dGhvcml6ZWQgdG8gZ2V0IG1lbW9yeRJpCgRsaXN0EjEuYWkuc3RpZ21lci5hZ2VudGljLm1lbW9yeS52MS5MaXN0TWVtb3JpZXNSZXF1ZXN0GiguYWkuc3RpZ21lci5hZ2VudGljLm1lbW9yeS52MS5NZW1vcnlMaXN0IgTQuBgBGgSg/ys5YgZwcm90bzM", [file_ai_stigmer_agentic_memory_v1_api, file_ai_stigmer_agentic_memory_v1_io, file_ai_stigmer_commons_apiresource_rpc_service_options, file_ai_stigmer_commons_rpc_method_options]);
|
|
13
|
+
/**
|
|
14
|
+
* MemoryQueryController handles read operations for memories.
|
|
15
|
+
*
|
|
16
|
+
* @generated from service ai.stigmer.agentic.memory.v1.MemoryQueryController
|
|
17
|
+
*/
|
|
18
|
+
export const MemoryQueryController = /*@__PURE__*/ serviceDesc(file_ai_stigmer_agentic_memory_v1_query, 0);
|
|
19
|
+
//# sourceMappingURL=query_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"query_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/memory/v1/query_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,sHAAsH;AACtH,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,qCAAqC,EAAE,MAAM,aAAa,CAAC;AAEpE,OAAO,EAAE,oCAAoC,EAAE,MAAM,YAAY,CAAC;AAClE,OAAO,EAAE,uDAAuD,EAAE,MAAM,wDAAwD,CAAC;AACjI,OAAO,EAAE,0CAA0C,EAAE,MAAM,2CAA2C,CAAC;AAEvG;;GAEG;AACH,MAAM,CAAC,MAAM,uCAAuC,GAAY,aAAa,CAC3E,QAAQ,CAAC,qdAAqd,EAAE,CAAC,qCAAqC,EAAE,oCAAoC,EAAE,uDAAuD,EAAE,0CAA0C,CAAC,CAAC,CAAC;AAEtpB;;;;GAIG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAwB7B,aAAa,CAChB,WAAW,CAAC,uCAAuC,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* Describes the file ai/stigmer/agentic/memory/v1/spec.proto.
|
|
5
|
+
*/
|
|
6
|
+
export declare const file_ai_stigmer_agentic_memory_v1_spec: GenFile;
|
|
7
|
+
/**
|
|
8
|
+
* MemorySpec holds the remembered fact, who it is about, and where it
|
|
9
|
+
* came from.
|
|
10
|
+
*
|
|
11
|
+
* @generated from message ai.stigmer.agentic.memory.v1.MemorySpec
|
|
12
|
+
*/
|
|
13
|
+
export type MemorySpec = Message<"ai.stigmer.agentic.memory.v1.MemorySpec"> & {
|
|
14
|
+
/**
|
|
15
|
+
* The remembered fact, verbatim. Proposed by an agent, owned by the
|
|
16
|
+
* subject after confirmation.
|
|
17
|
+
*
|
|
18
|
+
* @generated from field: string content = 1;
|
|
19
|
+
*/
|
|
20
|
+
content: string;
|
|
21
|
+
/**
|
|
22
|
+
* The identity account this memory is about.
|
|
23
|
+
*
|
|
24
|
+
* @generated from field: string subject_identity_account_id = 2;
|
|
25
|
+
*/
|
|
26
|
+
subjectIdentityAccountId: string;
|
|
27
|
+
/**
|
|
28
|
+
* Where this fact came from — displayed beside the fact everywhere it
|
|
29
|
+
* appears.
|
|
30
|
+
*
|
|
31
|
+
* @generated from field: ai.stigmer.agentic.memory.v1.MemoryProvenance provenance = 3;
|
|
32
|
+
*/
|
|
33
|
+
provenance?: MemoryProvenance;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Describes the message ai.stigmer.agentic.memory.v1.MemorySpec.
|
|
37
|
+
* Use `create(MemorySpecSchema)` to create a new message.
|
|
38
|
+
*/
|
|
39
|
+
export declare const MemorySpecSchema: GenMessage<MemorySpec>;
|
|
40
|
+
/**
|
|
41
|
+
* MemoryProvenance records which agent proposed a memory and in which
|
|
42
|
+
* conversation.
|
|
43
|
+
*
|
|
44
|
+
* @generated from message ai.stigmer.agentic.memory.v1.MemoryProvenance
|
|
45
|
+
*/
|
|
46
|
+
export type MemoryProvenance = Message<"ai.stigmer.agentic.memory.v1.MemoryProvenance"> & {
|
|
47
|
+
/**
|
|
48
|
+
* ID of the agent that proposed this memory.
|
|
49
|
+
*
|
|
50
|
+
* @generated from field: string agent_id = 1;
|
|
51
|
+
*/
|
|
52
|
+
agentId: string;
|
|
53
|
+
/**
|
|
54
|
+
* ID of the session in which this memory was proposed.
|
|
55
|
+
*
|
|
56
|
+
* @generated from field: string session_id = 2;
|
|
57
|
+
*/
|
|
58
|
+
sessionId: string;
|
|
59
|
+
/**
|
|
60
|
+
* ID of the agent execution in which this memory was proposed.
|
|
61
|
+
*
|
|
62
|
+
* @generated from field: string agent_execution_id = 3;
|
|
63
|
+
*/
|
|
64
|
+
agentExecutionId: string;
|
|
65
|
+
/**
|
|
66
|
+
* ID of the remember tool call that proposed this memory.
|
|
67
|
+
*
|
|
68
|
+
* @generated from field: string tool_call_id = 4;
|
|
69
|
+
*/
|
|
70
|
+
toolCallId: string;
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* Describes the message ai.stigmer.agentic.memory.v1.MemoryProvenance.
|
|
74
|
+
* Use `create(MemoryProvenanceSchema)` to create a new message.
|
|
75
|
+
*/
|
|
76
|
+
export declare const MemoryProvenanceSchema: GenMessage<MemoryProvenance>;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.2 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file ai/stigmer/agentic/memory/v1/spec.proto (package ai.stigmer.agentic.memory.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
|
+
import { file_buf_validate_validate } from "../../../../../buf/validate/validate_pb.js";
|
|
6
|
+
/**
|
|
7
|
+
* Describes the file ai/stigmer/agentic/memory/v1/spec.proto.
|
|
8
|
+
*/
|
|
9
|
+
export const file_ai_stigmer_agentic_memory_v1_spec = /*@__PURE__*/ fileDesc("CidhaS9zdGlnbWVyL2FnZW50aWMvbWVtb3J5L3YxL3NwZWMucHJvdG8SHGFpLnN0aWdtZXIuYWdlbnRpYy5tZW1vcnkudjEikgEKCk1lbW9yeVNwZWMSGwoHY29udGVudBgBIAEoCUIKukgHcgUQARj0AxIjChtzdWJqZWN0X2lkZW50aXR5X2FjY291bnRfaWQYAiABKAkSQgoKcHJvdmVuYW5jZRgDIAEoCzIuLmFpLnN0aWdtZXIuYWdlbnRpYy5tZW1vcnkudjEuTWVtb3J5UHJvdmVuYW5jZSJqChBNZW1vcnlQcm92ZW5hbmNlEhAKCGFnZW50X2lkGAEgASgJEhIKCnNlc3Npb25faWQYAiABKAkSGgoSYWdlbnRfZXhlY3V0aW9uX2lkGAMgASgJEhQKDHRvb2xfY2FsbF9pZBgEIAEoCWIGcHJvdG8z", [file_buf_validate_validate]);
|
|
10
|
+
/**
|
|
11
|
+
* Describes the message ai.stigmer.agentic.memory.v1.MemorySpec.
|
|
12
|
+
* Use `create(MemorySpecSchema)` to create a new message.
|
|
13
|
+
*/
|
|
14
|
+
export const MemorySpecSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_memory_v1_spec, 0);
|
|
15
|
+
/**
|
|
16
|
+
* Describes the message ai.stigmer.agentic.memory.v1.MemoryProvenance.
|
|
17
|
+
* Use `create(MemoryProvenanceSchema)` to create a new message.
|
|
18
|
+
*/
|
|
19
|
+
export const MemoryProvenanceSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_memory_v1_spec, 1);
|
|
20
|
+
//# sourceMappingURL=spec_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"spec_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/memory/v1/spec_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,qHAAqH;AACrH,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAGxF;;GAEG;AACH,MAAM,CAAC,MAAM,sCAAsC,GAAY,aAAa,CAC1E,QAAQ,CAAC,kcAAkc,EAAE,CAAC,0BAA0B,CAAC,CAAC,CAAC;AAiC7e;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAA2B,aAAa,CACnE,WAAW,CAAC,sCAAsC,EAAE,CAAC,CAAC,CAAC;AAsCzD;;;GAGG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAiC,aAAa,CAC/E,WAAW,CAAC,sCAAsC,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { MemoryLifecycleState } from "./enum_pb.js";
|
|
3
|
+
import type { ApiResourceAudit } from "../../../commons/apiresource/status_pb.js";
|
|
4
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
5
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
6
|
+
/**
|
|
7
|
+
* Describes the file ai/stigmer/agentic/memory/v1/status.proto.
|
|
8
|
+
*/
|
|
9
|
+
export declare const file_ai_stigmer_agentic_memory_v1_status: GenFile;
|
|
10
|
+
/**
|
|
11
|
+
* MemoryStatus contains system-managed state for a memory.
|
|
12
|
+
*
|
|
13
|
+
* @generated from message ai.stigmer.agentic.memory.v1.MemoryStatus
|
|
14
|
+
*/
|
|
15
|
+
export type MemoryStatus = Message<"ai.stigmer.agentic.memory.v1.MemoryStatus"> & {
|
|
16
|
+
/**
|
|
17
|
+
* Where this memory is in its consent lifecycle.
|
|
18
|
+
*
|
|
19
|
+
* @generated from field: ai.stigmer.agentic.memory.v1.MemoryLifecycleState lifecycle_state = 1;
|
|
20
|
+
*/
|
|
21
|
+
lifecycleState: MemoryLifecycleState;
|
|
22
|
+
/**
|
|
23
|
+
* When the lifecycle state last changed.
|
|
24
|
+
*
|
|
25
|
+
* @generated from field: google.protobuf.Timestamp state_changed_at = 2;
|
|
26
|
+
*/
|
|
27
|
+
stateChangedAt?: Timestamp;
|
|
28
|
+
/**
|
|
29
|
+
* Standard audit information (created_at, updated_at, created_by, etc.)
|
|
30
|
+
*
|
|
31
|
+
* @generated from field: ai.stigmer.commons.apiresource.ApiResourceAudit audit = 99;
|
|
32
|
+
*/
|
|
33
|
+
audit?: ApiResourceAudit;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Describes the message ai.stigmer.agentic.memory.v1.MemoryStatus.
|
|
37
|
+
* Use `create(MemoryStatusSchema)` to create a new message.
|
|
38
|
+
*/
|
|
39
|
+
export declare const MemoryStatusSchema: GenMessage<MemoryStatus>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.2 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file ai/stigmer/agentic/memory/v1/status.proto (package ai.stigmer.agentic.memory.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
|
+
import { file_ai_stigmer_agentic_memory_v1_enum } from "./enum_pb.js";
|
|
6
|
+
import { file_ai_stigmer_commons_apiresource_status } from "../../../commons/apiresource/status_pb.js";
|
|
7
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
8
|
+
/**
|
|
9
|
+
* Describes the file ai/stigmer/agentic/memory/v1/status.proto.
|
|
10
|
+
*/
|
|
11
|
+
export const file_ai_stigmer_agentic_memory_v1_status = /*@__PURE__*/ fileDesc("CilhaS9zdGlnbWVyL2FnZW50aWMvbWVtb3J5L3YxL3N0YXR1cy5wcm90bxIcYWkuc3RpZ21lci5hZ2VudGljLm1lbW9yeS52MSLSAQoMTWVtb3J5U3RhdHVzEksKD2xpZmVjeWNsZV9zdGF0ZRgBIAEoDjIyLmFpLnN0aWdtZXIuYWdlbnRpYy5tZW1vcnkudjEuTWVtb3J5TGlmZWN5Y2xlU3RhdGUSNAoQc3RhdGVfY2hhbmdlZF9hdBgCIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASPwoFYXVkaXQYYyABKAsyMC5haS5zdGlnbWVyLmNvbW1vbnMuYXBpcmVzb3VyY2UuQXBpUmVzb3VyY2VBdWRpdGIGcHJvdG8z", [file_ai_stigmer_agentic_memory_v1_enum, file_ai_stigmer_commons_apiresource_status, file_google_protobuf_timestamp]);
|
|
12
|
+
/**
|
|
13
|
+
* Describes the message ai.stigmer.agentic.memory.v1.MemoryStatus.
|
|
14
|
+
* Use `create(MemoryStatusSchema)` to create a new message.
|
|
15
|
+
*/
|
|
16
|
+
export const MemoryStatusSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_memory_v1_status, 0);
|
|
17
|
+
//# sourceMappingURL=status_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"status_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/memory/v1/status_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,uHAAuH;AACvH,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,sCAAsC,EAAE,MAAM,cAAc,CAAC;AAEtE,OAAO,EAAE,0CAA0C,EAAE,MAAM,2CAA2C,CAAC;AAEvG,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGxE;;GAEG;AACH,MAAM,CAAC,MAAM,wCAAwC,GAAY,aAAa,CAC5E,QAAQ,CAAC,0YAA0Y,EAAE,CAAC,sCAAsC,EAAE,0CAA0C,EAAE,8BAA8B,CAAC,CAAC,CAAC;AA8B7gB;;;GAGG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAA6B,aAAa,CACvE,WAAW,CAAC,wCAAwC,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -8,7 +8,7 @@ import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
|
8
8
|
/**
|
|
9
9
|
* Describes the file ai/stigmer/agentic/workflow/v1/tasks/wait.proto.
|
|
10
10
|
*/
|
|
11
|
-
export const file_ai_stigmer_agentic_workflow_v1_tasks_wait = /*@__PURE__*/ fileDesc("
|
|
11
|
+
export const file_ai_stigmer_agentic_workflow_v1_tasks_wait = /*@__PURE__*/ fileDesc("Ci9haS9zdGlnbWVyL2FnZW50aWMvd29ya2Zsb3cvdjEvdGFza3Mvd2FpdC5wcm90bxIkYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93LnYxLnRhc2tzIpECCghEdXJhdGlvbhIMCgRkYXlzGAEgASgNEg0KBWhvdXJzGAIgASgNEg8KB21pbnV0ZXMYAyABKA0SDwoHc2Vjb25kcxgEIAEoDRIUCgxtaWxsaXNlY29uZHMYBSABKA06rwG6SKsBGqgBChFkdXJhdGlvbi5ub25femVybxIsYXQgbGVhc3Qgb25lIGR1cmF0aW9uIGZpZWxkIG11c3QgYmUgbm9uLXplcm8aZXRoaXMuZGF5cyA+IDB1IHx8IHRoaXMuaG91cnMgPiAwdSB8fCB0aGlzLm1pbnV0ZXMgPiAwdSB8fCB0aGlzLnNlY29uZHMgPiAwdSB8fCB0aGlzLm1pbGxpc2Vjb25kcyA+IDB1IpgBCg5XYWl0VGFza0NvbmZpZxJCCghkdXJhdGlvbhgBIAEoCzIuLmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvdy52MS50YXNrcy5EdXJhdGlvbkgAEisKBXVudGlsGAIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgAOgjqiywEd2FpdEILCgl3YWl0X3R5cGViBnByb3RvMw", [file_ai_stigmer_commons_apiresource_field_options, file_buf_validate_validate, file_google_protobuf_timestamp]);
|
|
12
12
|
/**
|
|
13
13
|
* Describes the message ai.stigmer.agentic.workflow.v1.tasks.Duration.
|
|
14
14
|
* Use `create(DurationSchema)` to create a new message.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wait_pb.js","sourceRoot":"","sources":["../../../../../../../ai/stigmer/agentic/workflow/v1/tasks/wait_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,qIAAqI;AACrI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,iDAAiD,EAAE,MAAM,qDAAqD,CAAC;AACxH,OAAO,EAAE,0BAA0B,EAAE,MAAM,+CAA+C,CAAC;AAE3F,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGxE;;GAEG;AACH,MAAM,CAAC,MAAM,8CAA8C,GAAY,aAAa,CAClF,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"wait_pb.js","sourceRoot":"","sources":["../../../../../../../ai/stigmer/agentic/workflow/v1/tasks/wait_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,qIAAqI;AACrI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,EAAE,iDAAiD,EAAE,MAAM,qDAAqD,CAAC;AACxH,OAAO,EAAE,0BAA0B,EAAE,MAAM,+CAA+C,CAAC;AAE3F,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGxE;;GAEG;AACH,MAAM,CAAC,MAAM,8CAA8C,GAAY,aAAa,CAClF,QAAQ,CAAC,gsBAAgsB,EAAE,CAAC,iDAAiD,EAAE,0BAA0B,EAAE,8BAA8B,CAAC,CAAC,CAAC;AAoD9zB;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAyB,aAAa,CAC/D,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC;AA0CjE;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA+B,aAAa,CAC3E,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -322,6 +322,12 @@ export declare enum ApiResourceKind {
|
|
|
322
322
|
* @generated from enum value: schedule = 56;
|
|
323
323
|
*/
|
|
324
324
|
schedule = 56,
|
|
325
|
+
/**
|
|
326
|
+
* Agent-proposed, user-confirmed fact the platform remembers about a person.
|
|
327
|
+
*
|
|
328
|
+
* @generated from enum value: memory = 57;
|
|
329
|
+
*/
|
|
330
|
+
memory = 57,
|
|
325
331
|
/**
|
|
326
332
|
* Aggregate root grouping related resources for lifecycle management.
|
|
327
333
|
*
|
|
@@ -8,7 +8,7 @@ import { file_google_protobuf_descriptor } from "@bufbuild/protobuf/wkt";
|
|
|
8
8
|
/**
|
|
9
9
|
* Describes the file ai/stigmer/commons/apiresource/apiresourcekind/api_resource_kind.proto.
|
|
10
10
|
*/
|
|
11
|
-
export const file_ai_stigmer_commons_apiresource_apiresourcekind_api_resource_kind = /*@__PURE__*/ fileDesc("
|
|
11
|
+
export const file_ai_stigmer_commons_apiresource_apiresourcekind_api_resource_kind = /*@__PURE__*/ fileDesc("CkZhaS9zdGlnbWVyL2NvbW1vbnMvYXBpcmVzb3VyY2UvYXBpcmVzb3VyY2VraW5kL2FwaV9yZXNvdXJjZV9raW5kLnByb3RvEi5haS5zdGlnbWVyLmNvbW1vbnMuYXBpcmVzb3VyY2UuYXBpcmVzb3VyY2VraW5kIswDChNBcGlSZXNvdXJjZUtpbmRNZXRhEk8KBWdyb3VwGAEgASgOMkAuYWkuc3RpZ21lci5jb21tb25zLmFwaXJlc291cmNlLmFwaXJlc291cmNla2luZC5BcGlSZXNvdXJjZUdyb3VwElMKB3ZlcnNpb24YAiABKA4yQi5haS5zdGlnbWVyLmNvbW1vbnMuYXBpcmVzb3VyY2UuYXBpcmVzb3VyY2VraW5kLkFwaVJlc291cmNlVmVyc2lvbhIMCgRuYW1lGAMgASgJEhQKDGRpc3BsYXlfbmFtZRgEIAEoCRIRCglpZF9wcmVmaXgYBSABKAkSFAoMaXNfdmVyc2lvbmVkGAYgASgIEhoKEm5vdF9zZWFyY2hfaW5kZXhlZBgHIAEoCBJKCgR0aWVyGAggASgOMjwuYWkuc3RpZ21lci5jb21tb25zLmFwaXJlc291cmNlLmFwaXJlc291cmNla2luZC5SZXNvdXJjZVRpZXISWgoNYXV0aG9yaXphdGlvbhgJIAEoCzJDLmFpLnN0aWdtZXIuY29tbW9ucy5hcGlyZXNvdXJjZS5hcGlyZXNvdXJjZWtpbmQuQXV0aG9yaXphdGlvbkNvbmZpZypCChJBcGlSZXNvdXJjZVZlcnNpb24SJAogYXBpX3Jlc291cmNlX3ZlcnNpb25fdW5zcGVjaWZpZWQQABIGCgJ2MRABKk4KDFJlc291cmNlVGllchIdChlyZXNvdXJjZV90aWVyX3Vuc3BlY2lmaWVkEAASDwoLb3Blbl9zb3VyY2UQARIOCgpjbG91ZF9vbmx5EAIqQQoPUGxhdGZvcm1JZFZhbHVlEiEKHXBsYXRmb3JtX2lkX3ZhbHVlX3Vuc3BlY2lmaWVkEAASCwoHc3RpZ21lchABKoESCg9BcGlSZXNvdXJjZUtpbmQSHQoZYXBpX3Jlc291cmNlX2tpbmRfdW5rbm93bhAAElsKFGFwaV9yZXNvdXJjZV92ZXJzaW9uEAEaQar/Kz0IARABGhJBcGlSZXNvdXJjZVZlcnNpb24iFEFQSSBSZXNvdXJjZSBWZXJzaW9uKgN2ZXI4AUACSgQIBRAEEj8KCmlhbV9wb2xpY3kQChovqv8rKwgCEAEaCUlhbVBvbGljeSIKSUFNIFBvbGljeSoEaWFtcDgBQAJKBAgCEAESTgoQaWRlbnRpdHlfYWNjb3VudBALGjiq/ys0CAIQARoPSWRlbnRpdHlBY2NvdW50IhBJZGVudGl0eSBBY2NvdW50KgNpZGFAAkoECAQQAxI1CgdhcGlfa2V5EAwaKKr/KyQIAhABGgZBcGlLZXkiB0FQSSBLZXkqA2tleTgBQAJKBAgEEAESPwoKaW52aXRhdGlvbhAUGi+q/ysrCAIQARoKSW52aXRhdGlvbiIKSW52aXRhdGlvbioDaW52OAFAAkoECAIQARJXChFpZGVudGl0eV9wcm92aWRlchAVGkCq/ys8CAIQARoQSWRlbnRpdHlQcm92aWRlciIRSWRlbnRpdHkgUHJvdmlkZXIqA2lkcDgBQAJKCAgCEAE6AgEEEkAKCW9hdXRoX2FwcBAWGjGq/ystCAIQARoIT0F1dGhBcHAiCU9BdXRoIEFwcCoEb2FwcDgBQAJKCAgCEAE6AgEEElEKD3BsYXRmb3JtX2NsaWVudBAXGjyq/ys4CAIQARoOUGxhdGZvcm1DbGllbnQiD1BsYXRmb3JtIENsaWVudCoDcGNsOAFAAkoICAIQAToCAQQSSQoMb3JnYW5pemF0aW9uEB4aN6r/KzMIAxABGgxPcmdhbml6YXRpb24iDE9yZ2FuaXphdGlvbioDb3JnQAFKCggEEAE6BAECAwQSOQoIcGxhdGZvcm0QHxorqv8rJwgDEAEaCFBsYXRmb3JtIghQbGF0Zm9ybSoDcGx0OAFAAkoECAUQBBI8CgVhZ2VudBAoGjGq/ystCAEQARoFQWdlbnQiBUFnZW50KgNhZ3RAAUoSCAIQASoICAEQARgBIAE6AgEEEmsKD2FnZW50X2V4ZWN1dGlvbhApGlaq/ytSCAEQARoOQWdlbnRFeGVjdXRpb24iD0FnZW50IEV4ZWN1dGlvbioDYWV4QAFKJAgDEAIaHgoHc2Vzc2lvbhIHc2Vzc2lvbhoKc2Vzc2lvbl9pZBI4CgdzZXNzaW9uECoaK6r/KycIARABGgdTZXNzaW9uIgdTZXNzaW9uKgNzZXNAAUoICAIQAToCAQQSPgoFc2tpbGwQKxozqv8rLwgBEAEaBVNraWxsIgVTa2lsbCoDc2tsMAFAAUoSCAIQASoICAEQARgBIAE6AgEEEkoKCm1jcF9zZXJ2ZXIQLBo6qv8rNggBEAEaCU1jcFNlcnZlciIKTUNQIFNlcnZlcioDbWNwQAFKEggCEAEqCAgBEAEYASABOgIBBBJsCg5hZ2VudF9pbnN0YW5jZRAtGliq/ytUCAEQARoNQWdlbnRJbnN0YW5jZSIOQWdlbnQgSW5zdGFuY2UqA2FpbkABSigIAhABIhgKBWFnZW50EgVhZ2VudBoIYWdlbnRfaWQqBAgBGAE6AgEEEkUKC2FnZW50X3NoYXJlEC4aNKr/KzAIARABGgpBZ2VudFNoYXJlIgtBZ2VudCBTaGFyZSoDYXNoOAFAAUoICAIQAToCAQQSTAoNYWdlbnRfY2hhbm5lbBAvGjmq/ys1CAEQARoMQWdlbnRDaGFubmVsIg1BZ2VudCBDaGFubmVsKgNhY2g4AUABSgkIAhABOgMBBAUSRwoLY2hhbm5lbF9hcHAQMBo2qv8rMggBEAEaCkNoYW5uZWxBcHAiC0NoYW5uZWwgQXBwKgVjaGFwcDgBQAFKCAgCEAE6AgEEEkcKCHdvcmtmbG93EDIaOar/KzUIARABGghXb3JrZmxvdyIIV29ya2Zsb3cqA3dmbDABQAFKEggCEAEqCAgBEAEYASABOgIBBBJ+ChF3b3JrZmxvd19pbnN0YW5jZRAzGmeq/ytjCAEQARoQV29ya2Zsb3dJbnN0YW5jZSIRV29ya2Zsb3cgSW5zdGFuY2UqA3dpbkABSjEIAhABIiEKCHdvcmtmbG93Egh3b3JrZmxvdxoLd29ya2Zsb3dfaWQqBAgBGAE6AgEEEpYBChJ3b3JrZmxvd19leGVjdXRpb24QNBp+qv8reggBEAEaEVdvcmtmbG93RXhlY3V0aW9uIhJXb3JrZmxvdyBFeGVjdXRpb24qA3dleEABSkYIAhABIjwKEXdvcmtmbG93X2luc3RhbmNlEhF3b3JrZmxvd19pbnN0YW5jZRoUd29ya2Zsb3dfaW5zdGFuY2VfaWQ6AgEEEkoKC2Vudmlyb25tZW50EDUaOar/KzUIARABGgtFbnZpcm9ubWVudCILRW52aXJvbm1lbnQqA2VudkABSg4IAhABKgIYATABOgIBBBI9CghhcnRpZmFjdBA3Gi+q/ysrCAEQARoIQXJ0aWZhY3QiCEFydGlmYWN0KgNhcnQ4AUABSggIAhABOgIBBBJSChFleGVjdXRpb25fY29udGV4dBA2Gjuq/ys3CAEQARoQRXhlY3V0aW9uQ29udGV4dCIRRXhlY3V0aW9uIENvbnRleHQqBGVjdHhAAUoECAQQARI9CghzY2hlZHVsZRA4Gi+q/ysrCAEQARoIU2NoZWR1bGUiCFNjaGVkdWxlKgNzY2g4AUABSggIAhABOgIBBBJtCgZtZW1vcnkQORphqv8rXQgBEAEaBk1lbW9yeSIGTWVtb3J5KgNtZW04AUABSj4IAhAEIjgKEGlkZW50aXR5X2FjY291bnQSB3N1YmplY3QaG3N1YmplY3RfaWRlbnRpdHlfYWNjb3VudF9pZBI4Cgdwcm9qZWN0EDwaK6r/KycIAxABGgdQcm9qZWN0IgdQcm9qZWN0KgNwcmpAAUoICAIQAToCAQQiBAgxEDEqCWRhdGFzdG9yZTqFAQoJa2luZF9tZXRhEiEuZ29vZ2xlLnByb3RvYnVmLkVudW1WYWx1ZU9wdGlvbnMY9b8FIAEoCzJDLmFpLnN0aWdtZXIuY29tbW9ucy5hcGlyZXNvdXJjZS5hcGlyZXNvdXJjZWtpbmQuQXBpUmVzb3VyY2VLaW5kTWV0YVIIa2luZE1ldGFCG0IZQXBpUmVzb3VyY2VLaW5kT3V0ZXJDbGFzc2IGcHJvdG8z", [file_ai_stigmer_commons_apiresource_apiresourcekind_api_resource_group, file_ai_stigmer_commons_apiresource_apiresourcekind_authorization_config, file_google_protobuf_descriptor]);
|
|
12
12
|
/**
|
|
13
13
|
* Describes the message ai.stigmer.commons.apiresource.apiresourcekind.ApiResourceKindMeta.
|
|
14
14
|
* Use `create(ApiResourceKindMetaSchema)` to create a new message.
|
|
@@ -267,6 +267,12 @@ export var ApiResourceKind;
|
|
|
267
267
|
* @generated from enum value: schedule = 56;
|
|
268
268
|
*/
|
|
269
269
|
ApiResourceKind[ApiResourceKind["schedule"] = 56] = "schedule";
|
|
270
|
+
/**
|
|
271
|
+
* Agent-proposed, user-confirmed fact the platform remembers about a person.
|
|
272
|
+
*
|
|
273
|
+
* @generated from enum value: memory = 57;
|
|
274
|
+
*/
|
|
275
|
+
ApiResourceKind[ApiResourceKind["memory"] = 57] = "memory";
|
|
270
276
|
/**
|
|
271
277
|
* Aggregate root grouping related resources for lifecycle management.
|
|
272
278
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api_resource_kind_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/commons/apiresource/apiresourcekind/api_resource_kind_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,sKAAsK;AACtK,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAExF,OAAO,EAAE,sEAAsE,EAAE,MAAM,4BAA4B,CAAC;AAEpH,OAAO,EAAE,wEAAwE,EAAE,MAAM,8BAA8B,CAAC;AAExH,OAAO,EAAE,+BAA+B,EAAE,MAAM,wBAAwB,CAAC;AAGzE;;GAEG;AACH,MAAM,CAAC,MAAM,qEAAqE,GAAY,aAAa,CACzG,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"api_resource_kind_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/commons/apiresource/apiresourcekind/api_resource_kind_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,sKAAsK;AACtK,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAExF,OAAO,EAAE,sEAAsE,EAAE,MAAM,4BAA4B,CAAC;AAEpH,OAAO,EAAE,wEAAwE,EAAE,MAAM,8BAA8B,CAAC;AAExH,OAAO,EAAE,+BAA+B,EAAE,MAAM,wBAAwB,CAAC;AAGzE;;GAEG;AACH,MAAM,CAAC,MAAM,qEAAqE,GAAY,aAAa,CACzG,QAAQ,CAAC,sxIAAsxI,EAAE,CAAC,sEAAsE,EAAE,wEAAwE,EAAE,+BAA+B,CAAC,CAAC,CAAC;AAwEx9I;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,qEAAqE,EAAE,CAAC,CAAC,CAAC;AAExF;;;;GAIG;AACH,MAAM,CAAN,IAAY,kBAcX;AAdD,WAAY,kBAAkB;IAC5B;;;;OAIG;IACH,mHAAoC,CAAA;IAEpC;;;;OAIG;IACH,uDAAM,CAAA;AACR,CAAC,EAdW,kBAAkB,KAAlB,kBAAkB,QAc7B;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAgC,aAAa,CAChF,QAAQ,CAAC,qEAAqE,EAAE,CAAC,CAAC,CAAC;AAErF;;;;GAIG;AACH,MAAM,CAAN,IAAY,YAmBX;AAnBD,WAAY,YAAY;IACtB;;OAEG;IACH,yFAA6B,CAAA;IAE7B;;;;OAIG;IACH,6DAAe,CAAA;IAEf;;;;OAIG;IACH,2DAAc,CAAA;AAChB,CAAC,EAnBW,YAAY,KAAZ,YAAY,QAmBvB;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAA0B,aAAa,CACpE,QAAQ,CAAC,qEAAqE,EAAE,CAAC,CAAC,CAAC;AAErF;;;;;GAKG;AACH,MAAM,CAAN,IAAY,eAaX;AAbD,WAAY,eAAe;IACzB;;OAEG;IACH,uGAAiC,CAAA;IAEjC;;;;;OAKG;IACH,2DAAW,CAAA;AACb,CAAC,EAbW,eAAe,KAAf,eAAe,QAa1B;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAA6B,aAAa,CAC1E,QAAQ,CAAC,qEAAqE,EAAE,CAAC,CAAC,CAAC;AAErF;;;;GAIG;AACH,MAAM,CAAN,IAAY,eAmNX;AAnND,WAAY,eAAe;IACzB;;;;OAIG;IACH,+FAA6B,CAAA;IAE7B;;;;OAIG;IACH,qFAAwB,CAAA;IAExB;;;;OAIG;IACH,kEAAe,CAAA;IAEf;;;;OAIG;IACH,8EAAqB,CAAA;IAErB;;;;OAIG;IACH,4DAAY,CAAA;IAEZ;;;;OAIG;IACH,kEAAe,CAAA;IAEf;;;;OAIG;IACH,gFAAsB,CAAA;IAEtB;;;;OAIG;IACH,gEAAc,CAAA;IAEd;;;;OAIG;IACH,4EAAoB,CAAA;IAEpB;;;;;;;;;;;OAWG;IACH,sEAAiB,CAAA;IAEjB;;;;OAIG;IACH,8DAAa,CAAA;IAEb;;;;OAIG;IACH,wDAAU,CAAA;IAEV;;;;OAIG;IACH,4EAAoB,CAAA;IAEpB;;;;OAIG;IACH,4DAAY,CAAA;IAEZ;;;;OAIG;IACH,wDAAU,CAAA;IAEV;;;;OAIG;IACH,kEAAe,CAAA;IAEf;;;;OAIG;IACH,0EAAmB,CAAA;IAEnB;;;;OAIG;IACH,oEAAgB,CAAA;IAEhB;;;;OAIG;IACH,wEAAkB,CAAA;IAElB;;;;;OAKG;IACH,oEAAgB,CAAA;IAEhB;;;;OAIG;IACH,8DAAa,CAAA;IAEb;;;;OAIG;IACH,gFAAsB,CAAA;IAEtB;;;;OAIG;IACH,kFAAuB,CAAA;IAEvB;;;;OAIG;IACH,oEAAgB,CAAA;IAEhB;;;;OAIG;IACH,8DAAa,CAAA;IAEb;;;;OAIG;IACH,gFAAsB,CAAA;IAEtB;;;;OAIG;IACH,8DAAa,CAAA;IAEb;;;;OAIG;IACH,0DAAW,CAAA;IAEX;;;;OAIG;IACH,4DAAY,CAAA;AACd,CAAC,EAnNW,eAAe,KAAf,eAAe,QAmN1B;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAA6B,aAAa,CAC1E,QAAQ,CAAC,qEAAqE,EAAE,CAAC,CAAC,CAAC;AAErF;;GAEG;AACH,MAAM,CAAC,MAAM,SAAS,GAAwD,aAAa,CACzF,OAAO,CAAC,qEAAqE,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -138,6 +138,14 @@ export type IdentityAccountPreferences = Message<"ai.stigmer.iam.identityaccount
|
|
|
138
138
|
* @generated from field: string default_cursor_model = 4;
|
|
139
139
|
*/
|
|
140
140
|
defaultCursorModel: string;
|
|
141
|
+
/**
|
|
142
|
+
* Whether the platform may remember confirmed facts about this
|
|
143
|
+
* account. Off by default; operative only where the organization has
|
|
144
|
+
* also enabled memory.
|
|
145
|
+
*
|
|
146
|
+
* @generated from field: bool memory_enabled = 5;
|
|
147
|
+
*/
|
|
148
|
+
memoryEnabled: boolean;
|
|
141
149
|
};
|
|
142
150
|
/**
|
|
143
151
|
* Describes the message ai.stigmer.iam.identityaccount.v1.IdentityAccountPreferences.
|
|
@@ -8,7 +8,7 @@ import { file_buf_validate_validate } from "../../../../../buf/validate/validate
|
|
|
8
8
|
/**
|
|
9
9
|
* Describes the file ai/stigmer/iam/identityaccount/v1/spec.proto.
|
|
10
10
|
*/
|
|
11
|
-
export const file_ai_stigmer_iam_identityaccount_v1_spec = /*@__PURE__*/ fileDesc("
|
|
11
|
+
export const file_ai_stigmer_iam_identityaccount_v1_spec = /*@__PURE__*/ fileDesc("CixhaS9zdGlnbWVyL2lhbS9pZGVudGl0eWFjY291bnQvdjEvc3BlYy5wcm90bxIhYWkuc3RpZ21lci5pYW0uaWRlbnRpdHlhY2NvdW50LnYxIpwDChNJZGVudGl0eUFjY291bnRTcGVjEhYKBmlkcF9pZBgBIAEoCUIGukgDyAEBEg0KBWVtYWlsGAIgASgJEhIKCmZpcnN0X25hbWUYAyABKAkSEQoJbGFzdF9uYW1lGAQgASgJEhMKC3BpY3R1cmVfdXJsGAUgASgJEhoKEmlzX21hY2hpbmVfYWNjb3VudBgGIAEoCBJdChFwcm92aXNpb25pbmdfbW9kZRgHIAEoDjJCLmFpLnN0aWdtZXIuaWFtLmlkZW50aXR5YWNjb3VudC52MS5JZGVudGl0eUFjY291bnRQcm92aXNpb25pbmdNb2RlElMKFWlkZW50aXR5X3Byb3ZpZGVyX3JlZhgIIAEoCzI0LmFpLnN0aWdtZXIuY29tbW9ucy5hcGlyZXNvdXJjZS5BcGlSZXNvdXJjZVJlZmVyZW5jZRJSCgtwcmVmZXJlbmNlcxgJIAEoCzI9LmFpLnN0aWdtZXIuaWFtLmlkZW50aXR5YWNjb3VudC52MS5JZGVudGl0eUFjY291bnRQcmVmZXJlbmNlcyLZAQoaSWRlbnRpdHlBY2NvdW50UHJlZmVyZW5jZXMSIgoQc3RhbmRpbmdfY29udGV4dBgBIAEoCUIIukgFcgMY0A8SMQoPZGVmYXVsdF9oYXJuZXNzGAIgASgJQhi6SBXYAQFyEFIGbmF0aXZlUgZjdXJzb3ISJQoUZGVmYXVsdF9uYXRpdmVfbW9kZWwYAyABKAlCB7pIBHICGGQSJQoUZGVmYXVsdF9jdXJzb3JfbW9kZWwYBCABKAlCB7pIBHICGGQSFgoObWVtb3J5X2VuYWJsZWQYBSABKAhiBnByb3RvMw", [file_ai_stigmer_commons_apiresource_io, file_ai_stigmer_iam_identityaccount_v1_enum, file_buf_validate_validate]);
|
|
12
12
|
/**
|
|
13
13
|
* Describes the message ai.stigmer.iam.identityaccount.v1.IdentityAccountSpec.
|
|
14
14
|
* Use `create(IdentityAccountSpecSchema)` to create a new message.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"spec_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/iam/identityaccount/v1/spec_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,+HAA+H;AAC/H,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,sCAAsC,EAAE,MAAM,uCAAuC,CAAC;AAE/F,OAAO,EAAE,2CAA2C,EAAE,MAAM,cAAc,CAAC;AAC3E,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAGxF;;GAEG;AACH,MAAM,CAAC,MAAM,2CAA2C,GAAY,aAAa,CAC/E,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"spec_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/iam/identityaccount/v1/spec_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,+HAA+H;AAC/H,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,sCAAsC,EAAE,MAAM,uCAAuC,CAAC;AAE/F,OAAO,EAAE,2CAA2C,EAAE,MAAM,cAAc,CAAC;AAC3E,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAGxF;;GAEG;AACH,MAAM,CAAC,MAAM,2CAA2C,GAAY,aAAa,CAC/E,QAAQ,CAAC,w8BAAw8B,EAAE,CAAC,sCAAsC,EAAE,2CAA2C,EAAE,0BAA0B,CAAC,CAAC,CAAC;AAuGxkC;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,2CAA2C,EAAE,CAAC,CAAC,CAAC;AAmD9D;;;GAGG;AACH,MAAM,CAAC,MAAM,gCAAgC,GAA2C,aAAa,CACnG,WAAW,CAAC,2CAA2C,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -74,6 +74,14 @@ export type OrganizationPreferences = Message<"ai.stigmer.tenancy.organization.v
|
|
|
74
74
|
* @generated from field: string standing_context = 1;
|
|
75
75
|
*/
|
|
76
76
|
standingContext: string;
|
|
77
|
+
/**
|
|
78
|
+
* Whether agents may retain learned facts about members of this
|
|
79
|
+
* organization. Off by default: when off, the remember tool is never
|
|
80
|
+
* offered and nothing is recalled, regardless of member opt-in.
|
|
81
|
+
*
|
|
82
|
+
* @generated from field: bool memory_enabled = 2;
|
|
83
|
+
*/
|
|
84
|
+
memoryEnabled: boolean;
|
|
77
85
|
};
|
|
78
86
|
/**
|
|
79
87
|
* Describes the message ai.stigmer.tenancy.organization.v1.OrganizationPreferences.
|
|
@@ -8,7 +8,7 @@ import { file_buf_validate_validate } from "../../../../../buf/validate/validate
|
|
|
8
8
|
/**
|
|
9
9
|
* Describes the file ai/stigmer/tenancy/organization/v1/spec.proto.
|
|
10
10
|
*/
|
|
11
|
-
export const file_ai_stigmer_tenancy_organization_v1_spec = /*@__PURE__*/ fileDesc("
|
|
11
|
+
export const file_ai_stigmer_tenancy_organization_v1_spec = /*@__PURE__*/ fileDesc("Ci1haS9zdGlnbWVyL3RlbmFuY3kvb3JnYW5pemF0aW9uL3YxL3NwZWMucHJvdG8SImFpLnN0aWdtZXIudGVuYW5jeS5vcmdhbml6YXRpb24udjEi7wIKEE9yZ2FuaXphdGlvblNwZWMSHQoLZGVzY3JpcHRpb24YASABKAlCCLpIBXIDGPQDEhoKCGxvZ29fdXJsGAIgASgJQgi6SAVyAxiAEBJLCg9tYW5hZ2VtZW50X21vZGUYAyABKA4yMi5haS5zdGlnbWVyLnRlbmFuY3kub3JnYW5pemF0aW9uLnYxLk1hbmFnZW1lbnRNb2RlElMKFWlkZW50aXR5X3Byb3ZpZGVyX3JlZhgEIAEoCzI0LmFpLnN0aWdtZXIuY29tbW9ucy5hcGlyZXNvdXJjZS5BcGlSZXNvdXJjZVJlZmVyZW5jZRIXCg9leHRlcm5hbF9vcmdfaWQYBSABKAkSEwoLaXNfcGVyc29uYWwYBiABKAgSUAoLcHJlZmVyZW5jZXMYByABKAsyOy5haS5zdGlnbWVyLnRlbmFuY3kub3JnYW5pemF0aW9uLnYxLk9yZ2FuaXphdGlvblByZWZlcmVuY2VzIlUKF09yZ2FuaXphdGlvblByZWZlcmVuY2VzEiIKEHN0YW5kaW5nX2NvbnRleHQYASABKAlCCLpIBXIDGNAPEhYKDm1lbW9yeV9lbmFibGVkGAIgASgIYgZwcm90bzM", [file_ai_stigmer_commons_apiresource_io, file_ai_stigmer_tenancy_organization_v1_enum, file_buf_validate_validate]);
|
|
12
12
|
/**
|
|
13
13
|
* Describes the message ai.stigmer.tenancy.organization.v1.OrganizationSpec.
|
|
14
14
|
* Use `create(OrganizationSpecSchema)` to create a new message.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"spec_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/tenancy/organization/v1/spec_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,iIAAiI;AACjI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,sCAAsC,EAAE,MAAM,uCAAuC,CAAC;AAE/F,OAAO,EAAE,4CAA4C,EAAE,MAAM,cAAc,CAAC;AAC5E,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAGxF;;GAEG;AACH,MAAM,CAAC,MAAM,4CAA4C,GAAY,aAAa,CAChF,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"spec_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/tenancy/organization/v1/spec_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,iIAAiI;AACjI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,sCAAsC,EAAE,MAAM,uCAAuC,CAAC;AAE/F,OAAO,EAAE,4CAA4C,EAAE,MAAM,cAAc,CAAC;AAC5E,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAGxF;;GAEG;AACH,MAAM,CAAC,MAAM,4CAA4C,GAAY,aAAa,CAChF,QAAQ,CAAC,6tBAA6tB,EAAE,CAAC,sCAAsC,EAAE,4CAA4C,EAAE,0BAA0B,CAAC,CAAC,CAAC;AA0D91B;;;GAGG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAiC,aAAa,CAC/E,WAAW,CAAC,4CAA4C,EAAE,CAAC,CAAC,CAAC;AA2B/D;;;GAGG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAwC,aAAa,CAC7F,WAAW,CAAC,4CAA4C,EAAE,CAAC,CAAC,CAAC"}
|