Compare commits

..

14 Commits

Author SHA1 Message Date
Quixos Subtree Publisher e6b34535af Publish quixos-protocol from 0e5206263187b3ccd1539e3de36bbbd456d946a9 2026-07-18 17:29:28 +00:00
Timothy J. Aveni ffac727009 Extend Camino interface contracts 2026-07-18 10:29:28 -07:00
Quixos Subtree Publisher a9134843bc Publish quixos-protocol from eb28865321f04f04baf3b857e8688f71f95a9475 2026-07-15 14:52:07 +00:00
Timothy J. Aveni cd35e03b2d Add Camino edge materialization protocol 2026-07-15 07:52:07 -07:00
Quixos Subtree Publisher ca0381d280 Publish quixos-protocol from 5c5205abc3e8a73b631ea508f92e3b288e71207c 2026-07-15 05:36:14 +00:00
Timothy J. Aveni ea153c3cd7 Add Camino undirected edge protocol 2026-07-14 22:36:14 -07:00
Quixos Subtree Publisher 5dd3948784 Publish quixos-protocol from 435d832a1e202124e2e5ac7f99a65da9d85962e2 2026-07-15 03:30:32 +00:00
Timothy J. Aveni 5587511713 Split Camino edge ordinals by endpoint 2026-07-14 20:30:32 -07:00
Quixos Subtree Publisher 2ad29f8ddb Publish quixos-protocol from 2249fe2b76dea4e52b099696c2418f0dd2444f52 2026-07-14 14:55:04 +00:00
Timothy J. Aveni 7dba68cff5 Extend Camino edge endpoint protocol 2026-07-14 07:55:04 -07:00
Quixos Subtree Publisher ff07b0d793 Publish quixos-protocol from 1a3ecab531f39491ae0ce3c2a12de0d264440ed7 2026-07-13 14:51:43 +00:00
Timothy J. Aveni 464442a55c Add Camino display label field metadata 2026-07-13 07:51:43 -07:00
Quixos Subtree Publisher 5cd3db78ad Publish quixos-protocol from 0ff224604a054b52ad8b385764e913171bf19468 2026-07-13 04:32:26 +00:00
Timothy J. Aveni 77086efb93 Add Camino object listing RPC 2026-07-12 21:32:26 -07:00
7 changed files with 476 additions and 34 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"version": 1, "version": 1,
"sourceRepo": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos.git", "sourceRepo": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos.git",
"sourceCommit": "9472ad0a8e16927025594c294abc44cdfb30596b", "sourceCommit": "0e5206263187b3ccd1539e3de36bbbd456d946a9",
"sourcePath": "quixos-protocol", "sourcePath": "quixos-protocol",
"exportName": "quixos-protocol", "exportName": "quixos-protocol",
"mirrorRemote": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos-protocol.git" "mirrorRemote": "https://gitea-external.egads.tutti.syntaxblitz.net/quixos/quixos-protocol.git"
+31 -2
View File
@@ -10,9 +10,11 @@ service CaminoService {
rpc ListClasses(ListClassesRequest) returns (ListClassesResponse); rpc ListClasses(ListClassesRequest) returns (ListClassesResponse);
rpc CreateObject(CreateObjectRequest) returns (CreateObjectResponse); rpc CreateObject(CreateObjectRequest) returns (CreateObjectResponse);
rpc GetObject(GetObjectRequest) returns (GetObjectResponse); rpc GetObject(GetObjectRequest) returns (GetObjectResponse);
rpc ListObjects(ListObjectsRequest) returns (ListObjectsResponse);
rpc SetField(SetFieldRequest) returns (SetFieldResponse); rpc SetField(SetFieldRequest) returns (SetFieldResponse);
rpc AddEdge(AddEdgeRequest) returns (AddEdgeResponse); rpc AddEdge(AddEdgeRequest) returns (AddEdgeResponse);
rpc ListEdges(ListEdgesRequest) returns (ListEdgesResponse); rpc ListEdges(ListEdgesRequest) returns (ListEdgesResponse);
rpc ResolveEdge(ResolveEdgeRequest) returns (ResolveEdgeResponse);
rpc RemoveEdge(RemoveEdgeRequest) returns (RemoveEdgeResponse); rpc RemoveEdge(RemoveEdgeRequest) returns (RemoveEdgeResponse);
rpc ListOps(ListOpsRequest) returns (ListOpsResponse); rpc ListOps(ListOpsRequest) returns (ListOpsResponse);
rpc WatchObject(WatchObjectRequest) returns (stream WatchObjectEvent); rpc WatchObject(WatchObjectRequest) returns (stream WatchObjectEvent);
@@ -104,6 +106,14 @@ message GetObjectResponse {
CaminoObject object = 1; CaminoObject object = 1;
} }
message ListObjectsRequest {
string class_id = 1;
}
message ListObjectsResponse {
repeated CaminoObject objects = 1;
}
message SetFieldRequest { message SetFieldRequest {
string object_id = 1; string object_id = 1;
string field_name = 2; string field_name = 2;
@@ -120,7 +130,8 @@ message AddEdgeRequest {
string source_field = 2; string source_field = 2;
string to_object_id = 3; string to_object_id = 3;
map<string, Value> fields = 4; map<string, Value> fields = 4;
optional int32 ordinal = 5; optional int32 source_ordinal = 5;
optional int32 target_ordinal = 6;
} }
message AddEdgeResponse { message AddEdgeResponse {
@@ -135,6 +146,17 @@ message ListEdgesResponse {
repeated CaminoEdge edges = 1; repeated CaminoEdge edges = 1;
} }
message ResolveEdgeRequest {
string object_id = 1;
string projection = 2;
}
message ResolveEdgeResponse {
repeated CaminoEdge edges = 1;
CaminoObject materialized_object = 2;
bool created = 3;
}
message RemoveEdgeRequest { message RemoveEdgeRequest {
string edge_id = 1; string edge_id = 1;
} }
@@ -179,13 +201,20 @@ message CaminoEdge {
string edge_type_id = 2; string edge_type_id = 2;
string from_object_id = 3; string from_object_id = 3;
string to_object_id = 4; string to_object_id = 4;
// Legacy canonical source-side projection fields. Prefer endpoint fields.
string source_field = 5; string source_field = 5;
string cardinality = 6; string cardinality = 6;
string inverse = 7; string inverse = 7;
map<string, Value> fields = 8; map<string, Value> fields = 8;
optional int32 ordinal = 9; optional int32 from_ordinal = 9;
string created_at = 10; string created_at = 10;
string updated_at = 11; string updated_at = 11;
string from_projection = 12;
string to_projection = 13;
string from_cardinality = 14;
string to_cardinality = 15;
optional int32 to_ordinal = 16;
string directionality = 17;
} }
message CaminoOp { message CaminoOp {
+24
View File
@@ -26,6 +26,7 @@ extend google.protobuf.FieldOptions {
FieldStorage field_storage = 51022; FieldStorage field_storage = 51022;
FieldOps field_ops = 51023; FieldOps field_ops = 51023;
InterfaceFieldContract interface_field = 51024; InterfaceFieldContract interface_field = 51024;
bool display_label = 51025;
} }
extend google.protobuf.MethodOptions { extend google.protobuf.MethodOptions {
@@ -40,6 +41,7 @@ message ClassOptions {
message InterfaceOptions { message InterfaceOptions {
uint32 version = 1; uint32 version = 1;
SymbolRef id = 2; SymbolRef id = 2;
repeated string type_parameter = 3;
} }
message ImplementsOptions { message ImplementsOptions {
@@ -53,9 +55,31 @@ message ConstructorOptions {
message EdgeOptions { message EdgeOptions {
SymbolRef id = 1; SymbolRef id = 1;
// Shorthand for other_endpoint.class.
SymbolRef target = 2; SymbolRef target = 2;
// Shorthand for this_endpoint.cardinality.
Cardinality cardinality = 3; Cardinality cardinality = 3;
// Shorthand for other_endpoint.projection.
string inverse = 4; string inverse = 4;
EdgeEndpointOptions this_endpoint = 5;
EdgeEndpointOptions other_endpoint = 6;
repeated SymbolRef tag = 7;
repeated SymbolRef implements = 8;
bool undirected = 9;
}
message EdgeEndpointOptions {
SymbolRef class = 1;
SymbolRef interface = 2;
string projection = 3;
Cardinality cardinality = 4;
bool indexed = 5;
EdgeMaterializationOptions materialize = 6;
}
message EdgeMaterializationOptions {
SymbolRef class = 1;
string connect_projection = 2;
} }
message MethodOptions { message MethodOptions {
+26
View File
@@ -25,6 +25,7 @@ enum Cardinality {
MANY = 3; MANY = 3;
MANY_UNIQUE = 4; MANY_UNIQUE = 4;
MANY_ORDERED = 5; MANY_ORDERED = 5;
MANY_UNIQUE_ORDERED = 6;
} }
enum DocRefStrength { enum DocRefStrength {
@@ -94,6 +95,7 @@ message FieldSchema {
FieldStorage storage = 7; FieldStorage storage = 7;
FieldOps ops = 8; FieldOps ops = 8;
InterfaceFieldContract interface_contract = 9; InterfaceFieldContract interface_contract = 9;
bool is_display_label = 10;
} }
message FieldStorage { message FieldStorage {
@@ -119,6 +121,8 @@ message InterfaceFieldContract {
bool watchable = 4; bool watchable = 4;
string type_param = 5; string type_param = 5;
TypeRef type = 6; TypeRef type = 6;
string ref_target_type_param = 7;
Cardinality edge_cardinality = 8;
} }
message InterfaceImplementationSchema { message InterfaceImplementationSchema {
@@ -132,6 +136,7 @@ message InterfaceSchema {
repeated FieldSchema fields = 3; repeated FieldSchema fields = 3;
string source_file = 4; string source_file = 4;
string proto_message = 5; string proto_message = 5;
repeated string type_parameters = 6;
} }
enum FieldImplementation { enum FieldImplementation {
@@ -146,12 +151,33 @@ message FieldOps {
message EdgeSchema { message EdgeSchema {
SymbolRef id = 1; SymbolRef id = 1;
// Legacy/source-side projection fields. Prefer from_endpoint/to_endpoint.
string source_field = 2; string source_field = 2;
SymbolRef from_class = 3; SymbolRef from_class = 3;
SymbolRef to_class = 4; SymbolRef to_class = 4;
Cardinality cardinality = 5; Cardinality cardinality = 5;
string inverse = 6; string inverse = 6;
repeated FieldSchema fields = 7; repeated FieldSchema fields = 7;
EdgeEndpointSchema from_endpoint = 8;
EdgeEndpointSchema to_endpoint = 9;
SymbolRef declaring_class = 10;
repeated SymbolRef tags = 11;
repeated SymbolRef implements = 12;
bool undirected = 13;
}
message EdgeEndpointSchema {
SymbolRef class = 1;
SymbolRef interface = 2;
string projection = 3;
Cardinality cardinality = 4;
bool indexed = 5;
EdgeMaterialization materialize = 6;
}
message EdgeMaterialization {
SymbolRef class = 1;
string connect_projection = 2;
} }
message MethodSchema { message MethodSchema {
+156 -20
View File
File diff suppressed because one or more lines are too long
+110 -4
View File
@@ -16,7 +16,7 @@ import type { Message } from "@bufbuild/protobuf";
* Describes the file camino/options.proto. * Describes the file camino/options.proto.
*/ */
export const file_camino_options: GenFile = /*@__PURE__*/ export const file_camino_options: GenFile = /*@__PURE__*/
fileDesc("ChRjYW1pbm8vb3B0aW9ucy5wcm90bxIGY2FtaW5vIj4KDENsYXNzT3B0aW9ucxIPCgd2ZXJzaW9uGAEgASgNEh0KAmlkGAIgASgLMhEuY2FtaW5vLlN5bWJvbFJlZiJCChBJbnRlcmZhY2VPcHRpb25zEg8KB3ZlcnNpb24YASABKA0SHQoCaWQYAiABKAsyES5jYW1pbm8uU3ltYm9sUmVmImQKEUltcGxlbWVudHNPcHRpb25zEiQKCWludGVyZmFjZRgBIAEoCzIRLmNhbWluby5TeW1ib2xSZWYSKQoMdHlwZV9iaW5kaW5nGAIgAygLMhMuY2FtaW5vLlR5cGVCaW5kaW5nIjsKEkNvbnN0cnVjdG9yT3B0aW9ucxIlCghmdW5jdGlvbhgBIAEoCzITLnF1aXhvcy5GdW5jdGlvblJlZiKKAQoLRWRnZU9wdGlvbnMSHQoCaWQYASABKAsyES5jYW1pbm8uU3ltYm9sUmVmEiEKBnRhcmdldBgCIAEoCzIRLmNhbWluby5TeW1ib2xSZWYSKAoLY2FyZGluYWxpdHkYAyABKA4yEy5jYW1pbm8uQ2FyZGluYWxpdHkSDwoHaW52ZXJzZRgEIAEoCSJECg1NZXRob2RPcHRpb25zEgwKBG5hbWUYASABKAkSJQoIZnVuY3Rpb24YAiABKAsyEy5xdWl4b3MuRnVuY3Rpb25SZWYiYwoQTWlncmF0aW9uT3B0aW9ucxIUCgxmcm9tX3ZlcnNpb24YASABKA0SEgoKdG9fdmVyc2lvbhgCIAEoDRIlCghmdW5jdGlvbhgDIAEoCzITLnF1aXhvcy5GdW5jdGlvblJlZjpJChBzY2hlbWFfbmFtZXNwYWNlEhwuZ29vZ2xlLnByb3RvYnVmLkZpbGVPcHRpb25zGLiOAyABKAlSD3NjaGVtYU5hbWVzcGFjZTpFCg5zY2hlbWFfdmVyc2lvbhIcLmdvb2dsZS5wcm90b2J1Zi5GaWxlT3B0aW9ucxi5jgMgASgJUg1zY2hlbWFWZXJzaW9uOk0KBWNsYXNzEh8uZ29vZ2xlLnByb3RvYnVmLk1lc3NhZ2VPcHRpb25zGMKOAyABKAsyFC5jYW1pbm8uQ2xhc3NPcHRpb25zUgVjbGFzczpQCgZtZXRob2QSHy5nb29nbGUucHJvdG9idWYuTWVzc2FnZU9wdGlvbnMYw44DIAMoCzIVLmNhbWluby5NZXRob2RPcHRpb25zUgZtZXRob2Q6WQoJbWlncmF0aW9uEh8uZ29vZ2xlLnByb3RvYnVmLk1lc3NhZ2VPcHRpb25zGMSOAyADKAsyGC5jYW1pbm8uTWlncmF0aW9uT3B0aW9uc1IJbWlncmF0aW9uOlkKCWludGVyZmFjZRIfLmdvb2dsZS5wcm90b2J1Zi5NZXNzYWdlT3B0aW9ucxjFjgMgASgLMhguY2FtaW5vLkludGVyZmFjZU9wdGlvbnNSCWludGVyZmFjZTpcCgppbXBsZW1lbnRzEh8uZ29vZ2xlLnByb3RvYnVmLk1lc3NhZ2VPcHRpb25zGMaOAyADKAsyGS5jYW1pbm8uSW1wbGVtZW50c09wdGlvbnNSCmltcGxlbWVudHM6XwoLY29uc3RydWN0b3ISHy5nb29nbGUucHJvdG9idWYuTWVzc2FnZU9wdGlvbnMYx44DIAEoCzIaLmNhbWluby5Db25zdHJ1Y3Rvck9wdGlvbnNSC2NvbnN0cnVjdG9yOlUKCGNvbmZsaWN0Eh0uZ29vZ2xlLnByb3RvYnVmLkZpZWxkT3B0aW9ucxjMjgMgASgOMhguY2FtaW5vLkNvbmZsaWN0U3RyYXRlZ3lSCGNvbmZsaWN0OkgKBGVkZ2USHS5nb29nbGUucHJvdG9idWYuRmllbGRPcHRpb25zGM2OAyABKAsyEy5jYW1pbm8uRWRnZU9wdGlvbnNSBGVkZ2U6WgoNZmllbGRfc3RvcmFnZRIdLmdvb2dsZS5wcm90b2J1Zi5GaWVsZE9wdGlvbnMYzo4DIAEoCzIULmNhbWluby5GaWVsZFN0b3JhZ2VSDGZpZWxkU3RvcmFnZTpOCglmaWVsZF9vcHMSHS5nb29nbGUucHJvdG9idWYuRmllbGRPcHRpb25zGM+OAyABKAsyEC5jYW1pbm8uRmllbGRPcHNSCGZpZWxkT3BzOmgKD2ludGVyZmFjZV9maWVsZBIdLmdvb2dsZS5wcm90b2J1Zi5GaWVsZE9wdGlvbnMY0I4DIAEoCzIeLmNhbWluby5JbnRlcmZhY2VGaWVsZENvbnRyYWN0Ug5pbnRlcmZhY2VGaWVsZDpJCgRpbXBsEh4uZ29vZ2xlLnByb3RvYnVmLk1ldGhvZE9wdGlvbnMY1o4DIAEoCzITLnF1aXhvcy5GdW5jdGlvblJlZlIEaW1wbGIGcHJvdG8z", [file_google_protobuf_descriptor, file_camino_schema, file_quixos_refs]); fileDesc("ChRjYW1pbm8vb3B0aW9ucy5wcm90bxIGY2FtaW5vIj4KDENsYXNzT3B0aW9ucxIPCgd2ZXJzaW9uGAEgASgNEh0KAmlkGAIgASgLMhEuY2FtaW5vLlN5bWJvbFJlZiJaChBJbnRlcmZhY2VPcHRpb25zEg8KB3ZlcnNpb24YASABKA0SHQoCaWQYAiABKAsyES5jYW1pbm8uU3ltYm9sUmVmEhYKDnR5cGVfcGFyYW1ldGVyGAMgAygJImQKEUltcGxlbWVudHNPcHRpb25zEiQKCWludGVyZmFjZRgBIAEoCzIRLmNhbWluby5TeW1ib2xSZWYSKQoMdHlwZV9iaW5kaW5nGAIgAygLMhMuY2FtaW5vLlR5cGVCaW5kaW5nIjsKEkNvbnN0cnVjdG9yT3B0aW9ucxIlCghmdW5jdGlvbhgBIAEoCzITLnF1aXhvcy5GdW5jdGlvblJlZiLOAgoLRWRnZU9wdGlvbnMSHQoCaWQYASABKAsyES5jYW1pbm8uU3ltYm9sUmVmEiEKBnRhcmdldBgCIAEoCzIRLmNhbWluby5TeW1ib2xSZWYSKAoLY2FyZGluYWxpdHkYAyABKA4yEy5jYW1pbm8uQ2FyZGluYWxpdHkSDwoHaW52ZXJzZRgEIAEoCRIyCg10aGlzX2VuZHBvaW50GAUgASgLMhsuY2FtaW5vLkVkZ2VFbmRwb2ludE9wdGlvbnMSMwoOb3RoZXJfZW5kcG9pbnQYBiABKAsyGy5jYW1pbm8uRWRnZUVuZHBvaW50T3B0aW9ucxIeCgN0YWcYByADKAsyES5jYW1pbm8uU3ltYm9sUmVmEiUKCmltcGxlbWVudHMYCCADKAsyES5jYW1pbm8uU3ltYm9sUmVmEhIKCnVuZGlyZWN0ZWQYCSABKAgi5QEKE0VkZ2VFbmRwb2ludE9wdGlvbnMSIAoFY2xhc3MYASABKAsyES5jYW1pbm8uU3ltYm9sUmVmEiQKCWludGVyZmFjZRgCIAEoCzIRLmNhbWluby5TeW1ib2xSZWYSEgoKcHJvamVjdGlvbhgDIAEoCRIoCgtjYXJkaW5hbGl0eRgEIAEoDjITLmNhbWluby5DYXJkaW5hbGl0eRIPCgdpbmRleGVkGAUgASgIEjcKC21hdGVyaWFsaXplGAYgASgLMiIuY2FtaW5vLkVkZ2VNYXRlcmlhbGl6YXRpb25PcHRpb25zIloKGkVkZ2VNYXRlcmlhbGl6YXRpb25PcHRpb25zEiAKBWNsYXNzGAEgASgLMhEuY2FtaW5vLlN5bWJvbFJlZhIaChJjb25uZWN0X3Byb2plY3Rpb24YAiABKAkiRAoNTWV0aG9kT3B0aW9ucxIMCgRuYW1lGAEgASgJEiUKCGZ1bmN0aW9uGAIgASgLMhMucXVpeG9zLkZ1bmN0aW9uUmVmImMKEE1pZ3JhdGlvbk9wdGlvbnMSFAoMZnJvbV92ZXJzaW9uGAEgASgNEhIKCnRvX3ZlcnNpb24YAiABKA0SJQoIZnVuY3Rpb24YAyABKAsyEy5xdWl4b3MuRnVuY3Rpb25SZWY6SQoQc2NoZW1hX25hbWVzcGFjZRIcLmdvb2dsZS5wcm90b2J1Zi5GaWxlT3B0aW9ucxi4jgMgASgJUg9zY2hlbWFOYW1lc3BhY2U6RQoOc2NoZW1hX3ZlcnNpb24SHC5nb29nbGUucHJvdG9idWYuRmlsZU9wdGlvbnMYuY4DIAEoCVINc2NoZW1hVmVyc2lvbjpNCgVjbGFzcxIfLmdvb2dsZS5wcm90b2J1Zi5NZXNzYWdlT3B0aW9ucxjCjgMgASgLMhQuY2FtaW5vLkNsYXNzT3B0aW9uc1IFY2xhc3M6UAoGbWV0aG9kEh8uZ29vZ2xlLnByb3RvYnVmLk1lc3NhZ2VPcHRpb25zGMOOAyADKAsyFS5jYW1pbm8uTWV0aG9kT3B0aW9uc1IGbWV0aG9kOlkKCW1pZ3JhdGlvbhIfLmdvb2dsZS5wcm90b2J1Zi5NZXNzYWdlT3B0aW9ucxjEjgMgAygLMhguY2FtaW5vLk1pZ3JhdGlvbk9wdGlvbnNSCW1pZ3JhdGlvbjpZCglpbnRlcmZhY2USHy5nb29nbGUucHJvdG9idWYuTWVzc2FnZU9wdGlvbnMYxY4DIAEoCzIYLmNhbWluby5JbnRlcmZhY2VPcHRpb25zUglpbnRlcmZhY2U6XAoKaW1wbGVtZW50cxIfLmdvb2dsZS5wcm90b2J1Zi5NZXNzYWdlT3B0aW9ucxjGjgMgAygLMhkuY2FtaW5vLkltcGxlbWVudHNPcHRpb25zUgppbXBsZW1lbnRzOl8KC2NvbnN0cnVjdG9yEh8uZ29vZ2xlLnByb3RvYnVmLk1lc3NhZ2VPcHRpb25zGMeOAyABKAsyGi5jYW1pbm8uQ29uc3RydWN0b3JPcHRpb25zUgtjb25zdHJ1Y3RvcjpVCghjb25mbGljdBIdLmdvb2dsZS5wcm90b2J1Zi5GaWVsZE9wdGlvbnMYzI4DIAEoDjIYLmNhbWluby5Db25mbGljdFN0cmF0ZWd5Ughjb25mbGljdDpICgRlZGdlEh0uZ29vZ2xlLnByb3RvYnVmLkZpZWxkT3B0aW9ucxjNjgMgASgLMhMuY2FtaW5vLkVkZ2VPcHRpb25zUgRlZGdlOloKDWZpZWxkX3N0b3JhZ2USHS5nb29nbGUucHJvdG9idWYuRmllbGRPcHRpb25zGM6OAyABKAsyFC5jYW1pbm8uRmllbGRTdG9yYWdlUgxmaWVsZFN0b3JhZ2U6TgoJZmllbGRfb3BzEh0uZ29vZ2xlLnByb3RvYnVmLkZpZWxkT3B0aW9ucxjPjgMgASgLMhAuY2FtaW5vLkZpZWxkT3BzUghmaWVsZE9wczpoCg9pbnRlcmZhY2VfZmllbGQSHS5nb29nbGUucHJvdG9idWYuRmllbGRPcHRpb25zGNCOAyABKAsyHi5jYW1pbm8uSW50ZXJmYWNlRmllbGRDb250cmFjdFIOaW50ZXJmYWNlRmllbGQ6RAoNZGlzcGxheV9sYWJlbBIdLmdvb2dsZS5wcm90b2J1Zi5GaWVsZE9wdGlvbnMY0Y4DIAEoCFIMZGlzcGxheUxhYmVsOkkKBGltcGwSHi5nb29nbGUucHJvdG9idWYuTWV0aG9kT3B0aW9ucxjWjgMgASgLMhMucXVpeG9zLkZ1bmN0aW9uUmVmUgRpbXBsYgZwcm90bzM", [file_google_protobuf_descriptor, file_camino_schema, file_quixos_refs]);
/** /**
* @generated from message camino.ClassOptions * @generated from message camino.ClassOptions
@@ -53,6 +53,11 @@ export type InterfaceOptions = Message<"camino.InterfaceOptions"> & {
* @generated from field: camino.SymbolRef id = 2; * @generated from field: camino.SymbolRef id = 2;
*/ */
id?: SymbolRef | undefined; id?: SymbolRef | undefined;
/**
* @generated from field: repeated string type_parameter = 3;
*/
typeParameter: string[];
}; };
/** /**
@@ -111,19 +116,50 @@ export type EdgeOptions = Message<"camino.EdgeOptions"> & {
id?: SymbolRef | undefined; id?: SymbolRef | undefined;
/** /**
* Shorthand for other_endpoint.class.
*
* @generated from field: camino.SymbolRef target = 2; * @generated from field: camino.SymbolRef target = 2;
*/ */
target?: SymbolRef | undefined; target?: SymbolRef | undefined;
/** /**
* Shorthand for this_endpoint.cardinality.
*
* @generated from field: camino.Cardinality cardinality = 3; * @generated from field: camino.Cardinality cardinality = 3;
*/ */
cardinality: Cardinality; cardinality: Cardinality;
/** /**
* Shorthand for other_endpoint.projection.
*
* @generated from field: string inverse = 4; * @generated from field: string inverse = 4;
*/ */
inverse: string; inverse: string;
/**
* @generated from field: camino.EdgeEndpointOptions this_endpoint = 5;
*/
thisEndpoint?: EdgeEndpointOptions | undefined;
/**
* @generated from field: camino.EdgeEndpointOptions other_endpoint = 6;
*/
otherEndpoint?: EdgeEndpointOptions | undefined;
/**
* @generated from field: repeated camino.SymbolRef tag = 7;
*/
tag: SymbolRef[];
/**
* @generated from field: repeated camino.SymbolRef implements = 8;
*/
implements: SymbolRef[];
/**
* @generated from field: bool undirected = 9;
*/
undirected: boolean;
}; };
/** /**
@@ -133,6 +169,70 @@ export type EdgeOptions = Message<"camino.EdgeOptions"> & {
export const EdgeOptionsSchema: GenMessage<EdgeOptions> = /*@__PURE__*/ export const EdgeOptionsSchema: GenMessage<EdgeOptions> = /*@__PURE__*/
messageDesc(file_camino_options, 4); messageDesc(file_camino_options, 4);
/**
* @generated from message camino.EdgeEndpointOptions
*/
export type EdgeEndpointOptions = Message<"camino.EdgeEndpointOptions"> & {
/**
* @generated from field: camino.SymbolRef class = 1;
*/
class?: SymbolRef | undefined;
/**
* @generated from field: camino.SymbolRef interface = 2;
*/
interface?: SymbolRef | undefined;
/**
* @generated from field: string projection = 3;
*/
projection: string;
/**
* @generated from field: camino.Cardinality cardinality = 4;
*/
cardinality: Cardinality;
/**
* @generated from field: bool indexed = 5;
*/
indexed: boolean;
/**
* @generated from field: camino.EdgeMaterializationOptions materialize = 6;
*/
materialize?: EdgeMaterializationOptions | undefined;
};
/**
* Describes the message camino.EdgeEndpointOptions.
* Use `create(EdgeEndpointOptionsSchema)` to create a new message.
*/
export const EdgeEndpointOptionsSchema: GenMessage<EdgeEndpointOptions> = /*@__PURE__*/
messageDesc(file_camino_options, 5);
/**
* @generated from message camino.EdgeMaterializationOptions
*/
export type EdgeMaterializationOptions = Message<"camino.EdgeMaterializationOptions"> & {
/**
* @generated from field: camino.SymbolRef class = 1;
*/
class?: SymbolRef | undefined;
/**
* @generated from field: string connect_projection = 2;
*/
connectProjection: string;
};
/**
* Describes the message camino.EdgeMaterializationOptions.
* Use `create(EdgeMaterializationOptionsSchema)` to create a new message.
*/
export const EdgeMaterializationOptionsSchema: GenMessage<EdgeMaterializationOptions> = /*@__PURE__*/
messageDesc(file_camino_options, 6);
/** /**
* @generated from message camino.MethodOptions * @generated from message camino.MethodOptions
*/ */
@@ -153,7 +253,7 @@ export type MethodOptions = Message<"camino.MethodOptions"> & {
* Use `create(MethodOptionsSchema)` to create a new message. * Use `create(MethodOptionsSchema)` to create a new message.
*/ */
export const MethodOptionsSchema: GenMessage<MethodOptions> = /*@__PURE__*/ export const MethodOptionsSchema: GenMessage<MethodOptions> = /*@__PURE__*/
messageDesc(file_camino_options, 5); messageDesc(file_camino_options, 7);
/** /**
* @generated from message camino.MigrationOptions * @generated from message camino.MigrationOptions
@@ -180,7 +280,7 @@ export type MigrationOptions = Message<"camino.MigrationOptions"> & {
* Use `create(MigrationOptionsSchema)` to create a new message. * Use `create(MigrationOptionsSchema)` to create a new message.
*/ */
export const MigrationOptionsSchema: GenMessage<MigrationOptions> = /*@__PURE__*/ export const MigrationOptionsSchema: GenMessage<MigrationOptions> = /*@__PURE__*/
messageDesc(file_camino_options, 6); messageDesc(file_camino_options, 8);
/** /**
* @generated from extension: string schema_namespace = 51000; * @generated from extension: string schema_namespace = 51000;
@@ -260,9 +360,15 @@ export const field_ops: GenExtension<FieldOptions, FieldOps> = /*@__PURE__*/
export const interface_field: GenExtension<FieldOptions, InterfaceFieldContract> = /*@__PURE__*/ export const interface_field: GenExtension<FieldOptions, InterfaceFieldContract> = /*@__PURE__*/
extDesc(file_camino_options, 12); extDesc(file_camino_options, 12);
/**
* @generated from extension: bool display_label = 51025;
*/
export const display_label: GenExtension<FieldOptions, boolean> = /*@__PURE__*/
extDesc(file_camino_options, 13);
/** /**
* @generated from extension: quixos.FunctionRef impl = 51030; * @generated from extension: quixos.FunctionRef impl = 51030;
*/ */
export const impl: GenExtension<MethodOptions$1, FunctionRef> = /*@__PURE__*/ export const impl: GenExtension<MethodOptions$1, FunctionRef> = /*@__PURE__*/
extDesc(file_camino_options, 13); extDesc(file_camino_options, 14);
File diff suppressed because one or more lines are too long