Files
apidash/packages/apidash_core/lib/consts.dart
2025-07-02 21:03:16 +05:30

13 lines
146 B
Dart

enum APIAuthType {
none,
basic,
apiKey,
bearer,
jwt,
digest,
oauth1,
oauth2,
}
enum EnvironmentVariableType { variable, secret }