@salesforce/core 3.7.6 → 3.7.7

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.
Files changed (53) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/README.md +4 -4
  3. package/lib/config/config.d.ts +5 -5
  4. package/lib/config/config.js +5 -5
  5. package/lib/config/configAggregator.d.ts +2 -2
  6. package/lib/config/configAggregator.js +2 -2
  7. package/lib/config/configFile.d.ts +2 -2
  8. package/lib/config/configFile.js +7 -7
  9. package/lib/config/configStore.js +5 -5
  10. package/lib/crypto/keyChainImpl.js +2 -2
  11. package/lib/deviceOauthService.js +2 -2
  12. package/lib/exported.d.ts +2 -2
  13. package/lib/exported.js +9 -6
  14. package/lib/globalInfo/accessors/aliasAccessor.js +2 -2
  15. package/lib/logger.d.ts +3 -3
  16. package/lib/logger.js +9 -9
  17. package/lib/messages.d.ts +2 -2
  18. package/lib/messages.js +4 -4
  19. package/lib/org/authInfo.d.ts +1 -1
  20. package/lib/org/authInfo.js +4 -4
  21. package/lib/org/authRemover.d.ts +2 -2
  22. package/lib/org/authRemover.js +2 -2
  23. package/lib/org/connection.d.ts +1 -1
  24. package/lib/org/connection.js +4 -4
  25. package/lib/org/org.d.ts +4 -4
  26. package/lib/org/org.js +13 -13
  27. package/lib/org/permissionSetAssignment.js +2 -2
  28. package/lib/org/scratchOrgCreate.js +4 -4
  29. package/lib/org/scratchOrgErrorCodes.js +6 -6
  30. package/lib/org/scratchOrgInfoApi.js +16 -16
  31. package/lib/org/scratchOrgInfoGenerator.d.ts +3 -3
  32. package/lib/org/scratchOrgInfoGenerator.js +17 -17
  33. package/lib/org/scratchOrgSettingsGenerator.js +2 -2
  34. package/lib/org/user.js +4 -4
  35. package/lib/schema/printer.js +2 -2
  36. package/lib/schema/validator.d.ts +4 -4
  37. package/lib/schema/validator.js +9 -9
  38. package/lib/{sfdxError.d.ts → sfError.d.ts} +14 -9
  39. package/lib/{sfdxError.js → sfError.js} +20 -14
  40. package/lib/{sfdxProject.d.ts → sfProject.d.ts} +37 -27
  41. package/lib/{sfdxProject.js → sfProject.js} +75 -63
  42. package/lib/status/pollingClient.js +3 -3
  43. package/lib/status/streamingClient.d.ts +2 -2
  44. package/lib/status/streamingClient.js +6 -6
  45. package/lib/testSetup.d.ts +4 -4
  46. package/lib/testSetup.js +8 -8
  47. package/lib/util/fs.js +7 -7
  48. package/lib/util/internal.d.ts +2 -2
  49. package/lib/util/internal.js +2 -2
  50. package/lib/util/sfdcUrl.d.ts +2 -2
  51. package/lib/util/sfdcUrl.js +2 -2
  52. package/lib/webOAuthServer.js +10 -10
  53. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  import { AsyncOptionalCreatable, Duration, Env } from '@salesforce/kit/lib';
2
2
  import { AnyJson } from '@salesforce/ts-types/lib';
3
- import { Org } from '../org';
3
+ import { Org } from '../org/org';
4
4
  import { CometClient, CometSubscription, Message, StatusResult, StreamingExtension, StreamProcessor } from './types';
5
5
  export { CometClient, CometSubscription, Message, StatusResult, StreamingExtension, StreamProcessor };
