@salesforce/core 7.3.2 → 7.3.3
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/util/sfdcUrl.js +3 -1
- package/package.json +2 -2
package/lib/util/sfdcUrl.js
CHANGED
|
@@ -197,7 +197,9 @@ class SfdcUrl extends node_url_1.URL {
|
|
|
197
197
|
* @returns {boolean} true if this domain is a lightning domain
|
|
198
198
|
*/
|
|
199
199
|
isLightningDomain() {
|
|
200
|
-
return this.origin.includes('.lightning.force.com') ||
|
|
200
|
+
return (this.origin.includes('.lightning.force.com') ||
|
|
201
|
+
this.origin.includes('.lightning.crmforce.mil') ||
|
|
202
|
+
this.origin.includes('.lightning.sfcrmapps.cn'));
|
|
201
203
|
}
|
|
202
204
|
}
|
|
203
205
|
exports.SfdcUrl = SfdcUrl;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/core",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.3",
|
|
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",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"messageTransformer/messageTransformer.ts"
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@jsforce/jsforce-node": "^3.
|
|
55
|
+
"@jsforce/jsforce-node": "^3.2.0",
|
|
56
56
|
"@salesforce/kit": "^3.1.1",
|
|
57
57
|
"@salesforce/schemas": "^1.7.0",
|
|
58
58
|
"@salesforce/ts-types": "^2.0.9",
|