@salesforce/core 3.16.1 → 3.16.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/CHANGELOG.md +2 -0
- package/lib/org/connection.d.ts +0 -9
- package/lib/org/connection.js +0 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [3.16.2](https://github.com/forcedotcom/sfdx-core/compare/v3.16.1...v3.16.2) (2022-05-11)
|
|
6
|
+
|
|
5
7
|
### [3.16.1](https://github.com/forcedotcom/sfdx-core/compare/v3.16.0...v3.16.1) (2022-05-11)
|
|
6
8
|
|
|
7
9
|
### Bug Fixes
|
package/lib/org/connection.d.ts
CHANGED
|
@@ -20,15 +20,6 @@ export declare type DeployOptionsWithRest = Partial<DeployOptions> & {
|
|
|
20
20
|
};
|
|
21
21
|
export interface Tooling<S extends Schema = Schema> extends JSForceTooling<S> {
|
|
22
22
|
_logger: any;
|
|
23
|
-
/**
|
|
24
|
-
* Executes a query and auto-fetches (i.e., "queryMore") all results. This is especially
|
|
25
|
-
* useful with large query result sizes, such as over 2000 records. The default maximum
|
|
26
|
-
* fetch size is 10,000 records. Modify this via the options argument.
|
|
27
|
-
*
|
|
28
|
-
* @param soql The SOQL string.
|
|
29
|
-
* @param options The query options. NOTE: the autoFetch option will always be true.
|
|
30
|
-
*/
|
|
31
|
-
autoFetchQuery<T extends Schema = S>(soql: string, options?: QueryOptions): Promise<QueryResult<T>>;
|
|
32
23
|
}
|
|
33
24
|
/**
|
|
34
25
|
* Handles connections and requests to Salesforce Orgs.
|
package/lib/org/connection.js
CHANGED
|
@@ -58,8 +58,6 @@ class Connection extends jsforce_1.Connection {
|
|
|
58
58
|
*/
|
|
59
59
|
constructor(options) {
|
|
60
60
|
super(options.connectionOptions || {});
|
|
61
|
-
// eslint-disable-next-line @typescript-eslint/unbound-method
|
|
62
|
-
this.tooling.autoFetchQuery = Connection.prototype.autoFetchQuery;
|
|
63
61
|
this.options = options;
|
|
64
62
|
this.username = options.authInfo.getUsername();
|
|
65
63
|
}
|