(value: string)
| 10 | }; |
| 11 | |
| 12 | const quoteAuthParam = (value: string) => |
| 13 | `"${value.replaceAll("\\", "\\\\").replaceAll('"', '\\"')}"`; |
| 14 | |
| 15 | export const bearerChallenge = (auth: UnauthorizedAuth, protectedResourceMetadataUrl: string) => { |
| 16 | const params = |