Skip to content

Commit 638b152

Browse files
Sync from pod-engine-monorepo @ d72ddef76a0c1886a3492d9dfa1bd5abc5db8821
1 parent af13a89 commit 638b152

2 files changed

Lines changed: 21 additions & 0 deletions

File tree

openapi.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3767,6 +3767,15 @@
37673767
"position": {
37683768
"type": "number"
37693769
},
3770+
"estimatedMonthlyListeners": {
3771+
"description": "Latest published monthly audience estimate for the podcast, independent of the chart date and country.",
3772+
"type": [
3773+
"integer",
3774+
"null"
3775+
],
3776+
"minimum": 0,
3777+
"maximum": 9007199254740991
3778+
},
37703779
"podcastOnChart": {
37713780
"type": "object",
37723781
"properties": {
@@ -3887,6 +3896,7 @@
38873896
},
38883897
"required": [
38893898
"position",
3899+
"estimatedMonthlyListeners",
38903900
"podcastOnChart",
38913901
"podenginePodcast"
38923902
],
@@ -4084,6 +4094,15 @@
40844094
"position": {
40854095
"type": "number"
40864096
},
4097+
"estimatedMonthlyListeners": {
4098+
"description": "Latest published monthly audience estimate for the podcast, independent of the chart date and country.",
4099+
"type": [
4100+
"integer",
4101+
"null"
4102+
],
4103+
"minimum": 0,
4104+
"maximum": 9007199254740991
4105+
},
40874106
"podcastOnChart": {
40884107
"type": "object",
40894108
"properties": {
@@ -4204,6 +4223,7 @@
42044223
},
42054224
"required": [
42064225
"position",
4226+
"estimatedMonthlyListeners",
42074227
"podcastOnChart",
42084228
"podenginePodcast"
42094229
],

src/podengine/_generated/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -589,6 +589,7 @@ class GetChartResponseChartPositionsItem(BaseModel):
589589
model_config = ConfigDict(populate_by_name=True)
590590

591591
position: float
592+
estimated_monthly_listeners: int | None = Field(alias="estimatedMonthlyListeners")
592593
podcast_on_chart: GetChartResponseChartPositionsItemPodcastOnChart = Field(alias="podcastOnChart")
593594
podengine_podcast: GetChartResponseChartPositionsItemPodenginePodcast | None = Field(alias="podenginePodcast")
594595

0 commit comments

Comments
 (0)