@aws-sdk/rds-signer 3.1087.0 → 3.1088.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.
@@ -7,9 +7,7 @@ export declare const getRuntimeConfig: (config: SignerConfig) => {
7
7
  region: string | import("@smithy/types").Provider<any>;
8
8
  hostname: string;
9
9
  port: number;
10
- sha256?:
11
- | import("@smithy/types").ChecksumConstructor
12
- | import("@smithy/types").HashConstructor;
10
+ sha256?: import("@smithy/types").ChecksumConstructor | import("@smithy/types").HashConstructor;
13
11
  username: string;
14
12
  profile?: string;
15
13
  runtime: string;
@@ -7,9 +7,7 @@ export declare const getRuntimeConfig: (config: SignerConfig) => {
7
7
  region: string | import("@smithy/types").Provider<string>;
8
8
  hostname: string;
9
9
  port: number;
10
- sha256?:
11
- | import("@smithy/types").ChecksumConstructor
12
- | import("@smithy/types").HashConstructor;
10
+ sha256?: import("@smithy/types").ChecksumConstructor | import("@smithy/types").HashConstructor;
13
11
  username: string;
14
12
  profile?: string;
15
13
  runtime: string;
@@ -7,9 +7,7 @@ export declare const getRuntimeConfig: (config: SignerConfig) => {
7
7
  region: string | import("@smithy/types").Provider<any>;
8
8
  hostname: string;
9
9
  port: number;
10
- sha256?:
11
- | import("@smithy/types").ChecksumConstructor
12
- | import("@smithy/types").HashConstructor;
10
+ sha256?: import("@smithy/types").ChecksumConstructor | import("@smithy/types").HashConstructor;
13
11
  username: string;
14
12
  profile?: string;
15
13
  runtime: string;
package/package.json CHANGED
@@ -1,10 +1,38 @@
1
1
  {
2
2
  "name": "@aws-sdk/rds-signer",
3
- "version": "3.1087.0",
3
+ "version": "3.1088.0",
4
4
  "description": "RDS utility for generating a password that can be used for IAM authentication to an RDS DB.",
5
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/rds-signer",
6
+ "license": "Apache-2.0",
7
+ "author": {
8
+ "name": "AWS SDK for JavaScript Team",
9
+ "url": "https://aws.amazon.com/sdk-for-javascript/"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
14
+ "directory": "packages/rds-signer"
15
+ },
16
+ "files": [
17
+ "dist-*/**"
18
+ ],
19
+ "sideEffects": false,
5
20
  "main": "./dist-cjs/index.js",
6
21
  "module": "./dist-es/index.js",
22
+ "browser": {
23
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
24
+ },
7
25
  "types": "./dist-types/index.d.ts",
26
+ "typesVersions": {
27
+ "<4.5": {
28
+ "dist-types/*": [
29
+ "dist-types/ts3.4/*"
30
+ ]
31
+ }
32
+ },
33
+ "react-native": {
34
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
35
+ },
8
36
  "scripts": {
9
37
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
10
38
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -19,51 +47,23 @@
19
47
  "test:integration": "yarn g:vitest run -c vitest.config.integ.mts",
20
48
  "test:integration:watch": "yarn g:vitest watch -c vitest.config.integ.mts"
21
49
  },
22
- "engines": {
23
- "node": ">=20.0.0"
24
- },
25
- "sideEffects": false,
26
- "author": {
27
- "name": "AWS SDK for JavaScript Team",
28
- "url": "https://aws.amazon.com/sdk-for-javascript/"
29
- },
30
- "license": "Apache-2.0",
31
50
  "dependencies": {
32
- "@aws-sdk/core": "^3.975.2",
33
- "@aws-sdk/credential-providers": "3.1087.0",
34
- "@smithy/core": "^3.29.3",
35
- "@smithy/signature-v4": "^5.6.3",
51
+ "@aws-sdk/core": "^3.975.3",
52
+ "@aws-sdk/credential-providers": "3.1088.0",
53
+ "@smithy/core": "^3.29.4",
54
+ "@smithy/signature-v4": "^5.6.5",
36
55
  "@smithy/types": "^4.16.1",
37
56
  "tslib": "^2.6.2"
38
57
  },
39
58
  "devDependencies": {
40
- "@aws-sdk/types": "^3.974.1",
59
+ "@aws-sdk/types": "^3.974.2",
41
60
  "@types/node": "^20.14.8",
42
61
  "concurrently": "7.0.0",
43
62
  "downlevel-dts": "0.10.1",
44
63
  "premove": "4.0.0",
45
64
  "typescript": "~5.8.3"
46
65
  },
47
- "typesVersions": {
48
- "<4.5": {
49
- "dist-types/*": [
50
- "dist-types/ts3.4/*"
51
- ]
52
- }
53
- },
54
- "files": [
55
- "dist-*/**"
56
- ],
57
- "browser": {
58
- "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
59
- },
60
- "react-native": {
61
- "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
62
- },
63
- "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/rds-signer",
64
- "repository": {
65
- "type": "git",
66
- "url": "https://github.com/aws/aws-sdk-js-v3.git",
67
- "directory": "packages/rds-signer"
66
+ "engines": {
67
+ "node": ">=20.0.0"
68
68
  }
69
69
  }