Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 24, 2023
1 parent 6adccd7 commit 43cdcbe
Show file tree
Hide file tree
Showing 22 changed files with 87 additions and 89 deletions.
2 changes: 0 additions & 2 deletions .changeset/breezy-hotels-glow.md

This file was deleted.

42 changes: 0 additions & 42 deletions .changeset/chilly-cheetahs-taste.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/chilly-masks-build.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/clean-countries-rush.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/empty-houses-sparkle.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/fair-actors-pay.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/great-pugs-kick.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/healthy-pans-push.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/polite-donkeys-appear.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/pretty-windows-train.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quick-shirts-remain.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/swift-buckets-wait.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/tough-boats-end.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/tricky-sheep-itch.md

This file was deleted.

15 changes: 15 additions & 0 deletions packages/admin-api-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# @shopify/admin-api-client

## 0.1.0

### Minor Changes

- ca89ef06: Added the ability to automatically type GraphQL queries to the Storefront API when the files created by @shopify/api-codegen-preset are loaded for the app.
- ef053fa5: Added the ability to automatically type GraphQL queries when the files created by @shopify/api-codegen-preset are loaded for the app.

### Patch Changes

- Updated dependencies [ca89ef06]
- Updated dependencies [ef053fa5]
- Updated dependencies [49d5966e]
- @shopify/graphql-client@0.8.0
4 changes: 2 additions & 2 deletions packages/admin-api-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/admin-api-client",
"version": "0.0.1",
"version": "0.1.0",
"description": "Shopify Admin API Client - A lightweight JS client to interact with Shopify's Admin API",
"repository": {
"type": "git",
Expand Down Expand Up @@ -60,7 +60,7 @@
"dist/**/*.*"
],
"dependencies": {
"@shopify/graphql-client": "^0.7.0"
"@shopify/graphql-client": "^0.8.0"
},
"devDependencies": {
"jest-environment-jsdom": "^29.5.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/graphql-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @shopify/graphql-client

## 0.8.0

### Minor Changes

- ca89ef06: Added the ability to automatically type GraphQL queries to the Storefront API when the files created by @shopify/api-codegen-preset are loaded for the app.
- ef053fa5: Added the ability to automatically type GraphQL queries when the files created by @shopify/api-codegen-preset are loaded for the app.
- 49d5966e: Rename `customHeaders` to `headers` in Api Client utils and types for readibility

## 0.7.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/graphql-client",
"version": "0.7.0",
"version": "0.8.0",
"description": "Shopify GraphQL Client - A lightweight generic GraphQL JS client to interact with Shopify GraphQL APIs",
"repository": {
"type": "git",
Expand Down
45 changes: 45 additions & 0 deletions packages/shopify-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,50 @@
# Changelog

## 8.1.0

### Minor Changes

- bf0664bb: Line Item Billing

Now with the future flag `unstable_lineItemBilling` you can specify multiple line items in a single billing request. This will allow you to create a single billing request for a subscription with both recurring and usage based app billing.

You will define the new billingConfig as follows.

```ts
const shopify = shopifyApp({
billing: {
MultipleLineItems: {
replacementBehavior: BillingReplacementBehavior.ApplyImmediately,
trialDays: 7,
lineItems: [
{
interval: BillingInterval.Usage,
amount: 30,
currencyCode: "USD",
terms: "per 1000 emails",
},
{
interval: BillingInterval.Every30Days,
amount: 30,
currencyCode: "USD",
discount: {
durationLimitInIntervals: 3,
value: {
amount: 10,
},
},
},
],
},
},
futures: {
unstable_lineItemBilling: true,
},
});
```

- eae5a4a8: Introduce token exchange API for fetching access tokens. This feature is currently unstable and is hidden behind the `unstable_tokenExchange` future flag.

## 8.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/shopify-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/shopify-api",
"version": "8.0.2",
"version": "8.1.0",
"description": "Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down
13 changes: 13 additions & 0 deletions packages/storefront-api-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @shopify/storefront-api-client

## 0.1.0

### Minor Changes

- ca89ef06: Added the ability to automatically type GraphQL queries to the Storefront API when the files created by @shopify/api-codegen-preset are loaded for the app.

### Patch Changes

- Updated dependencies [ca89ef06]
- Updated dependencies [ef053fa5]
- Updated dependencies [49d5966e]
- @shopify/graphql-client@0.8.0

## 0.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/storefront-api-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@shopify/storefront-api-client",
"version": "0.0.1",
"version": "0.1.0",
"description": "Shopify Storefront API Client - A lightweight JS client to interact with Shopify's Storefront API",
"repository": {
"type": "git",
Expand Down Expand Up @@ -83,7 +83,7 @@
"!node_modules"
],
"dependencies": {
"@shopify/graphql-client": "^0.7.0"
"@shopify/graphql-client": "^0.8.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
Expand Down

0 comments on commit 43cdcbe

Please sign in to comment.