New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@types/aws-lambda

Package Overview
Dependencies
Maintainers
1
Versions
197
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/aws-lambda - npm Package Compare versions

Comparing version
8.10.155
to
8.10.156
+2
-2
aws-lambda/package.json
{
"name": "@types/aws-lambda",
"version": "8.10.155",
"version": "8.10.156",
"description": "TypeScript definitions for aws-lambda",

@@ -224,4 +224,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/aws-lambda",

"peerDependencies": {},
"typesPublisherContentHash": "06ac57418744e1b4c4f328d0a2540067a93f3434bad2fee4479a73fd2b334e9b",
"typesPublisherContentHash": "0556b7d1e9e8a8a40adbcec3318362112e1e08991f7325b45d51dc76c4913bb8",
"typeScriptVersion": "5.2"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Fri, 03 Oct 2025 22:33:35 GMT
* Last updated: Wed, 15 Oct 2025 21:02:14 GMT
* Dependencies: none

@@ -14,0 +14,0 @@

@@ -6,15 +6,23 @@ import { Handler } from "../handler";

// eslint-disable-next-line @definitelytyped/strict-export-declare-modifiers, @definitelytyped/no-single-element-tuple-type
type Merge<T> = [{ [K in keyof T]: T[K] }][number];
// eslint-disable-next-line @definitelytyped/strict-export-declare-modifiers
type ExclusivePropertyUnion<T, P = keyof T> = P extends any
? Merge<{ [K in Extract<keyof T, P>]: T[K] } & { [K in Exclude<keyof T, P>]?: never }>
: never;
// http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_streams_AttributeValue.html
export interface AttributeValue {
B?: string | undefined;
BS?: string[] | undefined;
BOOL?: boolean | undefined;
L?: AttributeValue[] | undefined;
M?: { [id: string]: AttributeValue } | undefined;
N?: string | undefined;
NS?: string[] | undefined;
NULL?: boolean | undefined;
S?: string | undefined;
SS?: string[] | undefined;
}
export type AttributeValue = ExclusivePropertyUnion<{
B: string;
BOOL: boolean;
BS: string[];
L: AttributeValue[];
M: Record<string, AttributeValue>;
N: string;
NS: string[];
NULL: boolean;
S: string;
SS: string[];
}>;

@@ -21,0 +29,0 @@ // http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_streams_StreamRecord.html