adjust frontend to new backend
This commit is contained in:
41
templates/index.mustache
Normal file
41
templates/index.mustache
Normal file
@@ -0,0 +1,41 @@
|
||||
export * from "./http/http{{extensionForDeno}}";
|
||||
export * from "./auth/auth{{extensionForDeno}}";
|
||||
export * from "./models/all{{extensionForDeno}}";
|
||||
export { createConfiguration } from "./configuration{{extensionForDeno}}"
|
||||
export{{#platforms}}{{#deno}} type{{/deno}}{{/platforms}} { Configuration } from "./configuration{{extensionForDeno}}"
|
||||
export * from "./apis/exception{{extensionForDeno}}";
|
||||
export * from "./servers{{extensionForDeno}}";
|
||||
export { RequiredError } from "./apis/baseapi{{extensionForDeno}}";
|
||||
|
||||
{{#useRxJS}}
|
||||
export { Middleware } from './middleware{{extensionForDeno}}';
|
||||
{{/useRxJS}}
|
||||
{{^useRxJS}}
|
||||
export{{#platforms}}{{#deno}} type{{/deno}}{{/platforms}} { PromiseMiddleware as Middleware } from './middleware{{extensionForDeno}}';
|
||||
{{/useRxJS}}
|
||||
{{#useObjectParameters}}
|
||||
export { {{#apiInfo}}{{#apis}}{{#operations}}{{#operation}}{{classname}}{{operationIdCamelCase}}Request, {{/operation}}Object{{classname}} as {{classname}}{{^-last}}, {{/-last}} {{/operations}}{{/apis}}{{/apiInfo}}} from './types/ObjectParamAPI{{extensionForDeno}}';
|
||||
{{/useObjectParameters}}
|
||||
{{^useObjectParameters}}
|
||||
{{#useRxJS}}
|
||||
export { {{#apiInfo}}{{#apis}}{{#operations}}Observable{{classname}} as {{classname}}{{^-last}}, {{/-last}} {{/operations}}{{/apis}}{{/apiInfo}}} from './types/ObservableAPI{{extensionForDeno}}';
|
||||
{{/useRxJS}}
|
||||
{{^useRxJS}}
|
||||
export { {{#apiInfo}}{{#apis}}{{#operations}}Promise{{classname}} as {{classname}}{{^-last}}, {{/-last}} {{/operations}}{{/apis}}{{/apiInfo}}} from './types/PromiseAPI{{extensionForDeno}}';
|
||||
{{/useRxJS}}
|
||||
{{/useObjectParameters}}
|
||||
|
||||
{{#useInversify}}
|
||||
export * from "./services/index{{extensionForDeno}}";
|
||||
{{#useObjectParameters}}
|
||||
export { {{#apiInfo}}{{#apis}}{{#operations}}AbstractObject{{classname}} as Abstract{{classname}}{{^-last}}, {{/-last}} {{/operations}}{{/apis}}{{/apiInfo}}} from './services/ObjectParamAPI';
|
||||
{{/useObjectParameters}}
|
||||
{{^useObjectParameters}}
|
||||
{{#useRxJS}}
|
||||
export { {{#apiInfo}}{{#apis}}{{#operations}}AbstractObservable{{classname}} as Abstract{{classname}}{{^-last}}, {{/-last}} {{/operations}}{{/apis}}{{/apiInfo}}} from './services/ObservableAPI{{extensionForDeno}}';
|
||||
{{/useRxJS}}
|
||||
{{^useRxJS}}
|
||||
export { {{#apiInfo}}{{#apis}}{{#operations}}AbstractPromise{{classname}} as Abstract{{classname}}{{^-last}}, {{/-last}} {{/operations}}{{/apis}}{{/apiInfo}}} from './services/PromiseAPI{{extensionForDeno}}';
|
||||
{{/useRxJS}}
|
||||
{{/useObjectParameters}}
|
||||
{{/useInversify}}
|
||||
Reference in New Issue
Block a user