@rushstack/rush-sdk 5.84.0 → 5.85.0

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.
@@ -306,7 +306,7 @@ export declare class CredentialCache {
306
306
  private constructor();
307
307
  static initializeAsync(options: ICredentialCacheOptions): Promise<CredentialCache>;
308
308
  static usingAsync(options: ICredentialCacheOptions, doActionAsync: (credentialCache: CredentialCache) => Promise<void> | void): Promise<void>;
309
- setCacheEntry(cacheId: string, credential: string, expires?: Date): void;
309
+ setCacheEntry(cacheId: string, entry: ICredentialCacheEntry): void;
310
310
  tryGetCacheEntry(cacheId: string): ICredentialCacheEntry | undefined;
311
311
  deleteCacheEntry(cacheId: string): void;
312
312
  trimExpiredEntries(): void;
@@ -549,8 +549,6 @@ export declare enum EnvironmentVariableNames {
549
549
  * @remarks
550
550
  * Specify `1` to enable the build cache or `0` to disable it.
551
551
  *
552
- * If set to `0`, this is equivalent to passing the `--disable-build-cache` flag.
553
- *
554
552
  * If there is no build cache configured, then this environment variable is ignored.
555
553
  */
556
554
  RUSH_BUILD_CACHE_ENABLED = "RUSH_BUILD_CACHE_ENABLED",
@@ -804,6 +802,7 @@ export declare interface ICreateOperationsContext {
804
802
  export declare interface ICredentialCacheEntry {
805
803
  expires?: Date;
806
804
  credential: string;
805
+ credentialMetadata?: object;
807
806
  }
808
807
 
809
808
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rushstack/rush-sdk",
3
- "version": "5.84.0",
3
+ "version": "5.85.0",
4
4
  "description": "An API for interacting with the Rush engine",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,7 +17,7 @@
17
17
  "tapable": "2.2.1"
18
18
  },
19
19
  "devDependencies": {
20
- "@microsoft/rush-lib": "5.84.0",
20
+ "@microsoft/rush-lib": "5.85.0",
21
21
  "@rushstack/eslint-config": "3.1.1",
22
22
  "@rushstack/heft": "0.48.8",
23
23
  "@rushstack/heft-node-rig": "1.11.8",