@aws-sdk/client-dynamodb 3.929.0 → 3.931.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/index.js
CHANGED
|
@@ -691,32 +691,6 @@ let IndexNotFoundException$1 = class IndexNotFoundException extends DynamoDBServ
|
|
|
691
691
|
Object.setPrototypeOf(this, IndexNotFoundException.prototype);
|
|
692
692
|
}
|
|
693
693
|
};
|
|
694
|
-
exports.AttributeValue = void 0;
|
|
695
|
-
(function (AttributeValue) {
|
|
696
|
-
AttributeValue.visit = (value, visitor) => {
|
|
697
|
-
if (value.S !== undefined)
|
|
698
|
-
return visitor.S(value.S);
|
|
699
|
-
if (value.N !== undefined)
|
|
700
|
-
return visitor.N(value.N);
|
|
701
|
-
if (value.B !== undefined)
|
|
702
|
-
return visitor.B(value.B);
|
|
703
|
-
if (value.SS !== undefined)
|
|
704
|
-
return visitor.SS(value.SS);
|
|
705
|
-
if (value.NS !== undefined)
|
|
706
|
-
return visitor.NS(value.NS);
|
|
707
|
-
if (value.BS !== undefined)
|
|
708
|
-
return visitor.BS(value.BS);
|
|
709
|
-
if (value.M !== undefined)
|
|
710
|
-
return visitor.M(value.M);
|
|
711
|
-
if (value.L !== undefined)
|
|
712
|
-
return visitor.L(value.L);
|
|
713
|
-
if (value.NULL !== undefined)
|
|
714
|
-
return visitor.NULL(value.NULL);
|
|
715
|
-
if (value.BOOL !== undefined)
|
|
716
|
-
return visitor.BOOL(value.BOOL);
|
|
717
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
718
|
-
};
|
|
719
|
-
})(exports.AttributeValue || (exports.AttributeValue = {}));
|
|
720
694
|
let ConditionalCheckFailedException$1 = class ConditionalCheckFailedException extends DynamoDBServiceException$1 {
|
|
721
695
|
name = "ConditionalCheckFailedException";
|
|
722
696
|
$fault = "client";
|
|
@@ -648,32 +648,6 @@ export class IndexNotFoundException extends __BaseException {
|
|
|
648
648
|
Object.setPrototypeOf(this, IndexNotFoundException.prototype);
|
|
649
649
|
}
|
|
650
650
|
}
|
|
651
|
-
export var AttributeValue;
|
|
652
|
-
(function (AttributeValue) {
|
|
653
|
-
AttributeValue.visit = (value, visitor) => {
|
|
654
|
-
if (value.S !== undefined)
|
|
655
|
-
return visitor.S(value.S);
|
|
656
|
-
if (value.N !== undefined)
|
|
657
|
-
return visitor.N(value.N);
|
|
658
|
-
if (value.B !== undefined)
|
|
659
|
-
return visitor.B(value.B);
|
|
660
|
-
if (value.SS !== undefined)
|
|
661
|
-
return visitor.SS(value.SS);
|
|
662
|
-
if (value.NS !== undefined)
|
|
663
|
-
return visitor.NS(value.NS);
|
|
664
|
-
if (value.BS !== undefined)
|
|
665
|
-
return visitor.BS(value.BS);
|
|
666
|
-
if (value.M !== undefined)
|
|
667
|
-
return visitor.M(value.M);
|
|
668
|
-
if (value.L !== undefined)
|
|
669
|
-
return visitor.L(value.L);
|
|
670
|
-
if (value.NULL !== undefined)
|
|
671
|
-
return visitor.NULL(value.NULL);
|
|
672
|
-
if (value.BOOL !== undefined)
|
|
673
|
-
return visitor.BOOL(value.BOOL);
|
|
674
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
675
|
-
};
|
|
676
|
-
})(AttributeValue || (AttributeValue = {}));
|
|
677
651
|
export class ConditionalCheckFailedException extends __BaseException {
|
|
678
652
|
name = "ConditionalCheckFailedException";
|
|
679
653
|
$fault = "client";
|
|
@@ -7186,6 +7186,10 @@ export declare namespace AttributeValue {
|
|
|
7186
7186
|
BOOL?: never;
|
|
7187
7187
|
$unknown: [string, any];
|
|
7188
7188
|
}
|
|
7189
|
+
/**
|
|
7190
|
+
* @deprecated unused in schema-serde mode.
|
|
7191
|
+
*
|
|
7192
|
+
*/
|
|
7189
7193
|
interface Visitor<T> {
|
|
7190
7194
|
S: (value: string) => T;
|
|
7191
7195
|
N: (value: string) => T;
|
|
@@ -7199,7 +7203,6 @@ export declare namespace AttributeValue {
|
|
|
7199
7203
|
BOOL: (value: boolean) => T;
|
|
7200
7204
|
_: (name: string, value: any) => T;
|
|
7201
7205
|
}
|
|
7202
|
-
const visit: <T>(value: AttributeValue, visitor: Visitor<T>) => T;
|
|
7203
7206
|
}
|
|
7204
7207
|
/**
|
|
7205
7208
|
* <p>For the <code>UpdateItem</code> operation, represents the attributes to be modified,
|
|
@@ -1742,7 +1742,6 @@ export declare namespace AttributeValue {
|
|
|
1742
1742
|
BOOL: (value: boolean) => T;
|
|
1743
1743
|
_: (name: string, value: any) => T;
|
|
1744
1744
|
}
|
|
1745
|
-
const visit: <T>(value: AttributeValue, visitor: Visitor<T>) => T;
|
|
1746
1745
|
}
|
|
1747
1746
|
export interface AttributeValueUpdate {
|
|
1748
1747
|
Value?: AttributeValue | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dynamodb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.931.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-dynamodb",
|
|
@@ -22,44 +22,44 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-endpoint-discovery": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
33
|
-
"@aws-sdk/types": "3.
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
37
|
-
"@smithy/config-resolver": "^4.4.
|
|
38
|
-
"@smithy/core": "^3.
|
|
39
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
40
|
-
"@smithy/hash-node": "^4.2.
|
|
41
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
42
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
44
|
-
"@smithy/middleware-retry": "^4.4.
|
|
45
|
-
"@smithy/middleware-serde": "^4.2.
|
|
46
|
-
"@smithy/middleware-stack": "^4.2.
|
|
47
|
-
"@smithy/node-config-provider": "^4.3.
|
|
48
|
-
"@smithy/node-http-handler": "^4.4.
|
|
49
|
-
"@smithy/protocol-http": "^5.3.
|
|
50
|
-
"@smithy/smithy-client": "^4.9.
|
|
51
|
-
"@smithy/types": "^4.
|
|
52
|
-
"@smithy/url-parser": "^4.2.
|
|
25
|
+
"@aws-sdk/core": "3.931.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.931.0",
|
|
27
|
+
"@aws-sdk/middleware-endpoint-discovery": "3.930.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.930.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.930.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.931.0",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
33
|
+
"@aws-sdk/types": "3.930.0",
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.930.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.931.0",
|
|
37
|
+
"@smithy/config-resolver": "^4.4.3",
|
|
38
|
+
"@smithy/core": "^3.18.2",
|
|
39
|
+
"@smithy/fetch-http-handler": "^5.3.6",
|
|
40
|
+
"@smithy/hash-node": "^4.2.5",
|
|
41
|
+
"@smithy/invalid-dependency": "^4.2.5",
|
|
42
|
+
"@smithy/middleware-content-length": "^4.2.5",
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.3.9",
|
|
44
|
+
"@smithy/middleware-retry": "^4.4.9",
|
|
45
|
+
"@smithy/middleware-serde": "^4.2.5",
|
|
46
|
+
"@smithy/middleware-stack": "^4.2.5",
|
|
47
|
+
"@smithy/node-config-provider": "^4.3.5",
|
|
48
|
+
"@smithy/node-http-handler": "^4.4.5",
|
|
49
|
+
"@smithy/protocol-http": "^5.3.5",
|
|
50
|
+
"@smithy/smithy-client": "^4.9.5",
|
|
51
|
+
"@smithy/types": "^4.9.0",
|
|
52
|
+
"@smithy/url-parser": "^4.2.5",
|
|
53
53
|
"@smithy/util-base64": "^4.3.0",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
58
|
-
"@smithy/util-endpoints": "^3.2.
|
|
59
|
-
"@smithy/util-middleware": "^4.2.
|
|
60
|
-
"@smithy/util-retry": "^4.2.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.3.8",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.2.11",
|
|
58
|
+
"@smithy/util-endpoints": "^3.2.5",
|
|
59
|
+
"@smithy/util-middleware": "^4.2.5",
|
|
60
|
+
"@smithy/util-retry": "^4.2.5",
|
|
61
61
|
"@smithy/util-utf8": "^4.2.0",
|
|
62
|
-
"@smithy/util-waiter": "^4.2.
|
|
62
|
+
"@smithy/util-waiter": "^4.2.5",
|
|
63
63
|
"tslib": "^2.6.2"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|