Skip to content

Commit 68de0dd

Browse files
committed
fix: narrow type
1 parent d0970d0 commit 68de0dd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/types/api.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -458,14 +458,14 @@ export interface paths extends PathRegistry {
458458
get: operations['get_auth_nonce']
459459
parameters: {
460460
path: null
461-
credentials: RequestCredentials
461+
credentials: 'include'
462462
}
463463
}
464464
'/v1/auth/verify': {
465465
post: operations['verify_auth']
466466
parameters: {
467467
path: null
468-
credentials: RequestCredentials
468+
credentials: 'include'
469469
body: {
470470
message: string
471471
signature: string
@@ -1201,7 +1201,7 @@ export interface operations {
12011201
}
12021202
get_auth_nonce: {
12031203
parameters: {
1204-
credentials: RequestCredentials
1204+
credentials: 'include'
12051205
}
12061206
responses: {
12071207
200: {
@@ -1215,7 +1215,7 @@ export interface operations {
12151215
message: string
12161216
signature: string
12171217
}
1218-
credentials: RequestCredentials
1218+
credentials: 'include'
12191219
}
12201220
responses: {
12211221
200: {

0 commit comments

Comments
 (0)