Circle V2 API Docs
    Preparing search index...

    Variable entitiesRepoConst

    entitiesRepo: DbRepo<
        {
            create: (
                params: { company_name: string } & {
                    created_at?: string | null;
                    created_by?: string | null;
                    entity_id?: EntityId;
                },
            ) => Promise<
                {
                    company_name: string;
                    created_at: string
                    | null;
                    created_by: string | null;
                    entity_id: EntityId;
                },
            >;
            getById: (
                entityId: EntityId,
            ) => Promise<
                {
                    company_name: string;
                    created_at: string
                    | null;
                    created_by: string | null;
                    entity_id: EntityId;
                },
            >;
        },
    > = ...