Circle V2 API Docs
    Preparing search index...
    profilesRouter: BuiltRouter<
        {
            ctx: TRPCContext;
            errorShape: DefaultErrorShape;
            meta: object;
            transformer: false;
        },
        DecorateCreateRouterOptions<
            {
                listInOrganization: QueryProcedure<
                    {
                        input: {
                            cursor?: number;
                            limit?: number;
                            offset?: number;
                            search?: string;
                        };
                        meta: object;
                        output: PaginatedResponse<
                            {
                                first_name: string
                                | null;
                                id: ProfileId;
                                last_name: string | null;
                                title: string | null;
                            },
                        >;
                    },
                >;
                updateProfile: MutationProcedure<
                    {
                        input: { firstName: string; lastName: string; title?: string };
                        meta: object;
                        output: {
                            clinic_size: string | null;
                            created_at: string | null;
                            customer_id: string | null;
                            email: string | null;
                            expectations: string | null;
                            external_system: "kipu" | "lightningstep" | "sunwave" | null;
                            external_system_id: string | null;
                            first_name: string | null;
                            hear_about_us: string | null;
                            id: ProfileId;
                            is_superadmin: boolean;
                            last_name: string | null;
                            last_updated: string | null;
                            price_id: string | null;
                            profile_type: "user" | "external";
                            session_limit: string | null;
                            subscription_status:
                                | "trial_ended"
                                | "trial_running"
                                | "active"
                                | "inactive"
                                | null;
                            title: string
                            | null;
                            user_id: string & { __brand: "UserId" } | null;
                            vertical: string | null;
                        };
                    },
                >;
            },
        >,
    > = ...