UNPKG

@seamapi/blueprint

Version:

Build tools for the Seam API using this blueprint.

30 lines (25 loc) 421 B
import { z } from 'zod' export const SdkNameSchema = z.enum([ 'javascript', 'python', 'php', 'ruby', 'seam_cli', 'go', 'java', 'csharp', 'curl', ]) export const SyntaxNameSchema = z.enum([ 'javascript', 'json', 'python', 'php', 'ruby', 'bash', 'go', 'java', 'csharp', ]) export type SyntaxName = z.infer<typeof SyntaxNameSchema> export type SdkName = z.infer<typeof SdkNameSchema>