Skip to content

[ci] release #1351

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

Merged
merged 1 commit into from
Sep 23, 2023
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
5 changes: 0 additions & 5 deletions .changeset/brown-trainers-wink.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chilled-swans-hunt.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nice-sheep-juggle.md

This file was deleted.

6 changes: 3 additions & 3 deletions packages/openapi-fetch/examples/nextjs/lib/api/v1.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export interface operations {
* @description Returns a a list of breeds
*/
getBreeds: {
parameters: {
parameters?: {
query?: {
/** @description limit the amount of results returned */
limit?: number;
Expand All @@ -135,7 +135,7 @@ export interface operations {
* @description Returns a random fact
*/
getRandomFact: {
parameters: {
parameters?: {
query?: {
/** @description maximum length of returned fact */
max_length?: number;
Expand Down Expand Up @@ -167,7 +167,7 @@ export interface operations {
* @description Returns a a list of facts
*/
getFacts: {
parameters: {
parameters?: {
query?: {
/** @description maximum length of returned fact */
max_length?: number;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export interface operations {
* @description Returns a a list of breeds
*/
getBreeds: {
parameters: {
parameters?: {
query?: {
/** @description limit the amount of results returned */
limit?: number;
Expand All @@ -135,7 +135,7 @@ export interface operations {
* @description Returns a random fact
*/
getRandomFact: {
parameters: {
parameters?: {
query?: {
/** @description maximum length of returned fact */
max_length?: number;
Expand Down Expand Up @@ -167,7 +167,7 @@ export interface operations {
* @description Returns a a list of facts
*/
getFacts: {
parameters: {
parameters?: {
query?: {
/** @description maximum length of returned fact */
max_length?: number;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export interface operations {
* @description Returns a a list of breeds
*/
getBreeds: {
parameters: {
parameters?: {
query?: {
/** @description limit the amount of results returned */
limit?: number;
Expand All @@ -135,7 +135,7 @@ export interface operations {
* @description Returns a random fact
*/
getRandomFact: {
parameters: {
parameters?: {
query?: {
/** @description maximum length of returned fact */
max_length?: number;
Expand Down Expand Up @@ -167,7 +167,7 @@ export interface operations {
* @description Returns a a list of facts
*/
getFacts: {
parameters: {
parameters?: {
query?: {
/** @description maximum length of returned fact */
max_length?: number;
Expand Down
2 changes: 1 addition & 1 deletion packages/openapi-fetch/test/v1.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export interface paths {
};
"/blogposts": {
get: {
parameters: {
parameters?: {
query?: {
tags?: string[];
};
Expand Down
10 changes: 10 additions & 0 deletions packages/openapi-typescript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# openapi-typescript

## 6.6.2

### Patch Changes

- [#1348](https://github.com/drwpow/openapi-typescript/pull/1348) [`f6fdd2f`](https://github.com/drwpow/openapi-typescript/commit/f6fdd2f59d035fec22f7fee27136939faae4628b) Thanks [@drwpow](https://github.com/drwpow)! - Improve YAML vs JSON parsing

- [#1352](https://github.com/drwpow/openapi-typescript/pull/1352) [`33b2c4f`](https://github.com/drwpow/openapi-typescript/commit/33b2c4f6d9f8d2a1bd42b13b3c8c168ed86609d6) Thanks [@drwpow](https://github.com/drwpow)! - Fix all parameters optional

- [#1345](https://github.com/drwpow/openapi-typescript/pull/1345) [`6f078c1`](https://github.com/drwpow/openapi-typescript/commit/6f078c1eb008a278858e6764e92af6ceb39922b4) Thanks [@SchabaJo](https://github.com/SchabaJo)! - Mirror directory structure of input files if output is a directory to prevent overwriting the same file again and again.

## 6.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/openapi-typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "openapi-typescript",
"description": "Convert OpenAPI 3.0 & 3.1 schemas to TypeScript",
"version": "6.6.1",
"version": "6.6.2",
"author": {
"name": "Drew Powers",
"email": "[email protected]"
Expand Down