Host workspace repositories on Central Gitea
This commit is contained in:
Vendored
+204
-275
@@ -1,84 +1,10 @@
|
||||
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 { PersistencePlan } from "./schema_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
|
||||
*/
|
||||
@@ -155,47 +81,43 @@ export type CrdtValue = Message<"camino.CrdtValue"> & {
|
||||
*/
|
||||
export declare const CrdtValueSchema: GenMessage<CrdtValue>;
|
||||
/**
|
||||
* @generated from message camino.FieldValueSource
|
||||
* @generated from message camino.StateValueSource
|
||||
*/
|
||||
export type FieldValueSource = Message<"camino.FieldValueSource"> & {
|
||||
export type StateValueSource = Message<"camino.StateValueSource"> & {
|
||||
/**
|
||||
* @generated from field: string object_id = 1;
|
||||
*/
|
||||
objectId: string;
|
||||
/**
|
||||
* @generated from field: string field_name = 2;
|
||||
* @generated from field: string slot_id = 2;
|
||||
*/
|
||||
fieldName: string;
|
||||
slotId: string;
|
||||
/**
|
||||
* @generated from field: string field_type = 3;
|
||||
* @generated from field: string value_type_json = 3;
|
||||
*/
|
||||
fieldType: string;
|
||||
valueTypeJson: string;
|
||||
/**
|
||||
* @generated from field: string field_storage = 4;
|
||||
* @generated from field: string storage_policy_json = 4;
|
||||
*/
|
||||
fieldStorage: string;
|
||||
storagePolicyJson: string;
|
||||
/**
|
||||
* @generated from field: string conflict_strategy = 5;
|
||||
*/
|
||||
conflictStrategy: string;
|
||||
/**
|
||||
* @generated from field: uint64 revision = 6;
|
||||
* @generated from field: uint64 revision = 5;
|
||||
*/
|
||||
revision: bigint;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.FieldValueSource.
|
||||
* Use `create(FieldValueSourceSchema)` to create a new message.
|
||||
* Describes the message camino.StateValueSource.
|
||||
* Use `create(StateValueSourceSchema)` to create a new message.
|
||||
*/
|
||||
export declare const FieldValueSourceSchema: GenMessage<FieldValueSource>;
|
||||
export declare const StateValueSourceSchema: GenMessage<StateValueSource>;
|
||||
/**
|
||||
* @generated from message camino.ValueSource
|
||||
*/
|
||||
export type ValueSource = Message<"camino.ValueSource"> & {
|
||||
/**
|
||||
* @generated from field: camino.FieldValueSource field = 1;
|
||||
* @generated from field: camino.StateValueSource state = 1;
|
||||
*/
|
||||
field?: FieldValueSource | undefined;
|
||||
state?: StateValueSource | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ValueSource.
|
||||
@@ -283,18 +205,69 @@ export type Value = Message<"camino.Value"> & {
|
||||
* Use `create(ValueSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ValueSchema: GenMessage<Value>;
|
||||
/**
|
||||
* @generated from message camino.InstallPersistencePlanRequest
|
||||
*/
|
||||
export type InstallPersistencePlanRequest = Message<"camino.InstallPersistencePlanRequest"> & {
|
||||
/**
|
||||
* @generated from field: camino.PersistencePlan plan = 1;
|
||||
*/
|
||||
plan?: PersistencePlan | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.InstallPersistencePlanRequest.
|
||||
* Use `create(InstallPersistencePlanRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const InstallPersistencePlanRequestSchema: GenMessage<InstallPersistencePlanRequest>;
|
||||
/**
|
||||
* @generated from message camino.InstallPersistencePlanResponse
|
||||
*/
|
||||
export type InstallPersistencePlanResponse = Message<"camino.InstallPersistencePlanResponse"> & {
|
||||
/**
|
||||
* @generated from field: camino.PersistencePlan plan = 1;
|
||||
*/
|
||||
plan?: PersistencePlan | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.InstallPersistencePlanResponse.
|
||||
* Use `create(InstallPersistencePlanResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const InstallPersistencePlanResponseSchema: GenMessage<InstallPersistencePlanResponse>;
|
||||
/**
|
||||
* @generated from message camino.GetPersistencePlanRequest
|
||||
*/
|
||||
export type GetPersistencePlanRequest = Message<"camino.GetPersistencePlanRequest"> & {};
|
||||
/**
|
||||
* Describes the message camino.GetPersistencePlanRequest.
|
||||
* Use `create(GetPersistencePlanRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const GetPersistencePlanRequestSchema: GenMessage<GetPersistencePlanRequest>;
|
||||
/**
|
||||
* @generated from message camino.GetPersistencePlanResponse
|
||||
*/
|
||||
export type GetPersistencePlanResponse = Message<"camino.GetPersistencePlanResponse"> & {
|
||||
/**
|
||||
* @generated from field: camino.PersistencePlan plan = 1;
|
||||
*/
|
||||
plan?: PersistencePlan | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.GetPersistencePlanResponse.
|
||||
* Use `create(GetPersistencePlanResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const GetPersistencePlanResponseSchema: GenMessage<GetPersistencePlanResponse>;
|
||||
/**
|
||||
* @generated from message camino.CreateObjectRequest
|
||||
*/
|
||||
export type CreateObjectRequest = Message<"camino.CreateObjectRequest"> & {
|
||||
/**
|
||||
* @generated from field: string class_id = 1;
|
||||
* @generated from field: string atom_id = 1;
|
||||
*/
|
||||
classId: string;
|
||||
atomId: string;
|
||||
/**
|
||||
* @generated from field: map<string, camino.Value> fields = 2;
|
||||
* @generated from field: map<string, camino.Value> initial_state = 2;
|
||||
*/
|
||||
fields: {
|
||||
initialState: {
|
||||
[key: string]: Value;
|
||||
};
|
||||
};
|
||||
@@ -350,9 +323,9 @@ export declare const GetObjectResponseSchema: GenMessage<GetObjectResponse>;
|
||||
*/
|
||||
export type ListObjectsRequest = Message<"camino.ListObjectsRequest"> & {
|
||||
/**
|
||||
* @generated from field: string class_id = 1;
|
||||
* @generated from field: string atom_id = 1;
|
||||
*/
|
||||
classId: string;
|
||||
atomId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ListObjectsRequest.
|
||||
@@ -374,17 +347,49 @@ export type ListObjectsResponse = Message<"camino.ListObjectsResponse"> & {
|
||||
*/
|
||||
export declare const ListObjectsResponseSchema: GenMessage<ListObjectsResponse>;
|
||||
/**
|
||||
* @generated from message camino.SetFieldRequest
|
||||
* @generated from message camino.ReadStateRequest
|
||||
*/
|
||||
export type SetFieldRequest = Message<"camino.SetFieldRequest"> & {
|
||||
export type ReadStateRequest = Message<"camino.ReadStateRequest"> & {
|
||||
/**
|
||||
* @generated from field: string object_id = 1;
|
||||
*/
|
||||
objectId: string;
|
||||
/**
|
||||
* @generated from field: string field_name = 2;
|
||||
* @generated from field: string slot_id = 2;
|
||||
*/
|
||||
fieldName: string;
|
||||
slotId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ReadStateRequest.
|
||||
* Use `create(ReadStateRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ReadStateRequestSchema: GenMessage<ReadStateRequest>;
|
||||
/**
|
||||
* @generated from message camino.ReadStateResponse
|
||||
*/
|
||||
export type ReadStateResponse = Message<"camino.ReadStateResponse"> & {
|
||||
/**
|
||||
* @generated from field: camino.Value value = 1;
|
||||
*/
|
||||
value?: Value | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ReadStateResponse.
|
||||
* Use `create(ReadStateResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const ReadStateResponseSchema: GenMessage<ReadStateResponse>;
|
||||
/**
|
||||
* @generated from message camino.WriteStateRequest
|
||||
*/
|
||||
export type WriteStateRequest = Message<"camino.WriteStateRequest"> & {
|
||||
/**
|
||||
* @generated from field: string object_id = 1;
|
||||
*/
|
||||
objectId: string;
|
||||
/**
|
||||
* @generated from field: string slot_id = 2;
|
||||
*/
|
||||
slotId: string;
|
||||
/**
|
||||
* @generated from field: camino.Value value = 3;
|
||||
*/
|
||||
@@ -395,102 +400,76 @@ export type SetFieldRequest = Message<"camino.SetFieldRequest"> & {
|
||||
clientMutationId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.SetFieldRequest.
|
||||
* Use `create(SetFieldRequestSchema)` to create a new message.
|
||||
* Describes the message camino.WriteStateRequest.
|
||||
* Use `create(WriteStateRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const SetFieldRequestSchema: GenMessage<SetFieldRequest>;
|
||||
export declare const WriteStateRequestSchema: GenMessage<WriteStateRequest>;
|
||||
/**
|
||||
* @generated from message camino.SetFieldResponse
|
||||
* @generated from message camino.WriteStateResponse
|
||||
*/
|
||||
export type SetFieldResponse = Message<"camino.SetFieldResponse"> & {
|
||||
export type WriteStateResponse = Message<"camino.WriteStateResponse"> & {
|
||||
/**
|
||||
* @generated from field: camino.CaminoObject object = 1;
|
||||
* @generated from field: camino.Value value = 1;
|
||||
*/
|
||||
value?: Value | undefined;
|
||||
/**
|
||||
* @generated from field: camino.CaminoObject object = 2;
|
||||
*/
|
||||
object?: CaminoObject | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.SetFieldResponse.
|
||||
* Use `create(SetFieldResponseSchema)` to create a new message.
|
||||
* Describes the message camino.WriteStateResponse.
|
||||
* Use `create(WriteStateResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const SetFieldResponseSchema: GenMessage<SetFieldResponse>;
|
||||
export declare const WriteStateResponseSchema: GenMessage<WriteStateResponse>;
|
||||
/**
|
||||
* @generated from message camino.AddEdgeRequest
|
||||
* @generated from message camino.ConnectEdgeRequest
|
||||
*/
|
||||
export type AddEdgeRequest = Message<"camino.AddEdgeRequest"> & {
|
||||
export type ConnectEdgeRequest = Message<"camino.ConnectEdgeRequest"> & {
|
||||
/**
|
||||
* @generated from field: string from_object_id = 1;
|
||||
* @generated from field: string edge_type_id = 1;
|
||||
*/
|
||||
fromObjectId: string;
|
||||
edgeTypeId: string;
|
||||
/**
|
||||
* @generated from field: string source_field = 2;
|
||||
* @generated from field: string projection_id = 2;
|
||||
*/
|
||||
sourceField: string;
|
||||
projectionId: string;
|
||||
/**
|
||||
* @generated from field: string to_object_id = 3;
|
||||
* @generated from field: string object_id = 3;
|
||||
*/
|
||||
toObjectId: string;
|
||||
objectId: string;
|
||||
/**
|
||||
* @generated from field: map<string, camino.Value> fields = 4;
|
||||
* @generated from field: string target_object_id = 4;
|
||||
*/
|
||||
fields: {
|
||||
[key: string]: Value;
|
||||
};
|
||||
targetObjectId: string;
|
||||
/**
|
||||
* @generated from field: optional int32 source_ordinal = 5;
|
||||
* @generated from field: optional int32 ordinal = 5;
|
||||
*/
|
||||
sourceOrdinal?: number | undefined;
|
||||
ordinal?: number | undefined;
|
||||
/**
|
||||
* @generated from field: optional int32 target_ordinal = 6;
|
||||
*/
|
||||
targetOrdinal?: number | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.AddEdgeRequest.
|
||||
* Use `create(AddEdgeRequestSchema)` to create a new message.
|
||||
* Describes the message camino.ConnectEdgeRequest.
|
||||
* Use `create(ConnectEdgeRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const AddEdgeRequestSchema: GenMessage<AddEdgeRequest>;
|
||||
export declare const ConnectEdgeRequestSchema: GenMessage<ConnectEdgeRequest>;
|
||||
/**
|
||||
* @generated from message camino.AddEdgeResponse
|
||||
* @generated from message camino.ConnectEdgeResponse
|
||||
*/
|
||||
export type AddEdgeResponse = Message<"camino.AddEdgeResponse"> & {
|
||||
export type ConnectEdgeResponse = Message<"camino.ConnectEdgeResponse"> & {
|
||||
/**
|
||||
* @generated from field: camino.CaminoEdge edge = 1;
|
||||
*/
|
||||
edge?: CaminoEdge | undefined;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.AddEdgeResponse.
|
||||
* Use `create(AddEdgeResponseSchema)` to create a new message.
|
||||
* Describes the message camino.ConnectEdgeResponse.
|
||||
* Use `create(ConnectEdgeResponseSchema)` 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>;
|
||||
export declare const ConnectEdgeResponseSchema: GenMessage<ConnectEdgeResponse>;
|
||||
/**
|
||||
* @generated from message camino.ResolveEdgeRequest
|
||||
*/
|
||||
@@ -500,9 +479,13 @@ export type ResolveEdgeRequest = Message<"camino.ResolveEdgeRequest"> & {
|
||||
*/
|
||||
objectId: string;
|
||||
/**
|
||||
* @generated from field: string projection = 2;
|
||||
* @generated from field: string edge_type_id = 2;
|
||||
*/
|
||||
projection: string;
|
||||
edgeTypeId: string;
|
||||
/**
|
||||
* @generated from field: string projection_id = 3;
|
||||
*/
|
||||
projectionId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ResolveEdgeRequest.
|
||||
@@ -517,14 +500,6 @@ export type ResolveEdgeResponse = Message<"camino.ResolveEdgeResponse"> & {
|
||||
* @generated from field: repeated camino.CaminoEdge edges = 1;
|
||||
*/
|
||||
edges: CaminoEdge[];
|
||||
/**
|
||||
* @generated from field: camino.CaminoObject materialized_object = 2;
|
||||
*/
|
||||
materializedObject?: CaminoObject | undefined;
|
||||
/**
|
||||
* @generated from field: bool created = 3;
|
||||
*/
|
||||
created: boolean;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.ResolveEdgeResponse.
|
||||
@@ -532,33 +507,33 @@ export type ResolveEdgeResponse = Message<"camino.ResolveEdgeResponse"> & {
|
||||
*/
|
||||
export declare const ResolveEdgeResponseSchema: GenMessage<ResolveEdgeResponse>;
|
||||
/**
|
||||
* @generated from message camino.RemoveEdgeRequest
|
||||
* @generated from message camino.DisconnectEdgeRequest
|
||||
*/
|
||||
export type RemoveEdgeRequest = Message<"camino.RemoveEdgeRequest"> & {
|
||||
export type DisconnectEdgeRequest = Message<"camino.DisconnectEdgeRequest"> & {
|
||||
/**
|
||||
* @generated from field: string edge_id = 1;
|
||||
*/
|
||||
edgeId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.RemoveEdgeRequest.
|
||||
* Use `create(RemoveEdgeRequestSchema)` to create a new message.
|
||||
* Describes the message camino.DisconnectEdgeRequest.
|
||||
* Use `create(DisconnectEdgeRequestSchema)` to create a new message.
|
||||
*/
|
||||
export declare const RemoveEdgeRequestSchema: GenMessage<RemoveEdgeRequest>;
|
||||
export declare const DisconnectEdgeRequestSchema: GenMessage<DisconnectEdgeRequest>;
|
||||
/**
|
||||
* @generated from message camino.RemoveEdgeResponse
|
||||
* @generated from message camino.DisconnectEdgeResponse
|
||||
*/
|
||||
export type RemoveEdgeResponse = Message<"camino.RemoveEdgeResponse"> & {
|
||||
export type DisconnectEdgeResponse = Message<"camino.DisconnectEdgeResponse"> & {
|
||||
/**
|
||||
* @generated from field: string edge_id = 1;
|
||||
*/
|
||||
edgeId: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.RemoveEdgeResponse.
|
||||
* Use `create(RemoveEdgeResponseSchema)` to create a new message.
|
||||
* Describes the message camino.DisconnectEdgeResponse.
|
||||
* Use `create(DisconnectEdgeResponseSchema)` to create a new message.
|
||||
*/
|
||||
export declare const RemoveEdgeResponseSchema: GenMessage<RemoveEdgeResponse>;
|
||||
export declare const DisconnectEdgeResponseSchema: GenMessage<DisconnectEdgeResponse>;
|
||||
/**
|
||||
* @generated from message camino.ListOpsRequest
|
||||
*/
|
||||
@@ -640,13 +615,13 @@ export type CaminoObject = Message<"camino.CaminoObject"> & {
|
||||
*/
|
||||
id: string;
|
||||
/**
|
||||
* @generated from field: string class_id = 2;
|
||||
* @generated from field: string atom_id = 2;
|
||||
*/
|
||||
classId: string;
|
||||
atomId: string;
|
||||
/**
|
||||
* @generated from field: uint32 schema_version = 3;
|
||||
* @generated from field: string workspace_revision_id = 3;
|
||||
*/
|
||||
schemaVersion: number;
|
||||
workspaceRevisionId: string;
|
||||
/**
|
||||
* @generated from field: string created_at = 4;
|
||||
*/
|
||||
@@ -656,23 +631,17 @@ export type CaminoObject = Message<"camino.CaminoObject"> & {
|
||||
*/
|
||||
updatedAt: string;
|
||||
/**
|
||||
* @generated from field: map<string, camino.Value> fields = 6;
|
||||
* @generated from field: map<string, camino.Value> state = 6;
|
||||
*/
|
||||
fields: {
|
||||
state: {
|
||||
[key: string]: Value;
|
||||
};
|
||||
/**
|
||||
* @generated from field: map<string, uint64> field_revisions = 7;
|
||||
* @generated from field: map<string, uint64> state_revisions = 7;
|
||||
*/
|
||||
fieldRevisions: {
|
||||
stateRevisions: {
|
||||
[key: string]: bigint;
|
||||
};
|
||||
/**
|
||||
* @generated from field: map<string, string> field_conflicts = 8;
|
||||
*/
|
||||
fieldConflicts: {
|
||||
[key: string]: string;
|
||||
};
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.CaminoObject.
|
||||
@@ -692,69 +661,33 @@ export type CaminoEdge = Message<"camino.CaminoEdge"> & {
|
||||
*/
|
||||
edgeTypeId: string;
|
||||
/**
|
||||
* @generated from field: string from_object_id = 3;
|
||||
* @generated from field: string first_object_id = 3;
|
||||
*/
|
||||
fromObjectId: string;
|
||||
firstObjectId: string;
|
||||
/**
|
||||
* @generated from field: string to_object_id = 4;
|
||||
* @generated from field: string second_object_id = 4;
|
||||
*/
|
||||
toObjectId: string;
|
||||
secondObjectId: string;
|
||||
/**
|
||||
* Legacy canonical source-side projection fields. Prefer endpoint fields.
|
||||
*
|
||||
* @generated from field: string source_field = 5;
|
||||
* @generated from field: string first_projection_id = 5;
|
||||
*/
|
||||
sourceField: string;
|
||||
firstProjectionId: string;
|
||||
/**
|
||||
* @generated from field: string cardinality = 6;
|
||||
* @generated from field: string second_projection_id = 6;
|
||||
*/
|
||||
cardinality: string;
|
||||
secondProjectionId: string;
|
||||
/**
|
||||
* @generated from field: string inverse = 7;
|
||||
* @generated from field: optional int32 first_ordinal = 7;
|
||||
*/
|
||||
inverse: string;
|
||||
firstOrdinal?: number | undefined;
|
||||
/**
|
||||
* @generated from field: map<string, camino.Value> fields = 8;
|
||||
* @generated from field: optional int32 second_ordinal = 8;
|
||||
*/
|
||||
fields: {
|
||||
[key: string]: Value;
|
||||
};
|
||||
secondOrdinal?: number | undefined;
|
||||
/**
|
||||
* @generated from field: optional int32 from_ordinal = 9;
|
||||
*/
|
||||
fromOrdinal?: number | undefined;
|
||||
/**
|
||||
* @generated from field: string created_at = 10;
|
||||
* @generated from field: string created_at = 9;
|
||||
*/
|
||||
createdAt: string;
|
||||
/**
|
||||
* @generated from field: string updated_at = 11;
|
||||
*/
|
||||
updatedAt: string;
|
||||
/**
|
||||
* @generated from field: string from_projection = 12;
|
||||
*/
|
||||
fromProjection: string;
|
||||
/**
|
||||
* @generated from field: string to_projection = 13;
|
||||
*/
|
||||
toProjection: string;
|
||||
/**
|
||||
* @generated from field: string from_cardinality = 14;
|
||||
*/
|
||||
fromCardinality: string;
|
||||
/**
|
||||
* @generated from field: string to_cardinality = 15;
|
||||
*/
|
||||
toCardinality: string;
|
||||
/**
|
||||
* @generated from field: optional int32 to_ordinal = 16;
|
||||
*/
|
||||
toOrdinal?: number | undefined;
|
||||
/**
|
||||
* @generated from field: string directionality = 17;
|
||||
*/
|
||||
directionality: string;
|
||||
};
|
||||
/**
|
||||
* Describes the message camino.CaminoEdge.
|
||||
@@ -786,15 +719,11 @@ export type CaminoOp = Message<"camino.CaminoOp"> & {
|
||||
*/
|
||||
actor: string;
|
||||
/**
|
||||
* @generated from field: quixos.FunctionRef function_ref = 6;
|
||||
*/
|
||||
functionRef?: FunctionRef | undefined;
|
||||
/**
|
||||
* @generated from field: string created_at = 7;
|
||||
* @generated from field: string created_at = 6;
|
||||
*/
|
||||
createdAt: string;
|
||||
/**
|
||||
* @generated from field: string client_mutation_id = 8;
|
||||
* @generated from field: string client_mutation_id = 7;
|
||||
*/
|
||||
clientMutationId: string;
|
||||
};
|
||||
@@ -808,20 +737,20 @@ export declare const CaminoOpSchema: GenMessage<CaminoOp>;
|
||||
*/
|
||||
export declare const CaminoService: GenService<{
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.RegisterSchema
|
||||
* @generated from rpc camino.CaminoService.InstallPersistencePlan
|
||||
*/
|
||||
registerSchema: {
|
||||
installPersistencePlan: {
|
||||
methodKind: "unary";
|
||||
input: typeof RegisterSchemaRequestSchema;
|
||||
output: typeof RegisterSchemaResponseSchema;
|
||||
input: typeof InstallPersistencePlanRequestSchema;
|
||||
output: typeof InstallPersistencePlanResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.ListClasses
|
||||
* @generated from rpc camino.CaminoService.GetPersistencePlan
|
||||
*/
|
||||
listClasses: {
|
||||
getPersistencePlan: {
|
||||
methodKind: "unary";
|
||||
input: typeof ListClassesRequestSchema;
|
||||
output: typeof ListClassesResponseSchema;
|
||||
input: typeof GetPersistencePlanRequestSchema;
|
||||
output: typeof GetPersistencePlanResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.CreateObject
|
||||
@@ -848,28 +777,28 @@ export declare const CaminoService: GenService<{
|
||||
output: typeof ListObjectsResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.SetField
|
||||
* @generated from rpc camino.CaminoService.ReadState
|
||||
*/
|
||||
setField: {
|
||||
readState: {
|
||||
methodKind: "unary";
|
||||
input: typeof SetFieldRequestSchema;
|
||||
output: typeof SetFieldResponseSchema;
|
||||
input: typeof ReadStateRequestSchema;
|
||||
output: typeof ReadStateResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.AddEdge
|
||||
* @generated from rpc camino.CaminoService.WriteState
|
||||
*/
|
||||
addEdge: {
|
||||
writeState: {
|
||||
methodKind: "unary";
|
||||
input: typeof AddEdgeRequestSchema;
|
||||
output: typeof AddEdgeResponseSchema;
|
||||
input: typeof WriteStateRequestSchema;
|
||||
output: typeof WriteStateResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.ListEdges
|
||||
* @generated from rpc camino.CaminoService.ConnectEdge
|
||||
*/
|
||||
listEdges: {
|
||||
connectEdge: {
|
||||
methodKind: "unary";
|
||||
input: typeof ListEdgesRequestSchema;
|
||||
output: typeof ListEdgesResponseSchema;
|
||||
input: typeof ConnectEdgeRequestSchema;
|
||||
output: typeof ConnectEdgeResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.ResolveEdge
|
||||
@@ -880,12 +809,12 @@ export declare const CaminoService: GenService<{
|
||||
output: typeof ResolveEdgeResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.RemoveEdge
|
||||
* @generated from rpc camino.CaminoService.DisconnectEdge
|
||||
*/
|
||||
removeEdge: {
|
||||
disconnectEdge: {
|
||||
methodKind: "unary";
|
||||
input: typeof RemoveEdgeRequestSchema;
|
||||
output: typeof RemoveEdgeResponseSchema;
|
||||
input: typeof DisconnectEdgeRequestSchema;
|
||||
output: typeof DisconnectEdgeResponseSchema;
|
||||
};
|
||||
/**
|
||||
* @generated from rpc camino.CaminoService.ListOps
|
||||
|
||||
Reference in New Issue
Block a user