@@ -62045,8 +62045,6 @@ export type ReposDetailData = Repos;
62045
62045
62046
62046
export type ReposDetailOutput = TeamRepos;
62047
62047
62048
- export type ReposDetailOutput1 = Repos;
62049
-
62050
62048
export interface ReposDetailParams {
62051
62049
/** Name of organisation. */
62052
62050
org: string;
@@ -62083,6 +62081,8 @@ export enum ReposDetailParams5TypeEnum {
62083
62081
62084
62082
export type ReposDetailResult = Repo;
62085
62083
62084
+ export type ReposDetailResult1 = Repos;
62085
+
62086
62086
export type ReposListData = Repos;
62087
62087
62088
62088
export interface ReposListParams {
@@ -68088,7 +68088,7 @@ export namespace Users {
68088
68088
/** Is used to set specified media type. */
68089
68089
Accept?: string;
68090
68090
};
68091
- export type ResponseBody = ReposDetailOutput1 ;
68091
+ export type ResponseBody = ReposDetailResult1 ;
68092
68092
}
68093
68093
/**
68094
68094
* @description List repositories being starred by a user.
@@ -71802,7 +71802,7 @@ export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDa
71802
71802
* @request GET:/users/{username}/repos
71803
71803
*/
71804
71804
reposDetail: ({ username, ...query }: ReposDetailParams4, params: RequestParams = {}) =>
71805
- this.request<ReposDetailOutput1 , void>({
71805
+ this.request<ReposDetailResult1 , void>({
71806
71806
path: \`/users/\${username}/repos\`,
71807
71807
method: "GET",
71808
71808
query: query,
0 commit comments