mirror of
https://github.com/foss42/apidash.git
synced 2025-05-28 04:08:39 +08:00
wip: env models, provider
This commit is contained in:
@ -259,6 +259,8 @@ enum HTTPVerb { get, head, post, put, patch, delete }
|
||||
|
||||
enum FormDataType { text, file }
|
||||
|
||||
enum EnvironmentVariableType { variable, secret }
|
||||
|
||||
const kSupportedUriSchemes = ["https", "http"];
|
||||
const kDefaultUriScheme = "https";
|
||||
const kMethodsWithBody = [
|
||||
@ -311,6 +313,8 @@ enum CodegenLanguage {
|
||||
const JsonEncoder kEncoder = JsonEncoder.withIndent(' ');
|
||||
const LineSplitter kSplitter = LineSplitter();
|
||||
|
||||
const String kGlobalEnvironmentId = "global";
|
||||
|
||||
const kHeaderContentType = "Content-Type";
|
||||
|
||||
const kTypeApplication = 'application';
|
||||
|
Reference in New Issue
Block a user