Skip to content

Commit

Permalink
_
Browse files Browse the repository at this point in the history
Signed-off-by: Sora Morimoto <sora@morimoto.io>
  • Loading branch information
smorimoto committed May 9, 2024
1 parent 093853c commit f194b60
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions tests/__snapshots__/extended.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -62043,6 +62043,8 @@ export enum ReposDetail2ParamsEnum {

export type ReposDetailData = Repos;

export type ReposDetailData1 = Repos;

export type ReposDetailOutput = TeamRepos;

export interface ReposDetailParams {
Expand Down Expand Up @@ -62081,8 +62083,6 @@ export enum ReposDetailParams5TypeEnum {

export type ReposDetailResult = Repo;

export type ReposDetailResult1 = Repos;

export type ReposListData = Repos;

export interface ReposListParams {
Expand Down Expand Up @@ -68088,7 +68088,7 @@ export namespace Users {
/** Is used to set specified media type. */
Accept?: string;
};
export type ResponseBody = ReposDetailResult1;
export type ResponseBody = ReposDetailData1;
}
/**
* @description List repositories being starred by a user.
Expand Down Expand Up @@ -71802,7 +71802,7 @@ export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDa
* @request GET:/users/{username}/repos
*/
reposDetail: ({ username, ...query }: ReposDetailParams4, params: RequestParams = {}) =>
this.request<ReposDetailResult1, void>({
this.request<ReposDetailData1, void>({
path: \`/users/\${username}/repos\`,
method: "GET",
query: query,
Expand Down
3 changes: 1 addition & 2 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
isolate: false,
maxWorkers: 1,
minWorkers: 1,
retry: 3,
},
});

0 comments on commit f194b60

Please sign in to comment.