diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e0583e4..6e8e58c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,12 +1,14 @@ name: CI on: push: - branches-ignore: - - 'generated' - - 'codegen/**' - - 'integrated/**' - - 'stl-preview-head/**' - - 'stl-preview-base/**' + branches: + - '**' + - '!integrated/**' + - '!stl-preview-head/**' + - '!stl-preview-base/**' + - '!generated' + - '!codegen/**' + - 'codegen/stl/**' pull_request: branches-ignore: - 'stl-preview-head/**' diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 13093da..444ef54 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.56.0" + ".": "0.56.1" } diff --git a/.stats.yml b/.stats.yml index f69b48b..ab24224 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 56 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/smithery%2Fsmithery-43d4f10825448402040e5849e1a990221129d3628397d1a3938ae41f872f6623.yml -openapi_spec_hash: d2babb21cf900087915b765c86d6e100 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/smithery%2Fsmithery-0efa6f2afdb7d90d4b7656dedf3212ba6c02e7bf7d820f40e17894f3d425f193.yml +openapi_spec_hash: b395b0c7aa89e5862e5f1f3f31bf1ad2 config_hash: c892f4a037284a6cd640f6ff0e04a6bf diff --git a/CHANGELOG.md b/CHANGELOG.md index bb8c7e9..ee3f70b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.56.1 (2026-03-18) + +Full Changelog: [v0.56.0...v0.56.1](https://github.com/smithery-ai/typescript-api/compare/v0.56.0...v0.56.1) + +### Chores + +* **internal:** tweak CI branches ([e5307bc](https://github.com/smithery-ai/typescript-api/commit/e5307bcf1aee11fc21251525ce530333e0a8dbdd)) +* sunset reviews — deprecate API, remove UI (SMI-1505) ([#1843](https://github.com/smithery-ai/typescript-api/issues/1843)) ([98fe690](https://github.com/smithery-ai/typescript-api/commit/98fe6908ff4ea6fd9494464caeca1c7c94c31192)) + ## 0.56.0 (2026-03-13) Full Changelog: [v0.55.0...v0.56.0](https://github.com/smithery-ai/typescript-api/compare/v0.55.0...v0.56.0) diff --git a/package-lock.json b/package-lock.json index 12bc520..016f051 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@smithery/api", - "version": "0.56.0", + "version": "0.56.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@smithery/api", - "version": "0.56.0", + "version": "0.56.1", "license": "Apache-2.0", "devDependencies": { "@arethetypeswrong/cli": "^0.17.0", diff --git a/package.json b/package.json index b2bc0cc..02d8e68 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@smithery/api", - "version": "0.56.0", + "version": "0.56.1", "description": "The official TypeScript library for the Smithery API", "author": "Smithery ", "types": "dist/index.d.ts", diff --git a/src/resources/skills/reviews.ts b/src/resources/skills/reviews.ts index fc7b23e..bf3c904 100644 --- a/src/resources/skills/reviews.ts +++ b/src/resources/skills/reviews.ts @@ -12,7 +12,10 @@ import { path } from '../../internal/utils/path'; */ export class Reviews extends APIResource { /** - * Submit a review for a skill. Updates existing review if one already exists. + * Deprecated (SMI-1505). Submit a review for a skill. Updates existing review if + * one already exists. + * + * @deprecated */ create( slug: string, @@ -24,7 +27,9 @@ export class Reviews extends APIResource { } /** - * Get paginated list of reviews with vote counts + * Deprecated (SMI-1505). Get paginated list of reviews with vote counts. + * + * @deprecated */ list( slug: string, @@ -39,7 +44,9 @@ export class Reviews extends APIResource { } /** - * Delete your review + * [Deprecated] Delete your review + * + * @deprecated */ delete(slug: string, params: ReviewDeleteParams, options?: RequestOptions): APIPromise { const { namespace } = params; @@ -50,7 +57,9 @@ export class Reviews extends APIResource { } /** - * Remove vote from a review + * [Deprecated] Remove vote from a review + * + * @deprecated */ unvote(reviewID: string, params: ReviewUnvoteParams, options?: RequestOptions): APIPromise { const { namespace, slug } = params; @@ -61,7 +70,10 @@ export class Reviews extends APIResource { } /** - * Upvote or downvote a review. Updates existing vote if one exists. + * Deprecated (SMI-1505). Upvote or downvote a review. Updates existing vote if one + * exists. + * + * @deprecated */ vote(reviewID: string, params: ReviewVoteParams, options?: RequestOptions): APIPromise { const { namespace, slug, ...body } = params; diff --git a/src/resources/skills/votes.ts b/src/resources/skills/votes.ts index fe755ed..5524c60 100644 --- a/src/resources/skills/votes.ts +++ b/src/resources/skills/votes.ts @@ -11,7 +11,10 @@ import { path } from '../../internal/utils/path'; */ export class Votes extends APIResource { /** - * Upvote or downvote a skill. Updates existing vote if one exists. + * Deprecated (SMI-1505). Upvote or downvote a skill. Updates existing vote if one + * exists. + * + * @deprecated */ create(slug: string, params: VoteCreateParams, options?: RequestOptions): APIPromise { const { namespace, ...body } = params; @@ -19,7 +22,9 @@ export class Votes extends APIResource { } /** - * Remove vote from a skill + * [Deprecated] Remove vote from a skill + * + * @deprecated */ delete(slug: string, params: VoteDeleteParams, options?: RequestOptions): APIPromise { const { namespace } = params; @@ -30,7 +35,10 @@ export class Votes extends APIResource { } /** - * Get upvote/downvote counts and current user's vote (if authenticated) + * Deprecated (SMI-1505). Get upvote/downvote counts and current user's vote (if + * authenticated). + * + * @deprecated */ get(slug: string, params: VoteGetParams, options?: RequestOptions): APIPromise { const { namespace } = params; diff --git a/src/version.ts b/src/version.ts index 2d175e1..40cba3b 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.56.0'; // x-release-please-version +export const VERSION = '0.56.1'; // x-release-please-version