diff --git a/.changeset/nervous-candles-sneeze.md b/.changeset/nervous-candles-sneeze.md deleted file mode 100644 index cba1c2591..000000000 --- a/.changeset/nervous-candles-sneeze.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@shopify/shopify-api": patch ---- - -Update documentation with required shopifyApi params diff --git a/.changeset/polite-snails-knock.md b/.changeset/polite-snails-knock.md deleted file mode 100644 index ae83f249f..000000000 --- a/.changeset/polite-snails-knock.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@shopify/shopify-api": patch ---- - -Return "body" field from GraphqlQueryError type diff --git a/.changeset/smooth-pears-boil.md b/.changeset/smooth-pears-boil.md deleted file mode 100644 index 3dd77a380..000000000 --- a/.changeset/smooth-pears-boil.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@shopify/storefront-api-client": patch -"@shopify/admin-api-client": patch -"@shopify/graphql-client": patch ---- - -Remove `Partial` around the `ClientResponse.data` type for easier consumption of the client's returned typed data diff --git a/packages/admin-api-client/CHANGELOG.md b/packages/admin-api-client/CHANGELOG.md index 97c35ed90..d98bcca80 100644 --- a/packages/admin-api-client/CHANGELOG.md +++ b/packages/admin-api-client/CHANGELOG.md @@ -1,5 +1,13 @@ # @shopify/admin-api-client +## 0.2.2 + +### Patch Changes + +- b2414c2f: Remove `Partial` around the `ClientResponse.data` type for easier consumption of the client's returned typed data +- Updated dependencies [b2414c2f] + - @shopify/graphql-client@0.9.2 + ## 0.2.1 ### Patch Changes diff --git a/packages/admin-api-client/package.json b/packages/admin-api-client/package.json index 91a4f9026..ef20695e4 100644 --- a/packages/admin-api-client/package.json +++ b/packages/admin-api-client/package.json @@ -1,6 +1,6 @@ { "name": "@shopify/admin-api-client", - "version": "0.2.1", + "version": "0.2.2", "description": "Shopify Admin API Client - A lightweight JS client to interact with Shopify's Admin API", "repository": { "type": "git", @@ -60,7 +60,7 @@ "dist/**/*.*" ], "dependencies": { - "@shopify/graphql-client": "^0.9.1" + "@shopify/graphql-client": "^0.9.2" }, "devDependencies": { "jest-environment-jsdom": "^29.5.0", diff --git a/packages/graphql-client/CHANGELOG.md b/packages/graphql-client/CHANGELOG.md index 9333013e2..2e5f0a8d4 100644 --- a/packages/graphql-client/CHANGELOG.md +++ b/packages/graphql-client/CHANGELOG.md @@ -1,5 +1,11 @@ # @shopify/graphql-client +## 0.9.2 + +### Patch Changes + +- b2414c2f: Remove `Partial` around the `ClientResponse.data` type for easier consumption of the client's returned typed data + ## 0.9.1 ### Patch Changes diff --git a/packages/graphql-client/package.json b/packages/graphql-client/package.json index c5370105c..5d0da6a3b 100644 --- a/packages/graphql-client/package.json +++ b/packages/graphql-client/package.json @@ -1,6 +1,6 @@ { "name": "@shopify/graphql-client", - "version": "0.9.1", + "version": "0.9.2", "description": "Shopify GraphQL Client - A lightweight generic GraphQL JS client to interact with Shopify GraphQL APIs", "repository": { "type": "git", diff --git a/packages/shopify-api/CHANGELOG.md b/packages/shopify-api/CHANGELOG.md index e719c4f22..aeafa598f 100644 --- a/packages/shopify-api/CHANGELOG.md +++ b/packages/shopify-api/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 9.0.2 + +### Patch Changes + +- 4d7f9a01: Update documentation with required shopifyApi params +- 1b4caf91: Return "body" field from GraphqlQueryError type +- Updated dependencies [b2414c2f] + - @shopify/storefront-api-client@0.2.2 + - @shopify/admin-api-client@0.2.2 + ## 9.0.1 ### Patch Changes diff --git a/packages/shopify-api/lib/version.ts b/packages/shopify-api/lib/version.ts index 63d32a3b6..d44e0daf9 100644 --- a/packages/shopify-api/lib/version.ts +++ b/packages/shopify-api/lib/version.ts @@ -1 +1 @@ -export const SHOPIFY_API_LIBRARY_VERSION = '9.0.1'; +export const SHOPIFY_API_LIBRARY_VERSION = '9.0.2'; diff --git a/packages/shopify-api/package.json b/packages/shopify-api/package.json index 8daa35284..943f8ef7e 100644 --- a/packages/shopify-api/package.json +++ b/packages/shopify-api/package.json @@ -1,6 +1,6 @@ { "name": "@shopify/shopify-api", - "version": "9.0.1", + "version": "9.0.2", "description": "Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -70,9 +70,9 @@ "node-fetch": "^2.6.7" }, "dependencies": { - "@shopify/admin-api-client": "^0.2.1", + "@shopify/admin-api-client": "^0.2.2", "@shopify/network": "^3.2.1", - "@shopify/storefront-api-client": "^0.2.1", + "@shopify/storefront-api-client": "^0.2.2", "compare-versions": "^5.0.3", "isbot": "^3.6.10", "jose": "^4.9.1", diff --git a/packages/storefront-api-client/CHANGELOG.md b/packages/storefront-api-client/CHANGELOG.md index 5e3fd875c..513f094d8 100644 --- a/packages/storefront-api-client/CHANGELOG.md +++ b/packages/storefront-api-client/CHANGELOG.md @@ -1,5 +1,13 @@ # @shopify/storefront-api-client +## 0.2.2 + +### Patch Changes + +- b2414c2f: Remove `Partial` around the `ClientResponse.data` type for easier consumption of the client's returned typed data +- Updated dependencies [b2414c2f] + - @shopify/graphql-client@0.9.2 + ## 0.2.1 ### Patch Changes diff --git a/packages/storefront-api-client/package.json b/packages/storefront-api-client/package.json index 05fb365ec..45361f9e5 100644 --- a/packages/storefront-api-client/package.json +++ b/packages/storefront-api-client/package.json @@ -1,6 +1,6 @@ { "name": "@shopify/storefront-api-client", - "version": "0.2.1", + "version": "0.2.2", "description": "Shopify Storefront API Client - A lightweight JS client to interact with Shopify's Storefront API", "repository": { "type": "git", @@ -83,7 +83,7 @@ "!node_modules" ], "dependencies": { - "@shopify/graphql-client": "^0.9.1" + "@shopify/graphql-client": "^0.9.2" }, "devDependencies": { "jest-environment-jsdom": "^29.5.0"