6
6
  /**
@@ -113,7 +113,7 @@ export declare class StreamingClient extends AsyncOptionalCreatable<StreamingCli
113
113
  * Subscribe to streaming events. When the streaming processor that's set in the options completes execution it
114
114
  * returns a payload in the StatusResult object. The payload is just echoed here for convenience.
115
115
  *
116
- * **Throws** *{@link SfdxError}{ name: '{@link StreamingClient.TimeoutErrorType.SUBSCRIBE}'}* When the subscribe timeout occurs.
116
+ * **Throws** *{@link SfError}{ name: '{@link StreamingClient.TimeoutErrorType.SUBSCRIBE}'}* When the subscribe timeout occurs.
117
117
  *
118
118
  * @param streamInit This function should call the platform apis that result in streaming updates on push topics.
119
119
  * {@link StatusResult}
@@ -13,7 +13,7 @@ const lib_1 = require("@salesforce/kit/lib");
13
13
  const lib_2 = require("@salesforce/ts-types/lib");
14
14
  const Faye = require("faye");
15
15
  const logger_1 = require("../logger");
16
- const sfdxError_1 = require("../sfdxError");
16
+ const sfError_1 = require("../sfError");
17
17
  const messages_1 = require("../messages");
18
18
  const types_1 = require("./types");
19
19
  Object.defineProperty(exports, "CometClient", { enumerable: true, get: function () { return types_1.CometClient; } });
@@ -151,7 +151,7 @@ class StreamingClient extends lib_1.AsyncOptionalCreatable {
151
151
  this.cometClient.setHeader('Authorization', `OAuth ${accessToken}`);
152
152
  }
153
153
  else {
154
- throw new sfdxError_1.SfdxError('Missing or invalid access token', 'MissingOrInvalidAccessToken');
154
+ throw new sfError_1.SfError('Missing or invalid access token', 'MissingOrInvalidAccessToken');
155
155
  }
156
156
  this.log(`Streaming client target url: ${this.targetUrl}`);
157
157
  this.log(`options.subscribeTimeout (ms): ${this.options.subscribeTimeout.milliseconds}`);
@@ -201,7 +201,7 @@ class StreamingClient extends lib_1.AsyncOptionalCreatable {
201
201
  * Subscribe to streaming events. When the streaming processor that's set in the options completes execution it
202
202
  * returns a payload in the StatusResult object. The payload is just echoed here for convenience.
203
203
  *
204
- * **Throws** *{@link SfdxError}{ name: '{@link StreamingClient.TimeoutErrorType.SUBSCRIBE}'}* When the subscribe timeout occurs.
204
+ * **Throws** *{@link SfError}{ name: '{@link StreamingClient.TimeoutErrorType.SUBSCRIBE}'}* When the subscribe timeout occurs.
205
205
  *
206
206
  * @param streamInit This function should call the platform apis that result in streaming updates on push topics.
207
207
  * {@link StatusResult}
@@ -342,13 +342,13 @@ exports.StreamingClient = StreamingClient;
342
342
  logger.warn('envDep is deprecated');
343
343
  }
344
344
  if (!streamProcessor) {
345
- throw new sfdxError_1.SfdxError('Missing stream processor', 'MissingArg');
345
+ throw new sfError_1.SfError('Missing stream processor', 'MissingArg');
346
346
  }
347
347
  if (!org) {
348
- throw new sfdxError_1.SfdxError('Missing org', 'MissingArg');
348
+ throw new sfError_1.SfError('Missing org', 'MissingArg');
349
349
  }
350
350
  if (!channel) {
351
- throw new sfdxError_1.SfdxError('Missing streaming channel', 'MissingArg');
351
+ throw new sfError_1.SfError('Missing streaming channel', 'MissingArg');
352
352
  }
353
353
  this.org = org;
354
354
  this.apiVersion = org.getConnection().getApiVersion();
@@ -4,7 +4,7 @@ import * as sinonType from 'sinon';
4
4
  import { AnyJson, JsonMap, Optional } from '@salesforce/ts-types';
5
5
  import { ConfigContents } from './config/configStore';
6
6
  import { Logger } from './logger';
7
- import { SfdxError } from './sfdxError';
7
+ import { SfError } from './sfError';
8
8
  import { CometClient, CometSubscription, Message, StreamingExtension } from './status/streamingClient';
9
9
  import { SfOrg } from './globalInfo';
10
10
  /**
@@ -85,7 +85,7 @@ export interface TestContext {
85
85
  [configName: string]: Optional<ConfigStub>;
86
86
  GlobalInfo?: ConfigStub;
87
87
  Aliases?: ConfigStub;
88
- SfdxProjectJson?: ConfigStub;
88
+ SfProjectJson?: ConfigStub;
89
89
  SfdxConfig?: ConfigStub;
90
90
  };
91
91
  /**
@@ -252,7 +252,7 @@ export declare const testSetup: (sinon?: any) => TestContext;
252
252
  *
253
253
  * **See** {@link shouldThrow}
254
254
  */
255
- export declare const unexpectedResult: SfdxError;
255
+ export declare const unexpectedResult: SfError;
256
256
  /**
257
257
  * Use for this testing pattern:
258
258
  * ```
@@ -302,7 +302,7 @@ export interface StreamingMockCometSubscriptionOptions {
302
302
  /**
303
303
  * If it's an error that states what that error should be.
304
304
  */
