/** * FunctionDeploymentEvent model for ORM client * @generated by @constructive-io/graphql-codegen * DO NOT EDIT - changes will be overwritten */ import { OrmClient } from '../client'; import { QueryBuilder } from '../query-builder'; import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types'; import type { FunctionDeploymentEventWithRelations, FunctionDeploymentEventSelect, FunctionDeploymentEventFilter, FunctionDeploymentEventOrderBy, CreateFunctionDeploymentEventInput, FunctionDeploymentEventPatch } from '../input-types'; export declare class FunctionDeploymentEventModel { private client; constructor(client: OrmClient); findMany(args: FindManyArgs & { select: S; } & StrictSelect): QueryBuilder<{ functionDeploymentEvents: ConnectionResult>; }>; findFirst(args: FindFirstArgs & { select: S; } & StrictSelect): QueryBuilder<{ functionDeploymentEvent: InferSelectResult | null; }>; findOne(args: { id: string; select: S; } & StrictSelect): QueryBuilder<{ functionDeploymentEvent: InferSelectResult | null; }>; create(args: CreateArgs & { select: S; } & StrictSelect): QueryBuilder<{ createFunctionDeploymentEvent: { functionDeploymentEvent: InferSelectResult; }; }>; update(args: UpdateArgs & { select: S; } & StrictSelect): QueryBuilder<{ updateFunctionDeploymentEvent: { functionDeploymentEvent: InferSelectResult; }; }>; delete(args: DeleteArgs<{ id: string; createdAt: string; }, S> & { select: S; } & StrictSelect): QueryBuilder<{ deleteFunctionDeploymentEvent: { functionDeploymentEvent: InferSelectResult; }; }>; }