Merge branch 'main' into main

pull/1017/head
Tim Barley 2025-04-09 10:31:04 -04:00 committed by GitHub
commit 05e09f6a4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 15 additions and 0 deletions

View File

@ -211,6 +211,7 @@ export const handlers = [
return HttpResponse.json(twitchValidateError, { status: 401 }) return HttpResponse.json(twitchValidateError, { status: 401 })
} }
), ),
// MSEntra // MSEntra
http.post( http.post(
'https://login.microsoft.com/fake-tenant-id/oauth2/v2.0/token', 'https://login.microsoft.com/fake-tenant-id/oauth2/v2.0/token',

View File

@ -45,6 +45,20 @@
"require": { "require": {
"types": "./dist/providers/msentra/index.d.ts", "types": "./dist/providers/msentra/index.d.ts",
"default": "./dist/providers/msentra/index.js" "default": "./dist/providers/msentra/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./*": {
"import": {
"types": "./dist/providers/*/index.d.ts",
"default": "./dist/providers/*/index.js"
},
"require": {
"types": "./dist/providers/*/index.d.cts",
"default": "./dist/providers/*/index.cjs"
} }
} }
}, },