@salesforce/core 7.0.0 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +1 -0
- package/lib/index.js +6 -1
- package/package.json +9 -8
package/lib/index.d.ts
CHANGED
|
@@ -35,4 +35,5 @@ export { ScratchOrgCreateOptions, ScratchOrgCreateResult, scratchOrgCreate, scra
|
|
|
35
35
|
export { ScratchOrgInfo } from './org/scratchOrgTypes';
|
|
36
36
|
export { ScratchOrgLifecycleEvent, scratchOrgLifecycleEventName, scratchOrgLifecycleStages, } from './org/scratchOrgLifecycleEvents';
|
|
37
37
|
export { ScratchOrgCache } from './org/scratchOrgCache';
|
|
38
|
+
export { default as ScratchOrgSettingsGenerator } from './org/scratchOrgSettingsGenerator';
|
|
38
39
|
export * from './util/sfdc';
|
package/lib/index.js
CHANGED
|
@@ -19,9 +19,12 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
19
19
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
20
20
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
21
21
|
};
|
|
22
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
23
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
24
|
+
};
|
|
22
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23
26
|
exports.scratchOrgLifecycleEventName = exports.scratchOrgResume = exports.scratchOrgCreate = exports.lockInit = exports.PermissionSetAssignment = exports.User = exports.REQUIRED_FIELDS = exports.DefaultUserFields = exports.MyDomainResolver = exports.StreamingClient = exports.CometClient = exports.PollingClient = exports.SfError = exports.SchemaValidator = exports.SfProjectJson = exports.SfProject = exports.ORG_CONFIG_ALLOWED_PROPERTIES = exports.OrgConfigProperties = exports.OrgTypes = exports.SandboxEvents = exports.Org = exports.Messages = exports.Logger = exports.LoggerLevel = exports.getJwtAudienceUrl = exports.SfdcUrl = exports.WebOAuthServer = exports.Lifecycle = exports.Global = exports.Mode = exports.SFDX_HTTP_HEADERS = exports.Connection = exports.AuthRemover = exports.AuthInfo = exports.ConfigAggregator = exports.SandboxRequestCache = exports.SF_ALLOWED_PROPERTIES = exports.SFDX_ALLOWED_PROPERTIES = exports.SfConfigProperties = exports.SfdxPropertyKeys = exports.Config = exports.OrgUsersConfig = exports.DeviceOauthService = exports.StateAggregator = exports.EnvVars = exports.SUPPORTED_ENV_VARS = exports.EnvironmentVariable = exports.envVars = exports.TTLConfig = exports.ConfigFile = void 0;
|
|
24
|
-
exports.ScratchOrgCache = exports.scratchOrgLifecycleStages = void 0;
|
|
27
|
+
exports.ScratchOrgSettingsGenerator = exports.ScratchOrgCache = exports.scratchOrgLifecycleStages = void 0;
|
|
25
28
|
const messages_1 = require("./messages");
|
|
26
29
|
;
|
|
27
30
|
var configFile_1 = require("./config/configFile");
|
|
@@ -109,6 +112,8 @@ Object.defineProperty(exports, "scratchOrgLifecycleEventName", { enumerable: tru
|
|
|
109
112
|
Object.defineProperty(exports, "scratchOrgLifecycleStages", { enumerable: true, get: function () { return scratchOrgLifecycleEvents_1.scratchOrgLifecycleStages; } });
|
|
110
113
|
var scratchOrgCache_1 = require("./org/scratchOrgCache");
|
|
111
114
|
Object.defineProperty(exports, "ScratchOrgCache", { enumerable: true, get: function () { return scratchOrgCache_1.ScratchOrgCache; } });
|
|
115
|
+
var scratchOrgSettingsGenerator_1 = require("./org/scratchOrgSettingsGenerator");
|
|
116
|
+
Object.defineProperty(exports, "ScratchOrgSettingsGenerator", { enumerable: true, get: function () { return __importDefault(scratchOrgSettingsGenerator_1).default; } });
|
|
112
117
|
// Utility sub-modules
|
|
113
118
|
__exportStar(require("./util/sfdc"), exports);
|
|
114
119
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/core",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.2.0",
|
|
4
4
|
"description": "Core libraries to interact with SFDX projects, orgs, and APIs.",
|
|
5
5
|
"main": "lib/index",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -10,16 +10,17 @@
|
|
|
10
10
|
},
|
|
11
11
|
"exports": {
|
|
12
12
|
".": "./lib/index.js",
|
|
13
|
-
"./
|
|
14
|
-
"./
|
|
15
|
-
"./
|
|
13
|
+
"./config": "./lib/config/config.js",
|
|
14
|
+
"./configAggregator": "./lib/config/configAggregator.js",
|
|
15
|
+
"./envVars": "./lib/config/envVars.js",
|
|
16
16
|
"./lifecycle": "./lib/lifecycleEvents.js",
|
|
17
17
|
"./logger": "./lib/logger/logger.js",
|
|
18
|
-
"./
|
|
19
|
-
"./
|
|
20
|
-
"./config": "./lib/config/config.js",
|
|
18
|
+
"./messages": "./lib/messages.js",
|
|
19
|
+
"./messageTransformer": "./lib/messageTransformer.js",
|
|
21
20
|
"./project": "./lib/sfProject.js",
|
|
22
|
-
"./
|
|
21
|
+
"./sfError": "./lib/sfError.js",
|
|
22
|
+
"./stateAggregator": "./lib/stateAggregator/stateAggregator.js",
|
|
23
|
+
"./testSetup": "./lib/testSetup.js"
|
|
23
24
|
},
|
|
24
25
|
"scripts": {
|
|
25
26
|
"build": "wireit",
|