Skip to content

Commit

Permalink
Follow-up solvedac/unofficial-documentation (#9)
Browse files Browse the repository at this point in the history
Co-authored-by: RanolP <[email protected]>
  • Loading branch information
github-actions[bot] and RanolP authored Sep 7, 2021
1 parent 0bc43f0 commit 283d207
Show file tree
Hide file tree
Showing 18 changed files with 26 additions and 18 deletions.
2 changes: 1 addition & 1 deletion dist/apis/AccountApi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Do not edit the class manually.
*/
import * as runtime from '../runtime';
import { InlineObject, InlineResponse200 } from '../models';
import { InlineObject, InlineResponse200 } from '../models/index.js';
export interface UpdateAccountSettingsRequest {
inlineObject: InlineObject;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/apis/OtherApi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Do not edit the class manually.
*/
import * as runtime from '../runtime';
import { Schema7 } from '../models';
import { Schema7 } from '../models/index.js';
/**
*
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/apis/ProblemApi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Do not edit the class manually.
*/
import * as runtime from '../runtime';
import { InlineResponse2001, Schema2 } from '../models';
import { InlineResponse2001, Schema2 } from '../models/index.js';
export interface GetProblemByIdRequest {
problemId: number;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/apis/SearchApi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Do not edit the class manually.
*/
import * as runtime from '../runtime';
import { InlineResponse2002, InlineResponse2003, InlineResponse2004, InlineResponse2005 } from '../models';
import { InlineResponse2002, InlineResponse2003, InlineResponse2004, InlineResponse2005 } from '../models/index.js';
export interface GetSearchAutoCompletionRequest {
query: string;
}
Expand Down
2 changes: 1 addition & 1 deletion dist/apis/UserApi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Do not edit the class manually.
*/
import * as runtime from '../runtime';
import { InlineResponse2006 } from '../models';
import { InlineResponse2006 } from '../models/index.js';
export interface GetUserProblemStatsRequest {
handle: string;
}
Expand Down
6 changes: 5 additions & 1 deletion dist/apis/mod.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
export * from './AccountApi';
export * from './DefaultApi';
export * from './DefaultApi';
export * from './OtherApi';
export * from './ProblemApi';
export * from './SearchApi';
export * from './UserApi';
6 changes: 5 additions & 1 deletion dist/apis/mod.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
/* tslint:disable */
/* eslint-disable */
export * from './AccountApi';
export * from './DefaultApi';
export * from './DefaultApi';
export * from './OtherApi';
export * from './ProblemApi';
export * from './SearchApi';
export * from './UserApi';
2 changes: 1 addition & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from './runtime';
export * from './apis';
export * from './models';
export * from './models/index.js';
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/* eslint-disable */
export * from './runtime';
export * from './apis';
export * from './models';
export * from './models/index.js';
2 changes: 1 addition & 1 deletion dist/mod.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from './runtime';
export * from './apis';
export * from './models';
export * from './models/index.js';
2 changes: 1 addition & 1 deletion dist/mod.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/* eslint-disable */
export * from './runtime';
export * from './apis';
export * from './models';
export * from './models/index.js';
2 changes: 1 addition & 1 deletion src/apis/AccountApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import * as runtime from '../runtime';
import {
InlineObject,
InlineResponse200,
} from '../models';
} from '../models/index.js';

export interface UpdateAccountSettingsRequest {
inlineObject: InlineObject;
Expand Down
2 changes: 1 addition & 1 deletion src/apis/OtherApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import * as runtime from '../runtime';
import {
Schema7,
} from '../models';
} from '../models/index.js';

/**
*
Expand Down
2 changes: 1 addition & 1 deletion src/apis/ProblemApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import * as runtime from '../runtime';
import {
InlineResponse2001,
Schema2,
} from '../models';
} from '../models/index.js';

export interface GetProblemByIdRequest {
problemId: number;
Expand Down
2 changes: 1 addition & 1 deletion src/apis/SearchApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
InlineResponse2003,
InlineResponse2004,
InlineResponse2005,
} from '../models';
} from '../models/index.js';

export interface GetSearchAutoCompletionRequest {
query: string;
Expand Down
2 changes: 1 addition & 1 deletion src/apis/UserApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import * as runtime from '../runtime';
import {
InlineResponse2006,
} from '../models';
} from '../models/index.js';

export interface GetUserProblemStatsRequest {
handle: string;
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/* eslint-disable */
export * from './runtime';
export * from './apis';
export * from './models';
export * from './models/index.js';
2 changes: 1 addition & 1 deletion src/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/* eslint-disable */
export * from './runtime';
export * from './apis';
export * from './models';
export * from './models/index.js';

0 comments on commit 283d207

Please sign in to comment.