mirror of
https://github.com/foss42/apidash.git
synced 2025-12-02 10:49:49 +08:00
13 lines
146 B
Dart
13 lines
146 B
Dart
enum APIAuthType {
|
|
none,
|
|
basic,
|
|
apiKey,
|
|
bearer,
|
|
jwt,
|
|
digest,
|
|
oauth1,
|
|
oauth2,
|
|
}
|
|
|
|
enum EnvironmentVariableType { variable, secret }
|