@temporary-name/zod 1.9.3-alpha.dff27b31c00072e392d67d0cd8ca5b94835839f9 → 1.9.3-alpha.e098b3d1c5bffbad2fadfda89ba01f6452db46b5
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/index.d.mts +17 -14
- package/dist/index.d.ts +17 -14
- package/dist/index.mjs +53 -0
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -26,6 +26,9 @@ declare const ZodRealError: core.$constructor<ZodError>;
|
|
|
26
26
|
/** @deprecated Use `z.core.$ZodRawIssue` instead. */
|
|
27
27
|
type IssueData = core.$ZodRawIssue;
|
|
28
28
|
|
|
29
|
+
interface ParseContext extends core.ParseContextInternal<core.$ZodIssue> {
|
|
30
|
+
parseType?: 'query' | 'body' | 'path' | 'header' | 'output';
|
|
31
|
+
}
|
|
29
32
|
type ZodSafeParseResult<T> = ZodSafeParseSuccess<T> | ZodSafeParseError<T>;
|
|
30
33
|
type ZodSafeParseSuccess<T> = {
|
|
31
34
|
success: true;
|
|
@@ -37,24 +40,24 @@ type ZodSafeParseError<T> = {
|
|
|
37
40
|
data?: never;
|
|
38
41
|
error: ZodError<T>;
|
|
39
42
|
};
|
|
40
|
-
declare const parse: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?:
|
|
43
|
+
declare const parse: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?: ParseContext, _params?: {
|
|
41
44
|
callee?: core.util.AnyFunc;
|
|
42
45
|
Err?: core.$ZodErrorClass;
|
|
43
46
|
}) => core.output<T>;
|
|
44
|
-
declare const parseAsync: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?:
|
|
47
|
+
declare const parseAsync: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?: ParseContext, _params?: {
|
|
45
48
|
callee?: core.util.AnyFunc;
|
|
46
49
|
Err?: core.$ZodErrorClass;
|
|
47
50
|
}) => Promise<core.output<T>>;
|
|
48
|
-
declare const safeParse: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?:
|
|
49
|
-
declare const safeParseAsync: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?:
|
|
50
|
-
declare const encode: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?:
|
|
51
|
-
declare const decode: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?:
|
|
52
|
-
declare const encodeAsync: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?:
|
|
53
|
-
declare const decodeAsync: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?:
|
|
54
|
-
declare const safeEncode: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?:
|
|
55
|
-
declare const safeDecode: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?:
|
|
56
|
-
declare const safeEncodeAsync: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?:
|
|
57
|
-
declare const safeDecodeAsync: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?:
|
|
51
|
+
declare const safeParse: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?: ParseContext) => ZodSafeParseResult<core.output<T>>;
|
|
52
|
+
declare const safeParseAsync: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?: ParseContext) => Promise<ZodSafeParseResult<core.output<T>>>;
|
|
53
|
+
declare const encode: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?: ParseContext) => core.input<T>;
|
|
54
|
+
declare const decode: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?: ParseContext) => core.output<T>;
|
|
55
|
+
declare const encodeAsync: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?: ParseContext) => Promise<core.input<T>>;
|
|
56
|
+
declare const decodeAsync: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?: ParseContext) => Promise<core.output<T>>;
|
|
57
|
+
declare const safeEncode: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?: ParseContext) => ZodSafeParseResult<core.input<T>>;
|
|
58
|
+
declare const safeDecode: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?: ParseContext) => ZodSafeParseResult<core.output<T>>;
|
|
59
|
+
declare const safeEncodeAsync: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?: ParseContext) => Promise<ZodSafeParseResult<core.input<T>>>;
|
|
60
|
+
declare const safeDecodeAsync: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?: ParseContext) => Promise<ZodSafeParseResult<core.output<T>>>;
|
|
58
61
|
|
|
59
62
|
type IsGateEnabled = (gate: string) => boolean;
|
|
60
63
|
declare const gatingContext: AsyncLocalStorage<IsGateEnabled>;
|
|
@@ -706,7 +709,7 @@ interface KrustyJSONSchema<K extends KrustyInternals = KrustyInternals> extends
|
|
|
706
709
|
}
|
|
707
710
|
declare function json<K extends KrustyInternals = KrustyInternals>(params?: string | core.$ZodCustomParams): KrustyJSONSchema<K>;
|
|
708
711
|
|
|
709
|
-
declare class SchemaClass<GateNames extends string =
|
|
712
|
+
declare class SchemaClass<GateNames extends string = never, K extends KrustyInternals = KrustyInternals<GateNames>> {
|
|
710
713
|
string(params?: string | core.$ZodStringParams): KrustyString<K>;
|
|
711
714
|
number(params?: string | core.$ZodNumberParams): KrustyNumber<K>;
|
|
712
715
|
int(params?: string | core.$ZodCheckNumberFormatParams): KrustyNumber<K>;
|
|
@@ -726,4 +729,4 @@ declare class SchemaClass<GateNames extends string = string, K extends KrustyInt
|
|
|
726
729
|
}
|
|
727
730
|
|
|
728
731
|
export { $ZodGate, KrustyAny, KrustyArray, KrustyBase64, KrustyBase64URL, KrustyBigInt, KrustyBigIntFormat, KrustyBoolean, KrustyCIDRv4, KrustyCIDRv6, KrustyCUID, KrustyCUID2, KrustyCatch, KrustyCodec, KrustyCustom, KrustyCustomStringFormat, KrustyDate, KrustyDefault, KrustyDiscriminatedUnion, KrustyE164, KrustyEmail, KrustyEmoji, KrustyEnum, KrustyFile, KrustyFunction, KrustyGUID, KrustyGate, KrustyIPv4, KrustyIPv6, KrustyIntersection, KrustyJWT, KrustyKSUID, KrustyLazy, KrustyLiteral, KrustyMap, KrustyNaN, KrustyNanoID, KrustyNever, KrustyNonOptional, KrustyNull, KrustyNullable, KrustyNumber, KrustyNumberFormat, KrustyObject, KrustyOptional, KrustyPipe, KrustyPrefault, KrustyPromise, KrustyReadonly, KrustyRecord, KrustySet, KrustyString, KrustyStringFormat, KrustySuccess, KrustySymbol, KrustyTemplateLiteral, KrustyTransform, KrustyTuple, KrustyType, KrustyULID, KrustyURL, KrustyUUID, KrustyUndefined, KrustyUnion, KrustyUnknown, KrustyVoid, KrustyXID, SchemaClass, ZodError, ZodRealError, _KrustyString, _default, _function, any, array, base64, base64url, bigint, boolean, _catch as catch, check, cidrv4, cidrv6, codec, cuid, cuid2, custom, date, decode, decodeAsync, discriminatedUnion, e164, email, emoji, encode, encodeAsync, _enum as enum, file, float32, float64, _function as function, gate, gatingContext, guid, hash, hex, hostname, httpUrl, _instanceof as instanceof, int, int32, int64, intersection, ipv4, ipv6, isGateIssue, isGateIssueRaw, json, jwt, keyof, ksuid, lazy, literal, looseObject, map, nan, nanoid, nativeEnum, never, nonoptional, _null as null, nullable, nullish, number, object, optional, parse, parseAsync, partialRecord, pipe, prefault, promise, readonly, record, refine, safeDecode, safeDecodeAsync, safeEncode, safeEncodeAsync, safeParse, safeParseAsync, set, strictObject, string, stringFormat, stringbool, success, superRefine, symbol, templateLiteral, transform, tuple, uint32, uint64, ulid, _undefined as undefined, union, unknown, url, uuid, uuidv4, uuidv6, uuidv7, _void as void, xid };
|
|
729
|
-
export type { $ZodGateDef, $ZodGateInternals, IsGateEnabled, IssueData, KrustyFloat32, KrustyFloat64, KrustyInt, KrustyInt32, KrustyInternals, KrustyJSONSchema, KrustyJSONSchemaInternals, KrustyUInt32, SafeExtendShape, ZodIssue, ZodSafeParseError, ZodSafeParseResult, ZodSafeParseSuccess, _KrustyBigInt, _KrustyBoolean, _KrustyDate, _KrustyNumber, _KrustyType };
|
|
732
|
+
export type { $ZodGateDef, $ZodGateInternals, IsGateEnabled, IssueData, KrustyFloat32, KrustyFloat64, KrustyInt, KrustyInt32, KrustyInternals, KrustyJSONSchema, KrustyJSONSchemaInternals, KrustyUInt32, ParseContext, SafeExtendShape, ZodIssue, ZodSafeParseError, ZodSafeParseResult, ZodSafeParseSuccess, _KrustyBigInt, _KrustyBoolean, _KrustyDate, _KrustyNumber, _KrustyType };
|
package/dist/index.d.ts
CHANGED
|
@@ -26,6 +26,9 @@ declare const ZodRealError: core.$constructor<ZodError>;
|
|
|
26
26
|
/** @deprecated Use `z.core.$ZodRawIssue` instead. */
|
|
27
27
|
type IssueData = core.$ZodRawIssue;
|
|
28
28
|
|
|
29
|
+
interface ParseContext extends core.ParseContextInternal<core.$ZodIssue> {
|
|
30
|
+
parseType?: 'query' | 'body' | 'path' | 'header' | 'output';
|
|
31
|
+
}
|
|
29
32
|
type ZodSafeParseResult<T> = ZodSafeParseSuccess<T> | ZodSafeParseError<T>;
|
|
30
33
|
type ZodSafeParseSuccess<T> = {
|
|
31
34
|
success: true;
|
|
@@ -37,24 +40,24 @@ type ZodSafeParseError<T> = {
|
|
|
37
40
|
data?: never;
|
|
38
41
|
error: ZodError<T>;
|
|
39
42
|
};
|
|
40
|
-
declare const parse: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?:
|
|
43
|
+
declare const parse: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?: ParseContext, _params?: {
|
|
41
44
|
callee?: core.util.AnyFunc;
|
|
42
45
|
Err?: core.$ZodErrorClass;
|
|
43
46
|
}) => core.output<T>;
|
|
44
|
-
declare const parseAsync: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?:
|
|
47
|
+
declare const parseAsync: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?: ParseContext, _params?: {
|
|
45
48
|
callee?: core.util.AnyFunc;
|
|
46
49
|
Err?: core.$ZodErrorClass;
|
|
47
50
|
}) => Promise<core.output<T>>;
|
|
48
|
-
declare const safeParse: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?:
|
|
49
|
-
declare const safeParseAsync: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?:
|
|
50
|
-
declare const encode: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?:
|
|
51
|
-
declare const decode: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?:
|
|
52
|
-
declare const encodeAsync: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?:
|
|
53
|
-
declare const decodeAsync: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?:
|
|
54
|
-
declare const safeEncode: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?:
|
|
55
|
-
declare const safeDecode: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?:
|
|
56
|
-
declare const safeEncodeAsync: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?:
|
|
57
|
-
declare const safeDecodeAsync: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?:
|
|
51
|
+
declare const safeParse: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?: ParseContext) => ZodSafeParseResult<core.output<T>>;
|
|
52
|
+
declare const safeParseAsync: <T extends core.$ZodType>(schema: T, value: unknown, _ctx?: ParseContext) => Promise<ZodSafeParseResult<core.output<T>>>;
|
|
53
|
+
declare const encode: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?: ParseContext) => core.input<T>;
|
|
54
|
+
declare const decode: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?: ParseContext) => core.output<T>;
|
|
55
|
+
declare const encodeAsync: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?: ParseContext) => Promise<core.input<T>>;
|
|
56
|
+
declare const decodeAsync: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?: ParseContext) => Promise<core.output<T>>;
|
|
57
|
+
declare const safeEncode: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?: ParseContext) => ZodSafeParseResult<core.input<T>>;
|
|
58
|
+
declare const safeDecode: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?: ParseContext) => ZodSafeParseResult<core.output<T>>;
|
|
59
|
+
declare const safeEncodeAsync: <T extends core.$ZodType>(schema: T, value: core.output<T>, _ctx?: ParseContext) => Promise<ZodSafeParseResult<core.input<T>>>;
|
|
60
|
+
declare const safeDecodeAsync: <T extends core.$ZodType>(schema: T, value: core.input<T>, _ctx?: ParseContext) => Promise<ZodSafeParseResult<core.output<T>>>;
|
|
58
61
|
|
|
59
62
|
type IsGateEnabled = (gate: string) => boolean;
|
|
60
63
|
declare const gatingContext: AsyncLocalStorage<IsGateEnabled>;
|
|
@@ -706,7 +709,7 @@ interface KrustyJSONSchema<K extends KrustyInternals = KrustyInternals> extends
|
|
|
706
709
|
}
|
|
707
710
|
declare function json<K extends KrustyInternals = KrustyInternals>(params?: string | core.$ZodCustomParams): KrustyJSONSchema<K>;
|
|
708
711
|
|
|
709
|
-
declare class SchemaClass<GateNames extends string =
|
|
712
|
+
declare class SchemaClass<GateNames extends string = never, K extends KrustyInternals = KrustyInternals<GateNames>> {
|
|
710
713
|
string(params?: string | core.$ZodStringParams): KrustyString<K>;
|
|
711
714
|
number(params?: string | core.$ZodNumberParams): KrustyNumber<K>;
|
|
712
715
|
int(params?: string | core.$ZodCheckNumberFormatParams): KrustyNumber<K>;
|
|
@@ -726,4 +729,4 @@ declare class SchemaClass<GateNames extends string = string, K extends KrustyInt
|
|
|
726
729
|
}
|
|
727
730
|
|
|
728
731
|
export { $ZodGate, KrustyAny, KrustyArray, KrustyBase64, KrustyBase64URL, KrustyBigInt, KrustyBigIntFormat, KrustyBoolean, KrustyCIDRv4, KrustyCIDRv6, KrustyCUID, KrustyCUID2, KrustyCatch, KrustyCodec, KrustyCustom, KrustyCustomStringFormat, KrustyDate, KrustyDefault, KrustyDiscriminatedUnion, KrustyE164, KrustyEmail, KrustyEmoji, KrustyEnum, KrustyFile, KrustyFunction, KrustyGUID, KrustyGate, KrustyIPv4, KrustyIPv6, KrustyIntersection, KrustyJWT, KrustyKSUID, KrustyLazy, KrustyLiteral, KrustyMap, KrustyNaN, KrustyNanoID, KrustyNever, KrustyNonOptional, KrustyNull, KrustyNullable, KrustyNumber, KrustyNumberFormat, KrustyObject, KrustyOptional, KrustyPipe, KrustyPrefault, KrustyPromise, KrustyReadonly, KrustyRecord, KrustySet, KrustyString, KrustyStringFormat, KrustySuccess, KrustySymbol, KrustyTemplateLiteral, KrustyTransform, KrustyTuple, KrustyType, KrustyULID, KrustyURL, KrustyUUID, KrustyUndefined, KrustyUnion, KrustyUnknown, KrustyVoid, KrustyXID, SchemaClass, ZodError, ZodRealError, _KrustyString, _default, _function, any, array, base64, base64url, bigint, boolean, _catch as catch, check, cidrv4, cidrv6, codec, cuid, cuid2, custom, date, decode, decodeAsync, discriminatedUnion, e164, email, emoji, encode, encodeAsync, _enum as enum, file, float32, float64, _function as function, gate, gatingContext, guid, hash, hex, hostname, httpUrl, _instanceof as instanceof, int, int32, int64, intersection, ipv4, ipv6, isGateIssue, isGateIssueRaw, json, jwt, keyof, ksuid, lazy, literal, looseObject, map, nan, nanoid, nativeEnum, never, nonoptional, _null as null, nullable, nullish, number, object, optional, parse, parseAsync, partialRecord, pipe, prefault, promise, readonly, record, refine, safeDecode, safeDecodeAsync, safeEncode, safeEncodeAsync, safeParse, safeParseAsync, set, strictObject, string, stringFormat, stringbool, success, superRefine, symbol, templateLiteral, transform, tuple, uint32, uint64, ulid, _undefined as undefined, union, unknown, url, uuid, uuidv4, uuidv6, uuidv7, _void as void, xid };
|
|
729
|
-
export type { $ZodGateDef, $ZodGateInternals, IsGateEnabled, IssueData, KrustyFloat32, KrustyFloat64, KrustyInt, KrustyInt32, KrustyInternals, KrustyJSONSchema, KrustyJSONSchemaInternals, KrustyUInt32, SafeExtendShape, ZodIssue, ZodSafeParseError, ZodSafeParseResult, ZodSafeParseSuccess, _KrustyBigInt, _KrustyBoolean, _KrustyDate, _KrustyNumber, _KrustyType };
|
|
732
|
+
export type { $ZodGateDef, $ZodGateInternals, IsGateEnabled, IssueData, KrustyFloat32, KrustyFloat64, KrustyInt, KrustyInt32, KrustyInternals, KrustyJSONSchema, KrustyJSONSchemaInternals, KrustyUInt32, ParseContext, SafeExtendShape, ZodIssue, ZodSafeParseError, ZodSafeParseResult, ZodSafeParseSuccess, _KrustyBigInt, _KrustyBoolean, _KrustyDate, _KrustyNumber, _KrustyType };
|
package/dist/index.mjs
CHANGED
|
@@ -280,6 +280,26 @@ const KrustyObject = /* @__PURE__ */ core.$constructor(
|
|
|
280
280
|
inst._zod.parse = (payload, ctx) => {
|
|
281
281
|
const input = payload.value;
|
|
282
282
|
const res = origParse(payload, ctx);
|
|
283
|
+
if (!def.catchall) {
|
|
284
|
+
const { parseType } = ctx;
|
|
285
|
+
if (parseType && parseType !== "output") {
|
|
286
|
+
const unrecognized = [];
|
|
287
|
+
const keySet = new Set(Object.keys(def.shape));
|
|
288
|
+
for (const key in input) {
|
|
289
|
+
if (!keySet.has(key)) {
|
|
290
|
+
unrecognized.push(key);
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
if (unrecognized.length) {
|
|
294
|
+
payload.issues.push({
|
|
295
|
+
code: "unrecognized_keys",
|
|
296
|
+
keys: unrecognized,
|
|
297
|
+
input,
|
|
298
|
+
inst
|
|
299
|
+
});
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
}
|
|
283
303
|
if (res instanceof Promise) {
|
|
284
304
|
return res.then((r) => handleGating(input, r, ctx));
|
|
285
305
|
} else {
|
|
@@ -701,6 +721,17 @@ const KrustyNumber = /* @__PURE__ */ core.$constructor(
|
|
|
701
721
|
inst.isInt = (bag.format ?? "").includes("int") || Number.isSafeInteger(bag.multipleOf ?? 0.5);
|
|
702
722
|
inst.isFinite = true;
|
|
703
723
|
inst.format = bag.format ?? null;
|
|
724
|
+
const origParse = inst._zod.parse;
|
|
725
|
+
inst._zod.parse = (payload, ctx) => {
|
|
726
|
+
const { parseType } = ctx;
|
|
727
|
+
if (parseType === "query" && typeof payload.value === "string") {
|
|
728
|
+
const value = Number(payload.value);
|
|
729
|
+
if (!Number.isNaN(value)) {
|
|
730
|
+
payload.value = value;
|
|
731
|
+
}
|
|
732
|
+
}
|
|
733
|
+
return origParse(payload, ctx);
|
|
734
|
+
};
|
|
704
735
|
}
|
|
705
736
|
);
|
|
706
737
|
function number(params) {
|
|
@@ -735,6 +766,28 @@ const KrustyBoolean = /* @__PURE__ */ core.$constructor(
|
|
|
735
766
|
const coreInit = core.$ZodBoolean.init;
|
|
736
767
|
coreInit(inst, def);
|
|
737
768
|
KrustyType.init(inst, def);
|
|
769
|
+
const origParse = inst._zod.parse;
|
|
770
|
+
inst._zod.parse = (payload, ctx) => {
|
|
771
|
+
const { parseType } = ctx;
|
|
772
|
+
if (parseType === "query") {
|
|
773
|
+
if (payload.value === "true") {
|
|
774
|
+
payload.value = true;
|
|
775
|
+
} else if (payload.value === "false") {
|
|
776
|
+
payload.value = false;
|
|
777
|
+
} else {
|
|
778
|
+
payload.issues.push({
|
|
779
|
+
code: "invalid_type",
|
|
780
|
+
expected: "boolean",
|
|
781
|
+
values: ["true", "false"],
|
|
782
|
+
input: payload.value,
|
|
783
|
+
inst,
|
|
784
|
+
continue: false
|
|
785
|
+
});
|
|
786
|
+
return payload;
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
return origParse(payload, ctx);
|
|
790
|
+
};
|
|
738
791
|
}
|
|
739
792
|
);
|
|
740
793
|
function boolean(params) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@temporary-name/zod",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.9.3-alpha.
|
|
4
|
+
"version": "1.9.3-alpha.e098b3d1c5bffbad2fadfda89ba01f6452db46b5",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://www.stainless.com/",
|
|
7
7
|
"repository": {
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"dist"
|
|
24
24
|
],
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@temporary-name/contract": "1.9.3-alpha.
|
|
27
|
-
"@temporary-name/server": "1.9.3-alpha.
|
|
26
|
+
"@temporary-name/contract": "1.9.3-alpha.e098b3d1c5bffbad2fadfda89ba01f6452db46b5",
|
|
27
|
+
"@temporary-name/server": "1.9.3-alpha.e098b3d1c5bffbad2fadfda89ba01f6452db46b5"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"zod": "^4.1.11",
|
|
31
|
-
"@temporary-name/shared": "1.9.3-alpha.
|
|
31
|
+
"@temporary-name/shared": "1.9.3-alpha.e098b3d1c5bffbad2fadfda89ba01f6452db46b5"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {},
|
|
34
34
|
"scripts": {
|