@orpc/zod 0.38.0 → 0.40.0
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.js +43 -13
- package/package.json +4 -4
package/dist/index.js
CHANGED
@@ -1,3 +1,42 @@
|
|
1
|
+
var __create = Object.create;
|
2
|
+
var __defProp = Object.defineProperty;
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
7
|
+
var __commonJS = (cb, mod) => function __require() {
|
8
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
9
|
+
};
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
12
|
+
for (let key of __getOwnPropNames(from))
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
15
|
+
}
|
16
|
+
return to;
|
17
|
+
};
|
18
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
19
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
20
|
+
// file that has been converted to a CommonJS file using a Babel-
|
21
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
22
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
23
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
24
|
+
mod
|
25
|
+
));
|
26
|
+
|
27
|
+
// ../../node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp/index.js
|
28
|
+
var require_escape_string_regexp = __commonJS({
|
29
|
+
"../../node_modules/.pnpm/escape-string-regexp@4.0.0/node_modules/escape-string-regexp/index.js"(exports, module) {
|
30
|
+
"use strict";
|
31
|
+
module.exports = (string) => {
|
32
|
+
if (typeof string !== "string") {
|
33
|
+
throw new TypeError("Expected a string");
|
34
|
+
}
|
35
|
+
return string.replace(/[|\\{}()[\]^$+*?.]/g, "\\$&").replace(/-/g, "\\x2d");
|
36
|
+
};
|
37
|
+
}
|
38
|
+
});
|
39
|
+
|
1
40
|
// src/coercer.ts
|
2
41
|
import { guard, isObject } from "@orpc/shared";
|
3
42
|
import {
|
@@ -316,17 +355,8 @@ function zodCoerceInternal(schema, value, options) {
|
|
316
355
|
}
|
317
356
|
|
318
357
|
// src/converter.ts
|
358
|
+
var import_escape_string_regexp = __toESM(require_escape_string_regexp(), 1);
|
319
359
|
import { JSONSchemaFormat } from "@orpc/openapi";
|
320
|
-
|
321
|
-
// ../../node_modules/.pnpm/escape-string-regexp@5.0.0/node_modules/escape-string-regexp/index.js
|
322
|
-
function escapeStringRegexp(string) {
|
323
|
-
if (typeof string !== "string") {
|
324
|
-
throw new TypeError("Expected a string");
|
325
|
-
}
|
326
|
-
return string.replace(/[|\\{}()[\]^$+*?.]/g, "\\$&").replace(/-/g, "\\x2d");
|
327
|
-
}
|
328
|
-
|
329
|
-
// src/converter.ts
|
330
360
|
import {
|
331
361
|
ZodFirstPartyTypeKind as ZodFirstPartyTypeKind2
|
332
362
|
} from "zod";
|
@@ -586,13 +616,13 @@ function zodToJsonSchema(schema, options) {
|
|
586
616
|
json.maxLength = check.value;
|
587
617
|
break;
|
588
618
|
case "includes":
|
589
|
-
json.pattern =
|
619
|
+
json.pattern = (0, import_escape_string_regexp.default)(check.value);
|
590
620
|
break;
|
591
621
|
case "startsWith":
|
592
|
-
json.pattern = `^${
|
622
|
+
json.pattern = `^${(0, import_escape_string_regexp.default)(check.value)}`;
|
593
623
|
break;
|
594
624
|
case "endsWith":
|
595
|
-
json.pattern = `${
|
625
|
+
json.pattern = `${(0, import_escape_string_regexp.default)(check.value)}$`;
|
596
626
|
break;
|
597
627
|
case "emoji":
|
598
628
|
json.pattern = "^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@orpc/zod",
|
3
3
|
"type": "module",
|
4
|
-
"version": "0.
|
4
|
+
"version": "0.40.0",
|
5
5
|
"license": "MIT",
|
6
6
|
"homepage": "https://orpc.unnoq.com",
|
7
7
|
"repository": {
|
@@ -29,15 +29,15 @@
|
|
29
29
|
"dist"
|
30
30
|
],
|
31
31
|
"peerDependencies": {
|
32
|
-
"@orpc/
|
33
|
-
"@orpc/
|
32
|
+
"@orpc/openapi": "0.40.0",
|
33
|
+
"@orpc/server": "0.40.0"
|
34
34
|
},
|
35
35
|
"dependencies": {
|
36
36
|
"@standard-schema/spec": "^1.0.0",
|
37
37
|
"json-schema-typed": "^8.0.1",
|
38
38
|
"wildcard-match": "^5.1.3",
|
39
39
|
"zod": "^3.24.1",
|
40
|
-
"@orpc/shared": "0.
|
40
|
+
"@orpc/shared": "0.40.0"
|
41
41
|
},
|
42
42
|
"scripts": {
|
43
43
|
"build": "tsup --clean --sourcemap --entry.index=src/index.ts --format=esm --onSuccess='tsc -b --noCheck'",
|