Socket
Socket
Sign inDemoInstall

@aws-sdk/util-dynamodb

Package Overview
Dependencies
Maintainers
5
Versions
377
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/util-dynamodb - npm Package Compare versions

Comparing version 3.613.0 to 3.614.0

7

dist-types/models.d.ts
/// <reference types="node" />
import type { Exact } from "@smithy/types";
/**

@@ -35,9 +34,7 @@ * A interface recognizable as a numeric value that stores the underlying number

}
type Unavailable = never;
type BlobDefined = Exact<Blob, {}> extends true ? false : true;
type BlobOptionalType = BlobDefined extends true ? Blob : Unavailable;
type IfDefined<T> = {} extends T ? never : T;
/**
* @public
*/
export type NativeAttributeBinary = ArrayBuffer | BlobOptionalType | Buffer | DataView | File | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array | BigInt64Array | BigUint64Array;
export type NativeAttributeBinary = ArrayBuffer | IfDefined<Blob> | IfDefined<Buffer> | DataView | IfDefined<File> | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array | BigInt64Array | BigUint64Array;
export {};

@@ -1,2 +0,1 @@

import { Exact } from "@smithy/types";
export interface NumberValue {

@@ -29,11 +28,9 @@ readonly value: string;

}
type Unavailable = never;
type BlobDefined = Exact<Blob, {}> extends true ? false : true;
type BlobOptionalType = BlobDefined extends true ? Blob : Unavailable;
type IfDefined<T> = {} extends T ? never : T;
export type NativeAttributeBinary =
| ArrayBuffer
| BlobOptionalType
| Buffer
| IfDefined<Blob>
| IfDefined<Buffer>
| DataView
| File
| IfDefined<File>
| Int8Array

@@ -40,0 +37,0 @@ | Uint8Array

{
"name": "@aws-sdk/util-dynamodb",
"version": "3.613.0",
"version": "3.614.0",
"scripts": {

@@ -27,3 +27,3 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",

"devDependencies": {
"@aws-sdk/client-dynamodb": "3.613.0",
"@aws-sdk/client-dynamodb": "3.614.0",
"@tsconfig/recommended": "1.0.1",

@@ -36,3 +36,3 @@ "concurrently": "7.0.0",

"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.613.0"
"@aws-sdk/client-dynamodb": "^3.614.0"
},

@@ -39,0 +39,0 @@ "engines": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc