Circle V2 API Docs
    Preparing search index...
    userPromptsRouter: BuiltRouter<
        {
            ctx: TRPCContext;
            errorShape: DefaultErrorShape;
            meta: object;
            transformer: false;
        },
        DecorateCreateRouterOptions<
            {
                create: MutationProcedure<
                    {
                        input: { prompt: string };
                        meta: object;
                        output: {
                            created_at: DbDate | null;
                            id: UserPromptId;
                            is_pinned: boolean | null;
                            prompt: string | null;
                            user_id: UserId | null;
                        };
                    },
                >;
                delete: MutationProcedure<
                    {
                        input: { id: string };
                        meta: object;
                        output: {
                            created_at: DbDate | null;
                            id: UserPromptId;
                            is_pinned: boolean | null;
                            prompt: string | null;
                            user_id: UserId | null;
                        };
                    },
                >;
                list: QueryProcedure<
                    {
                        input: void;
                        meta: object;
                        output: {
                            created_at: DbDate
                            | null;
                            id: UserPromptId;
                            is_pinned: boolean | null;
                            prompt: string | null;
                            user_id: UserId | null;
                        }[];
                    },
                >;
                togglePin: MutationProcedure<
                    {
                        input: { id: string };
                        meta: object;
                        output: {
                            created_at: DbDate | null;
                            id: UserPromptId;
                            is_pinned: boolean | null;
                            prompt: string | null;
                            user_id: UserId | null;
                        };
                    },
                >;
            },
        >,
    > = ...