Skip to content

Commit b0ca3bd

Browse files
author
Automated Version Bump
committed
ci: version bump to 0.13.7
1 parent 11e24cd commit b0ca3bd

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ciptex/openapi-typescript-codegen",
3-
"version": "0.13.6",
3+
"version": "0.13.7",
44
"description": "Library that generates Typescript clients based on the OpenAPI specification.",
55
"author": "Ferdi Koomen & Matthew C Duggan",
66
"homepage": "https://github.com/Ciptex/openapi-typescript-codegen",

test/__snapshots__/index.spec.ts.snap

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ function isStringWithValue(value: any): value is string {
230230
return isString(value) && value !== '';
231231
}
232232

233+
// @ts-ignore
233234
function isBlob(value: any): value is Blob {
234235
return (
235236
typeof value === 'object' &&
@@ -249,6 +250,7 @@ function isFormData(value: any): value is FormData {
249250

250251
function base64(str: string): string {
251252
try {
253+
// @ts-ignore
252254
return btoa(str);
253255
} catch (err) {
254256
// @ts-ignore
@@ -2961,6 +2963,7 @@ function isStringWithValue(value: any): value is string {
29612963
return isString(value) && value !== '';
29622964
}
29632965

2966+
// @ts-ignore
29642967
function isBlob(value: any): value is Blob {
29652968
return (
29662969
typeof value === 'object' &&
@@ -2980,6 +2983,7 @@ function isFormData(value: any): value is FormData {
29802983

29812984
function base64(str: string): string {
29822985
try {
2986+
// @ts-ignore
29832987
return btoa(str);
29842988
} catch (err) {
29852989
// @ts-ignore

0 commit comments

Comments
 (0)