mirror of
https://github.com/foss42/apidash.git
synced 2025-12-02 02:39:19 +08:00
24 lines
325 B
Dart
24 lines
325 B
Dart
import 'dart:convert';
|
|
|
|
enum APIType {
|
|
rest("HTTP", "HTTP"),
|
|
graphql("GraphQL", "GQL");
|
|
|
|
const APIType(this.label, this.abbr);
|
|
final String label;
|
|
final String abbr;
|
|
}
|
|
|
|
enum APIAuthType {
|
|
none,
|
|
basic,
|
|
apiKey,
|
|
bearer,
|
|
jwt,
|
|
digest,
|
|
oauth1,
|
|
oauth2,
|
|
}
|
|
|
|
enum EnvironmentVariableType { variable, secret }
|