fosrl.pangolin/server/openApi.ts

19 lines
437 B
TypeScript
Raw Permalink Normal View History

2025-04-06 16:06:50 -04:00
import { OpenAPIRegistry } from "@asteasolutions/zod-to-openapi";
export const registry = new OpenAPIRegistry();
export enum OpenAPITags {
Site = "Site",
2025-04-06 22:44:14 -04:00
Org = "Organization",
Resource = "Resource",
Role = "Role",
User = "User",
2025-04-08 18:18:57 -07:00
Invitation = "Invitation",
2025-04-06 22:44:14 -04:00
Target = "Target",
Rule = "Rule",
2025-04-12 15:39:15 -04:00
AccessToken = "Access Token",
Idp = "Identity Provider",
Client = "Client",
ApiKey = "API Key"
2025-04-06 16:06:50 -04:00
}