ag-common 0.0.801 → 0.0.802
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/api/types/aws.d.ts +4 -5
- package/package.json +1 -1
package/dist/api/types/aws.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { AttributeValue } from '@aws-sdk/client-dynamodb/dist-types/models/models_0';
|
|
2
1
|
export interface APIGatewayProxyResult {
|
|
3
2
|
statusCode: number;
|
|
4
3
|
headers?: {
|
|
@@ -64,13 +63,13 @@ export interface DynamoDBStreamEvent {
|
|
|
64
63
|
dynamodb?: {
|
|
65
64
|
ApproximateCreationDateTime?: number | undefined;
|
|
66
65
|
Keys?: {
|
|
67
|
-
[key: string]:
|
|
66
|
+
[key: string]: any;
|
|
68
67
|
} | undefined;
|
|
69
68
|
NewImage?: {
|
|
70
|
-
[key: string]:
|
|
69
|
+
[key: string]: any;
|
|
71
70
|
} | undefined;
|
|
72
71
|
OldImage?: {
|
|
73
|
-
[key: string]:
|
|
72
|
+
[key: string]: any;
|
|
74
73
|
} | undefined;
|
|
75
74
|
SequenceNumber?: string | undefined;
|
|
76
75
|
SizeBytes?: number | undefined;
|
|
@@ -85,5 +84,5 @@ export interface DynamoDBStreamEvent {
|
|
|
85
84
|
}[];
|
|
86
85
|
}
|
|
87
86
|
export type Key = {
|
|
88
|
-
[key: string]:
|
|
87
|
+
[key: string]: any;
|
|
89
88
|
};
|
package/package.json
CHANGED