Files
klz-cables.com/.pnpm-store/v10/files/cf/2d709fff1560f41b282a13b4304600218eb33966824d3ed7b5bd593a03c3f95b3781645c042459de1b6e6d642be691f44b9e977a40583eefe50b8974fdf93d
Marc Mintel 5397309103
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
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

43 lines
1.3 KiB
Plaintext

import { DirectusFile } from "./file.js";
import { DirectusRole } from "./role.js";
import { DirectusPolicy } from "./policy.js";
import { MergeCoreCollection } from "../types/schema.js";
//#region src/schema/user.d.ts
/**
* directus_users type
*/
type DirectusUser<Schema = any> = MergeCoreCollection<Schema, 'directus_users', {
id: string;
first_name: string | null;
last_name: string | null;
email: string | null;
password: string | null;
location: string | null;
title: string | null;
description: string | null;
tags: string[] | null;
avatar: DirectusFile<Schema> | string | null;
language: string | null;
theme: string | null;
tfa_secret: string | null;
status: string;
role: DirectusRole<Schema> | string | null;
token: string | null;
last_access: 'datetime' | null;
last_page: string | null;
provider: string;
external_identifier: string | null;
auth_data: Record<string, any> | null;
email_notifications: boolean | null;
appearance: string | null;
theme_dark: string | null;
theme_light: string | null;
theme_light_overrides: Record<string, unknown> | null;
theme_dark_overrides: Record<string, unknown> | null;
policies: string[] | DirectusPolicy<Schema>[];
}>;
//#endregion
export { DirectusUser };
//# sourceMappingURL=user.d.ts.map