Skip to content

Commit a0f3f90

Browse files
chore: sync OpenAPI spec and generated SDK v3.0.19
# OpenAPI Sync Summary - Paths: 302 -> 302 - Tags: 0 -> 0 - Added operationId count: 0 - Removed operationId count: 0 - Changed operationId count: 1 ## Added operationId - None ## Removed operationId - None ## Changed operationId - getApiDouyinXingtuGwApiAggregatorGetAuthorHomepageVideosV1 [GET /api/douyin-xingtu/gw/api/aggregator/get_author_homepage_videos/v1]
1 parent 560727e commit a0f3f90

4 files changed

Lines changed: 27 additions & 1 deletion

File tree

justoneapi/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.0.18"
1+
__version__ = "3.0.19"

justoneapi/generated/resources/douyin_xingtu.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -730,6 +730,7 @@ def gw_api_aggregator_get_author_homepage_videos_v1(
730730
page: int | None = 1,
731731
keyword: str | None = None,
732732
video_type: str | None = "ALL",
733+
only_assign: bool | None = False,
733734
start_date: str | None = None,
734735
end_date: str | None = None,
735736
) -> ApiResponse[Any]:
@@ -743,6 +744,7 @@ def gw_api_aggregator_get_author_homepage_videos_v1(
743744
page: Page number, starting from 1.
744745
keyword: Keyword used to search creator homepage videos.
745746
video_type: Homepage video type filter. Available Values: - `ALL`: All videos - `PERSONAL`: Personal videos - `XINGTU`: Xingtu videos
747+
only_assign: Whether to include only assigned videos. Xingtu usually shows this option when `videoType` is `XINGTU`.
746748
start_date: Start publish date in yyyyMMdd format. The filter starts at 00:00:00 in Asia/Shanghai.
747749
end_date: End publish date in yyyyMMdd format. The filter ends at 23:59:59 in Asia/Shanghai.
748750
"""
@@ -753,6 +755,7 @@ def gw_api_aggregator_get_author_homepage_videos_v1(
753755
"page": page,
754756
"keyword": keyword,
755757
"videoType": video_type,
758+
"onlyAssign": only_assign,
756759
"startDate": start_date,
757760
"endDate": end_date,
758761
},

openapi/public-api.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3326,6 +3326,17 @@
33263326
"type": "string"
33273327
}
33283328
},
3329+
{
3330+
"description": "Whether to include only assigned videos. Xingtu usually shows this option when `videoType` is `XINGTU`.",
3331+
"in": "query",
3332+
"name": "onlyAssign",
3333+
"required": false,
3334+
"schema": {
3335+
"default": false,
3336+
"example": true,
3337+
"type": "boolean"
3338+
}
3339+
},
33293340
{
33303341
"description": "Start publish date in yyyyMMdd format. The filter starts at 00:00:00 in Asia/Shanghai.",
33313342
"in": "query",

openapi/public-api.normalized.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3380,6 +3380,18 @@
33803380
},
33813381
"x-sdk-python-name": "video_type"
33823382
},
3383+
{
3384+
"description": "Whether to include only assigned videos. Xingtu usually shows this option when `videoType` is `XINGTU`.",
3385+
"in": "query",
3386+
"name": "onlyAssign",
3387+
"required": false,
3388+
"schema": {
3389+
"default": false,
3390+
"example": true,
3391+
"type": "boolean"
3392+
},
3393+
"x-sdk-python-name": "only_assign"
3394+
},
33833395
{
33843396
"description": "Start publish date in yyyyMMdd format. The filter starts at 00:00:00 in Asia/Shanghai.",
33853397
"in": "query",

0 commit comments

Comments
 (0)