@aws-sdk/credential-provider-process 3.300.0 → 3.306.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.
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @internal
3
+ */
1
4
  export type ProcessCredentials = {
2
5
  Version: number;
3
6
  AccessKeyId: string;
@@ -1,8 +1,13 @@
1
1
  import { SourceProfileInit } from "@aws-sdk/shared-ini-file-loader";
2
2
  import { AwsCredentialIdentityProvider } from "@aws-sdk/types";
3
+ /**
4
+ * @internal
5
+ */
3
6
  export interface FromProcessInit extends SourceProfileInit {
4
7
  }
5
8
  /**
9
+ * @internal
10
+ *
6
11
  * Creates a credential provider that will read from a credential_process specified
7
12
  * in ini files.
8
13
  */
@@ -1,3 +1,6 @@
1
1
  import { AwsCredentialIdentity } from "@aws-sdk/types";
2
2
  import { ProcessCredentials } from "./ProcessCredentials";
3
+ /**
4
+ * @internal
5
+ */
3
6
  export declare const getValidatedProcessCredentials: (profileName: string, data: ProcessCredentials) => AwsCredentialIdentity;
@@ -1 +1,4 @@
1
+ /**
2
+ * @internal
3
+ */
1
4
  export * from "./fromProcess";
@@ -1,2 +1,5 @@
1
1
  import { AwsCredentialIdentity, ParsedIniData } from "@aws-sdk/types";
2
+ /**
3
+ * @internal
4
+ */
2
5
  export declare const resolveProcessCredentials: (profileName: string, profiles: ParsedIniData) => Promise<AwsCredentialIdentity>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-process",
3
- "version": "3.300.0",
3
+ "version": "3.306.0",
4
4
  "description": "AWS credential provider that sources credential_process from ~/.aws/credentials and ~/.aws/config",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -24,9 +24,9 @@
24
24
  },
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
- "@aws-sdk/property-provider": "3.296.0",
28
- "@aws-sdk/shared-ini-file-loader": "3.300.0",
29
- "@aws-sdk/types": "3.296.0",
27
+ "@aws-sdk/property-provider": "3.306.0",
28
+ "@aws-sdk/shared-ini-file-loader": "3.306.0",
29
+ "@aws-sdk/types": "3.306.0",
30
30
  "tslib": "^2.5.0"
31
31
  },
32
32
  "devDependencies": {