@shopware/api-client@1.4.0
·
57 commits
to main
since this release
Minor Changes
-
#2012
70dcf95Thanks @patzick! - Added helper to support encoded_criteriafield in GET query parameters.
Context information: shopware/shopware#12388This helper is available under the
@shopware/api-client/helpersimport path.import { encodeForQuery } from "@shopware/api-client/helpers"; const criteria = { page: 1, limit: 10, ... } const encodedCriteria = encodeForQuery(criteria); const result = await apiClient.invoke("getProducts get /product", { query: { _criteria: encodedCriteria, }, });
-
#1959
c77daa6Thanks @patzick! - Updated default types to Shopware 6.7