mirror of
https://github.com/Infisical/infisical.git
synced 2025-08-02 08:27:38 +00:00
26 lines
824 B
TypeScript
26 lines
824 B
TypeScript
// Code generated by automation script, DO NOT EDIT.
|
|
// Automated by pulling database and generating zod schema
|
|
// To update. Just run npm run generate:schema
|
|
// Written by akhilmhdh.
|
|
|
|
import { z } from "zod";
|
|
|
|
import { TImmutableDBKeys } from "./models";
|
|
|
|
export const SshHostsSchema = z.object({
|
|
id: z.string().uuid(),
|
|
createdAt: z.date(),
|
|
updatedAt: z.date(),
|
|
projectId: z.string(),
|
|
hostname: z.string(),
|
|
userCertTtl: z.string(),
|
|
hostCertTtl: z.string(),
|
|
userSshCaId: z.string().uuid(),
|
|
hostSshCaId: z.string().uuid(),
|
|
alias: z.string().nullable().optional()
|
|
});
|
|
|
|
export type TSshHosts = z.infer<typeof SshHostsSchema>;
|
|
export type TSshHostsInsert = Omit<z.input<typeof SshHostsSchema>, TImmutableDBKeys>;
|
|
export type TSshHostsUpdate = Partial<Omit<z.input<typeof SshHostsSchema>, TImmutableDBKeys>>;
|