@temporary-name/interop 1.9.3-alpha.0d2fa3247b6b23bbc2e3097a95f631b86740e4d8
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 +9 -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
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Stainless
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
## `@temporary-name/interop`
|
|
2
|
+
|
|
3
|
+
A compatibility layer that builds & re-exports upstream packages that don't yet meet oRPC's requirements.
|
|
4
|
+
|
|
5
|
+
**Included packages:**
|
|
6
|
+
|
|
7
|
+
- [json-schema-typed](https://www.npmjs.com/package/json-schema-typed) to address issue [RemyRylan/json-schema-typed#116](https://github.com/RemyRylan/json-schema-typed/issues/116)
|
|
8
|
+
|
|
9
|
+
- [compression](https://www.npmjs.com/package/compression) for esm compatibility
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import compression from '/home/runner/work/krusty/krusty/node_modules/.pnpm/@types+compression@1.8.1/node_modules/@types/compression/index.d.ts';
|
|
2
|
+
export { default } from '/home/runner/work/krusty/krusty/node_modules/.pnpm/@types+compression@1.8.1/node_modules/@types/compression/index.d.ts';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import compression from '/home/runner/work/krusty/krusty/node_modules/.pnpm/@types+compression@1.8.1/node_modules/@types/compression/index.d.ts';
|
|
2
|
+
export { default } from '/home/runner/work/krusty/krusty/node_modules/.pnpm/@types+compression@1.8.1/node_modules/@types/compression/index.d.ts';
|