Skip to content

Commit eac240d

Browse files
Sync from pod-engine-monorepo @ e5e11792e3b80b219fb0a62cfcb4c8c646431bdc
1 parent c267945 commit eac240d

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

openapi.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12884,6 +12884,17 @@
1288412884
"type": "null"
1288512885
}
1288612886
]
12887+
},
12888+
"associationTier": {
12889+
"type": [
12890+
"string",
12891+
"null"
12892+
],
12893+
"enum": [
12894+
"associated",
12895+
"candidate",
12896+
"unverified"
12897+
]
1288712898
}
1288812899
},
1288912900
"required": [
@@ -17681,6 +17692,17 @@
1768117692
"type": "null"
1768217693
}
1768317694
]
17695+
},
17696+
"associationTier": {
17697+
"type": [
17698+
"string",
17699+
"null"
17700+
],
17701+
"enum": [
17702+
"associated",
17703+
"candidate",
17704+
"unverified"
17705+
]
1768417706
}
1768517707
},
1768617708
"required": [

src/podengine/_generated/models.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1912,6 +1912,9 @@ class GetPodcastAllDetailsResponsePodcastYoutubeDataYoutubeDataItem(BaseModel):
19121912
last_video_upload_date: Any | None = Field(alias="lastVideoUploadDate")
19131913
last_video_upload_date_source: str | None = Field(alias="lastVideoUploadDateSource")
19141914
last_video_upload_date_checked_at: Any | None = Field(alias="lastVideoUploadDateCheckedAt")
1915+
association_tier: Literal["associated", "candidate", "unverified"] | None = Field(
1916+
default=None, alias="associationTier"
1917+
)
19151918

19161919

19171920
class GetPodcastAllDetailsResponsePodcastYoutubeData(BaseModel):

0 commit comments

Comments
 (0)