Skip to content

Commit

Permalink
chore: release 1.0.0-rc11
Browse files Browse the repository at this point in the history
  • Loading branch information
MellKam committed Feb 19, 2024
1 parent 260a2cd commit cf109b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@soundify/web-api",
"version": "1.0.0-rc10",
"version": "1.0.0-rc11",
"exports": {
".": "./mod.ts",
"./pagination": "./pagination.ts"
Expand Down
2 changes: 1 addition & 1 deletion endpoints/track/track.endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export const checkIfTrackSaved = async (
client: HTTPClient,
trackId: string,
): Promise<boolean> => {
return (await checkIfTracksSaved(client, [trackId]))[0];
return (await checkIfTracksSaved(client, [trackId]))[0]!;
};

/**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@soundify/web-api",
"version": "1.0.0-rc10",
"version": "1.0.0-rc11",
"description": "🎧 Spotify Web API client for js/ts runtime environments",
"type": "module",
"main": "dist/mod.cjs",
Expand Down

0 comments on commit cf109b4

Please sign in to comment.