@salesforce/core 3.6.5 → 3.7.2
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/CHANGELOG.md +38 -12
- package/lib/config/config.d.ts +4 -0
- package/lib/config/config.js +4 -0
- package/lib/deviceOauthService.d.ts +3 -3
- package/lib/deviceOauthService.js +17 -18
- package/lib/exported.d.ts +3 -4
- package/lib/exported.js +1 -2
- package/lib/global.js +1 -1
- package/lib/logger.d.ts +1 -1
- package/lib/logger.js +1 -1
- package/lib/org/authInfo.d.ts +15 -40
- package/lib/org/authInfo.js +30 -71
- package/lib/org/connection.d.ts +18 -25
- package/lib/org/connection.js +50 -78
- package/lib/org/org.js +4 -5
- package/lib/org/user.d.ts +1 -0
- package/lib/org/user.js +11 -2
- package/lib/status/pollingClient.d.ts +2 -1
- package/lib/status/streamingClient.d.ts +3 -77
- package/lib/status/streamingClient.js +3 -9
- package/lib/testSetup.d.ts +4 -3
- package/lib/testSetup.js +1 -1
- package/lib/util/getJwtAudienceUrl.d.ts +2 -2
- package/lib/util/sfdcUrl.js +1 -0
- package/lib/webOAuthServer.d.ts +2 -3
- package/lib/webOAuthServer.js +2 -1
- package/messages/config.md +6 -2
- package/package.json +5 -2
- package/lib/status/client.d.ts +0 -15
- package/lib/status/client.js +0 -9
package/messages/config.md
CHANGED
|
@@ -22,6 +22,10 @@ Specify a valid Salesforce instance URL.
|
|
|
22
22
|
|
|
23
23
|
Specify a valid Salesforce API version, for example, 42.0.
|
|
24
24
|
|
|
25
|
+
# invalidCustomOrgMetadataTemplates
|
|
26
|
+
|
|
27
|
+
Specify a valid repository URL or directory for the custom org metadata templates.
|
|
28
|
+
|
|
25
29
|
# invalidIsvDebuggerSid
|
|
26
30
|
|
|
27
31
|
Specify a valid Debugger SID.
|
|
@@ -97,7 +101,7 @@ ISV debugger URL
|
|
|
97
101
|
|
|
98
102
|
# apiVersion
|
|
99
103
|
|
|
100
|
-
API version of your project. Default: API version of your Dev Hub org.
|
|
104
|
+
API version of your project. Default: API version of your Dev Hub org.
|
|
101
105
|
|
|
102
106
|
# disableTelemetry
|
|
103
107
|
|
|
@@ -109,7 +113,7 @@ Maximum number of Salesforce records returned by a CLI command. Default: 10,000.
|
|
|
109
113
|
|
|
110
114
|
# restDeploy
|
|
111
115
|
|
|
112
|
-
Whether deployments use the Metadata REST API (true) or SOAP API (false, default value).
|
|
116
|
+
Whether deployments use the Metadata REST API (true) or SOAP API (false, default value).
|
|
113
117
|
|
|
114
118
|
# instanceUrl
|
|
115
119
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.2",
|
|
4
4
|
"description": "Core libraries to interact with SFDX projects, orgs, and APIs.",
|
|
5
5
|
"main": "lib/exported",
|
|
6
6
|
"license": "BSD-3-Clause",
|
|
@@ -46,11 +46,13 @@
|
|
|
46
46
|
"@types/graceful-fs": "^4.1.5",
|
|
47
47
|
"@types/jsforce": "^1.9.29",
|
|
48
48
|
"@types/mkdirp": "^1.0.1",
|
|
49
|
+
"@types/sfdx-faye": "^1.0.0",
|
|
49
50
|
"change-case": "^4.1.2",
|
|
50
51
|
"debug": "^3.1.0",
|
|
52
|
+
"form-data": "^4.0.0",
|
|
51
53
|
"graceful-fs": "^4.2.4",
|
|
52
54
|
"jsen": "0.6.6",
|
|
53
|
-
"jsforce": "
|
|
55
|
+
"jsforce": "2.0.0-beta.7",
|
|
54
56
|
"jsonwebtoken": "8.5.0",
|
|
55
57
|
"mkdirp": "1.0.4",
|
|
56
58
|
"sfdx-faye": "^1.0.9",
|
|
@@ -64,6 +66,7 @@
|
|
|
64
66
|
"@types/debug": "0.0.30",
|
|
65
67
|
"@types/jsen": "0.0.19",
|
|
66
68
|
"@types/jsonwebtoken": "8.3.2",
|
|
69
|
+
"@types/sfdx-faye": "^1.0.0",
|
|
67
70
|
"@types/shelljs": "0.7.8",
|
|
68
71
|
"@types/sinon": "^9.0.8",
|
|
69
72
|
"@typescript-eslint/eslint-plugin": "^4.2.0",
|
package/lib/status/client.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { AnyJson } from '@salesforce/ts-types';
|
|
2
|
-
/**
|
|
3
|
-
* Return type for the Streaming and Polling client.
|
|
4
|
-
*/
|
|
5
|
-
export interface StatusResult {
|
|
6
|
-
/**
|
|
7
|
-
* If the result of the streaming or polling client is expected to return a result
|
|
8
|
-
*/
|
|
9
|
-
payload?: AnyJson;
|
|
10
|
-
/**
|
|
11
|
-
* Indicates to the streaming or polling client that the subscriber has what its needs. If `true` the client will end
|
|
12
|
-
* the messaging exchanges with the endpoint.
|
|
13
|
-
*/
|
|
14
|
-
completed: boolean;
|
|
15
|
-
}
|
package/lib/status/client.js
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/*
|
|
3
|
-
* Copyright (c) 2020, salesforce.com, inc.
|
|
4
|
-
* All rights reserved.
|
|
5
|
-
* Licensed under the BSD 3-Clause license.
|
|
6
|
-
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
|
|
7
|
-
*/
|
|
8
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
-
//# sourceMappingURL=client.js.map
|