spotted 0.15.0 → 0.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 876d338985770508cd636ab2530a79c1ae2488bc4134c8122308e82ff06ba3d2
4
- data.tar.gz: 8aaefc5fc189b8c1be42be31bb8aed0821ce819fc1f3cd4125df2c30dd95e82d
3
+ metadata.gz: 5150b75519009bd3499d968fa8b07b3d32b4caf07c05bdc93380751678d6e73c
4
+ data.tar.gz: 644a461d62b57c75fdec96ba35927cfd33b2d803c9ea4f3d924806024e5fa1da
5
5
  SHA512:
6
- metadata.gz: e7ab3678bdf2bad35edb85ca81f8973a05bc87097b069038d5bee6392475f5808c29c6e4d7aee62a7b86ef0084c1c0efab7c62960df1d389faa33fe02f304adf
7
- data.tar.gz: b420315dd00f45f166e08aa052359a65b8040e662eb0e18aa4dd6334aae173174e745520c44a35d37a71761104a529303c548e4b2cc08a14de7faf92e31ffb74
6
+ metadata.gz: 3151b8e5ac858b033b62d7e700370e671b29c9d8b172836404fe9b4aa6b00f245bae56da10ad624bccfad11880b205a68ad565d53b178ac4ce762db968a6895e
7
+ data.tar.gz: 2062161a1800cfe68be970ff1ca5b4caef512a75feb5334f6e5ca8e3db28eac97d392582520364dd92be27e563042b87b6a721a55b6304df46bbfa332eae5a06
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.17.0 (2025-11-20)
4
+
5
+ Full Changelog: [v0.16.0...v0.17.0](https://github.com/cjavdev/spotted/compare/v0.16.0...v0.17.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** manual updates ([e260dd2](https://github.com/cjavdev/spotted/commit/e260dd2787657b4fa3cb412fe730d68fad2989ce))
10
+
11
+ ## 0.16.0 (2025-11-20)
12
+
13
+ Full Changelog: [v0.15.0...v0.16.0](https://github.com/cjavdev/spotted/compare/v0.15.0...v0.16.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** manual updates ([6ebdb60](https://github.com/cjavdev/spotted/commit/6ebdb6088ced2f5143877e29a7b464c94c5ba1cb))
18
+ * **api:** rename public to published for java ([f2ce035](https://github.com/cjavdev/spotted/commit/f2ce0357f1546dd741f2f539a2869954722b40d1))
19
+
3
20
  ## 0.15.0 (2025-11-20)
4
21
 
5
22
  Full Changelog: [v0.14.0...v0.15.0](https://github.com/cjavdev/spotted/compare/v0.14.0...v0.15.0)
data/README.md CHANGED
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
17
17
  <!-- x-release-please-start-version -->
18
18
 
19
19
  ```ruby
20
- gem "spotted", "~> 0.15.0"
20
+ gem "spotted", "~> 0.17.0"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -11,16 +11,16 @@ module Spotted
11
11
  # @return [String, nil]
12
12
  optional :id, String
13
13
 
14
- # @!attribute components_schemas_properties_is_public
14
+ # @!attribute components_schemas_properties_published
15
15
  # The playlist's public/private status (if it is added to the user's profile):
16
16
  # `true` the playlist is public, `false` the playlist is private, `null` the
17
17
  # playlist status is not relevant. For more about public/private status, see
18
18
  # [Working with Playlists](/documentation/web-api/concepts/playlists)
19
19
  #
20
20
  # @return [Boolean, nil]
21
- optional :components_schemas_properties_is_public,
21
+ optional :components_schemas_properties_published,
22
22
  Spotted::Internal::Type::Boolean,
23
- api_name: :"$.components.schemas.*.properties.is_public"
23
+ api_name: :"$.components.schemas.*.properties.published"
24
24
 
25
25
  # @!attribute collaborative
26
26
  # `true` if the owner allows other users to modify the playlist.
@@ -101,13 +101,13 @@ module Spotted
101
101
  # @return [String, nil]
102
102
  optional :uri, String
103
103
 
104
- # @!method initialize(id: nil, components_schemas_properties_is_public: nil, collaborative: nil, description: nil, external_urls: nil, followers: nil, href: nil, images: nil, name: nil, owner: nil, snapshot_id: nil, tracks: nil, type: nil, uri: nil)
104
+ # @!method initialize(id: nil, components_schemas_properties_published: nil, collaborative: nil, description: nil, external_urls: nil, followers: nil, href: nil, images: nil, name: nil, owner: nil, snapshot_id: nil, tracks: nil, type: nil, uri: nil)
105
105
  # Some parameter documentations has been truncated, see
106
106
  # {Spotted::Models::PlaylistRetrieveResponse} for more details.
107
107
  #
108
108
  # @param id [String] The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the playl
109
109
  #
110
- # @param components_schemas_properties_is_public [Boolean] The playlist's public/private status (if it is added to the user's profile): `tr
110
+ # @param components_schemas_properties_published [Boolean] The playlist's public/private status (if it is added to the user's profile): `tr
111
111
  #
112
112
  # @param collaborative [Boolean] `true` if the owner allows other users to modify the playlist.
113
113
  #
@@ -10,16 +10,16 @@ module Spotted
10
10
  # @return [String, nil]
11
11
  optional :id, String
12
12
 
13
- # @!attribute components_schemas_properties_is_public
13
+ # @!attribute components_schemas_properties_published
14
14
  # The playlist's public/private status (if it is added to the user's profile):
15
15
  # `true` the playlist is public, `false` the playlist is private, `null` the
16
16
  # playlist status is not relevant. For more about public/private status, see
17
17
  # [Working with Playlists](/documentation/web-api/concepts/playlists)
18
18
  #
19
19
  # @return [Boolean, nil]
20
- optional :components_schemas_properties_is_public,
20
+ optional :components_schemas_properties_published,
21
21
  Spotted::Internal::Type::Boolean,
22
- api_name: :"$.components.schemas.*.properties.is_public"
22
+ api_name: :"$.components.schemas.*.properties.published"
23
23
 
24
24
  # @!attribute collaborative
25
25
  # `true` if the owner allows other users to modify the playlist.
@@ -97,13 +97,13 @@ module Spotted
97
97
  # @return [String, nil]
98
98
  optional :uri, String
99
99
 
100
- # @!method initialize(id: nil, components_schemas_properties_is_public: nil, collaborative: nil, description: nil, external_urls: nil, href: nil, images: nil, name: nil, owner: nil, snapshot_id: nil, tracks: nil, type: nil, uri: nil)
100
+ # @!method initialize(id: nil, components_schemas_properties_published: nil, collaborative: nil, description: nil, external_urls: nil, href: nil, images: nil, name: nil, owner: nil, snapshot_id: nil, tracks: nil, type: nil, uri: nil)
101
101
  # Some parameter documentations has been truncated, see
102
102
  # {Spotted::Models::SimplifiedPlaylistObject} for more details.
103
103
  #
104
104
  # @param id [String] The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the playl
105
105
  #
106
- # @param components_schemas_properties_is_public [Boolean] The playlist's public/private status (if it is added to the user's profile): `tr
106
+ # @param components_schemas_properties_published [Boolean] The playlist's public/private status (if it is added to the user's profile): `tr
107
107
  #
108
108
  # @param collaborative [Boolean] `true` if the owner allows other users to modify the playlist.
109
109
  #
@@ -12,16 +12,16 @@ module Spotted
12
12
  # @return [String, nil]
13
13
  optional :id, String
14
14
 
15
- # @!attribute components_schemas_properties_is_public
15
+ # @!attribute components_schemas_properties_published
16
16
  # The playlist's public/private status (if it is added to the user's profile):
17
17
  # `true` the playlist is public, `false` the playlist is private, `null` the
18
18
  # playlist status is not relevant. For more about public/private status, see
19
19
  # [Working with Playlists](/documentation/web-api/concepts/playlists)
20
20
  #
21
21
  # @return [Boolean, nil]
22
- optional :components_schemas_properties_is_public,
22
+ optional :components_schemas_properties_published,
23
23
  Spotted::Internal::Type::Boolean,
24
- api_name: :"$.components.schemas.*.properties.is_public"
24
+ api_name: :"$.components.schemas.*.properties.published"
25
25
 
26
26
  # @!attribute collaborative
27
27
  # `true` if the owner allows other users to modify the playlist.
@@ -102,13 +102,13 @@ module Spotted
102
102
  # @return [String, nil]
103
103
  optional :uri, String
104
104
 
105
- # @!method initialize(id: nil, components_schemas_properties_is_public: nil, collaborative: nil, description: nil, external_urls: nil, followers: nil, href: nil, images: nil, name: nil, owner: nil, snapshot_id: nil, tracks: nil, type: nil, uri: nil)
105
+ # @!method initialize(id: nil, components_schemas_properties_published: nil, collaborative: nil, description: nil, external_urls: nil, followers: nil, href: nil, images: nil, name: nil, owner: nil, snapshot_id: nil, tracks: nil, type: nil, uri: nil)
106
106
  # Some parameter documentations has been truncated, see
107
107
  # {Spotted::Models::Users::PlaylistCreateResponse} for more details.
108
108
  #
109
109
  # @param id [String] The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the playl
110
110
  #
111
- # @param components_schemas_properties_is_public [Boolean] The playlist's public/private status (if it is added to the user's profile): `tr
111
+ # @param components_schemas_properties_published [Boolean] The playlist's public/private status (if it is added to the user's profile): `tr
112
112
  #
113
113
  # @param collaborative [Boolean] `true` if the owner allows other users to modify the playlist.
114
114
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Spotted
4
- VERSION = "0.15.0"
4
+ VERSION = "0.17.0"
5
5
  end
@@ -24,10 +24,10 @@ module Spotted
24
24
  # playlist status is not relevant. For more about public/private status, see
25
25
  # [Working with Playlists](/documentation/web-api/concepts/playlists)
26
26
  sig { returns(T.nilable(T::Boolean)) }
27
- attr_reader :components_schemas_properties_is_public
27
+ attr_reader :components_schemas_properties_published
28
28
 
29
- sig { params(components_schemas_properties_is_public: T::Boolean).void }
30
- attr_writer :components_schemas_properties_is_public
29
+ sig { params(components_schemas_properties_published: T::Boolean).void }
30
+ attr_writer :components_schemas_properties_published
31
31
 
32
32
  # `true` if the owner allows other users to modify the playlist.
33
33
  sig { returns(T.nilable(T::Boolean)) }
@@ -132,7 +132,7 @@ module Spotted
132
132
  sig do
133
133
  params(
134
134
  id: String,
135
- components_schemas_properties_is_public: T::Boolean,
135
+ components_schemas_properties_published: T::Boolean,
136
136
  collaborative: T::Boolean,
137
137
  description: T.nilable(String),
138
138
  external_urls: Spotted::ExternalURLObject::OrHash,
@@ -155,7 +155,7 @@ module Spotted
155
155
  # `true` the playlist is public, `false` the playlist is private, `null` the
156
156
  # playlist status is not relevant. For more about public/private status, see
157
157
  # [Working with Playlists](/documentation/web-api/concepts/playlists)
158
- components_schemas_properties_is_public: nil,
158
+ components_schemas_properties_published: nil,
159
159
  # `true` if the owner allows other users to modify the playlist.
160
160
  collaborative: nil,
161
161
  # The playlist description. _Only returned for modified, verified playlists,
@@ -194,7 +194,7 @@ module Spotted
194
194
  override.returns(
195
195
  {
196
196
  id: String,
197
- components_schemas_properties_is_public: T::Boolean,
197
+ components_schemas_properties_published: T::Boolean,
198
198
  collaborative: T::Boolean,
199
199
  description: T.nilable(String),
200
200
  external_urls: Spotted::ExternalURLObject,
@@ -21,10 +21,10 @@ module Spotted
21
21
  # playlist status is not relevant. For more about public/private status, see
22
22
  # [Working with Playlists](/documentation/web-api/concepts/playlists)
23
23
  sig { returns(T.nilable(T::Boolean)) }
24
- attr_reader :components_schemas_properties_is_public
24
+ attr_reader :components_schemas_properties_published
25
25
 
26
- sig { params(components_schemas_properties_is_public: T::Boolean).void }
27
- attr_writer :components_schemas_properties_is_public
26
+ sig { params(components_schemas_properties_published: T::Boolean).void }
27
+ attr_writer :components_schemas_properties_published
28
28
 
29
29
  # `true` if the owner allows other users to modify the playlist.
30
30
  sig { returns(T.nilable(T::Boolean)) }
@@ -118,7 +118,7 @@ module Spotted
118
118
  sig do
119
119
  params(
120
120
  id: String,
121
- components_schemas_properties_is_public: T::Boolean,
121
+ components_schemas_properties_published: T::Boolean,
122
122
  collaborative: T::Boolean,
123
123
  description: String,
124
124
  external_urls: Spotted::ExternalURLObject::OrHash,
@@ -140,7 +140,7 @@ module Spotted
140
140
  # `true` the playlist is public, `false` the playlist is private, `null` the
141
141
  # playlist status is not relevant. For more about public/private status, see
142
142
  # [Working with Playlists](/documentation/web-api/concepts/playlists)
143
- components_schemas_properties_is_public: nil,
143
+ components_schemas_properties_published: nil,
144
144
  # `true` if the owner allows other users to modify the playlist.
145
145
  collaborative: nil,
146
146
  # The playlist description. _Only returned for modified, verified playlists,
@@ -180,7 +180,7 @@ module Spotted
180
180
  override.returns(
181
181
  {
182
182
  id: String,
183
- components_schemas_properties_is_public: T::Boolean,
183
+ components_schemas_properties_published: T::Boolean,
184
184
  collaborative: T::Boolean,
185
185
  description: String,
186
186
  external_urls: Spotted::ExternalURLObject,
@@ -25,10 +25,10 @@ module Spotted
25
25
  # playlist status is not relevant. For more about public/private status, see
26
26
  # [Working with Playlists](/documentation/web-api/concepts/playlists)
27
27
  sig { returns(T.nilable(T::Boolean)) }
28
- attr_reader :components_schemas_properties_is_public
28
+ attr_reader :components_schemas_properties_published
29
29
 
30
- sig { params(components_schemas_properties_is_public: T::Boolean).void }
31
- attr_writer :components_schemas_properties_is_public
30
+ sig { params(components_schemas_properties_published: T::Boolean).void }
31
+ attr_writer :components_schemas_properties_published
32
32
 
33
33
  # `true` if the owner allows other users to modify the playlist.
34
34
  sig { returns(T.nilable(T::Boolean)) }
@@ -138,7 +138,7 @@ module Spotted
138
138
  sig do
139
139
  params(
140
140
  id: String,
141
- components_schemas_properties_is_public: T::Boolean,
141
+ components_schemas_properties_published: T::Boolean,
142
142
  collaborative: T::Boolean,
143
143
  description: T.nilable(String),
144
144
  external_urls: Spotted::ExternalURLObject::OrHash,
@@ -163,7 +163,7 @@ module Spotted
163
163
  # `true` the playlist is public, `false` the playlist is private, `null` the
164
164
  # playlist status is not relevant. For more about public/private status, see
165
165
  # [Working with Playlists](/documentation/web-api/concepts/playlists)
166
- components_schemas_properties_is_public: nil,
166
+ components_schemas_properties_published: nil,
167
167
  # `true` if the owner allows other users to modify the playlist.
168
168
  collaborative: nil,
169
169
  # The playlist description. _Only returned for modified, verified playlists,
@@ -202,7 +202,7 @@ module Spotted
202
202
  override.returns(
203
203
  {
204
204
  id: String,
205
- components_schemas_properties_is_public: T::Boolean,
205
+ components_schemas_properties_published: T::Boolean,
206
206
  collaborative: T::Boolean,
207
207
  description: T.nilable(String),
208
208
  external_urls: Spotted::ExternalURLObject,
@@ -3,7 +3,7 @@ module Spotted
3
3
  type playlist_retrieve_response =
4
4
  {
5
5
  id: String,
6
- components_schemas_properties_is_public: bool,
6
+ components_schemas_properties_published: bool,
7
7
  collaborative: bool,
8
8
  description: String?,
9
9
  external_urls: Spotted::ExternalURLObject,
@@ -23,9 +23,9 @@ module Spotted
23
23
 
24
24
  def id=: (String) -> String
25
25
 
26
- attr_reader components_schemas_properties_is_public: bool?
26
+ attr_reader components_schemas_properties_published: bool?
27
27
 
28
- def components_schemas_properties_is_public=: (bool) -> bool
28
+ def components_schemas_properties_published=: (bool) -> bool
29
29
 
30
30
  attr_reader collaborative: bool?
31
31
 
@@ -83,7 +83,7 @@ module Spotted
83
83
 
84
84
  def initialize: (
85
85
  ?id: String,
86
- ?components_schemas_properties_is_public: bool,
86
+ ?components_schemas_properties_published: bool,
87
87
  ?collaborative: bool,
88
88
  ?description: String?,
89
89
  ?external_urls: Spotted::ExternalURLObject,
@@ -100,7 +100,7 @@ module Spotted
100
100
 
101
101
  def to_hash: -> {
102
102
  id: String,
103
- components_schemas_properties_is_public: bool,
103
+ components_schemas_properties_published: bool,
104
104
  collaborative: bool,
105
105
  description: String?,
106
106
  external_urls: Spotted::ExternalURLObject,
@@ -3,7 +3,7 @@ module Spotted
3
3
  type simplified_playlist_object =
4
4
  {
5
5
  id: String,
6
- components_schemas_properties_is_public: bool,
6
+ components_schemas_properties_published: bool,
7
7
  collaborative: bool,
8
8
  description: String,
9
9
  external_urls: Spotted::ExternalURLObject,
@@ -22,9 +22,9 @@ module Spotted
22
22
 
23
23
  def id=: (String) -> String
24
24
 
25
- attr_reader components_schemas_properties_is_public: bool?
25
+ attr_reader components_schemas_properties_published: bool?
26
26
 
27
- def components_schemas_properties_is_public=: (bool) -> bool
27
+ def components_schemas_properties_published=: (bool) -> bool
28
28
 
29
29
  attr_reader collaborative: bool?
30
30
 
@@ -80,7 +80,7 @@ module Spotted
80
80
 
81
81
  def initialize: (
82
82
  ?id: String,
83
- ?components_schemas_properties_is_public: bool,
83
+ ?components_schemas_properties_published: bool,
84
84
  ?collaborative: bool,
85
85
  ?description: String,
86
86
  ?external_urls: Spotted::ExternalURLObject,
@@ -96,7 +96,7 @@ module Spotted
96
96
 
97
97
  def to_hash: -> {
98
98
  id: String,
99
- components_schemas_properties_is_public: bool,
99
+ components_schemas_properties_published: bool,
100
100
  collaborative: bool,
101
101
  description: String,
102
102
  external_urls: Spotted::ExternalURLObject,
@@ -4,7 +4,7 @@ module Spotted
4
4
  type playlist_create_response =
5
5
  {
6
6
  id: String,
7
- components_schemas_properties_is_public: bool,
7
+ components_schemas_properties_published: bool,
8
8
  collaborative: bool,
9
9
  description: String?,
10
10
  external_urls: Spotted::ExternalURLObject,
@@ -24,9 +24,9 @@ module Spotted
24
24
 
25
25
  def id=: (String) -> String
26
26
 
27
- attr_reader components_schemas_properties_is_public: bool?
27
+ attr_reader components_schemas_properties_published: bool?
28
28
 
29
- def components_schemas_properties_is_public=: (bool) -> bool
29
+ def components_schemas_properties_published=: (bool) -> bool
30
30
 
31
31
  attr_reader collaborative: bool?
32
32
 
@@ -84,7 +84,7 @@ module Spotted
84
84
 
85
85
  def initialize: (
86
86
  ?id: String,
87
- ?components_schemas_properties_is_public: bool,
87
+ ?components_schemas_properties_published: bool,
88
88
  ?collaborative: bool,
89
89
  ?description: String?,
90
90
  ?external_urls: Spotted::ExternalURLObject,
@@ -101,7 +101,7 @@ module Spotted
101
101
 
102
102
  def to_hash: -> {
103
103
  id: String,
104
- components_schemas_properties_is_public: bool,
104
+ components_schemas_properties_published: bool,
105
105
  collaborative: bool,
106
106
  description: String?,
107
107
  external_urls: Spotted::ExternalURLObject,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spotted
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Spotted