2fa20da94d
- Main: license service, IPC, router; закрытие окон; yauzl закрытие zip (EMFILE), zipRead тест - Editor: стабильный projectState без мигания, логотип и меню, строки UI, LayoutShell overlay - Control: ластик для всех типов эффектов, затухание/нарастание музыки при смене сцены - Сборка: vite, build/dev scripts, obfuscate-main и build-env скрипты с тестами; package.json Made-with: Cursor
18 lines
421 B
TypeScript
18 lines
421 B
TypeScript
import type { LicenseVerifyFailure } from './verifyReasons';
|
|
|
|
export type LicenseSnapshotReason = 'ok' | LicenseVerifyFailure | 'revoked_remote' | 'none';
|
|
|
|
export type LicenseSnapshot = {
|
|
active: boolean;
|
|
devSkip: boolean;
|
|
reason: LicenseSnapshotReason;
|
|
summary: {
|
|
sub: string;
|
|
pid: string;
|
|
exp: number;
|
|
did: string | null;
|
|
} | null;
|
|
eulaAcceptedVersion: number | null;
|
|
deviceId: string;
|
|
};
|