Skip to content

Commit

Permalink
fix: fixed js templates oauth classes
Browse files Browse the repository at this point in the history
  • Loading branch information
barcigabri authored Oct 30, 2024
1 parent 00e2545 commit 3053d57
Showing 1 changed file with 50 additions and 36 deletions.
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>
};<={{ }}=>

0 comments on commit 3053d57

Please sign in to comment.