@orpc/interop 0.0.0-next.0021fba
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,100 @@
|
|
1
|
+
/// <reference types="./draft-07.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 = "7";
|
8
|
+
const $schema = "https://json-schema.org/draft-07/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["Email"] = "email";
|
24
|
+
Format1["Hostname"] = "hostname";
|
25
|
+
Format1["IDNEmail"] = "idn-email";
|
26
|
+
Format1["IDNHostname"] = "idn-hostname";
|
27
|
+
Format1["IPv4"] = "ipv4";
|
28
|
+
Format1["IPv6"] = "ipv6";
|
29
|
+
Format1["IRI"] = "iri";
|
30
|
+
Format1["IRIReference"] = "iri-reference";
|
31
|
+
Format1["JSONPointer"] = "json-pointer";
|
32
|
+
Format1["JSONPointerURIFragment"] = "json-pointer-uri-fragment";
|
33
|
+
Format1["RegEx"] = "regex";
|
34
|
+
Format1["RelativeJSONPointer"] = "relative-json-pointer";
|
35
|
+
Format1["Time"] = "time";
|
36
|
+
Format1["URI"] = "uri";
|
37
|
+
Format1["URIReference"] = "uri-reference";
|
38
|
+
Format1["URITemplate"] = "uri-template";
|
39
|
+
Format1["UUID"] = "uuid";
|
40
|
+
})(Format || (Format = {}));
|
41
|
+
var TypeName;
|
42
|
+
(function(TypeName1) {
|
43
|
+
TypeName1["Array"] = "array";
|
44
|
+
TypeName1["Boolean"] = "boolean";
|
45
|
+
TypeName1["Integer"] = "integer";
|
46
|
+
TypeName1["Null"] = "null";
|
47
|
+
TypeName1["Number"] = "number";
|
48
|
+
TypeName1["Object"] = "object";
|
49
|
+
TypeName1["String"] = "string";
|
50
|
+
})(TypeName || (TypeName = {}));
|
51
|
+
const keywords = [
|
52
|
+
"$comment",
|
53
|
+
"$id",
|
54
|
+
"$ref",
|
55
|
+
"$schema",
|
56
|
+
"additionalItems",
|
57
|
+
"additionalProperties",
|
58
|
+
"allOf",
|
59
|
+
"anyOf",
|
60
|
+
"const",
|
61
|
+
"contains",
|
62
|
+
"contentEncoding",
|
63
|
+
"contentMediaType",
|
64
|
+
"default",
|
65
|
+
"definitions",
|
66
|
+
"dependencies",
|
67
|
+
"description",
|
68
|
+
"else",
|
69
|
+
"enum",
|
70
|
+
"examples",
|
71
|
+
"exclusiveMaximum",
|
72
|
+
"exclusiveMinimum",
|
73
|
+
"format",
|
74
|
+
"if",
|
75
|
+
"items",
|
76
|
+
"maximum",
|
77
|
+
"maxItems",
|
78
|
+
"maxLength",
|
79
|
+
"maxProperties",
|
80
|
+
"minimum",
|
81
|
+
"minItems",
|
82
|
+
"minLength",
|
83
|
+
"minProperties",
|
84
|
+
"multipleOf",
|
85
|
+
"not",
|
86
|
+
"oneOf",
|
87
|
+
"pattern",
|
88
|
+
"patternProperties",
|
89
|
+
"properties",
|
90
|
+
"propertyNames",
|
91
|
+
"readOnly",
|
92
|
+
"required",
|
93
|
+
"then",
|
94
|
+
"title",
|
95
|
+
"type",
|
96
|
+
"uniqueItems",
|
97
|
+
"writeOnly",
|
98
|
+
];
|
99
|
+
|
100
|
+
export { $schema, ContentEncoding, Format, TypeName, draft, keywords };
|