Files
bruno/tests/utils/constants/auth.ts
sharan-bruno 2d4d4e4037 fix(ui): correct “modified” indicator state across collection, folder, request, and presets/auth tabs (#3386) (#8027)
* fix: 3296 Folder-level No Auth inheritance is ignored; requests still use Collection Auth
2026-06-08 16:57:18 +05:30

14 lines
292 B
TypeScript

export const AUTH_MODE_LABELS = {
AWSV4: 'AWS Sig v4',
BASIC: 'Basic Auth',
BEARER: 'Bearer Token',
DIGEST: 'Digest Auth',
NTLM: 'NTLM Auth',
OAUTH1: 'OAuth 1.0',
OAUTH2: 'OAuth 2.0',
WSSE: 'WSSE Auth',
APIKEY: 'API Key',
INHERIT: 'Inherit',
NONE: 'No Auth'
} as const;