From abe8675d6f762a6898f297553d0043f9994bf012 Mon Sep 17 00:00:00 2001 From: "devopsarr[bot]" <127950054+devopsarr[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 06:22:03 +0000 Subject: [PATCH] chore(deps): update openapitools/openapi-generator-cli docker tag to v7.4.0 --- README.md | 1 + prowlarr/model_api_info_resource.go | 2 +- prowlarr/model_application_bulk_resource.go | 4 ++-- prowlarr/model_application_resource.go | 6 +++--- prowlarr/model_custom_filter_resource.go | 2 +- prowlarr/model_download_client_bulk_resource.go | 4 ++-- prowlarr/model_download_client_category.go | 2 +- prowlarr/model_download_client_resource.go | 8 ++++---- prowlarr/model_field.go | 4 ++-- prowlarr/model_history_resource.go | 2 +- prowlarr/model_history_resource_paging_resource.go | 2 +- prowlarr/model_indexer_bulk_resource.go | 4 ++-- prowlarr/model_indexer_capability_resource.go | 12 ++++++------ prowlarr/model_indexer_category.go | 2 +- prowlarr/model_indexer_proxy_resource.go | 6 +++--- prowlarr/model_indexer_resource.go | 10 +++++----- prowlarr/model_indexer_stats_resource.go | 6 +++--- prowlarr/model_log_resource_paging_resource.go | 2 +- prowlarr/model_notification_resource.go | 6 +++--- prowlarr/model_release_resource.go | 4 ++-- prowlarr/model_tag_details_resource.go | 8 ++++---- prowlarr/model_update_changes.go | 4 ++-- 22 files changed, 51 insertions(+), 50 deletions(-) diff --git a/README.md b/README.md index 89a88a6..4e10bd6 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat - API version: v1.13.3.4273 - Package version: 1.0.0 +- Generator version: 7.4.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen ## Installation diff --git a/prowlarr/model_api_info_resource.go b/prowlarr/model_api_info_resource.go index c47c6e7..fdfb79d 100644 --- a/prowlarr/model_api_info_resource.go +++ b/prowlarr/model_api_info_resource.go @@ -103,7 +103,7 @@ func (o *ApiInfoResource) GetDeprecatedOk() ([]string, bool) { // HasDeprecated returns a boolean if a field has been set. func (o *ApiInfoResource) HasDeprecated() bool { - if o != nil && IsNil(o.Deprecated) { + if o != nil && !IsNil(o.Deprecated) { return true } diff --git a/prowlarr/model_application_bulk_resource.go b/prowlarr/model_application_bulk_resource.go index 1730d09..2cf366e 100644 --- a/prowlarr/model_application_bulk_resource.go +++ b/prowlarr/model_application_bulk_resource.go @@ -63,7 +63,7 @@ func (o *ApplicationBulkResource) GetIdsOk() ([]int32, bool) { // HasIds returns a boolean if a field has been set. func (o *ApplicationBulkResource) HasIds() bool { - if o != nil && IsNil(o.Ids) { + if o != nil && !IsNil(o.Ids) { return true } @@ -96,7 +96,7 @@ func (o *ApplicationBulkResource) GetTagsOk() ([]int32, bool) { // HasTags returns a boolean if a field has been set. func (o *ApplicationBulkResource) HasTags() bool { - if o != nil && IsNil(o.Tags) { + if o != nil && !IsNil(o.Tags) { return true } diff --git a/prowlarr/model_application_resource.go b/prowlarr/model_application_resource.go index 1d144f4..b29cddb 100644 --- a/prowlarr/model_application_resource.go +++ b/prowlarr/model_application_resource.go @@ -145,7 +145,7 @@ func (o *ApplicationResource) GetFieldsOk() ([]Field, bool) { // HasFields returns a boolean if a field has been set. func (o *ApplicationResource) HasFields() bool { - if o != nil && IsNil(o.Fields) { + if o != nil && !IsNil(o.Fields) { return true } @@ -378,7 +378,7 @@ func (o *ApplicationResource) GetTagsOk() ([]int32, bool) { // HasTags returns a boolean if a field has been set. func (o *ApplicationResource) HasTags() bool { - if o != nil && IsNil(o.Tags) { + if o != nil && !IsNil(o.Tags) { return true } @@ -411,7 +411,7 @@ func (o *ApplicationResource) GetPresetsOk() ([]ApplicationResource, bool) { // HasPresets returns a boolean if a field has been set. func (o *ApplicationResource) HasPresets() bool { - if o != nil && IsNil(o.Presets) { + if o != nil && !IsNil(o.Presets) { return true } diff --git a/prowlarr/model_custom_filter_resource.go b/prowlarr/model_custom_filter_resource.go index 394117b..0cc42f0 100644 --- a/prowlarr/model_custom_filter_resource.go +++ b/prowlarr/model_custom_filter_resource.go @@ -179,7 +179,7 @@ func (o *CustomFilterResource) GetFiltersOk() ([]map[string]interface{}, bool) { // HasFilters returns a boolean if a field has been set. func (o *CustomFilterResource) HasFilters() bool { - if o != nil && IsNil(o.Filters) { + if o != nil && !IsNil(o.Filters) { return true } diff --git a/prowlarr/model_download_client_bulk_resource.go b/prowlarr/model_download_client_bulk_resource.go index 396bfd0..64f1a33 100644 --- a/prowlarr/model_download_client_bulk_resource.go +++ b/prowlarr/model_download_client_bulk_resource.go @@ -64,7 +64,7 @@ func (o *DownloadClientBulkResource) GetIdsOk() ([]int32, bool) { // HasIds returns a boolean if a field has been set. func (o *DownloadClientBulkResource) HasIds() bool { - if o != nil && IsNil(o.Ids) { + if o != nil && !IsNil(o.Ids) { return true } @@ -97,7 +97,7 @@ func (o *DownloadClientBulkResource) GetTagsOk() ([]int32, bool) { // HasTags returns a boolean if a field has been set. func (o *DownloadClientBulkResource) HasTags() bool { - if o != nil && IsNil(o.Tags) { + if o != nil && !IsNil(o.Tags) { return true } diff --git a/prowlarr/model_download_client_category.go b/prowlarr/model_download_client_category.go index 35326d6..e9dda9a 100644 --- a/prowlarr/model_download_client_category.go +++ b/prowlarr/model_download_client_category.go @@ -103,7 +103,7 @@ func (o *DownloadClientCategory) GetCategoriesOk() ([]int32, bool) { // HasCategories returns a boolean if a field has been set. func (o *DownloadClientCategory) HasCategories() bool { - if o != nil && IsNil(o.Categories) { + if o != nil && !IsNil(o.Categories) { return true } diff --git a/prowlarr/model_download_client_resource.go b/prowlarr/model_download_client_resource.go index 7316271..7e9e901 100644 --- a/prowlarr/model_download_client_resource.go +++ b/prowlarr/model_download_client_resource.go @@ -148,7 +148,7 @@ func (o *DownloadClientResource) GetFieldsOk() ([]Field, bool) { // HasFields returns a boolean if a field has been set. func (o *DownloadClientResource) HasFields() bool { - if o != nil && IsNil(o.Fields) { + if o != nil && !IsNil(o.Fields) { return true } @@ -381,7 +381,7 @@ func (o *DownloadClientResource) GetTagsOk() ([]int32, bool) { // HasTags returns a boolean if a field has been set. func (o *DownloadClientResource) HasTags() bool { - if o != nil && IsNil(o.Tags) { + if o != nil && !IsNil(o.Tags) { return true } @@ -414,7 +414,7 @@ func (o *DownloadClientResource) GetPresetsOk() ([]DownloadClientResource, bool) // HasPresets returns a boolean if a field has been set. func (o *DownloadClientResource) HasPresets() bool { - if o != nil && IsNil(o.Presets) { + if o != nil && !IsNil(o.Presets) { return true } @@ -543,7 +543,7 @@ func (o *DownloadClientResource) GetCategoriesOk() ([]DownloadClientCategory, bo // HasCategories returns a boolean if a field has been set. func (o *DownloadClientResource) HasCategories() bool { - if o != nil && IsNil(o.Categories) { + if o != nil && !IsNil(o.Categories) { return true } diff --git a/prowlarr/model_field.go b/prowlarr/model_field.go index a4e4abd..b5bd321 100644 --- a/prowlarr/model_field.go +++ b/prowlarr/model_field.go @@ -360,7 +360,7 @@ func (o *Field) GetValueOk() (*interface{}, bool) { // HasValue returns a boolean if a field has been set. func (o *Field) HasValue() bool { - if o != nil && IsNil(o.Value) { + if o != nil && !IsNil(o.Value) { return true } @@ -467,7 +467,7 @@ func (o *Field) GetSelectOptionsOk() ([]SelectOption, bool) { // HasSelectOptions returns a boolean if a field has been set. func (o *Field) HasSelectOptions() bool { - if o != nil && IsNil(o.SelectOptions) { + if o != nil && !IsNil(o.SelectOptions) { return true } diff --git a/prowlarr/model_history_resource.go b/prowlarr/model_history_resource.go index 1020471..7aafc9f 100644 --- a/prowlarr/model_history_resource.go +++ b/prowlarr/model_history_resource.go @@ -269,7 +269,7 @@ func (o *HistoryResource) GetDataOk() (*map[string]string, bool) { // HasData returns a boolean if a field has been set. func (o *HistoryResource) HasData() bool { - if o != nil && IsNil(o.Data) { + if o != nil && !IsNil(o.Data) { return true } diff --git a/prowlarr/model_history_resource_paging_resource.go b/prowlarr/model_history_resource_paging_resource.go index 585e89b..2e12fd8 100644 --- a/prowlarr/model_history_resource_paging_resource.go +++ b/prowlarr/model_history_resource_paging_resource.go @@ -235,7 +235,7 @@ func (o *HistoryResourcePagingResource) GetRecordsOk() ([]HistoryResource, bool) // HasRecords returns a boolean if a field has been set. func (o *HistoryResourcePagingResource) HasRecords() bool { - if o != nil && IsNil(o.Records) { + if o != nil && !IsNil(o.Records) { return true } diff --git a/prowlarr/model_indexer_bulk_resource.go b/prowlarr/model_indexer_bulk_resource.go index c61ac3f..e0f5222 100644 --- a/prowlarr/model_indexer_bulk_resource.go +++ b/prowlarr/model_indexer_bulk_resource.go @@ -69,7 +69,7 @@ func (o *IndexerBulkResource) GetIdsOk() ([]int32, bool) { // HasIds returns a boolean if a field has been set. func (o *IndexerBulkResource) HasIds() bool { - if o != nil && IsNil(o.Ids) { + if o != nil && !IsNil(o.Ids) { return true } @@ -102,7 +102,7 @@ func (o *IndexerBulkResource) GetTagsOk() ([]int32, bool) { // HasTags returns a boolean if a field has been set. func (o *IndexerBulkResource) HasTags() bool { - if o != nil && IsNil(o.Tags) { + if o != nil && !IsNil(o.Tags) { return true } diff --git a/prowlarr/model_indexer_capability_resource.go b/prowlarr/model_indexer_capability_resource.go index 78cd78d..cbb9138 100644 --- a/prowlarr/model_indexer_capability_resource.go +++ b/prowlarr/model_indexer_capability_resource.go @@ -185,7 +185,7 @@ func (o *IndexerCapabilityResource) GetCategoriesOk() ([]IndexerCategory, bool) // HasCategories returns a boolean if a field has been set. func (o *IndexerCapabilityResource) HasCategories() bool { - if o != nil && IsNil(o.Categories) { + if o != nil && !IsNil(o.Categories) { return true } @@ -250,7 +250,7 @@ func (o *IndexerCapabilityResource) GetSearchParamsOk() ([]SearchParam, bool) { // HasSearchParams returns a boolean if a field has been set. func (o *IndexerCapabilityResource) HasSearchParams() bool { - if o != nil && IsNil(o.SearchParams) { + if o != nil && !IsNil(o.SearchParams) { return true } @@ -283,7 +283,7 @@ func (o *IndexerCapabilityResource) GetTvSearchParamsOk() ([]TvSearchParam, bool // HasTvSearchParams returns a boolean if a field has been set. func (o *IndexerCapabilityResource) HasTvSearchParams() bool { - if o != nil && IsNil(o.TvSearchParams) { + if o != nil && !IsNil(o.TvSearchParams) { return true } @@ -316,7 +316,7 @@ func (o *IndexerCapabilityResource) GetMovieSearchParamsOk() ([]MovieSearchParam // HasMovieSearchParams returns a boolean if a field has been set. func (o *IndexerCapabilityResource) HasMovieSearchParams() bool { - if o != nil && IsNil(o.MovieSearchParams) { + if o != nil && !IsNil(o.MovieSearchParams) { return true } @@ -349,7 +349,7 @@ func (o *IndexerCapabilityResource) GetMusicSearchParamsOk() ([]MusicSearchParam // HasMusicSearchParams returns a boolean if a field has been set. func (o *IndexerCapabilityResource) HasMusicSearchParams() bool { - if o != nil && IsNil(o.MusicSearchParams) { + if o != nil && !IsNil(o.MusicSearchParams) { return true } @@ -382,7 +382,7 @@ func (o *IndexerCapabilityResource) GetBookSearchParamsOk() ([]BookSearchParam, // HasBookSearchParams returns a boolean if a field has been set. func (o *IndexerCapabilityResource) HasBookSearchParams() bool { - if o != nil && IsNil(o.BookSearchParams) { + if o != nil && !IsNil(o.BookSearchParams) { return true } diff --git a/prowlarr/model_indexer_category.go b/prowlarr/model_indexer_category.go index c1280e0..dffa387 100644 --- a/prowlarr/model_indexer_category.go +++ b/prowlarr/model_indexer_category.go @@ -179,7 +179,7 @@ func (o *IndexerCategory) GetSubCategoriesOk() ([]IndexerCategory, bool) { // HasSubCategories returns a boolean if a field has been set. func (o *IndexerCategory) HasSubCategories() bool { - if o != nil && IsNil(o.SubCategories) { + if o != nil && !IsNil(o.SubCategories) { return true } diff --git a/prowlarr/model_indexer_proxy_resource.go b/prowlarr/model_indexer_proxy_resource.go index 80dc1ab..edfee3a 100644 --- a/prowlarr/model_indexer_proxy_resource.go +++ b/prowlarr/model_indexer_proxy_resource.go @@ -148,7 +148,7 @@ func (o *IndexerProxyResource) GetFieldsOk() ([]Field, bool) { // HasFields returns a boolean if a field has been set. func (o *IndexerProxyResource) HasFields() bool { - if o != nil && IsNil(o.Fields) { + if o != nil && !IsNil(o.Fields) { return true } @@ -381,7 +381,7 @@ func (o *IndexerProxyResource) GetTagsOk() ([]int32, bool) { // HasTags returns a boolean if a field has been set. func (o *IndexerProxyResource) HasTags() bool { - if o != nil && IsNil(o.Tags) { + if o != nil && !IsNil(o.Tags) { return true } @@ -414,7 +414,7 @@ func (o *IndexerProxyResource) GetPresetsOk() ([]IndexerProxyResource, bool) { // HasPresets returns a boolean if a field has been set. func (o *IndexerProxyResource) HasPresets() bool { - if o != nil && IsNil(o.Presets) { + if o != nil && !IsNil(o.Presets) { return true } diff --git a/prowlarr/model_indexer_resource.go b/prowlarr/model_indexer_resource.go index 64f7583..886a0db 100644 --- a/prowlarr/model_indexer_resource.go +++ b/prowlarr/model_indexer_resource.go @@ -165,7 +165,7 @@ func (o *IndexerResource) GetFieldsOk() ([]Field, bool) { // HasFields returns a boolean if a field has been set. func (o *IndexerResource) HasFields() bool { - if o != nil && IsNil(o.Fields) { + if o != nil && !IsNil(o.Fields) { return true } @@ -398,7 +398,7 @@ func (o *IndexerResource) GetTagsOk() ([]int32, bool) { // HasTags returns a boolean if a field has been set. func (o *IndexerResource) HasTags() bool { - if o != nil && IsNil(o.Tags) { + if o != nil && !IsNil(o.Tags) { return true } @@ -431,7 +431,7 @@ func (o *IndexerResource) GetPresetsOk() ([]IndexerResource, bool) { // HasPresets returns a boolean if a field has been set. func (o *IndexerResource) HasPresets() bool { - if o != nil && IsNil(o.Presets) { + if o != nil && !IsNil(o.Presets) { return true } @@ -464,7 +464,7 @@ func (o *IndexerResource) GetIndexerUrlsOk() ([]string, bool) { // HasIndexerUrls returns a boolean if a field has been set. func (o *IndexerResource) HasIndexerUrls() bool { - if o != nil && IsNil(o.IndexerUrls) { + if o != nil && !IsNil(o.IndexerUrls) { return true } @@ -497,7 +497,7 @@ func (o *IndexerResource) GetLegacyUrlsOk() ([]string, bool) { // HasLegacyUrls returns a boolean if a field has been set. func (o *IndexerResource) HasLegacyUrls() bool { - if o != nil && IsNil(o.LegacyUrls) { + if o != nil && !IsNil(o.LegacyUrls) { return true } diff --git a/prowlarr/model_indexer_stats_resource.go b/prowlarr/model_indexer_stats_resource.go index 4113dbe..65a0e94 100644 --- a/prowlarr/model_indexer_stats_resource.go +++ b/prowlarr/model_indexer_stats_resource.go @@ -95,7 +95,7 @@ func (o *IndexerStatsResource) GetIndexersOk() ([]IndexerStatistics, bool) { // HasIndexers returns a boolean if a field has been set. func (o *IndexerStatsResource) HasIndexers() bool { - if o != nil && IsNil(o.Indexers) { + if o != nil && !IsNil(o.Indexers) { return true } @@ -128,7 +128,7 @@ func (o *IndexerStatsResource) GetUserAgentsOk() ([]UserAgentStatistics, bool) { // HasUserAgents returns a boolean if a field has been set. func (o *IndexerStatsResource) HasUserAgents() bool { - if o != nil && IsNil(o.UserAgents) { + if o != nil && !IsNil(o.UserAgents) { return true } @@ -161,7 +161,7 @@ func (o *IndexerStatsResource) GetHostsOk() ([]HostStatistics, bool) { // HasHosts returns a boolean if a field has been set. func (o *IndexerStatsResource) HasHosts() bool { - if o != nil && IsNil(o.Hosts) { + if o != nil && !IsNil(o.Hosts) { return true } diff --git a/prowlarr/model_log_resource_paging_resource.go b/prowlarr/model_log_resource_paging_resource.go index 88004bf..fd308a2 100644 --- a/prowlarr/model_log_resource_paging_resource.go +++ b/prowlarr/model_log_resource_paging_resource.go @@ -235,7 +235,7 @@ func (o *LogResourcePagingResource) GetRecordsOk() ([]LogResource, bool) { // HasRecords returns a boolean if a field has been set. func (o *LogResourcePagingResource) HasRecords() bool { - if o != nil && IsNil(o.Records) { + if o != nil && !IsNil(o.Records) { return true } diff --git a/prowlarr/model_notification_resource.go b/prowlarr/model_notification_resource.go index 7b357a9..8f89a46 100644 --- a/prowlarr/model_notification_resource.go +++ b/prowlarr/model_notification_resource.go @@ -155,7 +155,7 @@ func (o *NotificationResource) GetFieldsOk() ([]Field, bool) { // HasFields returns a boolean if a field has been set. func (o *NotificationResource) HasFields() bool { - if o != nil && IsNil(o.Fields) { + if o != nil && !IsNil(o.Fields) { return true } @@ -388,7 +388,7 @@ func (o *NotificationResource) GetTagsOk() ([]int32, bool) { // HasTags returns a boolean if a field has been set. func (o *NotificationResource) HasTags() bool { - if o != nil && IsNil(o.Tags) { + if o != nil && !IsNil(o.Tags) { return true } @@ -421,7 +421,7 @@ func (o *NotificationResource) GetPresetsOk() ([]NotificationResource, bool) { // HasPresets returns a boolean if a field has been set. func (o *NotificationResource) HasPresets() bool { - if o != nil && IsNil(o.Presets) { + if o != nil && !IsNil(o.Presets) { return true } diff --git a/prowlarr/model_release_resource.go b/prowlarr/model_release_resource.go index 9d212cc..4532090 100644 --- a/prowlarr/model_release_resource.go +++ b/prowlarr/model_release_resource.go @@ -947,7 +947,7 @@ func (o *ReleaseResource) GetIndexerFlagsOk() ([]string, bool) { // HasIndexerFlags returns a boolean if a field has been set. func (o *ReleaseResource) HasIndexerFlags() bool { - if o != nil && IsNil(o.IndexerFlags) { + if o != nil && !IsNil(o.IndexerFlags) { return true } @@ -980,7 +980,7 @@ func (o *ReleaseResource) GetCategoriesOk() ([]IndexerCategory, bool) { // HasCategories returns a boolean if a field has been set. func (o *ReleaseResource) HasCategories() bool { - if o != nil && IsNil(o.Categories) { + if o != nil && !IsNil(o.Categories) { return true } diff --git a/prowlarr/model_tag_details_resource.go b/prowlarr/model_tag_details_resource.go index 1d4327c..14d70bc 100644 --- a/prowlarr/model_tag_details_resource.go +++ b/prowlarr/model_tag_details_resource.go @@ -139,7 +139,7 @@ func (o *TagDetailsResource) GetNotificationIdsOk() ([]int32, bool) { // HasNotificationIds returns a boolean if a field has been set. func (o *TagDetailsResource) HasNotificationIds() bool { - if o != nil && IsNil(o.NotificationIds) { + if o != nil && !IsNil(o.NotificationIds) { return true } @@ -172,7 +172,7 @@ func (o *TagDetailsResource) GetIndexerIdsOk() ([]int32, bool) { // HasIndexerIds returns a boolean if a field has been set. func (o *TagDetailsResource) HasIndexerIds() bool { - if o != nil && IsNil(o.IndexerIds) { + if o != nil && !IsNil(o.IndexerIds) { return true } @@ -205,7 +205,7 @@ func (o *TagDetailsResource) GetIndexerProxyIdsOk() ([]int32, bool) { // HasIndexerProxyIds returns a boolean if a field has been set. func (o *TagDetailsResource) HasIndexerProxyIds() bool { - if o != nil && IsNil(o.IndexerProxyIds) { + if o != nil && !IsNil(o.IndexerProxyIds) { return true } @@ -238,7 +238,7 @@ func (o *TagDetailsResource) GetApplicationIdsOk() ([]int32, bool) { // HasApplicationIds returns a boolean if a field has been set. func (o *TagDetailsResource) HasApplicationIds() bool { - if o != nil && IsNil(o.ApplicationIds) { + if o != nil && !IsNil(o.ApplicationIds) { return true } diff --git a/prowlarr/model_update_changes.go b/prowlarr/model_update_changes.go index 2af13ed..070ef0e 100644 --- a/prowlarr/model_update_changes.go +++ b/prowlarr/model_update_changes.go @@ -61,7 +61,7 @@ func (o *UpdateChanges) GetNewOk() ([]string, bool) { // HasNew returns a boolean if a field has been set. func (o *UpdateChanges) HasNew() bool { - if o != nil && IsNil(o.New) { + if o != nil && !IsNil(o.New) { return true } @@ -94,7 +94,7 @@ func (o *UpdateChanges) GetFixedOk() ([]string, bool) { // HasFixed returns a boolean if a field has been set. func (o *UpdateChanges) HasFixed() bool { - if o != nil && IsNil(o.Fixed) { + if o != nil && !IsNil(o.Fixed) { return true }