/* oxlint-disable typescript/no-duplicate-enum-values -- JWTToken and Token intentionally share _token */ export enum SecurityVariablesEnvSuffix { Username = '_username', Password = '_password', JWTToken = '_token', APIKey = '', // oxlint-disable-next-line typescript/no-duplicate-enum-values Token = '_token', ClientId = '_client_id', ClientSecret = '_client_secret', ClientAssertion = '_client_assertion', } /* oxlint-enable typescript/no-duplicate-enum-values */