@aws-sdk/middleware-sdk-rds 3.890.0 → 3.893.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-sdk-rds",
3
- "version": "3.890.0",
3
+ "version": "3.893.0",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
6
6
  "build:cjs": "node ../../scripts/compilation/inline middleware-sdk-rds",
@@ -17,15 +17,16 @@
17
17
  "main": "./dist-cjs/index.js",
18
18
  "module": "./dist-es/index.js",
19
19
  "types": "./dist-types/index.d.ts",
20
+ "sideEffects": false,
20
21
  "author": {
21
22
  "name": "AWS SDK for JavaScript Team",
22
23
  "url": "https://aws.amazon.com/javascript/"
23
24
  },
24
25
  "license": "Apache-2.0",
25
26
  "dependencies": {
26
- "@aws-sdk/types": "3.887.0",
27
- "@aws-sdk/util-format-url": "3.887.0",
28
- "@smithy/middleware-endpoint": "^4.2.2",
27
+ "@aws-sdk/types": "3.893.0",
28
+ "@aws-sdk/util-format-url": "3.893.0",
29
+ "@smithy/middleware-endpoint": "^4.2.3",
29
30
  "@smithy/protocol-http": "^5.2.1",
30
31
  "@smithy/signature-v4": "^5.2.1",
31
32
  "@smithy/types": "^4.5.0",
@@ -1,19 +0,0 @@
1
- export class MockSha256 {
2
- constructor(secret) { }
3
- update(data) { }
4
- digest() {
5
- return Promise.resolve(new Uint8Array(5));
6
- }
7
- reset() { }
8
- }
9
- export const region = () => Promise.resolve("mock-region");
10
- export const endpoint = () => Promise.resolve({
11
- protocol: "https:",
12
- path: "/",
13
- hostname: "ec2.mock-region.amazonaws.com",
14
- });
15
- export const credentials = () => Promise.resolve({
16
- accessKeyId: "akid",
17
- secretAccessKey: "secret",
18
- sessionToken: "session",
19
- });
@@ -1,18 +0,0 @@
1
- import { SourceData } from "@smithy/types";
2
- export declare class MockSha256 {
3
- constructor(secret?: string | ArrayBuffer | ArrayBufferView);
4
- update(data?: SourceData): void;
5
- digest(): Promise<Uint8Array<ArrayBuffer>>;
6
- reset(): void;
7
- }
8
- export declare const region: () => Promise<string>;
9
- export declare const endpoint: () => Promise<{
10
- protocol: string;
11
- path: string;
12
- hostname: string;
13
- }>;
14
- export declare const credentials: () => Promise<{
15
- accessKeyId: string;
16
- secretAccessKey: string;
17
- sessionToken: string;
18
- }>;
@@ -1,18 +0,0 @@
1
- import { SourceData } from "@smithy/types";
2
- export declare class MockSha256 {
3
- constructor(secret?: string | ArrayBuffer | ArrayBufferView);
4
- update(data?: SourceData): void;
5
- digest(): Promise<Uint8Array<ArrayBuffer>>;
6
- reset(): void;
7
- }
8
- export declare const region: () => Promise<string>;
9
- export declare const endpoint: () => Promise<{
10
- protocol: string;
11
- path: string;
12
- hostname: string;
13
- }>;
14
- export declare const credentials: () => Promise<{
15
- accessKeyId: string;
16
- secretAccessKey: string;
17
- sessionToken: string;
18
- }>;