salesforce-alm
Version:
This package contains tools, and APIs, for an improved salesforce.com developer experience.
22 lines (20 loc) • 750 B
JavaScript
;
/*
* Copyright (c) 2020, salesforce.com, inc.
* All rights reserved.
* Licensed under the BSD 3-Clause license.
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.creatableOrgTypes = exports.OrgTypes = void 0;
var OrgTypes;
(function (OrgTypes) {
OrgTypes["Scratch"] = "scratch";
OrgTypes["Sandbox"] = "sandbox";
})(OrgTypes = exports.OrgTypes || (exports.OrgTypes = {}));
function creatableOrgTypes() {
// The string '*' is appended to the default
return [OrgTypes.Scratch, OrgTypes.Sandbox];
}
exports.creatableOrgTypes = creatableOrgTypes;
//# sourceMappingURL=orgTypes.js.map