Compare commits
18 Commits
16f4b3982c
...
exported
| Author | SHA1 | Date | |
|---|---|---|---|
| e6b34535af | |||
| ffac727009 | |||
| a9134843bc | |||
| cd35e03b2d | |||
| ca0381d280 | |||
| ea153c3cd7 | |||
| 5dd3948784 | |||
| 5587511713 | |||
| 2ad29f8ddb | |||
| 7dba68cff5 | |||
| ff07b0d793 | |||
| 464442a55c | |||
| 5cd3db78ad | |||
| 77086efb93 | |||
| c5141a24c4 | |||
| 68c4c30d8f | |||
| dd722bf0d2 | |||
| cab21888e6 |
@@ -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": "06d24d7d9c2653a0c4eeb0224b89ab8b2cafe754",
|
"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"
|
||||||
|
|||||||
+47
-2
@@ -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);
|
||||||
@@ -58,6 +60,19 @@ message CrdtValue {
|
|||||||
bytes payload = 3;
|
bytes payload = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message FieldValueSource {
|
||||||
|
string object_id = 1;
|
||||||
|
string field_name = 2;
|
||||||
|
string field_type = 3;
|
||||||
|
string field_storage = 4;
|
||||||
|
string conflict_strategy = 5;
|
||||||
|
uint64 revision = 6;
|
||||||
|
}
|
||||||
|
|
||||||
|
message ValueSource {
|
||||||
|
FieldValueSource field = 1;
|
||||||
|
}
|
||||||
|
|
||||||
message Value {
|
message Value {
|
||||||
oneof kind {
|
oneof kind {
|
||||||
NullValue null_value = 1;
|
NullValue null_value = 1;
|
||||||
@@ -71,6 +86,7 @@ message Value {
|
|||||||
RefValue ref_value = 9;
|
RefValue ref_value = 9;
|
||||||
CrdtValue crdt_value = 10;
|
CrdtValue crdt_value = 10;
|
||||||
}
|
}
|
||||||
|
ValueSource source = 11;
|
||||||
}
|
}
|
||||||
|
|
||||||
message CreateObjectRequest {
|
message CreateObjectRequest {
|
||||||
@@ -90,10 +106,19 @@ 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;
|
||||||
Value value = 3;
|
Value value = 3;
|
||||||
|
string client_mutation_id = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
message SetFieldResponse {
|
message SetFieldResponse {
|
||||||
@@ -105,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 {
|
||||||
@@ -120,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;
|
||||||
}
|
}
|
||||||
@@ -164,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 {
|
||||||
@@ -181,4 +225,5 @@ message CaminoOp {
|
|||||||
string actor = 5;
|
string actor = 5;
|
||||||
quixos.FunctionRef function_ref = 6;
|
quixos.FunctionRef function_ref = 6;
|
||||||
string created_at = 7;
|
string created_at = 7;
|
||||||
|
string client_mutation_id = 8;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ extend google.protobuf.MessageOptions {
|
|||||||
repeated MigrationOptions migration = 51012;
|
repeated MigrationOptions migration = 51012;
|
||||||
InterfaceOptions interface = 51013;
|
InterfaceOptions interface = 51013;
|
||||||
repeated ImplementsOptions implements = 51014;
|
repeated ImplementsOptions implements = 51014;
|
||||||
|
ConstructorOptions constructor = 51015;
|
||||||
}
|
}
|
||||||
|
|
||||||
extend google.protobuf.FieldOptions {
|
extend google.protobuf.FieldOptions {
|
||||||
@@ -25,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 {
|
||||||
@@ -39,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 {
|
||||||
@@ -46,11 +49,37 @@ message ImplementsOptions {
|
|||||||
repeated TypeBinding type_binding = 2;
|
repeated TypeBinding type_binding = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message ConstructorOptions {
|
||||||
|
quixos.FunctionRef function = 1;
|
||||||
|
}
|
||||||
|
|
||||||
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 {
|
||||||
|
|||||||
@@ -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 {
|
||||||
@@ -39,6 +40,7 @@ enum FieldStorageKind {
|
|||||||
DERIVED = 2;
|
DERIVED = 2;
|
||||||
LAZY = 3;
|
LAZY = 3;
|
||||||
EXTERNAL = 4;
|
EXTERNAL = 4;
|
||||||
|
STATIC_FINAL = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Ref {
|
message Ref {
|
||||||
@@ -80,6 +82,7 @@ message ClassSchema {
|
|||||||
string proto_message = 8;
|
string proto_message = 8;
|
||||||
repeated OperationServiceSchema operation_services = 9;
|
repeated OperationServiceSchema operation_services = 9;
|
||||||
repeated InterfaceImplementationSchema implements = 10;
|
repeated InterfaceImplementationSchema implements = 10;
|
||||||
|
ConstructorSpec constructor = 11;
|
||||||
}
|
}
|
||||||
|
|
||||||
message FieldSchema {
|
message FieldSchema {
|
||||||
@@ -92,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 {
|
||||||
@@ -117,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 {
|
||||||
@@ -130,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 {
|
||||||
@@ -144,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 {
|
||||||
@@ -163,6 +191,10 @@ message MigrationSpec {
|
|||||||
quixos.FunctionRef function = 3;
|
quixos.FunctionRef function = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message ConstructorSpec {
|
||||||
|
quixos.FunctionRef function = 1;
|
||||||
|
}
|
||||||
|
|
||||||
message OperationSchema {
|
message OperationSchema {
|
||||||
string name = 1;
|
string name = 1;
|
||||||
TypeRef input_type = 2;
|
TypeRef input_type = 2;
|
||||||
|
|||||||
@@ -35,6 +35,7 @@ enum FunctionCapabilityKind {
|
|||||||
METHOD = 1;
|
METHOD = 1;
|
||||||
FIELD_RESOLVER = 2;
|
FIELD_RESOLVER = 2;
|
||||||
MIGRATION = 3;
|
MIGRATION = 3;
|
||||||
|
CONSTRUCTOR = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
message ClassExport {
|
message ClassExport {
|
||||||
|
|||||||
+235
-25
File diff suppressed because one or more lines are too long
+139
-10
@@ -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("ChRjYW1pbm8vb3B0aW9ucy5wcm90bxIGY2FtaW5vIj4KDENsYXNzT3B0aW9ucxIPCgd2ZXJzaW9uGAEgASgNEh0KAmlkGAIgASgLMhEuY2FtaW5vLlN5bWJvbFJlZiJCChBJbnRlcmZhY2VPcHRpb25zEg8KB3ZlcnNpb24YASABKA0SHQoCaWQYAiABKAsyES5jYW1pbm8uU3ltYm9sUmVmImQKEUltcGxlbWVudHNPcHRpb25zEiQKCWludGVyZmFjZRgBIAEoCzIRLmNhbWluby5TeW1ib2xSZWYSKQoMdHlwZV9iaW5kaW5nGAIgAygLMhMuY2FtaW5vLlR5cGVCaW5kaW5nIooBCgtFZGdlT3B0aW9ucxIdCgJpZBgBIAEoCzIRLmNhbWluby5TeW1ib2xSZWYSIQoGdGFyZ2V0GAIgASgLMhEuY2FtaW5vLlN5bWJvbFJlZhIoCgtjYXJkaW5hbGl0eRgDIAEoDjITLmNhbWluby5DYXJkaW5hbGl0eRIPCgdpbnZlcnNlGAQgASgJIkQKDU1ldGhvZE9wdGlvbnMSDAoEbmFtZRgBIAEoCRIlCghmdW5jdGlvbhgCIAEoCzITLnF1aXhvcy5GdW5jdGlvblJlZiJjChBNaWdyYXRpb25PcHRpb25zEhQKDGZyb21fdmVyc2lvbhgBIAEoDRISCgp0b192ZXJzaW9uGAIgASgNEiUKCGZ1bmN0aW9uGAMgASgLMhMucXVpeG9zLkZ1bmN0aW9uUmVmOkkKEHNjaGVtYV9uYW1lc3BhY2USHC5nb29nbGUucHJvdG9idWYuRmlsZU9wdGlvbnMYuI4DIAEoCVIPc2NoZW1hTmFtZXNwYWNlOkUKDnNjaGVtYV92ZXJzaW9uEhwuZ29vZ2xlLnByb3RvYnVmLkZpbGVPcHRpb25zGLmOAyABKAlSDXNjaGVtYVZlcnNpb246TQoFY2xhc3MSHy5nb29nbGUucHJvdG9idWYuTWVzc2FnZU9wdGlvbnMYwo4DIAEoCzIULmNhbWluby5DbGFzc09wdGlvbnNSBWNsYXNzOlAKBm1ldGhvZBIfLmdvb2dsZS5wcm90b2J1Zi5NZXNzYWdlT3B0aW9ucxjDjgMgAygLMhUuY2FtaW5vLk1ldGhvZE9wdGlvbnNSBm1ldGhvZDpZCgltaWdyYXRpb24SHy5nb29nbGUucHJvdG9idWYuTWVzc2FnZU9wdGlvbnMYxI4DIAMoCzIYLmNhbWluby5NaWdyYXRpb25PcHRpb25zUgltaWdyYXRpb246WQoJaW50ZXJmYWNlEh8uZ29vZ2xlLnByb3RvYnVmLk1lc3NhZ2VPcHRpb25zGMWOAyABKAsyGC5jYW1pbm8uSW50ZXJmYWNlT3B0aW9uc1IJaW50ZXJmYWNlOlwKCmltcGxlbWVudHMSHy5nb29nbGUucHJvdG9idWYuTWVzc2FnZU9wdGlvbnMYxo4DIAMoCzIZLmNhbWluby5JbXBsZW1lbnRzT3B0aW9uc1IKaW1wbGVtZW50czpVCghjb25mbGljdBIdLmdvb2dsZS5wcm90b2J1Zi5GaWVsZE9wdGlvbnMYzI4DIAEoDjIYLmNhbWluby5Db25mbGljdFN0cmF0ZWd5Ughjb25mbGljdDpICgRlZGdlEh0uZ29vZ2xlLnByb3RvYnVmLkZpZWxkT3B0aW9ucxjNjgMgASgLMhMuY2FtaW5vLkVkZ2VPcHRpb25zUgRlZGdlOloKDWZpZWxkX3N0b3JhZ2USHS5nb29nbGUucHJvdG9idWYuRmllbGRPcHRpb25zGM6OAyABKAsyFC5jYW1pbm8uRmllbGRTdG9yYWdlUgxmaWVsZFN0b3JhZ2U6TgoJZmllbGRfb3BzEh0uZ29vZ2xlLnByb3RvYnVmLkZpZWxkT3B0aW9ucxjPjgMgASgLMhAuY2FtaW5vLkZpZWxkT3BzUghmaWVsZE9wczpoCg9pbnRlcmZhY2VfZmllbGQSHS5nb29nbGUucHJvdG9idWYuRmllbGRPcHRpb25zGNCOAyABKAsyHi5jYW1pbm8uSW50ZXJmYWNlRmllbGRDb250cmFjdFIOaW50ZXJmYWNlRmllbGQ6SQoEaW1wbBIeLmdvb2dsZS5wcm90b2J1Zi5NZXRob2RPcHRpb25zGNaOAyABKAsyEy5xdWl4b3MuRnVuY3Rpb25SZWZSBGltcGxiBnByb3RvMw", [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[];
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -84,6 +89,23 @@ export type ImplementsOptions = Message<"camino.ImplementsOptions"> & {
|
|||||||
export const ImplementsOptionsSchema: GenMessage<ImplementsOptions> = /*@__PURE__*/
|
export const ImplementsOptionsSchema: GenMessage<ImplementsOptions> = /*@__PURE__*/
|
||||||
messageDesc(file_camino_options, 2);
|
messageDesc(file_camino_options, 2);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from message camino.ConstructorOptions
|
||||||
|
*/
|
||||||
|
export type ConstructorOptions = Message<"camino.ConstructorOptions"> & {
|
||||||
|
/**
|
||||||
|
* @generated from field: quixos.FunctionRef function = 1;
|
||||||
|
*/
|
||||||
|
function?: FunctionRef | undefined;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Describes the message camino.ConstructorOptions.
|
||||||
|
* Use `create(ConstructorOptionsSchema)` to create a new message.
|
||||||
|
*/
|
||||||
|
export const ConstructorOptionsSchema: GenMessage<ConstructorOptions> = /*@__PURE__*/
|
||||||
|
messageDesc(file_camino_options, 3);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message camino.EdgeOptions
|
* @generated from message camino.EdgeOptions
|
||||||
*/
|
*/
|
||||||
@@ -94,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;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -114,7 +167,71 @@ export type EdgeOptions = Message<"camino.EdgeOptions"> & {
|
|||||||
* Use `create(EdgeOptionsSchema)` to create a new message.
|
* Use `create(EdgeOptionsSchema)` to create a new message.
|
||||||
*/
|
*/
|
||||||
export const EdgeOptionsSchema: GenMessage<EdgeOptions> = /*@__PURE__*/
|
export const EdgeOptionsSchema: GenMessage<EdgeOptions> = /*@__PURE__*/
|
||||||
messageDesc(file_camino_options, 3);
|
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
|
||||||
@@ -136,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, 4);
|
messageDesc(file_camino_options, 7);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message camino.MigrationOptions
|
* @generated from message camino.MigrationOptions
|
||||||
@@ -163,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, 5);
|
messageDesc(file_camino_options, 8);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from extension: string schema_namespace = 51000;
|
* @generated from extension: string schema_namespace = 51000;
|
||||||
@@ -207,39 +324,51 @@ export const interface$: GenExtension<MessageOptions, InterfaceOptions> = /*@__P
|
|||||||
export const implements$: GenExtension<MessageOptions, ImplementsOptions[]> = /*@__PURE__*/
|
export const implements$: GenExtension<MessageOptions, ImplementsOptions[]> = /*@__PURE__*/
|
||||||
extDesc(file_camino_options, 6);
|
extDesc(file_camino_options, 6);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from extension: camino.ConstructorOptions constructor = 51015;
|
||||||
|
*/
|
||||||
|
export const constructor: GenExtension<MessageOptions, ConstructorOptions> = /*@__PURE__*/
|
||||||
|
extDesc(file_camino_options, 7);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from extension: camino.ConflictStrategy conflict = 51020;
|
* @generated from extension: camino.ConflictStrategy conflict = 51020;
|
||||||
*/
|
*/
|
||||||
export const conflict: GenExtension<FieldOptions, ConflictStrategy> = /*@__PURE__*/
|
export const conflict: GenExtension<FieldOptions, ConflictStrategy> = /*@__PURE__*/
|
||||||
extDesc(file_camino_options, 7);
|
extDesc(file_camino_options, 8);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from extension: camino.EdgeOptions edge = 51021;
|
* @generated from extension: camino.EdgeOptions edge = 51021;
|
||||||
*/
|
*/
|
||||||
export const edge: GenExtension<FieldOptions, EdgeOptions> = /*@__PURE__*/
|
export const edge: GenExtension<FieldOptions, EdgeOptions> = /*@__PURE__*/
|
||||||
extDesc(file_camino_options, 8);
|
extDesc(file_camino_options, 9);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from extension: camino.FieldStorage field_storage = 51022;
|
* @generated from extension: camino.FieldStorage field_storage = 51022;
|
||||||
*/
|
*/
|
||||||
export const field_storage: GenExtension<FieldOptions, FieldStorage> = /*@__PURE__*/
|
export const field_storage: GenExtension<FieldOptions, FieldStorage> = /*@__PURE__*/
|
||||||
extDesc(file_camino_options, 9);
|
extDesc(file_camino_options, 10);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from extension: camino.FieldOps field_ops = 51023;
|
* @generated from extension: camino.FieldOps field_ops = 51023;
|
||||||
*/
|
*/
|
||||||
export const field_ops: GenExtension<FieldOptions, FieldOps> = /*@__PURE__*/
|
export const field_ops: GenExtension<FieldOptions, FieldOps> = /*@__PURE__*/
|
||||||
extDesc(file_camino_options, 10);
|
extDesc(file_camino_options, 11);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from extension: camino.InterfaceFieldContract interface_field = 51024;
|
* @generated from extension: camino.InterfaceFieldContract interface_field = 51024;
|
||||||
*/
|
*/
|
||||||
export const interface_field: GenExtension<FieldOptions, InterfaceFieldContract> = /*@__PURE__*/
|
export const interface_field: GenExtension<FieldOptions, InterfaceFieldContract> = /*@__PURE__*/
|
||||||
extDesc(file_camino_options, 11);
|
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, 12);
|
extDesc(file_camino_options, 14);
|
||||||
|
|
||||||
|
|||||||
+154
-6
File diff suppressed because one or more lines are too long
@@ -14,7 +14,7 @@ import type { Message } from "@bufbuild/protobuf";
|
|||||||
* Describes the file quixos/package.proto.
|
* Describes the file quixos/package.proto.
|
||||||
*/
|
*/
|
||||||
export const file_quixos_package: GenFile = /*@__PURE__*/
|
export const file_quixos_package: GenFile = /*@__PURE__*/
|
||||||
fileDesc("ChRxdWl4b3MvcGFja2FnZS5wcm90bxIGcXVpeG9zIm4KClBhY2thZ2VSZWYSGQoRcGFja2FnZV9uYW1lc3BhY2UYASABKAkSFAoMcGFja2FnZV9uYW1lGAIgASgJEhoKEmRlc2NyaXB0b3JfdmVyc2lvbhgDIAEoDRITCgt2ZXJzaW9uX3JlZhgEIAEoCSKgBAoRUGFja2FnZURlc2NyaXB0b3ISGQoRcGFja2FnZV9uYW1lc3BhY2UYASABKAkSFAoMcGFja2FnZV9uYW1lGAIgASgJEhoKEmRlc2NyaXB0b3JfdmVyc2lvbhgDIAEoDRIkChxpbnRlcmZhY2VfY29tcGF0aWJsZV9iYWNrX3RvGAQgASgNEiEKGXJ1bm5lcl9jb21wYXRpYmxlX2JhY2tfdG8YBSABKA0SEwoLc291cmNlX3JlcG8YBiABKAkSEgoKc291cmNlX3JlZhgHIAEoCRIbChNyZXNvbHZlZF9zb3VyY2VfcmVmGAggASgJEhoKEnNlcnZlcl9pbnN0YWxsYWJsZRgJIAEoCRIgChhydW50aW1lX3Byb3RvY29sX3ZlcnNpb24YCiABKAkSKgoNY2xhc3NfZXhwb3J0cxgLIAMoCzITLnF1aXhvcy5DbGFzc0V4cG9ydBIwChBmdW5jdGlvbl9leHBvcnRzGAwgAygLMhYucXVpeG9zLkZ1bmN0aW9uRXhwb3J0EjIKEWNvbXBvbmVudF9leHBvcnRzGA0gAygLMhcucXVpeG9zLkNvbXBvbmVudEV4cG9ydBIuCg9zaWRlY2FyX2V4cG9ydHMYDiADKAsyFS5xdWl4b3MuU2lkZWNhckV4cG9ydBIvCgxkZXBlbmRlbmNpZXMYDyADKAsyGS5xdWl4b3MuUGFja2FnZURlcGVuZGVuY3kiRwoLQ2xhc3NFeHBvcnQSIwoIY2xhc3NfaWQYASABKAsyES5jYW1pbm8uU3ltYm9sUmVmEhMKC3NvdXJjZV9maWxlGAIgASgJItoBCg5GdW5jdGlvbkV4cG9ydBIlCghmdW5jdGlvbhgBIAEoCzITLnF1aXhvcy5GdW5jdGlvblJlZhISCgppbnB1dF90eXBlGAIgASgJEhMKC291dHB1dF90eXBlGAMgASgJEhkKEWludGVyZmFjZV92ZXJzaW9uGAQgASgNEiQKHGludGVyZmFjZV9jb21wYXRpYmxlX2JhY2tfdG8YBSABKA0SNwoPY2FwYWJpbGl0eV9raW5kGAYgASgOMh4ucXVpeG9zLkZ1bmN0aW9uQ2FwYWJpbGl0eUtpbmQiYwoPQ29tcG9uZW50RXhwb3J0Eg4KBnN5bWJvbBgBIAEoCRISCgpwcm9wc190eXBlGAIgASgJEiwKEXN1cHBvcnRlZF9jbGFzc2VzGAMgAygLMhEuY2FtaW5vLlN5bWJvbFJlZiI5Cg1TaWRlY2FyRXhwb3J0Eg4KBnN5bWJvbBgBIAEoCRIYChBzaWRlX2VmZmVjdF9tb2RlGAIgASgJIpUBChFQYWNrYWdlRGVwZW5kZW5jeRIjCgdwYWNrYWdlGAEgASgLMhIucXVpeG9zLlBhY2thZ2VSZWYSJAocaW50ZXJmYWNlX2NvbXBhdGlibGVfYmFja190bxgCIAEoDRIZChFyZWZhY3Rvcl9yZXF1aXJlZBgDIAEoCBIaChJjb21wYXRpYmlsaXR5X25vdGUYBCABKAkqcQoWRnVuY3Rpb25DYXBhYmlsaXR5S2luZBIoCiRGVU5DVElPTl9DQVBBQklMSVRZX0tJTkRfVU5TUEVDSUZJRUQQABIKCgZNRVRIT0QQARISCg5GSUVMRF9SRVNPTFZFUhACEg0KCU1JR1JBVElPThADYgZwcm90bzM", [file_camino_schema, file_quixos_refs]);
|
fileDesc("ChRxdWl4b3MvcGFja2FnZS5wcm90bxIGcXVpeG9zIm4KClBhY2thZ2VSZWYSGQoRcGFja2FnZV9uYW1lc3BhY2UYASABKAkSFAoMcGFja2FnZV9uYW1lGAIgASgJEhoKEmRlc2NyaXB0b3JfdmVyc2lvbhgDIAEoDRITCgt2ZXJzaW9uX3JlZhgEIAEoCSKgBAoRUGFja2FnZURlc2NyaXB0b3ISGQoRcGFja2FnZV9uYW1lc3BhY2UYASABKAkSFAoMcGFja2FnZV9uYW1lGAIgASgJEhoKEmRlc2NyaXB0b3JfdmVyc2lvbhgDIAEoDRIkChxpbnRlcmZhY2VfY29tcGF0aWJsZV9iYWNrX3RvGAQgASgNEiEKGXJ1bm5lcl9jb21wYXRpYmxlX2JhY2tfdG8YBSABKA0SEwoLc291cmNlX3JlcG8YBiABKAkSEgoKc291cmNlX3JlZhgHIAEoCRIbChNyZXNvbHZlZF9zb3VyY2VfcmVmGAggASgJEhoKEnNlcnZlcl9pbnN0YWxsYWJsZRgJIAEoCRIgChhydW50aW1lX3Byb3RvY29sX3ZlcnNpb24YCiABKAkSKgoNY2xhc3NfZXhwb3J0cxgLIAMoCzITLnF1aXhvcy5DbGFzc0V4cG9ydBIwChBmdW5jdGlvbl9leHBvcnRzGAwgAygLMhYucXVpeG9zLkZ1bmN0aW9uRXhwb3J0EjIKEWNvbXBvbmVudF9leHBvcnRzGA0gAygLMhcucXVpeG9zLkNvbXBvbmVudEV4cG9ydBIuCg9zaWRlY2FyX2V4cG9ydHMYDiADKAsyFS5xdWl4b3MuU2lkZWNhckV4cG9ydBIvCgxkZXBlbmRlbmNpZXMYDyADKAsyGS5xdWl4b3MuUGFja2FnZURlcGVuZGVuY3kiRwoLQ2xhc3NFeHBvcnQSIwoIY2xhc3NfaWQYASABKAsyES5jYW1pbm8uU3ltYm9sUmVmEhMKC3NvdXJjZV9maWxlGAIgASgJItoBCg5GdW5jdGlvbkV4cG9ydBIlCghmdW5jdGlvbhgBIAEoCzITLnF1aXhvcy5GdW5jdGlvblJlZhISCgppbnB1dF90eXBlGAIgASgJEhMKC291dHB1dF90eXBlGAMgASgJEhkKEWludGVyZmFjZV92ZXJzaW9uGAQgASgNEiQKHGludGVyZmFjZV9jb21wYXRpYmxlX2JhY2tfdG8YBSABKA0SNwoPY2FwYWJpbGl0eV9raW5kGAYgASgOMh4ucXVpeG9zLkZ1bmN0aW9uQ2FwYWJpbGl0eUtpbmQiYwoPQ29tcG9uZW50RXhwb3J0Eg4KBnN5bWJvbBgBIAEoCRISCgpwcm9wc190eXBlGAIgASgJEiwKEXN1cHBvcnRlZF9jbGFzc2VzGAMgAygLMhEuY2FtaW5vLlN5bWJvbFJlZiI5Cg1TaWRlY2FyRXhwb3J0Eg4KBnN5bWJvbBgBIAEoCRIYChBzaWRlX2VmZmVjdF9tb2RlGAIgASgJIpUBChFQYWNrYWdlRGVwZW5kZW5jeRIjCgdwYWNrYWdlGAEgASgLMhIucXVpeG9zLlBhY2thZ2VSZWYSJAocaW50ZXJmYWNlX2NvbXBhdGlibGVfYmFja190bxgCIAEoDRIZChFyZWZhY3Rvcl9yZXF1aXJlZBgDIAEoCBIaChJjb21wYXRpYmlsaXR5X25vdGUYBCABKAkqggEKFkZ1bmN0aW9uQ2FwYWJpbGl0eUtpbmQSKAokRlVOQ1RJT05fQ0FQQUJJTElUWV9LSU5EX1VOU1BFQ0lGSUVEEAASCgoGTUVUSE9EEAESEgoORklFTERfUkVTT0xWRVIQAhINCglNSUdSQVRJT04QAxIPCgtDT05TVFJVQ1RPUhAEYgZwcm90bzM", [file_camino_schema, file_quixos_refs]);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message quixos.PackageRef
|
* @generated from message quixos.PackageRef
|
||||||
@@ -303,6 +303,11 @@ export enum FunctionCapabilityKind {
|
|||||||
* @generated from enum value: MIGRATION = 3;
|
* @generated from enum value: MIGRATION = 3;
|
||||||
*/
|
*/
|
||||||
MIGRATION = 3,
|
MIGRATION = 3,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from enum value: CONSTRUCTOR = 4;
|
||||||
|
*/
|
||||||
|
CONSTRUCTOR = 4,
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user