@devopness/sdk-js
Version:
Devopness API JS/TS SDK - Painless essential DevOps to everyone
27 lines (26 loc) • 873 B
JavaScript
/* eslint-disable */
/**
* devopness API
* Devopness API - Painless essential DevOps to everyone
*
* The version of the OpenAPI document: latest
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SourceType = void 0;
/**
* The \'source type\' from which the application source code will be retrieved and deployed. It can be one of `branch`, `tag` or `commit`. If not provided, the application\'s default branch will be used.
* @export
* @enum {string}
*/
var SourceType;
(function (SourceType) {
SourceType["Branch"] = "branch";
SourceType["Commit"] = "commit";
SourceType["Tag"] = "tag";
})(SourceType || (exports.SourceType = SourceType = {}));
;