@aws-lite/rds-data-types 0.0.8 → 0.0.10
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/index.d.ts +6 -6
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -16,34 +16,34 @@ declare interface AwsLiteRDSData {
|
|
|
16
16
|
/**
|
|
17
17
|
* @description
|
|
18
18
|
* - AWS docs: {@link https://docs.aws.amazon.com/rdsdataservice/latest/APIReference/API_BatchExecuteStatement.html RDS Data Service: BatchExecuteStatement}
|
|
19
|
-
* - aws-lite docs: {@link https://github.com/
|
|
19
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/rds-data/readme.md#BatchExecuteStatement RDS Data Service: BatchExecuteStatement}
|
|
20
20
|
*/
|
|
21
21
|
BatchExecuteStatement: (input: { database?: string, parameterSets?: any[], resourceArn: string, schema?: string, secretArn: string, sql: string, transactionId?: string }) => Promise<BatchExecuteStatementResponse>
|
|
22
22
|
/**
|
|
23
23
|
* @description
|
|
24
24
|
* - AWS docs: {@link https://docs.aws.amazon.com/rdsdataservice/latest/APIReference/API_BeginTransaction.html RDS Data Service: BeginTransaction}
|
|
25
|
-
* - aws-lite docs: {@link https://github.com/
|
|
25
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/rds-data/readme.md#BeginTransaction RDS Data Service: BeginTransaction}
|
|
26
26
|
*/
|
|
27
27
|
BeginTransaction: (input: { database?: string, resourceArn: string, schema?: string, secretArn: string }) => Promise<BeginTransactionResponse>
|
|
28
28
|
/**
|
|
29
29
|
* @description
|
|
30
30
|
* - AWS docs: {@link https://docs.aws.amazon.com/rdsdataservice/latest/APIReference/API_CommitTransaction.html RDS Data Service: CommitTransaction}
|
|
31
|
-
* - aws-lite docs: {@link https://github.com/
|
|
31
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/rds-data/readme.md#CommitTransaction RDS Data Service: CommitTransaction}
|
|
32
32
|
*/
|
|
33
33
|
CommitTransaction: (input: { resourceArn: string, secretArn: string, transactionId: string }) => Promise<CommitTransactionResponse>
|
|
34
34
|
/**
|
|
35
35
|
* @description
|
|
36
36
|
* - AWS docs: {@link https://docs.aws.amazon.com/rdsdataservice/latest/APIReference/API_ExecuteStatement.html RDS Data Service: ExecuteStatement}
|
|
37
|
-
* - aws-lite docs: {@link https://github.com/
|
|
37
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/rds-data/readme.md#ExecuteStatement RDS Data Service: ExecuteStatement}
|
|
38
38
|
*/
|
|
39
39
|
ExecuteStatement: (input: { continueAfterTimeout?: boolean, database?: string, formatRecordsAs?: string, includeResultMetadata?: boolean, parameters?: any[], resourceArn: string, resultSetOptions?: Record<string, any>, schema?: string, secretArn: string, sql: string, transactionId?: string }) => Promise<ExecuteStatementResponse>
|
|
40
40
|
/**
|
|
41
41
|
* @description
|
|
42
42
|
* - AWS docs: {@link https://docs.aws.amazon.com/rdsdataservice/latest/APIReference/API_RollbackTransaction.html RDS Data Service: RollbackTransaction}
|
|
43
|
-
* - aws-lite docs: {@link https://github.com/
|
|
43
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/rds-data/readme.md#RollbackTransaction RDS Data Service: RollbackTransaction}
|
|
44
44
|
*/
|
|
45
45
|
RollbackTransaction: (input: { resourceArn: string, secretArn: string, transactionId: string }) => Promise<RollbackTransactionResponse>
|
|
46
|
-
/** @description aws-lite docs: {@link https://github.com/
|
|
46
|
+
/** @description aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/rds-data/readme.md#ExecuteSql RDS Data Service: ExecuteSql} */
|
|
47
47
|
ExecuteSql: () => Promise<ExecuteSqlResponse>
|
|
48
48
|
// $METHODS_END
|
|
49
49
|
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-lite/rds-data-types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.10",
|
|
4
4
|
"description": "Type definitions for the `@aws-lite/rds-data` plugin",
|
|
5
5
|
"homepage": "https://aws-lite.org/services/rds-data",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/
|
|
8
|
+
"url": "git+https://github.com/aws-lite/aws-lite.git",
|
|
9
9
|
"directory": "plugins/rds-data/types"
|
|
10
10
|
},
|
|
11
|
-
"bugs": "https://github.com/
|
|
11
|
+
"bugs": "https://github.com/aws-lite/aws-lite/issues",
|
|
12
12
|
"main": "",
|
|
13
13
|
"engines": {
|
|
14
14
|
"node": ">=16"
|