mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-17 18:09:52 +00:00
20 lines
432 B
TypeScript
20 lines
432 B
TypeScript
import { type BaseModel } from "pocketbase";
|
|
|
|
import { WorkflowModel } from "./workflow";
|
|
|
|
export interface CertificateModel extends Omit<BaseModel, "created" | "updated"> {
|
|
san: string;
|
|
certificate: string;
|
|
privateKey: string;
|
|
issuerCertificate: string;
|
|
certUrl: string;
|
|
certStableUrl: string;
|
|
output: string;
|
|
expireAt: string;
|
|
workflow: string;
|
|
nodeId: string;
|
|
expand: {
|
|
workflow?: WorkflowModel;
|
|
};
|
|
}
|