Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ before_install:
fi;
- pushd .; cd website; yarn install; popd
# install Deno
- sh -s v1.1.2 < ./CI/deno_install.sh
- sh -s v1.6.2 < ./CI/deno_install.sh
- export PATH="$HOME/.deno/bin:$PATH"

install:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
export * from "./http/http{{extensionForDeno}}";
export * from "./auth/auth{{extensionForDeno}}";
export * from "./models/all{{extensionForDeno}}";
export { createConfiguration, Configuration } from "./configuration{{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}}";

{{#useRxJS}}
export { Middleware } from './middleware{{extensionForDeno}}';
{{/useRxJS}}
{{^useRxJS}}
export { PromiseMiddleware as Middleware } from './middleware{{extensionForDeno}}';
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}}';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
export * from "./http/http";
export * from "./auth/auth";
export * from "./models/all";
export { createConfiguration, Configuration } from "./configuration"
export { createConfiguration } from "./configuration"
export { Configuration } from "./configuration"
export * from "./apis/exception";
export * from "./servers";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
export * from "./http/http.ts";
export * from "./auth/auth.ts";
export * from "./models/all.ts";
export { createConfiguration, Configuration } from "./configuration.ts"
export { createConfiguration } from "./configuration.ts"
export type { Configuration } from "./configuration.ts"
export * from "./apis/exception.ts";
export * from "./servers.ts";

export { PromiseMiddleware as Middleware } from './middleware.ts';
export type { PromiseMiddleware as Middleware } from './middleware.ts';
export { PromisePetApi as PetApi, PromiseStoreApi as StoreApi, PromiseUserApi as UserApi } from './types/PromiseAPI.ts';

Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
export * from "./http/http";
export * from "./auth/auth";
export * from "./models/all";
export { createConfiguration, Configuration } from "./configuration"
export { createConfiguration } from "./configuration"
export { Configuration } from "./configuration"
export * from "./apis/exception";
export * from "./servers";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
export * from "./http/http";
export * from "./auth/auth";
export * from "./models/all";
export { createConfiguration, Configuration } from "./configuration"
export { createConfiguration } from "./configuration"
export { Configuration } from "./configuration"
export * from "./apis/exception";
export * from "./servers";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
export * from "./http/http";
export * from "./auth/auth";
export * from "./models/all";
export { createConfiguration, Configuration } from "./configuration"
export { createConfiguration } from "./configuration"
export { Configuration } from "./configuration"
export * from "./apis/exception";
export * from "./servers";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
assertEquals,
assert,
fail,
} from "https://deno.land/std@0.58.0/testing/asserts.ts";
} from "https://deno.land/std@0.82.0/testing/asserts.ts";
import * as petstore from "../../../../builds/deno/index.ts";

const configuration = petstore.createConfiguration();
Expand Down