@aws-sdk/credential-provider-ini 3.734.0 → 3.741.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.
@@ -40,6 +40,11 @@ export interface FromIniInit extends SourceProfileInit, CredentialProviderOption
40
40
  */
41
41
  clientConfig?: any;
42
42
  clientPlugins?: Pluggable<any, any>[];
43
+ /**
44
+ * When true, always reload credentials from the file system instead of using cached values.
45
+ * This is useful when you need to detect changes to the credentials file.
46
+ */
47
+ ignoreCache?: boolean;
43
48
  }
44
49
  /**
45
50
  * @internal
@@ -17,6 +17,7 @@ export interface FromIniInit
17
17
  ) => Promise<AwsCredentialIdentity>;
18
18
  clientConfig?: any;
19
19
  clientPlugins?: Pluggable<any, any>[];
20
+ ignoreCache?: boolean;
20
21
  }
21
22
  export declare const fromIni: (
22
23
  _init?: FromIniInit
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-ini",
3
- "version": "3.734.0",
3
+ "version": "3.741.0",
4
4
  "description": "AWS credential provider that sources credentials from ~/.aws/credentials and ~/.aws/config",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",