@salesforce/core-bundle 8.8.1 → 8.8.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 +11 -7
- package/package.json +2 -2
package/lib/index.js
CHANGED
@@ -12328,7 +12328,7 @@ var require_package2 = __commonJS({
|
|
12328
12328
|
"package.json"(exports2, module2) {
|
12329
12329
|
module2.exports = {
|
12330
12330
|
name: "@salesforce/core-bundle",
|
12331
|
-
version: "8.8.
|
12331
|
+
version: "8.8.3",
|
12332
12332
|
description: "Core libraries to interact with SFDX projects, orgs, and APIs.",
|
12333
12333
|
main: "lib/index",
|
12334
12334
|
types: "lib/index.d.ts",
|
@@ -12365,7 +12365,7 @@ var require_package2 = __commonJS({
|
|
12365
12365
|
"messageTransformer/messageTransformer.ts"
|
12366
12366
|
],
|
12367
12367
|
dependencies: {
|
12368
|
-
"@jsforce/jsforce-node": "^3.6.
|
12368
|
+
"@jsforce/jsforce-node": "^3.6.5",
|
12369
12369
|
"@salesforce/kit": "^3.2.2",
|
12370
12370
|
"@salesforce/schemas": "^1.9.0",
|
12371
12371
|
"@salesforce/ts-types": "^2.0.10",
|
@@ -33031,7 +33031,7 @@ var require_VERSION = __commonJS({
|
|
33031
33031
|
"node_modules/@jsforce/jsforce-node/lib/VERSION.js"(exports2) {
|
33032
33032
|
"use strict";
|
33033
33033
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
33034
|
-
exports2.default = "3.6.
|
33034
|
+
exports2.default = "3.6.5";
|
33035
33035
|
}
|
33036
33036
|
});
|
33037
33037
|
|
@@ -43048,8 +43048,9 @@ var require_csv = __commonJS({
|
|
43048
43048
|
var sync_1 = require_sync();
|
43049
43049
|
var csv_stringify_1 = require_cjs2();
|
43050
43050
|
var sync_2 = require_sync2();
|
43051
|
+
var csvDelimiters = ["`", "^", ",", "|", ";", " "];
|
43051
43052
|
function parseCSV(str, options) {
|
43052
|
-
return (0, sync_1.parse)(str, { ...options, columns: true });
|
43053
|
+
return (0, sync_1.parse)(str, { ...options, columns: true, delimiter: csvDelimiters });
|
43053
43054
|
}
|
43054
43055
|
exports2.parseCSV = parseCSV;
|
43055
43056
|
function toCSV(records, options) {
|
@@ -43278,7 +43279,7 @@ var require_http_api = __commonJS({
|
|
43278
43279
|
* @protected
|
43279
43280
|
*/
|
43280
43281
|
isSessionExpired(response) {
|
43281
|
-
return response.statusCode === 401;
|
43282
|
+
return response.statusCode === 401 && !response.body.includes("Connected app is not attached to Agent");
|
43282
43283
|
}
|
43283
43284
|
/**
|
43284
43285
|
* Detect error response
|
@@ -52060,8 +52061,11 @@ var require_soap = __commonJS({
|
|
52060
52061
|
return value.map((v) => toXML(name, v)).join("");
|
52061
52062
|
} else {
|
52062
52063
|
const attrs = [];
|
52063
|
-
|
52064
|
-
|
52064
|
+
if (value === null) {
|
52065
|
+
attrs.push('xsi:nil="true"');
|
52066
|
+
value = "";
|
52067
|
+
} else if ((0, function_1.isMapObject)(value)) {
|
52068
|
+
const elems = [];
|
52065
52069
|
for (const k of Object.keys(value)) {
|
52066
52070
|
const v = value[k];
|
52067
52071
|
if (k.startsWith("@")) {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salesforce/core-bundle",
|
3
|
-
"version": "8.8.
|
3
|
+
"version": "8.8.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.6.
|
40
|
+
"@jsforce/jsforce-node": "^3.6.5",
|
41
41
|
"@salesforce/kit": "^3.2.2",
|
42
42
|
"@salesforce/schemas": "^1.9.0",
|
43
43
|
"@salesforce/ts-types": "^2.0.10",
|