spotted 0.23.0 → 0.24.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/spotted/models/playlist_retrieve_response.rb +4 -4
- data/lib/spotted/models/simplified_playlist_object.rb +4 -4
- data/lib/spotted/models/users/playlist_create_response.rb +4 -4
- data/lib/spotted/version.rb +1 -1
- data/rbi/spotted/models/playlist_retrieve_response.rbi +6 -6
- data/rbi/spotted/models/simplified_playlist_object.rbi +6 -6
- data/rbi/spotted/models/users/playlist_create_response.rbi +6 -6
- data/sig/spotted/models/playlist_retrieve_response.rbs +5 -5
- data/sig/spotted/models/simplified_playlist_object.rbs +5 -5
- data/sig/spotted/models/users/playlist_create_response.rbs +5 -5
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4728ca8f7d0ce058d5687cbc7a697fe87e70f54cdb95f47844345501d89a9652
|
|
4
|
+
data.tar.gz: 503b6ecefed8e7b1d964dbe16487473fb97e1d55dbfbb7a94c36a53f8781893b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc7f94d0065d47ca6285d19220b9d465cfec10f040a452f76306b68d1528bfd1e39726dbe6fe8b1ecd3021373c49700a8746abdbc3f8f39218c55d9c236418df
|
|
7
|
+
data.tar.gz: bc8a7ab138de2fb29e4e46a41ce8c903dcb0c7f72932f94a29a63c2f043310844097f94062594961b538d4542c40d3356dd8c197357f83df30ea3f7f6e66ec43
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.24.0 (2025-12-10)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.23.0...v0.24.0](https://github.com/cjavdev/spotted/compare/v0.23.0...v0.24.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** manual updates ([412a14b](https://github.com/cjavdev/spotted/commit/412a14b53554fd250b472eda56f6539666231929))
|
|
10
|
+
|
|
3
11
|
## 0.23.0 (2025-12-10)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.22.0...v0.23.0](https://github.com/cjavdev/spotted/compare/v0.22.0...v0.23.0)
|
data/README.md
CHANGED
|
@@ -64,14 +64,14 @@ module Spotted
|
|
|
64
64
|
# @return [Spotted::Models::PlaylistRetrieveResponse::Owner, nil]
|
|
65
65
|
optional :owner, -> { Spotted::Models::PlaylistRetrieveResponse::Owner }
|
|
66
66
|
|
|
67
|
-
# @!attribute
|
|
67
|
+
# @!attribute published
|
|
68
68
|
# The playlist's public/private status (if it is added to the user's profile):
|
|
69
69
|
# `true` the playlist is public, `false` the playlist is private, `null` the
|
|
70
70
|
# playlist status is not relevant. For more about public/private status, see
|
|
71
71
|
# [Working with Playlists](/documentation/web-api/concepts/playlists)
|
|
72
72
|
#
|
|
73
73
|
# @return [Boolean, nil]
|
|
74
|
-
optional :
|
|
74
|
+
optional :published, Spotted::Internal::Type::Boolean
|
|
75
75
|
|
|
76
76
|
# @!attribute snapshot_id
|
|
77
77
|
# The version identifier for the current playlist. Can be supplied in other
|
|
@@ -99,7 +99,7 @@ module Spotted
|
|
|
99
99
|
# @return [String, nil]
|
|
100
100
|
optional :uri, String
|
|
101
101
|
|
|
102
|
-
# @!method initialize(id: nil, collaborative: nil, description: nil, external_urls: nil, followers: nil, href: nil, images: nil, name: nil, owner: nil,
|
|
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)
|
|
103
103
|
# Some parameter documentations has been truncated, see
|
|
104
104
|
# {Spotted::Models::PlaylistRetrieveResponse} for more details.
|
|
105
105
|
#
|
|
@@ -122,7 +122,7 @@ module Spotted
|
|
|
122
122
|
#
|
|
123
123
|
# @param owner [Spotted::Models::PlaylistRetrieveResponse::Owner] The user who owns the playlist
|
|
124
124
|
#
|
|
125
|
-
# @param
|
|
125
|
+
# @param published [Boolean] The playlist's public/private status (if it is added to the user's profile): `tr
|
|
126
126
|
#
|
|
127
127
|
# @param snapshot_id [String] The version identifier for the current playlist. Can be supplied in other reques
|
|
128
128
|
#
|
|
@@ -57,14 +57,14 @@ module Spotted
|
|
|
57
57
|
# @return [Spotted::Models::SimplifiedPlaylistObject::Owner, nil]
|
|
58
58
|
optional :owner, -> { Spotted::SimplifiedPlaylistObject::Owner }
|
|
59
59
|
|
|
60
|
-
# @!attribute
|
|
60
|
+
# @!attribute published
|
|
61
61
|
# The playlist's public/private status (if it is added to the user's profile):
|
|
62
62
|
# `true` the playlist is public, `false` the playlist is private, `null` the
|
|
63
63
|
# playlist status is not relevant. For more about public/private status, see
|
|
64
64
|
# [Working with Playlists](/documentation/web-api/concepts/playlists)
|
|
65
65
|
#
|
|
66
66
|
# @return [Boolean, nil]
|
|
67
|
-
optional :
|
|
67
|
+
optional :published, Spotted::Internal::Type::Boolean
|
|
68
68
|
|
|
69
69
|
# @!attribute snapshot_id
|
|
70
70
|
# The version identifier for the current playlist. Can be supplied in other
|
|
@@ -95,7 +95,7 @@ module Spotted
|
|
|
95
95
|
# @return [String, nil]
|
|
96
96
|
optional :uri, String
|
|
97
97
|
|
|
98
|
-
# @!method initialize(id: nil, collaborative: nil, description: nil, external_urls: nil, href: nil, images: nil, name: nil, owner: nil,
|
|
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)
|
|
99
99
|
# Some parameter documentations has been truncated, see
|
|
100
100
|
# {Spotted::Models::SimplifiedPlaylistObject} for more details.
|
|
101
101
|
#
|
|
@@ -116,7 +116,7 @@ module Spotted
|
|
|
116
116
|
#
|
|
117
117
|
# @param owner [Spotted::Models::SimplifiedPlaylistObject::Owner] The user who owns the playlist
|
|
118
118
|
#
|
|
119
|
-
# @param
|
|
119
|
+
# @param published [Boolean] The playlist's public/private status (if it is added to the user's profile): `tr
|
|
120
120
|
#
|
|
121
121
|
# @param snapshot_id [String] The version identifier for the current playlist. Can be supplied in other reques
|
|
122
122
|
#
|
|
@@ -65,14 +65,14 @@ module Spotted
|
|
|
65
65
|
# @return [Spotted::Models::Users::PlaylistCreateResponse::Owner, nil]
|
|
66
66
|
optional :owner, -> { Spotted::Models::Users::PlaylistCreateResponse::Owner }
|
|
67
67
|
|
|
68
|
-
# @!attribute
|
|
68
|
+
# @!attribute published
|
|
69
69
|
# The playlist's public/private status (if it is added to the user's profile):
|
|
70
70
|
# `true` the playlist is public, `false` the playlist is private, `null` the
|
|
71
71
|
# playlist status is not relevant. For more about public/private status, see
|
|
72
72
|
# [Working with Playlists](/documentation/web-api/concepts/playlists)
|
|
73
73
|
#
|
|
74
74
|
# @return [Boolean, nil]
|
|
75
|
-
optional :
|
|
75
|
+
optional :published, Spotted::Internal::Type::Boolean
|
|
76
76
|
|
|
77
77
|
# @!attribute snapshot_id
|
|
78
78
|
# The version identifier for the current playlist. Can be supplied in other
|
|
@@ -100,7 +100,7 @@ module Spotted
|
|
|
100
100
|
# @return [String, nil]
|
|
101
101
|
optional :uri, String
|
|
102
102
|
|
|
103
|
-
# @!method initialize(id: nil, collaborative: nil, description: nil, external_urls: nil, followers: nil, href: nil, images: nil, name: nil, owner: nil,
|
|
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)
|
|
104
104
|
# Some parameter documentations has been truncated, see
|
|
105
105
|
# {Spotted::Models::Users::PlaylistCreateResponse} for more details.
|
|
106
106
|
#
|
|
@@ -123,7 +123,7 @@ module Spotted
|
|
|
123
123
|
#
|
|
124
124
|
# @param owner [Spotted::Models::Users::PlaylistCreateResponse::Owner] The user who owns the playlist
|
|
125
125
|
#
|
|
126
|
-
# @param
|
|
126
|
+
# @param published [Boolean] The playlist's public/private status (if it is added to the user's profile): `tr
|
|
127
127
|
#
|
|
128
128
|
# @param snapshot_id [String] The version identifier for the current playlist. Can be supplied in other reques
|
|
129
129
|
#
|
data/lib/spotted/version.rb
CHANGED
|
@@ -88,10 +88,10 @@ module Spotted
|
|
|
88
88
|
# playlist status is not relevant. For more about public/private status, see
|
|
89
89
|
# [Working with Playlists](/documentation/web-api/concepts/playlists)
|
|
90
90
|
sig { returns(T.nilable(T::Boolean)) }
|
|
91
|
-
attr_reader :
|
|
91
|
+
attr_reader :published
|
|
92
92
|
|
|
93
|
-
sig { params(
|
|
94
|
-
attr_writer :
|
|
93
|
+
sig { params(published: T::Boolean).void }
|
|
94
|
+
attr_writer :published
|
|
95
95
|
|
|
96
96
|
# The version identifier for the current playlist. Can be supplied in other
|
|
97
97
|
# requests to target a specific playlist version
|
|
@@ -140,7 +140,7 @@ module Spotted
|
|
|
140
140
|
images: T::Array[Spotted::ImageObject::OrHash],
|
|
141
141
|
name: String,
|
|
142
142
|
owner: Spotted::Models::PlaylistRetrieveResponse::Owner::OrHash,
|
|
143
|
-
|
|
143
|
+
published: T::Boolean,
|
|
144
144
|
snapshot_id: String,
|
|
145
145
|
tracks: Spotted::Models::PlaylistRetrieveResponse::Tracks::OrHash,
|
|
146
146
|
type: String,
|
|
@@ -176,7 +176,7 @@ module Spotted
|
|
|
176
176
|
# `true` the playlist is public, `false` the playlist is private, `null` the
|
|
177
177
|
# playlist status is not relevant. For more about public/private status, see
|
|
178
178
|
# [Working with Playlists](/documentation/web-api/concepts/playlists)
|
|
179
|
-
|
|
179
|
+
published: nil,
|
|
180
180
|
# The version identifier for the current playlist. Can be supplied in other
|
|
181
181
|
# requests to target a specific playlist version
|
|
182
182
|
snapshot_id: nil,
|
|
@@ -202,7 +202,7 @@ module Spotted
|
|
|
202
202
|
images: T::Array[Spotted::ImageObject],
|
|
203
203
|
name: String,
|
|
204
204
|
owner: Spotted::Models::PlaylistRetrieveResponse::Owner,
|
|
205
|
-
|
|
205
|
+
published: T::Boolean,
|
|
206
206
|
snapshot_id: String,
|
|
207
207
|
tracks: Spotted::Models::PlaylistRetrieveResponse::Tracks,
|
|
208
208
|
type: String,
|
|
@@ -77,10 +77,10 @@ module Spotted
|
|
|
77
77
|
# playlist status is not relevant. For more about public/private status, see
|
|
78
78
|
# [Working with Playlists](/documentation/web-api/concepts/playlists)
|
|
79
79
|
sig { returns(T.nilable(T::Boolean)) }
|
|
80
|
-
attr_reader :
|
|
80
|
+
attr_reader :published
|
|
81
81
|
|
|
82
|
-
sig { params(
|
|
83
|
-
attr_writer :
|
|
82
|
+
sig { params(published: T::Boolean).void }
|
|
83
|
+
attr_writer :published
|
|
84
84
|
|
|
85
85
|
# The version identifier for the current playlist. Can be supplied in other
|
|
86
86
|
# requests to target a specific playlist version
|
|
@@ -125,7 +125,7 @@ module Spotted
|
|
|
125
125
|
images: T::Array[Spotted::ImageObject::OrHash],
|
|
126
126
|
name: String,
|
|
127
127
|
owner: Spotted::SimplifiedPlaylistObject::Owner::OrHash,
|
|
128
|
-
|
|
128
|
+
published: T::Boolean,
|
|
129
129
|
snapshot_id: String,
|
|
130
130
|
tracks: Spotted::PlaylistTracksRefObject::OrHash,
|
|
131
131
|
type: String,
|
|
@@ -159,7 +159,7 @@ module Spotted
|
|
|
159
159
|
# `true` the playlist is public, `false` the playlist is private, `null` the
|
|
160
160
|
# playlist status is not relevant. For more about public/private status, see
|
|
161
161
|
# [Working with Playlists](/documentation/web-api/concepts/playlists)
|
|
162
|
-
|
|
162
|
+
published: nil,
|
|
163
163
|
# The version identifier for the current playlist. Can be supplied in other
|
|
164
164
|
# requests to target a specific playlist version
|
|
165
165
|
snapshot_id: nil,
|
|
@@ -187,7 +187,7 @@ module Spotted
|
|
|
187
187
|
images: T::Array[Spotted::ImageObject],
|
|
188
188
|
name: String,
|
|
189
189
|
owner: Spotted::SimplifiedPlaylistObject::Owner,
|
|
190
|
-
|
|
190
|
+
published: T::Boolean,
|
|
191
191
|
snapshot_id: String,
|
|
192
192
|
tracks: Spotted::PlaylistTracksRefObject,
|
|
193
193
|
type: String,
|
|
@@ -91,10 +91,10 @@ module Spotted
|
|
|
91
91
|
# playlist status is not relevant. For more about public/private status, see
|
|
92
92
|
# [Working with Playlists](/documentation/web-api/concepts/playlists)
|
|
93
93
|
sig { returns(T.nilable(T::Boolean)) }
|
|
94
|
-
attr_reader :
|
|
94
|
+
attr_reader :published
|
|
95
95
|
|
|
96
|
-
sig { params(
|
|
97
|
-
attr_writer :
|
|
96
|
+
sig { params(published: T::Boolean).void }
|
|
97
|
+
attr_writer :published
|
|
98
98
|
|
|
99
99
|
# The version identifier for the current playlist. Can be supplied in other
|
|
100
100
|
# requests to target a specific playlist version
|
|
@@ -147,7 +147,7 @@ module Spotted
|
|
|
147
147
|
name: String,
|
|
148
148
|
owner:
|
|
149
149
|
Spotted::Models::Users::PlaylistCreateResponse::Owner::OrHash,
|
|
150
|
-
|
|
150
|
+
published: T::Boolean,
|
|
151
151
|
snapshot_id: String,
|
|
152
152
|
tracks:
|
|
153
153
|
Spotted::Models::Users::PlaylistCreateResponse::Tracks::OrHash,
|
|
@@ -184,7 +184,7 @@ module Spotted
|
|
|
184
184
|
# `true` the playlist is public, `false` the playlist is private, `null` the
|
|
185
185
|
# playlist status is not relevant. For more about public/private status, see
|
|
186
186
|
# [Working with Playlists](/documentation/web-api/concepts/playlists)
|
|
187
|
-
|
|
187
|
+
published: nil,
|
|
188
188
|
# The version identifier for the current playlist. Can be supplied in other
|
|
189
189
|
# requests to target a specific playlist version
|
|
190
190
|
snapshot_id: nil,
|
|
@@ -210,7 +210,7 @@ module Spotted
|
|
|
210
210
|
images: T::Array[Spotted::ImageObject],
|
|
211
211
|
name: String,
|
|
212
212
|
owner: Spotted::Models::Users::PlaylistCreateResponse::Owner,
|
|
213
|
-
|
|
213
|
+
published: T::Boolean,
|
|
214
214
|
snapshot_id: String,
|
|
215
215
|
tracks: Spotted::Models::Users::PlaylistCreateResponse::Tracks,
|
|
216
216
|
type: String,
|
|
@@ -11,7 +11,7 @@ module Spotted
|
|
|
11
11
|
images: ::Array[Spotted::ImageObject],
|
|
12
12
|
name: String,
|
|
13
13
|
owner: Spotted::Models::PlaylistRetrieveResponse::Owner,
|
|
14
|
-
|
|
14
|
+
published: bool,
|
|
15
15
|
snapshot_id: String,
|
|
16
16
|
tracks: Spotted::Models::PlaylistRetrieveResponse::Tracks,
|
|
17
17
|
type: String,
|
|
@@ -59,9 +59,9 @@ module Spotted
|
|
|
59
59
|
Spotted::Models::PlaylistRetrieveResponse::Owner
|
|
60
60
|
) -> Spotted::Models::PlaylistRetrieveResponse::Owner
|
|
61
61
|
|
|
62
|
-
attr_reader
|
|
62
|
+
attr_reader published: bool?
|
|
63
63
|
|
|
64
|
-
def
|
|
64
|
+
def published=: (bool) -> bool
|
|
65
65
|
|
|
66
66
|
attr_reader snapshot_id: String?
|
|
67
67
|
|
|
@@ -91,7 +91,7 @@ module Spotted
|
|
|
91
91
|
?images: ::Array[Spotted::ImageObject],
|
|
92
92
|
?name: String,
|
|
93
93
|
?owner: Spotted::Models::PlaylistRetrieveResponse::Owner,
|
|
94
|
-
?
|
|
94
|
+
?published: bool,
|
|
95
95
|
?snapshot_id: String,
|
|
96
96
|
?tracks: Spotted::Models::PlaylistRetrieveResponse::Tracks,
|
|
97
97
|
?type: String,
|
|
@@ -108,7 +108,7 @@ module Spotted
|
|
|
108
108
|
images: ::Array[Spotted::ImageObject],
|
|
109
109
|
name: String,
|
|
110
110
|
owner: Spotted::Models::PlaylistRetrieveResponse::Owner,
|
|
111
|
-
|
|
111
|
+
published: bool,
|
|
112
112
|
snapshot_id: String,
|
|
113
113
|
tracks: Spotted::Models::PlaylistRetrieveResponse::Tracks,
|
|
114
114
|
type: String,
|
|
@@ -10,7 +10,7 @@ module Spotted
|
|
|
10
10
|
images: ::Array[Spotted::ImageObject],
|
|
11
11
|
name: String,
|
|
12
12
|
owner: Spotted::SimplifiedPlaylistObject::Owner,
|
|
13
|
-
|
|
13
|
+
published: bool,
|
|
14
14
|
snapshot_id: String,
|
|
15
15
|
tracks: Spotted::PlaylistTracksRefObject,
|
|
16
16
|
type: String,
|
|
@@ -56,9 +56,9 @@ module Spotted
|
|
|
56
56
|
Spotted::SimplifiedPlaylistObject::Owner
|
|
57
57
|
) -> Spotted::SimplifiedPlaylistObject::Owner
|
|
58
58
|
|
|
59
|
-
attr_reader
|
|
59
|
+
attr_reader published: bool?
|
|
60
60
|
|
|
61
|
-
def
|
|
61
|
+
def published=: (bool) -> bool
|
|
62
62
|
|
|
63
63
|
attr_reader snapshot_id: String?
|
|
64
64
|
|
|
@@ -87,7 +87,7 @@ module Spotted
|
|
|
87
87
|
?images: ::Array[Spotted::ImageObject],
|
|
88
88
|
?name: String,
|
|
89
89
|
?owner: Spotted::SimplifiedPlaylistObject::Owner,
|
|
90
|
-
?
|
|
90
|
+
?published: bool,
|
|
91
91
|
?snapshot_id: String,
|
|
92
92
|
?tracks: Spotted::PlaylistTracksRefObject,
|
|
93
93
|
?type: String,
|
|
@@ -103,7 +103,7 @@ module Spotted
|
|
|
103
103
|
images: ::Array[Spotted::ImageObject],
|
|
104
104
|
name: String,
|
|
105
105
|
owner: Spotted::SimplifiedPlaylistObject::Owner,
|
|
106
|
-
|
|
106
|
+
published: bool,
|
|
107
107
|
snapshot_id: String,
|
|
108
108
|
tracks: Spotted::PlaylistTracksRefObject,
|
|
109
109
|
type: String,
|
|
@@ -12,7 +12,7 @@ module Spotted
|
|
|
12
12
|
images: ::Array[Spotted::ImageObject],
|
|
13
13
|
name: String,
|
|
14
14
|
owner: Spotted::Models::Users::PlaylistCreateResponse::Owner,
|
|
15
|
-
|
|
15
|
+
published: bool,
|
|
16
16
|
snapshot_id: String,
|
|
17
17
|
tracks: Spotted::Models::Users::PlaylistCreateResponse::Tracks,
|
|
18
18
|
type: String,
|
|
@@ -60,9 +60,9 @@ module Spotted
|
|
|
60
60
|
Spotted::Models::Users::PlaylistCreateResponse::Owner
|
|
61
61
|
) -> Spotted::Models::Users::PlaylistCreateResponse::Owner
|
|
62
62
|
|
|
63
|
-
attr_reader
|
|
63
|
+
attr_reader published: bool?
|
|
64
64
|
|
|
65
|
-
def
|
|
65
|
+
def published=: (bool) -> bool
|
|
66
66
|
|
|
67
67
|
attr_reader snapshot_id: String?
|
|
68
68
|
|
|
@@ -92,7 +92,7 @@ module Spotted
|
|
|
92
92
|
?images: ::Array[Spotted::ImageObject],
|
|
93
93
|
?name: String,
|
|
94
94
|
?owner: Spotted::Models::Users::PlaylistCreateResponse::Owner,
|
|
95
|
-
?
|
|
95
|
+
?published: bool,
|
|
96
96
|
?snapshot_id: String,
|
|
97
97
|
?tracks: Spotted::Models::Users::PlaylistCreateResponse::Tracks,
|
|
98
98
|
?type: String,
|
|
@@ -109,7 +109,7 @@ module Spotted
|
|
|
109
109
|
images: ::Array[Spotted::ImageObject],
|
|
110
110
|
name: String,
|
|
111
111
|
owner: Spotted::Models::Users::PlaylistCreateResponse::Owner,
|
|
112
|
-
|
|
112
|
+
published: bool,
|
|
113
113
|
snapshot_id: String,
|
|
114
114
|
tracks: Spotted::Models::Users::PlaylistCreateResponse::Tracks,
|
|
115
115
|
type: String,
|