Skip to content

Commit 21b42da

Browse files
committed
fix typo in interface name
1 parent 3274312 commit 21b42da

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

packages/openapi-types-ghec/types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126354,7 +126354,7 @@ export interface operations {
126354126354
};
126355126355
requestBody?: {
126356126356
content: {
126357-
"application/octet-stream": string | File | UInt8Array | Blob;
126357+
"application/octet-stream": string | File | Uint8Array | Blob;
126358126358
};
126359126359
};
126360126360
responses: {

packages/openapi-types-ghes-3.14/types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104161,7 +104161,7 @@ export interface operations {
104161104161
};
104162104162
requestBody?: {
104163104163
content: {
104164-
"application/octet-stream": string | File | UInt8Array | Blob;
104164+
"application/octet-stream": string | File | Uint8Array | Blob;
104165104165
};
104166104166
};
104167104167
responses: {

packages/openapi-types-ghes-3.15/types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104990,7 +104990,7 @@ export interface operations {
104990104990
};
104991104991
requestBody?: {
104992104992
content: {
104993-
"application/octet-stream": string | File | UInt8Array | Blob;
104993+
"application/octet-stream": string | File | Uint8Array | Blob;
104994104994
};
104995104995
};
104996104996
responses: {

packages/openapi-types-ghes-3.16/types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106446,7 +106446,7 @@ export interface operations {
106446106446
};
106447106447
requestBody?: {
106448106448
content: {
106449-
"application/octet-stream": string | File | UInt8Array | Blob;
106449+
"application/octet-stream": string | File | Uint8Array | Blob;
106450106450
};
106451106451
};
106452106452
responses: {

packages/openapi-types-ghes-3.17/types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106730,7 +106730,7 @@ export interface operations {
106730106730
};
106731106731
requestBody?: {
106732106732
content: {
106733-
"application/octet-stream": string | File | UInt8Array | Blob;
106733+
"application/octet-stream": string | File | Uint8Array | Blob;
106734106734
};
106735106735
};
106736106736
responses: {

packages/openapi-types-ghes-3.18/types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107812,7 +107812,7 @@ export interface operations {
107812107812
};
107813107813
requestBody?: {
107814107814
content: {
107815-
"application/octet-stream": string | File | UInt8Array | Blob;
107815+
"application/octet-stream": string | File | Uint8Array | Blob;
107816107816
};
107817107817
};
107818107818
responses: {

packages/openapi-types/types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114946,7 +114946,7 @@ export interface operations {
114946114946
};
114947114947
requestBody?: {
114948114948
content: {
114949-
"application/octet-stream": string | File | UInt8Array | Blob;
114949+
"application/octet-stream": string | File | Uint8Array | Blob;
114950114950
};
114951114951
};
114952114952
responses: {

scripts/generate-types.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ type Repository = components["schemas"]["full-repository"]
9494
// Make sure that file upload endpoints don't use 'string' type for binary data
9595
// Use some common types that can represent binary data in various environments
9696
return schemaObject.nullable
97-
? "string | File | UInt8Array | Blob | null"
98-
: "string | File | UInt8Array | Blob";
97+
? "string | File | Uint8Array | Blob | null"
98+
: "string | File | Uint8Array | Blob";
9999
}
100100
return undefined;
101101
},

0 commit comments

Comments
 (0)