Skip to content

Commit

Permalink
Merge pull request #25 from JorrinKievit/changeset-release/master
Browse files Browse the repository at this point in the history
chore: release packages
  • Loading branch information
JorrinKievit authored Dec 22, 2023
2 parents 6bcdae2 + 3feb951 commit d9b81e5
Show file tree
Hide file tree
Showing 5 changed files with 152 additions and 146 deletions.
6 changes: 0 additions & 6 deletions .changeset/breezy-avocados-pay.md

This file was deleted.

144 changes: 75 additions & 69 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,69 +1,75 @@
# tmdb-js-node

## 1.1.7

### Patch Changes

- 9d113b5: In movie and tv endpoint get-credits result types has an added a "crew" field that contains an array of the corresponding crew type was added, and an "id" field

In people endpoint get-combined-credits, get-movie-credits, get-tv-credits "crew" and "id" fields were added to result type. "crew" is a new crew data type

In tv endpoint added a new "crew" field on the aggregrated-credit response type

Added new base person type and used it to build cast/crew types for movie/get-credits & tv/get-credits
added new base cast/crew credits specifically for people endpoints.
Used these to build types for people/get-combined-credits people/get-movie-credits people/get-tv-credits

New "crew" field in aggretated-credit tv endppoint uses builds off a base type used by the new tv and movie endpoint credit reponse type but adds some new fields needed for that endpoint. The result type for aggregrated-credit also now builds off 5those types

Thanks @newmoneybigbucks for the contribution!

## 1.1.6

### Patch Changes

- 45b7a5e: Updated v3 search endpoints

## 1.1.5

### Patch Changes

- 185523b: - #13: Updated types for TV Seasons endpoint
- #16: Replaced all Date types with string

## 1.1.4

### Patch Changes

- 9e82c6f: Updated TV Episodes get details endpoint

## 1.1.3

### Patch Changes

- aea9e9d: #9 Added typings to belongs_to_collection
#10 Added language param to the trending endpoint

## 1.1.2

### Patch Changes

- ce01160: #6 Added type-safety to all getDetails endpoints

## 1.1.0

### Minor Changes

- 530d708: Typesafe append_to_response

## 1.0.3

### Patch Changes

- Fixed #1 V2

## 1.0.2

### Patch Changes

- Fixed issue #1
# tmdb-js-node

## 1.1.8

### Patch Changes

- 1d10583: Fix wrong return type when supplying an append_to_response array for some functions, thanks @newmoneybigbucks!

## 1.1.7

### Patch Changes

- 9d113b5: In movie and tv endpoint get-credits result types has an added a "crew" field that contains an array of the corresponding crew type was added, and an "id" field

In people endpoint get-combined-credits, get-movie-credits, get-tv-credits "crew" and "id" fields were added to result type. "crew" is a new crew data type

In tv endpoint added a new "crew" field on the aggregrated-credit response type

Added new base person type and used it to build cast/crew types for movie/get-credits & tv/get-credits
added new base cast/crew credits specifically for people endpoints.
Used these to build types for people/get-combined-credits people/get-movie-credits people/get-tv-credits

New "crew" field in aggretated-credit tv endppoint uses builds off a base type used by the new tv and movie endpoint credit reponse type but adds some new fields needed for that endpoint. The result type for aggregrated-credit also now builds off 5those types

Thanks @newmoneybigbucks for the contribution!

## 1.1.6

### Patch Changes

- 45b7a5e: Updated v3 search endpoints

## 1.1.5

### Patch Changes

- 185523b: - #13: Updated types for TV Seasons endpoint
- #16: Replaced all Date types with string

## 1.1.4

### Patch Changes

- 9e82c6f: Updated TV Episodes get details endpoint

## 1.1.3

### Patch Changes

- aea9e9d: #9 Added typings to belongs_to_collection
#10 Added language param to the trending endpoint

## 1.1.2

### Patch Changes

- ce01160: #6 Added type-safety to all getDetails endpoints

## 1.1.0

### Minor Changes

- 530d708: Typesafe append_to_response

## 1.0.3

### Patch Changes

- Fixed #1 V2

## 1.0.2

### Patch Changes

