Skip to content

Commit 093853c

Browse files
committed
_
Signed-off-by: Sora Morimoto <[email protected]>
1 parent 5acd7d2 commit 093853c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/__snapshots__/extended.test.ts.snap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62045,8 +62045,6 @@ export type ReposDetailData = Repos;
6204562045

6204662046
export type ReposDetailOutput = TeamRepos;
6204762047

62048-
export type ReposDetailOutput1 = Repos;
62049-
6205062048
export interface ReposDetailParams {
6205162049
/** Name of organisation. */
6205262050
org: string;
@@ -62083,6 +62081,8 @@ export enum ReposDetailParams5TypeEnum {
6208362081

6208462082
export type ReposDetailResult = Repo;
6208562083

62084+
export type ReposDetailResult1 = Repos;
62085+
6208662086
export type ReposListData = Repos;
6208762087

6208862088
export interface ReposListParams {
@@ -68088,7 +68088,7 @@ export namespace Users {
6808868088
/** Is used to set specified media type. */
6808968089
Accept?: string;
6809068090
};
68091-
export type ResponseBody = ReposDetailOutput1;
68091+
export type ResponseBody = ReposDetailResult1;
6809268092
}
6809368093
/**
6809468094
* @description List repositories being starred by a user.
@@ -71802,7 +71802,7 @@ export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDa
7180271802
* @request GET:/users/{username}/repos
7180371803
*/
7180471804
reposDetail: ({ username, ...query }: ReposDetailParams4, params: RequestParams = {}) =>
71805-
this.request<ReposDetailOutput1, void>({
71805+
this.request<ReposDetailResult1, void>({
7180671806
path: \`/users/\${username}/repos\`,
7180771807
method: "GET",
7180871808
query: query,

0 commit comments

Comments
 (0)