File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- __version__ = "3.0.18 "
1+ __version__ = "3.0.19 "
Original file line number Diff line number Diff 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 },
Original file line number Diff line number Diff line change 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",
Original file line number Diff line number Diff line change 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",
You can’t perform that action at this time.
0 commit comments