Skip to content

Commit

Permalink
[ci] release (#1351)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Sep 23, 2023
1 parent 33b2c4f commit ec5522b
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 26 deletions.
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
6 changes: 3 additions & 3 deletions packages/openapi-fetch/examples/sveltekit/src/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
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": "drew@pow.rs"
Expand Down

0 comments on commit ec5522b

Please sign in to comment.