@salesforce/core-bundle 6.5.5 → 6.7.1
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/{exported.d.ts → index.d.ts} +82 -44
- package/lib/{exported.js → index.js} +18583 -6517
- package/messages/encryption.md +13 -0
- package/messages/org.md +4 -0
- package/package.json +6 -6
package/messages/encryption.md
CHANGED
@@ -83,3 +83,16 @@ Command failed with response:
|
|
83
83
|
# macKeychainOutOfSync
|
84
84
|
|
85
85
|
We’ve encountered an error with the Mac keychain being out of sync with your `sfdx` credentials. To fix the problem, sync your credentials by authenticating into your org again using the auth commands.
|
86
|
+
|
87
|
+
# v1CryptoWithV2KeyWarning
|
88
|
+
|
89
|
+
The SF_CRYPTO_V2 environment variable was set to "false" but a v2 crypto key was detected. v1 crypto can only be used with a v1 key. Unset the SF_CRYPTO_V2 environment variable.
|
90
|
+
|
91
|
+
# v2CryptoWithV1KeyWarning
|
92
|
+
|
93
|
+
SF_CRYPTO_V2 was set to "true" but a v1 crypto key was detected. v2 crypto can only be used with a v2 key. To generate a v2 key:
|
94
|
+
|
95
|
+
1. Logout of all orgs: `sf org logout --all`
|
96
|
+
2. Delete the sfdx keychain entry (account: local, service: sfdx). If `SF_USE_GENERIC_UNIX_KEYCHAIN=true` env var is set, you can delete the `key.json` file.
|
97
|
+
3. Set `SF_CRYPTO_V2=true` env var.
|
98
|
+
4. Re-Authenticate with your orgs using the CLI org login commands.
|
package/messages/org.md
CHANGED
@@ -34,6 +34,10 @@ We can't find a SandboxProcess for the sandbox %s.
|
|
34
34
|
|
35
35
|
The sandbox org creation failed with a result of %s.
|
36
36
|
|
37
|
+
# sandboxInfoRefreshFailed
|
38
|
+
|
39
|
+
The sandbox org refresh failed with a result of %s.
|
40
|
+
|
37
41
|
# missingAuthUsername
|
38
42
|
|
39
43
|
The sandbox %s does not have an authorized username.
|
package/package.json
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salesforce/core-bundle",
|
3
|
-
"version": "6.
|
3
|
+
"version": "6.7.1",
|
4
4
|
"description": "Core libraries to interact with SFDX projects, orgs, and APIs.",
|
5
|
-
"main": "lib/
|
6
|
-
"types": "lib/
|
5
|
+
"main": "lib/index",
|
6
|
+
"types": "lib/index.d.ts",
|
7
7
|
"license": "BSD-3-Clause",
|
8
8
|
"engines": {
|
9
9
|
"node": ">=18.0.0"
|
@@ -39,7 +39,7 @@
|
|
39
39
|
"@salesforce/kit": "^3.0.15",
|
40
40
|
"@salesforce/schemas": "^1.6.1",
|
41
41
|
"@salesforce/ts-types": "^2.0.9",
|
42
|
-
"@types/semver": "^7.5.
|
42
|
+
"@types/semver": "^7.5.8",
|
43
43
|
"ajv": "^8.12.0",
|
44
44
|
"change-case": "^4.1.2",
|
45
45
|
"faye": "^1.4.0",
|
@@ -60,7 +60,7 @@
|
|
60
60
|
"@salesforce/ts-sinon": "^1.4.19",
|
61
61
|
"@types/benchmark": "^2.1.5",
|
62
62
|
"@types/chai-string": "^1.4.5",
|
63
|
-
"@types/jsonwebtoken": "9.0.
|
63
|
+
"@types/jsonwebtoken": "9.0.6",
|
64
64
|
"@types/proper-lockfile": "^4.1.4",
|
65
65
|
"benchmark": "^2.1.4",
|
66
66
|
"chai-string": "^1.5.0",
|
@@ -70,7 +70,7 @@
|
|
70
70
|
"npm-dts": "^1.3.12",
|
71
71
|
"ts-node": "^10.9.2",
|
72
72
|
"ts-patch": "^3.1.1",
|
73
|
-
"typescript": "^5.
|
73
|
+
"typescript": "^5.4.2"
|
74
74
|
},
|
75
75
|
"repository": {
|
76
76
|
"type": "git",
|