@shopware/api-gen 1.3.1 → 1.3.3
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/README.md +2 -5
- package/dist/cli.mjs +11 -11
- package/dist/index.mjs +2 -3
- package/dist/shared/api-gen.BZLmrTCs.mjs +11188 -0
- package/package.json +9 -8
- package/dist/shared/api-gen.DSpSMCJ-.mjs +0 -211724
package/README.md
CHANGED
|
@@ -316,11 +316,8 @@ await validateJson({
|
|
|
316
316
|
|
|
317
317
|
Full changelog for stable version is available [here](https://github.com/shopware/frontends/blob/main/packages/api-gen/CHANGELOG.md)
|
|
318
318
|
|
|
319
|
-
### Latest changes: 1.3.
|
|
319
|
+
### Latest changes: 1.3.3
|
|
320
320
|
|
|
321
321
|
### Patch Changes
|
|
322
322
|
|
|
323
|
-
- [#
|
|
324
|
-
|
|
325
|
-
- Updated dependencies [[`d016d6b`](https://github.com/shopware/frontends/commit/d016d6b845bff9a148405a74dae88d7fc81ec99c), [`a7ff606`](https://github.com/shopware/frontends/commit/a7ff60681d1a164d5c9f2020c506262e96fad5dc), [`d016d6b`](https://github.com/shopware/frontends/commit/d016d6b845bff9a148405a74dae88d7fc81ec99c)]:
|
|
326
|
-
- @shopware/api-client@1.3.0
|
|
323
|
+
- [#1942](https://github.com/shopware/frontends/pull/1942) [`a344abb`](https://github.com/shopware/frontends/commit/a344abba579c91c4f775e7be27ed882ca420fdc2) Thanks [@patzick](https://github.com/patzick)! - Allow shared parameters to be available in schema resolver.
|
package/dist/cli.mjs
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import yargs from 'yargs';
|
|
2
2
|
import { hideBin } from 'yargs/helpers';
|
|
3
|
-
import { g as generate, l as loadSchema, v as validateJson } from './shared/api-gen.
|
|
3
|
+
import { g as generate, l as loadSchema, v as validateJson } from './shared/api-gen.BZLmrTCs.mjs';
|
|
4
4
|
import 'node:fs';
|
|
5
5
|
import 'node:path';
|
|
6
6
|
import 'openapi-typescript';
|
|
7
|
+
import 'typescript';
|
|
7
8
|
import 'ofetch';
|
|
8
9
|
import 'prettier';
|
|
9
10
|
import 'ts-morph';
|
|
@@ -11,12 +12,10 @@ import 'fs';
|
|
|
11
12
|
import 'path';
|
|
12
13
|
import 'os';
|
|
13
14
|
import 'crypto';
|
|
14
|
-
import 'tty';
|
|
15
15
|
import '@shopware/api-client';
|
|
16
|
-
import 'inspector';
|
|
17
16
|
|
|
18
17
|
const name = "@shopware/api-gen";
|
|
19
|
-
const version = "1.3.
|
|
18
|
+
const version = "1.3.3";
|
|
20
19
|
const description = "Shopware CLI for API client generation.";
|
|
21
20
|
const author = "Shopware";
|
|
22
21
|
const type = "module";
|
|
@@ -64,20 +63,21 @@ const devDependencies = {
|
|
|
64
63
|
"@biomejs/biome": "1.8.3",
|
|
65
64
|
"@types/prettier": "3.0.0",
|
|
66
65
|
"@types/yargs": "17.0.33",
|
|
67
|
-
"@vitest/coverage-v8": "3.
|
|
66
|
+
"@vitest/coverage-v8": "3.2.4",
|
|
68
67
|
json5: "2.2.3",
|
|
69
|
-
picocolors: "1.
|
|
68
|
+
picocolors: "1.1.1",
|
|
70
69
|
tsconfig: "workspace:*",
|
|
71
70
|
unbuild: "2.0.0",
|
|
72
|
-
vitest: "3.
|
|
71
|
+
vitest: "3.2.4"
|
|
73
72
|
};
|
|
74
73
|
const dependencies = {
|
|
75
74
|
"@shopware/api-client": "workspace:*",
|
|
76
75
|
ofetch: "1.4.1",
|
|
77
|
-
"openapi-typescript": "7.
|
|
78
|
-
prettier: "3.
|
|
79
|
-
"ts-morph": "
|
|
80
|
-
|
|
76
|
+
"openapi-typescript": "7.8.0",
|
|
77
|
+
prettier: "3.6.2",
|
|
78
|
+
"ts-morph": "26.0.0",
|
|
79
|
+
typescript: "5.9.2",
|
|
80
|
+
yargs: "18.0.0"
|
|
81
81
|
};
|
|
82
82
|
const packageJson = {
|
|
83
83
|
name: name,
|
package/dist/index.mjs
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
export { g as generate, l as loadSchema, v as validateJson } from './shared/api-gen.
|
|
1
|
+
export { g as generate, l as loadSchema, v as validateJson } from './shared/api-gen.BZLmrTCs.mjs';
|
|
2
2
|
import 'node:fs';
|
|
3
3
|
import 'node:path';
|
|
4
4
|
import 'openapi-typescript';
|
|
5
|
+
import 'typescript';
|
|
5
6
|
import 'ofetch';
|
|
6
7
|
import 'prettier';
|
|
7
8
|
import 'ts-morph';
|
|
@@ -9,6 +10,4 @@ import 'fs';
|
|
|
9
10
|
import 'path';
|
|
10
11
|
import 'os';
|
|
11
12
|
import 'crypto';
|
|
12
|
-
import 'tty';
|
|
13
13
|
import '@shopware/api-client';
|
|
14
|
-
import 'inspector';
|