Compare commits
22 Commits
a8dc34db0e
...
exported
| Author | SHA1 | Date | |
|---|---|---|---|
| e6b34535af | |||
| ffac727009 | |||
| a9134843bc | |||
| cd35e03b2d | |||
| ca0381d280 | |||
| ea153c3cd7 | |||
| 5dd3948784 | |||
| 5587511713 | |||
| 2ad29f8ddb | |||
| 7dba68cff5 | |||
| ff07b0d793 | |||
| 464442a55c | |||
| 5cd3db78ad | |||
| 77086efb93 | |||
| c5141a24c4 | |||
| 68c4c30d8f | |||
| dd722bf0d2 | |||
| cab21888e6 | |||
| 16f4b3982c | |||
| 79d551131e | |||
| a287ab3133 | |||
| 7c91982f8f |
@@ -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": "eb407e5a3bbd4ae2f810a0cee0d45b5c7e8d7db1",
|
"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;
|
||||||
|
|||||||
@@ -5,9 +5,11 @@ package quixos.orch;
|
|||||||
import "camino/api.proto";
|
import "camino/api.proto";
|
||||||
import "quixos/package.proto";
|
import "quixos/package.proto";
|
||||||
import "quixos/refs.proto";
|
import "quixos/refs.proto";
|
||||||
|
import "quixos/runtime.proto";
|
||||||
|
|
||||||
service OrchestratorRuntime {
|
service OrchestratorRuntime {
|
||||||
rpc InvokeFunction(InvokeFunctionRequest) returns (InvokeFunctionResponse);
|
rpc InvokeFunction(InvokeFunctionRequest) returns (InvokeFunctionResponse);
|
||||||
|
rpc WatchFunction(WatchFunctionRequest) returns (stream WatchFunctionEvent);
|
||||||
rpc ListPackageDescriptors(ListPackageDescriptorsRequest) returns (ListPackageDescriptorsResponse);
|
rpc ListPackageDescriptors(ListPackageDescriptorsRequest) returns (ListPackageDescriptorsResponse);
|
||||||
rpc ListPackageRuntimes(ListPackageRuntimesRequest) returns (ListPackageRuntimesResponse);
|
rpc ListPackageRuntimes(ListPackageRuntimesRequest) returns (ListPackageRuntimesResponse);
|
||||||
rpc ListActivations(ListActivationsRequest) returns (ListActivationsResponse);
|
rpc ListActivations(ListActivationsRequest) returns (ListActivationsResponse);
|
||||||
@@ -28,6 +30,22 @@ message InvokeFunctionResponse {
|
|||||||
string error = 5;
|
string error = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message WatchFunctionRequest {
|
||||||
|
quixos.FunctionRef function = 1;
|
||||||
|
string object_id = 2;
|
||||||
|
map<string, camino.Value> input = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
message WatchFunctionEvent {
|
||||||
|
string invocation_id = 1;
|
||||||
|
Activation activation = 2;
|
||||||
|
string watch_id = 3;
|
||||||
|
camino.Value value = 4;
|
||||||
|
repeated quixos.runtime.DerivedDependency dependencies = 5;
|
||||||
|
string error = 6;
|
||||||
|
bool initial = 7;
|
||||||
|
}
|
||||||
|
|
||||||
message ListActivationsRequest {}
|
message ListActivationsRequest {}
|
||||||
|
|
||||||
message ListPackageDescriptorsRequest {}
|
message ListPackageDescriptorsRequest {}
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import "quixos/refs.proto";
|
|||||||
service PackageRuntime {
|
service PackageRuntime {
|
||||||
rpc Handshake(HandshakeRequest) returns (HandshakeResponse);
|
rpc Handshake(HandshakeRequest) returns (HandshakeResponse);
|
||||||
rpc Invoke(InvokeRequest) returns (InvokeResponse);
|
rpc Invoke(InvokeRequest) returns (InvokeResponse);
|
||||||
|
rpc Watch(WatchRequest) returns (stream WatchEvent);
|
||||||
}
|
}
|
||||||
|
|
||||||
message HandshakeRequest {
|
message HandshakeRequest {
|
||||||
@@ -33,3 +34,25 @@ message InvokeResponse {
|
|||||||
camino.Value result = 2;
|
camino.Value result = 2;
|
||||||
string error = 3;
|
string error = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message WatchRequest {
|
||||||
|
string invocation_id = 1;
|
||||||
|
quixos.FunctionRef function = 2;
|
||||||
|
string object_id = 3;
|
||||||
|
map<string, camino.Value> input = 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
message DerivedDependency {
|
||||||
|
string kind = 1;
|
||||||
|
string object_id = 2;
|
||||||
|
string field_name = 3;
|
||||||
|
string source_field = 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
message WatchEvent {
|
||||||
|
string watch_id = 1;
|
||||||
|
camino.Value value = 2;
|
||||||
|
repeated DerivedDependency dependencies = 3;
|
||||||
|
string error = 4;
|
||||||
|
bool initial = 5;
|
||||||
|
}
|
||||||
|
|||||||
+236
-25
File diff suppressed because one or more lines are too long
+202
-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,32 +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);
|
||||||
|
|
||||||
|
|||||||
+290
-8
File diff suppressed because one or more lines are too long
+96
-11
@@ -10,13 +10,15 @@ import type { PackageDescriptor } from "./package_pb.js";
|
|||||||
import { file_quixos_package } from "./package_pb.js";
|
import { file_quixos_package } from "./package_pb.js";
|
||||||
import type { FunctionRef } from "./refs_pb.js";
|
import type { FunctionRef } from "./refs_pb.js";
|
||||||
import { file_quixos_refs } from "./refs_pb.js";
|
import { file_quixos_refs } from "./refs_pb.js";
|
||||||
|
import type { DerivedDependency } from "./runtime_pb.js";
|
||||||
|
import { file_quixos_runtime } from "./runtime_pb.js";
|
||||||
import type { Message } from "@bufbuild/protobuf";
|
import type { Message } from "@bufbuild/protobuf";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Describes the file quixos/orch.proto.
|
* Describes the file quixos/orch.proto.
|
||||||
*/
|
*/
|
||||||
export const file_quixos_orch: GenFile = /*@__PURE__*/
|
export const file_quixos_orch: GenFile = /*@__PURE__*/
|
||||||
fileDesc("ChFxdWl4b3Mvb3JjaC5wcm90bxILcXVpeG9zLm9yY2gizAEKFUludm9rZUZ1bmN0aW9uUmVxdWVzdBIlCghmdW5jdGlvbhgBIAEoCzITLnF1aXhvcy5GdW5jdGlvblJlZhIRCglvYmplY3RfaWQYAiABKAkSPAoFaW5wdXQYAyADKAsyLS5xdWl4b3Mub3JjaC5JbnZva2VGdW5jdGlvblJlcXVlc3QuSW5wdXRFbnRyeRo7CgpJbnB1dEVudHJ5EgsKA2tleRgBIAEoCRIcCgV2YWx1ZRgCIAEoCzINLmNhbWluby5WYWx1ZToCOAEilgEKFkludm9rZUZ1bmN0aW9uUmVzcG9uc2USFQoNaW52b2NhdGlvbl9pZBgBIAEoCRIrCgphY3RpdmF0aW9uGAIgASgLMhcucXVpeG9zLm9yY2guQWN0aXZhdGlvbhIKCgJvaxgDIAEoCBIdCgZyZXN1bHQYBCABKAsyDS5jYW1pbm8uVmFsdWUSDQoFZXJyb3IYBSABKAkiGAoWTGlzdEFjdGl2YXRpb25zUmVxdWVzdCIfCh1MaXN0UGFja2FnZURlc2NyaXB0b3JzUmVxdWVzdCJQCh5MaXN0UGFja2FnZURlc2NyaXB0b3JzUmVzcG9uc2USLgoLZGVzY3JpcHRvcnMYASADKAsyGS5xdWl4b3MuUGFja2FnZURlc2NyaXB0b3IiHAoaTGlzdFBhY2thZ2VSdW50aW1lc1JlcXVlc3QiUgobTGlzdFBhY2thZ2VSdW50aW1lc1Jlc3BvbnNlEjMKCHJ1bnRpbWVzGAEgAygLMiEucXVpeG9zLm9yY2guUGFja2FnZVJ1bnRpbWVTdGF0dXMiRwoXTGlzdEFjdGl2YXRpb25zUmVzcG9uc2USLAoLYWN0aXZhdGlvbnMYASADKAsyFy5xdWl4b3Mub3JjaC5BY3RpdmF0aW9uIj8KFkNsb3NlQWN0aXZhdGlvblJlcXVlc3QSFQoNYWN0aXZhdGlvbl9pZBgBIAEoCRIOCgZyZWFzb24YAiABKAkiRgoXQ2xvc2VBY3RpdmF0aW9uUmVzcG9uc2USKwoKYWN0aXZhdGlvbhgBIAEoCzIXLnF1aXhvcy5vcmNoLkFjdGl2YXRpb24i6AEKCkFjdGl2YXRpb24SFQoNYWN0aXZhdGlvbl9pZBgBIAEoCRIlCghmdW5jdGlvbhgCIAEoCzITLnF1aXhvcy5GdW5jdGlvblJlZhIRCglvYmplY3RfaWQYAyABKAkSDQoFc3RhdGUYBCABKAkSDgoGZGVtYW5kGAUgASgNEhEKCW9wZW5lZF9hdBgGIAEoCRIUCgxsYXN0X3VzZWRfYXQYByABKAkSGAoQaWRsZV9kZWFkbGluZV9hdBgIIAEoCRIRCgljbG9zZWRfYXQYCSABKAkSFAoMY2xvc2VfcmVhc29uGAogASgJIuMCChRQYWNrYWdlUnVudGltZVN0YXR1cxITCgtydW50aW1lX2tleRgBIAEoCRIZChFwYWNrYWdlX25hbWVzcGFjZRgCIAEoCRIUCgxwYWNrYWdlX25hbWUYAyABKAkSGgoSZGVzY3JpcHRvcl92ZXJzaW9uGAQgASgNEhMKC3NvdXJjZV9yZXBvGAUgASgJEhoKEnNlcnZlcl9pbnN0YWxsYWJsZRgGIAEoCRITCgtzb3VyY2VfcGF0aBgHIAEoCRITCgtzZXJ2ZXJfcGF0aBgIIAEoCRILCgNwaWQYCSABKA0SDQoFc3RhdGUYCiABKAkSEgoKc3RhcnRlZF9hdBgLIAEoCRIZChFsYXN0X2hhbmRzaGFrZV9hdBgMIAEoCRIgChhydW50aW1lX3Byb3RvY29sX3ZlcnNpb24YDSABKAkSIQoZYWR2ZXJ0aXNlZF9mdW5jdGlvbl9jb3VudBgOIAEoDTKJBAoTT3JjaGVzdHJhdG9yUnVudGltZRJZCg5JbnZva2VGdW5jdGlvbhIiLnF1aXhvcy5vcmNoLkludm9rZUZ1bmN0aW9uUmVxdWVzdBojLnF1aXhvcy5vcmNoLkludm9rZUZ1bmN0aW9uUmVzcG9uc2UScQoWTGlzdFBhY2thZ2VEZXNjcmlwdG9ycxIqLnF1aXhvcy5vcmNoLkxpc3RQYWNrYWdlRGVzY3JpcHRvcnNSZXF1ZXN0GisucXVpeG9zLm9yY2guTGlzdFBhY2thZ2VEZXNjcmlwdG9yc1Jlc3BvbnNlEmgKE0xpc3RQYWNrYWdlUnVudGltZXMSJy5xdWl4b3Mub3JjaC5MaXN0UGFja2FnZVJ1bnRpbWVzUmVxdWVzdBooLnF1aXhvcy5vcmNoLkxpc3RQYWNrYWdlUnVudGltZXNSZXNwb25zZRJcCg9MaXN0QWN0aXZhdGlvbnMSIy5xdWl4b3Mub3JjaC5MaXN0QWN0aXZhdGlvbnNSZXF1ZXN0GiQucXVpeG9zLm9yY2guTGlzdEFjdGl2YXRpb25zUmVzcG9uc2USXAoPQ2xvc2VBY3RpdmF0aW9uEiMucXVpeG9zLm9yY2guQ2xvc2VBY3RpdmF0aW9uUmVxdWVzdBokLnF1aXhvcy5vcmNoLkNsb3NlQWN0aXZhdGlvblJlc3BvbnNlYgZwcm90bzM", [file_camino_api, file_quixos_package, file_quixos_refs]);
|
fileDesc("ChFxdWl4b3Mvb3JjaC5wcm90bxILcXVpeG9zLm9yY2gizAEKFUludm9rZUZ1bmN0aW9uUmVxdWVzdBIlCghmdW5jdGlvbhgBIAEoCzITLnF1aXhvcy5GdW5jdGlvblJlZhIRCglvYmplY3RfaWQYAiABKAkSPAoFaW5wdXQYAyADKAsyLS5xdWl4b3Mub3JjaC5JbnZva2VGdW5jdGlvblJlcXVlc3QuSW5wdXRFbnRyeRo7CgpJbnB1dEVudHJ5EgsKA2tleRgBIAEoCRIcCgV2YWx1ZRgCIAEoCzINLmNhbWluby5WYWx1ZToCOAEilgEKFkludm9rZUZ1bmN0aW9uUmVzcG9uc2USFQoNaW52b2NhdGlvbl9pZBgBIAEoCRIrCgphY3RpdmF0aW9uGAIgASgLMhcucXVpeG9zLm9yY2guQWN0aXZhdGlvbhIKCgJvaxgDIAEoCBIdCgZyZXN1bHQYBCABKAsyDS5jYW1pbm8uVmFsdWUSDQoFZXJyb3IYBSABKAkiygEKFFdhdGNoRnVuY3Rpb25SZXF1ZXN0EiUKCGZ1bmN0aW9uGAEgASgLMhMucXVpeG9zLkZ1bmN0aW9uUmVmEhEKCW9iamVjdF9pZBgCIAEoCRI7CgVpbnB1dBgDIAMoCzIsLnF1aXhvcy5vcmNoLldhdGNoRnVuY3Rpb25SZXF1ZXN0LklucHV0RW50cnkaOwoKSW5wdXRFbnRyeRILCgNrZXkYASABKAkSHAoFdmFsdWUYAiABKAsyDS5jYW1pbm8uVmFsdWU6AjgBIuEBChJXYXRjaEZ1bmN0aW9uRXZlbnQSFQoNaW52b2NhdGlvbl9pZBgBIAEoCRIrCgphY3RpdmF0aW9uGAIgASgLMhcucXVpeG9zLm9yY2guQWN0aXZhdGlvbhIQCgh3YXRjaF9pZBgDIAEoCRIcCgV2YWx1ZRgEIAEoCzINLmNhbWluby5WYWx1ZRI3CgxkZXBlbmRlbmNpZXMYBSADKAsyIS5xdWl4b3MucnVudGltZS5EZXJpdmVkRGVwZW5kZW5jeRINCgVlcnJvchgGIAEoCRIPCgdpbml0aWFsGAcgASgIIhgKFkxpc3RBY3RpdmF0aW9uc1JlcXVlc3QiHwodTGlzdFBhY2thZ2VEZXNjcmlwdG9yc1JlcXVlc3QiUAoeTGlzdFBhY2thZ2VEZXNjcmlwdG9yc1Jlc3BvbnNlEi4KC2Rlc2NyaXB0b3JzGAEgAygLMhkucXVpeG9zLlBhY2thZ2VEZXNjcmlwdG9yIhwKGkxpc3RQYWNrYWdlUnVudGltZXNSZXF1ZXN0IlIKG0xpc3RQYWNrYWdlUnVudGltZXNSZXNwb25zZRIzCghydW50aW1lcxgBIAMoCzIhLnF1aXhvcy5vcmNoLlBhY2thZ2VSdW50aW1lU3RhdHVzIkcKF0xpc3RBY3RpdmF0aW9uc1Jlc3BvbnNlEiwKC2FjdGl2YXRpb25zGAEgAygLMhcucXVpeG9zLm9yY2guQWN0aXZhdGlvbiI/ChZDbG9zZUFjdGl2YXRpb25SZXF1ZXN0EhUKDWFjdGl2YXRpb25faWQYASABKAkSDgoGcmVhc29uGAIgASgJIkYKF0Nsb3NlQWN0aXZhdGlvblJlc3BvbnNlEisKCmFjdGl2YXRpb24YASABKAsyFy5xdWl4b3Mub3JjaC5BY3RpdmF0aW9uIugBCgpBY3RpdmF0aW9uEhUKDWFjdGl2YXRpb25faWQYASABKAkSJQoIZnVuY3Rpb24YAiABKAsyEy5xdWl4b3MuRnVuY3Rpb25SZWYSEQoJb2JqZWN0X2lkGAMgASgJEg0KBXN0YXRlGAQgASgJEg4KBmRlbWFuZBgFIAEoDRIRCglvcGVuZWRfYXQYBiABKAkSFAoMbGFzdF91c2VkX2F0GAcgASgJEhgKEGlkbGVfZGVhZGxpbmVfYXQYCCABKAkSEQoJY2xvc2VkX2F0GAkgASgJEhQKDGNsb3NlX3JlYXNvbhgKIAEoCSLjAgoUUGFja2FnZVJ1bnRpbWVTdGF0dXMSEwoLcnVudGltZV9rZXkYASABKAkSGQoRcGFja2FnZV9uYW1lc3BhY2UYAiABKAkSFAoMcGFja2FnZV9uYW1lGAMgASgJEhoKEmRlc2NyaXB0b3JfdmVyc2lvbhgEIAEoDRITCgtzb3VyY2VfcmVwbxgFIAEoCRIaChJzZXJ2ZXJfaW5zdGFsbGFibGUYBiABKAkSEwoLc291cmNlX3BhdGgYByABKAkSEwoLc2VydmVyX3BhdGgYCCABKAkSCwoDcGlkGAkgASgNEg0KBXN0YXRlGAogASgJEhIKCnN0YXJ0ZWRfYXQYCyABKAkSGQoRbGFzdF9oYW5kc2hha2VfYXQYDCABKAkSIAoYcnVudGltZV9wcm90b2NvbF92ZXJzaW9uGA0gASgJEiEKGWFkdmVydGlzZWRfZnVuY3Rpb25fY291bnQYDiABKA0y4AQKE09yY2hlc3RyYXRvclJ1bnRpbWUSWQoOSW52b2tlRnVuY3Rpb24SIi5xdWl4b3Mub3JjaC5JbnZva2VGdW5jdGlvblJlcXVlc3QaIy5xdWl4b3Mub3JjaC5JbnZva2VGdW5jdGlvblJlc3BvbnNlElUKDVdhdGNoRnVuY3Rpb24SIS5xdWl4b3Mub3JjaC5XYXRjaEZ1bmN0aW9uUmVxdWVzdBofLnF1aXhvcy5vcmNoLldhdGNoRnVuY3Rpb25FdmVudDABEnEKFkxpc3RQYWNrYWdlRGVzY3JpcHRvcnMSKi5xdWl4b3Mub3JjaC5MaXN0UGFja2FnZURlc2NyaXB0b3JzUmVxdWVzdBorLnF1aXhvcy5vcmNoLkxpc3RQYWNrYWdlRGVzY3JpcHRvcnNSZXNwb25zZRJoChNMaXN0UGFja2FnZVJ1bnRpbWVzEicucXVpeG9zLm9yY2guTGlzdFBhY2thZ2VSdW50aW1lc1JlcXVlc3QaKC5xdWl4b3Mub3JjaC5MaXN0UGFja2FnZVJ1bnRpbWVzUmVzcG9uc2USXAoPTGlzdEFjdGl2YXRpb25zEiMucXVpeG9zLm9yY2guTGlzdEFjdGl2YXRpb25zUmVxdWVzdBokLnF1aXhvcy5vcmNoLkxpc3RBY3RpdmF0aW9uc1Jlc3BvbnNlElwKD0Nsb3NlQWN0aXZhdGlvbhIjLnF1aXhvcy5vcmNoLkNsb3NlQWN0aXZhdGlvblJlcXVlc3QaJC5xdWl4b3Mub3JjaC5DbG9zZUFjdGl2YXRpb25SZXNwb25zZWIGcHJvdG8z", [file_camino_api, file_quixos_package, file_quixos_refs, file_quixos_runtime]);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message quixos.orch.InvokeFunctionRequest
|
* @generated from message quixos.orch.InvokeFunctionRequest
|
||||||
@@ -82,6 +84,80 @@ export type InvokeFunctionResponse = Message<"quixos.orch.InvokeFunctionResponse
|
|||||||
export const InvokeFunctionResponseSchema: GenMessage<InvokeFunctionResponse> = /*@__PURE__*/
|
export const InvokeFunctionResponseSchema: GenMessage<InvokeFunctionResponse> = /*@__PURE__*/
|
||||||
messageDesc(file_quixos_orch, 1);
|
messageDesc(file_quixos_orch, 1);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from message quixos.orch.WatchFunctionRequest
|
||||||
|
*/
|
||||||
|
export type WatchFunctionRequest = Message<"quixos.orch.WatchFunctionRequest"> & {
|
||||||
|
/**
|
||||||
|
* @generated from field: quixos.FunctionRef function = 1;
|
||||||
|
*/
|
||||||
|
function?: FunctionRef | undefined;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: string object_id = 2;
|
||||||
|
*/
|
||||||
|
objectId: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: map<string, camino.Value> input = 3;
|
||||||
|
*/
|
||||||
|
input: { [key: string]: Value };
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Describes the message quixos.orch.WatchFunctionRequest.
|
||||||
|
* Use `create(WatchFunctionRequestSchema)` to create a new message.
|
||||||
|
*/
|
||||||
|
export const WatchFunctionRequestSchema: GenMessage<WatchFunctionRequest> = /*@__PURE__*/
|
||||||
|
messageDesc(file_quixos_orch, 2);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from message quixos.orch.WatchFunctionEvent
|
||||||
|
*/
|
||||||
|
export type WatchFunctionEvent = Message<"quixos.orch.WatchFunctionEvent"> & {
|
||||||
|
/**
|
||||||
|
* @generated from field: string invocation_id = 1;
|
||||||
|
*/
|
||||||
|
invocationId: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: quixos.orch.Activation activation = 2;
|
||||||
|
*/
|
||||||
|
activation?: Activation | undefined;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: string watch_id = 3;
|
||||||
|
*/
|
||||||
|
watchId: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: camino.Value value = 4;
|
||||||
|
*/
|
||||||
|
value?: Value | undefined;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: repeated quixos.runtime.DerivedDependency dependencies = 5;
|
||||||
|
*/
|
||||||
|
dependencies: DerivedDependency[];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: string error = 6;
|
||||||
|
*/
|
||||||
|
error: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: bool initial = 7;
|
||||||
|
*/
|
||||||
|
initial: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Describes the message quixos.orch.WatchFunctionEvent.
|
||||||
|
* Use `create(WatchFunctionEventSchema)` to create a new message.
|
||||||
|
*/
|
||||||
|
export const WatchFunctionEventSchema: GenMessage<WatchFunctionEvent> = /*@__PURE__*/
|
||||||
|
messageDesc(file_quixos_orch, 3);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message quixos.orch.ListActivationsRequest
|
* @generated from message quixos.orch.ListActivationsRequest
|
||||||
*/
|
*/
|
||||||
@@ -93,7 +169,7 @@ export type ListActivationsRequest = Message<"quixos.orch.ListActivationsRequest
|
|||||||
* Use `create(ListActivationsRequestSchema)` to create a new message.
|
* Use `create(ListActivationsRequestSchema)` to create a new message.
|
||||||
*/
|
*/
|
||||||
export const ListActivationsRequestSchema: GenMessage<ListActivationsRequest> = /*@__PURE__*/
|
export const ListActivationsRequestSchema: GenMessage<ListActivationsRequest> = /*@__PURE__*/
|
||||||
messageDesc(file_quixos_orch, 2);
|
messageDesc(file_quixos_orch, 4);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message quixos.orch.ListPackageDescriptorsRequest
|
* @generated from message quixos.orch.ListPackageDescriptorsRequest
|
||||||
@@ -106,7 +182,7 @@ export type ListPackageDescriptorsRequest = Message<"quixos.orch.ListPackageDesc
|
|||||||
* Use `create(ListPackageDescriptorsRequestSchema)` to create a new message.
|
* Use `create(ListPackageDescriptorsRequestSchema)` to create a new message.
|
||||||
*/
|
*/
|
||||||
export const ListPackageDescriptorsRequestSchema: GenMessage<ListPackageDescriptorsRequest> = /*@__PURE__*/
|
export const ListPackageDescriptorsRequestSchema: GenMessage<ListPackageDescriptorsRequest> = /*@__PURE__*/
|
||||||
messageDesc(file_quixos_orch, 3);
|
messageDesc(file_quixos_orch, 5);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message quixos.orch.ListPackageDescriptorsResponse
|
* @generated from message quixos.orch.ListPackageDescriptorsResponse
|
||||||
@@ -123,7 +199,7 @@ export type ListPackageDescriptorsResponse = Message<"quixos.orch.ListPackageDes
|
|||||||
* Use `create(ListPackageDescriptorsResponseSchema)` to create a new message.
|
* Use `create(ListPackageDescriptorsResponseSchema)` to create a new message.
|
||||||
*/
|
*/
|
||||||
export const ListPackageDescriptorsResponseSchema: GenMessage<ListPackageDescriptorsResponse> = /*@__PURE__*/
|
export const ListPackageDescriptorsResponseSchema: GenMessage<ListPackageDescriptorsResponse> = /*@__PURE__*/
|
||||||
messageDesc(file_quixos_orch, 4);
|
messageDesc(file_quixos_orch, 6);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message quixos.orch.ListPackageRuntimesRequest
|
* @generated from message quixos.orch.ListPackageRuntimesRequest
|
||||||
@@ -136,7 +212,7 @@ export type ListPackageRuntimesRequest = Message<"quixos.orch.ListPackageRuntime
|
|||||||
* Use `create(ListPackageRuntimesRequestSchema)` to create a new message.
|
* Use `create(ListPackageRuntimesRequestSchema)` to create a new message.
|
||||||
*/
|
*/
|
||||||
export const ListPackageRuntimesRequestSchema: GenMessage<ListPackageRuntimesRequest> = /*@__PURE__*/
|
export const ListPackageRuntimesRequestSchema: GenMessage<ListPackageRuntimesRequest> = /*@__PURE__*/
|
||||||
messageDesc(file_quixos_orch, 5);
|
messageDesc(file_quixos_orch, 7);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message quixos.orch.ListPackageRuntimesResponse
|
* @generated from message quixos.orch.ListPackageRuntimesResponse
|
||||||
@@ -153,7 +229,7 @@ export type ListPackageRuntimesResponse = Message<"quixos.orch.ListPackageRuntim
|
|||||||
* Use `create(ListPackageRuntimesResponseSchema)` to create a new message.
|
* Use `create(ListPackageRuntimesResponseSchema)` to create a new message.
|
||||||
*/
|
*/
|
||||||
export const ListPackageRuntimesResponseSchema: GenMessage<ListPackageRuntimesResponse> = /*@__PURE__*/
|
export const ListPackageRuntimesResponseSchema: GenMessage<ListPackageRuntimesResponse> = /*@__PURE__*/
|
||||||
messageDesc(file_quixos_orch, 6);
|
messageDesc(file_quixos_orch, 8);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message quixos.orch.ListActivationsResponse
|
* @generated from message quixos.orch.ListActivationsResponse
|
||||||
@@ -170,7 +246,7 @@ export type ListActivationsResponse = Message<"quixos.orch.ListActivationsRespon
|
|||||||
* Use `create(ListActivationsResponseSchema)` to create a new message.
|
* Use `create(ListActivationsResponseSchema)` to create a new message.
|
||||||
*/
|
*/
|
||||||
export const ListActivationsResponseSchema: GenMessage<ListActivationsResponse> = /*@__PURE__*/
|
export const ListActivationsResponseSchema: GenMessage<ListActivationsResponse> = /*@__PURE__*/
|
||||||
messageDesc(file_quixos_orch, 7);
|
messageDesc(file_quixos_orch, 9);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message quixos.orch.CloseActivationRequest
|
* @generated from message quixos.orch.CloseActivationRequest
|
||||||
@@ -192,7 +268,7 @@ export type CloseActivationRequest = Message<"quixos.orch.CloseActivationRequest
|
|||||||
* Use `create(CloseActivationRequestSchema)` to create a new message.
|
* Use `create(CloseActivationRequestSchema)` to create a new message.
|
||||||
*/
|
*/
|
||||||
export const CloseActivationRequestSchema: GenMessage<CloseActivationRequest> = /*@__PURE__*/
|
export const CloseActivationRequestSchema: GenMessage<CloseActivationRequest> = /*@__PURE__*/
|
||||||
messageDesc(file_quixos_orch, 8);
|
messageDesc(file_quixos_orch, 10);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message quixos.orch.CloseActivationResponse
|
* @generated from message quixos.orch.CloseActivationResponse
|
||||||
@@ -209,7 +285,7 @@ export type CloseActivationResponse = Message<"quixos.orch.CloseActivationRespon
|
|||||||
* Use `create(CloseActivationResponseSchema)` to create a new message.
|
* Use `create(CloseActivationResponseSchema)` to create a new message.
|
||||||
*/
|
*/
|
||||||
export const CloseActivationResponseSchema: GenMessage<CloseActivationResponse> = /*@__PURE__*/
|
export const CloseActivationResponseSchema: GenMessage<CloseActivationResponse> = /*@__PURE__*/
|
||||||
messageDesc(file_quixos_orch, 9);
|
messageDesc(file_quixos_orch, 11);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message quixos.orch.Activation
|
* @generated from message quixos.orch.Activation
|
||||||
@@ -271,7 +347,7 @@ export type Activation = Message<"quixos.orch.Activation"> & {
|
|||||||
* Use `create(ActivationSchema)` to create a new message.
|
* Use `create(ActivationSchema)` to create a new message.
|
||||||
*/
|
*/
|
||||||
export const ActivationSchema: GenMessage<Activation> = /*@__PURE__*/
|
export const ActivationSchema: GenMessage<Activation> = /*@__PURE__*/
|
||||||
messageDesc(file_quixos_orch, 10);
|
messageDesc(file_quixos_orch, 12);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message quixos.orch.PackageRuntimeStatus
|
* @generated from message quixos.orch.PackageRuntimeStatus
|
||||||
@@ -353,7 +429,7 @@ export type PackageRuntimeStatus = Message<"quixos.orch.PackageRuntimeStatus"> &
|
|||||||
* Use `create(PackageRuntimeStatusSchema)` to create a new message.
|
* Use `create(PackageRuntimeStatusSchema)` to create a new message.
|
||||||
*/
|
*/
|
||||||
export const PackageRuntimeStatusSchema: GenMessage<PackageRuntimeStatus> = /*@__PURE__*/
|
export const PackageRuntimeStatusSchema: GenMessage<PackageRuntimeStatus> = /*@__PURE__*/
|
||||||
messageDesc(file_quixos_orch, 11);
|
messageDesc(file_quixos_orch, 13);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from service quixos.orch.OrchestratorRuntime
|
* @generated from service quixos.orch.OrchestratorRuntime
|
||||||
@@ -367,6 +443,14 @@ export const OrchestratorRuntime: GenService<{
|
|||||||
input: typeof InvokeFunctionRequestSchema;
|
input: typeof InvokeFunctionRequestSchema;
|
||||||
output: typeof InvokeFunctionResponseSchema;
|
output: typeof InvokeFunctionResponseSchema;
|
||||||
},
|
},
|
||||||
|
/**
|
||||||
|
* @generated from rpc quixos.orch.OrchestratorRuntime.WatchFunction
|
||||||
|
*/
|
||||||
|
watchFunction: {
|
||||||
|
methodKind: "server_streaming";
|
||||||
|
input: typeof WatchFunctionRequestSchema;
|
||||||
|
output: typeof WatchFunctionEventSchema;
|
||||||
|
},
|
||||||
/**
|
/**
|
||||||
* @generated from rpc quixos.orch.OrchestratorRuntime.ListPackageDescriptors
|
* @generated from rpc quixos.orch.OrchestratorRuntime.ListPackageDescriptors
|
||||||
*/
|
*/
|
||||||
@@ -401,3 +485,4 @@ export const OrchestratorRuntime: GenService<{
|
|||||||
},
|
},
|
||||||
}> = /*@__PURE__*/
|
}> = /*@__PURE__*/
|
||||||
serviceDesc(file_quixos_orch, 0);
|
serviceDesc(file_quixos_orch, 0);
|
||||||
|
|
||||||
|
|||||||
@@ -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,
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -310,3 +315,4 @@ export enum FunctionCapabilityKind {
|
|||||||
*/
|
*/
|
||||||
export const FunctionCapabilityKindSchema: GenEnum<FunctionCapabilityKind> = /*@__PURE__*/
|
export const FunctionCapabilityKindSchema: GenEnum<FunctionCapabilityKind> = /*@__PURE__*/
|
||||||
enumDesc(file_quixos_package, 0);
|
enumDesc(file_quixos_package, 0);
|
||||||
|
|
||||||
|
|||||||
@@ -48,3 +48,4 @@ export type FunctionRef = Message<"quixos.FunctionRef"> & {
|
|||||||
*/
|
*/
|
||||||
export const FunctionRefSchema: GenMessage<FunctionRef> = /*@__PURE__*/
|
export const FunctionRefSchema: GenMessage<FunctionRef> = /*@__PURE__*/
|
||||||
messageDesc(file_quixos_refs, 0);
|
messageDesc(file_quixos_refs, 0);
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ import type { Message } from "@bufbuild/protobuf";
|
|||||||
* Describes the file quixos/runtime.proto.
|
* Describes the file quixos/runtime.proto.
|
||||||
*/
|
*/
|
||||||
export const file_quixos_runtime: GenFile = /*@__PURE__*/
|
export const file_quixos_runtime: GenFile = /*@__PURE__*/
|
||||||
fileDesc("ChRxdWl4b3MvcnVudGltZS5wcm90bxIOcXVpeG9zLnJ1bnRpbWUiMQoQSGFuZHNoYWtlUmVxdWVzdBIdChVvcmNoX3Byb3RvY29sX3ZlcnNpb24YASABKAkijgEKEUhhbmRzaGFrZVJlc3BvbnNlEhkKEXBhY2thZ2VfbmFtZXNwYWNlGAEgASgJEhQKDHBhY2thZ2VfbmFtZRgCIAEoCRIgChhydW50aW1lX3Byb3RvY29sX3ZlcnNpb24YAyABKAkSJgoJZnVuY3Rpb25zGAQgAygLMhMucXVpeG9zLkZ1bmN0aW9uUmVmItYBCg1JbnZva2VSZXF1ZXN0EhUKDWludm9jYXRpb25faWQYASABKAkSJQoIZnVuY3Rpb24YAiABKAsyEy5xdWl4b3MuRnVuY3Rpb25SZWYSEQoJb2JqZWN0X2lkGAMgASgJEjcKBWlucHV0GAQgAygLMigucXVpeG9zLnJ1bnRpbWUuSW52b2tlUmVxdWVzdC5JbnB1dEVudHJ5GjsKCklucHV0RW50cnkSCwoDa2V5GAEgASgJEhwKBXZhbHVlGAIgASgLMg0uY2FtaW5vLlZhbHVlOgI4ASJKCg5JbnZva2VSZXNwb25zZRIKCgJvaxgBIAEoCBIdCgZyZXN1bHQYAiABKAsyDS5jYW1pbm8uVmFsdWUSDQoFZXJyb3IYAyABKAkyqwEKDlBhY2thZ2VSdW50aW1lElAKCUhhbmRzaGFrZRIgLnF1aXhvcy5ydW50aW1lLkhhbmRzaGFrZVJlcXVlc3QaIS5xdWl4b3MucnVudGltZS5IYW5kc2hha2VSZXNwb25zZRJHCgZJbnZva2USHS5xdWl4b3MucnVudGltZS5JbnZva2VSZXF1ZXN0Gh4ucXVpeG9zLnJ1bnRpbWUuSW52b2tlUmVzcG9uc2ViBnByb3RvMw", [file_camino_api, file_quixos_refs]);
|
fileDesc("ChRxdWl4b3MvcnVudGltZS5wcm90bxIOcXVpeG9zLnJ1bnRpbWUiMQoQSGFuZHNoYWtlUmVxdWVzdBIdChVvcmNoX3Byb3RvY29sX3ZlcnNpb24YASABKAkijgEKEUhhbmRzaGFrZVJlc3BvbnNlEhkKEXBhY2thZ2VfbmFtZXNwYWNlGAEgASgJEhQKDHBhY2thZ2VfbmFtZRgCIAEoCRIgChhydW50aW1lX3Byb3RvY29sX3ZlcnNpb24YAyABKAkSJgoJZnVuY3Rpb25zGAQgAygLMhMucXVpeG9zLkZ1bmN0aW9uUmVmItYBCg1JbnZva2VSZXF1ZXN0EhUKDWludm9jYXRpb25faWQYASABKAkSJQoIZnVuY3Rpb24YAiABKAsyEy5xdWl4b3MuRnVuY3Rpb25SZWYSEQoJb2JqZWN0X2lkGAMgASgJEjcKBWlucHV0GAQgAygLMigucXVpeG9zLnJ1bnRpbWUuSW52b2tlUmVxdWVzdC5JbnB1dEVudHJ5GjsKCklucHV0RW50cnkSCwoDa2V5GAEgASgJEhwKBXZhbHVlGAIgASgLMg0uY2FtaW5vLlZhbHVlOgI4ASJKCg5JbnZva2VSZXNwb25zZRIKCgJvaxgBIAEoCBIdCgZyZXN1bHQYAiABKAsyDS5jYW1pbm8uVmFsdWUSDQoFZXJyb3IYAyABKAki1AEKDFdhdGNoUmVxdWVzdBIVCg1pbnZvY2F0aW9uX2lkGAEgASgJEiUKCGZ1bmN0aW9uGAIgASgLMhMucXVpeG9zLkZ1bmN0aW9uUmVmEhEKCW9iamVjdF9pZBgDIAEoCRI2CgVpbnB1dBgEIAMoCzInLnF1aXhvcy5ydW50aW1lLldhdGNoUmVxdWVzdC5JbnB1dEVudHJ5GjsKCklucHV0RW50cnkSCwoDa2V5GAEgASgJEhwKBXZhbHVlGAIgASgLMg0uY2FtaW5vLlZhbHVlOgI4ASJeChFEZXJpdmVkRGVwZW5kZW5jeRIMCgRraW5kGAEgASgJEhEKCW9iamVjdF9pZBgCIAEoCRISCgpmaWVsZF9uYW1lGAMgASgJEhQKDHNvdXJjZV9maWVsZBgEIAEoCSKVAQoKV2F0Y2hFdmVudBIQCgh3YXRjaF9pZBgBIAEoCRIcCgV2YWx1ZRgCIAEoCzINLmNhbWluby5WYWx1ZRI3CgxkZXBlbmRlbmNpZXMYAyADKAsyIS5xdWl4b3MucnVudGltZS5EZXJpdmVkRGVwZW5kZW5jeRINCgVlcnJvchgEIAEoCRIPCgdpbml0aWFsGAUgASgIMvABCg5QYWNrYWdlUnVudGltZRJQCglIYW5kc2hha2USIC5xdWl4b3MucnVudGltZS5IYW5kc2hha2VSZXF1ZXN0GiEucXVpeG9zLnJ1bnRpbWUuSGFuZHNoYWtlUmVzcG9uc2USRwoGSW52b2tlEh0ucXVpeG9zLnJ1bnRpbWUuSW52b2tlUmVxdWVzdBoeLnF1aXhvcy5ydW50aW1lLkludm9rZVJlc3BvbnNlEkMKBVdhdGNoEhwucXVpeG9zLnJ1bnRpbWUuV2F0Y2hSZXF1ZXN0GhoucXVpeG9zLnJ1bnRpbWUuV2F0Y2hFdmVudDABYgZwcm90bzM", [file_camino_api, file_quixos_refs]);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from message quixos.runtime.HandshakeRequest
|
* @generated from message quixos.runtime.HandshakeRequest
|
||||||
@@ -124,6 +124,107 @@ export type InvokeResponse = Message<"quixos.runtime.InvokeResponse"> & {
|
|||||||
export const InvokeResponseSchema: GenMessage<InvokeResponse> = /*@__PURE__*/
|
export const InvokeResponseSchema: GenMessage<InvokeResponse> = /*@__PURE__*/
|
||||||
messageDesc(file_quixos_runtime, 3);
|
messageDesc(file_quixos_runtime, 3);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from message quixos.runtime.WatchRequest
|
||||||
|
*/
|
||||||
|
export type WatchRequest = Message<"quixos.runtime.WatchRequest"> & {
|
||||||
|
/**
|
||||||
|
* @generated from field: string invocation_id = 1;
|
||||||
|
*/
|
||||||
|
invocationId: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: quixos.FunctionRef function = 2;
|
||||||
|
*/
|
||||||
|
function?: FunctionRef | undefined;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: string object_id = 3;
|
||||||
|
*/
|
||||||
|
objectId: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: map<string, camino.Value> input = 4;
|
||||||
|
*/
|
||||||
|
input: { [key: string]: Value };
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Describes the message quixos.runtime.WatchRequest.
|
||||||
|
* Use `create(WatchRequestSchema)` to create a new message.
|
||||||
|
*/
|
||||||
|
export const WatchRequestSchema: GenMessage<WatchRequest> = /*@__PURE__*/
|
||||||
|
messageDesc(file_quixos_runtime, 4);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from message quixos.runtime.DerivedDependency
|
||||||
|
*/
|
||||||
|
export type DerivedDependency = Message<"quixos.runtime.DerivedDependency"> & {
|
||||||
|
/**
|
||||||
|
* @generated from field: string kind = 1;
|
||||||
|
*/
|
||||||
|
kind: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: string object_id = 2;
|
||||||
|
*/
|
||||||
|
objectId: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: string field_name = 3;
|
||||||
|
*/
|
||||||
|
fieldName: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: string source_field = 4;
|
||||||
|
*/
|
||||||
|
sourceField: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Describes the message quixos.runtime.DerivedDependency.
|
||||||
|
* Use `create(DerivedDependencySchema)` to create a new message.
|
||||||
|
*/
|
||||||
|
export const DerivedDependencySchema: GenMessage<DerivedDependency> = /*@__PURE__*/
|
||||||
|
messageDesc(file_quixos_runtime, 5);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from message quixos.runtime.WatchEvent
|
||||||
|
*/
|
||||||
|
export type WatchEvent = Message<"quixos.runtime.WatchEvent"> & {
|
||||||
|
/**
|
||||||
|
* @generated from field: string watch_id = 1;
|
||||||
|
*/
|
||||||
|
watchId: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: camino.Value value = 2;
|
||||||
|
*/
|
||||||
|
value?: Value | undefined;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: repeated quixos.runtime.DerivedDependency dependencies = 3;
|
||||||
|
*/
|
||||||
|
dependencies: DerivedDependency[];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: string error = 4;
|
||||||
|
*/
|
||||||
|
error: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @generated from field: bool initial = 5;
|
||||||
|
*/
|
||||||
|
initial: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Describes the message quixos.runtime.WatchEvent.
|
||||||
|
* Use `create(WatchEventSchema)` to create a new message.
|
||||||
|
*/
|
||||||
|
export const WatchEventSchema: GenMessage<WatchEvent> = /*@__PURE__*/
|
||||||
|
messageDesc(file_quixos_runtime, 6);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @generated from service quixos.runtime.PackageRuntime
|
* @generated from service quixos.runtime.PackageRuntime
|
||||||
*/
|
*/
|
||||||
@@ -144,5 +245,14 @@ export const PackageRuntime: GenService<{
|
|||||||
input: typeof InvokeRequestSchema;
|
input: typeof InvokeRequestSchema;
|
||||||
output: typeof InvokeResponseSchema;
|
output: typeof InvokeResponseSchema;
|
||||||
},
|
},
|
||||||
|
/**
|
||||||
|
* @generated from rpc quixos.runtime.PackageRuntime.Watch
|
||||||
|
*/
|
||||||
|
watch: {
|
||||||
|
methodKind: "server_streaming";
|
||||||
|
input: typeof WatchRequestSchema;
|
||||||
|
output: typeof WatchEventSchema;
|
||||||
|
},
|
||||||
}> = /*@__PURE__*/
|
}> = /*@__PURE__*/
|
||||||
serviceDesc(file_quixos_runtime, 0);
|
serviceDesc(file_quixos_runtime, 0);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user