altair-graphql-core
Version:
Several of the core logic for altair graphql client
17 lines • 623 B
JavaScript
export var OAuth2Type;
(function (OAuth2Type) {
OAuth2Type["AUTHORIZATION_CODE"] = "auth_code";
OAuth2Type["AUTHORIZATION_CODE_PKCE"] = "auth_code_pkce";
OAuth2Type["CLIENT_CREDENTIALS"] = "client_credentials";
})(OAuth2Type || (OAuth2Type = {}));
export var AuthFormat;
(function (AuthFormat) {
AuthFormat["BASIC_AUTH"] = "basic";
AuthFormat["IN_BODY"] = "body";
})(AuthFormat || (AuthFormat = {}));
export var RequestFormat;
(function (RequestFormat) {
RequestFormat["JSON"] = "json";
RequestFormat["FORM"] = "form";
})(RequestFormat || (RequestFormat = {}));
//# sourceMappingURL=types.js.map