File tree Expand file tree Collapse file tree 4 files changed +10
-11
lines changed
Expand file tree Collapse file tree 4 files changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -96,8 +96,8 @@ inspectarr sonarr 'releaseGroup == AMZN || releaseGroup == NF'
9696# display media where the title contains 'star wars' (case-insensitive)
9797inspectarr 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')
103103inspectarr radarr ' monitored && videoCodec *= 265'
Original file line number Diff line number Diff line change 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" : {
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"
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments