spotted 0.20.0 → 0.22.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: 4feed8d3b7407c00f5f2ec26173de4c36fc0f8e5d7f0dc14806177689a334fd8
4
- data.tar.gz: 3d64b643764be1e8a2c693ca2bf12ba174123d57c292e48f5dac4db3371f2c5d
3
+ metadata.gz: a74bc4423cc2feb267c631b9a6d957af7db6a48624f5ae4e901edeea913ba83f
4
+ data.tar.gz: bb57f3add641db868d8f960100f4dd53b486c399ea0bd05f1909c741f37442e7
5
5
  SHA512:
6
- metadata.gz: 22b857d391335b9eaaca63046bc65ce084b2770546f93aaffd88acae17569f4d0c2675022753d95ce4e461923eaf649a0f722db2f090e7a7e3db7beaccd52576
7
- data.tar.gz: 64f837368b21868446177a764a2c5799efd72d9e6b11b34f205b6fe61d1e9b32620aa8528f8dcbe8b13ff0374cfcb796e0cd389948c944931b628d47d1f9acf8
6
+ metadata.gz: 77408f266ee1ebd396870f0d8bd14c34259ac5d9786fafabc2430105072c220be8d472825bdb9e8c0eebd0fd4646db046c1a47e41d2bfc062fa8356577411db8
7
+ data.tar.gz: eb0901a5db11f2f03ff99aa87e46a8d82d212497c7d5917ab765128ce86ad193ae7c5ac3d2ff57b9f7fa9ddfcb2a4f4fbfdf19281195538ad972314623e662e8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.22.0 (2025-12-10)
4
+
5
+ Full Changelog: [v0.21.0...v0.22.0](https://github.com/cjavdev/spotted/compare/v0.21.0...v0.22.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** manual updates ([84ec4e6](https://github.com/cjavdev/spotted/commit/84ec4e62957fdd10800785a5a6496eea9923c6a3))
10
+
11
+ ## 0.21.0 (2025-12-10)
12
+
13
+ Full Changelog: [v0.20.0...v0.21.0](https://github.com/cjavdev/spotted/compare/v0.20.0...v0.21.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** manual updates ([7705ea3](https://github.com/cjavdev/spotted/commit/7705ea3c0591ba81704b84a09958910a3ce7f61a))
18
+
3
19
  ## 0.20.0 (2025-12-05)
4
20
 
5
21
  Full Changelog: [v0.19.0...v0.20.0](https://github.com/cjavdev/spotted/compare/v0.19.0...v0.20.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.20.0"
20
+ gem "spotted", "~> 0.22.0"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -64,15 +64,6 @@ module Spotted
64
64
  # @return [Spotted::Models::PlaylistRetrieveResponse::Owner, nil]
65
65
  optional :owner, -> { Spotted::Models::PlaylistRetrieveResponse::Owner }
66
66
 
67
- # @!attribute published
68
- # The playlist's public/private status (if it is added to the user's profile):
69
- # `true` the playlist is public, `false` the playlist is private, `null` the
70
- # playlist status is not relevant. For more about public/private status, see
71
- # [Working with Playlists](/documentation/web-api/concepts/playlists)
72
- #
73
- # @return [Boolean, nil]
74
- optional :published, Spotted::Internal::Type::Boolean
75
-
76
67
  # @!attribute snapshot_id
77
68
  # The version identifier for the current playlist. Can be supplied in other
78
69
  # requests to target a specific playlist version
@@ -99,7 +90,7 @@ module Spotted
99
90
  # @return [String, nil]
100
91
  optional :uri, String
101
92
 
102
- # @!method initialize(id: nil, collaborative: nil, description: nil, external_urls: nil, followers: nil, href: nil, images: nil, name: nil, owner: nil, published: nil, snapshot_id: nil, tracks: nil, type: nil, uri: nil)
93
+ # @!method initialize(id: 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)
103
94
  # Some parameter documentations has been truncated, see
104
95
  # {Spotted::Models::PlaylistRetrieveResponse} for more details.
105
96
  #
@@ -122,8 +113,6 @@ module Spotted
122
113
  #
123
114
  # @param owner [Spotted::Models::PlaylistRetrieveResponse::Owner] The user who owns the playlist
124
115
  #
125
- # @param published [Boolean] The playlist's public/private status (if it is added to the user's profile): `tr
126
- #
127
116
  # @param snapshot_id [String] The version identifier for the current playlist. Can be supplied in other reques
128
117
  #
129
118
  # @param tracks [Spotted::Models::PlaylistRetrieveResponse::Tracks] The tracks of the playlist.
@@ -57,15 +57,6 @@ module Spotted
57
57
  # @return [Spotted::Models::SimplifiedPlaylistObject::Owner, nil]
58
58
  optional :owner, -> { Spotted::SimplifiedPlaylistObject::Owner }
59
59
 
60
- # @!attribute published
61
- # The playlist's public/private status (if it is added to the user's profile):
62
- # `true` the playlist is public, `false` the playlist is private, `null` the
63
- # playlist status is not relevant. For more about public/private status, see
64
- # [Working with Playlists](/documentation/web-api/concepts/playlists)
65
- #
66
- # @return [Boolean, nil]
67
- optional :published, Spotted::Internal::Type::Boolean
68
-
69
60
  # @!attribute snapshot_id
70
61
  # The version identifier for the current playlist. Can be supplied in other
71
62
  # requests to target a specific playlist version
@@ -95,7 +86,7 @@ module Spotted
95
86
  # @return [String, nil]
96
87
  optional :uri, String
97
88
 
98
- # @!method initialize(id: nil, collaborative: nil, description: nil, external_urls: nil, href: nil, images: nil, name: nil, owner: nil, published: nil, snapshot_id: nil, tracks: nil, type: nil, uri: nil)
89
+ # @!method initialize(id: 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)
99
90
  # Some parameter documentations has been truncated, see
100
91
  # {Spotted::Models::SimplifiedPlaylistObject} for more details.
101
92
  #
@@ -116,8 +107,6 @@ module Spotted
116
107
  #
117
108
  # @param owner [Spotted::Models::SimplifiedPlaylistObject::Owner] The user who owns the playlist
118
109
  #
119
- # @param published [Boolean] The playlist's public/private status (if it is added to the user's profile): `tr
120
- #
121
110
  # @param snapshot_id [String] The version identifier for the current playlist. Can be supplied in other reques
122
111
  #
123
112
  # @param tracks [Spotted::Models::PlaylistTracksRefObject] A collection containing a link ( `href` ) to the Web API endpoint where full det
@@ -65,15 +65,6 @@ module Spotted
65
65
  # @return [Spotted::Models::Users::PlaylistCreateResponse::Owner, nil]
66
66
  optional :owner, -> { Spotted::Models::Users::PlaylistCreateResponse::Owner }
67
67
 
68
- # @!attribute published
69
- # The playlist's public/private status (if it is added to the user's profile):
70
- # `true` the playlist is public, `false` the playlist is private, `null` the
71
- # playlist status is not relevant. For more about public/private status, see
72
- # [Working with Playlists](/documentation/web-api/concepts/playlists)
73
- #
74
- # @return [Boolean, nil]
75
- optional :published, Spotted::Internal::Type::Boolean
76
-
77
68
  # @!attribute snapshot_id
78
69
  # The version identifier for the current playlist. Can be supplied in other
79
70
  # requests to target a specific playlist version
@@ -100,7 +91,7 @@ module Spotted
100
91
  # @return [String, nil]
101
92
  optional :uri, String
102
93
 
103
- # @!method initialize(id: nil, collaborative: nil, description: nil, external_urls: nil, followers: nil, href: nil, images: nil, name: nil, owner: nil, published: nil, snapshot_id: nil, tracks: nil, type: nil, uri: nil)
94
+ # @!method initialize(id: 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
95
  # Some parameter documentations has been truncated, see
105
96
  # {Spotted::Models::Users::PlaylistCreateResponse} for more details.
106
97
  #
@@ -123,8 +114,6 @@ module Spotted
123
114
  #
124
115
  # @param owner [Spotted::Models::Users::PlaylistCreateResponse::Owner] The user who owns the playlist
125
116
  #
126
- # @param published [Boolean] The playlist's public/private status (if it is added to the user's profile): `tr
127
- #
128
117
  # @param snapshot_id [String] The version identifier for the current playlist. Can be supplied in other reques
129
118
  #
130
119
  # @param tracks [Spotted::Models::Users::PlaylistCreateResponse::Tracks] The tracks of the playlist.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Spotted
4
- VERSION = "0.20.0"
4
+ VERSION = "0.22.0"
5
5
  end
@@ -83,16 +83,6 @@ module Spotted
83
83
  end
84
84
  attr_writer :owner
85
85
 
86
- # The playlist's public/private status (if it is added to the user's profile):
87
- # `true` the playlist is public, `false` the playlist is private, `null` the
88
- # playlist status is not relevant. For more about public/private status, see
89
- # [Working with Playlists](/documentation/web-api/concepts/playlists)
90
- sig { returns(T.nilable(T::Boolean)) }
91
- attr_reader :published
92
-
93
- sig { params(published: T::Boolean).void }
94
- attr_writer :published
95
-
96
86
  # The version identifier for the current playlist. Can be supplied in other
97
87
  # requests to target a specific playlist version
98
88
  sig { returns(T.nilable(String)) }
@@ -140,7 +130,6 @@ module Spotted
140
130
  images: T::Array[Spotted::ImageObject::OrHash],
141
131
  name: String,
142
132
  owner: Spotted::Models::PlaylistRetrieveResponse::Owner::OrHash,
143
- published: T::Boolean,
144
133
  snapshot_id: String,
145
134
  tracks: Spotted::Models::PlaylistRetrieveResponse::Tracks::OrHash,
146
135
  type: String,
@@ -172,11 +161,6 @@ module Spotted
172
161
  name: nil,
173
162
  # The user who owns the playlist
174
163
  owner: nil,
175
- # The playlist's public/private status (if it is added to the user's profile):
176
- # `true` the playlist is public, `false` the playlist is private, `null` the
177
- # playlist status is not relevant. For more about public/private status, see
178
- # [Working with Playlists](/documentation/web-api/concepts/playlists)
179
- published: nil,
180
164
  # The version identifier for the current playlist. Can be supplied in other
181
165
  # requests to target a specific playlist version
182
166
  snapshot_id: nil,
@@ -202,7 +186,6 @@ module Spotted
202
186
  images: T::Array[Spotted::ImageObject],
203
187
  name: String,
204
188
  owner: Spotted::Models::PlaylistRetrieveResponse::Owner,
205
- published: T::Boolean,
206
189
  snapshot_id: String,
207
190
  tracks: Spotted::Models::PlaylistRetrieveResponse::Tracks,
208
191
  type: String,
@@ -72,16 +72,6 @@ module Spotted
72
72
  end
73
73
  attr_writer :owner
74
74
 
75
- # The playlist's public/private status (if it is added to the user's profile):
76
- # `true` the playlist is public, `false` the playlist is private, `null` the
77
- # playlist status is not relevant. For more about public/private status, see
78
- # [Working with Playlists](/documentation/web-api/concepts/playlists)
79
- sig { returns(T.nilable(T::Boolean)) }
80
- attr_reader :published
81
-
82
- sig { params(published: T::Boolean).void }
83
- attr_writer :published
84
-
85
75
  # The version identifier for the current playlist. Can be supplied in other
86
76
  # requests to target a specific playlist version
87
77
  sig { returns(T.nilable(String)) }
@@ -125,7 +115,6 @@ module Spotted
125
115
  images: T::Array[Spotted::ImageObject::OrHash],
126
116
  name: String,
127
117
  owner: Spotted::SimplifiedPlaylistObject::Owner::OrHash,
128
- published: T::Boolean,
129
118
  snapshot_id: String,
130
119
  tracks: Spotted::PlaylistTracksRefObject::OrHash,
131
120
  type: String,
@@ -155,11 +144,6 @@ module Spotted
155
144
  name: nil,
156
145
  # The user who owns the playlist
157
146
  owner: nil,
158
- # The playlist's public/private status (if it is added to the user's profile):
159
- # `true` the playlist is public, `false` the playlist is private, `null` the
160
- # playlist status is not relevant. For more about public/private status, see
161
- # [Working with Playlists](/documentation/web-api/concepts/playlists)
162
- published: nil,
163
147
  # The version identifier for the current playlist. Can be supplied in other
164
148
  # requests to target a specific playlist version
165
149
  snapshot_id: nil,
@@ -187,7 +171,6 @@ module Spotted
187
171
  images: T::Array[Spotted::ImageObject],
188
172
  name: String,
189
173
  owner: Spotted::SimplifiedPlaylistObject::Owner,
190
- published: T::Boolean,
191
174
  snapshot_id: String,
192
175
  tracks: Spotted::PlaylistTracksRefObject,
193
176
  type: String,
@@ -86,16 +86,6 @@ module Spotted
86
86
  end
87
87
  attr_writer :owner
88
88
 
89
- # The playlist's public/private status (if it is added to the user's profile):
90
- # `true` the playlist is public, `false` the playlist is private, `null` the
91
- # playlist status is not relevant. For more about public/private status, see
92
- # [Working with Playlists](/documentation/web-api/concepts/playlists)
93
- sig { returns(T.nilable(T::Boolean)) }
94
- attr_reader :published
95
-
96
- sig { params(published: T::Boolean).void }
97
- attr_writer :published
98
-
99
89
  # The version identifier for the current playlist. Can be supplied in other
100
90
  # requests to target a specific playlist version
101
91
  sig { returns(T.nilable(String)) }
@@ -147,7 +137,6 @@ module Spotted
147
137
  name: String,
148
138
  owner:
149
139
  Spotted::Models::Users::PlaylistCreateResponse::Owner::OrHash,
150
- published: T::Boolean,
151
140
  snapshot_id: String,
152
141
  tracks:
153
142
  Spotted::Models::Users::PlaylistCreateResponse::Tracks::OrHash,
@@ -180,11 +169,6 @@ module Spotted
180
169
  name: nil,
181
170
  # The user who owns the playlist
182
171
  owner: nil,
183
- # The playlist's public/private status (if it is added to the user's profile):
184
- # `true` the playlist is public, `false` the playlist is private, `null` the
185
- # playlist status is not relevant. For more about public/private status, see
186
- # [Working with Playlists](/documentation/web-api/concepts/playlists)
187
- published: nil,
188
172
  # The version identifier for the current playlist. Can be supplied in other
189
173
  # requests to target a specific playlist version
190
174
  snapshot_id: nil,
@@ -210,7 +194,6 @@ module Spotted
210
194
  images: T::Array[Spotted::ImageObject],
211
195
  name: String,
212
196
  owner: Spotted::Models::Users::PlaylistCreateResponse::Owner,
213
- published: T::Boolean,
214
197
  snapshot_id: String,
215
198
  tracks: Spotted::Models::Users::PlaylistCreateResponse::Tracks,
216
199
  type: String,
@@ -11,7 +11,6 @@ module Spotted
11
11
  images: ::Array[Spotted::ImageObject],
12
12
  name: String,
13
13
  owner: Spotted::Models::PlaylistRetrieveResponse::Owner,
14
- published: bool,
15
14
  snapshot_id: String,
16
15
  tracks: Spotted::Models::PlaylistRetrieveResponse::Tracks,
17
16
  type: String,
@@ -59,10 +58,6 @@ module Spotted
59
58
  Spotted::Models::PlaylistRetrieveResponse::Owner
60
59
  ) -> Spotted::Models::PlaylistRetrieveResponse::Owner
61
60
 
62
- attr_reader published: bool?
63
-
64
- def published=: (bool) -> bool
65
-
66
61
  attr_reader snapshot_id: String?
67
62
 
68
63
  def snapshot_id=: (String) -> String
@@ -91,7 +86,6 @@ module Spotted
91
86
  ?images: ::Array[Spotted::ImageObject],
92
87
  ?name: String,
93
88
  ?owner: Spotted::Models::PlaylistRetrieveResponse::Owner,
94
- ?published: bool,
95
89
  ?snapshot_id: String,
96
90
  ?tracks: Spotted::Models::PlaylistRetrieveResponse::Tracks,
97
91
  ?type: String,
@@ -108,7 +102,6 @@ module Spotted
108
102
  images: ::Array[Spotted::ImageObject],
109
103
  name: String,
110
104
  owner: Spotted::Models::PlaylistRetrieveResponse::Owner,
111
- published: bool,
112
105
  snapshot_id: String,
113
106
  tracks: Spotted::Models::PlaylistRetrieveResponse::Tracks,
114
107
  type: String,
@@ -10,7 +10,6 @@ module Spotted
10
10
  images: ::Array[Spotted::ImageObject],
11
11
  name: String,
12
12
  owner: Spotted::SimplifiedPlaylistObject::Owner,
13
- published: bool,
14
13
  snapshot_id: String,
15
14
  tracks: Spotted::PlaylistTracksRefObject,
16
15
  type: String,
@@ -56,10 +55,6 @@ module Spotted
56
55
  Spotted::SimplifiedPlaylistObject::Owner
57
56
  ) -> Spotted::SimplifiedPlaylistObject::Owner
58
57
 
59
- attr_reader published: bool?
60
-
61
- def published=: (bool) -> bool
62
-
63
58
  attr_reader snapshot_id: String?
64
59
 
65
60
  def snapshot_id=: (String) -> String
@@ -87,7 +82,6 @@ module Spotted
87
82
  ?images: ::Array[Spotted::ImageObject],
88
83
  ?name: String,
89
84
  ?owner: Spotted::SimplifiedPlaylistObject::Owner,
90
- ?published: bool,
91
85
  ?snapshot_id: String,
92
86
  ?tracks: Spotted::PlaylistTracksRefObject,
93
87
  ?type: String,
@@ -103,7 +97,6 @@ module Spotted
103
97
  images: ::Array[Spotted::ImageObject],
104
98
  name: String,
105
99
  owner: Spotted::SimplifiedPlaylistObject::Owner,
106
- published: bool,
107
100
  snapshot_id: String,
108
101
  tracks: Spotted::PlaylistTracksRefObject,
109
102
  type: String,
@@ -12,7 +12,6 @@ module Spotted
12
12
  images: ::Array[Spotted::ImageObject],
13
13
  name: String,
14
14
  owner: Spotted::Models::Users::PlaylistCreateResponse::Owner,
15
- published: bool,
16
15
  snapshot_id: String,
17
16
  tracks: Spotted::Models::Users::PlaylistCreateResponse::Tracks,
18
17
  type: String,
@@ -60,10 +59,6 @@ module Spotted
60
59
  Spotted::Models::Users::PlaylistCreateResponse::Owner
61
60
  ) -> Spotted::Models::Users::PlaylistCreateResponse::Owner
62
61
 
63
- attr_reader published: bool?
64
-
65
- def published=: (bool) -> bool
66
-
67
62
  attr_reader snapshot_id: String?
68
63
 
69
64
  def snapshot_id=: (String) -> String
@@ -92,7 +87,6 @@ module Spotted
92
87
  ?images: ::Array[Spotted::ImageObject],
93
88
  ?name: String,
94
89
  ?owner: Spotted::Models::Users::PlaylistCreateResponse::Owner,
95
- ?published: bool,
96
90
  ?snapshot_id: String,
97
91
  ?tracks: Spotted::Models::Users::PlaylistCreateResponse::Tracks,
98
92
  ?type: String,
@@ -109,7 +103,6 @@ module Spotted
109
103
  images: ::Array[Spotted::ImageObject],
110
104
  name: String,
111
105
  owner: Spotted::Models::Users::PlaylistCreateResponse::Owner,
112
- published: bool,
113
106
  snapshot_id: String,
114
107
  tracks: Spotted::Models::Users::PlaylistCreateResponse::Tracks,
115
108
  type: String,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spotted
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Spotted
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-05 00:00:00.000000000 Z
11
+ date: 2025-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool