@shopware/api-client 1.1.2 → 1.2.1
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 -2
- package/api-types/adminApiTypes.d.ts +1 -1
- package/api-types/storeApiSchema.json +1372 -377
- package/api-types/storeApiSchema.overrides.json +346 -0
- package/api-types/storeApiTypes.d.ts +916 -393
- package/api-types/storeApiTypes.overrides.ts +2 -117
- package/dist/index.cjs +7 -5
- package/dist/index.d.cts +1022 -496
- package/dist/index.d.mts +1022 -496
- package/dist/index.d.ts +1022 -496
- package/dist/index.mjs +7 -5
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -279,8 +279,8 @@ calling `apiClient.hook` will autocomplete the list of available hooks.
|
|
|
279
279
|
|
|
280
280
|
Full changelog for stable version is available [here](https://github.com/shopware/frontends/blob/main/packages/api-client/CHANGELOG.md)
|
|
281
281
|
|
|
282
|
-
### Latest changes: 1.1
|
|
282
|
+
### Latest changes: 1.2.1
|
|
283
283
|
|
|
284
284
|
### Patch Changes
|
|
285
285
|
|
|
286
|
-
- [#
|
|
286
|
+
- [#1685](https://github.com/shopware/frontends/pull/1685) [`7324620`](https://github.com/shopware/frontends/commit/7324620a3f39c1b62f7cc294192a3e8b8b336d09) Thanks [@mdanilowicz](https://github.com/mdanilowicz)! - Overwrite API schemas to remove requirements from 'salutationId` property
|
|
@@ -10805,7 +10805,7 @@ export type Schemas = {
|
|
|
10805
10805
|
};
|
|
10806
10806
|
MultiNotFilter: {
|
|
10807
10807
|
/** @enum {string} */
|
|
10808
|
-
operator: "AND" | "
|
|
10808
|
+
operator: "AND" | "OR" | "and" | "or";
|
|
10809
10809
|
queries: components["schemas"]["Filters"];
|
|
10810
10810
|
/** @enum {string} */
|
|
10811
10811
|
type: "multi" | "not";
|