@aws-sdk/middleware-sdk-rds 3.972.46 → 3.972.47

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.
@@ -18,11 +18,11 @@ interface PreviouslyResolved {
18
18
  signingEscapePath: boolean;
19
19
  }
20
20
  export declare function crossRegionPresignedUrlMiddleware(
21
- options: PreviouslyResolved
21
+ options: PreviouslyResolved,
22
22
  ): InitializeMiddleware<any, any>;
23
23
  export declare const crossRegionPresignedUrlMiddlewareOptions: SerializeHandlerOptions &
24
24
  RelativeMiddlewareOptions;
25
25
  export declare const getCrossRegionPresignedUrlPlugin: (
26
- config: PreviouslyResolved
26
+ config: PreviouslyResolved,
27
27
  ) => Pluggable<any, any>;
28
28
  export {};
package/package.json CHANGED
@@ -1,6 +1,31 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-sdk-rds",
3
- "version": "3.972.46",
3
+ "version": "3.972.47",
4
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages-internal/middleware-sdk-rds",
5
+ "license": "Apache-2.0",
6
+ "author": {
7
+ "name": "AWS SDK for JavaScript Team",
8
+ "url": "https://aws.amazon.com/sdk-for-javascript/"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
13
+ "directory": "packages-internal/middleware-sdk-rds"
14
+ },
15
+ "files": [
16
+ "dist-*/**"
17
+ ],
18
+ "sideEffects": false,
19
+ "main": "./dist-cjs/index.js",
20
+ "module": "./dist-es/index.js",
21
+ "types": "./dist-types/index.d.ts",
22
+ "typesVersions": {
23
+ "<4.5": {
24
+ "dist-types/*": [
25
+ "dist-types/ts3.4/*"
26
+ ]
27
+ }
28
+ },
4
29
  "scripts": {
5
30
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
6
31
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -14,47 +39,22 @@
14
39
  "test:integration": "yarn g:vitest run -c vitest.config.integ.mts",
15
40
  "test:integration:watch": "yarn g:vitest watch -c vitest.config.integ.mts"
16
41
  },
17
- "main": "./dist-cjs/index.js",
18
- "module": "./dist-es/index.js",
19
- "types": "./dist-types/index.d.ts",
20
- "sideEffects": false,
21
- "author": {
22
- "name": "AWS SDK for JavaScript Team",
23
- "url": "https://aws.amazon.com/sdk-for-javascript/"
24
- },
25
- "license": "Apache-2.0",
26
42
  "dependencies": {
27
- "@aws-sdk/core": "^3.975.2",
28
- "@aws-sdk/types": "^3.974.1",
29
- "@smithy/core": "^3.29.3",
30
- "@smithy/signature-v4": "^5.6.3",
43
+ "@aws-sdk/core": "^3.975.3",
44
+ "@aws-sdk/types": "^3.974.2",
45
+ "@smithy/core": "^3.29.4",
46
+ "@smithy/signature-v4": "^5.6.5",
31
47
  "@smithy/types": "^4.16.1",
32
48
  "tslib": "^2.6.2"
33
49
  },
34
- "engines": {
35
- "node": ">=20.0.0"
36
- },
37
- "typesVersions": {
38
- "<4.5": {
39
- "dist-types/*": [
40
- "dist-types/ts3.4/*"
41
- ]
42
- }
43
- },
44
- "files": [
45
- "dist-*/**"
46
- ],
47
- "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages-internal/middleware-sdk-rds",
48
- "repository": {
49
- "type": "git",
50
- "url": "https://github.com/aws/aws-sdk-js-v3.git",
51
- "directory": "packages-internal/middleware-sdk-rds"
52
- },
53
50
  "devDependencies": {
54
51
  "@tsconfig/recommended": "1.0.1",
55
52
  "concurrently": "7.0.0",
56
53
  "downlevel-dts": "0.10.1",
57
54
  "premove": "4.0.0",
58
55
  "typescript": "~5.8.3"
56
+ },
57
+ "engines": {
58
+ "node": ">=20.0.0"
59
59
  }
60
60
  }