From 6e4c167bfd7c69c8a1f89e1651c0e648fd49dc4f Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Mon, 1 Dec 2025 09:26:55 -0800 Subject: [PATCH] Add beta warning banners to OAuth 1.0 and NTLM plugins --- plugins/auth-ntlm/src/index.ts | 11 +++++++++++ plugins/auth-oauth1/src/index.ts | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/plugins/auth-ntlm/src/index.ts b/plugins/auth-ntlm/src/index.ts index 1e0d5fe4..47aa4cbb 100644 --- a/plugins/auth-ntlm/src/index.ts +++ b/plugins/auth-ntlm/src/index.ts @@ -8,6 +8,17 @@ export const plugin: PluginDefinition = { label: 'NTLM Auth', shortLabel: 'NTLM', args: [ + { + type: 'banner', + color: 'info', + inputs: [ + { + type: 'markdown', + content: + 'NTLM is still in beta. Please submit any issues to [Feedback](https://yaak.app/feedback).', + }, + ], + }, { type: 'text', name: 'username', diff --git a/plugins/auth-oauth1/src/index.ts b/plugins/auth-oauth1/src/index.ts index f335b6e5..85eb4a84 100644 --- a/plugins/auth-oauth1/src/index.ts +++ b/plugins/auth-oauth1/src/index.ts @@ -36,6 +36,17 @@ export const plugin: PluginDefinition = { label: 'OAuth 1.0', shortLabel: 'OAuth 1', args: [ + { + type: 'banner', + color: 'info', + inputs: [ + { + type: 'markdown', + content: + 'OAuth 1.0 is still in beta. Please submit any issues to [Feedback](https://yaak.app/feedback).', + }, + ], + }, { name: 'signatureMethod', label: 'Signature Method',