Skip to content

Commit

Permalink
Bump openapi3-ts from 4.3.3 to 4.4.0 (#309)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: samchungy <[email protected]>
  • Loading branch information
dependabot[bot] and samchungy authored Sep 3, 2024
1 parent 3732e51 commit 562546e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"@redocly/cli": "1.22.1",
"@types/node": "^20.3.0",
"eslint-plugin-zod-openapi": "^0.2.0",
"openapi3-ts": "4.3.3",
"openapi3-ts": "4.4.0",
"skuba": "8.2.1",
"yaml": "2.5.0",
"zod": "3.23.8"
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/openapi3-ts/dist/dsl/openapi-builder30.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import * as yaml from 'yaml';
import * as oa from '../model/openapi30';
export declare class OpenApiBuilder {
rootDoc: oa.OpenAPIObject;
static create(doc?: oa.OpenAPIObject): OpenApiBuilder;
constructor(doc?: oa.OpenAPIObject);
getSpec(): oa.OpenAPIObject;
getSpecAsJson(replacer?: (key: string, value: unknown) => unknown, space?: string | number): string;
getSpecAsYaml(): string;
getSpecAsYaml(replacer?: Parameters<typeof yaml.stringify>[1], options?: Parameters<typeof yaml.stringify>[2]): string;
private static isValidOpenApiVersion;
addOpenApiVersion(openApiVersion: string): OpenApiBuilder;
addInfo(info: oa.InfoObject): OpenApiBuilder;
Expand Down
3 changes: 2 additions & 1 deletion src/openapi3-ts/dist/dsl/openapi-builder31.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import * as yaml from 'yaml';
import * as oa from '../model/openapi31';
export declare class OpenApiBuilder {
rootDoc: oa.OpenAPIObject;
static create(doc?: oa.OpenAPIObject): OpenApiBuilder;
constructor(doc?: oa.OpenAPIObject);
getSpec(): oa.OpenAPIObject;
getSpecAsJson(replacer?: (key: string, value: unknown) => unknown, space?: string | number): string;
getSpecAsYaml(): string;
getSpecAsYaml(replacer?: Parameters<typeof yaml.stringify>[1], options?: Parameters<typeof yaml.stringify>[2]): string;
private static isValidOpenApiVersion;
addOpenApiVersion(openApiVersion: string): OpenApiBuilder;
addInfo(info: oa.InfoObject): OpenApiBuilder;
Expand Down

0 comments on commit 562546e

Please sign in to comment.