@shopware/api-gen 1.1.3 → 1.1.4
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 +6 -4
- package/bin/api-gen.mjs +0 -1
- package/dist/cli.mjs +8809 -8785
- package/package.json +9 -8
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ Example of overrides file:
|
|
|
46
46
|
<!-- automd:file src="packages/api-gen/tests/snapshots-override/simpleOverride.example.ts" code -->
|
|
47
47
|
|
|
48
48
|
```ts [simpleOverride.example.ts]
|
|
49
|
-
import { components as mainComponents } from "./storeApiTypes";
|
|
49
|
+
import type { components as mainComponents } from "./storeApiTypes";
|
|
50
50
|
|
|
51
51
|
export type components = mainComponents & {
|
|
52
52
|
schemas: Schemas;
|
|
@@ -243,9 +243,11 @@ Prepare your config file named **api-gen.config.json**:
|
|
|
243
243
|
|
|
244
244
|
Full changelog for stable version is available [here](https://github.com/shopware/frontends/blob/main/packages/api-gen/CHANGELOG.md)
|
|
245
245
|
|
|
246
|
-
### Latest changes: 1.1.
|
|
246
|
+
### Latest changes: 1.1.4
|
|
247
247
|
|
|
248
248
|
### Patch Changes
|
|
249
249
|
|
|
250
|
-
-
|
|
251
|
-
|
|
250
|
+
- [#1447](https://github.com/shopware/frontends/pull/1447) [`11ea41f`](https://github.com/shopware/frontends/commit/11ea41fc00493d4997ddfcb23e2f5bf89dd2a828) Thanks [@patzick](https://github.com/patzick)! - Improved error messages and merging override patches.
|
|
251
|
+
|
|
252
|
+
- Updated dependencies [[`a87bbcf`](https://github.com/shopware/frontends/commit/a87bbcfa3f5aa440265b1e8f0fc72a204863befc)]:
|
|
253
|
+
- @shopware/api-client@1.2.0
|
package/bin/api-gen.mjs
CHANGED