Implement query execution, scoped RPC enrichment, live collections, and scaffold integration
This commit is contained in:
Vendored
+351
-1
@@ -1,5 +1,5 @@
|
||||
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
||||
import type { PersistencePlan } from "./schema_pb.js";
|
||||
import type { PersistencePlan, QuerySelection } from "./schema_pb.js";
|
||||
import type { Message } from "@bufbuild/protobuf";
|
||||
/**
|
||||
* Describes the file camino/api.proto.
|
||||
@@ -826,10 +826,360 @@ export type CaminoOp = Message<"camino.CaminoOp"> & {
|
||||
* Use `create(CaminoOpSchema)` to create a new message.
|
||||
*/
|
||||
export declare const CaminoOpSchema: GenMessage<CaminoOp>;
|
||||
/**
|
||||
* @generated from message camino.QueryRequest
|
||||
*/
|
||||
export type QueryRequest = Message<"camino.QueryRequest"> & {
|
||||
/**
|
||||
* @generated from field: string query_id = 1;
|
||||
*/
|
||||
queryId: string;
|
||||
/**
|
||||
* @generated from field: string object_id = 2;
|
||||
*/
|
||||
objectId: string;
|
||||
/**
|
||||
* @generated from field: map<string, camino.Value> variables = 3;
|
||||
*/
|
||||
variables: {
|
||||
[key: string]: Value;
|
||||
};
|
||||
/**
|
||||
* Typed callers require this exact checked definition. Administrative/raw
|
||||
* callers may omit it to explicitly select the currently installed definition.
|
||||
*
|
||||
* @generated from field: string expected_definition_digest = 4;
|
||||
*/
|
||||
expectedDefinitionDigest: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryRequest.
|
||||
* Use `create(QueryRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryRequestSchema: GenMessage<QueryRequest>;
|
||||
/**
|
||||
* @generated from message camino.QueryPathPart
|
||||
*/
|
||||
export type QueryPathPart = Message<"camino.QueryPathPart"> & {
|
||||
/**
|
||||
* @generated from oneof camino.QueryPathPart.part
|
||||
*/
|
||||
part: {
|
||||
/**
|
||||
* @generated from field: string field = 1;
|
||||
*/
|
||||
value: string;
|
||||
case: "field";
|
||||
} | {
|
||||
/**
|
||||
* @generated from field: uint32 index = 2;
|
||||
*/
|
||||
value: number;
|
||||
case: "index";
|
||||
} | {
|
||||
case: undefined;
|
||||
value?: undefined;
|
||||
};
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryPathPart.
|
||||
* Use `create(QueryPathPartSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryPathPartSchema: GenMessage<QueryPathPart>;
|
||||
/**
|
||||
* @generated from message camino.QueryPendingField
|
||||
*/
|
||||
export type QueryPendingField = Message<"camino.QueryPendingField"> & {
|
||||
/**
|
||||
* @generated from field: repeated camino.QueryPathPart path = 1;
|
||||
*/
|
||||
path: QueryPathPart[];
|
||||
/**
|
||||
* @generated from field: string object_id = 2;
|
||||
*/
|
||||
objectId: string;
|
||||
/**
|
||||
* @generated from field: string interface_revision_id = 3;
|
||||
*/
|
||||
interfaceRevisionId: string;
|
||||
/**
|
||||
* @generated from field: string member_id = 4;
|
||||
*/
|
||||
memberId: string;
|
||||
/**
|
||||
* @generated from field: string operation_id = 5;
|
||||
*/
|
||||
operationId: string;
|
||||
/**
|
||||
* @generated from field: string value_type_json = 6;
|
||||
*/
|
||||
valueTypeJson: string;
|
||||
/**
|
||||
* Internal residual facts are separate from the authored result projection.
|
||||
*
|
||||
* @generated from field: optional uint32 residual_window = 7;
|
||||
*/
|
||||
residualWindow?: number | undefined;
|
||||
/**
|
||||
* @generated from field: uint32 residual_row = 8;
|
||||
*/
|
||||
residualRow: number;
|
||||
/**
|
||||
* @generated from field: string residual_field = 9;
|
||||
*/
|
||||
residualField: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryPendingField.
|
||||
* Use `create(QueryPendingFieldSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryPendingFieldSchema: GenMessage<QueryPendingField>;
|
||||
/**
|
||||
* @generated from message camino.QueryStats
|
||||
*/
|
||||
export type QueryStats = Message<"camino.QueryStats"> & {
|
||||
/**
|
||||
* @generated from field: uint32 sql_count = 1;
|
||||
*/
|
||||
sqlCount: number;
|
||||
/**
|
||||
* @generated from field: double sql_ms = 2;
|
||||
*/
|
||||
sqlMs: number;
|
||||
/**
|
||||
* @generated from field: uint32 rpc_count = 3;
|
||||
*/
|
||||
rpcCount: number;
|
||||
/**
|
||||
* @generated from field: double rpc_ms = 4;
|
||||
*/
|
||||
rpcMs: number;
|
||||
/**
|
||||
* @generated from field: uint32 result_bytes = 5;
|
||||
*/
|
||||
resultBytes: number;
|
||||
/**
|
||||
* @generated from field: double preparation_ms = 6;
|
||||
*/
|
||||
preparationMs: number;
|
||||
/**
|
||||
* @generated from field: double total_ms = 7;
|
||||
*/
|
||||
totalMs: number;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryStats.
|
||||
* Use `create(QueryStatsSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryStatsSchema: GenMessage<QueryStats>;
|
||||
/**
|
||||
* @generated from message camino.QueryResponse
|
||||
*/
|
||||
export type QueryResponse = Message<"camino.QueryResponse"> & {
|
||||
/**
|
||||
* @generated from field: camino.Value value = 1;
|
||||
*/
|
||||
value?: Value | undefined;
|
||||
/**
|
||||
* @generated from field: string data_version = 2;
|
||||
*/
|
||||
dataVersion: string;
|
||||
/**
|
||||
* @generated from field: string binding_digest = 3;
|
||||
*/
|
||||
bindingDigest: string;
|
||||
/**
|
||||
* @generated from field: repeated camino.QueryPendingField pending = 4;
|
||||
*/
|
||||
pending: QueryPendingField[];
|
||||
/**
|
||||
* @generated from field: camino.QueryStats stats = 5;
|
||||
*/
|
||||
stats?: QueryStats | undefined;
|
||||
/**
|
||||
* Redeemable only through the host's private control socket, not an RPC grant.
|
||||
*
|
||||
* @generated from field: string preparation_token = 6;
|
||||
*/
|
||||
preparationToken: string;
|
||||
/**
|
||||
* @generated from field: repeated camino.QueryFieldFailure errors = 7;
|
||||
*/
|
||||
errors: QueryFieldFailure[];
|
||||
/**
|
||||
* @generated from field: repeated camino.QueryResidualWindow residual_windows = 8;
|
||||
*/
|
||||
residualWindows: QueryResidualWindow[];
|
||||
/**
|
||||
* Native reads share one database snapshot; package enrichment does not.
|
||||
*
|
||||
* native-snapshot | mixed
|
||||
*
|
||||
* @generated from field: string consistency = 9;
|
||||
*/
|
||||
consistency: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryResponse.
|
||||
* Use `create(QueryResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryResponseSchema: GenMessage<QueryResponse>;
|
||||
/**
|
||||
* @generated from message camino.QueryResidualRow
|
||||
*/
|
||||
export type QueryResidualRow = Message<"camino.QueryResidualRow"> & {
|
||||
/**
|
||||
* @generated from field: string entry_id = 1;
|
||||
*/
|
||||
entryId: string;
|
||||
/**
|
||||
* @generated from field: map<string, camino.Value> fields = 2;
|
||||
*/
|
||||
fields: {
|
||||
[key: string]: Value;
|
||||
};
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryResidualRow.
|
||||
* Use `create(QueryResidualRowSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryResidualRowSchema: GenMessage<QueryResidualRow>;
|
||||
/**
|
||||
* @generated from message camino.QueryResidualOrder
|
||||
*/
|
||||
export type QueryResidualOrder = Message<"camino.QueryResidualOrder"> & {
|
||||
/**
|
||||
* @generated from field: string field = 1;
|
||||
*/
|
||||
field: string;
|
||||
/**
|
||||
* @generated from field: bool descending = 2;
|
||||
*/
|
||||
descending: boolean;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryResidualOrder.
|
||||
* Use `create(QueryResidualOrderSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryResidualOrderSchema: GenMessage<QueryResidualOrder>;
|
||||
/**
|
||||
* @generated from message camino.QueryResidualWindow
|
||||
*/
|
||||
export type QueryResidualWindow = Message<"camino.QueryResidualWindow"> & {
|
||||
/**
|
||||
* @generated from field: repeated camino.QueryPathPart path = 1;
|
||||
*/
|
||||
path: QueryPathPart[];
|
||||
/**
|
||||
* @generated from field: repeated camino.QueryResidualRow rows = 2;
|
||||
*/
|
||||
rows: QueryResidualRow[];
|
||||
/**
|
||||
* @generated from field: string predicate_json = 3;
|
||||
*/
|
||||
predicateJson: string;
|
||||
/**
|
||||
* @generated from field: repeated camino.QueryResidualOrder order = 4;
|
||||
*/
|
||||
order: QueryResidualOrder[];
|
||||
/**
|
||||
* @generated from field: uint32 limit = 5;
|
||||
*/
|
||||
limit: number;
|
||||
/**
|
||||
* @generated from field: bool bounded_all = 6;
|
||||
*/
|
||||
boundedAll: boolean;
|
||||
/**
|
||||
* @generated from field: repeated camino.QuerySelection selection = 7;
|
||||
*/
|
||||
selection: QuerySelection[];
|
||||
/**
|
||||
* @generated from field: map<string, string> field_types = 8;
|
||||
*/
|
||||
fieldTypes: {
|
||||
[key: string]: string;
|
||||
};
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryResidualWindow.
|
||||
* Use `create(QueryResidualWindowSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryResidualWindowSchema: GenMessage<QueryResidualWindow>;
|
||||
/**
|
||||
* @generated from message camino.QueryFieldFailure
|
||||
*/
|
||||
export type QueryFieldFailure = Message<"camino.QueryFieldFailure"> & {
|
||||
/**
|
||||
* @generated from field: repeated camino.QueryPathPart path = 1;
|
||||
*/
|
||||
path: QueryPathPart[];
|
||||
/**
|
||||
* @generated from field: string error = 2;
|
||||
*/
|
||||
error: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryFieldFailure.
|
||||
* Use `create(QueryFieldFailureSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryFieldFailureSchema: GenMessage<QueryFieldFailure>;
|
||||
/**
|
||||
* @generated from message camino.QueryChangesRequest
|
||||
*/
|
||||
export type QueryChangesRequest = Message<"camino.QueryChangesRequest"> & {
|
||||
/**
|
||||
* @generated from field: string query_id = 1;
|
||||
*/
|
||||
queryId: string;
|
||||
/**
|
||||
* @generated from field: string object_id = 2;
|
||||
*/
|
||||
objectId: string;
|
||||
/**
|
||||
* @generated from field: string data_version = 3;
|
||||
*/
|
||||
dataVersion: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryChangesRequest.
|
||||
* Use `create(QueryChangesRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryChangesRequestSchema: GenMessage<QueryChangesRequest>;
|
||||
/**
|
||||
* @generated from message camino.QueryChangesResponse
|
||||
*/
|
||||
export type QueryChangesResponse = Message<"camino.QueryChangesResponse"> & {
|
||||
/**
|
||||
* @generated from field: bool changed = 1;
|
||||
*/
|
||||
changed: boolean;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryChangesResponse.
|
||||
* Use `create(QueryChangesResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryChangesResponseSchema: GenMessage<QueryChangesResponse>;
|
||||
/**
|
||||
* @generated from service camino.CaminoService
|
||||
*/
|
||||
export declare const CaminoService: GenService<{
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.ExecuteQuery
|
||||
*/
|
||||
executeQuery: {
|
||||
methodKind: "unary";
|
||||
input: typeof QueryRequestSchema;
|
||||
output: typeof QueryResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.QueryChanges
|
||||
*/
|
||||
queryChanges: {
|
||||
methodKind: "unary";
|
||||
input: typeof QueryChangesRequestSchema;
|
||||
output: typeof QueryChangesResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.InstallPersistencePlan
|
||||
*/
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+56
-1
File diff suppressed because one or more lines are too long
Vendored
+308
@@ -224,12 +224,320 @@ export type PersistencePlan = Message<"camino.PersistencePlan"> & {
|
||||
* @generated from field: repeated camino.EdgeAttachment edges = 6;
|
||||
*/
|
||||
edges: EdgeAttachment[];
|
||||
/**
|
||||
* @generated from field: repeated camino.InstalledQuery queries = 7;
|
||||
*/
|
||||
queries: InstalledQuery[];
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.PersistencePlan.
|
||||
* Use `create(PersistencePlanSchema)` to create a new message.
|
||||
*/
|
||||
export declare const PersistencePlanSchema: GenMessage<PersistencePlan>;
|
||||
/**
|
||||
* Immutable checked query IR. Installed only with the checked persistence plan;
|
||||
* query callers select its ID, never send or modify these definitions.
|
||||
*
|
||||
* @generated from message camino.QueryArgument
|
||||
*/
|
||||
export type QueryArgument = Message<"camino.QueryArgument"> & {
|
||||
/**
|
||||
* @generated from oneof camino.QueryArgument.value
|
||||
*/
|
||||
value: {
|
||||
/**
|
||||
* @generated from field: string variable = 1;
|
||||
*/
|
||||
value: string;
|
||||
case: "variable";
|
||||
} | {
|
||||
/**
|
||||
* @generated from field: string literal_json = 2;
|
||||
*/
|
||||
value: string;
|
||||
case: "literalJson";
|
||||
} | {
|
||||
/**
|
||||
* @generated from field: camino.QueryArgumentList list = 3;
|
||||
*/
|
||||
value: QueryArgumentList;
|
||||
case: "list";
|
||||
} | {
|
||||
/**
|
||||
* @generated from field: camino.QueryArgumentObject object = 4;
|
||||
*/
|
||||
value: QueryArgumentObject;
|
||||
case: "object";
|
||||
} | {
|
||||
case: undefined;
|
||||
value?: undefined;
|
||||
};
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryArgument.
|
||||
* Use `create(QueryArgumentSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryArgumentSchema: GenMessage<QueryArgument>;
|
||||
/**
|
||||
* @generated from message camino.QueryArgumentList
|
||||
*/
|
||||
export type QueryArgumentList = Message<"camino.QueryArgumentList"> & {
|
||||
/**
|
||||
* @generated from field: repeated camino.QueryArgument values = 1;
|
||||
*/
|
||||
values: QueryArgument[];
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryArgumentList.
|
||||
* Use `create(QueryArgumentListSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryArgumentListSchema: GenMessage<QueryArgumentList>;
|
||||
/**
|
||||
* @generated from message camino.QueryArgumentObject
|
||||
*/
|
||||
export type QueryArgumentObject = Message<"camino.QueryArgumentObject"> & {
|
||||
/**
|
||||
* @generated from field: map<string, camino.QueryArgument> fields = 1;
|
||||
*/
|
||||
fields: {
|
||||
[key: string]: QueryArgument;
|
||||
};
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryArgumentObject.
|
||||
* Use `create(QueryArgumentObjectSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryArgumentObjectSchema: GenMessage<QueryArgumentObject>;
|
||||
/**
|
||||
* @generated from message camino.QueryCondition
|
||||
*/
|
||||
export type QueryCondition = Message<"camino.QueryCondition"> & {
|
||||
/**
|
||||
* @generated from field: bool include = 1;
|
||||
*/
|
||||
include: boolean;
|
||||
/**
|
||||
* @generated from field: camino.QueryArgument value = 2;
|
||||
*/
|
||||
value?: QueryArgument | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryCondition.
|
||||
* Use `create(QueryConditionSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryConditionSchema: GenMessage<QueryCondition>;
|
||||
/**
|
||||
* @generated from message camino.QuerySelection
|
||||
*/
|
||||
export type QuerySelection = Message<"camino.QuerySelection"> & {
|
||||
/**
|
||||
* @generated from field: string name = 1;
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* @generated from field: string key = 2;
|
||||
*/
|
||||
key: string;
|
||||
/**
|
||||
* @generated from field: string interface_revision_id = 3;
|
||||
*/
|
||||
interfaceRevisionId: string;
|
||||
/**
|
||||
* @generated from field: string member_id = 4;
|
||||
*/
|
||||
memberId: string;
|
||||
/**
|
||||
* @generated from field: string target_interface_revision_id = 5;
|
||||
*/
|
||||
targetInterfaceRevisionId: string;
|
||||
/**
|
||||
* @generated from field: repeated camino.QueryCondition conditions = 6;
|
||||
*/
|
||||
conditions: QueryCondition[];
|
||||
/**
|
||||
* @generated from field: map<string, camino.QueryArgument> arguments = 7;
|
||||
*/
|
||||
arguments: {
|
||||
[key: string]: QueryArgument;
|
||||
};
|
||||
/**
|
||||
* @generated from field: repeated camino.QuerySelection selection = 8;
|
||||
*/
|
||||
selection: QuerySelection[];
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QuerySelection.
|
||||
* Use `create(QuerySelectionSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QuerySelectionSchema: GenMessage<QuerySelection>;
|
||||
/**
|
||||
* @generated from message camino.QueryReadBinding
|
||||
*/
|
||||
export type QueryReadBinding = Message<"camino.QueryReadBinding"> & {
|
||||
/**
|
||||
* @generated from field: string atom_id = 1;
|
||||
*/
|
||||
atomId: string;
|
||||
/**
|
||||
* @generated from field: string interface_revision_id = 2;
|
||||
*/
|
||||
interfaceRevisionId: string;
|
||||
/**
|
||||
* @generated from field: string member_id = 3;
|
||||
*/
|
||||
memberId: string;
|
||||
/**
|
||||
* @generated from field: string getter_operation_id = 4;
|
||||
*/
|
||||
getterOperationId: string;
|
||||
/**
|
||||
* @generated from field: string slot_id = 5;
|
||||
*/
|
||||
slotId: string;
|
||||
/**
|
||||
* @generated from field: string edge_type_id = 6;
|
||||
*/
|
||||
edgeTypeId: string;
|
||||
/**
|
||||
* @generated from field: string projection_id = 7;
|
||||
*/
|
||||
projectionId: string;
|
||||
/**
|
||||
* @generated from field: bool rpc = 8;
|
||||
*/
|
||||
rpc: boolean;
|
||||
/**
|
||||
* @generated from field: string watch_start_operation_id = 9;
|
||||
*/
|
||||
watchStartOperationId: string;
|
||||
/**
|
||||
* @generated from field: string watch_stop_operation_id = 10;
|
||||
*/
|
||||
watchStopOperationId: string;
|
||||
/**
|
||||
* @generated from field: string field_name = 11;
|
||||
*/
|
||||
fieldName: string;
|
||||
/**
|
||||
* @generated from field: string value_type_json = 12;
|
||||
*/
|
||||
valueTypeJson: string;
|
||||
/**
|
||||
* @generated from field: camino.Cardinality cardinality = 13;
|
||||
*/
|
||||
cardinality: Cardinality;
|
||||
/**
|
||||
* @generated from field: string key_type = 14;
|
||||
*/
|
||||
keyType: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryReadBinding.
|
||||
* Use `create(QueryReadBindingSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryReadBindingSchema: GenMessage<QueryReadBinding>;
|
||||
/**
|
||||
* @generated from message camino.QueryBudgets
|
||||
*/
|
||||
export type QueryBudgets = Message<"camino.QueryBudgets"> & {
|
||||
/**
|
||||
* @generated from field: uint32 rows = 1;
|
||||
*/
|
||||
rows: number;
|
||||
/**
|
||||
* @generated from field: uint32 depth = 2;
|
||||
*/
|
||||
depth: number;
|
||||
/**
|
||||
* @generated from field: uint32 result_bytes = 3;
|
||||
*/
|
||||
resultBytes: number;
|
||||
/**
|
||||
* @generated from field: uint32 candidates = 4;
|
||||
*/
|
||||
candidates: number;
|
||||
/**
|
||||
* @generated from field: uint32 rpc_calls = 5;
|
||||
*/
|
||||
rpcCalls: number;
|
||||
/**
|
||||
* @generated from field: uint32 concurrency = 6;
|
||||
*/
|
||||
concurrency: number;
|
||||
/**
|
||||
* @generated from field: uint32 deadline_ms = 7;
|
||||
*/
|
||||
deadlineMs: number;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.QueryBudgets.
|
||||
* Use `create(QueryBudgetsSchema)` to create a new message.
|
||||
*/
|
||||
export declare const QueryBudgetsSchema: GenMessage<QueryBudgets>;
|
||||
/**
|
||||
* @generated from message camino.InstalledQuery
|
||||
*/
|
||||
export type InstalledQuery = Message<"camino.InstalledQuery"> & {
|
||||
/**
|
||||
* @generated from field: string id = 1;
|
||||
*/
|
||||
id: string;
|
||||
/**
|
||||
* @generated from field: string definition_digest = 2;
|
||||
*/
|
||||
definitionDigest: string;
|
||||
/**
|
||||
* @generated from field: string binding_digest = 3;
|
||||
*/
|
||||
bindingDigest: string;
|
||||
/**
|
||||
* @generated from field: string root_interface_revision_id = 4;
|
||||
*/
|
||||
rootInterfaceRevisionId: string;
|
||||
/**
|
||||
* @generated from field: repeated camino.QuerySelection selection = 5;
|
||||
*/
|
||||
selection: QuerySelection[];
|
||||
/**
|
||||
* @generated from field: repeated camino.QueryReadBinding bindings = 6;
|
||||
*/
|
||||
bindings: QueryReadBinding[];
|
||||
/**
|
||||
* @generated from field: camino.QueryBudgets budgets = 7;
|
||||
*/
|
||||
budgets?: QueryBudgets | undefined;
|
||||
/**
|
||||
* @generated from field: string variables_type_json = 8;
|
||||
*/
|
||||
variablesTypeJson: string;
|
||||
/**
|
||||
* @generated from field: string output_type_json = 9;
|
||||
*/
|
||||
outputTypeJson: string;
|
||||
/**
|
||||
* @generated from field: map<string, camino.QueryArgument> variable_defaults = 10;
|
||||
*/
|
||||
variableDefaults: {
|
||||
[key: string]: QueryArgument;
|
||||
};
|
||||
/**
|
||||
* @generated from field: bool watch = 11;
|
||||
*/
|
||||
watch: boolean;
|
||||
/**
|
||||
* @generated from field: uint32 polling_interval_ms = 12;
|
||||
*/
|
||||
pollingIntervalMs: number;
|
||||
/**
|
||||
* @generated from field: bool rpc_predicate_or_order = 13;
|
||||
*/
|
||||
rpcPredicateOrOrder: boolean;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.InstalledQuery.
|
||||
* Use `create(InstalledQuerySchema)` to create a new message.
|
||||
*/
|
||||
export declare const InstalledQuerySchema: GenMessage<InstalledQuery>;
|
||||
/**
|
||||
* @generated from enum camino.Cardinality
|
||||
*/
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+41
-1
@@ -5,7 +5,7 @@ import { enumDesc, fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
||||
/**
|
||||
* Describes the file camino/schema.proto.
|
||||
*/
|
||||
export const file_camino_schema = /*@__PURE__*/ fileDesc("ChNjYW1pbm8vc2NoZW1hLnByb3RvEgZjYW1pbm8iNwoOQXRvbURlZmluaXRpb24SDwoHYXRvbV9pZBgBIAEoCRIUCgxkaXNwbGF5X25hbWUYAiABKAkiWQoPQXRvbUNvbmZvcm1hbmNlEg8KB2F0b21faWQYASABKAkSHQoVaW50ZXJmYWNlX3JldmlzaW9uX2lkGAIgASgJEhYKDmNvbmZvcm1hbmNlX2lkGAMgASgJIsIBCg9TdGF0ZUF0dGFjaG1lbnQSDwoHc2xvdF9pZBgBIAEoCRIYChBhdHRhY2hlZF9hdG9tX2lkGAIgASgJEhQKDGRpc3BsYXlfbmFtZRgDIAEoCRIXCg92YWx1ZV90eXBlX2pzb24YBCABKAkSGwoTc3RvcmFnZV9wb2xpY3lfanNvbhgFIAEoCRIaChJkZWZhdWx0X3ZhbHVlX2pzb24YBiABKAkSHAoUb3duZXJfY29uZm9ybWFuY2VfaWQYByABKAkiUAoSRW5kcG9pbnRDb25zdHJhaW50EhEKB2F0b21faWQYASABKAlIABIfChVpbnRlcmZhY2VfcmV2aXNpb25faWQYAiABKAlIAEIGCgRraW5kIvsBCgxFZGdlRW5kcG9pbnQSFQoNcHJvamVjdGlvbl9pZBgBIAEoCRIUCgxkaXNwbGF5X25hbWUYAiABKAkSLgoKY29uc3RyYWludBgDIAEoCzIaLmNhbWluby5FbmRwb2ludENvbnN0cmFpbnQSKAoLY2FyZGluYWxpdHkYBCABKA4yEy5jYW1pbm8uQ2FyZGluYWxpdHkSDwoHb3JkZXJlZBgFIAEoCBIRCglvbl9kZWxldGUYBiABKAkSFAoMcmV0YWluX290aGVyGAcgASgIEhAKCGtleV90eXBlGAggASgJEhgKEHB1YmxpY190cmF2ZXJzYWwYCSABKAgipQEKDkVkZ2VBdHRhY2htZW50EhQKDGVkZ2VfdHlwZV9pZBgBIAEoCRIUCgxkaXNwbGF5X25hbWUYAiABKAkSIwoFZmlyc3QYAyABKAsyFC5jYW1pbm8uRWRnZUVuZHBvaW50EiQKBnNlY29uZBgEIAEoCzIULmNhbWluby5FZGdlRW5kcG9pbnQSHAoUb3duZXJfY29uZm9ybWFuY2VfaWQYBSABKAki7AEKD1BlcnNpc3RlbmNlUGxhbhIUCgx3b3Jrc3BhY2VfaWQYASABKAkSHQoVd29ya3NwYWNlX3JldmlzaW9uX2lkGAIgASgJEiUKBWF0b21zGAMgAygLMhYuY2FtaW5vLkF0b21EZWZpbml0aW9uEi0KDGNvbmZvcm1hbmNlcxgEIAMoCzIXLmNhbWluby5BdG9tQ29uZm9ybWFuY2USJwoGc3RhdGVzGAUgAygLMhcuY2FtaW5vLlN0YXRlQXR0YWNobWVudBIlCgVlZGdlcxgGIAMoCzIWLmNhbWluby5FZGdlQXR0YWNobWVudCpoCgtDYXJkaW5hbGl0eRIbChdDQVJESU5BTElUWV9VTlNQRUNJRklFRBAAEhAKDE9QVElPTkFMX09ORRABEg8KC0VYQUNUTFlfT05FEAISCAoETUFOWRADEg8KC01BTllfVU5JUVVFEARiBnByb3RvMw");
|
||||
export const file_camino_schema = /*@__PURE__*/ fileDesc("ChNjYW1pbm8vc2NoZW1hLnByb3RvEgZjYW1pbm8iNwoOQXRvbURlZmluaXRpb24SDwoHYXRvbV9pZBgBIAEoCRIUCgxkaXNwbGF5X25hbWUYAiABKAkiWQoPQXRvbUNvbmZvcm1hbmNlEg8KB2F0b21faWQYASABKAkSHQoVaW50ZXJmYWNlX3JldmlzaW9uX2lkGAIgASgJEhYKDmNvbmZvcm1hbmNlX2lkGAMgASgJIsIBCg9TdGF0ZUF0dGFjaG1lbnQSDwoHc2xvdF9pZBgBIAEoCRIYChBhdHRhY2hlZF9hdG9tX2lkGAIgASgJEhQKDGRpc3BsYXlfbmFtZRgDIAEoCRIXCg92YWx1ZV90eXBlX2pzb24YBCABKAkSGwoTc3RvcmFnZV9wb2xpY3lfanNvbhgFIAEoCRIaChJkZWZhdWx0X3ZhbHVlX2pzb24YBiABKAkSHAoUb3duZXJfY29uZm9ybWFuY2VfaWQYByABKAkiUAoSRW5kcG9pbnRDb25zdHJhaW50EhEKB2F0b21faWQYASABKAlIABIfChVpbnRlcmZhY2VfcmV2aXNpb25faWQYAiABKAlIAEIGCgRraW5kIvsBCgxFZGdlRW5kcG9pbnQSFQoNcHJvamVjdGlvbl9pZBgBIAEoCRIUCgxkaXNwbGF5X25hbWUYAiABKAkSLgoKY29uc3RyYWludBgDIAEoCzIaLmNhbWluby5FbmRwb2ludENvbnN0cmFpbnQSKAoLY2FyZGluYWxpdHkYBCABKA4yEy5jYW1pbm8uQ2FyZGluYWxpdHkSDwoHb3JkZXJlZBgFIAEoCBIRCglvbl9kZWxldGUYBiABKAkSFAoMcmV0YWluX290aGVyGAcgASgIEhAKCGtleV90eXBlGAggASgJEhgKEHB1YmxpY190cmF2ZXJzYWwYCSABKAgipQEKDkVkZ2VBdHRhY2htZW50EhQKDGVkZ2VfdHlwZV9pZBgBIAEoCRIUCgxkaXNwbGF5X25hbWUYAiABKAkSIwoFZmlyc3QYAyABKAsyFC5jYW1pbm8uRWRnZUVuZHBvaW50EiQKBnNlY29uZBgEIAEoCzIULmNhbWluby5FZGdlRW5kcG9pbnQSHAoUb3duZXJfY29uZm9ybWFuY2VfaWQYBSABKAkilQIKD1BlcnNpc3RlbmNlUGxhbhIUCgx3b3Jrc3BhY2VfaWQYASABKAkSHQoVd29ya3NwYWNlX3JldmlzaW9uX2lkGAIgASgJEiUKBWF0b21zGAMgAygLMhYuY2FtaW5vLkF0b21EZWZpbml0aW9uEi0KDGNvbmZvcm1hbmNlcxgEIAMoCzIXLmNhbWluby5BdG9tQ29uZm9ybWFuY2USJwoGc3RhdGVzGAUgAygLMhcuY2FtaW5vLlN0YXRlQXR0YWNobWVudBIlCgVlZGdlcxgGIAMoCzIWLmNhbWluby5FZGdlQXR0YWNobWVudBInCgdxdWVyaWVzGAcgAygLMhYuY2FtaW5vLkluc3RhbGxlZFF1ZXJ5Ip4BCg1RdWVyeUFyZ3VtZW50EhIKCHZhcmlhYmxlGAEgASgJSAASFgoMbGl0ZXJhbF9qc29uGAIgASgJSAASKQoEbGlzdBgDIAEoCzIZLmNhbWluby5RdWVyeUFyZ3VtZW50TGlzdEgAEi0KBm9iamVjdBgEIAEoCzIbLmNhbWluby5RdWVyeUFyZ3VtZW50T2JqZWN0SABCBwoFdmFsdWUiOgoRUXVlcnlBcmd1bWVudExpc3QSJQoGdmFsdWVzGAEgAygLMhUuY2FtaW5vLlF1ZXJ5QXJndW1lbnQilAEKE1F1ZXJ5QXJndW1lbnRPYmplY3QSNwoGZmllbGRzGAEgAygLMicuY2FtaW5vLlF1ZXJ5QXJndW1lbnRPYmplY3QuRmllbGRzRW50cnkaRAoLRmllbGRzRW50cnkSCwoDa2V5GAEgASgJEiQKBXZhbHVlGAIgASgLMhUuY2FtaW5vLlF1ZXJ5QXJndW1lbnQ6AjgBIkcKDlF1ZXJ5Q29uZGl0aW9uEg8KB2luY2x1ZGUYASABKAgSJAoFdmFsdWUYAiABKAsyFS5jYW1pbm8uUXVlcnlBcmd1bWVudCLdAgoOUXVlcnlTZWxlY3Rpb24SDAoEbmFtZRgBIAEoCRILCgNrZXkYAiABKAkSHQoVaW50ZXJmYWNlX3JldmlzaW9uX2lkGAMgASgJEhEKCW1lbWJlcl9pZBgEIAEoCRIkChx0YXJnZXRfaW50ZXJmYWNlX3JldmlzaW9uX2lkGAUgASgJEioKCmNvbmRpdGlvbnMYBiADKAsyFi5jYW1pbm8uUXVlcnlDb25kaXRpb24SOAoJYXJndW1lbnRzGAcgAygLMiUuY2FtaW5vLlF1ZXJ5U2VsZWN0aW9uLkFyZ3VtZW50c0VudHJ5EikKCXNlbGVjdGlvbhgIIAMoCzIWLmNhbWluby5RdWVyeVNlbGVjdGlvbhpHCg5Bcmd1bWVudHNFbnRyeRILCgNrZXkYASABKAkSJAoFdmFsdWUYAiABKAsyFS5jYW1pbm8uUXVlcnlBcmd1bWVudDoCOAEi6QIKEFF1ZXJ5UmVhZEJpbmRpbmcSDwoHYXRvbV9pZBgBIAEoCRIdChVpbnRlcmZhY2VfcmV2aXNpb25faWQYAiABKAkSEQoJbWVtYmVyX2lkGAMgASgJEhsKE2dldHRlcl9vcGVyYXRpb25faWQYBCABKAkSDwoHc2xvdF9pZBgFIAEoCRIUCgxlZGdlX3R5cGVfaWQYBiABKAkSFQoNcHJvamVjdGlvbl9pZBgHIAEoCRILCgNycGMYCCABKAgSIAoYd2F0Y2hfc3RhcnRfb3BlcmF0aW9uX2lkGAkgASgJEh8KF3dhdGNoX3N0b3Bfb3BlcmF0aW9uX2lkGAogASgJEhIKCmZpZWxkX25hbWUYCyABKAkSFwoPdmFsdWVfdHlwZV9qc29uGAwgASgJEigKC2NhcmRpbmFsaXR5GA0gASgOMhMuY2FtaW5vLkNhcmRpbmFsaXR5EhAKCGtleV90eXBlGA4gASgJIpIBCgxRdWVyeUJ1ZGdldHMSDAoEcm93cxgBIAEoDRINCgVkZXB0aBgCIAEoDRIUCgxyZXN1bHRfYnl0ZXMYAyABKA0SEgoKY2FuZGlkYXRlcxgEIAEoDRIRCglycGNfY2FsbHMYBSABKA0SEwoLY29uY3VycmVuY3kYBiABKA0SEwoLZGVhZGxpbmVfbXMYByABKA0ijQQKDkluc3RhbGxlZFF1ZXJ5EgoKAmlkGAEgASgJEhkKEWRlZmluaXRpb25fZGlnZXN0GAIgASgJEhYKDmJpbmRpbmdfZGlnZXN0GAMgASgJEiIKGnJvb3RfaW50ZXJmYWNlX3JldmlzaW9uX2lkGAQgASgJEikKCXNlbGVjdGlvbhgFIAMoCzIWLmNhbWluby5RdWVyeVNlbGVjdGlvbhIqCghiaW5kaW5ncxgGIAMoCzIYLmNhbWluby5RdWVyeVJlYWRCaW5kaW5nEiUKB2J1ZGdldHMYByABKAsyFC5jYW1pbm8uUXVlcnlCdWRnZXRzEhsKE3ZhcmlhYmxlc190eXBlX2pzb24YCCABKAkSGAoQb3V0cHV0X3R5cGVfanNvbhgJIAEoCRJHChF2YXJpYWJsZV9kZWZhdWx0cxgKIAMoCzIsLmNhbWluby5JbnN0YWxsZWRRdWVyeS5WYXJpYWJsZURlZmF1bHRzRW50cnkSDQoFd2F0Y2gYCyABKAgSGwoTcG9sbGluZ19pbnRlcnZhbF9tcxgMIAEoDRIeChZycGNfcHJlZGljYXRlX29yX29yZGVyGA0gASgIGk4KFVZhcmlhYmxlRGVmYXVsdHNFbnRyeRILCgNrZXkYASABKAkSJAoFdmFsdWUYAiABKAsyFS5jYW1pbm8uUXVlcnlBcmd1bWVudDoCOAEqaAoLQ2FyZGluYWxpdHkSGwoXQ0FSRElOQUxJVFlfVU5TUEVDSUZJRUQQABIQCgxPUFRJT05BTF9PTkUQARIPCgtFWEFDVExZX09ORRACEggKBE1BTlkQAxIPCgtNQU5ZX1VOSVFVRRAEYgZwcm90bzM");
|
||||
/**
|
||||
* Describes the message camino.AtomDefinition.
|
||||
* Use `create(AtomDefinitionSchema)` to create a new message.
|
||||
@@ -41,6 +41,46 @@ export const EdgeAttachmentSchema = /*@__PURE__*/ messageDesc(file_camino_schema
|
||||
* Use `create(PersistencePlanSchema)` to create a new message.
|
||||
*/
|
||||
export const PersistencePlanSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 6);
|
||||
/**
|
||||
* Describes the message camino.QueryArgument.
|
||||
* Use `create(QueryArgumentSchema)` to create a new message.
|
||||
*/
|
||||
export const QueryArgumentSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 7);
|
||||
/**
|
||||
* Describes the message camino.QueryArgumentList.
|
||||
* Use `create(QueryArgumentListSchema)` to create a new message.
|
||||
*/
|
||||
export const QueryArgumentListSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 8);
|
||||
/**
|
||||
* Describes the message camino.QueryArgumentObject.
|
||||
* Use `create(QueryArgumentObjectSchema)` to create a new message.
|
||||
*/
|
||||
export const QueryArgumentObjectSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 9);
|
||||
/**
|
||||
* Describes the message camino.QueryCondition.
|
||||
* Use `create(QueryConditionSchema)` to create a new message.
|
||||
*/
|
||||
export const QueryConditionSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 10);
|
||||
/**
|
||||
* Describes the message camino.QuerySelection.
|
||||
* Use `create(QuerySelectionSchema)` to create a new message.
|
||||
*/
|
||||
export const QuerySelectionSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 11);
|
||||
/**
|
||||
* Describes the message camino.QueryReadBinding.
|
||||
* Use `create(QueryReadBindingSchema)` to create a new message.
|
||||
*/
|
||||
export const QueryReadBindingSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 12);
|
||||
/**
|
||||
* Describes the message camino.QueryBudgets.
|
||||
* Use `create(QueryBudgetsSchema)` to create a new message.
|
||||
*/
|
||||
export const QueryBudgetsSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 13);
|
||||
/**
|
||||
* Describes the message camino.InstalledQuery.
|
||||
* Use `create(InstalledQuerySchema)` to create a new message.
|
||||
*/
|
||||
export const InstalledQuerySchema = /*@__PURE__*/ messageDesc(file_camino_schema, 14);
|
||||
/**
|
||||
* @generated from enum camino.Cardinality
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user