@prismatic-io/spectral
Version:
Utility library for building Prismatic connectors and code-native integrations
11 lines (10 loc) • 432 B
JavaScript
;
/* Types used to describe the format the platform expects for
* component and integration definitions. */
Object.defineProperty(exports, "__esModule", { value: true });
exports.OAuth2Type = void 0;
var OAuth2Type;
(function (OAuth2Type) {
OAuth2Type["ClientCredentials"] = "client_credentials";
OAuth2Type["AuthorizationCode"] = "authorization_code";
})(OAuth2Type || (exports.OAuth2Type = OAuth2Type = {}));