- 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
144 lines
5.7 KiB
TypeScript
144 lines
5.7 KiB
TypeScript
import { Struct, Infer, Result, Context, Describe } from './struct.js';
|
|
import { Failure } from './error.js';
|
|
/**
|
|
* Check if a value is a plain object.
|
|
*/
|
|
export declare function isObject(x: unknown): x is object;
|
|
/**
|
|
* Check if a value is a non-array object.
|
|
*/
|
|
export declare function isNonArrayObject(x: unknown): x is object;
|
|
/**
|
|
* Check if a value is a plain object.
|
|
*/
|
|
export declare function isPlainObject(x: unknown): x is {
|
|
[key: string]: any;
|
|
};
|
|
/**
|
|
* Return a value as a printable string.
|
|
*/
|
|
export declare function print(value: any): string;
|
|
/**
|
|
* Shifts (removes and returns) the first value from the `input` iterator.
|
|
* Like `Array.prototype.shift()` but for an `Iterator`.
|
|
*/
|
|
export declare function shiftIterator<T>(input: Iterator<T>): T | undefined;
|
|
/**
|
|
* Convert a single validation result to a failure.
|
|
*/
|
|
export declare function toFailure<T, S>(result: string | boolean | Partial<Failure>, context: Context, struct: Struct<T, S>, value: any): Failure | undefined;
|
|
/**
|
|
* Convert a validation result to an iterable of failures.
|
|
*/
|
|
export declare function toFailures<T, S>(result: Result, context: Context, struct: Struct<T, S>, value: any): IterableIterator<Failure>;
|
|
/**
|
|
* Check a value against a struct, traversing deeply into nested values, and
|
|
* returning an iterator of failures or success.
|
|
*/
|
|
export declare function run<T, S>(value: unknown, struct: Struct<T, S>, options?: {
|
|
path?: any[];
|
|
branch?: any[];
|
|
coerce?: boolean;
|
|
mask?: boolean;
|
|
message?: string;
|
|
}): IterableIterator<[Failure, undefined] | [undefined, T]>;
|
|
/**
|
|
* Convert a union of type to an intersection.
|
|
*/
|
|
export type UnionToIntersection<U> = (U extends any ? (arg: U) => any : never) extends (arg: infer I) => void ? I : never;
|
|
/**
|
|
* Assign properties from one type to another, overwriting existing.
|
|
*/
|
|
export type Assign<T, U> = Simplify<U & Omit<T, keyof U>>;
|
|
/**
|
|
* A schema for enum structs.
|
|
*/
|
|
export type EnumSchema<T extends string | number | undefined | null> = {
|
|
[K in NonNullable<T>]: K;
|
|
};
|
|
/**
|
|
* Check if a type is a match for another whilst treating overlapping
|
|
* unions as a match.
|
|
*/
|
|
export type IsMatch<T, G> = T extends G ? (G extends T ? T : never) : never;
|
|
/**
|
|
* Check if a type is an exact match.
|
|
*/
|
|
export type IsExactMatch<T, U> = (<G>() => G extends T ? 1 : 2) extends <G>() => G extends U ? 1 : 2 ? T : never;
|
|
/**
|
|
* Check if a type is a record type.
|
|
*/
|
|
export type IsRecord<T> = T extends object ? string extends keyof T ? T : never : never;
|
|
/**
|
|
* Check if a type is a tuple.
|
|
*/
|
|
export type IsTuple<T> = T extends [any] ? T : T extends [any, any] ? T : T extends [any, any, any] ? T : T extends [any, any, any, any] ? T : T extends [any, any, any, any, any] ? T : never;
|
|
/**
|
|
* Check if a type is a union.
|
|
*/
|
|
export type IsUnion<T, U extends T = T> = (T extends any ? (U extends T ? false : true) : false) extends false ? never : T;
|
|
/**
|
|
* A schema for object structs.
|
|
*/
|
|
export type ObjectSchema = Record<string, Struct<any, any>>;
|
|
/**
|
|
* Infer a type from an object struct schema.
|
|
*/
|
|
export type ObjectType<S extends ObjectSchema> = Simplify<Optionalize<{
|
|
[K in keyof S]: Infer<S[K]>;
|
|
}>>;
|
|
/**
|
|
* Omit properties from a type that extend from a specific type.
|
|
*/
|
|
export type OmitBy<T, V> = Omit<T, {
|
|
[K in keyof T]: V extends Extract<T[K], V> ? K : never;
|
|
}[keyof T]>;
|
|
/**
|
|
* Normalize properties of a type that allow `undefined` to make them optional.
|
|
*/
|
|
export type Optionalize<S extends object> = OmitBy<S, undefined> & Partial<PickBy<S, undefined>>;
|
|
/**
|
|
* Transform an object schema type to represent a partial.
|
|
*/
|
|
export type PartialObjectSchema<S extends ObjectSchema> = {
|
|
[K in keyof S]: Struct<Infer<S[K]> | undefined>;
|
|
};
|
|
/**
|
|
* Pick properties from a type that extend from a specific type.
|
|
*/
|
|
export type PickBy<T, V> = Pick<T, {
|
|
[K in keyof T]: V extends Extract<T[K], V> ? K : never;
|
|
}[keyof T]>;
|
|
/**
|
|
* Simplifies a type definition to its most basic representation.
|
|
*/
|
|
export type Simplify<T> = T extends any[] | Date ? T : {
|
|
[K in keyof T]: T[K];
|
|
} & {};
|
|
export type If<B extends Boolean, Then, Else> = B extends true ? Then : Else;
|
|
/**
|
|
* A schema for any type of struct.
|
|
*/
|
|
export type StructSchema<T> = [T] extends [string | undefined | null] ? [T] extends [IsMatch<T, string | undefined | null>] ? null : [T] extends [IsUnion<T>] ? EnumSchema<T> : T : [T] extends [number | undefined | null] ? [T] extends [IsMatch<T, number | undefined | null>] ? null : [T] extends [IsUnion<T>] ? EnumSchema<T> : T : [T] extends [boolean] ? [T] extends [IsExactMatch<T, boolean>] ? null : T : T extends bigint | symbol | undefined | null | Function | Date | Error | RegExp | Map<any, any> | WeakMap<any, any> | Set<any> | WeakSet<any> | Promise<any> ? null : T extends Array<infer E> ? T extends IsTuple<T> ? null : Struct<E> : T extends object ? T extends IsRecord<T> ? null : {
|
|
[K in keyof T]: Describe<T[K]>;
|
|
} : null;
|
|
/**
|
|
* A schema for tuple structs.
|
|
*/
|
|
export type TupleSchema<T> = {
|
|
[K in keyof T]: Struct<T[K]>;
|
|
};
|
|
/**
|
|
* Shorthand type for matching any `Struct`.
|
|
*/
|
|
export type AnyStruct = Struct<any, any>;
|
|
/**
|
|
* Infer a tuple of types from a tuple of `Struct`s.
|
|
*
|
|
* This is used to recursively retrieve the type from `union` `intersection` and
|
|
* `tuple` structs.
|
|
*/
|
|
export type InferStructTuple<Tuple extends AnyStruct[], Length extends number = Tuple['length']> = Length extends Length ? number extends Length ? Tuple : _InferTuple<Tuple, Length, []> : never;
|
|
type _InferTuple<Tuple extends AnyStruct[], Length extends number, Accumulated extends unknown[], Index extends number = Accumulated['length']> = Index extends Length ? Accumulated : _InferTuple<Tuple, Length, [...Accumulated, Infer<Tuple[Index]>]>;
|
|
export {};
|
|
//# sourceMappingURL=utils.d.ts.map
|