@depup/aws-sdk__lib-dynamodb 3.1005.0-depup.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/LICENSE +201 -0
- package/README.md +31 -0
- package/dist-cjs/index.js +836 -0
- package/dist-es/DynamoDBDocument.js +214 -0
- package/dist-es/DynamoDBDocumentClient.js +20 -0
- package/dist-es/baseCommand/DynamoDBDocumentClientCommand.js +32 -0
- package/dist-es/commands/BatchExecuteStatementCommand.js +39 -0
- package/dist-es/commands/BatchGetCommand.js +45 -0
- package/dist-es/commands/BatchWriteCommand.js +57 -0
- package/dist-es/commands/DeleteCommand.js +38 -0
- package/dist-es/commands/ExecuteStatementCommand.js +31 -0
- package/dist-es/commands/ExecuteTransactionCommand.js +36 -0
- package/dist-es/commands/GetCommand.js +28 -0
- package/dist-es/commands/PutCommand.js +38 -0
- package/dist-es/commands/QueryCommand.js +42 -0
- package/dist-es/commands/ScanCommand.js +37 -0
- package/dist-es/commands/TransactGetCommand.js +38 -0
- package/dist-es/commands/TransactWriteCommand.js +53 -0
- package/dist-es/commands/UpdateCommand.js +43 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/commands/utils.js +80 -0
- package/dist-es/index.js +5 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/QueryPaginator.js +4 -0
- package/dist-es/pagination/ScanPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-types/DynamoDBDocument.d.ts +195 -0
- package/dist-types/DynamoDBDocumentClient.d.ts +96 -0
- package/dist-types/baseCommand/DynamoDBDocumentClientCommand.d.ts +17 -0
- package/dist-types/commands/BatchExecuteStatementCommand.d.ts +66 -0
- package/dist-types/commands/BatchGetCommand.d.ts +70 -0
- package/dist-types/commands/BatchWriteCommand.d.ts +94 -0
- package/dist-types/commands/DeleteCommand.d.ts +66 -0
- package/dist-types/commands/ExecuteStatementCommand.d.ts +52 -0
- package/dist-types/commands/ExecuteTransactionCommand.d.ts +60 -0
- package/dist-types/commands/GetCommand.d.ts +48 -0
- package/dist-types/commands/PutCommand.d.ts +66 -0
- package/dist-types/commands/QueryCommand.d.ts +70 -0
- package/dist-types/commands/ScanCommand.d.ts +62 -0
- package/dist-types/commands/TransactGetCommand.d.ts +64 -0
- package/dist-types/commands/TransactWriteCommand.d.ts +92 -0
- package/dist-types/commands/UpdateCommand.d.ts +74 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/commands/utils.d.ts +33 -0
- package/dist-types/index.d.ts +7 -0
- package/dist-types/pagination/Interfaces.d.ts +13 -0
- package/dist-types/pagination/QueryPaginator.d.ts +11 -0
- package/dist-types/pagination/ScanPaginator.d.ts +11 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/DynamoDBDocument.d.ts +221 -0
- package/dist-types/ts3.4/DynamoDBDocumentClient.d.ts +105 -0
- package/dist-types/ts3.4/baseCommand/DynamoDBDocumentClientCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +96 -0
- package/dist-types/ts3.4/commands/BatchGetCommand.d.ts +92 -0
- package/dist-types/ts3.4/commands/BatchWriteCommand.d.ts +142 -0
- package/dist-types/ts3.4/commands/DeleteCommand.d.ts +96 -0
- package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +61 -0
- package/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +78 -0
- package/dist-types/ts3.4/commands/GetCommand.d.ts +57 -0
- package/dist-types/ts3.4/commands/PutCommand.d.ts +93 -0
- package/dist-types/ts3.4/commands/QueryCommand.d.ts +96 -0
- package/dist-types/ts3.4/commands/ScanCommand.d.ts +80 -0
- package/dist-types/ts3.4/commands/TransactGetCommand.d.ts +82 -0
- package/dist-types/ts3.4/commands/TransactWriteCommand.d.ts +151 -0
- package/dist-types/ts3.4/commands/UpdateCommand.d.ts +113 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/commands/utils.d.ts +17 -0
- package/dist-types/ts3.4/index.d.ts +11 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +8 -0
- package/dist-types/ts3.4/pagination/QueryPaginator.d.ts +12 -0
- package/dist-types/ts3.4/pagination/ScanPaginator.d.ts +9 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/package.json +87 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ScanCommandInput, ScanCommandOutput } from "../commands/ScanCommand";
|
|
3
|
+
import { DynamoDBDocumentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export { Paginator };
|
|
5
|
+
export declare const paginateScan: (
|
|
6
|
+
config: DynamoDBDocumentPaginationConfiguration,
|
|
7
|
+
input: ScanCommandInput,
|
|
8
|
+
...additionalArguments: any
|
|
9
|
+
) => Paginator<ScanCommandOutput>;
|
package/package.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@depup/aws-sdk__lib-dynamodb",
|
|
3
|
+
"version": "3.1005.0-depup.0",
|
|
4
|
+
"description": "[DepUp] The document client simplifies working with items in Amazon DynamoDB by abstracting away the notion of attribute values.",
|
|
5
|
+
"main": "./dist-cjs/index.js",
|
|
6
|
+
"module": "./dist-es/index.js",
|
|
7
|
+
"types": "./dist-types/index.d.ts",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
10
|
+
"build:cjs": "node ../../scripts/compilation/inline lib-dynamodb",
|
|
11
|
+
"build:es": "tsc -p tsconfig.es.json",
|
|
12
|
+
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
13
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
14
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
15
|
+
"clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
|
|
16
|
+
"extract:docs": "api-extractor run --local",
|
|
17
|
+
"test": "yarn g:vitest run",
|
|
18
|
+
"test:watch": "yarn g:vitest watch",
|
|
19
|
+
"test:e2e": "yarn g:vitest run -c vitest.config.e2e.mts --mode development",
|
|
20
|
+
"test:e2e:watch": "yarn g:vitest watch -c vitest.config.e2e.mts",
|
|
21
|
+
"test:integration": "yarn g:vitest run -c vitest.config.integ.mts --mode development",
|
|
22
|
+
"test:integration:watch": "yarn g:vitest watch -c vitest.config.integ.mts"
|
|
23
|
+
},
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=20.0.0"
|
|
26
|
+
},
|
|
27
|
+
"author": {
|
|
28
|
+
"name": "AWS SDK for JavaScript Team",
|
|
29
|
+
"url": "https://aws.amazon.com/javascript/"
|
|
30
|
+
},
|
|
31
|
+
"license": "Apache-2.0",
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@aws-sdk/core": "^3.973.19",
|
|
34
|
+
"@aws-sdk/util-dynamodb": "^3.996.2",
|
|
35
|
+
"@smithy/core": "^3.23.9",
|
|
36
|
+
"@smithy/smithy-client": "^4.12.3",
|
|
37
|
+
"@smithy/types": "^4.13.0",
|
|
38
|
+
"tslib": "^2.8.1"
|
|
39
|
+
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"@aws-sdk/client-dynamodb": "^3.1005.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@aws-sdk/client-dynamodb": "3.1005.0",
|
|
45
|
+
"@tsconfig/recommended": "1.0.1",
|
|
46
|
+
"@types/node": "^20.14.8",
|
|
47
|
+
"concurrently": "7.0.0",
|
|
48
|
+
"downlevel-dts": "0.10.1",
|
|
49
|
+
"premove": "4.0.0",
|
|
50
|
+
"typescript": "~5.8.3"
|
|
51
|
+
},
|
|
52
|
+
"typesVersions": {
|
|
53
|
+
"<4.5": {
|
|
54
|
+
"dist-types/*": [
|
|
55
|
+
"dist-types/ts3.4/*"
|
|
56
|
+
]
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"files": [
|
|
60
|
+
"dist-*/**"
|
|
61
|
+
],
|
|
62
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/lib/lib-dynamodb",
|
|
63
|
+
"repository": {
|
|
64
|
+
"type": "git",
|
|
65
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
66
|
+
"directory": "lib/lib-dynamodb"
|
|
67
|
+
},
|
|
68
|
+
"keywords": [
|
|
69
|
+
"depup",
|
|
70
|
+
"dependency-bumped",
|
|
71
|
+
"updated-deps",
|
|
72
|
+
"@aws-sdk/lib-dynamodb"
|
|
73
|
+
],
|
|
74
|
+
"depup": {
|
|
75
|
+
"changes": {
|
|
76
|
+
"tslib": {
|
|
77
|
+
"from": "^2.6.2",
|
|
78
|
+
"to": "^2.8.1"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"depsUpdated": 1,
|
|
82
|
+
"originalPackage": "@aws-sdk/lib-dynamodb",
|
|
83
|
+
"originalVersion": "3.1005.0",
|
|
84
|
+
"processedAt": "2026-03-09T20:26:27.059Z",
|
|
85
|
+
"smokeTest": "passed"
|
|
86
|
+
}
|
|
87
|
+
}
|