Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
constructive-io avatar

Orm Auth

  • 1 installs
  • 52 repo stars
  • Updated August 5, 2026
  • constructive-io/constructive

ORM client for the auth API providing typed CRUD operations for 9 tables and 28 custom operations.

About

ORM client for the auth API provides typed CRUD operations for 9 tables and 28 custom operations.. Supports authentication-related database operations.

  • Typed CRUD operations for auth entities
  • Database access for authentication layer

Orm Auth by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #3,830 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/constructive-io/constructive --skill orm-auth

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars52
Last updatedAugust 5, 2026
Repositoryconstructive-io/constructive

What it does

ORM client for the auth API providing typed CRUD operations for 9 tables and 28 custom operations.

Files

SKILL.mdMarkdownGitHub ↗

orm-auth

<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->

ORM client for the auth API — provides typed CRUD operations for 9 tables and 28 custom operations

Usage

// Import the ORM client
import { db } from './orm';

// Available models: email, phoneNumber, cryptoAddress, webauthnCredential, auditLog, identityProvider, roleType, userConnectedAccount, ...
db.<model>.findMany({ select: { id: true } }).execute()
db.<model>.findOne({ id: '<UUID>', select: { id: true } }).execute()
db.<model>.create({ data: { ... }, select: { id: true } }).execute()
db.<model>.update({ where: { id: '<UUID>' }, data: { ... }, select: { id: true } }).execute()
db.<model>.delete({ where: { id: '<UUID>' } }).execute()

Examples

Query records

const items = await db.email.findMany({
  select: { id: true }
}).execute();

References

See the references/ directory for detailed per-entity API documentation:

  • email
  • phone-number
  • crypto-address
  • webauthn-credential
  • audit-log
  • identity-provider
  • role-type
  • user-connected-account
  • user
  • current-user-agent
  • current-ip-address
  • current-user-id
  • require-step-up
  • current-user
  • sign-out
  • send-account-deletion-email
  • check-password
  • disconnect-account
  • revoke-api-key
  • revoke-session
  • verify-password
  • verify-totp
  • confirm-delete-account
  • set-password
  • verify-email
  • provision-new-user
  • reset-password
  • sign-in-cross-origin
  • sign-up
  • request-cross-origin-token
  • sign-in
  • extend-token-expires
  • create-api-key
  • forgot-password
  • send-verification-email
  • request-upload-url
  • provision-bucket

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.