From 2d02306493165aed9ae9125dc4653254a6e7c733 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 10 Apr 2024 14:58:31 +0000 Subject: [PATCH] ci: release --- .changeset/calm-berries-do.md | 7 - .changeset/fifty-carpets-play.md | 5 - .changeset/gold-elephants-rescue.md | 5 - docs/content/5.api/magento-api.api.json | 117 +++++++++- docs/content/5.api/magento-sdk.api.json | 210 +++++++++++++++++- docs/content/5.api/magento-types.api.json | 148 ++++++++++++ .../changelogs/vue-storefront-magento-api.md | 15 ++ .../changelogs/vue-storefront-magento-sdk.md | 11 + .../vue-storefront-magento-types.md | 6 + packages/api-client/CHANGELOG.md | 15 ++ packages/api-client/package.json | 4 +- packages/api-types/CHANGELOG.md | 6 + packages/api-types/package.json | 2 +- packages/sdk/CHANGELOG.md | 11 + packages/sdk/package.json | 6 +- 15 files changed, 543 insertions(+), 25 deletions(-) delete mode 100644 .changeset/calm-berries-do.md delete mode 100644 .changeset/fifty-carpets-play.md delete mode 100644 .changeset/gold-elephants-rescue.md diff --git a/.changeset/calm-berries-do.md b/.changeset/calm-berries-do.md deleted file mode 100644 index 4dced2b9f..000000000 --- a/.changeset/calm-berries-do.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@vue-storefront/magento-api": minor ---- - -[ADDED] `categories` endpoint that allows fetching a list of categories that match the specified filter. -[CHANGED] `categoryList` endpoint is now deprecated in favor of the new `categories` endpoint. -``` \ No newline at end of file diff --git a/.changeset/fifty-carpets-play.md b/.changeset/fifty-carpets-play.md deleted file mode 100644 index 6badbee6a..000000000 --- a/.changeset/fifty-carpets-play.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vue-storefront/magento-types": minor ---- - -[ADDED] `categories` endpoint definition. \ No newline at end of file diff --git a/.changeset/gold-elephants-rescue.md b/.changeset/gold-elephants-rescue.md deleted file mode 100644 index faf3b93e4..000000000 --- a/.changeset/gold-elephants-rescue.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vue-storefront/magento-sdk": minor ---- - -[ADDED] `categories` method that allows fetching a list of categories that match the specified filter. diff --git a/docs/content/5.api/magento-api.api.json b/docs/content/5.api/magento-api.api.json index ea830a286..5ae8a76d3 100644 --- a/docs/content/5.api/magento-api.api.json +++ b/docs/content/5.api/magento-api.api.json @@ -1251,10 +1251,125 @@ "endIndex": 12 } }, + { + "kind": "Function", + "canonicalReference": "@vue-storefront/magento-api!categories:function(1)", + "docComment": "/**\n * Fetches categories.\n *\n * @param context - Context\n *\n * @param params - \n *\n * @param customQuery - (optional) - custom GraphQL query that extends the default query\n *\n * @param customHeaders - (optional) - custom headers that extends the default headers\n */\n", + "excerptTokens": [ + { + "kind": "Content", + "text": "export default function categories(context: " + }, + { + "kind": "Reference", + "text": "Context", + "canonicalReference": "@vue-storefront/magento-api!Context:interface" + }, + { + "kind": "Content", + "text": ", params: " + }, + { + "kind": "Reference", + "text": "QueryCategoriesArgs", + "canonicalReference": "@vue-storefront/magento-types!QueryCategoriesArgs:interface" + }, + { + "kind": "Content", + "text": ", customQuery?: " + }, + { + "kind": "Reference", + "text": "CustomQuery", + "canonicalReference": "@vue-storefront/magento-types!CustomQuery:type" + }, + { + "kind": "Content", + "text": ", customHeaders?: " + }, + { + "kind": "Reference", + "text": "CustomHeaders", + "canonicalReference": "@vue-storefront/magento-types!CustomHeaders:type" + }, + { + "kind": "Content", + "text": "): " + }, + { + "kind": "Reference", + "text": "Promise", + "canonicalReference": "!Promise:interface" + }, + { + "kind": "Content", + "text": "<" + }, + { + "kind": "Reference", + "text": "ApolloQueryResult", + "canonicalReference": "@apollo/client/core!ApolloQueryResult:type" + }, + { + "kind": "Content", + "text": "<" + }, + { + "kind": "Reference", + "text": "Query", + "canonicalReference": "@vue-storefront/magento-types!Query:interface" + }, + { + "kind": "Content", + "text": "[\"categories\"]>>" + }, + { + "kind": "Content", + "text": ";" + } + ], + "returnTypeTokenRange": { + "startIndex": 9, + "endIndex": 15 + }, + "releaseTag": "Public", + "overloadIndex": 1, + "parameters": [ + { + "parameterName": "context", + "parameterTypeTokenRange": { + "startIndex": 1, + "endIndex": 2 + } + }, + { + "parameterName": "params", + "parameterTypeTokenRange": { + "startIndex": 3, + "endIndex": 4 + } + }, + { + "parameterName": "customQuery", + "parameterTypeTokenRange": { + "startIndex": 5, + "endIndex": 6 + } + }, + { + "parameterName": "customHeaders", + "parameterTypeTokenRange": { + "startIndex": 7, + "endIndex": 8 + } + } + ], + "name": "categories" + }, { "kind": "Function", "canonicalReference": "@vue-storefront/magento-api!categoryList:function(1)", - "docComment": "/**\n * Fetches the category list.\n *\n * @param context - VSF Context\n *\n * @param params - \n *\n * @param customQuery - (optional) - custom GraphQL query that extends the default query\n *\n * @param customHeaders - (optional) - custom headers that extends the default headers\n */\n", + "docComment": "/**\n * Fetches the category list.\n *\n * @deprecated\n *\n * Use `categories` method instead\n *\n * @param context - VSF Context\n *\n * @param params - \n *\n * @param customQuery - (optional) - custom GraphQL query that extends the default query\n *\n * @param customHeaders - (optional) - custom headers that extends the default headers\n */\n", "excerptTokens": [ { "kind": "Content", diff --git a/docs/content/5.api/magento-sdk.api.json b/docs/content/5.api/magento-sdk.api.json index 76b52c650..4fa86caab 100644 --- a/docs/content/5.api/magento-sdk.api.json +++ b/docs/content/5.api/magento-sdk.api.json @@ -1786,10 +1786,218 @@ "endIndex": 8 } }, + { + "kind": "Function", + "canonicalReference": "@vue-storefront/magento-sdk!categories:function(1)", + "docComment": "/**\n * Method to list of all categories matching specified filters\n *\n * @remarks\n *\n * This method sends a GET request to the {@link https://docs.vuestorefront.io/integrations/magento/api/magento-api/categories | categories} endpoint of the Vue Storefront API Middleware. The default GraphQL query used by this method can be found {@link https://docs.vuestorefront.io/integrations/magento/api/magento-api/categories | here}.\n *\n * @param params - Parameter object which can be used with this method. Refer to its type definition to learn about possible properties.\n *\n * @param options - Options that can be passed to additionally configure the request or customize the logic in a plugin.\n *\n * @typeParam Res - Customizable response interface to be used with custom queries.\n *\n * @returns Returns a representation of the {@link https://docs.vuestorefront.io/integrations/magento/api/magento-api/categoriesResponse | categoriesResponse}.\n *\n * @example\n *\n * Simple usage:\n * ```ts\n * import { sdk } from '~/sdk.config.ts';\n *\n * // fetch list of categories with default parameters\n * const categories = await sdk.magento.categories({});\n * ```\n *\n * @example\n *\n * Creating a custom GraphQL query for fetching categories.\n * ```ts\n * module.exports = {\n * integrations: {\n * magento: {\n * customQueries: {\n * 'categories-custom-query': ({ variables, metadata }) => ({\n * variables,\n * query: `\n * query categories {\n * categories {\n * ${metadata.fields}\n * }\n * }\n * `\n * }),\n * },\n * }\n * }\n * };\n * ```\n *\n * @example\n *\n * Using a custom GraphQL query to fetch categories.\n * ```ts\n * import { sdk } from '~/sdk.config.ts';\n * const customQuery = {\n * categories: 'categories-custom-query',\n * metadata: {\n * fields: 'items { uid name }'\n * }\n * };\n *\n * const categories = await sdk.magento.categories({}, { customQuery });\n *\n * // Category list will contain only the fields specified in the custom query.\n * ```\n *\n */\n", + "excerptTokens": [ + { + "kind": "Content", + "text": "export declare function categories(params: " + }, + { + "kind": "Reference", + "text": "QueryCategoriesArgs", + "canonicalReference": "@vue-storefront/magento-types!QueryCategoriesArgs:interface" + }, + { + "kind": "Content", + "text": ", options?: " + }, + { + "kind": "Reference", + "text": "MethodOptions", + "canonicalReference": "@vue-storefront/magento-sdk!MethodOptions:type" + }, + { + "kind": "Content", + "text": "<" + }, + { + "kind": "Reference", + "text": "CustomQuery", + "canonicalReference": "@vue-storefront/magento-sdk!CustomQuery:type" + }, + { + "kind": "Content", + "text": "<'categories'>>" + }, + { + "kind": "Content", + "text": "): " + }, + { + "kind": "Reference", + "text": "Promise", + "canonicalReference": "!Promise:interface" + }, + { + "kind": "Content", + "text": "" + }, + { + "kind": "Content", + "text": ";" + } + ], + "returnTypeTokenRange": { + "startIndex": 10, + "endIndex": 12 + }, + "releaseTag": "Public", + "overloadIndex": 1, + "parameters": [ + { + "parameterName": "params", + "parameterTypeTokenRange": { + "startIndex": 3, + "endIndex": 4 + } + }, + { + "parameterName": "options", + "parameterTypeTokenRange": { + "startIndex": 5, + "endIndex": 9 + } + } + ], + "typeParameters": [ + { + "typeParameterName": "RES", + "constraintTokenRange": { + "startIndex": 1, + "endIndex": 2 + }, + "defaultTypeTokenRange": { + "startIndex": 0, + "endIndex": 0 + } + } + ], + "name": "categories" + }, + { + "kind": "TypeAlias", + "canonicalReference": "@vue-storefront/magento-sdk!CategoriesQuery:type", + "docComment": "/**\n * query type for the {@link categories} method.\n */\n", + "excerptTokens": [ + { + "kind": "Content", + "text": "export type CategoriesQuery = " + }, + { + "kind": "Content", + "text": "{\n categories: " + }, + { + "kind": "Reference", + "text": "Query", + "canonicalReference": "@vue-storefront/magento-types!Query:interface" + }, + { + "kind": "Content", + "text": "['categories'];\n}" + }, + { + "kind": "Content", + "text": ";" + } + ], + "releaseTag": "Public", + "name": "CategoriesQuery", + "typeTokenRange": { + "startIndex": 1, + "endIndex": 4 + } + }, + { + "kind": "TypeAlias", + "canonicalReference": "@vue-storefront/magento-sdk!CategoriesResponse:type", + "docComment": "/**\n * Category result response type\n */\n", + "excerptTokens": [ + { + "kind": "Content", + "text": "export type CategoriesResponse " + }, + { + "kind": "Content", + "text": "= " + }, + { + "kind": "Reference", + "text": "CategoriesQuery", + "canonicalReference": "@vue-storefront/magento-sdk!CategoriesQuery:type" + }, + { + "kind": "Content", + "text": "> = " + }, + { + "kind": "Reference", + "text": "ApolloQueryResult", + "canonicalReference": "@apollo/client/core!ApolloQueryResult:type" + }, + { + "kind": "Content", + "text": "" + }, + { + "kind": "Content", + "text": ";" + } + ], + "releaseTag": "Public", + "name": "CategoriesResponse", + "typeParameters": [ + { + "typeParameterName": "T", + "constraintTokenRange": { + "startIndex": 1, + "endIndex": 5 + }, + "defaultTypeTokenRange": { + "startIndex": 6, + "endIndex": 7 + } + } + ], + "typeTokenRange": { + "startIndex": 8, + "endIndex": 10 + } + }, { "kind": "Function", "canonicalReference": "@vue-storefront/magento-sdk!categoryList:function(1)", - "docComment": "/**\n * Method to list of all categories without filters\n *\n * @remarks\n *\n * This method sends a GET request to the {@link https://docs.vuestorefront.io/integrations/magento/api/magento-api/categoryList | categoryList} endpoint of the Vue Storefront API Middleware. The default GraphQL query used by this method can be found {@link https://docs.vuestorefront.io/integrations/magento/api/magento-api/categoryList | here}.\n *\n * @param params - Parameter object which can be used with this method. Refer to its type definition to learn about possible properties.\n *\n * @param options - Options that can be passed to additionally configure the request or customize the logic in a plugin.\n *\n * @typeParam Res - Customizable response interface to be used with custom queries.\n *\n * @returns Returns a representation of the {@link https://docs.vuestorefront.io/integrations/magento/api/magento-api/CategoryListResponse | CategoryListResponse}.\n *\n * @example\n *\n * Simple usage:\n * ```ts\n * import { sdk } from '~/sdk.config.ts';\n *\n * // fetch list of categories with default parameters\n * const categoryList = await sdk.magento.categoryList({});\n * ```\n *\n * @example\n *\n * Creating a custom GraphQL query for adding product details.\n * ```ts\n * module.exports = {\n * integrations: {\n * magento: {\n * customQueries: {\n * 'category-list-custom-query': ({ variables, metadata }) => ({\n * variables,\n * query: `\n * query categoryList {\n * categories {\n * ${metadata.fields}\n * }\n * }\n * `\n * }),\n * },\n * }\n * }\n * };\n * ```\n *\n * @example\n *\n * Using a custom GraphQL query to fetch product details.\n * ```ts\n * import { sdk } from '~/sdk.config.ts';\n * const customQuery = {\n * categoryList: 'category-list-custom-query',\n * metadata: {\n * fields: 'items { uid name }'\n * }\n * };\n *\n * const categoryList = await sdk.magento.categoryList({}, { customQuery });\n *\n * // Category list will contain only the fields specified in the custom query.\n * ```\n *\n */\n", + "docComment": "/**\n * Method to list of all categories without filters\n *\n * @remarks\n *\n * This method sends a GET request to the {@link https://docs.vuestorefront.io/integrations/magento/api/magento-api/categoryList | categoryList} endpoint of the Vue Storefront API Middleware. The default GraphQL query used by this method can be found {@link https://docs.vuestorefront.io/integrations/magento/api/magento-api/categoryList | here}.\n *\n * @deprecated\n *\n * Use `categories` method instead\n *\n * @param params - Parameter object which can be used with this method. Refer to its type definition to learn about possible properties.\n *\n * @param options - Options that can be passed to additionally configure the request or customize the logic in a plugin.\n *\n * @typeParam Res - Customizable response interface to be used with custom queries.\n *\n * @returns Returns a representation of the {@link https://docs.vuestorefront.io/integrations/magento/api/magento-api/CategoryListResponse | CategoryListResponse}.\n *\n * @example\n *\n * Simple usage:\n * ```ts\n * import { sdk } from '~/sdk.config.ts';\n *\n * // fetch list of categories with default parameters\n * const categoryList = await sdk.magento.categoryList({});\n * ```\n *\n * @example\n *\n * Creating a custom GraphQL query for adding product details.\n * ```ts\n * module.exports = {\n * integrations: {\n * magento: {\n * customQueries: {\n * 'category-list-custom-query': ({ variables, metadata }) => ({\n * variables,\n * query: `\n * query categoryList {\n * categories {\n * ${metadata.fields}\n * }\n * }\n * `\n * }),\n * },\n * }\n * }\n * };\n * ```\n *\n * @example\n *\n * Using a custom GraphQL query to fetch product details.\n * ```ts\n * import { sdk } from '~/sdk.config.ts';\n * const customQuery = {\n * categoryList: 'category-list-custom-query',\n * metadata: {\n * fields: 'items { uid name }'\n * }\n * };\n *\n * const categoryList = await sdk.magento.categoryList({}, { customQuery });\n *\n * // Category list will contain only the fields specified in the custom query.\n * ```\n *\n */\n", "excerptTokens": [ { "kind": "Content", diff --git a/docs/content/5.api/magento-types.api.json b/docs/content/5.api/magento-types.api.json index d74167fdd..285969382 100644 --- a/docs/content/5.api/magento-types.api.json +++ b/docs/content/5.api/magento-types.api.json @@ -99302,6 +99302,154 @@ ], "name": "cartTotalQty" }, + { + "kind": "MethodSignature", + "canonicalReference": "@vue-storefront/magento-types!MagentoApiMethods#categories:member(1)", + "docComment": "", + "excerptTokens": [ + { + "kind": "Content", + "text": "categories(currentPage?: " + }, + { + "kind": "Reference", + "text": "InputMaybe", + "canonicalReference": "@vue-storefront/magento-types!InputMaybe:type" + }, + { + "kind": "Content", + "text": "<" + }, + { + "kind": "Reference", + "text": "Scalars", + "canonicalReference": "@vue-storefront/magento-types!Scalars:interface" + }, + { + "kind": "Content", + "text": "['Int']>" + }, + { + "kind": "Content", + "text": ", filters?: " + }, + { + "kind": "Reference", + "text": "InputMaybe", + "canonicalReference": "@vue-storefront/magento-types!InputMaybe:type" + }, + { + "kind": "Content", + "text": "<" + }, + { + "kind": "Reference", + "text": "CategoryFilterInput", + "canonicalReference": "@vue-storefront/magento-types!CategoryFilterInput:interface" + }, + { + "kind": "Content", + "text": ">" + }, + { + "kind": "Content", + "text": ", pageSize?: " + }, + { + "kind": "Reference", + "text": "InputMaybe", + "canonicalReference": "@vue-storefront/magento-types!InputMaybe:type" + }, + { + "kind": "Content", + "text": "<" + }, + { + "kind": "Reference", + "text": "Scalars", + "canonicalReference": "@vue-storefront/magento-types!Scalars:interface" + }, + { + "kind": "Content", + "text": "['Int']>" + }, + { + "kind": "Content", + "text": "): " + }, + { + "kind": "Reference", + "text": "Promise", + "canonicalReference": "!Promise:interface" + }, + { + "kind": "Content", + "text": "<" + }, + { + "kind": "Reference", + "text": "ApolloQueryResult", + "canonicalReference": "@apollo/client/core!ApolloQueryResult:type" + }, + { + "kind": "Content", + "text": "<" + }, + { + "kind": "Reference", + "text": "Maybe", + "canonicalReference": "@vue-storefront/magento-types!Maybe:type" + }, + { + "kind": "Content", + "text": "<" + }, + { + "kind": "Reference", + "text": "CategoryResult", + "canonicalReference": "@vue-storefront/magento-types!CategoryResult:interface" + }, + { + "kind": "Content", + "text": ">>>" + }, + { + "kind": "Content", + "text": ";" + } + ], + "isOptional": false, + "returnTypeTokenRange": { + "startIndex": 16, + "endIndex": 24 + }, + "releaseTag": "Public", + "overloadIndex": 1, + "parameters": [ + { + "parameterName": "currentPage", + "parameterTypeTokenRange": { + "startIndex": 1, + "endIndex": 5 + } + }, + { + "parameterName": "filters", + "parameterTypeTokenRange": { + "startIndex": 6, + "endIndex": 10 + } + }, + { + "parameterName": "pageSize", + "parameterTypeTokenRange": { + "startIndex": 11, + "endIndex": 15 + } + } + ], + "name": "categories" + }, { "kind": "MethodSignature", "canonicalReference": "@vue-storefront/magento-types!MagentoApiMethods#categoryList:member(1)", diff --git a/docs/content/6.reference/changelogs/vue-storefront-magento-api.md b/docs/content/6.reference/changelogs/vue-storefront-magento-api.md index bc98b7338..2e57dd496 100644 --- a/docs/content/6.reference/changelogs/vue-storefront-magento-api.md +++ b/docs/content/6.reference/changelogs/vue-storefront-magento-api.md @@ -1,5 +1,20 @@ # @vue-storefront/magento-api +## 2.7.0 + +### Minor Changes + +- 8b2a0c35: [ADDED] `categories` endpoint that allows fetching a list of categories that match the specified filter. + [CHANGED] `categoryList` endpoint is now deprecated in favor of the new `categories` endpoint. + ``` + + ``` + +### Patch Changes + +- Updated dependencies [8b2a0c35] + - @vue-storefront/magento-types@1.2.0 + ## 2.6.0 ### Minor Changes diff --git a/docs/content/6.reference/changelogs/vue-storefront-magento-sdk.md b/docs/content/6.reference/changelogs/vue-storefront-magento-sdk.md index 8fe8e1185..34441ec8d 100644 --- a/docs/content/6.reference/changelogs/vue-storefront-magento-sdk.md +++ b/docs/content/6.reference/changelogs/vue-storefront-magento-sdk.md @@ -1,5 +1,16 @@ # @vue-storefront/magento-sdk +## 2.3.0 + +### Minor Changes + +- 8b2a0c35: [ADDED] `categories` method that allows fetching a list of categories that match the specified filter. + +### Patch Changes + +- Updated dependencies [8b2a0c35] + - @vue-storefront/magento-types@1.2.0 + ## 2.2.0 ### Minor Changes diff --git a/docs/content/6.reference/changelogs/vue-storefront-magento-types.md b/docs/content/6.reference/changelogs/vue-storefront-magento-types.md index bba19a206..120f10d8b 100644 --- a/docs/content/6.reference/changelogs/vue-storefront-magento-types.md +++ b/docs/content/6.reference/changelogs/vue-storefront-magento-types.md @@ -1,5 +1,11 @@ # @vue-storefront/magento-types +## 1.2.0 + +### Minor Changes + +- 8b2a0c35: [ADDED] `categories` endpoint definition. + ## 1.1.0 ### Minor Changes diff --git a/packages/api-client/CHANGELOG.md b/packages/api-client/CHANGELOG.md index bc98b7338..2e57dd496 100644 --- a/packages/api-client/CHANGELOG.md +++ b/packages/api-client/CHANGELOG.md @@ -1,5 +1,20 @@ # @vue-storefront/magento-api +## 2.7.0 + +### Minor Changes + +- 8b2a0c35: [ADDED] `categories` endpoint that allows fetching a list of categories that match the specified filter. + [CHANGED] `categoryList` endpoint is now deprecated in favor of the new `categories` endpoint. + ``` + + ``` + +### Patch Changes + +- Updated dependencies [8b2a0c35] + - @vue-storefront/magento-types@1.2.0 + ## 2.6.0 ### Minor Changes diff --git a/packages/api-client/package.json b/packages/api-client/package.json index 108fcb337..9f28a2b24 100644 --- a/packages/api-client/package.json +++ b/packages/api-client/package.json @@ -1,6 +1,6 @@ { "name": "@vue-storefront/magento-api", - "version": "2.6.0", + "version": "2.7.0", "sideEffects": false, "homepage": "https://github.com/vuestorefront/magento2", "bugs": { @@ -25,7 +25,7 @@ "@apollo/client": "3.8.7", "@nuxtjs/composition-api": "0.31.0", "@vue-storefront/middleware": "^3.5.0", - "@vue-storefront/magento-types": "1.1.0", + "@vue-storefront/magento-types": "1.2.0", "agentkeepalive": "^4.2.1", "consola": "^3.1.0", "dotenv": "^16.0.1", diff --git a/packages/api-types/CHANGELOG.md b/packages/api-types/CHANGELOG.md index bba19a206..120f10d8b 100644 --- a/packages/api-types/CHANGELOG.md +++ b/packages/api-types/CHANGELOG.md @@ -1,5 +1,11 @@ # @vue-storefront/magento-types +## 1.2.0 + +### Minor Changes + +- 8b2a0c35: [ADDED] `categories` endpoint definition. + ## 1.1.0 ### Minor Changes diff --git a/packages/api-types/package.json b/packages/api-types/package.json index 2e994588f..7978758b1 100644 --- a/packages/api-types/package.json +++ b/packages/api-types/package.json @@ -1,6 +1,6 @@ { "name": "@vue-storefront/magento-types", - "version": "1.1.0", + "version": "1.2.0", "sideEffects": false, "main": "lib/index.cjs.js", "module": "lib/index.es.js", diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md index 8fe8e1185..34441ec8d 100644 --- a/packages/sdk/CHANGELOG.md +++ b/packages/sdk/CHANGELOG.md @@ -1,5 +1,16 @@ # @vue-storefront/magento-sdk +## 2.3.0 + +### Minor Changes + +- 8b2a0c35: [ADDED] `categories` method that allows fetching a list of categories that match the specified filter. + +### Patch Changes + +- Updated dependencies [8b2a0c35] + - @vue-storefront/magento-types@1.2.0 + ## 2.2.0 ### Minor Changes diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 156049859..6c34d0ee6 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@vue-storefront/magento-sdk", - "version": "2.2.0", + "version": "2.3.0", "main": "lib/index.cjs.js", "module": "lib/index.es.js", "types": "lib/index.d.ts", @@ -23,10 +23,10 @@ "@vue-storefront/sdk-axios-request-sender": "1.0.0", "@apollo/client": "^3.6.9", "ts-essentials": "^9.3.1", - "@vue-storefront/magento-types": "^1.0.2" + "@vue-storefront/magento-types": "^1.2.0" }, "devDependencies": { - "@vue-storefront/magento-api": "^2.5.0", + "@vue-storefront/magento-api": "^2.7.0", "nock": "^13.2.9", "@types/node": "^12.12.14" },