@kubb/adapter-oas 0.0.0-canary-20260315211311
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 +14 -0
- package/dist/chunk--u3MIqq1.js +8 -0
- package/dist/index.cjs +1798 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +178 -0
- package/dist/index.js +1769 -0
- package/dist/index.js.map +1 -0
- package/package.json +76 -0
- package/src/adapter.ts +105 -0
- package/src/constants.ts +110 -0
- package/src/index.ts +1 -0
- package/src/oas/Oas.ts +616 -0
- package/src/oas/resolveServerUrl.ts +47 -0
- package/src/oas/types.ts +52 -0
- package/src/oas/utils.ts +402 -0
- package/src/parser.ts +1136 -0
- package/src/types.ts +87 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Copyright (c) 2026 Stijn Van Hulle
|
|
2
|
+
|
|
3
|
+
This repository contains software under two licenses:
|
|
4
|
+
|
|
5
|
+
1. Most of the code in this repository is licensed under the
|
|
6
|
+
MIT License — see licenses/LICENSE-MIT for the full license text.
|
|
7
|
+
|
|
8
|
+
2. The following components are licensed under the
|
|
9
|
+
GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later)
|
|
10
|
+
— see licenses/LICENSE-AGPL-3.0 for the full license text:
|
|
11
|
+
|
|
12
|
+
- packages/agent (published as @kubb/agent)
|
|
13
|
+
|
|
14
|
+
Each package's own LICENSE file or package.json specifies its applicable license.
|