Possible values for with_release_type are: [1, 2, 3, 4, 5, 6]. These values can be separated by a comma (AND) or a pipe (OR) and can be used in conjunction with the region parameter.
Summary:
Updated the with_release_type parameter to accept values as a string instead of a number.
Changes Made:
Modified src/request-types.ts on line 521 to change the type of with_release_type from number to string.
Added a corresponding test in tests/moviedb.spec.js. This test can be removed if deemed unnecessary.
Possible values for
with_release_type
are: [1, 2, 3, 4, 5, 6]. These values can be separated by a comma (AND) or a pipe (OR) and can be used in conjunction with theregion
parameter.Summary:
with_release_type
parameter to accept values as a string instead of a number.Changes Made:
src/request-types.ts
on line 521 to change the type ofwith_release_type
from number to string.tests/moviedb.spec.js
. This test can be removed if deemed unnecessary.