Skip to content

Commit

Permalink
[ci] release (#1356)
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 25, 2023
1 parent 7568941 commit b97311e
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 16 deletions.
5 changes: 0 additions & 5 deletions .changeset/strange-birds-jam.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
6 changes: 6 additions & 0 deletions packages/openapi-typescript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# openapi-typescript

## 6.7.0

### Minor Changes

- [#1355](https://github.com/drwpow/openapi-typescript/pull/1355) [`7568941`](https://github.com/drwpow/openapi-typescript/commit/7568941fb378a9b94c96754553a720093645dd64) Thanks [@drwpow](https://github.com/drwpow)! - Revert optional parameters breaking change (v6.6.0, #1335)

## 6.6.2

### 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.2",
"version": "6.7.0",
"author": {
"name": "Drew Powers",
"email": "drew@pow.rs"
Expand Down

0 comments on commit b97311e

Please sign in to comment.