Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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/**'
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.56.0"
".": "0.56.1"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <contact@smithery.ai>",
"types": "dist/index.d.ts",
Expand Down
22 changes: 17 additions & 5 deletions src/resources/skills/reviews.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand All @@ -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<void> {
const { namespace } = params;
Expand All @@ -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<void> {
const { namespace, slug } = params;
Expand All @@ -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<ReviewVoteResponse> {
const { namespace, slug, ...body } = params;
Expand Down
14 changes: 11 additions & 3 deletions src/resources/skills/votes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,20 @@ 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<SkillVoteResponse> {
const { namespace, ...body } = params;
return this._client.post(path`/skills/${namespace}/${slug}/vote`, { body, ...options });
}

/**
* Remove vote from a skill
* [Deprecated] Remove vote from a skill
*
* @deprecated
*/
delete(slug: string, params: VoteDeleteParams, options?: RequestOptions): APIPromise<void> {
const { namespace } = params;
Expand All @@ -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<SkillVoteCounts> {
const { namespace } = params;
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.56.0'; // x-release-please-version
export const VERSION = '0.56.1'; // x-release-please-version
Loading