Files
boc/landvex/node_modules/bull-board/dist/ui/components/constants.d.ts
T
Bernt 6989a98d75 feat: Passwordless cross-device authentication
- Arkitektur: docs/auth/passwordless-architecture.md
- Backend: iom/quixzoom-auth-service/ (FastAPI + Redis)
- Webb: quixzoom-market-pages/se/login/ (QR-kod + polling)
- App: iom/quixzoom-app/src/features/auth/ (push + deep links)

Flöde: QR-kod → app-godkännande → webb-inloggad
2026-07-07 07:11:50 +00:00

15 lines
550 B
TypeScript

import { KeyOf } from '../../@types/utils';
export declare const STATUSES: {
latest: string;
active: string;
waiting: string;
completed: string;
failed: string;
delayed: string;
paused: string;
};
export declare const STATUS_LIST: KeyOf<typeof STATUSES>;
export declare type Status = keyof typeof STATUSES;
export declare type Field = 'attempts' | 'data' | 'id' | 'name' | 'opts' | 'progress' | 'timestamps' | 'delay' | 'failedReason' | 'retry' | 'promote' | 'clean';
export declare const FIELDS: Record<Status, Field[]>;