Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
21 lines
709 B
Plaintext
21 lines
709 B
Plaintext
import { DirectusUser } from "./user.js";
|
|
import { DirectusCollection } from "./collection.js";
|
|
import { MergeCoreCollection } from "../types/schema.js";
|
|
|
|
//#region src/schema/version.d.ts
|
|
type DirectusVersion<Schema = any> = MergeCoreCollection<Schema, 'directus_versions', {
|
|
id: string;
|
|
key: string;
|
|
name: string | null;
|
|
collection: DirectusCollection<Schema> | string;
|
|
item: string;
|
|
hash: string;
|
|
date_created: 'datetime' | null;
|
|
date_updated: 'datetime' | null;
|
|
user_created: DirectusUser<Schema> | string | null;
|
|
user_updated: DirectusUser<Schema> | string | null;
|
|
delta: Record<string, any> | null;
|
|
}>;
|
|
//#endregion
|
|
export { DirectusVersion };
|
|
//# sourceMappingURL=version.d.ts.map |