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

Commit

Permalink
Add support for April24 API version
Browse files Browse the repository at this point in the history
  • Loading branch information
lizkenyon committed Apr 3, 2024
1 parent 9eb1065 commit 3415a8c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/silver-bottles-obey.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@shopify/shopify-api": minor
---

Added support for the 2024-04 API version.
3 changes: 2 additions & 1 deletion packages/shopify-api/lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ export enum ApiVersion {
July23 = '2023-07',
October23 = '2023-10',
January24 = '2024-01',
April24 = '2024-04',
Unstable = 'unstable',
}

export const LIBRARY_NAME = 'Shopify API Library';
export const LATEST_API_VERSION = ApiVersion.January24;
export const LATEST_API_VERSION = ApiVersion.April24;

/* eslint-disable @shopify/typescript/prefer-pascal-case-enums */
export enum ShopifyHeader {
Expand Down

0 comments on commit 3415a8c

Please sign in to comment.