305
- subscriptionErrbackError?: SfdxError;
305
+ subscriptionErrbackError?: SfError;
306
306
  /**
307
307
  * A list of messages to playback for the client. One message per process tick.
308
308
  */
package/lib/testSetup.js CHANGED
@@ -21,8 +21,8 @@ const connection_1 = require("./org/connection");
21
21
  const crypto_2 = require("./crypto/crypto");
22
22
  const logger_1 = require("./logger");
23
23
  const messages_1 = require("./messages");
24
- const sfdxError_1 = require("./sfdxError");
25
- const sfdxProject_1 = require("./sfdxProject");
24
+ const sfError_1 = require("./sfError");
25
+ const sfProject_1 = require("./sfProject");
26
26
  const streamingClient_1 = require("./status/streamingClient");
27
27
  const globalInfo_1 = require("./globalInfo");
28
28
  const global_1 = require("./global");
@@ -126,12 +126,12 @@ const instantiateContext = (sinon) => {
126
126
  inProject(inProject = true) {
127
127
  testContext.SANDBOXES.PROJECT.restore();
128
128
  if (inProject) {
129
- testContext.SANDBOXES.PROJECT.stub(sfdxProject_1.SfdxProject, 'resolveProjectPath').callsFake(() => testContext.localPathRetriever(testContext.id));
130
- testContext.SANDBOXES.PROJECT.stub(sfdxProject_1.SfdxProject, 'resolveProjectPathSync').callsFake(() => testContext.localPathRetrieverSync(testContext.id));
129
+ testContext.SANDBOXES.PROJECT.stub(sfProject_1.SfProject, 'resolveProjectPath').callsFake(() => testContext.localPathRetriever(testContext.id));
130
+ testContext.SANDBOXES.PROJECT.stub(sfProject_1.SfProject, 'resolveProjectPathSync').callsFake(() => testContext.localPathRetrieverSync(testContext.id));
131
131
  }
132
132
  else {
133
- testContext.SANDBOXES.PROJECT.stub(sfdxProject_1.SfdxProject, 'resolveProjectPath').rejects(new sfdxError_1.SfdxError('', 'InvalidProjectWorkspaceError'));
134
- testContext.SANDBOXES.PROJECT.stub(sfdxProject_1.SfdxProject, 'resolveProjectPathSync').throws(new sfdxError_1.SfdxError('', 'InvalidProjectWorkspaceError'));
133
+ testContext.SANDBOXES.PROJECT.stub(sfProject_1.SfProject, 'resolveProjectPath').rejects(new sfError_1.SfError('', 'InvalidProjectWorkspaceError'));
134
+ testContext.SANDBOXES.PROJECT.stub(sfProject_1.SfProject, 'resolveProjectPathSync').throws(new sfError_1.SfError('', 'InvalidProjectWorkspaceError'));
135
135
  }
136
136
  },
137
137
  };
