UNPKG

@salesforce/core

Version:

Core libraries to interact with SFDX projects, orgs, and APIs.

30 lines 926 B
"use strict"; /* * 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.OrgUsersConfig = void 0; const configFile_1 = require("./configFile"); /** * A config file that stores usernames for an org. */ class OrgUsersConfig extends configFile_1.ConfigFile { /** * Gets the config options for a given org ID. * * @param orgId The orgId. Generally this org would have multiple users configured. */ static getOptions(orgId) { return { isGlobal: true, isState: true, filename: `${orgId}.json`, orgId, }; } } exports.OrgUsersConfig = OrgUsersConfig; //# sourceMappingURL=orgUsersConfig.js.map