@google/dscc-gen
Version:
Create component & connector projects with sane defaults.
18 lines • 690 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuthType = exports.ProjectChoice = void 0;
var ProjectChoice;
(function (ProjectChoice) {
ProjectChoice["VIZ"] = "viz";
ProjectChoice["CONNECTOR"] = "connector";
})(ProjectChoice = exports.ProjectChoice || (exports.ProjectChoice = {}));
var AuthType;
(function (AuthType) {
AuthType["NONE"] = "NONE";
AuthType["OAUTH2"] = "OAUTH2";
AuthType["KEY"] = "KEY";
AuthType["USER_PASS"] = "USER_PASS";
AuthType["USER_TOKEN"] = "USER_TOKEN";
AuthType["PATH_USER_PASS"] = "PATH_USER_PASS";
})(AuthType = exports.AuthType || (exports.AuthType = {}));
//# sourceMappingURL=types.js.map