@@ -174,7 +174,7 @@ const stubContext = (testContext) => {
174
174
  testContext.inProject(true);
175
175
  testContext.SANDBOXES.CONFIG.stub(configFile_1.ConfigFile, 'resolveRootFolder').callsFake((isGlobal) => testContext.rootPathRetriever(isGlobal, testContext.id));
176
176
  testContext.SANDBOXES.CONFIG.stub(configFile_1.ConfigFile, 'resolveRootFolderSync').callsFake((isGlobal) => testContext.rootPathRetrieverSync(isGlobal, testContext.id));
177
- (0, ts_sinon_1.stubMethod)(testContext.SANDBOXES.PROJECT, sfdxProject_1.SfdxProjectJson.prototype, 'doesPackageExist').callsFake(() => true);
177
+ (0, ts_sinon_1.stubMethod)(testContext.SANDBOXES.PROJECT, sfProject_1.SfProjectJson.prototype, 'doesPackageExist').callsFake(() => true);
178
178
  const initStubForRead = (configFile) => {
179
179
  const stub = testContext.configStubs[configFile.constructor.name] || {};
180
180
  // init calls read calls getPath which sets the path on the config file the first time.
@@ -324,7 +324,7 @@ exports.testSetup = (0, kit_1.once)(_testSetup);
324
324
  *
325
325
  * **See** {@link shouldThrow}
326
326
  */
327
- exports.unexpectedResult = new sfdxError_1.SfdxError('This code was expected to fail', 'UnexpectedResult');
327
+ exports.unexpectedResult = new sfError_1.SfError('This code was expected to fail', 'UnexpectedResult');
328
328
  /**
329
329
  * Use for this testing pattern:
330
330
  * ```
package/lib/util/fs.js CHANGED
@@ -13,7 +13,7 @@ const util_1 = require("util");
13
13
  const kit_1 = require("@salesforce/kit");
14
14
  const fsLib = require("graceful-fs");
15
15
  const mkdirpLib = require("mkdirp");
16
- const sfdxError_1 = require("../sfdxError");
16
+ const sfError_1 = require("../sfError");
17
17
  /**
18
18
  * @deprecated Use fs/promises instead
19
19
  */
@@ -79,13 +79,13 @@ exports.fs = Object.assign({}, fsLib, {
79
79
  */
80
80
  remove: async (dirPath) => {
81
81
  if (!dirPath) {
82
- throw new sfdxError_1.SfdxError('Path is null or undefined.', 'PathIsNullOrUndefined');
82
+ throw new sfError_1.SfError('Path is null or undefined.', 'PathIsNullOrUndefined');
83
83
  }
84
84
  try {
85
85
  await exports.fs.access(dirPath, fsLib.constants.R_OK);
86
86
  }
87
87
  catch (err) {
88
- throw new sfdxError_1.SfdxError(`The path: ${dirPath} doesn't exist or access is denied.`, 'DirMissingOrNoAccess');
88
+ throw new sfError_1.SfError(`The path: ${dirPath} doesn't exist or access is denied.`, 'DirMissingOrNoAccess');
89
89
  }
90
90
  const files = await exports.fs.readdir(dirPath);
91
91
  const stats = await Promise.all(files.map((file) => exports.fs.stat(path.join(dirPath, file))));
@@ -105,13 +105,13 @@ exports.fs = Object.assign({}, fsLib, {
105
105
  */
106
106
  removeSync: (dirPath) => {
107
107
  if (!dirPath) {
108
- throw new sfdxError_1.SfdxError('Path is null or undefined.', 'PathIsNullOrUndefined');
108
+ throw new sfError_1.SfError('Path is null or undefined.', 'PathIsNullOrUndefined');
109
109
  }
110
110
  try {
111
111
  exports.fs.accessSync(dirPath, fsLib.constants.R_OK);
112
112
  }
113
113
  catch (err) {
114
- throw new sfdxError_1.SfdxError(`The path: ${dirPath} doesn't exist or access is denied.`, 'DirMissingOrNoAccess');
114
+ throw new sfError_1.SfError(`The path: ${dirPath} doesn't exist or access is denied.`, 'DirMissingOrNoAccess');
115
115
  }
116
116
  exports.fs.actOnSync(dirPath, (fullPath, file) => {
117
117
  if (file) {
@@ -340,7 +340,7 @@ exports.fs = Object.assign({}, fsLib, {
340
340
  return exports.fs.getContentHash(contentA) === exports.fs.getContentHash(contentB);
341
341
  }
342
342
  catch (err) {
343
- throw new sfdxError_1.SfdxError(`The path: ${err.path} doesn't exist or access is denied.`, 'DirMissingOrNoAccess');
343
+ throw new sfError_1.SfError(`The path: ${err.path} doesn't exist or access is denied.`, 'DirMissingOrNoAccess');
344
344
  }
345
345
  },
346
346
  /**
@@ -362,7 +362,7 @@ exports.fs = Object.assign({}, fsLib, {
362
362
  return exports.fs.getContentHash(contentA) === exports.fs.getContentHash(contentB);
363
363
  }
364
364
  catch (err) {
365
- throw new sfdxError_1.SfdxError(`The path: ${err.path} doesn't exist or access is denied.`, 'DirMissingOrNoAccess');
365
+ throw new sfError_1.SfError(`The path: ${err.path} doesn't exist or access is denied.`, 'DirMissingOrNoAccess');
366
366
  }
367
367
  },
368
368
  /**
@@ -11,7 +11,7 @@ export declare const SFDX_PROJECT_JSON = "sfdx-project.json";
11
11
  *
12
12
  * **See** {@link traverseForFile}
13
13
  *
14
- * **Throws** *{@link SfdxError}{ name: 'InvalidProjectWorkspaceError' }* If the current folder is not located in a workspace.
14
+ * **Throws** *{@link SfError}{ name: 'InvalidProjectWorkspaceError' }* If the current folder is not located in a workspace.
15
15
  *
16
16
  * @param dir The directory path to start traversing from.
17
17
  * @ignore
@@ -24,7 +24,7 @@ export declare function resolveProjectPath(dir?: string): Promise<string>;
24
24
  *
25
25
  * **See** {@link traverseForFile}
26
26
  *
27
- * **Throws** *{@link SfdxError}{ name: 'InvalidProjectWorkspaceError' }* If the current folder is not located in a workspace.
27
+ * **Throws** *{@link SfError}{ name: 'InvalidProjectWorkspaceError' }* If the current folder is not located in a workspace.
28
28
  *
29
29
  * @param dir The directory path to start traversing from.
30
30
  * @ignore
@@ -25,7 +25,7 @@ exports.SFDX_PROJECT_JSON = 'sfdx-project.json';
25
25
  *
26
26
  * **See** {@link traverseForFile}
27
27
  *
28
- * **Throws** *{@link SfdxError}{ name: 'InvalidProjectWorkspaceError' }* If the current folder is not located in a workspace.
28
+ * **Throws** *{@link SfError}{ name: 'InvalidProjectWorkspaceError' }* If the current folder is not located in a workspace.
29
29
  *
30
30
  * @param dir The directory path to start traversing from.
31
31
  * @ignore
@@ -45,7 +45,7 @@ exports.resolveProjectPath = resolveProjectPath;
45
45
  *
46
46
  * **See** {@link traverseForFile}
47
47
  *
48
- * **Throws** *{@link SfdxError}{ name: 'InvalidProjectWorkspaceError' }* If the current folder is not located in a workspace.
48
+ * **Throws** *{@link SfError}{ name: 'InvalidProjectWorkspaceError' }* If the current folder is not located in a workspace.
49
49
  *
50
50
  * @param dir The directory path to start traversing from.
51
51
  * @ignore
@@ -43,7 +43,7 @@ export declare class SfdcUrl extends URL {
43
43
  * If SFDX_DOMAIN_RETRY environment variable is set (number) it overrides the default timeout duration (240 seconds)
44
44
  *
45
45
  * @returns {Promise<true | never>} The resolved ip address or never
46
- * @throws {@link SfdxError} If can't resolve DNS.
46
+ * @throws {@link SfError} If can't resolve DNS.
47
47
  */
48
48
  checkLightningDomain(): Promise<true | never>;
49
49
  /**
@@ -51,7 +51,7 @@ export declare class SfdcUrl extends URL {
51
51
  * If SFDX_DOMAIN_RETRY environment variable is set (number) it overrides the default timeout duration (240 seconds)
52
52
  *
53
53
  * @returns the resolved ip address.
54
- * @throws {@link SfdxError} If can't resolve DNS.
54
+ * @throws {@link SfError} If can't resolve DNS.
55
55
  */
56
56
  lookup(): Promise<string>;
57
57
  /**
@@ -121,7 +121,7 @@ class SfdcUrl extends url_1.URL {
121
121
  * If SFDX_DOMAIN_RETRY environment variable is set (number) it overrides the default timeout duration (240 seconds)
122
122
  *
123
123
  * @returns {Promise<true | never>} The resolved ip address or never
124
- * @throws {@link SfdxError} If can't resolve DNS.
124
+ * @throws {@link SfError} If can't resolve DNS.
125
125
  */
126
126
  async checkLightningDomain() {
127
127
  const quantity = (0, ts_types_1.ensureNumber)(new kit_1.Env().getNumber('SFDX_DOMAIN_RETRY', 240));
@@ -142,7 +142,7 @@ class SfdcUrl extends url_1.URL {
142
142
  * If SFDX_DOMAIN_RETRY environment variable is set (number) it overrides the default timeout duration (240 seconds)
143
143
  *
144
144
  * @returns the resolved ip address.
145
- * @throws {@link SfdxError} If can't resolve DNS.
145
+ * @throws {@link SfError} If can't resolve DNS.
146
146
  */
147
147
  async lookup() {
148
148
  const quantity = (0, ts_types_1.ensureNumber)(new kit_1.Env().getNumber('SFDX_DOMAIN_RETRY', 240));
@@ -16,9 +16,9 @@ const ts_types_1 = require("@salesforce/ts-types");
16
16
  const jsforce_1 = require("jsforce");
17
17
  const logger_1 = require("./logger");
18
18
  const authInfo_1 = require("./org/authInfo");
19
- const sfdxError_1 = require("./sfdxError");
19
+ const sfError_1 = require("./sfError");
20
20
  const messages_1 = require("./messages");
21
- const sfdxProject_1 = require("./sfdxProject");
21
+ const sfProject_1 = require("./sfProject");
22
22
  messages_1.Messages.importMessagesDirectory(__dirname);
23
23
  const messages = messages_1.Messages.load('@salesforce/core', 'auth', [
24
24
  'invalidRequestUri',
@@ -56,8 +56,8 @@ class WebOAuthServer extends kit_1.AsyncCreatable {
56
56
  */
57
57
  static async determineOauthPort() {
58
58
  try {
59
- const sfdxProject = await sfdxProject_1.SfdxProjectJson.create();
60
- return sfdxProject.get('oauthLocalPort') || WebOAuthServer.DEFAULT_PORT;
59
+ const sfProject = await sfProject_1.SfProjectJson.create();
60
+ return sfProject.get('oauthLocalPort') || WebOAuthServer.DEFAULT_PORT;
61
61
  }
62
62
  catch {
63
63
  return WebOAuthServer.DEFAULT_PORT;
@@ -152,7 +152,7 @@ class WebOAuthServer extends kit_1.AsyncCreatable {
152
152
  if (url.pathname && url.pathname.startsWith('/OauthRedirect')) {
153
153
  request.query = (0, querystring_1.parse)(url.query);
154
154
  if (request.query.error) {
155
- const err = new sfdxError_1.SfdxError(request.query.error_description || request.query.error, request.query.error);
155
+ const err = new sfError_1.SfError(request.query.error_description || request.query.error, request.query.error);
156
156
  this.webServer.reportError(err, response);
157
157
  return reject(err);
158
158
  }
@@ -169,14 +169,14 @@ class WebOAuthServer extends kit_1.AsyncCreatable {
169
169
  this.webServer.sendError(404, 'Resource not found', response);
170
170
  const errName = 'invalidRequestUri';
171
171
  const errMessage = messages.getMessage(errName, [url.pathname]);
172
- reject(new sfdxError_1.SfdxError(errMessage, errName));
172
+ reject(new sfError_1.SfError(errMessage, errName));
173
173
  }
174
174
  }
175
175
  else {
176
176
  this.webServer.sendError(405, 'Unsupported http methods', response);
177
177
  const errName = 'invalidRequestMethod';
178
178
  const errMessage = messages.getMessage(errName, [request.method]);
179
- reject(new sfdxError_1.SfdxError(errMessage, errName));
179
+ reject(new sfError_1.SfError(errMessage, errName));
180
180
  }
181
181
  });
182
182
  });
@@ -190,7 +190,7 @@ class WebOAuthServer extends kit_1.AsyncCreatable {
190
190
  */
191
191
  parseAuthCodeFromRequest(response, request) {
192
192
  if (!this.validateState(request)) {
193
- const error = new sfdxError_1.SfdxError('urlStateMismatch');
193
+ const error = new sfError_1.SfError('urlStateMismatch');
194
194
  this.webServer.sendError(400, `${error.message}\n`, response);
195
195
  this.closeRequest(request);
196
196
  this.logger.warn('urlStateMismatchAttempt detected.');
@@ -343,13 +343,13 @@ class WebServer extends kit_1.AsyncCreatable {
343
343
  const socket = new net_1.Socket();
344
344
  socket.setTimeout(this.getSocketTimeout(), () => {
345
345
  socket.destroy();
346
- const error = new sfdxError_1.SfdxError('timeout', 'SOCKET_TIMEOUT');
346
+ const error = new sfError_1.SfError('timeout', 'SOCKET_TIMEOUT');
347
347
  reject(error);
348
348
  });
349
349
  // An existing connection, means that the port is occupied
350
350
  socket.connect(clientConfig, () => {
351
351
  socket.destroy();
352
- const error = new sfdxError_1.SfdxError('Address in use', 'EADDRINUSE');
352
+ const error = new sfError_1.SfError('Address in use', 'EADDRINUSE');
353
353
  error.data = {
354
354
  port: clientConfig.port,
355
355
  address: clientConfig.host,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/core",
3
- "version": "3.7.6",
3
+ "version": "3.7.7",
4
4
  "description": "Core libraries to interact with SFDX projects, orgs, and APIs.",
5
5
  "main": "lib/exported",
6
6
  "types": "lib/exported.d.ts",