@jsforce/jsforce-node 3.5.0 → 3.5.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/lib/VERSION.d.ts +1 -1
- package/lib/VERSION.js +1 -1
- package/lib/api/bulk2.js +2 -2
- package/package.json +1 -2
package/lib/VERSION.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "3.5.
|
|
1
|
+
declare const _default: "3.5.2";
|
|
2
2
|
export default _default;
|
package/lib/VERSION.js
CHANGED
package/lib/api/bulk2.js
CHANGED
|
@@ -302,7 +302,7 @@ class QueryJobV2 extends events_1.EventEmitter {
|
|
|
302
302
|
throw new Error('Query job failed to complete');
|
|
303
303
|
case 'JobComplete':
|
|
304
304
|
this.logger.debug(`Job ${this.id} was successfully processed.`);
|
|
305
|
-
this.emit('jobComplete');
|
|
305
|
+
this.emit('jobComplete', res);
|
|
306
306
|
return;
|
|
307
307
|
}
|
|
308
308
|
}
|
|
@@ -563,7 +563,7 @@ class IngestJobV2 extends events_1.EventEmitter {
|
|
|
563
563
|
throw new Error(`Ingest job failed to complete due to: ${res.errorMessage}`);
|
|
564
564
|
case 'JobComplete':
|
|
565
565
|
this.logger.debug(`Job ${this.id} was successfully processed.`);
|
|
566
|
-
this.emit('jobComplete');
|
|
566
|
+
this.emit('jobComplete', res);
|
|
567
567
|
return;
|
|
568
568
|
}
|
|
569
569
|
}
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"database.com"
|
|
11
11
|
],
|
|
12
12
|
"homepage": "http://github.com/jsforce/jsforce",
|
|
13
|
-
"version": "3.5.
|
|
13
|
+
"version": "3.5.2",
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|
|
16
16
|
"url": "git://github.com/jsforce/jsforce.git"
|
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
}
|
|
24
24
|
],
|
|
25
25
|
"main": "./index",
|
|
26
|
-
"module": "./module/index",
|
|
27
26
|
"types": "./index",
|
|
28
27
|
"wireit": {
|
|
29
28
|
"build": {
|