@salesforce/core 3.32.7 → 3.32.9

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.
@@ -498,6 +498,7 @@ export declare class MockTestOrgData {
498
498
  isDevHub?: boolean;
499
499
  isScratchOrg?: boolean;
500
500
  isExpired?: boolean | 'unknown';
501
+ password?: string;
501
502
  constructor(id?: string, options?: {
502
503
  username: string;
503
504
  });
package/lib/testSetup.js CHANGED
@@ -784,6 +784,8 @@ class MockTestOrgData {
784
784
  userMock.isDevHub = this.isDevHub;
785
785
  userMock.isScratchOrg = this.isScratchOrg;
786
786
  userMock.isExpired = this.isExpired;
787
+ userMock.password = this.password;
788
+ userMock.accessToken = this.accessToken;
787
789
  return userMock;
788
790
  }
789
791
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/core",
3
- "version": "3.32.7",
3
+ "version": "3.32.9",
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",
@@ -40,7 +40,7 @@
40
40
  "@salesforce/ts-types": "^1.5.21",
41
41
  "@types/graceful-fs": "^4.1.5",
42
42
  "@types/semver": "^7.3.13",
43
- "ajv": "^8.11.0",
43
+ "ajv": "^8.11.2",
44
44
  "archiver": "^5.3.0",
45
45
  "change-case": "^4.1.2",
46
46
  "debug": "^3.2.7",
@@ -62,7 +62,7 @@
62
62
  "@types/debug": "0.0.31",
63
63
  "@types/jsen": "0.0.21",
64
64
  "@types/jsonwebtoken": "8.5.9",
65
- "@types/lodash": "^4.14.189",
65
+ "@types/lodash": "^4.14.191",
66
66
  "@types/shelljs": "0.8.11",
67
67
  "@typescript-eslint/eslint-plugin": "^5.41.0",
68
68
  "@typescript-eslint/parser": "^5.45.0",
@@ -84,7 +84,7 @@
84
84
  "prettier": "^2.7.1",
85
85
  "pretty-quick": "^3.1.3",
86
86
  "shelljs": "0.8.5",
87
- "sinon": "^14.0.1",
87
+ "sinon": "^14.0.2",
88
88
  "ts-node": "^10.4.0",
89
89
  "typescript": "^4.8.4"
90
90
  },