@aws-sdk/client-rds-data 3.315.0 → 3.316.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/dist-cjs/RDSData.js +10 -84
- package/dist-es/RDSData.js +10 -84
- package/dist-types/RDSData.d.ts +21 -59
- package/dist-types/ts3.4/RDSData.d.ts +2 -1
- package/package.json +6 -6
package/dist-cjs/RDSData.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.RDSData = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
4
5
|
const BatchExecuteStatementCommand_1 = require("./commands/BatchExecuteStatementCommand");
|
|
5
6
|
const BeginTransactionCommand_1 = require("./commands/BeginTransactionCommand");
|
|
6
7
|
const CommitTransactionCommand_1 = require("./commands/CommitTransactionCommand");
|
|
@@ -8,90 +9,15 @@ const ExecuteSqlCommand_1 = require("./commands/ExecuteSqlCommand");
|
|
|
8
9
|
const ExecuteStatementCommand_1 = require("./commands/ExecuteStatementCommand");
|
|
9
10
|
const RollbackTransactionCommand_1 = require("./commands/RollbackTransactionCommand");
|
|
10
11
|
const RDSDataClient_1 = require("./RDSDataClient");
|
|
12
|
+
const commands = {
|
|
13
|
+
BatchExecuteStatementCommand: BatchExecuteStatementCommand_1.BatchExecuteStatementCommand,
|
|
14
|
+
BeginTransactionCommand: BeginTransactionCommand_1.BeginTransactionCommand,
|
|
15
|
+
CommitTransactionCommand: CommitTransactionCommand_1.CommitTransactionCommand,
|
|
16
|
+
ExecuteSqlCommand: ExecuteSqlCommand_1.ExecuteSqlCommand,
|
|
17
|
+
ExecuteStatementCommand: ExecuteStatementCommand_1.ExecuteStatementCommand,
|
|
18
|
+
RollbackTransactionCommand: RollbackTransactionCommand_1.RollbackTransactionCommand,
|
|
19
|
+
};
|
|
11
20
|
class RDSData extends RDSDataClient_1.RDSDataClient {
|
|
12
|
-
batchExecuteStatement(args, optionsOrCb, cb) {
|
|
13
|
-
const command = new BatchExecuteStatementCommand_1.BatchExecuteStatementCommand(args);
|
|
14
|
-
if (typeof optionsOrCb === "function") {
|
|
15
|
-
this.send(command, optionsOrCb);
|
|
16
|
-
}
|
|
17
|
-
else if (typeof cb === "function") {
|
|
18
|
-
if (typeof optionsOrCb !== "object")
|
|
19
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
20
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
21
|
-
}
|
|
22
|
-
else {
|
|
23
|
-
return this.send(command, optionsOrCb);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
beginTransaction(args, optionsOrCb, cb) {
|
|
27
|
-
const command = new BeginTransactionCommand_1.BeginTransactionCommand(args);
|
|
28
|
-
if (typeof optionsOrCb === "function") {
|
|
29
|
-
this.send(command, optionsOrCb);
|
|
30
|
-
}
|
|
31
|
-
else if (typeof cb === "function") {
|
|
32
|
-
if (typeof optionsOrCb !== "object")
|
|
33
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
34
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
35
|
-
}
|
|
36
|
-
else {
|
|
37
|
-
return this.send(command, optionsOrCb);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
commitTransaction(args, optionsOrCb, cb) {
|
|
41
|
-
const command = new CommitTransactionCommand_1.CommitTransactionCommand(args);
|
|
42
|
-
if (typeof optionsOrCb === "function") {
|
|
43
|
-
this.send(command, optionsOrCb);
|
|
44
|
-
}
|
|
45
|
-
else if (typeof cb === "function") {
|
|
46
|
-
if (typeof optionsOrCb !== "object")
|
|
47
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
48
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
49
|
-
}
|
|
50
|
-
else {
|
|
51
|
-
return this.send(command, optionsOrCb);
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
executeSql(args, optionsOrCb, cb) {
|
|
55
|
-
const command = new ExecuteSqlCommand_1.ExecuteSqlCommand(args);
|
|
56
|
-
if (typeof optionsOrCb === "function") {
|
|
57
|
-
this.send(command, optionsOrCb);
|
|
58
|
-
}
|
|
59
|
-
else if (typeof cb === "function") {
|
|
60
|
-
if (typeof optionsOrCb !== "object")
|
|
61
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
62
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
63
|
-
}
|
|
64
|
-
else {
|
|
65
|
-
return this.send(command, optionsOrCb);
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
executeStatement(args, optionsOrCb, cb) {
|
|
69
|
-
const command = new ExecuteStatementCommand_1.ExecuteStatementCommand(args);
|
|
70
|
-
if (typeof optionsOrCb === "function") {
|
|
71
|
-
this.send(command, optionsOrCb);
|
|
72
|
-
}
|
|
73
|
-
else if (typeof cb === "function") {
|
|
74
|
-
if (typeof optionsOrCb !== "object")
|
|
75
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
76
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
77
|
-
}
|
|
78
|
-
else {
|
|
79
|
-
return this.send(command, optionsOrCb);
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
rollbackTransaction(args, optionsOrCb, cb) {
|
|
83
|
-
const command = new RollbackTransactionCommand_1.RollbackTransactionCommand(args);
|
|
84
|
-
if (typeof optionsOrCb === "function") {
|
|
85
|
-
this.send(command, optionsOrCb);
|
|
86
|
-
}
|
|
87
|
-
else if (typeof cb === "function") {
|
|
88
|
-
if (typeof optionsOrCb !== "object")
|
|
89
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
90
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
91
|
-
}
|
|
92
|
-
else {
|
|
93
|
-
return this.send(command, optionsOrCb);
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
21
|
}
|
|
97
22
|
exports.RDSData = RDSData;
|
|
23
|
+
(0, smithy_client_1.createAggregatedClient)(commands, RDSData);
|
package/dist-es/RDSData.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { createAggregatedClient } from "@aws-sdk/smithy-client";
|
|
1
2
|
import { BatchExecuteStatementCommand, } from "./commands/BatchExecuteStatementCommand";
|
|
2
3
|
import { BeginTransactionCommand, } from "./commands/BeginTransactionCommand";
|
|
3
4
|
import { CommitTransactionCommand, } from "./commands/CommitTransactionCommand";
|
|
@@ -5,89 +6,14 @@ import { ExecuteSqlCommand } from "./commands/ExecuteSqlCommand";
|
|
|
5
6
|
import { ExecuteStatementCommand, } from "./commands/ExecuteStatementCommand";
|
|
6
7
|
import { RollbackTransactionCommand, } from "./commands/RollbackTransactionCommand";
|
|
7
8
|
import { RDSDataClient } from "./RDSDataClient";
|
|
9
|
+
const commands = {
|
|
10
|
+
BatchExecuteStatementCommand,
|
|
11
|
+
BeginTransactionCommand,
|
|
12
|
+
CommitTransactionCommand,
|
|
13
|
+
ExecuteSqlCommand,
|
|
14
|
+
ExecuteStatementCommand,
|
|
15
|
+
RollbackTransactionCommand,
|
|
16
|
+
};
|
|
8
17
|
export class RDSData extends RDSDataClient {
|
|
9
|
-
batchExecuteStatement(args, optionsOrCb, cb) {
|
|
10
|
-
const command = new BatchExecuteStatementCommand(args);
|
|
11
|
-
if (typeof optionsOrCb === "function") {
|
|
12
|
-
this.send(command, optionsOrCb);
|
|
13
|
-
}
|
|
14
|
-
else if (typeof cb === "function") {
|
|
15
|
-
if (typeof optionsOrCb !== "object")
|
|
16
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
17
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
return this.send(command, optionsOrCb);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
beginTransaction(args, optionsOrCb, cb) {
|
|
24
|
-
const command = new BeginTransactionCommand(args);
|
|
25
|
-
if (typeof optionsOrCb === "function") {
|
|
26
|
-
this.send(command, optionsOrCb);
|
|
27
|
-
}
|
|
28
|
-
else if (typeof cb === "function") {
|
|
29
|
-
if (typeof optionsOrCb !== "object")
|
|
30
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
31
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
32
|
-
}
|
|
33
|
-
else {
|
|
34
|
-
return this.send(command, optionsOrCb);
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
commitTransaction(args, optionsOrCb, cb) {
|
|
38
|
-
const command = new CommitTransactionCommand(args);
|
|
39
|
-
if (typeof optionsOrCb === "function") {
|
|
40
|
-
this.send(command, optionsOrCb);
|
|
41
|
-
}
|
|
42
|
-
else if (typeof cb === "function") {
|
|
43
|
-
if (typeof optionsOrCb !== "object")
|
|
44
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
45
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
46
|
-
}
|
|
47
|
-
else {
|
|
48
|
-
return this.send(command, optionsOrCb);
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
executeSql(args, optionsOrCb, cb) {
|
|
52
|
-
const command = new ExecuteSqlCommand(args);
|
|
53
|
-
if (typeof optionsOrCb === "function") {
|
|
54
|
-
this.send(command, optionsOrCb);
|
|
55
|
-
}
|
|
56
|
-
else if (typeof cb === "function") {
|
|
57
|
-
if (typeof optionsOrCb !== "object")
|
|
58
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
59
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
60
|
-
}
|
|
61
|
-
else {
|
|
62
|
-
return this.send(command, optionsOrCb);
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
executeStatement(args, optionsOrCb, cb) {
|
|
66
|
-
const command = new ExecuteStatementCommand(args);
|
|
67
|
-
if (typeof optionsOrCb === "function") {
|
|
68
|
-
this.send(command, optionsOrCb);
|
|
69
|
-
}
|
|
70
|
-
else if (typeof cb === "function") {
|
|
71
|
-
if (typeof optionsOrCb !== "object")
|
|
72
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
73
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
74
|
-
}
|
|
75
|
-
else {
|
|
76
|
-
return this.send(command, optionsOrCb);
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
rollbackTransaction(args, optionsOrCb, cb) {
|
|
80
|
-
const command = new RollbackTransactionCommand(args);
|
|
81
|
-
if (typeof optionsOrCb === "function") {
|
|
82
|
-
this.send(command, optionsOrCb);
|
|
83
|
-
}
|
|
84
|
-
else if (typeof cb === "function") {
|
|
85
|
-
if (typeof optionsOrCb !== "object")
|
|
86
|
-
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
87
|
-
this.send(command, optionsOrCb || {}, cb);
|
|
88
|
-
}
|
|
89
|
-
else {
|
|
90
|
-
return this.send(command, optionsOrCb);
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
18
|
}
|
|
19
|
+
createAggregatedClient(commands, RDSData);
|
package/dist-types/RDSData.d.ts
CHANGED
|
@@ -6,93 +6,55 @@ import { ExecuteSqlCommandInput, ExecuteSqlCommandOutput } from "./commands/Exec
|
|
|
6
6
|
import { ExecuteStatementCommandInput, ExecuteStatementCommandOutput } from "./commands/ExecuteStatementCommand";
|
|
7
7
|
import { RollbackTransactionCommandInput, RollbackTransactionCommandOutput } from "./commands/RollbackTransactionCommand";
|
|
8
8
|
import { RDSDataClient } from "./RDSDataClient";
|
|
9
|
-
|
|
10
|
-
* @public
|
|
11
|
-
* <fullname>Amazon RDS Data Service</fullname>
|
|
12
|
-
* <p>Amazon RDS provides an HTTP endpoint to run SQL statements on an Amazon Aurora Serverless v1 DB cluster. To run these
|
|
13
|
-
* statements, you work with the Data Service API.</p>
|
|
14
|
-
* <note>
|
|
15
|
-
* <p>The Data Service API isn't supported on Amazon Aurora Serverless v2 DB clusters.</p>
|
|
16
|
-
* </note>
|
|
17
|
-
* <p>For more information about the Data Service API, see
|
|
18
|
-
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html">Using the Data API</a>
|
|
19
|
-
* in the <i>Amazon Aurora User Guide</i>.</p>
|
|
20
|
-
*/
|
|
21
|
-
export declare class RDSData extends RDSDataClient {
|
|
9
|
+
export interface RDSData {
|
|
22
10
|
/**
|
|
23
|
-
* @
|
|
24
|
-
* <p>Runs a batch SQL statement over an array of data.</p>
|
|
25
|
-
* <p>You can run bulk update and insert operations for multiple records using a DML
|
|
26
|
-
* statement with different parameter sets. Bulk operations can provide a significant
|
|
27
|
-
* performance improvement over individual insert and update operations.</p>
|
|
28
|
-
* <note>
|
|
29
|
-
* <p>If a call isn't part of a transaction because it doesn't include the <code>transactionID</code> parameter,
|
|
30
|
-
* changes that result from the call are committed automatically.</p>
|
|
31
|
-
* <p>There isn't a fixed upper limit on the number of parameter sets. However, the maximum size of the HTTP request
|
|
32
|
-
* submitted through the Data API is 4 MiB. If the request exceeds this limit, the Data API returns an error and doesn't
|
|
33
|
-
* process the request. This 4-MiB limit includes the size of the HTTP headers and the JSON notation in the request. Thus, the
|
|
34
|
-
* number of parameter sets that you can include depends on a combination of factors, such as the size of the SQL statement and
|
|
35
|
-
* the size of each parameter set.</p>
|
|
36
|
-
* <p>The response size limit is 1 MiB. If the call returns more than 1 MiB of response data, the call is terminated.</p>
|
|
37
|
-
* </note>
|
|
11
|
+
* @see {@link BatchExecuteStatementCommand}
|
|
38
12
|
*/
|
|
39
13
|
batchExecuteStatement(args: BatchExecuteStatementCommandInput, options?: __HttpHandlerOptions): Promise<BatchExecuteStatementCommandOutput>;
|
|
40
14
|
batchExecuteStatement(args: BatchExecuteStatementCommandInput, cb: (err: any, data?: BatchExecuteStatementCommandOutput) => void): void;
|
|
41
15
|
batchExecuteStatement(args: BatchExecuteStatementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchExecuteStatementCommandOutput) => void): void;
|
|
42
16
|
/**
|
|
43
|
-
* @
|
|
44
|
-
* <p>Starts a SQL transaction.</p>
|
|
45
|
-
* <note>
|
|
46
|
-
* <p>A transaction can run for a maximum of 24 hours. A transaction is terminated and rolled back automatically after 24
|
|
47
|
-
* hours.</p>
|
|
48
|
-
* <p>A transaction times out if no calls use its transaction ID in three minutes. If a transaction times out before it's
|
|
49
|
-
* committed, it's rolled back automatically.</p>
|
|
50
|
-
* <p>DDL statements inside a transaction cause an implicit commit. We recommend that you run each DDL statement in a separate
|
|
51
|
-
* <code>ExecuteStatement</code> call with <code>continueAfterTimeout</code> enabled.</p>
|
|
52
|
-
* </note>
|
|
17
|
+
* @see {@link BeginTransactionCommand}
|
|
53
18
|
*/
|
|
54
19
|
beginTransaction(args: BeginTransactionCommandInput, options?: __HttpHandlerOptions): Promise<BeginTransactionCommandOutput>;
|
|
55
20
|
beginTransaction(args: BeginTransactionCommandInput, cb: (err: any, data?: BeginTransactionCommandOutput) => void): void;
|
|
56
21
|
beginTransaction(args: BeginTransactionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BeginTransactionCommandOutput) => void): void;
|
|
57
22
|
/**
|
|
58
|
-
* @
|
|
59
|
-
* <p>Ends a SQL transaction started with the <code>BeginTransaction</code> operation and
|
|
60
|
-
* commits the changes.</p>
|
|
23
|
+
* @see {@link CommitTransactionCommand}
|
|
61
24
|
*/
|
|
62
25
|
commitTransaction(args: CommitTransactionCommandInput, options?: __HttpHandlerOptions): Promise<CommitTransactionCommandOutput>;
|
|
63
26
|
commitTransaction(args: CommitTransactionCommandInput, cb: (err: any, data?: CommitTransactionCommandOutput) => void): void;
|
|
64
27
|
commitTransaction(args: CommitTransactionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CommitTransactionCommandOutput) => void): void;
|
|
65
28
|
/**
|
|
66
|
-
* @
|
|
67
|
-
* @deprecated
|
|
68
|
-
*
|
|
69
|
-
* <p>Runs one or more SQL statements.</p>
|
|
70
|
-
* <note>
|
|
71
|
-
* <p>This operation is deprecated. Use the <code>BatchExecuteStatement</code> or
|
|
72
|
-
* <code>ExecuteStatement</code> operation.</p>
|
|
73
|
-
* </note>
|
|
29
|
+
* @see {@link ExecuteSqlCommand}
|
|
74
30
|
*/
|
|
75
31
|
executeSql(args: ExecuteSqlCommandInput, options?: __HttpHandlerOptions): Promise<ExecuteSqlCommandOutput>;
|
|
76
32
|
executeSql(args: ExecuteSqlCommandInput, cb: (err: any, data?: ExecuteSqlCommandOutput) => void): void;
|
|
77
33
|
executeSql(args: ExecuteSqlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExecuteSqlCommandOutput) => void): void;
|
|
78
34
|
/**
|
|
79
|
-
* @
|
|
80
|
-
* <p>Runs a SQL statement against a database.</p>
|
|
81
|
-
* <note>
|
|
82
|
-
* <p>If a call isn't part of a transaction because it doesn't include the
|
|
83
|
-
* <code>transactionID</code> parameter, changes that result from the call are
|
|
84
|
-
* committed automatically.</p>
|
|
85
|
-
* <p>If the binary response data from the database is more than 1 MB, the call is terminated.</p>
|
|
86
|
-
* </note>
|
|
35
|
+
* @see {@link ExecuteStatementCommand}
|
|
87
36
|
*/
|
|
88
37
|
executeStatement(args: ExecuteStatementCommandInput, options?: __HttpHandlerOptions): Promise<ExecuteStatementCommandOutput>;
|
|
89
38
|
executeStatement(args: ExecuteStatementCommandInput, cb: (err: any, data?: ExecuteStatementCommandOutput) => void): void;
|
|
90
39
|
executeStatement(args: ExecuteStatementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExecuteStatementCommandOutput) => void): void;
|
|
91
40
|
/**
|
|
92
|
-
* @
|
|
93
|
-
* <p>Performs a rollback of a transaction. Rolling back a transaction cancels its changes.</p>
|
|
41
|
+
* @see {@link RollbackTransactionCommand}
|
|
94
42
|
*/
|
|
95
43
|
rollbackTransaction(args: RollbackTransactionCommandInput, options?: __HttpHandlerOptions): Promise<RollbackTransactionCommandOutput>;
|
|
96
44
|
rollbackTransaction(args: RollbackTransactionCommandInput, cb: (err: any, data?: RollbackTransactionCommandOutput) => void): void;
|
|
97
45
|
rollbackTransaction(args: RollbackTransactionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RollbackTransactionCommandOutput) => void): void;
|
|
98
46
|
}
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
* <fullname>Amazon RDS Data Service</fullname>
|
|
50
|
+
* <p>Amazon RDS provides an HTTP endpoint to run SQL statements on an Amazon Aurora Serverless v1 DB cluster. To run these
|
|
51
|
+
* statements, you work with the Data Service API.</p>
|
|
52
|
+
* <note>
|
|
53
|
+
* <p>The Data Service API isn't supported on Amazon Aurora Serverless v2 DB clusters.</p>
|
|
54
|
+
* </note>
|
|
55
|
+
* <p>For more information about the Data Service API, see
|
|
56
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html">Using the Data API</a>
|
|
57
|
+
* in the <i>Amazon Aurora User Guide</i>.</p>
|
|
58
|
+
*/
|
|
59
|
+
export declare class RDSData extends RDSDataClient implements RDSData {
|
|
60
|
+
}
|
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
RollbackTransactionCommandOutput,
|
|
25
25
|
} from "./commands/RollbackTransactionCommand";
|
|
26
26
|
import { RDSDataClient } from "./RDSDataClient";
|
|
27
|
-
export
|
|
27
|
+
export interface RDSData {
|
|
28
28
|
batchExecuteStatement(
|
|
29
29
|
args: BatchExecuteStatementCommandInput,
|
|
30
30
|
options?: __HttpHandlerOptions
|
|
@@ -104,3 +104,4 @@ export declare class RDSData extends RDSDataClient {
|
|
|
104
104
|
cb: (err: any, data?: RollbackTransactionCommandOutput) => void
|
|
105
105
|
): void;
|
|
106
106
|
}
|
|
107
|
+
export declare class RDSData extends RDSDataClient implements RDSData {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rds-data",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rds Data Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|