File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ const apis = {
1414 userdata : "https://api.profcomff.com/userdata/openapi.json" ,
1515 achievement : "https://api.profcomff.com/achievement/openapi.json" ,
1616 rating : "https://api.profcomff.com/rating/openapi.json" ,
17+ rental : "https://api.profcomff.com/rental/openapi.json" ,
1718} ;
1819
1920const header = `/**
Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ import type { paths as servicesPaths } from "./openapi/services.ts";
99import type { paths as socialPaths } from "./openapi/social.ts" ;
1010import type { paths as timetablePaths } from "./openapi/timetable.ts" ;
1111import type { paths as userdataPaths } from "./openapi/userdata.ts" ;
12- import type { paths as ratingPaths } from "./openapi/rating.js" ;
12+ import type { paths as ratingPaths } from "./openapi/rating.ts" ;
13+ import type { paths as rentalPaths } from "./openapi/rental.ts" ;
1314
1415
1516export type paths = (
@@ -21,7 +22,8 @@ export type paths = (
2122 socialPaths &
2223 timetablePaths &
2324 userdataPaths &
24- ratingPaths
25+ ratingPaths &
26+ rentalPaths
2527) ;
2628
2729let currentClient : ReturnType < typeof Client < paths > > | undefined = undefined ;
You can’t perform that action at this time.
0 commit comments