Skip to content

Commit b97311e

Browse files
[ci] release (#1356)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 7568941 commit b97311e

File tree

7 files changed

+17
-16
lines changed

7 files changed

+17
-16
lines changed

.changeset/strange-birds-jam.md

-5
This file was deleted.

packages/openapi-fetch/examples/nextjs/lib/api/v1.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export interface operations {
109109
* @description Returns a a list of breeds
110110
*/
111111
getBreeds: {
112-
parameters?: {
112+
parameters: {
113113
query?: {
114114
/** @description limit the amount of results returned */
115115
limit?: number;
@@ -135,7 +135,7 @@ export interface operations {
135135
* @description Returns a random fact
136136
*/
137137
getRandomFact: {
138-
parameters?: {
138+
parameters: {
139139
query?: {
140140
/** @description maximum length of returned fact */
141141
max_length?: number;
@@ -167,7 +167,7 @@ export interface operations {
167167
* @description Returns a a list of facts
168168
*/
169169
getFacts: {
170-
parameters?: {
170+
parameters: {
171171
query?: {
172172
/** @description maximum length of returned fact */
173173
max_length?: number;

packages/openapi-fetch/examples/react-query/src/lib/api/v1.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export interface operations {
109109
* @description Returns a a list of breeds
110110
*/
111111
getBreeds: {
112-
parameters?: {
112+
parameters: {
113113
query?: {
114114
/** @description limit the amount of results returned */
115115
limit?: number;
@@ -135,7 +135,7 @@ export interface operations {
135135
* @description Returns a random fact
136136
*/
137137
getRandomFact: {
138-
parameters?: {
138+
parameters: {
139139
query?: {
140140
/** @description maximum length of returned fact */
141141
max_length?: number;
@@ -167,7 +167,7 @@ export interface operations {
167167
* @description Returns a a list of facts
168168
*/
169169
getFacts: {
170-
parameters?: {
170+
parameters: {
171171
query?: {
172172
/** @description maximum length of returned fact */
173173
max_length?: number;

packages/openapi-fetch/examples/sveltekit/src/lib/api/v1.d.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export interface operations {
109109
* @description Returns a a list of breeds
110110
*/
111111
getBreeds: {
112-
parameters?: {
112+
parameters: {
113113
query?: {
114114
/** @description limit the amount of results returned */
115115
limit?: number;
@@ -135,7 +135,7 @@ export interface operations {
135135
* @description Returns a random fact
136136
*/
137137
getRandomFact: {
138-
parameters?: {
138+
parameters: {
139139
query?: {
140140
/** @description maximum length of returned fact */
141141
max_length?: number;
@@ -167,7 +167,7 @@ export interface operations {
167167
* @description Returns a a list of facts
168168
*/
169169
getFacts: {
170-
parameters?: {
170+
parameters: {
171171
query?: {
172172
/** @description maximum length of returned fact */
173173
max_length?: number;

packages/openapi-fetch/test/v1.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export interface paths {
1616
};
1717
"/blogposts": {
1818
get: {
19-
parameters?: {
19+
parameters: {
2020
query?: {
2121
tags?: string[];
2222
};

packages/openapi-typescript/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# openapi-typescript
22

3+
## 6.7.0
4+
5+
### Minor Changes
6+
7+
- [#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)
8+
39
## 6.6.2
410

511
### Patch Changes

packages/openapi-typescript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "openapi-typescript",
33
"description": "Convert OpenAPI 3.0 & 3.1 schemas to TypeScript",
4-
"version": "6.6.2",
4+
"version": "6.7.0",
55
"author": {
66
"name": "Drew Powers",
77
"email": "[email protected]"

0 commit comments

Comments
 (0)