@salesforce/core-bundle 8.10.1 → 8.10.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/index.js +4 -4
- package/package.json +2 -2
package/lib/index.js
CHANGED
@@ -12310,7 +12310,7 @@ var require_package2 = __commonJS({
|
|
12310
12310
|
"package.json"(exports2, module2) {
|
12311
12311
|
module2.exports = {
|
12312
12312
|
name: "@salesforce/core-bundle",
|
12313
|
-
version: "8.10.
|
12313
|
+
version: "8.10.3",
|
12314
12314
|
description: "Core libraries to interact with SFDX projects, orgs, and APIs.",
|
12315
12315
|
main: "lib/index",
|
12316
12316
|
types: "lib/index.d.ts",
|
@@ -12347,7 +12347,7 @@ var require_package2 = __commonJS({
|
|
12347
12347
|
"messageTransformer/messageTransformer.ts"
|
12348
12348
|
],
|
12349
12349
|
dependencies: {
|
12350
|
-
"@jsforce/jsforce-node": "^3.
|
12350
|
+
"@jsforce/jsforce-node": "^3.8.1",
|
12351
12351
|
"@salesforce/kit": "^3.2.2",
|
12352
12352
|
"@salesforce/schemas": "^1.9.0",
|
12353
12353
|
"@salesforce/ts-types": "^2.0.10",
|
@@ -33026,7 +33026,7 @@ var require_VERSION = __commonJS({
|
|
33026
33026
|
"node_modules/@jsforce/jsforce-node/lib/VERSION.js"(exports2) {
|
33027
33027
|
"use strict";
|
33028
33028
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
33029
|
-
exports2.default = "3.
|
33029
|
+
exports2.default = "3.8.1";
|
33030
33030
|
}
|
33031
33031
|
});
|
33032
33032
|
|
@@ -44608,7 +44608,7 @@ var require_query = __commonJS({
|
|
44608
44608
|
if (!type_) {
|
44609
44609
|
throw new Error("SOQL based query needs SObject type information to bulk update.");
|
44610
44610
|
}
|
44611
|
-
const updateStream = typeof mapping === "function" ? record_stream_1.default.map(mapping) : record_stream_1.default.recordMapStream(mapping);
|
44611
|
+
const updateStream = typeof mapping === "function" ? record_stream_1.default.map(mapping) : record_stream_1.default.recordMapStream(mapping, options.skipRecordTemplateEval);
|
44612
44612
|
const thresholdNum = options.allowBulk === false ? -1 : typeof options.bulkThreshold === "number" ? options.bulkThreshold : (
|
44613
44613
|
// determine threshold if the connection version supports SObject collection API or not
|
44614
44614
|
this._conn._ensureVersion(42) ? DEFAULT_BULK_THRESHOLD : this._conn._maxRequest / 2
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salesforce/core-bundle",
|
3
|
-
"version": "8.10.
|
3
|
+
"version": "8.10.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",
|
@@ -37,7 +37,7 @@
|
|
37
37
|
"messageTransformer/messageTransformer.ts"
|
38
38
|
],
|
39
39
|
"dependencies": {
|
40
|
-
"@jsforce/jsforce-node": "^3.
|
40
|
+
"@jsforce/jsforce-node": "^3.8.1",
|
41
41
|
"@salesforce/kit": "^3.2.2",
|
42
42
|
"@salesforce/schemas": "^1.9.0",
|
43
43
|
"@salesforce/ts-types": "^2.0.10",
|