- Fixed issue #1
2 changes: 1 addition & 1 deletion packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tmdb-js-node",
"version": "1.1.7",
"version": "1.1.8",
"description": "tmdb-js-node is a fully-typed TypeScript wrapper for the TMDB API. It is designed for use in Node.js applications and supports both v3 and v4 of the TMDB API",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
144 changes: 75 additions & 69 deletions packages/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,69 +1,75 @@
# tmdb-js-web

## 1.1.7

### Patch Changes

- 9d113b5: In movie and tv endpoint get-credits result types has an added a "crew" field that contains an array of the corresponding crew type was added, and an "id" field

In people endpoint get-combined-credits, get-movie-credits, get-tv-credits "crew" and "id" fields were added to result type. "crew" is a new crew data type

In tv endpoint added a new "crew" field on the aggregrated-credit response type

Added new base person type and used it to build cast/crew types for movie/get-credits & tv/get-credits
added new base cast/crew credits specifically for people endpoints.
Used these to build types for people/get-combined-credits people/get-movie-credits people/get-tv-credits

New "crew" field in aggretated-credit tv endppoint uses builds off a base type used by the new tv and movie endpoint credit reponse type but adds some new fields needed for that endpoint. The result type for aggregrated-credit also now builds off 5those types

Thanks @newmoneybigbucks for the contribution!

## 1.1.6

### Patch Changes

- 45b7a5e: Updated v3 search endpoints

## 1.1.5

### Patch Changes

- 185523b: - #13: Updated types for TV Seasons endpoint
- #16: Replaced all Date types with string

## 1.1.4

### Patch Changes

- 9e82c6f: Updated TV Episodes get details endpoint

## 1.1.3

### Patch Changes

- aea9e9d: #9 Added typings to belongs_to_collection
#10 Added language param to the trending endpoint

## 1.1.2

### Patch Changes

- ce01160: #6 Added type-safety to all getDetails endpoints

## 1.1.0

### Minor Changes

- 530d708: Typesafe append_to_response

## 1.0.3

### Patch Changes

- Fixed #1 V2

## 1.0.2

### Patch Changes

- Fixed issue #1
# tmdb-js-web

## 1.1.8

### Patch Changes

- 1d10583: Fix wrong return type when supplying an append_to_response array for some functions, thanks @newmoneybigbucks!

## 1.1.7

### Patch Changes

- 9d113b5: In movie and tv endpoint get-credits result types has an added a "crew" field that contains an array of the corresponding crew type was added, and an "id" field

In people endpoint get-combined-credits, get-movie-credits, get-tv-credits "crew" and "id" fields were added to result type. "crew" is a new crew data type

In tv endpoint added a new "crew" field on the aggregrated-credit response type

Added new base person type and used it to build cast/crew types for movie/get-credits & tv/get-credits
added new base cast/crew credits specifically for people endpoints.
Used these to build types for people/get-combined-credits people/get-movie-credits people/get-tv-credits

New "crew" field in aggretated-credit tv endppoint uses builds off a base type used by the new tv and movie endpoint credit reponse type but adds some new fields needed for that endpoint. The result type for aggregrated-credit also now builds off 5those types

Thanks @newmoneybigbucks for the contribution!

## 1.1.6

### Patch Changes

- 45b7a5e: Updated v3 search endpoints

## 1.1.5

### Patch Changes

- 185523b: - #13: Updated types for TV Seasons endpoint
- #16: Replaced all Date types with string

## 1.1.4

### Patch Changes

- 9e82c6f: Updated TV Episodes get details endpoint

## 1.1.3

### Patch Changes

- aea9e9d: #9 Added typings to belongs_to_collection
#10 Added language param to the trending endpoint

## 1.1.2

### Patch Changes

- ce01160: #6 Added type-safety to all getDetails endpoints

## 1.1.0

### Minor Changes

- 530d708: Typesafe append_to_response

## 1.0.3

### Patch Changes

- Fixed #1 V2

## 1.0.2

### Patch Changes

- Fixed issue #1
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tmdb-js-web",
"version": "1.1.7",
"version": "1.1.8",
"description": "tmdb-js-web is a fully-typed TypeScript wrapper for the TMDB API. It is designed for use in browser-based JavaScript applications and supports both v3 and v4 of the TMDB API.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down

0 comments on commit d9b81e5

Please sign in to comment.