Compare commits
20 Commits
a287ab3133
...
exported
| Author | SHA1 | Date | |
|---|---|---|---|
| e6b34535af | |||
| ffac727009 | |||
| a9134843bc | |||
| cd35e03b2d | |||
| ca0381d280 | |||
| ea153c3cd7 | |||
| 5dd3948784 | |||
| 5587511713 | |||
| 2ad29f8ddb | |||
| 7dba68cff5 | |||
| ff07b0d793 | |||
| 464442a55c | |||
| 5cd3db78ad | |||
| 77086efb93 | |||
| c5141a24c4 | |||
| 68c4c30d8f | |||
| dd722bf0d2 | |||
| cab21888e6 | |||
| 16f4b3982c | |||
| 79d551131e |
@@ -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": "e500ba880d3fb9481645d54efcf79a6389f200db",
|
"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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,6 +15,9 @@ extend google.protobuf.MessageOptions {
|
|||||||
ClassOptions class = 51010;
|
ClassOptions class = 51010;
|
||||||
repeated MethodOptions method = 51011;
|
repeated MethodOptions method = 51011;
|
||||||
repeated MigrationOptions migration = 51012;
|
repeated MigrationOptions migration = 51012;
|
||||||
|
InterfaceOptions interface = 51013;
|
||||||
|
repeated ImplementsOptions implements = 51014;
|
||||||
|
ConstructorOptions constructor = 51015;
|
||||||
}
|
}
|
||||||
|
|
||||||
extend google.protobuf.FieldOptions {
|
extend google.protobuf.FieldOptions {
|
||||||
@@ -22,6 +25,8 @@ extend google.protobuf.FieldOptions {
|
|||||||
EdgeOptions edge = 51021;
|
EdgeOptions edge = 51021;
|
||||||
FieldStorage field_storage = 51022;
|
FieldStorage field_storage = 51022;
|
||||||
FieldOps field_ops = 51023;
|
FieldOps field_ops = 51023;
|
||||||
|
InterfaceFieldContract interface_field = 51024;
|
||||||
|
bool display_label = 51025;
|
||||||
}
|
}
|
||||||
|
|
||||||
extend google.protobuf.MethodOptions {
|
extend google.protobuf.MethodOptions {
|
||||||
@@ -33,11 +38,48 @@ message ClassOptions {
|
|||||||
SymbolRef id = 2;
|
SymbolRef id = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message InterfaceOptions {
|
||||||
|
uint32 version = 1;
|
||||||
|
SymbolRef id = 2;
|
||||||
|
repeated string type_parameter = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
message ImplementsOptions {
|
||||||
|
SymbolRef interface = 1;
|
||||||
|
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 {
|
||||||
@@ -79,6 +81,8 @@ message ClassSchema {
|
|||||||
string source_file = 7;
|
string source_file = 7;
|
||||||
string proto_message = 8;
|
string proto_message = 8;
|
||||||
repeated OperationServiceSchema operation_services = 9;
|
repeated OperationServiceSchema operation_services = 9;
|
||||||
|
repeated InterfaceImplementationSchema implements = 10;
|
||||||
|
ConstructorSpec constructor = 11;
|
||||||
}
|
}
|
||||||
|
|
||||||
message FieldSchema {
|
message FieldSchema {
|
||||||
@@ -90,6 +94,8 @@ message FieldSchema {
|
|||||||
bool optional = 6;
|
bool optional = 6;
|
||||||
FieldStorage storage = 7;
|
FieldStorage storage = 7;
|
||||||
FieldOps ops = 8;
|
FieldOps ops = 8;
|
||||||
|
InterfaceFieldContract interface_contract = 9;
|
||||||
|
bool is_display_label = 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
message FieldStorage {
|
message FieldStorage {
|
||||||
@@ -103,6 +109,36 @@ message TypeRef {
|
|||||||
SymbolRef symbol = 2;
|
SymbolRef symbol = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message TypeBinding {
|
||||||
|
string name = 1;
|
||||||
|
TypeRef type = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message InterfaceFieldContract {
|
||||||
|
bool required = 1;
|
||||||
|
bool readable = 2;
|
||||||
|
bool writable = 3;
|
||||||
|
bool watchable = 4;
|
||||||
|
string type_param = 5;
|
||||||
|
TypeRef type = 6;
|
||||||
|
string ref_target_type_param = 7;
|
||||||
|
Cardinality edge_cardinality = 8;
|
||||||
|
}
|
||||||
|
|
||||||
|
message InterfaceImplementationSchema {
|
||||||
|
SymbolRef interface = 1;
|
||||||
|
repeated TypeBinding type_bindings = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message InterfaceSchema {
|
||||||
|
SymbolRef id = 1;
|
||||||
|
uint32 version = 2;
|
||||||
|
repeated FieldSchema fields = 3;
|
||||||
|
string source_file = 4;
|
||||||
|
string proto_message = 5;
|
||||||
|
repeated string type_parameters = 6;
|
||||||
|
}
|
||||||
|
|
||||||
enum FieldImplementation {
|
enum FieldImplementation {
|
||||||
FIELD_IMPLEMENTATION_UNSPECIFIED = 0;
|
FIELD_IMPLEMENTATION_UNSPECIFIED = 0;
|
||||||
SERVICE = 1;
|
SERVICE = 1;
|
||||||
@@ -115,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 {
|
||||||
@@ -134,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
+201
-10
@@ -6,7 +6,7 @@ import type { GenExtension, GenFile, GenMessage } from "@bufbuild/protobuf/codeg
|
|||||||
import { extDesc, fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
import { extDesc, fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
||||||
import type { FieldOptions, FileOptions, MessageOptions, MethodOptions as MethodOptions$1 } from "@bufbuild/protobuf/wkt";
|
import type { FieldOptions, FileOptions, MessageOptions, MethodOptions as MethodOptions$1 } from "@bufbuild/protobuf/wkt";
|
||||||
import { file_google_protobuf_descriptor } from "@bufbuild/protobuf/wkt";
|
import { file_google_protobuf_descriptor } from "@bufbuild/protobuf/wkt";
|
||||||
import type { Cardinality, ConflictStrategy, FieldOps, FieldStorage, SymbolRef } from "./schema_pb.js";
|
import type { Cardinality, ConflictStrategy, FieldOps, FieldStorage, InterfaceFieldContract, SymbolRef, TypeBinding } from "./schema_pb.js";
|
||||||
import { file_camino_schema } from "./schema_pb.js";
|
import { file_camino_schema } from "./schema_pb.js";
|
||||||
import type { FunctionRef } from "../quixos/refs_pb.js";
|
import type { FunctionRef } from "../quixos/refs_pb.js";
|
||||||
import { file_quixos_refs } from "../quixos/refs_pb.js";
|
import { file_quixos_refs } from "../quixos/refs_pb.js";
|
||||||
@@ -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("ChRjYW1pbm8vb3B0aW9ucy5wcm90bxIGY2FtaW5vIj4KDENsYXNzT3B0aW9ucxIPCgd2ZXJzaW9uGAEgASgNEh0KAmlkGAIgASgLMhEuY2FtaW5vLlN5bWJvbFJlZiKKAQoLRWRnZU9wdGlvbnMSHQoCaWQYASABKAsyES5jYW1pbm8uU3ltYm9sUmVmEiEKBnRhcmdldBgCIAEoCzIRLmNhbWluby5TeW1ib2xSZWYSKAoLY2FyZGluYWxpdHkYAyABKA4yEy5jYW1pbm8uQ2FyZGluYWxpdHkSDwoHaW52ZXJzZRgEIAEoCSJECg1NZXRob2RPcHRpb25zEgwKBG5hbWUYASABKAkSJQoIZnVuY3Rpb24YAiABKAsyEy5xdWl4b3MuRnVuY3Rpb25SZWYiYwoQTWlncmF0aW9uT3B0aW9ucxIUCgxmcm9tX3ZlcnNpb24YASABKA0SEgoKdG9fdmVyc2lvbhgCIAEoDRIlCghmdW5jdGlvbhgDIAEoCzITLnF1aXhvcy5GdW5jdGlvblJlZjpJChBzY2hlbWFfbmFtZXNwYWNlEhwuZ29vZ2xlLnByb3RvYnVmLkZpbGVPcHRpb25zGLiOAyABKAlSD3NjaGVtYU5hbWVzcGFjZTpFCg5zY2hlbWFfdmVyc2lvbhIcLmdvb2dsZS5wcm90b2J1Zi5GaWxlT3B0aW9ucxi5jgMgASgJUg1zY2hlbWFWZXJzaW9uOk0KBWNsYXNzEh8uZ29vZ2xlLnByb3RvYnVmLk1lc3NhZ2VPcHRpb25zGMKOAyABKAsyFC5jYW1pbm8uQ2xhc3NPcHRpb25zUgVjbGFzczpQCgZtZXRob2QSHy5nb29nbGUucHJvdG9idWYuTWVzc2FnZU9wdGlvbnMYw44DIAMoCzIVLmNhbWluby5NZXRob2RPcHRpb25zUgZtZXRob2Q6WQoJbWlncmF0aW9uEh8uZ29vZ2xlLnByb3RvYnVmLk1lc3NhZ2VPcHRpb25zGMSOAyADKAsyGC5jYW1pbm8uTWlncmF0aW9uT3B0aW9uc1IJbWlncmF0aW9uOlUKCGNvbmZsaWN0Eh0uZ29vZ2xlLnByb3RvYnVmLkZpZWxkT3B0aW9ucxjMjgMgASgOMhguY2FtaW5vLkNvbmZsaWN0U3RyYXRlZ3lSCGNvbmZsaWN0OkgKBGVkZ2USHS5nb29nbGUucHJvdG9idWYuRmllbGRPcHRpb25zGM2OAyABKAsyEy5jYW1pbm8uRWRnZU9wdGlvbnNSBGVkZ2U6WgoNZmllbGRfc3RvcmFnZRIdLmdvb2dsZS5wcm90b2J1Zi5GaWVsZE9wdGlvbnMYzo4DIAEoCzIULmNhbWluby5GaWVsZFN0b3JhZ2VSDGZpZWxkU3RvcmFnZTpOCglmaWVsZF9vcHMSHS5nb29nbGUucHJvdG9idWYuRmllbGRPcHRpb25zGM+OAyABKAsyEC5jYW1pbm8uRmllbGRPcHNSCGZpZWxkT3BzOkkKBGltcGwSHi5nb29nbGUucHJvdG9idWYuTWV0aG9kT3B0aW9ucxjWjgMgASgLMhMucXVpeG9zLkZ1bmN0aW9uUmVmUgRpbXBsYgZwcm90bzM", [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
|
||||||
@@ -40,6 +40,72 @@ export type ClassOptions = Message<"camino.ClassOptions"> & {
|
|||||||
export const ClassOptionsSchema: GenMessage<ClassOptions> = /*@__PURE__*/
|
export const ClassOptionsSchema: GenMessage<ClassOptions> = /*@__PURE__*/
|
||||||
messageDesc(file_camino_options, 0);
|
messageDesc(file_camino_options, 0);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from message camino.InterfaceOptions
|
||||||
|
*/
|
||||||
|
export type InterfaceOptions = Message<"camino.InterfaceOptions"> & {
|
||||||
|
/**
|
||||||
|
* @generated from field: uint32 version = 1;
|
||||||
|
*/
|
||||||
|
version: number;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: camino.SymbolRef id = 2;
|
||||||
|
*/
|
||||||
|
id?: SymbolRef | undefined;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: repeated string type_parameter = 3;
|
||||||
|
*/
|
||||||
|
typeParameter: string[];
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Describes the message camino.InterfaceOptions.
|
||||||
|
* Use `create(InterfaceOptionsSchema)` to create a new message.
|
||||||
|
*/
|
||||||
|
export const InterfaceOptionsSchema: GenMessage<InterfaceOptions> = /*@__PURE__*/
|
||||||
|
messageDesc(file_camino_options, 1);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from message camino.ImplementsOptions
|
||||||
|
*/
|
||||||
|
export type ImplementsOptions = Message<"camino.ImplementsOptions"> & {
|
||||||
|
/**
|
||||||
|
* @generated from field: camino.SymbolRef interface = 1;
|
||||||
|
*/
|
||||||
|
interface?: SymbolRef | undefined;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: repeated camino.TypeBinding type_binding = 2;
|
||||||
|
*/
|
||||||
|
typeBinding: TypeBinding[];
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Describes the message camino.ImplementsOptions.
|
||||||
|
* Use `create(ImplementsOptionsSchema)` to create a new message.
|
||||||
|
*/
|
||||||
|
export const ImplementsOptionsSchema: GenMessage<ImplementsOptions> = /*@__PURE__*/
|
||||||
|
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
|
||||||
*/
|
*/
|
||||||
@@ -50,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;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -70,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, 1);
|
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
|
||||||
@@ -92,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, 2);
|
messageDesc(file_camino_options, 7);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message camino.MigrationOptions
|
* @generated from message camino.MigrationOptions
|
||||||
@@ -119,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, 3);
|
messageDesc(file_camino_options, 8);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from extension: string schema_namespace = 51000;
|
* @generated from extension: string schema_namespace = 51000;
|
||||||
@@ -151,33 +312,63 @@ export const method: GenExtension<MessageOptions, MethodOptions[]> = /*@__PURE__
|
|||||||
export const migration: GenExtension<MessageOptions, MigrationOptions[]> = /*@__PURE__*/
|
export const migration: GenExtension<MessageOptions, MigrationOptions[]> = /*@__PURE__*/
|
||||||
extDesc(file_camino_options, 4);
|
extDesc(file_camino_options, 4);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from extension: camino.InterfaceOptions interface = 51013;
|
||||||
|
*/
|
||||||
|
export const interface$: GenExtension<MessageOptions, InterfaceOptions> = /*@__PURE__*/
|
||||||
|
extDesc(file_camino_options, 5);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from extension: repeated camino.ImplementsOptions implements = 51014;
|
||||||
|
*/
|
||||||
|
export const implements$: GenExtension<MessageOptions, ImplementsOptions[]> = /*@__PURE__*/
|
||||||
|
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, 5);
|
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, 6);
|
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, 7);
|
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, 8);
|
extDesc(file_camino_options, 11);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from extension: camino.InterfaceFieldContract interface_field = 51024;
|
||||||
|
*/
|
||||||
|
export const interface_field: GenExtension<FieldOptions, InterfaceFieldContract> = /*@__PURE__*/
|
||||||
|
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, 9);
|
extDesc(file_camino_options, 14);
|
||||||
|
|
||||||
|
|||||||
+289
-8
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