@jsforce/jsforce-node 3.4.0 → 3.4.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 CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "3.4.0";
1
+ declare const _default: "3.4.2";
2
2
  export default _default;
package/lib/VERSION.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '3.4.0';
3
+ exports.default = '3.4.2';
package/lib/api/bulk2.js CHANGED
@@ -349,7 +349,8 @@ class QueryJobV2 extends events_1.EventEmitter {
349
349
  const resPromise = this.createQueryRequest({
350
350
  method: 'GET',
351
351
  path: this.locator
352
- ? `/${resultsPath}?locator=${this.locator}`
352
+ // resultsPath starts with '/'
353
+ ? `${resultsPath}?locator=${this.locator}`
353
354
  : resultsPath,
354
355
  headers: {
355
356
  Accept: 'text/csv',
@@ -214,7 +214,7 @@ export declare class Connection<S extends Schema = Schema> extends EventEmitter
214
214
  /**
215
215
  *
216
216
  */
217
- queryMore(locator: string, options?: QueryOptions): Query<S, Extract<keyof S["SObjects"], string>, Record, "QueryResult">;
217
+ queryMore<T extends Record>(locator: string, options?: QueryOptions): Query<S, Extract<keyof S["SObjects"], string>, T, "QueryResult">;
218
218
  _ensureVersion(majorVersion: number): boolean;
219
219
  _supports(feature: string): boolean;
220
220
  /**
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.4.0",
13
+ "version": "3.4.2",
14
14
  "repository": {
15
15
  "type": "git",
16
16
  "url": "git://github.com/jsforce/jsforce.git"
@@ -209,7 +209,7 @@
209
209
  "xml2js": "^0.6.2"
210
210
  },
211
211
  "devDependencies": {
212
- "@babel/cli": "^7.23.0",
212
+ "@babel/cli": "^7.24.8",
213
213
  "@babel/core": "^7.23.0",
214
214
  "@babel/plugin-transform-runtime": "^7.24.7",
215
215
  "@babel/preset-env": "^7.22.20",
@@ -265,7 +265,7 @@
265
265
  "util": "^0.12.5",
266
266
  "webpack": "^5.82.0",
267
267
  "webpack-cli": "^5.0.2",
268
- "wireit": "^0.14.0",
268
+ "wireit": "^0.14.7",
269
269
  "zx": "^7.2.3"
270
270
  },
271
271
  "overrides": {