@kaito-http/core 4.0.0-beta.23 → 4.0.0-beta.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/schema/schema.d.cts
CHANGED
|
@@ -255,7 +255,7 @@ interface RefDef<Input extends Record<keyof Output, JSONValue>, Output extends R
|
|
|
255
255
|
summary?: string | undefined;
|
|
256
256
|
}
|
|
257
257
|
declare class KRef<Input extends Record<keyof Output, JSONValue>, Output extends Record<keyof Input, any>> extends BaseSchema<Input, Output, RefDef<Input, Output>> {
|
|
258
|
-
static create: <Input_1 extends Record<keyof Output_1, JSONValue>, Output_1 extends Record<keyof Input_1,
|
|
258
|
+
static create: <Input_1 extends Record<keyof Output_1, JSONValue>, Output_1 extends Record<keyof Input_1, any>>(name: string, shape: { [K in keyof Input_1 | keyof Output_1]: BaseSchema<Input_1[K], Output_1[K], BaseSchemaDef<Input_1[K]>>; }) => KRef<Input_1, Output_1>;
|
|
259
259
|
serialize(value: Output): Input;
|
|
260
260
|
visit(visitor: (schema: BaseSchema<any, any, any>) => void): void;
|
|
261
261
|
example(): never;
|
|
@@ -328,7 +328,7 @@ declare const k: {
|
|
|
328
328
|
boolean: () => KBoolean;
|
|
329
329
|
array: <ItemsInput extends JSONValue, ItemsOutput, Def extends BaseSchemaDef<ItemsInput>>(items: BaseSchema<ItemsInput, ItemsOutput, Def>) => KArray<ItemsInput, ItemsOutput>;
|
|
330
330
|
null: () => KNull;
|
|
331
|
-
ref: <Input extends Record<keyof Output, JSONValue>, Output extends Record<keyof Input,
|
|
331
|
+
ref: <Input extends Record<keyof Output, JSONValue>, Output extends Record<keyof Input, any>>(name: string, shape: { [K in keyof Input | keyof Output]: BaseSchema<Input[K], Output[K], BaseSchemaDef<Input[K]>>; }) => KRef<Input, Output>;
|
|
332
332
|
object: <Input extends Record<keyof Output, any>, Output extends Record<keyof Input, any>>(shape: { [K in keyof Input | keyof Output]: BaseSchema<Input[K], Output[K], BaseSchemaDef<Input[K]>>; }) => KObject<Input, Output>;
|
|
333
333
|
scalar: <ClientRepresentation extends JSONPrimitive, ServerRepresentation>(options: ScalarOptions<ClientRepresentation, ServerRepresentation>) => KScalar<ClientRepresentation, ServerRepresentation>;
|
|
334
334
|
literal: <Value extends string | number | boolean>(value: Value) => KLiteral<Value>;
|
package/dist/schema/schema.d.ts
CHANGED
|
@@ -255,7 +255,7 @@ interface RefDef<Input extends Record<keyof Output, JSONValue>, Output extends R
|
|
|
255
255
|
summary?: string | undefined;
|
|
256
256
|
}
|
|
257
257
|
declare class KRef<Input extends Record<keyof Output, JSONValue>, Output extends Record<keyof Input, any>> extends BaseSchema<Input, Output, RefDef<Input, Output>> {
|
|
258
|
-
static create: <Input_1 extends Record<keyof Output_1, JSONValue>, Output_1 extends Record<keyof Input_1,
|
|
258
|
+
static create: <Input_1 extends Record<keyof Output_1, JSONValue>, Output_1 extends Record<keyof Input_1, any>>(name: string, shape: { [K in keyof Input_1 | keyof Output_1]: BaseSchema<Input_1[K], Output_1[K], BaseSchemaDef<Input_1[K]>>; }) => KRef<Input_1, Output_1>;
|
|
259
259
|
serialize(value: Output): Input;
|
|
260
260
|
visit(visitor: (schema: BaseSchema<any, any, any>) => void): void;
|
|
261
261
|
example(): never;
|
|
@@ -328,7 +328,7 @@ declare const k: {
|
|
|
328
328
|
boolean: () => KBoolean;
|
|
329
329
|
array: <ItemsInput extends JSONValue, ItemsOutput, Def extends BaseSchemaDef<ItemsInput>>(items: BaseSchema<ItemsInput, ItemsOutput, Def>) => KArray<ItemsInput, ItemsOutput>;
|
|
330
330
|
null: () => KNull;
|
|
331
|
-
ref: <Input extends Record<keyof Output, JSONValue>, Output extends Record<keyof Input,
|
|
331
|
+
ref: <Input extends Record<keyof Output, JSONValue>, Output extends Record<keyof Input, any>>(name: string, shape: { [K in keyof Input | keyof Output]: BaseSchema<Input[K], Output[K], BaseSchemaDef<Input[K]>>; }) => KRef<Input, Output>;
|
|
332
332
|
object: <Input extends Record<keyof Output, any>, Output extends Record<keyof Input, any>>(shape: { [K in keyof Input | keyof Output]: BaseSchema<Input[K], Output[K], BaseSchemaDef<Input[K]>>; }) => KObject<Input, Output>;
|
|
333
333
|
scalar: <ClientRepresentation extends JSONPrimitive, ServerRepresentation>(options: ScalarOptions<ClientRepresentation, ServerRepresentation>) => KScalar<ClientRepresentation, ServerRepresentation>;
|
|
334
334
|
literal: <Value extends string | number | boolean>(value: Value) => KLiteral<Value>;
|