Skip to content

Commit b24831d

Browse files
committed
update filterql
1 parent 3ad4812 commit b24831d

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ inspectarr sonarr 'releaseGroup == AMZN || releaseGroup == NF'
9696
# display media where the title contains 'star wars' (case-insensitive)
9797
inspectarr sonarr 'title i*= "star wars"'
9898

99-
# display media released after 1990 (media year is contained in the title column), then sort by title
100-
inspectarr radarr 'title *= 1990 | SORT title'
99+
# display media released after 1990, then sort by title
100+
inspectarr radarr 'title *= "(1990)" | SORT title'
101101

102102
# display media where monitored is true and where the video codec is x265 (contains '265')
103103
inspectarr radarr 'monitored && videoCodec *= 265'

bun.lock

Lines changed: 2 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "inspectarr",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"type": "module",
55
"description": "A CLI tool for querying and inspecting the media in your Radarr and Sonarr instances",
66
"repository": {
@@ -26,7 +26,7 @@
2626
},
2727
"dependencies": {
2828
"cleye": "^1.3.4",
29-
"filterql": "^2.0.1",
29+
"filterql": "^2.0.2",
3030
"ky": "^1.9.0",
3131
"tablemark": "github:haltcase/tablemark#v4",
3232
"ts-explicit-errors": "^3.0.0"

src/generated/sonarr-schema.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8623,9 +8623,9 @@ export interface components {
86238623
specialAbsoluteEpisodeNumbers?: number[] | null
86248624
airDate?: string | null
86258625
languages?: components["schemas"]["Language"][] | null
8626-
fullseason: boolean
8627-
isPartialseason: boolean
8628-
isMultiseason: boolean
8626+
fullSeason?: boolean
8627+
isPartialSeason?: boolean
8628+
isMultiSeason?: boolean
86298629
isSeasonExtra?: boolean
86308630
isSplitEpisode?: boolean
86318631
isMiniSeries?: boolean
@@ -8863,7 +8863,7 @@ export interface components {
88638863
subGroup?: string | null
88648864
releaseHash?: string | null
88658865
title?: string | null
8866-
fullseason: boolean
8866+
fullSeason?: boolean
88678867
sceneSource?: boolean
88688868
/** Format: int32 */
88698869
seasonNumber?: number

0 commit comments

Comments
 (0)