@jtl-software/cloud-apps-core 0.0.0-dev.1711d8c → 0.0.0-dev.1777725
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/main.js +6 -6
- package/dist/main.js.map +1 -1
- package/package.json +24 -6
package/dist/main.js
CHANGED
|
@@ -3933,14 +3933,14 @@ const ostring = () => stringType().optional();
|
|
|
3933
3933
|
const onumber = () => numberType().optional();
|
|
3934
3934
|
const oboolean = () => booleanType().optional();
|
|
3935
3935
|
const coerce = {
|
|
3936
|
-
string: (arg) => ZodString.create({ ...arg, coerce: true }),
|
|
3937
|
-
number: (arg) => ZodNumber.create({ ...arg, coerce: true }),
|
|
3938
|
-
boolean: (arg) => ZodBoolean.create({
|
|
3936
|
+
string: ((arg) => ZodString.create({ ...arg, coerce: true })),
|
|
3937
|
+
number: ((arg) => ZodNumber.create({ ...arg, coerce: true })),
|
|
3938
|
+
boolean: ((arg) => ZodBoolean.create({
|
|
3939
3939
|
...arg,
|
|
3940
3940
|
coerce: true
|
|
3941
|
-
}),
|
|
3942
|
-
bigint: (arg) => ZodBigInt.create({ ...arg, coerce: true }),
|
|
3943
|
-
date: (arg) => ZodDate.create({ ...arg, coerce: true })
|
|
3941
|
+
})),
|
|
3942
|
+
bigint: ((arg) => ZodBigInt.create({ ...arg, coerce: true })),
|
|
3943
|
+
date: ((arg) => ZodDate.create({ ...arg, coerce: true }))
|
|
3944
3944
|
};
|
|
3945
3945
|
const NEVER = INVALID;
|
|
3946
3946
|
var z = /* @__PURE__ */ Object.freeze({
|