Publish built Camino package runtime artifacts
This commit is contained in:
Vendored
+829
@@ -0,0 +1,829 @@
|
||||
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
||||
import type { ClassSchema } from "./schema_pb.js";
|
||||
import type { FunctionRef } from "../quixos/refs_pb.js";
|
||||
import type { Message } from "@bufbuild/protobuf";
|
||||
/**
|
||||
* Describes the file camino/api.proto.
|
||||
*/
|
||||
export declare const file_camino_api: GenFile;
|
||||
/**
|
||||
* @generated from message camino.RegisterSchemaRequest
|
||||
*/
|
||||
export type RegisterSchemaRequest = Message<"camino.RegisterSchemaRequest"> & {
|
||||
/**
|
||||
* @generated from field: string source_file = 1;
|
||||
*/
|
||||
sourceFile: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.RegisterSchemaRequest.
|
||||
* Use `create(RegisterSchemaRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const RegisterSchemaRequestSchema: GenMessage<RegisterSchemaRequest>;
|
||||
/**
|
||||
* @generated from message camino.RegisterSchemaResponse
|
||||
*/
|
||||
export type RegisterSchemaResponse = Message<"camino.RegisterSchemaResponse"> & {
|
||||
/**
|
||||
* @generated from field: repeated string class_ids = 1;
|
||||
*/
|
||||
classIds: string[];
|
||||
/**
|
||||
* @generated from field: repeated camino.ClassSchema classes = 2;
|
||||
*/
|
||||
classes: ClassSchema[];
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.RegisterSchemaResponse.
|
||||
* Use `create(RegisterSchemaResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const RegisterSchemaResponseSchema: GenMessage<RegisterSchemaResponse>;
|
||||
/**
|
||||
* @generated from message camino.ListClassesRequest
|
||||
*/
|
||||
export type ListClassesRequest = Message<"camino.ListClassesRequest"> & {};
|
||||
/**
|
||||
* Describes the message camino.ListClassesRequest.
|
||||
* Use `create(ListClassesRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ListClassesRequestSchema: GenMessage<ListClassesRequest>;
|
||||
/**
|
||||
* @generated from message camino.RegisteredClass
|
||||
*/
|
||||
export type RegisteredClass = Message<"camino.RegisteredClass"> & {
|
||||
/**
|
||||
* @generated from field: string id = 1;
|
||||
*/
|
||||
id: string;
|
||||
/**
|
||||
* @generated from field: camino.ClassSchema schema = 2;
|
||||
*/
|
||||
schema?: ClassSchema | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.RegisteredClass.
|
||||
* Use `create(RegisteredClassSchema)` to create a new message.
|
||||
*/
|
||||
export declare const RegisteredClassSchema: GenMessage<RegisteredClass>;
|
||||
/**
|
||||
* @generated from message camino.ListClassesResponse
|
||||
*/
|
||||
export type ListClassesResponse = Message<"camino.ListClassesResponse"> & {
|
||||
/**
|
||||
* @generated from field: repeated camino.RegisteredClass classes = 1;
|
||||
*/
|
||||
classes: RegisteredClass[];
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ListClassesResponse.
|
||||
* Use `create(ListClassesResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ListClassesResponseSchema: GenMessage<ListClassesResponse>;
|
||||
/**
|
||||
* @generated from message camino.NullValue
|
||||
*/
|
||||
export type NullValue = Message<"camino.NullValue"> & {};
|
||||
/**
|
||||
* Describes the message camino.NullValue.
|
||||
* Use `create(NullValueSchema)` to create a new message.
|
||||
*/
|
||||
export declare const NullValueSchema: GenMessage<NullValue>;
|
||||
/**
|
||||
* @generated from message camino.ObjectValue
|
||||
*/
|
||||
export type ObjectValue = Message<"camino.ObjectValue"> & {
|
||||
/**
|
||||
* @generated from field: map<string, camino.Value> fields = 1;
|
||||
*/
|
||||
fields: {
|
||||
[key: string]: Value;
|
||||
};
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ObjectValue.
|
||||
* Use `create(ObjectValueSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ObjectValueSchema: GenMessage<ObjectValue>;
|
||||
/**
|
||||
* @generated from message camino.ListValue
|
||||
*/
|
||||
export type ListValue = Message<"camino.ListValue"> & {
|
||||
/**
|
||||
* @generated from field: repeated camino.Value values = 1;
|
||||
*/
|
||||
values: Value[];
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ListValue.
|
||||
* Use `create(ListValueSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ListValueSchema: GenMessage<ListValue>;
|
||||
/**
|
||||
* @generated from message camino.RefValue
|
||||
*/
|
||||
export type RefValue = Message<"camino.RefValue"> & {
|
||||
/**
|
||||
* @generated from field: string object_id = 1;
|
||||
*/
|
||||
objectId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.RefValue.
|
||||
* Use `create(RefValueSchema)` to create a new message.
|
||||
*/
|
||||
export declare const RefValueSchema: GenMessage<RefValue>;
|
||||
/**
|
||||
* @generated from message camino.CrdtValue
|
||||
*/
|
||||
export type CrdtValue = Message<"camino.CrdtValue"> & {
|
||||
/**
|
||||
* @generated from field: string type = 1;
|
||||
*/
|
||||
type: string;
|
||||
/**
|
||||
* @generated from field: string encoding = 2;
|
||||
*/
|
||||
encoding: string;
|
||||
/**
|
||||
* @generated from field: bytes payload = 3;
|
||||
*/
|
||||
payload: Uint8Array;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.CrdtValue.
|
||||
* Use `create(CrdtValueSchema)` to create a new message.
|
||||
*/
|
||||
export declare const CrdtValueSchema: GenMessage<CrdtValue>;
|
||||
/**
|
||||
* @generated from message camino.FieldValueSource
|
||||
*/
|
||||
export type FieldValueSource = Message<"camino.FieldValueSource"> & {
|
||||
/**
|
||||
* @generated from field: string object_id = 1;
|
||||
*/
|
||||
objectId: string;
|
||||
/**
|
||||
* @generated from field: string field_name = 2;
|
||||
*/
|
||||
fieldName: string;
|
||||
/**
|
||||
* @generated from field: string field_type = 3;
|
||||
*/
|
||||
fieldType: string;
|
||||
/**
|
||||
* @generated from field: string field_storage = 4;
|
||||
*/
|
||||
fieldStorage: string;
|
||||
/**
|
||||
* @generated from field: string conflict_strategy = 5;
|
||||
*/
|
||||
conflictStrategy: string;
|
||||
/**
|
||||
* @generated from field: uint64 revision = 6;
|
||||
*/
|
||||
revision: bigint;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.FieldValueSource.
|
||||
* Use `create(FieldValueSourceSchema)` to create a new message.
|
||||
*/
|
||||
export declare const FieldValueSourceSchema: GenMessage<FieldValueSource>;
|
||||
/**
|
||||
* @generated from message camino.ValueSource
|
||||
*/
|
||||
export type ValueSource = Message<"camino.ValueSource"> & {
|
||||
/**
|
||||
* @generated from field: camino.FieldValueSource field = 1;
|
||||
*/
|
||||
field?: FieldValueSource | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ValueSource.
|
||||
* Use `create(ValueSourceSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ValueSourceSchema: GenMessage<ValueSource>;
|
||||
/**
|
||||
* @generated from message camino.Value
|
||||
*/
|
||||
export type Value = Message<"camino.Value"> & {
|
||||
/**
|
||||
* @generated from oneof camino.Value.kind
|
||||
*/
|
||||
kind: {
|
||||
/**
|
||||
* @generated from field: camino.NullValue null_value = 1;
|
||||
*/
|
||||
value: NullValue;
|
||||
case: "nullValue";
|
||||
} | {
|
||||
/**
|
||||
* @generated from field: bool bool_value = 2;
|
||||
*/
|
||||
value: boolean;
|
||||
case: "boolValue";
|
||||
} | {
|
||||
/**
|
||||
* @generated from field: double number_value = 3;
|
||||
*/
|
||||
value: number;
|
||||
case: "numberValue";
|
||||
} | {
|
||||
/**
|
||||
* @generated from field: string string_value = 4;
|
||||
*/
|
||||
value: string;
|
||||
case: "stringValue";
|
||||
} | {
|
||||
/**
|
||||
* @generated from field: string integer_value = 5;
|
||||
*/
|
||||
value: string;
|
||||
case: "integerValue";
|
||||
} | {
|
||||
/**
|
||||
* @generated from field: bytes bytes_value = 6;
|
||||
*/
|
||||
value: Uint8Array;
|
||||
case: "bytesValue";
|
||||
} | {
|
||||
/**
|
||||
* @generated from field: camino.ObjectValue object_value = 7;
|
||||
*/
|
||||
value: ObjectValue;
|
||||
case: "objectValue";
|
||||
} | {
|
||||
/**
|
||||
* @generated from field: camino.ListValue list_value = 8;
|
||||
*/
|
||||
value: ListValue;
|
||||
case: "listValue";
|
||||
} | {
|
||||
/**
|
||||
* @generated from field: camino.RefValue ref_value = 9;
|
||||
*/
|
||||
value: RefValue;
|
||||
case: "refValue";
|
||||
} | {
|
||||
/**
|
||||
* @generated from field: camino.CrdtValue crdt_value = 10;
|
||||
*/
|
||||
value: CrdtValue;
|
||||
case: "crdtValue";
|
||||
} | {
|
||||
case: undefined;
|
||||
value?: undefined;
|
||||
};
|
||||
/**
|
||||
* @generated from field: camino.ValueSource source = 11;
|
||||
*/
|
||||
source?: ValueSource | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.Value.
|
||||
* Use `create(ValueSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ValueSchema: GenMessage<Value>;
|
||||
/**
|
||||
* @generated from message camino.CreateObjectRequest
|
||||
*/
|
||||
export type CreateObjectRequest = Message<"camino.CreateObjectRequest"> & {
|
||||
/**
|
||||
* @generated from field: string class_id = 1;
|
||||
*/
|
||||
classId: string;
|
||||
/**
|
||||
* @generated from field: map<string, camino.Value> fields = 2;
|
||||
*/
|
||||
fields: {
|
||||
[key: string]: Value;
|
||||
};
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.CreateObjectRequest.
|
||||
* Use `create(CreateObjectRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const CreateObjectRequestSchema: GenMessage<CreateObjectRequest>;
|
||||
/**
|
||||
* @generated from message camino.CreateObjectResponse
|
||||
*/
|
||||
export type CreateObjectResponse = Message<"camino.CreateObjectResponse"> & {
|
||||
/**
|
||||
* @generated from field: camino.CaminoObject object = 1;
|
||||
*/
|
||||
object?: CaminoObject | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.CreateObjectResponse.
|
||||
* Use `create(CreateObjectResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const CreateObjectResponseSchema: GenMessage<CreateObjectResponse>;
|
||||
/**
|
||||
* @generated from message camino.GetObjectRequest
|
||||
*/
|
||||
export type GetObjectRequest = Message<"camino.GetObjectRequest"> & {
|
||||
/**
|
||||
* @generated from field: string object_id = 1;
|
||||
*/
|
||||
objectId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.GetObjectRequest.
|
||||
* Use `create(GetObjectRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const GetObjectRequestSchema: GenMessage<GetObjectRequest>;
|
||||
/**
|
||||
* @generated from message camino.GetObjectResponse
|
||||
*/
|
||||
export type GetObjectResponse = Message<"camino.GetObjectResponse"> & {
|
||||
/**
|
||||
* @generated from field: camino.CaminoObject object = 1;
|
||||
*/
|
||||
object?: CaminoObject | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.GetObjectResponse.
|
||||
* Use `create(GetObjectResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const GetObjectResponseSchema: GenMessage<GetObjectResponse>;
|
||||
/**
|
||||
* @generated from message camino.ListObjectsRequest
|
||||
*/
|
||||
export type ListObjectsRequest = Message<"camino.ListObjectsRequest"> & {
|
||||
/**
|
||||
* @generated from field: string class_id = 1;
|
||||
*/
|
||||
classId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ListObjectsRequest.
|
||||
* Use `create(ListObjectsRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ListObjectsRequestSchema: GenMessage<ListObjectsRequest>;
|
||||
/**
|
||||
* @generated from message camino.ListObjectsResponse
|
||||
*/
|
||||
export type ListObjectsResponse = Message<"camino.ListObjectsResponse"> & {
|
||||
/**
|
||||
* @generated from field: repeated camino.CaminoObject objects = 1;
|
||||
*/
|
||||
objects: CaminoObject[];
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ListObjectsResponse.
|
||||
* Use `create(ListObjectsResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ListObjectsResponseSchema: GenMessage<ListObjectsResponse>;
|
||||
/**
|
||||
* @generated from message camino.SetFieldRequest
|
||||
*/
|
||||
export type SetFieldRequest = Message<"camino.SetFieldRequest"> & {
|
||||
/**
|
||||
* @generated from field: string object_id = 1;
|
||||
*/
|
||||
objectId: string;
|
||||
/**
|
||||
* @generated from field: string field_name = 2;
|
||||
*/
|
||||
fieldName: string;
|
||||
/**
|
||||
* @generated from field: camino.Value value = 3;
|
||||
*/
|
||||
value?: Value | undefined;
|
||||
/**
|
||||
* @generated from field: string client_mutation_id = 4;
|
||||
*/
|
||||
clientMutationId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.SetFieldRequest.
|
||||
* Use `create(SetFieldRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const SetFieldRequestSchema: GenMessage<SetFieldRequest>;
|
||||
/**
|
||||
* @generated from message camino.SetFieldResponse
|
||||
*/
|
||||
export type SetFieldResponse = Message<"camino.SetFieldResponse"> & {
|
||||
/**
|
||||
* @generated from field: camino.CaminoObject object = 1;
|
||||
*/
|
||||
object?: CaminoObject | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.SetFieldResponse.
|
||||
* Use `create(SetFieldResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const SetFieldResponseSchema: GenMessage<SetFieldResponse>;
|
||||
/**
|
||||
* @generated from message camino.AddEdgeRequest
|
||||
*/
|
||||
export type AddEdgeRequest = Message<"camino.AddEdgeRequest"> & {
|
||||
/**
|
||||
* @generated from field: string from_object_id = 1;
|
||||
*/
|
||||
fromObjectId: string;
|
||||
/**
|
||||
* @generated from field: string source_field = 2;
|
||||
*/
|
||||
sourceField: string;
|
||||
/**
|
||||
* @generated from field: string to_object_id = 3;
|
||||
*/
|
||||
toObjectId: string;
|
||||
/**
|
||||
* @generated from field: map<string, camino.Value> fields = 4;
|
||||
*/
|
||||
fields: {
|
||||
[key: string]: Value;
|
||||
};
|
||||
/**
|
||||
* @generated from field: optional int32 ordinal = 5;
|
||||
*/
|
||||
ordinal?: number | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.AddEdgeRequest.
|
||||
* Use `create(AddEdgeRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const AddEdgeRequestSchema: GenMessage<AddEdgeRequest>;
|
||||
/**
|
||||
* @generated from message camino.AddEdgeResponse
|
||||
*/
|
||||
export type AddEdgeResponse = Message<"camino.AddEdgeResponse"> & {
|
||||
/**
|
||||
* @generated from field: camino.CaminoEdge edge = 1;
|
||||
*/
|
||||
edge?: CaminoEdge | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.AddEdgeResponse.
|
||||
* Use `create(AddEdgeResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const AddEdgeResponseSchema: GenMessage<AddEdgeResponse>;
|
||||
/**
|
||||
* @generated from message camino.ListEdgesRequest
|
||||
*/
|
||||
export type ListEdgesRequest = Message<"camino.ListEdgesRequest"> & {
|
||||
/**
|
||||
* @generated from field: string object_id = 1;
|
||||
*/
|
||||
objectId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ListEdgesRequest.
|
||||
* Use `create(ListEdgesRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ListEdgesRequestSchema: GenMessage<ListEdgesRequest>;
|
||||
/**
|
||||
* @generated from message camino.ListEdgesResponse
|
||||
*/
|
||||
export type ListEdgesResponse = Message<"camino.ListEdgesResponse"> & {
|
||||
/**
|
||||
* @generated from field: repeated camino.CaminoEdge edges = 1;
|
||||
*/
|
||||
edges: CaminoEdge[];
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ListEdgesResponse.
|
||||
* Use `create(ListEdgesResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ListEdgesResponseSchema: GenMessage<ListEdgesResponse>;
|
||||
/**
|
||||
* @generated from message camino.RemoveEdgeRequest
|
||||
*/
|
||||
export type RemoveEdgeRequest = Message<"camino.RemoveEdgeRequest"> & {
|
||||
/**
|
||||
* @generated from field: string edge_id = 1;
|
||||
*/
|
||||
edgeId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.RemoveEdgeRequest.
|
||||
* Use `create(RemoveEdgeRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const RemoveEdgeRequestSchema: GenMessage<RemoveEdgeRequest>;
|
||||
/**
|
||||
* @generated from message camino.RemoveEdgeResponse
|
||||
*/
|
||||
export type RemoveEdgeResponse = Message<"camino.RemoveEdgeResponse"> & {
|
||||
/**
|
||||
* @generated from field: string edge_id = 1;
|
||||
*/
|
||||
edgeId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.RemoveEdgeResponse.
|
||||
* Use `create(RemoveEdgeResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const RemoveEdgeResponseSchema: GenMessage<RemoveEdgeResponse>;
|
||||
/**
|
||||
* @generated from message camino.ListOpsRequest
|
||||
*/
|
||||
export type ListOpsRequest = Message<"camino.ListOpsRequest"> & {
|
||||
/**
|
||||
* @generated from field: string object_id = 1;
|
||||
*/
|
||||
objectId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ListOpsRequest.
|
||||
* Use `create(ListOpsRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ListOpsRequestSchema: GenMessage<ListOpsRequest>;
|
||||
/**
|
||||
* @generated from message camino.ListOpsResponse
|
||||
*/
|
||||
export type ListOpsResponse = Message<"camino.ListOpsResponse"> & {
|
||||
/**
|
||||
* @generated from field: repeated camino.CaminoOp ops = 1;
|
||||
*/
|
||||
ops: CaminoOp[];
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ListOpsResponse.
|
||||
* Use `create(ListOpsResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ListOpsResponseSchema: GenMessage<ListOpsResponse>;
|
||||
/**
|
||||
* @generated from message camino.WatchObjectRequest
|
||||
*/
|
||||
export type WatchObjectRequest = Message<"camino.WatchObjectRequest"> & {
|
||||
/**
|
||||
* @generated from field: string object_id = 1;
|
||||
*/
|
||||
objectId: string;
|
||||
/**
|
||||
* @generated from field: string after_op_id = 2;
|
||||
*/
|
||||
afterOpId: string;
|
||||
/**
|
||||
* @generated from field: bool include_snapshot = 3;
|
||||
*/
|
||||
includeSnapshot: boolean;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.WatchObjectRequest.
|
||||
* Use `create(WatchObjectRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const WatchObjectRequestSchema: GenMessage<WatchObjectRequest>;
|
||||
/**
|
||||
* @generated from message camino.WatchObjectEvent
|
||||
*/
|
||||
export type WatchObjectEvent = Message<"camino.WatchObjectEvent"> & {
|
||||
/**
|
||||
* @generated from field: string object_id = 1;
|
||||
*/
|
||||
objectId: string;
|
||||
/**
|
||||
* @generated from field: camino.CaminoObject snapshot = 2;
|
||||
*/
|
||||
snapshot?: CaminoObject | undefined;
|
||||
/**
|
||||
* @generated from field: camino.CaminoOp op = 3;
|
||||
*/
|
||||
op?: CaminoOp | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.WatchObjectEvent.
|
||||
* Use `create(WatchObjectEventSchema)` to create a new message.
|
||||
*/
|
||||
export declare const WatchObjectEventSchema: GenMessage<WatchObjectEvent>;
|
||||
/**
|
||||
* @generated from message camino.CaminoObject
|
||||
*/
|
||||
export type CaminoObject = Message<"camino.CaminoObject"> & {
|
||||
/**
|
||||
* @generated from field: string id = 1;
|
||||
*/
|
||||
id: string;
|
||||
/**
|
||||
* @generated from field: string class_id = 2;
|
||||
*/
|
||||
classId: string;
|
||||
/**
|
||||
* @generated from field: uint32 schema_version = 3;
|
||||
*/
|
||||
schemaVersion: number;
|
||||
/**
|
||||
* @generated from field: string created_at = 4;
|
||||
*/
|
||||
createdAt: string;
|
||||
/**
|
||||
* @generated from field: string updated_at = 5;
|
||||
*/
|
||||
updatedAt: string;
|
||||
/**
|
||||
* @generated from field: map<string, camino.Value> fields = 6;
|
||||
*/
|
||||
fields: {
|
||||
[key: string]: Value;
|
||||
};
|
||||
/**
|
||||
* @generated from field: map<string, uint64> field_revisions = 7;
|
||||
*/
|
||||
fieldRevisions: {
|
||||
[key: string]: bigint;
|
||||
};
|
||||
/**
|
||||
* @generated from field: map<string, string> field_conflicts = 8;
|
||||
*/
|
||||
fieldConflicts: {
|
||||
[key: string]: string;
|
||||
};
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.CaminoObject.
|
||||
* Use `create(CaminoObjectSchema)` to create a new message.
|
||||
*/
|
||||
export declare const CaminoObjectSchema: GenMessage<CaminoObject>;
|
||||
/**
|
||||
* @generated from message camino.CaminoEdge
|
||||
*/
|
||||
export type CaminoEdge = Message<"camino.CaminoEdge"> & {
|
||||
/**
|
||||
* @generated from field: string id = 1;
|
||||
*/
|
||||
id: string;
|
||||
/**
|
||||
* @generated from field: string edge_type_id = 2;
|
||||
*/
|
||||
edgeTypeId: string;
|
||||
/**
|
||||
* @generated from field: string from_object_id = 3;
|
||||
*/
|
||||
fromObjectId: string;
|
||||
/**
|
||||
* @generated from field: string to_object_id = 4;
|
||||
*/
|
||||
toObjectId: string;
|
||||
/**
|
||||
* @generated from field: string source_field = 5;
|
||||
*/
|
||||
sourceField: string;
|
||||
/**
|
||||
* @generated from field: string cardinality = 6;
|
||||
*/
|
||||
cardinality: string;
|
||||
/**
|
||||
* @generated from field: string inverse = 7;
|
||||
*/
|
||||
inverse: string;
|
||||
/**
|
||||
* @generated from field: map<string, camino.Value> fields = 8;
|
||||
*/
|
||||
fields: {
|
||||
[key: string]: Value;
|
||||
};
|
||||
/**
|
||||
* @generated from field: optional int32 ordinal = 9;
|
||||
*/
|
||||
ordinal?: number | undefined;
|
||||
/**
|
||||
* @generated from field: string created_at = 10;
|
||||
*/
|
||||
createdAt: string;
|
||||
/**
|
||||
* @generated from field: string updated_at = 11;
|
||||
*/
|
||||
updatedAt: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.CaminoEdge.
|
||||
* Use `create(CaminoEdgeSchema)` to create a new message.
|
||||
*/
|
||||
export declare const CaminoEdgeSchema: GenMessage<CaminoEdge>;
|
||||
/**
|
||||
* @generated from message camino.CaminoOp
|
||||
*/
|
||||
export type CaminoOp = Message<"camino.CaminoOp"> & {
|
||||
/**
|
||||
* @generated from field: string id = 1;
|
||||
*/
|
||||
id: string;
|
||||
/**
|
||||
* @generated from field: string object_id = 2;
|
||||
*/
|
||||
objectId: string;
|
||||
/**
|
||||
* @generated from field: string op_kind = 3;
|
||||
*/
|
||||
opKind: string;
|
||||
/**
|
||||
* @generated from field: camino.Value payload = 4;
|
||||
*/
|
||||
payload?: Value | undefined;
|
||||
/**
|
||||
* @generated from field: string actor = 5;
|
||||
*/
|
||||
actor: string;
|
||||
/**
|
||||
* @generated from field: quixos.FunctionRef function_ref = 6;
|
||||
*/
|
||||
functionRef?: FunctionRef | undefined;
|
||||
/**
|
||||
* @generated from field: string created_at = 7;
|
||||
*/
|
||||
createdAt: string;
|
||||
/**
|
||||
* @generated from field: string client_mutation_id = 8;
|
||||
*/
|
||||
clientMutationId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.CaminoOp.
|
||||
* Use `create(CaminoOpSchema)` to create a new message.
|
||||
*/
|
||||
export declare const CaminoOpSchema: GenMessage<CaminoOp>;
|
||||
/**
|
||||
* @generated from service camino.CaminoService
|
||||
*/
|
||||
export declare const CaminoService: GenService<{
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.RegisterSchema
|
||||
*/
|
||||
registerSchema: {
|
||||
methodKind: "unary";
|
||||
input: typeof RegisterSchemaRequestSchema;
|
||||
output: typeof RegisterSchemaResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.ListClasses
|
||||
*/
|
||||
listClasses: {
|
||||
methodKind: "unary";
|
||||
input: typeof ListClassesRequestSchema;
|
||||
output: typeof ListClassesResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.CreateObject
|
||||
*/
|
||||
createObject: {
|
||||
methodKind: "unary";
|
||||
input: typeof CreateObjectRequestSchema;
|
||||
output: typeof CreateObjectResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.GetObject
|
||||
*/
|
||||
getObject: {
|
||||
methodKind: "unary";
|
||||
input: typeof GetObjectRequestSchema;
|
||||
output: typeof GetObjectResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.ListObjects
|
||||
*/
|
||||
listObjects: {
|
||||
methodKind: "unary";
|
||||
input: typeof ListObjectsRequestSchema;
|
||||
output: typeof ListObjectsResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.SetField
|
||||
*/
|
||||
setField: {
|
||||
methodKind: "unary";
|
||||
input: typeof SetFieldRequestSchema;
|
||||
output: typeof SetFieldResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.AddEdge
|
||||
*/
|
||||
addEdge: {
|
||||
methodKind: "unary";
|
||||
input: typeof AddEdgeRequestSchema;
|
||||
output: typeof AddEdgeResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.ListEdges
|
||||
*/
|
||||
listEdges: {
|
||||
methodKind: "unary";
|
||||
input: typeof ListEdgesRequestSchema;
|
||||
output: typeof ListEdgesResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.RemoveEdge
|
||||
*/
|
||||
removeEdge: {
|
||||
methodKind: "unary";
|
||||
input: typeof RemoveEdgeRequestSchema;
|
||||
output: typeof RemoveEdgeResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.ListOps
|
||||
*/
|
||||
listOps: {
|
||||
methodKind: "unary";
|
||||
input: typeof ListOpsRequestSchema;
|
||||
output: typeof ListOpsResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.WatchObject
|
||||
*/
|
||||
watchObject: {
|
||||
methodKind: "server_streaming";
|
||||
input: typeof WatchObjectRequestSchema;
|
||||
output: typeof WatchObjectEventSchema;
|
||||
};
|
||||
}>;
|
||||
//# sourceMappingURL=api_pb.d.ts.map
|
||||
Vendored
+1
File diff suppressed because one or more lines are too long
Vendored
+184
File diff suppressed because one or more lines are too long
Vendored
+693
@@ -0,0 +1,693 @@
|
||||
import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
||||
import type { FunctionRef } from "../quixos/refs_pb.js";
|
||||
import type { Message } from "@bufbuild/protobuf";
|
||||
/**
|
||||
* Describes the file camino/schema.proto.
|
||||
*/
|
||||
export declare const file_camino_schema: GenFile;
|
||||
/**
|
||||
* @generated from message camino.SymbolRef
|
||||
*/
|
||||
export type SymbolRef = Message<"camino.SymbolRef"> & {
|
||||
/**
|
||||
* @generated from field: string namespace = 1;
|
||||
*/
|
||||
namespace: string;
|
||||
/**
|
||||
* @generated from field: string name = 2;
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* @generated from field: string version = 3;
|
||||
*/
|
||||
version: string;
|
||||
/**
|
||||
* @generated from field: string hash = 4;
|
||||
*/
|
||||
hash: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.SymbolRef.
|
||||
* Use `create(SymbolRefSchema)` to create a new message.
|
||||
*/
|
||||
export declare const SymbolRefSchema: GenMessage<SymbolRef>;
|
||||
/**
|
||||
* @generated from message camino.Ref
|
||||
*/
|
||||
export type Ref = Message<"camino.Ref"> & {
|
||||
/**
|
||||
* @generated from field: string object_id = 1;
|
||||
*/
|
||||
objectId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.Ref.
|
||||
* Use `create(RefSchema)` to create a new message.
|
||||
*/
|
||||
export declare const RefSchema: GenMessage<Ref>;
|
||||
/**
|
||||
* @generated from message camino.CustomField
|
||||
*/
|
||||
export type CustomField = Message<"camino.CustomField"> & {};
|
||||
/**
|
||||
* Describes the message camino.CustomField.
|
||||
* Use `create(CustomFieldSchema)` to create a new message.
|
||||
*/
|
||||
export declare const CustomFieldSchema: GenMessage<CustomField>;
|
||||
/**
|
||||
* @generated from message camino.WatchStartResult
|
||||
*/
|
||||
export type WatchStartResult = Message<"camino.WatchStartResult"> & {
|
||||
/**
|
||||
* @generated from field: string watch_id = 1;
|
||||
*/
|
||||
watchId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.WatchStartResult.
|
||||
* Use `create(WatchStartResultSchema)` to create a new message.
|
||||
*/
|
||||
export declare const WatchStartResultSchema: GenMessage<WatchStartResult>;
|
||||
/**
|
||||
* @generated from message camino.WatchStopRequest
|
||||
*/
|
||||
export type WatchStopRequest = Message<"camino.WatchStopRequest"> & {
|
||||
/**
|
||||
* @generated from field: string watch_id = 1;
|
||||
*/
|
||||
watchId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.WatchStopRequest.
|
||||
* Use `create(WatchStopRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const WatchStopRequestSchema: GenMessage<WatchStopRequest>;
|
||||
/**
|
||||
* @generated from message camino.WatchStopResult
|
||||
*/
|
||||
export type WatchStopResult = Message<"camino.WatchStopResult"> & {};
|
||||
/**
|
||||
* Describes the message camino.WatchStopResult.
|
||||
* Use `create(WatchStopResultSchema)` to create a new message.
|
||||
*/
|
||||
export declare const WatchStopResultSchema: GenMessage<WatchStopResult>;
|
||||
/**
|
||||
* @generated from message camino.CrdtText
|
||||
*/
|
||||
export type CrdtText = Message<"camino.CrdtText"> & {
|
||||
/**
|
||||
* @generated from field: bytes payload = 1;
|
||||
*/
|
||||
payload: Uint8Array;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.CrdtText.
|
||||
* Use `create(CrdtTextSchema)` to create a new message.
|
||||
*/
|
||||
export declare const CrdtTextSchema: GenMessage<CrdtText>;
|
||||
/**
|
||||
* @generated from message camino.CrdtRichText
|
||||
*/
|
||||
export type CrdtRichText = Message<"camino.CrdtRichText"> & {
|
||||
/**
|
||||
* @generated from field: bytes payload = 1;
|
||||
*/
|
||||
payload: Uint8Array;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.CrdtRichText.
|
||||
* Use `create(CrdtRichTextSchema)` to create a new message.
|
||||
*/
|
||||
export declare const CrdtRichTextSchema: GenMessage<CrdtRichText>;
|
||||
/**
|
||||
* @generated from message camino.CrdtJson
|
||||
*/
|
||||
export type CrdtJson = Message<"camino.CrdtJson"> & {
|
||||
/**
|
||||
* @generated from field: bytes payload = 1;
|
||||
*/
|
||||
payload: Uint8Array;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.CrdtJson.
|
||||
* Use `create(CrdtJsonSchema)` to create a new message.
|
||||
*/
|
||||
export declare const CrdtJsonSchema: GenMessage<CrdtJson>;
|
||||
/**
|
||||
* @generated from message camino.ClassSchema
|
||||
*/
|
||||
export type ClassSchema = Message<"camino.ClassSchema"> & {
|
||||
/**
|
||||
* @generated from field: camino.SymbolRef id = 1;
|
||||
*/
|
||||
id?: SymbolRef | undefined;
|
||||
/**
|
||||
* @generated from field: uint32 version = 2;
|
||||
*/
|
||||
version: number;
|
||||
/**
|
||||
* @generated from field: repeated camino.FieldSchema fields = 3;
|
||||
*/
|
||||
fields: FieldSchema[];
|
||||
/**
|
||||
* @generated from field: repeated camino.EdgeSchema edges = 4;
|
||||
*/
|
||||
edges: EdgeSchema[];
|
||||
/**
|
||||
* @generated from field: repeated camino.MethodSchema methods = 5;
|
||||
*/
|
||||
methods: MethodSchema[];
|
||||
/**
|
||||
* @generated from field: repeated camino.MigrationSpec migrations = 6;
|
||||
*/
|
||||
migrations: MigrationSpec[];
|
||||
/**
|
||||
* @generated from field: string source_file = 7;
|
||||
*/
|
||||
sourceFile: string;
|
||||
/**
|
||||
* @generated from field: string proto_message = 8;
|
||||
*/
|
||||
protoMessage: string;
|
||||
/**
|
||||
* @generated from field: repeated camino.OperationServiceSchema operation_services = 9;
|
||||
*/
|
||||
operationServices: OperationServiceSchema[];
|
||||
/**
|
||||
* @generated from field: repeated camino.InterfaceImplementationSchema implements = 10;
|
||||
*/
|
||||
implements: InterfaceImplementationSchema[];
|
||||
/**
|
||||
* @generated from field: camino.ConstructorSpec constructor = 11;
|
||||
*/
|
||||
constructor$?: ConstructorSpec | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ClassSchema.
|
||||
* Use `create(ClassSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ClassSchemaSchema: GenMessage<ClassSchema>;
|
||||
/**
|
||||
* @generated from message camino.FieldSchema
|
||||
*/
|
||||
export type FieldSchema = Message<"camino.FieldSchema"> & {
|
||||
/**
|
||||
* @generated from field: string name = 1;
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* @generated from field: uint32 tag = 2;
|
||||
*/
|
||||
tag: number;
|
||||
/**
|
||||
* @generated from field: camino.TypeRef type = 3;
|
||||
*/
|
||||
type?: TypeRef | undefined;
|
||||
/**
|
||||
* @generated from field: camino.ConflictStrategy conflict = 4;
|
||||
*/
|
||||
conflict: ConflictStrategy;
|
||||
/**
|
||||
* @generated from field: bool repeated = 5;
|
||||
*/
|
||||
repeated: boolean;
|
||||
/**
|
||||
* @generated from field: bool optional = 6;
|
||||
*/
|
||||
optional: boolean;
|
||||
/**
|
||||
* @generated from field: camino.FieldStorage storage = 7;
|
||||
*/
|
||||
storage?: FieldStorage | undefined;
|
||||
/**
|
||||
* @generated from field: camino.FieldOps ops = 8;
|
||||
*/
|
||||
ops?: FieldOps | undefined;
|
||||
/**
|
||||
* @generated from field: camino.InterfaceFieldContract interface_contract = 9;
|
||||
*/
|
||||
interfaceContract?: InterfaceFieldContract | undefined;
|
||||
/**
|
||||
* @generated from field: bool is_display_label = 10;
|
||||
*/
|
||||
isDisplayLabel: boolean;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.FieldSchema.
|
||||
* Use `create(FieldSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export declare const FieldSchemaSchema: GenMessage<FieldSchema>;
|
||||
/**
|
||||
* @generated from message camino.FieldStorage
|
||||
*/
|
||||
export type FieldStorage = Message<"camino.FieldStorage"> & {
|
||||
/**
|
||||
* @generated from field: camino.FieldStorageKind kind = 1;
|
||||
*/
|
||||
kind: FieldStorageKind;
|
||||
/**
|
||||
* @generated from field: quixos.FunctionRef resolver = 2;
|
||||
*/
|
||||
resolver?: FunctionRef | undefined;
|
||||
/**
|
||||
* @generated from field: bool cache = 3;
|
||||
*/
|
||||
cache: boolean;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.FieldStorage.
|
||||
* Use `create(FieldStorageSchema)` to create a new message.
|
||||
*/
|
||||
export declare const FieldStorageSchema: GenMessage<FieldStorage>;
|
||||
/**
|
||||
* @generated from message camino.TypeRef
|
||||
*/
|
||||
export type TypeRef = Message<"camino.TypeRef"> & {
|
||||
/**
|
||||
* @generated from field: string proto_type = 1;
|
||||
*/
|
||||
protoType: string;
|
||||
/**
|
||||
* @generated from field: camino.SymbolRef symbol = 2;
|
||||
*/
|
||||
symbol?: SymbolRef | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.TypeRef.
|
||||
* Use `create(TypeRefSchema)` to create a new message.
|
||||
*/
|
||||
export declare const TypeRefSchema: GenMessage<TypeRef>;
|
||||
/**
|
||||
* @generated from message camino.TypeBinding
|
||||
*/
|
||||
export type TypeBinding = Message<"camino.TypeBinding"> & {
|
||||
/**
|
||||
* @generated from field: string name = 1;
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* @generated from field: camino.TypeRef type = 2;
|
||||
*/
|
||||
type?: TypeRef | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.TypeBinding.
|
||||
* Use `create(TypeBindingSchema)` to create a new message.
|
||||
*/
|
||||
export declare const TypeBindingSchema: GenMessage<TypeBinding>;
|
||||
/**
|
||||
* @generated from message camino.InterfaceFieldContract
|
||||
*/
|
||||
export type InterfaceFieldContract = Message<"camino.InterfaceFieldContract"> & {
|
||||
/**
|
||||
* @generated from field: bool required = 1;
|
||||
*/
|
||||
required: boolean;
|
||||
/**
|
||||
* @generated from field: bool readable = 2;
|
||||
*/
|
||||
readable: boolean;
|
||||
/**
|
||||
* @generated from field: bool writable = 3;
|
||||
*/
|
||||
writable: boolean;
|
||||
/**
|
||||
* @generated from field: bool watchable = 4;
|
||||
*/
|
||||
watchable: boolean;
|
||||
/**
|
||||
* @generated from field: string type_param = 5;
|
||||
*/
|
||||
typeParam: string;
|
||||
/**
|
||||
* @generated from field: camino.TypeRef type = 6;
|
||||
*/
|
||||
type?: TypeRef | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.InterfaceFieldContract.
|
||||
* Use `create(InterfaceFieldContractSchema)` to create a new message.
|
||||
*/
|
||||
export declare const InterfaceFieldContractSchema: GenMessage<InterfaceFieldContract>;
|
||||
/**
|
||||
* @generated from message camino.InterfaceImplementationSchema
|
||||
*/
|
||||
export type InterfaceImplementationSchema = Message<"camino.InterfaceImplementationSchema"> & {
|
||||
/**
|
||||
* @generated from field: camino.SymbolRef interface = 1;
|
||||
*/
|
||||
interface?: SymbolRef | undefined;
|
||||
/**
|
||||
* @generated from field: repeated camino.TypeBinding type_bindings = 2;
|
||||
*/
|
||||
typeBindings: TypeBinding[];
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.InterfaceImplementationSchema.
|
||||
* Use `create(InterfaceImplementationSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export declare const InterfaceImplementationSchemaSchema: GenMessage<InterfaceImplementationSchema>;
|
||||
/**
|
||||
* @generated from message camino.InterfaceSchema
|
||||
*/
|
||||
export type InterfaceSchema = Message<"camino.InterfaceSchema"> & {
|
||||
/**
|
||||
* @generated from field: camino.SymbolRef id = 1;
|
||||
*/
|
||||
id?: SymbolRef | undefined;
|
||||
/**
|
||||
* @generated from field: uint32 version = 2;
|
||||
*/
|
||||
version: number;
|
||||
/**
|
||||
* @generated from field: repeated camino.FieldSchema fields = 3;
|
||||
*/
|
||||
fields: FieldSchema[];
|
||||
/**
|
||||
* @generated from field: string source_file = 4;
|
||||
*/
|
||||
sourceFile: string;
|
||||
/**
|
||||
* @generated from field: string proto_message = 5;
|
||||
*/
|
||||
protoMessage: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.InterfaceSchema.
|
||||
* Use `create(InterfaceSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export declare const InterfaceSchemaSchema: GenMessage<InterfaceSchema>;
|
||||
/**
|
||||
* @generated from message camino.FieldOps
|
||||
*/
|
||||
export type FieldOps = Message<"camino.FieldOps"> & {
|
||||
/**
|
||||
* @generated from field: camino.FieldImplementation implementation = 1;
|
||||
*/
|
||||
implementation: FieldImplementation;
|
||||
/**
|
||||
* @generated from field: string service = 2;
|
||||
*/
|
||||
service: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.FieldOps.
|
||||
* Use `create(FieldOpsSchema)` to create a new message.
|
||||
*/
|
||||
export declare const FieldOpsSchema: GenMessage<FieldOps>;
|
||||
/**
|
||||
* @generated from message camino.EdgeSchema
|
||||
*/
|
||||
export type EdgeSchema = Message<"camino.EdgeSchema"> & {
|
||||
/**
|
||||
* @generated from field: camino.SymbolRef id = 1;
|
||||
*/
|
||||
id?: SymbolRef | undefined;
|
||||
/**
|
||||
* @generated from field: string source_field = 2;
|
||||
*/
|
||||
sourceField: string;
|
||||
/**
|
||||
* @generated from field: camino.SymbolRef from_class = 3;
|
||||
*/
|
||||
fromClass?: SymbolRef | undefined;
|
||||
/**
|
||||
* @generated from field: camino.SymbolRef to_class = 4;
|
||||
*/
|
||||
toClass?: SymbolRef | undefined;
|
||||
/**
|
||||
* @generated from field: camino.Cardinality cardinality = 5;
|
||||
*/
|
||||
cardinality: Cardinality;
|
||||
/**
|
||||
* @generated from field: string inverse = 6;
|
||||
*/
|
||||
inverse: string;
|
||||
/**
|
||||
* @generated from field: repeated camino.FieldSchema fields = 7;
|
||||
*/
|
||||
fields: FieldSchema[];
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.EdgeSchema.
|
||||
* Use `create(EdgeSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export declare const EdgeSchemaSchema: GenMessage<EdgeSchema>;
|
||||
/**
|
||||
* @generated from message camino.MethodSchema
|
||||
*/
|
||||
export type MethodSchema = Message<"camino.MethodSchema"> & {
|
||||
/**
|
||||
* @generated from field: string name = 1;
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* @generated from field: quixos.FunctionRef function = 2;
|
||||
*/
|
||||
function?: FunctionRef | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.MethodSchema.
|
||||
* Use `create(MethodSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export declare const MethodSchemaSchema: GenMessage<MethodSchema>;
|
||||
/**
|
||||
* @generated from message camino.MigrationSpec
|
||||
*/
|
||||
export type MigrationSpec = Message<"camino.MigrationSpec"> & {
|
||||
/**
|
||||
* @generated from field: uint32 from_version = 1;
|
||||
*/
|
||||
fromVersion: number;
|
||||
/**
|
||||
* @generated from field: uint32 to_version = 2;
|
||||
*/
|
||||
toVersion: number;
|
||||
/**
|
||||
* @generated from field: quixos.FunctionRef function = 3;
|
||||
*/
|
||||
function?: FunctionRef | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.MigrationSpec.
|
||||
* Use `create(MigrationSpecSchema)` to create a new message.
|
||||
*/
|
||||
export declare const MigrationSpecSchema: GenMessage<MigrationSpec>;
|
||||
/**
|
||||
* @generated from message camino.ConstructorSpec
|
||||
*/
|
||||
export type ConstructorSpec = Message<"camino.ConstructorSpec"> & {
|
||||
/**
|
||||
* @generated from field: quixos.FunctionRef function = 1;
|
||||
*/
|
||||
function?: FunctionRef | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ConstructorSpec.
|
||||
* Use `create(ConstructorSpecSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ConstructorSpecSchema: GenMessage<ConstructorSpec>;
|
||||
/**
|
||||
* @generated from message camino.OperationSchema
|
||||
*/
|
||||
export type OperationSchema = Message<"camino.OperationSchema"> & {
|
||||
/**
|
||||
* @generated from field: string name = 1;
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* @generated from field: camino.TypeRef input_type = 2;
|
||||
*/
|
||||
inputType?: TypeRef | undefined;
|
||||
/**
|
||||
* @generated from field: camino.TypeRef output_type = 3;
|
||||
*/
|
||||
outputType?: TypeRef | undefined;
|
||||
/**
|
||||
* @generated from field: quixos.FunctionRef function = 4;
|
||||
*/
|
||||
function?: FunctionRef | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.OperationSchema.
|
||||
* Use `create(OperationSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export declare const OperationSchemaSchema: GenMessage<OperationSchema>;
|
||||
/**
|
||||
* @generated from message camino.OperationServiceSchema
|
||||
*/
|
||||
export type OperationServiceSchema = Message<"camino.OperationServiceSchema"> & {
|
||||
/**
|
||||
* @generated from field: string name = 1;
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* @generated from field: string full_name = 2;
|
||||
*/
|
||||
fullName: string;
|
||||
/**
|
||||
* @generated from field: repeated camino.OperationSchema operations = 3;
|
||||
*/
|
||||
operations: OperationSchema[];
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.OperationServiceSchema.
|
||||
* Use `create(OperationServiceSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export declare const OperationServiceSchemaSchema: GenMessage<OperationServiceSchema>;
|
||||
/**
|
||||
* @generated from message camino.DocRefDeclaration
|
||||
*/
|
||||
export type DocRefDeclaration = Message<"camino.DocRefDeclaration"> & {
|
||||
/**
|
||||
* @generated from field: string local_name = 1;
|
||||
*/
|
||||
localName: string;
|
||||
/**
|
||||
* @generated from field: camino.SymbolRef type = 2;
|
||||
*/
|
||||
type?: SymbolRef | undefined;
|
||||
/**
|
||||
* @generated from field: camino.SymbolRef target_class = 3;
|
||||
*/
|
||||
targetClass?: SymbolRef | undefined;
|
||||
/**
|
||||
* @generated from field: camino.DocRefStrength strength = 4;
|
||||
*/
|
||||
strength: DocRefStrength;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.DocRefDeclaration.
|
||||
* Use `create(DocRefDeclarationSchema)` to create a new message.
|
||||
*/
|
||||
export declare const DocRefDeclarationSchema: GenMessage<DocRefDeclaration>;
|
||||
/**
|
||||
* @generated from enum camino.ConflictStrategy
|
||||
*/
|
||||
export declare enum ConflictStrategy {
|
||||
/**
|
||||
* @generated from enum value: CONFLICT_STRATEGY_UNSPECIFIED = 0;
|
||||
*/
|
||||
CONFLICT_STRATEGY_UNSPECIFIED = 0,
|
||||
/**
|
||||
* @generated from enum value: REPLACE = 1;
|
||||
*/
|
||||
REPLACE = 1,
|
||||
/**
|
||||
* @generated from enum value: PRESERVE_CONFLICTS = 2;
|
||||
*/
|
||||
PRESERVE_CONFLICTS = 2,
|
||||
/**
|
||||
* @generated from enum value: CRDT = 3;
|
||||
*/
|
||||
CRDT = 3
|
||||
}
|
||||
/**
|
||||
* Describes the enum camino.ConflictStrategy.
|
||||
*/
|
||||
export declare const ConflictStrategySchema: GenEnum<ConflictStrategy>;
|
||||
/**
|
||||
* @generated from enum camino.Cardinality
|
||||
*/
|
||||
export declare enum Cardinality {
|
||||
/**
|
||||
* @generated from enum value: CARDINALITY_UNSPECIFIED = 0;
|
||||
*/
|
||||
CARDINALITY_UNSPECIFIED = 0,
|
||||
/**
|
||||
* @generated from enum value: OPTIONAL_ONE = 1;
|
||||
*/
|
||||
OPTIONAL_ONE = 1,
|
||||
/**
|
||||
* @generated from enum value: EXACTLY_ONE = 2;
|
||||
*/
|
||||
EXACTLY_ONE = 2,
|
||||
/**
|
||||
* @generated from enum value: MANY = 3;
|
||||
*/
|
||||
MANY = 3,
|
||||
/**
|
||||
* @generated from enum value: MANY_UNIQUE = 4;
|
||||
*/
|
||||
MANY_UNIQUE = 4,
|
||||
/**
|
||||
* @generated from enum value: MANY_ORDERED = 5;
|
||||
*/
|
||||
MANY_ORDERED = 5
|
||||
}
|
||||
/**
|
||||
* Describes the enum camino.Cardinality.
|
||||
*/
|
||||
export declare const CardinalitySchema: GenEnum<Cardinality>;
|
||||
/**
|
||||
* @generated from enum camino.DocRefStrength
|
||||
*/
|
||||
export declare enum DocRefStrength {
|
||||
/**
|
||||
* @generated from enum value: DOC_REF_STRENGTH_UNSPECIFIED = 0;
|
||||
*/
|
||||
DOC_REF_STRENGTH_UNSPECIFIED = 0,
|
||||
/**
|
||||
* @generated from enum value: SOFT_REF = 1;
|
||||
*/
|
||||
SOFT_REF = 1,
|
||||
/**
|
||||
* @generated from enum value: PROJECTED_EDGE = 2;
|
||||
*/
|
||||
PROJECTED_EDGE = 2
|
||||
}
|
||||
/**
|
||||
* Describes the enum camino.DocRefStrength.
|
||||
*/
|
||||
export declare const DocRefStrengthSchema: GenEnum<DocRefStrength>;
|
||||
/**
|
||||
* @generated from enum camino.FieldStorageKind
|
||||
*/
|
||||
export declare enum FieldStorageKind {
|
||||
/**
|
||||
* @generated from enum value: FIELD_STORAGE_KIND_UNSPECIFIED = 0;
|
||||
*/
|
||||
FIELD_STORAGE_KIND_UNSPECIFIED = 0,
|
||||
/**
|
||||
* @generated from enum value: STORED = 1;
|
||||
*/
|
||||
STORED = 1,
|
||||
/**
|
||||
* @generated from enum value: DERIVED = 2;
|
||||
*/
|
||||
DERIVED = 2,
|
||||
/**
|
||||
* @generated from enum value: LAZY = 3;
|
||||
*/
|
||||
LAZY = 3,
|
||||
/**
|
||||
* @generated from enum value: EXTERNAL = 4;
|
||||
*/
|
||||
EXTERNAL = 4,
|
||||
/**
|
||||
* @generated from enum value: STATIC_FINAL = 5;
|
||||
*/
|
||||
STATIC_FINAL = 5
|
||||
}
|
||||
/**
|
||||
* Describes the enum camino.FieldStorageKind.
|
||||
*/
|
||||
export declare const FieldStorageKindSchema: GenEnum<FieldStorageKind>;
|
||||
/**
|
||||
* @generated from enum camino.FieldImplementation
|
||||
*/
|
||||
export declare enum FieldImplementation {
|
||||
/**
|
||||
* @generated from enum value: FIELD_IMPLEMENTATION_UNSPECIFIED = 0;
|
||||
*/
|
||||
FIELD_IMPLEMENTATION_UNSPECIFIED = 0,
|
||||
/**
|
||||
* @generated from enum value: SERVICE = 1;
|
||||
*/
|
||||
SERVICE = 1
|
||||
}
|
||||
/**
|
||||
* Describes the enum camino.FieldImplementation.
|
||||
*/
|
||||
export declare const FieldImplementationSchema: GenEnum<FieldImplementation>;
|
||||
//# sourceMappingURL=schema_pb.d.ts.map
|
||||
Vendored
+1
File diff suppressed because one or more lines are too long
Vendored
+268
@@ -0,0 +1,268 @@
|
||||
// @generated by protoc-gen-es v2.12.1 with parameter "target=ts,import_extension=js"
|
||||
// @generated from file camino/schema.proto (package camino, syntax proto3)
|
||||
/* eslint-disable */
|
||||
import { enumDesc, fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
||||
import { file_quixos_refs } from "../quixos/refs_pb.js";
|
||||
/**
|
||||
* Describes the file camino/schema.proto.
|
||||
*/
|
||||
export const file_camino_schema = /*@__PURE__*/ fileDesc("ChNjYW1pbm8vc2NoZW1hLnByb3RvEgZjYW1pbm8iSwoJU3ltYm9sUmVmEhEKCW5hbWVzcGFjZRgBIAEoCRIMCgRuYW1lGAIgASgJEg8KB3ZlcnNpb24YAyABKAkSDAoEaGFzaBgEIAEoCSIYCgNSZWYSEQoJb2JqZWN0X2lkGAEgASgJIg0KC0N1c3RvbUZpZWxkIiQKEFdhdGNoU3RhcnRSZXN1bHQSEAoId2F0Y2hfaWQYASABKAkiJAoQV2F0Y2hTdG9wUmVxdWVzdBIQCgh3YXRjaF9pZBgBIAEoCSIRCg9XYXRjaFN0b3BSZXN1bHQiGwoIQ3JkdFRleHQSDwoHcGF5bG9hZBgBIAEoDCIfCgxDcmR0UmljaFRleHQSDwoHcGF5bG9hZBgBIAEoDCIbCghDcmR0SnNvbhIPCgdwYXlsb2FkGAEgASgMIqgDCgtDbGFzc1NjaGVtYRIdCgJpZBgBIAEoCzIRLmNhbWluby5TeW1ib2xSZWYSDwoHdmVyc2lvbhgCIAEoDRIjCgZmaWVsZHMYAyADKAsyEy5jYW1pbm8uRmllbGRTY2hlbWESIQoFZWRnZXMYBCADKAsyEi5jYW1pbm8uRWRnZVNjaGVtYRIlCgdtZXRob2RzGAUgAygLMhQuY2FtaW5vLk1ldGhvZFNjaGVtYRIpCgptaWdyYXRpb25zGAYgAygLMhUuY2FtaW5vLk1pZ3JhdGlvblNwZWMSEwoLc291cmNlX2ZpbGUYByABKAkSFQoNcHJvdG9fbWVzc2FnZRgIIAEoCRI6ChJvcGVyYXRpb25fc2VydmljZXMYCSADKAsyHi5jYW1pbm8uT3BlcmF0aW9uU2VydmljZVNjaGVtYRI5CgppbXBsZW1lbnRzGAogAygLMiUuY2FtaW5vLkludGVyZmFjZUltcGxlbWVudGF0aW9uU2NoZW1hEiwKC2NvbnN0cnVjdG9yGAsgASgLMhcuY2FtaW5vLkNvbnN0cnVjdG9yU3BlYyKzAgoLRmllbGRTY2hlbWESDAoEbmFtZRgBIAEoCRILCgN0YWcYAiABKA0SHQoEdHlwZRgDIAEoCzIPLmNhbWluby5UeXBlUmVmEioKCGNvbmZsaWN0GAQgASgOMhguY2FtaW5vLkNvbmZsaWN0U3RyYXRlZ3kSEAoIcmVwZWF0ZWQYBSABKAgSEAoIb3B0aW9uYWwYBiABKAgSJQoHc3RvcmFnZRgHIAEoCzIULmNhbWluby5GaWVsZFN0b3JhZ2USHQoDb3BzGAggASgLMhAuY2FtaW5vLkZpZWxkT3BzEjoKEmludGVyZmFjZV9jb250cmFjdBgJIAEoCzIeLmNhbWluby5JbnRlcmZhY2VGaWVsZENvbnRyYWN0EhgKEGlzX2Rpc3BsYXlfbGFiZWwYCiABKAgibAoMRmllbGRTdG9yYWdlEiYKBGtpbmQYASABKA4yGC5jYW1pbm8uRmllbGRTdG9yYWdlS2luZBIlCghyZXNvbHZlchgCIAEoCzITLnF1aXhvcy5GdW5jdGlvblJlZhINCgVjYWNoZRgDIAEoCCJACgdUeXBlUmVmEhIKCnByb3RvX3R5cGUYASABKAkSIQoGc3ltYm9sGAIgASgLMhEuY2FtaW5vLlN5bWJvbFJlZiI6CgtUeXBlQmluZGluZxIMCgRuYW1lGAEgASgJEh0KBHR5cGUYAiABKAsyDy5jYW1pbm8uVHlwZVJlZiKUAQoWSW50ZXJmYWNlRmllbGRDb250cmFjdBIQCghyZXF1aXJlZBgBIAEoCBIQCghyZWFkYWJsZRgCIAEoCBIQCgh3cml0YWJsZRgDIAEoCBIRCgl3YXRjaGFibGUYBCABKAgSEgoKdHlwZV9wYXJhbRgFIAEoCRIdCgR0eXBlGAYgASgLMg8uY2FtaW5vLlR5cGVSZWYicQodSW50ZXJmYWNlSW1wbGVtZW50YXRpb25TY2hlbWESJAoJaW50ZXJmYWNlGAEgASgLMhEuY2FtaW5vLlN5bWJvbFJlZhIqCg10eXBlX2JpbmRpbmdzGAIgAygLMhMuY2FtaW5vLlR5cGVCaW5kaW5nIpIBCg9JbnRlcmZhY2VTY2hlbWESHQoCaWQYASABKAsyES5jYW1pbm8uU3ltYm9sUmVmEg8KB3ZlcnNpb24YAiABKA0SIwoGZmllbGRzGAMgAygLMhMuY2FtaW5vLkZpZWxkU2NoZW1hEhMKC3NvdXJjZV9maWxlGAQgASgJEhUKDXByb3RvX21lc3NhZ2UYBSABKAkiUAoIRmllbGRPcHMSMwoOaW1wbGVtZW50YXRpb24YASABKA4yGy5jYW1pbm8uRmllbGRJbXBsZW1lbnRhdGlvbhIPCgdzZXJ2aWNlGAIgASgJIu0BCgpFZGdlU2NoZW1hEh0KAmlkGAEgASgLMhEuY2FtaW5vLlN5bWJvbFJlZhIUCgxzb3VyY2VfZmllbGQYAiABKAkSJQoKZnJvbV9jbGFzcxgDIAEoCzIRLmNhbWluby5TeW1ib2xSZWYSIwoIdG9fY2xhc3MYBCABKAsyES5jYW1pbm8uU3ltYm9sUmVmEigKC2NhcmRpbmFsaXR5GAUgASgOMhMuY2FtaW5vLkNhcmRpbmFsaXR5Eg8KB2ludmVyc2UYBiABKAkSIwoGZmllbGRzGAcgAygLMhMuY2FtaW5vLkZpZWxkU2NoZW1hIkMKDE1ldGhvZFNjaGVtYRIMCgRuYW1lGAEgASgJEiUKCGZ1bmN0aW9uGAIgASgLMhMucXVpeG9zLkZ1bmN0aW9uUmVmImAKDU1pZ3JhdGlvblNwZWMSFAoMZnJvbV92ZXJzaW9uGAEgASgNEhIKCnRvX3ZlcnNpb24YAiABKA0SJQoIZnVuY3Rpb24YAyABKAsyEy5xdWl4b3MuRnVuY3Rpb25SZWYiOAoPQ29uc3RydWN0b3JTcGVjEiUKCGZ1bmN0aW9uGAEgASgLMhMucXVpeG9zLkZ1bmN0aW9uUmVmIpEBCg9PcGVyYXRpb25TY2hlbWESDAoEbmFtZRgBIAEoCRIjCgppbnB1dF90eXBlGAIgASgLMg8uY2FtaW5vLlR5cGVSZWYSJAoLb3V0cHV0X3R5cGUYAyABKAsyDy5jYW1pbm8uVHlwZVJlZhIlCghmdW5jdGlvbhgEIAEoCzITLnF1aXhvcy5GdW5jdGlvblJlZiJmChZPcGVyYXRpb25TZXJ2aWNlU2NoZW1hEgwKBG5hbWUYASABKAkSEQoJZnVsbF9uYW1lGAIgASgJEisKCm9wZXJhdGlvbnMYAyADKAsyFy5jYW1pbm8uT3BlcmF0aW9uU2NoZW1hIpsBChFEb2NSZWZEZWNsYXJhdGlvbhISCgpsb2NhbF9uYW1lGAEgASgJEh8KBHR5cGUYAiABKAsyES5jYW1pbm8uU3ltYm9sUmVmEicKDHRhcmdldF9jbGFzcxgDIAEoCzIRLmNhbWluby5TeW1ib2xSZWYSKAoIc3RyZW5ndGgYBCABKA4yFi5jYW1pbm8uRG9jUmVmU3RyZW5ndGgqZAoQQ29uZmxpY3RTdHJhdGVneRIhCh1DT05GTElDVF9TVFJBVEVHWV9VTlNQRUNJRklFRBAAEgsKB1JFUExBQ0UQARIWChJQUkVTRVJWRV9DT05GTElDVFMQAhIICgRDUkRUEAMqegoLQ2FyZGluYWxpdHkSGwoXQ0FSRElOQUxJVFlfVU5TUEVDSUZJRUQQABIQCgxPUFRJT05BTF9PTkUQARIPCgtFWEFDVExZX09ORRACEggKBE1BTlkQAxIPCgtNQU5ZX1VOSVFVRRAEEhAKDE1BTllfT1JERVJFRBAFKlQKDkRvY1JlZlN0cmVuZ3RoEiAKHERPQ19SRUZfU1RSRU5HVEhfVU5TUEVDSUZJRUQQABIMCghTT0ZUX1JFRhABEhIKDlBST0pFQ1RFRF9FREdFEAIqeQoQRmllbGRTdG9yYWdlS2luZBIiCh5GSUVMRF9TVE9SQUdFX0tJTkRfVU5TUEVDSUZJRUQQABIKCgZTVE9SRUQQARILCgdERVJJVkVEEAISCAoETEFaWRADEgwKCEVYVEVSTkFMEAQSEAoMU1RBVElDX0ZJTkFMEAUqSAoTRmllbGRJbXBsZW1lbnRhdGlvbhIkCiBGSUVMRF9JTVBMRU1FTlRBVElPTl9VTlNQRUNJRklFRBAAEgsKB1NFUlZJQ0UQAWIGcHJvdG8z", [file_quixos_refs]);
|
||||
/**
|
||||
* Describes the message camino.SymbolRef.
|
||||
* Use `create(SymbolRefSchema)` to create a new message.
|
||||
*/
|
||||
export const SymbolRefSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 0);
|
||||
/**
|
||||
* Describes the message camino.Ref.
|
||||
* Use `create(RefSchema)` to create a new message.
|
||||
*/
|
||||
export const RefSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 1);
|
||||
/**
|
||||
* Describes the message camino.CustomField.
|
||||
* Use `create(CustomFieldSchema)` to create a new message.
|
||||
*/
|
||||
export const CustomFieldSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 2);
|
||||
/**
|
||||
* Describes the message camino.WatchStartResult.
|
||||
* Use `create(WatchStartResultSchema)` to create a new message.
|
||||
*/
|
||||
export const WatchStartResultSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 3);
|
||||
/**
|
||||
* Describes the message camino.WatchStopRequest.
|
||||
* Use `create(WatchStopRequestSchema)` to create a new message.
|
||||
*/
|
||||
export const WatchStopRequestSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 4);
|
||||
/**
|
||||
* Describes the message camino.WatchStopResult.
|
||||
* Use `create(WatchStopResultSchema)` to create a new message.
|
||||
*/
|
||||
export const WatchStopResultSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 5);
|
||||
/**
|
||||
* Describes the message camino.CrdtText.
|
||||
* Use `create(CrdtTextSchema)` to create a new message.
|
||||
*/
|
||||
export const CrdtTextSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 6);
|
||||
/**
|
||||
* Describes the message camino.CrdtRichText.
|
||||
* Use `create(CrdtRichTextSchema)` to create a new message.
|
||||
*/
|
||||
export const CrdtRichTextSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 7);
|
||||
/**
|
||||
* Describes the message camino.CrdtJson.
|
||||
* Use `create(CrdtJsonSchema)` to create a new message.
|
||||
*/
|
||||
export const CrdtJsonSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 8);
|
||||
/**
|
||||
* Describes the message camino.ClassSchema.
|
||||
* Use `create(ClassSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export const ClassSchemaSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 9);
|
||||
/**
|
||||
* Describes the message camino.FieldSchema.
|
||||
* Use `create(FieldSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export const FieldSchemaSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 10);
|
||||
/**
|
||||
* Describes the message camino.FieldStorage.
|
||||
* Use `create(FieldStorageSchema)` to create a new message.
|
||||
*/
|
||||
export const FieldStorageSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 11);
|
||||
/**
|
||||
* Describes the message camino.TypeRef.
|
||||
* Use `create(TypeRefSchema)` to create a new message.
|
||||
*/
|
||||
export const TypeRefSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 12);
|
||||
/**
|
||||
* Describes the message camino.TypeBinding.
|
||||
* Use `create(TypeBindingSchema)` to create a new message.
|
||||
*/
|
||||
export const TypeBindingSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 13);
|
||||
/**
|
||||
* Describes the message camino.InterfaceFieldContract.
|
||||
* Use `create(InterfaceFieldContractSchema)` to create a new message.
|
||||
*/
|
||||
export const InterfaceFieldContractSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 14);
|
||||
/**
|
||||
* Describes the message camino.InterfaceImplementationSchema.
|
||||
* Use `create(InterfaceImplementationSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export const InterfaceImplementationSchemaSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 15);
|
||||
/**
|
||||
* Describes the message camino.InterfaceSchema.
|
||||
* Use `create(InterfaceSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export const InterfaceSchemaSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 16);
|
||||
/**
|
||||
* Describes the message camino.FieldOps.
|
||||
* Use `create(FieldOpsSchema)` to create a new message.
|
||||
*/
|
||||
export const FieldOpsSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 17);
|
||||
/**
|
||||
* Describes the message camino.EdgeSchema.
|
||||
* Use `create(EdgeSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export const EdgeSchemaSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 18);
|
||||
/**
|
||||
* Describes the message camino.MethodSchema.
|
||||
* Use `create(MethodSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export const MethodSchemaSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 19);
|
||||
/**
|
||||
* Describes the message camino.MigrationSpec.
|
||||
* Use `create(MigrationSpecSchema)` to create a new message.
|
||||
*/
|
||||
export const MigrationSpecSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 20);
|
||||
/**
|
||||
* Describes the message camino.ConstructorSpec.
|
||||
* Use `create(ConstructorSpecSchema)` to create a new message.
|
||||
*/
|
||||
export const ConstructorSpecSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 21);
|
||||
/**
|
||||
* Describes the message camino.OperationSchema.
|
||||
* Use `create(OperationSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export const OperationSchemaSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 22);
|
||||
/**
|
||||
* Describes the message camino.OperationServiceSchema.
|
||||
* Use `create(OperationServiceSchemaSchema)` to create a new message.
|
||||
*/
|
||||
export const OperationServiceSchemaSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 23);
|
||||
/**
|
||||
* Describes the message camino.DocRefDeclaration.
|
||||
* Use `create(DocRefDeclarationSchema)` to create a new message.
|
||||
*/
|
||||
export const DocRefDeclarationSchema = /*@__PURE__*/ messageDesc(file_camino_schema, 24);
|
||||
/**
|
||||
* @generated from enum camino.ConflictStrategy
|
||||
*/
|
||||
export var ConflictStrategy;
|
||||
(function (ConflictStrategy) {
|
||||
/**
|
||||
* @generated from enum value: CONFLICT_STRATEGY_UNSPECIFIED = 0;
|
||||
*/
|
||||
ConflictStrategy[ConflictStrategy["CONFLICT_STRATEGY_UNSPECIFIED"] = 0] = "CONFLICT_STRATEGY_UNSPECIFIED";
|
||||
/**
|
||||
* @generated from enum value: REPLACE = 1;
|
||||
*/
|
||||
ConflictStrategy[ConflictStrategy["REPLACE"] = 1] = "REPLACE";
|
||||
/**
|
||||
* @generated from enum value: PRESERVE_CONFLICTS = 2;
|
||||
*/
|
||||
ConflictStrategy[ConflictStrategy["PRESERVE_CONFLICTS"] = 2] = "PRESERVE_CONFLICTS";
|
||||
/**
|
||||
* @generated from enum value: CRDT = 3;
|
||||
*/
|
||||
ConflictStrategy[ConflictStrategy["CRDT"] = 3] = "CRDT";
|
||||
})(ConflictStrategy || (ConflictStrategy = {}));
|
||||
/**
|
||||
* Describes the enum camino.ConflictStrategy.
|
||||
*/
|
||||
export const ConflictStrategySchema = /*@__PURE__*/ enumDesc(file_camino_schema, 0);
|
||||
/**
|
||||
* @generated from enum camino.Cardinality
|
||||
*/
|
||||
export var Cardinality;
|
||||
(function (Cardinality) {
|
||||
/**
|
||||
* @generated from enum value: CARDINALITY_UNSPECIFIED = 0;
|
||||
*/
|
||||
Cardinality[Cardinality["CARDINALITY_UNSPECIFIED"] = 0] = "CARDINALITY_UNSPECIFIED";
|
||||
/**
|
||||
* @generated from enum value: OPTIONAL_ONE = 1;
|
||||
*/
|
||||
Cardinality[Cardinality["OPTIONAL_ONE"] = 1] = "OPTIONAL_ONE";
|
||||
/**
|
||||
* @generated from enum value: EXACTLY_ONE = 2;
|
||||
*/
|
||||
Cardinality[Cardinality["EXACTLY_ONE"] = 2] = "EXACTLY_ONE";
|
||||
/**
|
||||
* @generated from enum value: MANY = 3;
|
||||
*/
|
||||
Cardinality[Cardinality["MANY"] = 3] = "MANY";
|
||||
/**
|
||||
* @generated from enum value: MANY_UNIQUE = 4;
|
||||
*/
|
||||
Cardinality[Cardinality["MANY_UNIQUE"] = 4] = "MANY_UNIQUE";
|
||||
/**
|
||||
* @generated from enum value: MANY_ORDERED = 5;
|
||||
*/
|
||||
Cardinality[Cardinality["MANY_ORDERED"] = 5] = "MANY_ORDERED";
|
||||
})(Cardinality || (Cardinality = {}));
|
||||
/**
|
||||
* Describes the enum camino.Cardinality.
|
||||
*/
|
||||
export const CardinalitySchema = /*@__PURE__*/ enumDesc(file_camino_schema, 1);
|
||||
/**
|
||||
* @generated from enum camino.DocRefStrength
|
||||
*/
|
||||
export var DocRefStrength;
|
||||
(function (DocRefStrength) {
|
||||
/**
|
||||
* @generated from enum value: DOC_REF_STRENGTH_UNSPECIFIED = 0;
|
||||
*/
|
||||
DocRefStrength[DocRefStrength["DOC_REF_STRENGTH_UNSPECIFIED"] = 0] = "DOC_REF_STRENGTH_UNSPECIFIED";
|
||||
/**
|
||||
* @generated from enum value: SOFT_REF = 1;
|
||||
*/
|
||||
DocRefStrength[DocRefStrength["SOFT_REF"] = 1] = "SOFT_REF";
|
||||
/**
|
||||
* @generated from enum value: PROJECTED_EDGE = 2;
|
||||
*/
|
||||
DocRefStrength[DocRefStrength["PROJECTED_EDGE"] = 2] = "PROJECTED_EDGE";
|
||||
})(DocRefStrength || (DocRefStrength = {}));
|
||||
/**
|
||||
* Describes the enum camino.DocRefStrength.
|
||||
*/
|
||||
export const DocRefStrengthSchema = /*@__PURE__*/ enumDesc(file_camino_schema, 2);
|
||||
/**
|
||||
* @generated from enum camino.FieldStorageKind
|
||||
*/
|
||||
export var FieldStorageKind;
|
||||
(function (FieldStorageKind) {
|
||||
/**
|
||||
* @generated from enum value: FIELD_STORAGE_KIND_UNSPECIFIED = 0;
|
||||
*/
|
||||
FieldStorageKind[FieldStorageKind["FIELD_STORAGE_KIND_UNSPECIFIED"] = 0] = "FIELD_STORAGE_KIND_UNSPECIFIED";
|
||||
/**
|
||||
* @generated from enum value: STORED = 1;
|
||||
*/
|
||||
FieldStorageKind[FieldStorageKind["STORED"] = 1] = "STORED";
|
||||
/**
|
||||
* @generated from enum value: DERIVED = 2;
|
||||
*/
|
||||
FieldStorageKind[FieldStorageKind["DERIVED"] = 2] = "DERIVED";
|
||||
/**
|
||||
* @generated from enum value: LAZY = 3;
|
||||
*/
|
||||
FieldStorageKind[FieldStorageKind["LAZY"] = 3] = "LAZY";
|
||||
/**
|
||||
* @generated from enum value: EXTERNAL = 4;
|
||||
*/
|
||||
FieldStorageKind[FieldStorageKind["EXTERNAL"] = 4] = "EXTERNAL";
|
||||
/**
|
||||
* @generated from enum value: STATIC_FINAL = 5;
|
||||
*/
|
||||
FieldStorageKind[FieldStorageKind["STATIC_FINAL"] = 5] = "STATIC_FINAL";
|
||||
})(FieldStorageKind || (FieldStorageKind = {}));
|
||||
/**
|
||||
* Describes the enum camino.FieldStorageKind.
|
||||
*/
|
||||
export const FieldStorageKindSchema = /*@__PURE__*/ enumDesc(file_camino_schema, 3);
|
||||
/**
|
||||
* @generated from enum camino.FieldImplementation
|
||||
*/
|
||||
export var FieldImplementation;
|
||||
(function (FieldImplementation) {
|
||||
/**
|
||||
* @generated from enum value: FIELD_IMPLEMENTATION_UNSPECIFIED = 0;
|
||||
*/
|
||||
FieldImplementation[FieldImplementation["FIELD_IMPLEMENTATION_UNSPECIFIED"] = 0] = "FIELD_IMPLEMENTATION_UNSPECIFIED";
|
||||
/**
|
||||
* @generated from enum value: SERVICE = 1;
|
||||
*/
|
||||
FieldImplementation[FieldImplementation["SERVICE"] = 1] = "SERVICE";
|
||||
})(FieldImplementation || (FieldImplementation = {}));
|
||||
/**
|
||||
* Describes the enum camino.FieldImplementation.
|
||||
*/
|
||||
export const FieldImplementationSchema = /*@__PURE__*/ enumDesc(file_camino_schema, 4);
|
||||
Reference in New Issue
Block a user