Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fixed ouath classes names #992

Merged
merged 3 commits into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 50 additions & 36 deletions templates/openapi-generator/javascript/index.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ import Conjunction from './filter/Conjunction';
import Disjunction from './filter/Disjunction';
import Operator from './filter/Operator';

import OAuth2AuthorizationCodeManager from './oauth2/OAuth2';
import OAuth2AuthorizationCodeTokenResponse from './oauth2/OAuth2AuthorizationCodeTokenResponse';
import OAuth2Manager from './oauth2/OAuth2';
import OAuth2TokenResponse from './oauth2/OAuth2TokenResponse';
import OAuth2AuthorizationCodeParams from './oauth2/OAuth2AuthorizationCodeParams';
import OAuth2DeviceCodeManager from './oauth2/OAuth2DeviceCode';
import OAuth2DeviceCodeResponse from './oauth2/OAuth2DeviceCodeResponse';
import Scope from './oauth2/Scope';


Expand Down Expand Up @@ -52,65 +54,77 @@ import Scope from './oauth2/Scope';
export {

/**
* The Condition service constructor.
* @property {module:filter/Condition}
*/
* The Condition service constructor.
* @property {module:filter/Condition}
*/
Condition,

/**
* The Conjunction service constructor.
* @property {module:filter/Conjunction}
*/
* The Conjunction service constructor.
* @property {module:filter/Conjunction}
*/
Conjunction,

/**
* The Disjunction service constructor.
* @property {module:filter/Disjunction}
*/
* The Disjunction service constructor.
* @property {module:filter/Disjunction}
*/
Disjunction,

/**
* The Expression service constructor.
* @property {module:filter/Expression}
*/
* The Expression service constructor.
* @property {module:filter/Expression}
*/
Expression,

/**
* The Filter service constructor.
* @property {module:filter/Filter}
*/
* The Filter service constructor.
* @property {module:filter/Filter}
*/
Filter,

/**
* The Operator service constructor.
* @property {module:api/Operator}
*/
* The Operator service constructor.
* @property {module:api/Operator}
*/
Operator,

/**
* The OAuth2AuthorizationCodeManager service constructor.
* @property {module:api/OAuth2AuthorizationCodeManager}
*/
* The OAuth2AuthorizationCodeManager service constructor.
* @property {module:api/OAuth2AuthorizationCodeManager}
*/
OAuth2AuthorizationCodeManager,

/**
* The Scope service constructor.
* @property {module:api/Scope}
*/
* The Scope service constructor.
* @property {module:api/Scope}
*/
Scope,

/**
* The OAuth2AuthorizationCodeTokenResponse service constructor.
* @property {module:api/OAuth2AuthorizationCodeTokenResponse}
*/
OAuth2AuthorizationCodeTokenResponse,
* The OAuth2TokenResponse service constructor.
* @property {module:api/OAuth2TokenResponse}
*/
OAuth2TokenResponse,

/**
* The OAuth2AuthorizationCodeParams service constructor.
* @property {module:api/OAuth2AuthorizationCodeParams}
*/
* The OAuth2AuthorizationCodeParams service constructor.
* @property {module:api/OAuth2AuthorizationCodeParams}
*/
OAuth2AuthorizationCodeParams,

/**
* The OAuth2DeviceCodeManager service constructor.
* @property {module:api/OAuth2DeviceCodeManager}
*/
OAuth2DeviceCodeManager,

/**
* The OAuth2DeviceCodeResponse service constructor.
* @property {module:api/OAuth2DeviceCodeResponse}
*/
OAuth2DeviceCodeResponse,

{{=< >=}}
<#emitJSDoc>/**
* The ApiClient constructor.
Expand All @@ -125,8 +139,8 @@ export {
<importPath></models><#apiInfo><#apis>,

<#emitJSDoc>/**
* The <importPath> service constructor.
* @property {module:<#invokerPackage><invokerPackage>/</invokerPackage><#apiPackage><apiPackage>/</apiPackage><importPath>}
*/</emitJSDoc>
* The <importPath> service constructor.
* @property {module:<#invokerPackage><invokerPackage>/</invokerPackage><#apiPackage><apiPackage>/</apiPackage><importPath>}
*/</emitJSDoc>
<importPath></apis></apiInfo>
};<={{ }}=>