- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
import CachedResponseStateEnum from './CachedResponseStateEnum.js';
|
|
import Headers from '../../Headers.js';
|
|
export default interface ICachedResponse {
|
|
/** Response. */
|
|
response: {
|
|
status: number;
|
|
statusText: string;
|
|
url: string;
|
|
headers: Headers;
|
|
waitingForBody: boolean;
|
|
body: Buffer | null;
|
|
};
|
|
/** Request. */
|
|
request: {
|
|
headers: Headers;
|
|
method: string;
|
|
};
|
|
/** Cache update time in milliseconds. */
|
|
cacheUpdateTime: number;
|
|
/** Last modified time in milliseconds. */
|
|
lastModified: number | null;
|
|
/** Vary headers. */
|
|
vary: {
|
|
[header: string]: string;
|
|
};
|
|
/** Expire time in milliseconds. */
|
|
expires: number | null;
|
|
/** ETag */
|
|
etag: string | null;
|
|
/** Must revalidate using "If-Modified-Since" request when expired. Not supported yet. */
|
|
mustRevalidate: boolean;
|
|
/** Stale while revalidate using "If-Modified-Since" request when expired */
|
|
staleWhileRevalidate: boolean;
|
|
/** Used when "mustRevalidate" or "staleWhileRevalidate" is true. */
|
|
state: CachedResponseStateEnum;
|
|
}
|
|
//# sourceMappingURL=ICachedResponse.d.ts.map
|