diff --git a/.changeset/current-igdb-schema.md b/.changeset/current-igdb-schema.md deleted file mode 100644 index 17dbbfe..0000000 --- a/.changeset/current-igdb-schema.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@api-wrappers/igdb-wrapper": patch ---- - -Align endpoint registration and model types with the current IGDB v4 schema, including the image types endpoint and recent company, image, popularity, region, and release-date fields. diff --git a/.changeset/enforce-multiquery-limit.md b/.changeset/enforce-multiquery-limit.md deleted file mode 100644 index f122334..0000000 --- a/.changeset/enforce-multiquery-limit.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@api-wrappers/igdb-wrapper": patch ---- - -Reject typed multi-query builders that exceed IGDB's maximum of 10 query blocks per request. diff --git a/.changeset/guard-unsupported-search.md b/.changeset/guard-unsupported-search.md deleted file mode 100644 index 4285f59..0000000 --- a/.changeset/guard-unsupported-search.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@api-wrappers/igdb-wrapper": patch ---- - -Reject the high-level search helper on endpoints that IGDB does not document as searchable, and narrow the exported searchable endpoint path type accordingly. diff --git a/CHANGELOG.md b/CHANGELOG.md index f82f13f..3564227 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # @api-wrappers/igdb-wrapper +## 1.1.1 + +### Patch Changes + +- 5d8f413: Align endpoint registration and model types with the current IGDB v4 schema, including the image types endpoint and recent company, image, popularity, region, and release-date fields. +- 047ff0d: Reject typed multi-query builders that exceed IGDB's maximum of 10 query blocks per request. +- 372e263: Reject the high-level search helper on endpoints that IGDB does not document as searchable, and narrow the exported searchable endpoint path type accordingly. + ## 1.0.1 ### Patch Changes diff --git a/package.json b/package.json index a595135..1d80581 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@api-wrappers/igdb-wrapper", - "version": "1.1.0", + "version": "1.1.1", "description": "Type-safe IGDB client with a fluent APICalypse query builder, endpoint helpers, auth, retries, and rate limiting", "module": "./dist/index.mjs", "type": "module",