diff --git a/.changeset/big-tables-cross.md b/.changeset/big-tables-cross.md deleted file mode 100644 index 996f410..0000000 --- a/.changeset/big-tables-cross.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'zapi-inventory': major ---- - -- This release introduces a major cleanup of API types. Response schemas that previously only contained generic success messages are now correctly interpreted as 'void' returns, and their types are no longer generated. -- Consolidate separate single-item and bulk-item methods (e.g., `markAsConfirmed` and `bulkConfirm`) into a single, overloaded method that handles both scenarios based on the input array length. This simplifies the SDK's API surface and reduces redundancy. -- All future bug fixes and features will be released exclusively under the v2.x track. diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cfa53a..84f72f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # zapi-inventory +## 2.0.0 + +### Major Changes + +- e4612c4: - This release introduces a major cleanup of API types. Response schemas that previously only contained generic success messages are now correctly interpreted as 'void' returns, and their types are no longer generated. + - Consolidate separate single-item and bulk-item methods (e.g., `markAsConfirmed` and `bulkConfirm`) into a single, overloaded method that handles both scenarios based on the input array length. This simplifies the SDK's API surface and reduces redundancy. + - All future bug fixes and features will be released exclusively under the v2.x track. + ## 1.1.0 ### Minor Changes diff --git a/package.json b/package.json index 0cb0df7..fe44c74 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "zapi-inventory", "private": false, - "version": "1.1.0", + "version": "2.0.0", "exports": { ".": { "types": "./dist/index.d.ts",