@backstage/integration-aws-node 0.1.19-next.0 → 0.1.20-next.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @backstage/integration-aws-node
2
2
 
3
+ ## 0.1.20-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 7455dae: Use node prefix on native imports
8
+ - Updated dependencies
9
+ - @backstage/config@1.3.6
10
+ - @backstage/errors@1.2.7
11
+
12
+ ## 0.1.19
13
+
14
+ ### Patch Changes
15
+
16
+ - 05f60e1: Refactored constructor parameter properties to explicit property declarations for compatibility with TypeScript's `erasableSyntaxOnly` setting. This internal refactoring maintains all existing functionality while ensuring TypeScript compilation compatibility.
17
+ - Updated dependencies
18
+ - @backstage/config@1.3.6
19
+
3
20
  ## 0.1.19-next.0
4
21
 
5
22
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -79,4 +79,5 @@ declare class DefaultAwsCredentialsManager implements AwsCredentialsManager {
79
79
  getCredentialProvider(opts?: AwsCredentialProviderOptions): Promise<AwsCredentialProvider>;
80
80
  }
81
81
 
82
- export { type AwsCredentialProvider, type AwsCredentialProviderOptions, type AwsCredentialsManager, DefaultAwsCredentialsManager };
82
+ export { DefaultAwsCredentialsManager };
83
+ export type { AwsCredentialProvider, AwsCredentialProviderOptions, AwsCredentialsManager };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/integration-aws-node",
3
- "version": "0.1.19-next.0",
3
+ "version": "0.1.20-next.0",
4
4
  "description": "Helpers for fetching AWS account credentials",
5
5
  "backstage": {
6
6
  "role": "node-library"
@@ -41,13 +41,13 @@
41
41
  "@aws-sdk/credential-providers": "^3.350.0",
42
42
  "@aws-sdk/types": "^3.347.0",
43
43
  "@aws-sdk/util-arn-parser": "^3.310.0",
44
- "@backstage/config": "1.3.6-next.0",
44
+ "@backstage/config": "1.3.6",
45
45
  "@backstage/errors": "1.2.7"
46
46
  },
47
47
  "devDependencies": {
48
- "@backstage/cli": "0.34.5-next.0",
49
- "@backstage/config-loader": "1.10.6-next.0",
50
- "@backstage/test-utils": "1.7.13-next.0",
48
+ "@backstage/cli": "0.35.3-next.0",
49
+ "@backstage/config-loader": "1.10.8-next.0",
50
+ "@backstage/test-utils": "1.7.15-next.0",
51
51
  "aws-sdk-client-mock": "^4.0.0",
52
52
  "aws-sdk-client-mock-jest": "^4.0.0"
53
53
  },