@orpc/interop 0.0.0-next.280152f
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/LICENSE +21 -0
- package/README.md +86 -0
- package/dist/compression/index.d.mts +2 -0
- package/dist/compression/index.d.ts +2 -0
- package/dist/compression/index.mjs +14526 -0
- package/dist/json-schema-typed/draft-07.d.mts +883 -0
- package/dist/json-schema-typed/draft-07.d.ts +883 -0
- package/dist/json-schema-typed/draft-07.mjs +100 -0
- package/dist/json-schema-typed/draft-2019-09.d.mts +1248 -0
- package/dist/json-schema-typed/draft-2019-09.d.ts +1248 -0
- package/dist/json-schema-typed/draft-2019-09.mjs +114 -0
- package/dist/json-schema-typed/draft-2020-12.d.mts +1 -0
- package/dist/json-schema-typed/draft-2020-12.d.ts +1 -0
- package/dist/json-schema-typed/draft-2020-12.mjs +1 -0
- package/dist/json-schema-typed/index.d.mts +1240 -0
- package/dist/json-schema-typed/index.d.ts +1240 -0
- package/dist/json-schema-typed/index.mjs +115 -0
- package/package.json +56 -0
@@ -0,0 +1,115 @@
|
|
1
|
+
/// <reference types="./draft-2020-12.ts" />
|
2
|
+
// @generated
|
3
|
+
// deno-fmt-ignore-file
|
4
|
+
// deno-lint-ignore-file
|
5
|
+
// This code was bundled using `deno bundle` and it's not recommended to edit it manually
|
6
|
+
|
7
|
+
const draft = "2020-12";
|
8
|
+
const $schema = "https://json-schema.org/draft/2020-12/schema";
|
9
|
+
var ContentEncoding;
|
10
|
+
(function(ContentEncoding1) {
|
11
|
+
ContentEncoding1["7bit"] = "7bit";
|
12
|
+
ContentEncoding1["8bit"] = "8bit";
|
13
|
+
ContentEncoding1["Base64"] = "base64";
|
14
|
+
ContentEncoding1["Binary"] = "binary";
|
15
|
+
ContentEncoding1["IETFToken"] = "ietf-token";
|
16
|
+
ContentEncoding1["QuotedPrintable"] = "quoted-printable";
|
17
|
+
ContentEncoding1["XToken"] = "x-token";
|
18
|
+
})(ContentEncoding || (ContentEncoding = {}));
|
19
|
+
var Format;
|
20
|
+
(function(Format1) {
|
21
|
+
Format1["Date"] = "date";
|
22
|
+
Format1["DateTime"] = "date-time";
|
23
|
+
Format1["Duration"] = "duration";
|
24
|
+
Format1["Email"] = "email";
|
25
|
+
Format1["Hostname"] = "hostname";
|
26
|
+
Format1["IDNEmail"] = "idn-email";
|
27
|
+
Format1["IDNHostname"] = "idn-hostname";
|
28
|
+
Format1["IPv4"] = "ipv4";
|
29
|
+
Format1["IPv6"] = "ipv6";
|
30
|
+
Format1["IRI"] = "iri";
|
31
|
+
Format1["IRIReference"] = "iri-reference";
|
32
|
+
Format1["JSONPointer"] = "json-pointer";
|
33
|
+
Format1["JSONPointerURIFragment"] = "json-pointer-uri-fragment";
|
34
|
+
Format1["RegEx"] = "regex";
|
35
|
+
Format1["RelativeJSONPointer"] = "relative-json-pointer";
|
36
|
+
Format1["Time"] = "time";
|
37
|
+
Format1["URI"] = "uri";
|
38
|
+
Format1["URIReference"] = "uri-reference";
|
39
|
+
Format1["URITemplate"] = "uri-template";
|
40
|
+
Format1["UUID"] = "uuid";
|
41
|
+
})(Format || (Format = {}));
|
42
|
+
var TypeName;
|
43
|
+
(function(TypeName1) {
|
44
|
+
TypeName1["Array"] = "array";
|
45
|
+
TypeName1["Boolean"] = "boolean";
|
46
|
+
TypeName1["Integer"] = "integer";
|
47
|
+
TypeName1["Null"] = "null";
|
48
|
+
TypeName1["Number"] = "number";
|
49
|
+
TypeName1["Object"] = "object";
|
50
|
+
TypeName1["String"] = "string";
|
51
|
+
})(TypeName || (TypeName = {}));
|
52
|
+
const keywords = [
|
53
|
+
"$anchor",
|
54
|
+
"$comment",
|
55
|
+
"$defs",
|
56
|
+
"$dynamicAnchor",
|
57
|
+
"$dynamicRef",
|
58
|
+
"$id",
|
59
|
+
"$ref",
|
60
|
+
"$schema",
|
61
|
+
"$vocabulary",
|
62
|
+
"additionalItems",
|
63
|
+
"additionalProperties",
|
64
|
+
"allOf",
|
65
|
+
"anyOf",
|
66
|
+
"const",
|
67
|
+
"contains",
|
68
|
+
"contentEncoding",
|
69
|
+
"contentMediaType",
|
70
|
+
"contentSchema",
|
71
|
+
"default",
|
72
|
+
"definitions",
|
73
|
+
"dependencies",
|
74
|
+
"dependentRequired",
|
75
|
+
"dependentSchemas",
|
76
|
+
"deprecated",
|
77
|
+
"description",
|
78
|
+
"else",
|
79
|
+
"enum",
|
80
|
+
"examples",
|
81
|
+
"exclusiveMaximum",
|
82
|
+
"exclusiveMinimum",
|
83
|
+
"format",
|
84
|
+
"if",
|
85
|
+
"items",
|
86
|
+
"maxContains",
|
87
|
+
"maximum",
|
88
|
+
"maxItems",
|
89
|
+
"maxLength",
|
90
|
+
"maxProperties",
|
91
|
+
"minContains",
|
92
|
+
"minimum",
|
93
|
+
"minItems",
|
94
|
+
"minLength",
|
95
|
+
"minProperties",
|
96
|
+
"multipleOf",
|
97
|
+
"not",
|
98
|
+
"oneOf",
|
99
|
+
"pattern",
|
100
|
+
"patternProperties",
|
101
|
+
"prefixItems",
|
102
|
+
"properties",
|
103
|
+
"propertyNames",
|
104
|
+
"readOnly",
|
105
|
+
"required",
|
106
|
+
"then",
|
107
|
+
"title",
|
108
|
+
"type",
|
109
|
+
"unevaluatedItems",
|
110
|
+
"unevaluatedProperties",
|
111
|
+
"uniqueItems",
|
112
|
+
"writeOnly",
|
113
|
+
];
|
114
|
+
|
115
|
+
export { $schema, ContentEncoding, Format, TypeName, draft, keywords };
|
package/package.json
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
{
|
2
|
+
"name": "@orpc/interop",
|
3
|
+
"type": "module",
|
4
|
+
"version": "0.0.0-next.280152f",
|
5
|
+
"license": "MIT",
|
6
|
+
"homepage": "https://orpc.unnoq.com",
|
7
|
+
"repository": {
|
8
|
+
"type": "git",
|
9
|
+
"url": "git+https://github.com/unnoq/orpc.git",
|
10
|
+
"directory": "packages/interop"
|
11
|
+
},
|
12
|
+
"keywords": [
|
13
|
+
"unnoq",
|
14
|
+
"orpc"
|
15
|
+
],
|
16
|
+
"exports": {
|
17
|
+
"./json-schema-typed": {
|
18
|
+
"types": "./dist/json-schema-typed/index.d.mts",
|
19
|
+
"import": "./dist/json-schema-typed/index.mjs",
|
20
|
+
"default": "./dist/json-schema-typed/index.mjs"
|
21
|
+
},
|
22
|
+
"./json-schema-typed/draft-07": {
|
23
|
+
"types": "./dist/json-schema-typed/draft-07.d.mts",
|
24
|
+
"import": "./dist/json-schema-typed/draft-07.mjs",
|
25
|
+
"default": "./dist/json-schema-typed/draft-07.mjs"
|
26
|
+
},
|
27
|
+
"./json-schema-typed/draft-2019-09": {
|
28
|
+
"types": "./dist/json-schema-typed/draft-2019-09.d.mts",
|
29
|
+
"import": "./dist/json-schema-typed/draft-2019-09.mjs",
|
30
|
+
"default": "./dist/json-schema-typed/draft-2019-09.mjs"
|
31
|
+
},
|
32
|
+
"./json-schema-typed/draft-2020-12": {
|
33
|
+
"types": "./dist/json-schema-typed/draft-2020-12.d.mts",
|
34
|
+
"import": "./dist/json-schema-typed/draft-2020-12.mjs",
|
35
|
+
"default": "./dist/json-schema-typed/draft-2020-12.mjs"
|
36
|
+
},
|
37
|
+
"./compression": {
|
38
|
+
"types": "./dist/compression/index.d.mts",
|
39
|
+
"import": "./dist/compression/index.mjs",
|
40
|
+
"default": "./dist/compression/index.mjs"
|
41
|
+
}
|
42
|
+
},
|
43
|
+
"files": [
|
44
|
+
"dist"
|
45
|
+
],
|
46
|
+
"devDependencies": {
|
47
|
+
"@types/compression": "^1.8.1",
|
48
|
+
"compression": "^1.8.1",
|
49
|
+
"json-schema-typed": "^8.0.1"
|
50
|
+
},
|
51
|
+
"scripts": {
|
52
|
+
"build": "unbuild",
|
53
|
+
"build:watch": "pnpm run build --watch",
|
54
|
+
"type:check": "tsc -b"
|
55
|
+
}
|
56
|
+
}
|