Skip to content

Commit eb78f67

Browse files
committed
feat: remove @memberof
1 parent f8372b6 commit eb78f67

3 files changed

Lines changed: 0 additions & 11 deletions

File tree

modules/openapi-generator/src/main/resources/typescript-axios/apiInner.mustache

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,6 @@ export interface {{classname}}Interface {
338338
* @param {*} [options] Override http request option.{{#isDeprecated}}
339339
* @deprecated{{/isDeprecated}}
340340
* @throws {RequiredError}
341-
* @memberof {{classname}}Interface
342341
*/
343342
{{#useSingleRequestParameter}}
344343
{{nickname}}({{#allParams.0}}requestParameters{{^hasRequiredParams}}?{{/hasRequiredParams}}: {{classname}}{{operationIdCamelCase}}Request, {{/allParams.0}}options?: RawAxiosRequestConfig): AxiosPromise<{{{returnType}}}{{^returnType}}void{{/returnType}}>;
@@ -362,7 +361,6 @@ export interface {{classname}}{{operationIdCamelCase}}Request {
362361
/**
363362
* {{description}}
364363
* @type {{=<% %>=}}{<%&dataType%>}<%={{ }}=%>
365-
* @memberof {{classname}}{{operationIdCamelCase}}
366364
*/
367365
readonly {{paramName}}{{^required}}?{{/required}}: {{#isEnum}}{{{datatypeWithEnum}}}{{/isEnum}}{{^isEnum}}{{{dataType}}}{{#isNullable}} | null{{/isNullable}}{{/isEnum}}
368366
{{^-last}}
@@ -403,7 +401,6 @@ export class {{classname}} extends BaseAPI {
403401
* @param {*} [options] Override http request option.{{#isDeprecated}}
404402
* @deprecated{{/isDeprecated}}
405403
* @throws {RequiredError}
406-
* @memberof {{classname}}
407404
*/
408405
{{#useSingleRequestParameter}}
409406
public {{nickname}}({{#allParams.0}}requestParameters: {{classname}}{{operationIdCamelCase}}Request{{^hasRequiredParams}} = {}{{/hasRequiredParams}}, {{/allParams.0}}options?: RawAxiosRequestConfig) {

modules/openapi-generator/src/main/resources/typescript-axios/configuration.mustache

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,49 +18,42 @@ export class Configuration {
1818
/**
1919
* parameter for apiKey security
2020
* @param name security name
21-
* @memberof Configuration
2221
*/
2322
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
2423
/**
2524
* parameter for basic security
2625
*
2726
* @type {string}
28-
* @memberof Configuration
2927
*/
3028
username?: string;
3129
/**
3230
* parameter for basic security
3331
*
3432
* @type {string}
35-
* @memberof Configuration
3633
*/
3734
password?: string;
3835
/**
3936
* parameter for oauth2 security
4037
* @param name security name
4138
* @param scopes oauth2 scope
42-
* @memberof Configuration
4339
*/
4440
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
4541
/**
4642
* override base path
4743
*
4844
* @type {string}
49-
* @memberof Configuration
5045
*/
5146
basePath?: string;
5247
/**
5348
* override server index
5449
*
5550
* @type {number}
56-
* @memberof Configuration
5751
*/
5852
serverIndex?: number;
5953
/**
6054
* base options for axios calls
6155
*
6256
* @type {any}
63-
* @memberof Configuration
6457
*/
6558
baseOptions?: any;
6659
/**

modules/openapi-generator/src/main/resources/typescript-axios/modelGeneric.mustache

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export interface {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{
1212
/**
1313
* {{{description}}}
1414
* @type {{=<% %>=}}{<%&datatype%>}<%={{ }}=%>
15-
* @memberof {{classname}}
1615
{{#deprecated}}
1716
* @deprecated
1817
{{/deprecated}}

0 commit comments

Comments
 (0)