@kubb/agent 5.0.0-alpha.29 → 5.0.0-alpha.30
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/.output/nitro.json +2 -2
- package/.output/server/chunks/nitro/nitro.mjs +971 -1107
- package/.output/server/chunks/nitro/nitro.mjs.map +1 -1
- package/.output/server/node_modules/.nitro/@readme/openapi-parser@6.0.1/dist/chunk-IYQ77VVR.js +25 -0
- package/.output/server/node_modules/.nitro/@readme/openapi-parser@6.0.1/dist/index.js +923 -0
- package/.output/server/node_modules/.nitro/@readme/openapi-parser@6.0.1/package.json +84 -0
- package/.output/server/node_modules/@redocly/config/lib/ex-theme-config-schemas.js +1 -2
- package/.output/server/node_modules/@redocly/config/lib/root-config-schema.js +1 -1
- package/.output/server/node_modules/@redocly/config/package.json +2 -2
- package/.output/server/node_modules/@redocly/openapi-core/package.json +2 -2
- package/.output/server/node_modules/oas-normalize/package.json +4 -4
- package/.output/server/package.json +5 -5
- package/package.json +17 -17
- /package/.output/server/node_modules/{@readme/openapi-parser → .nitro/@readme/openapi-parser@6.0.0}/dist/chunk-IYQ77VVR.js +0 -0
- /package/.output/server/node_modules/{@readme/openapi-parser → .nitro/@readme/openapi-parser@6.0.0}/dist/index.js +0 -0
- /package/.output/server/node_modules/{@readme/openapi-parser → .nitro/@readme/openapi-parser@6.0.0}/dist/lib/assertions.js +0 -0
- /package/.output/server/node_modules/{@readme/openapi-parser → .nitro/@readme/openapi-parser@6.0.0}/package.json +0 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@readme/openapi-parser",
|
|
3
|
+
"version": "6.0.1",
|
|
4
|
+
"description": "Swagger 2.0 and OpenAPI 3.x parser and validator for Node and browsers",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "ReadMe <support@readme.io> (https://readme.com)",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"type": "module",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"require": "./dist/index.cjs",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./lib/assertions": {
|
|
15
|
+
"require": "./dist/lib/assertions.cjs",
|
|
16
|
+
"import": "./dist/lib/assertions.js"
|
|
17
|
+
},
|
|
18
|
+
"./package.json": "./package.json"
|
|
19
|
+
},
|
|
20
|
+
"main": "dist/index.cjs",
|
|
21
|
+
"module": "dist/index.js",
|
|
22
|
+
"types": "dist/index.d.cts",
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=20"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist"
|
|
28
|
+
],
|
|
29
|
+
"keywords": [
|
|
30
|
+
"swagger",
|
|
31
|
+
"openapi",
|
|
32
|
+
"open-api",
|
|
33
|
+
"json",
|
|
34
|
+
"yaml",
|
|
35
|
+
"parse",
|
|
36
|
+
"parser",
|
|
37
|
+
"validate",
|
|
38
|
+
"validator",
|
|
39
|
+
"validation",
|
|
40
|
+
"spec",
|
|
41
|
+
"specification",
|
|
42
|
+
"schema",
|
|
43
|
+
"reference",
|
|
44
|
+
"dereference"
|
|
45
|
+
],
|
|
46
|
+
"repository": {
|
|
47
|
+
"type": "git",
|
|
48
|
+
"url": "git://github.com/readmeio/oas.git",
|
|
49
|
+
"directory": "packages/parser"
|
|
50
|
+
},
|
|
51
|
+
"bugs": {
|
|
52
|
+
"url": "https://github.com/readmeio/oas/issues"
|
|
53
|
+
},
|
|
54
|
+
"scripts": {
|
|
55
|
+
"attw": "attw --pack --format ascii --profile node16",
|
|
56
|
+
"build": "tsup",
|
|
57
|
+
"lint": "npm run lint:types",
|
|
58
|
+
"lint:types": "tsc --noEmit",
|
|
59
|
+
"prebuild": "rm -rf dist/",
|
|
60
|
+
"prepack": "npm run build",
|
|
61
|
+
"test": "echo 'Please run tests from the root!' && exit 1"
|
|
62
|
+
},
|
|
63
|
+
"dependencies": {
|
|
64
|
+
"@apidevtools/json-schema-ref-parser": "^14.1.1",
|
|
65
|
+
"@readme/better-ajv-errors": "^2.3.2",
|
|
66
|
+
"@readme/openapi-schemas": "^3.1.0",
|
|
67
|
+
"@types/json-schema": "^7.0.15",
|
|
68
|
+
"ajv": "^8.12.0",
|
|
69
|
+
"ajv-draft-04": "^1.0.0"
|
|
70
|
+
},
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"openapi-types": ">=7"
|
|
73
|
+
},
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"@types/node": "^25.3.0",
|
|
76
|
+
"@vitest/expect": "^4.1.2",
|
|
77
|
+
"openapi-types": "^12.1.3",
|
|
78
|
+
"tsup": "^8.5.0",
|
|
79
|
+
"typescript": "^5.7.3",
|
|
80
|
+
"vitest": "^4.0.8"
|
|
81
|
+
},
|
|
82
|
+
"prettier": "@readme/standards/prettier",
|
|
83
|
+
"gitHead": "766e5550ef968794a0d275bda5c47631a927da04"
|
|
84
|
+
}
|
|
@@ -277,8 +277,7 @@ exports.colorModeConfigSchema = {
|
|
|
277
277
|
};
|
|
278
278
|
exports.paletteConfigSchema = {
|
|
279
279
|
type: 'string',
|
|
280
|
-
enum: ['slate', 'pink', 'coral', 'amber', 'jade', 'cyan', 'ocean', 'indigo', 'iris'
|
|
281
|
-
default: 'default',
|
|
280
|
+
enum: ['slate', 'pink', 'coral', 'amber', 'jade', 'cyan', 'ocean', 'indigo', 'iris'],
|
|
282
281
|
};
|
|
283
282
|
const navigationActionsConfigSchema = {
|
|
284
283
|
type: 'object',
|
|
@@ -137,7 +137,7 @@ exports.bannersConfigSchema = {
|
|
|
137
137
|
};
|
|
138
138
|
exports.apiConfigSchema = {
|
|
139
139
|
type: 'object',
|
|
140
|
-
properties: Object.assign({ root: { type: 'string' }, output: { type: 'string', pattern: '(.ya?ml|.json)$' }, rbac:
|
|
140
|
+
properties: Object.assign({ root: { type: 'string' }, output: { type: 'string', pattern: '(.ya?ml|.json)$' }, rbac: exports.rbacScopeItemsSchema, openapi: ex_theme_config_schemas_1.openapiConfigSchema, graphql: graphql_config_schema_1.graphqlConfigSchema,
|
|
141
141
|
/**
|
|
142
142
|
* @deprecated left for backwards compatibility
|
|
143
143
|
*/
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redocly/config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.46.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib-esm/index.js",
|
|
7
7
|
"types": "./lib/index.d.ts",
|
|
8
8
|
"devDependencies": {
|
|
9
9
|
"@markdoc/markdoc": "0.5.2",
|
|
10
|
-
"@redocly/openapi-core": "2.
|
|
10
|
+
"@redocly/openapi-core": "2.25.2",
|
|
11
11
|
"@types/node": "22.18.13",
|
|
12
12
|
"@types/react": "^19.2.7",
|
|
13
13
|
"@vitest/coverage-v8": "4.0.10",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redocly/openapi-core",
|
|
3
|
-
"version": "2.25.
|
|
3
|
+
"version": "2.25.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@redocly/ajv": "^8.18.0",
|
|
56
|
-
"@redocly/config": "^0.
|
|
56
|
+
"@redocly/config": "^0.46.0",
|
|
57
57
|
"ajv": "npm:@redocly/ajv@8.18.0",
|
|
58
58
|
"ajv-formats": "^3.0.1",
|
|
59
59
|
"colorette": "^1.2.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oas-normalize",
|
|
3
|
-
"version": "16.0.
|
|
3
|
+
"version": "16.0.4",
|
|
4
4
|
"description": "Tooling for converting, validating, and parsing OpenAPI, Swagger, and Postman API definitions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -67,14 +67,14 @@
|
|
|
67
67
|
},
|
|
68
68
|
"license": "MIT",
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@readme/openapi-parser": "^6.0.
|
|
70
|
+
"@readme/openapi-parser": "^6.0.1",
|
|
71
71
|
"@readme/postman-to-openapi": "^4.1.0",
|
|
72
72
|
"js-yaml": "^4.1.0",
|
|
73
73
|
"openapi-types": "^12.1.3",
|
|
74
74
|
"swagger2openapi": "^7.0.8"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@readme/oas-examples": "^8.2.
|
|
77
|
+
"@readme/oas-examples": "^8.2.1",
|
|
78
78
|
"@types/js-yaml": "^4.0.9",
|
|
79
79
|
"@types/swagger2openapi": "^7.0.4",
|
|
80
80
|
"nock": "^14.0.11",
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"vitest": "^4.0.8"
|
|
84
84
|
},
|
|
85
85
|
"prettier": "@readme/standards/prettier",
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "766e5550ef968794a0d275bda5c47631a927da04"
|
|
87
87
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/agent-prod",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.30",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": true,
|
|
6
6
|
"dependencies": {
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"@msgpack/msgpack": "2.8.0",
|
|
21
21
|
"@readme/better-ajv-errors": "2.4.0",
|
|
22
22
|
"@readme/http-status-codes": "7.2.0",
|
|
23
|
-
"@readme/openapi-parser": "6.0.
|
|
23
|
+
"@readme/openapi-parser": "6.0.1",
|
|
24
24
|
"@readme/openapi-schemas": "3.1.0",
|
|
25
25
|
"@readme/postman-to-openapi": "4.1.0",
|
|
26
26
|
"@redocly/ajv": "8.18.0",
|
|
27
|
-
"@redocly/config": "0.
|
|
28
|
-
"@redocly/openapi-core": "2.25.
|
|
27
|
+
"@redocly/config": "0.46.0",
|
|
28
|
+
"@redocly/openapi-core": "2.25.4",
|
|
29
29
|
"@stoplight/ordered-object-literal": "1.0.5",
|
|
30
30
|
"@stoplight/types": "14.1.1",
|
|
31
31
|
"@stoplight/yaml": "4.3.0",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"normalize-path": "3.0.0",
|
|
78
78
|
"oas": "31.1.2",
|
|
79
79
|
"oas-kit-common": "1.0.8",
|
|
80
|
-
"oas-normalize": "16.0.
|
|
80
|
+
"oas-normalize": "16.0.4",
|
|
81
81
|
"oas-resolver": "2.5.6",
|
|
82
82
|
"oas-schema-walker": "1.1.5",
|
|
83
83
|
"p-limit": "7.3.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/agent",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.30",
|
|
4
4
|
"description": "Agent server for Kubb, enabling HTTP-based access to code generation capabilities.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -40,26 +40,26 @@
|
|
|
40
40
|
"tinyexec": "^1.0.4",
|
|
41
41
|
"unstorage": "^1.17.5",
|
|
42
42
|
"ws": "^8.20.0",
|
|
43
|
-
"@kubb/core": "5.0.0-alpha.
|
|
44
|
-
"@kubb/plugin-client": "5.0.0-alpha.
|
|
45
|
-
"@kubb/plugin-cypress": "5.0.0-alpha.
|
|
46
|
-
"@kubb/plugin-faker": "5.0.0-alpha.
|
|
47
|
-
"@kubb/plugin-mcp": "5.0.0-alpha.
|
|
48
|
-
"@kubb/plugin-msw": "5.0.0-alpha.
|
|
49
|
-
"@kubb/plugin-oas": "5.0.0-alpha.
|
|
50
|
-
"@kubb/plugin-react-query": "5.0.0-alpha.
|
|
51
|
-
"@kubb/plugin-redoc": "5.0.0-alpha.
|
|
52
|
-
"@kubb/plugin-solid-query": "5.0.0-alpha.
|
|
53
|
-
"@kubb/plugin-svelte-query": "5.0.0-alpha.
|
|
54
|
-
"@kubb/plugin-swr": "5.0.0-alpha.
|
|
55
|
-
"@kubb/plugin-ts": "5.0.0-alpha.
|
|
56
|
-
"@kubb/plugin-vue-query": "5.0.0-alpha.
|
|
57
|
-
"@kubb/plugin-zod": "5.0.0-alpha.
|
|
43
|
+
"@kubb/core": "5.0.0-alpha.30",
|
|
44
|
+
"@kubb/plugin-client": "5.0.0-alpha.30",
|
|
45
|
+
"@kubb/plugin-cypress": "5.0.0-alpha.30",
|
|
46
|
+
"@kubb/plugin-faker": "5.0.0-alpha.30",
|
|
47
|
+
"@kubb/plugin-mcp": "5.0.0-alpha.30",
|
|
48
|
+
"@kubb/plugin-msw": "5.0.0-alpha.30",
|
|
49
|
+
"@kubb/plugin-oas": "5.0.0-alpha.30",
|
|
50
|
+
"@kubb/plugin-react-query": "5.0.0-alpha.30",
|
|
51
|
+
"@kubb/plugin-redoc": "5.0.0-alpha.30",
|
|
52
|
+
"@kubb/plugin-solid-query": "5.0.0-alpha.30",
|
|
53
|
+
"@kubb/plugin-svelte-query": "5.0.0-alpha.30",
|
|
54
|
+
"@kubb/plugin-swr": "5.0.0-alpha.30",
|
|
55
|
+
"@kubb/plugin-ts": "5.0.0-alpha.30",
|
|
56
|
+
"@kubb/plugin-vue-query": "5.0.0-alpha.30",
|
|
57
|
+
"@kubb/plugin-zod": "5.0.0-alpha.30"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@types/ws": "^8.18.1",
|
|
61
61
|
"msw": "^2.12.14",
|
|
62
|
-
"nitropack": "^2.13.
|
|
62
|
+
"nitropack": "^2.13.3",
|
|
63
63
|
"vite": "^7.3.1",
|
|
64
64
|
"@internals/utils": "0.0.0"
|
|
65
65
|
},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|