New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@aws-amplify/storage

Package Overview
Dependencies
Maintainers
9
Versions
2102
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-amplify/storage - npm Package Compare versions

Comparing version 6.6.8-unstable.63bceab.0 to 6.6.8-unstable.b26e719.0

3

dist/cjs/providers/s3/types/index.js

@@ -6,5 +6,2 @@ 'use strict';

Object.defineProperty(exports, "__esModule", { value: true });
exports.S3Exception = void 0;
var errors_1 = require("./errors");
Object.defineProperty(exports, "S3Exception", { enumerable: true, get: function () { return errors_1.S3Exception; } });
//# sourceMappingURL=index.js.map

3

dist/esm/providers/s3/types/index.d.ts

@@ -1,4 +0,3 @@

export { GetUrlOptionsWithKey, GetUrlOptionsWithPath, UploadDataOptionsWithPath, UploadDataOptionsWithKey, GetPropertiesOptionsWithKey, GetPropertiesOptionsWithPath, ListAllOptionsWithPrefix, ListPaginateOptionsWithPrefix, ListAllOptionsWithPath, ListPaginateOptionsWithPath, RemoveOptions, DownloadDataOptionsWithPath, DownloadDataOptionsWithKey, CopyDestinationOptionsWithKey, CopySourceOptionsWithKey, CopyWithPathSourceOptions, CopyWithPathDestinationOptions, } from './options';
export { GetUrlWithKeyOptions, GetUrlWithPathOptions, UploadDataWithPathOptions, UploadDataWithKeyOptions, GetPropertiesWithKeyOptions, GetPropertiesWithPathOptions, ListAllWithPrefixOptions, ListPaginateWithPrefixOptions, ListAllWithPathOptions, ListPaginateWithPathOptions, RemoveOptions, DownloadDataWithPathOptions, DownloadDataWithKeyOptions, CopyDestinationWithKeyOptions, CopySourceWithKeyOptions, } from './options';
export { UploadDataOutput, UploadDataWithPathOutput, DownloadDataOutput, DownloadDataWithPathOutput, RemoveOutput, RemoveWithPathOutput, ListAllOutput, ListAllWithPathOutput, ListPaginateOutput, ListPaginateWithPathOutput, GetPropertiesOutput, GetPropertiesWithPathOutput, CopyOutput, CopyWithPathOutput, GetUrlOutput, GetUrlWithPathOutput, ListOutputItem, ListOutputItemWithPath, } from './outputs';
export { CopyInput, CopyWithPathInput, GetPropertiesInput, GetPropertiesWithPathInput, GetUrlInput, GetUrlWithPathInput, RemoveWithPathInput, RemoveInput, DownloadDataInput, DownloadDataWithPathInput, UploadDataInput, UploadDataWithPathInput, ListAllInput, ListPaginateInput, ListAllWithPathInput, ListPaginateWithPathInput, } from './inputs';
export { S3Exception } from './errors';
import { StorageCopyInputWithKey, StorageCopyInputWithPath, StorageDownloadDataInputWithKey, StorageDownloadDataInputWithPath, StorageGetPropertiesInputWithKey, StorageGetPropertiesInputWithPath, StorageGetUrlInputWithKey, StorageGetUrlInputWithPath, StorageListInputWithPath, StorageListInputWithPrefix, StorageRemoveInputWithKey, StorageRemoveInputWithPath, StorageUploadDataInputWithKey, StorageUploadDataInputWithPath } from '../../../types';
import { CopyDestinationOptionsWithKey, CopySourceOptionsWithKey, DownloadDataOptionsWithKey, DownloadDataOptionsWithPath, GetPropertiesOptionsWithKey, GetPropertiesOptionsWithPath, GetUrlOptionsWithKey, GetUrlOptionsWithPath, ListAllOptionsWithPath, ListAllOptionsWithPrefix, ListPaginateOptionsWithPath, ListPaginateOptionsWithPrefix, RemoveOptions, UploadDataOptionsWithKey, UploadDataOptionsWithPath } from '../types';
import { CopyDestinationWithKeyOptions, CopySourceWithKeyOptions, DownloadDataWithKeyOptions, DownloadDataWithPathOptions, GetPropertiesWithKeyOptions, GetPropertiesWithPathOptions, GetUrlWithKeyOptions, GetUrlWithPathOptions, ListAllWithPathOptions, ListAllWithPrefixOptions, ListPaginateWithPathOptions, ListPaginateWithPrefixOptions, RemoveOptions, UploadDataWithKeyOptions, UploadDataWithPathOptions } from '../types';
/**

@@ -7,3 +7,3 @@ * @deprecated Use {@link CopyWithPathInput} instead.

*/
export type CopyInput = StorageCopyInputWithKey<CopySourceOptionsWithKey, CopyDestinationOptionsWithKey>;
export type CopyInput = StorageCopyInputWithKey<CopySourceWithKeyOptions, CopyDestinationWithKeyOptions>;
/**

@@ -17,7 +17,7 @@ * Input type with path for S3 copy API.

*/
export type GetPropertiesInput = StorageGetPropertiesInputWithKey<GetPropertiesOptionsWithKey>;
export type GetPropertiesInput = StorageGetPropertiesInputWithKey<GetPropertiesWithKeyOptions>;
/**
* Input type with for S3 getProperties API.
*/
export type GetPropertiesWithPathInput = StorageGetPropertiesInputWithPath<GetPropertiesOptionsWithPath>;
export type GetPropertiesWithPathInput = StorageGetPropertiesInputWithPath<GetPropertiesWithPathOptions>;
/**

@@ -27,15 +27,15 @@ * @deprecated Use {@link GetUrlWithPathInput} instead.

*/
export type GetUrlInput = StorageGetUrlInputWithKey<GetUrlOptionsWithKey>;
export type GetUrlInput = StorageGetUrlInputWithKey<GetUrlWithKeyOptions>;
/**
* Input type with path for S3 getUrl API.
*/
export type GetUrlWithPathInput = StorageGetUrlInputWithPath<GetUrlOptionsWithPath>;
export type GetUrlWithPathInput = StorageGetUrlInputWithPath<GetUrlWithPathOptions>;
/**
* Input type with path for S3 list API. Lists all bucket objects.
*/
export type ListAllWithPathInput = StorageListInputWithPath<ListAllOptionsWithPath>;
export type ListAllWithPathInput = StorageListInputWithPath<ListAllWithPathOptions>;
/**
* Input type with path for S3 list API. Lists bucket objects with pagination.
*/
export type ListPaginateWithPathInput = StorageListInputWithPath<ListPaginateOptionsWithPath>;
export type ListPaginateWithPathInput = StorageListInputWithPath<ListPaginateWithPathOptions>;
/**

@@ -45,3 +45,3 @@ * @deprecated Use {@link ListAllWithPathInput} instead.

*/
export type ListAllInput = StorageListInputWithPrefix<ListAllOptionsWithPrefix>;
export type ListAllInput = StorageListInputWithPrefix<ListAllWithPrefixOptions>;
/**

@@ -51,3 +51,3 @@ * @deprecated Use {@link ListPaginateWithPathInput} instead.

*/
export type ListPaginateInput = StorageListInputWithPrefix<ListPaginateOptionsWithPrefix>;
export type ListPaginateInput = StorageListInputWithPrefix<ListPaginateWithPrefixOptions>;
/**

@@ -66,7 +66,7 @@ * @deprecated Use {@link RemoveWithPathInput} instead.

*/
export type DownloadDataInput = StorageDownloadDataInputWithKey<DownloadDataOptionsWithKey>;
export type DownloadDataInput = StorageDownloadDataInputWithKey<DownloadDataWithKeyOptions>;
/**
* Input type with path for S3 downloadData API.
*/
export type DownloadDataWithPathInput = StorageDownloadDataInputWithPath<DownloadDataOptionsWithPath>;
export type DownloadDataWithPathInput = StorageDownloadDataInputWithPath<DownloadDataWithPathOptions>;
/**

@@ -76,6 +76,6 @@ * @deprecated Use {@link UploadDataWithPathInput} instead.

*/
export type UploadDataInput = StorageUploadDataInputWithKey<UploadDataOptionsWithKey>;
export type UploadDataInput = StorageUploadDataInputWithKey<UploadDataWithKeyOptions>;
/**
* Input type with path for S3 uploadData API.
*/
export type UploadDataWithPathInput = StorageUploadDataInputWithPath<UploadDataOptionsWithPath>;
export type UploadDataWithPathInput = StorageUploadDataInputWithPath<UploadDataWithPathOptions>;

@@ -59,5 +59,5 @@ import { StorageAccessLevel } from '@aws-amplify/core';

*/
/** @deprecated Use {@link GetPropertiesOptionsWithPath} instead. */
export type GetPropertiesOptionsWithKey = ReadOptions & CommonOptions;
export type GetPropertiesOptionsWithPath = CommonOptions;
/** @deprecated Use {@link GetPropertiesWithPathOptions} instead. */
export type GetPropertiesWithKeyOptions = ReadOptions & CommonOptions;
export type GetPropertiesWithPathOptions = CommonOptions;
/**

@@ -68,15 +68,15 @@ * Input options type for S3 getProperties API.

/**
* @deprecated Use {@link ListAllOptionsWithPath} instead.
* @deprecated Use {@link ListAllWithPathOptions} instead.
* Input options type with prefix for S3 list all API.
*/
export type ListAllOptionsWithPrefix = StorageListAllOptions & ReadOptions & CommonOptions;
export type ListAllWithPrefixOptions = StorageListAllOptions & ReadOptions & CommonOptions;
/**
* @deprecated Use {@link ListPaginateOptionsWithPath} instead.
* @deprecated Use {@link ListPaginateWithPathOptions} instead.
* Input options type with prefix for S3 list API to paginate items.
*/
export type ListPaginateOptionsWithPrefix = StorageListPaginateOptions & ReadOptions & CommonOptions;
export type ListPaginateWithPrefixOptions = StorageListPaginateOptions & ReadOptions & CommonOptions;
/**
* Input options type with path for S3 list all API.
*/
export type ListAllOptionsWithPath = Omit<StorageListAllOptions, 'accessLevel'> & CommonOptions & {
export type ListAllWithPathOptions = Omit<StorageListAllOptions, 'accessLevel'> & CommonOptions & {
subpathStrategy?: StorageSubpathStrategy;

@@ -87,3 +87,3 @@ };

*/
export type ListPaginateOptionsWithPath = Omit<StorageListPaginateOptions, 'accessLevel'> & CommonOptions & {
export type ListPaginateWithPathOptions = Omit<StorageListPaginateOptions, 'accessLevel'> & CommonOptions & {
subpathStrategy?: StorageSubpathStrategy;

@@ -119,5 +119,5 @@ };

};
/** @deprecated Use {@link GetUrlOptionsWithPath} instead. */
export type GetUrlOptionsWithKey = ReadOptions & GetUrlOptions;
export type GetUrlOptionsWithPath = GetUrlOptions;
/** @deprecated Use {@link GetUrlWithPathOptions} instead. */
export type GetUrlWithKeyOptions = ReadOptions & GetUrlOptions;
export type GetUrlWithPathOptions = GetUrlOptions;
/**

@@ -127,5 +127,5 @@ * Input options type for S3 downloadData API.

export type DownloadDataOptions = CommonOptions & TransferOptions & BytesRangeOptions;
/** @deprecated Use {@link DownloadDataOptionsWithPath} instead. */
export type DownloadDataOptionsWithKey = ReadOptions & DownloadDataOptions;
export type DownloadDataOptionsWithPath = DownloadDataOptions;
/** @deprecated Use {@link DownloadDataWithPathOptions} instead. */
export type DownloadDataWithKeyOptions = ReadOptions & DownloadDataOptions;
export type DownloadDataWithPathOptions = DownloadDataOptions;
export type UploadDataOptions = CommonOptions & TransferOptions & {

@@ -156,7 +156,7 @@ /**

};
/** @deprecated Use {@link UploadDataOptionsWithPath} instead. */
export type UploadDataOptionsWithKey = WriteOptions & UploadDataOptions;
export type UploadDataOptionsWithPath = UploadDataOptions;
/** @deprecated Use {@link UploadDataWithPathOptions} instead. */
export type UploadDataWithKeyOptions = WriteOptions & UploadDataOptions;
export type UploadDataWithPathOptions = UploadDataOptions;
/** @deprecated This may be removed in the next major version. */
export type CopySourceOptionsWithKey = ReadOptions & {
export type CopySourceWithKeyOptions = ReadOptions & {
/** @deprecated This may be removed in the next major version. */

@@ -167,3 +167,3 @@ key: string;

/** @deprecated This may be removed in the next major version. */
export type CopyDestinationOptionsWithKey = WriteOptions & {
export type CopyDestinationWithKeyOptions = WriteOptions & {
/** @deprecated This may be removed in the next major version. */

@@ -170,0 +170,0 @@ key: string;

{
"name": "@aws-amplify/storage",
"version": "6.6.8-unstable.63bceab.0+63bceab",
"version": "6.6.8-unstable.b26e719.0+b26e719",
"description": "Storage category of aws-amplify",

@@ -101,10 +101,10 @@ "main": "./dist/cjs/index.js",

"peerDependencies": {
"@aws-amplify/core": "6.4.3-unstable.63bceab.0+63bceab"
"@aws-amplify/core": "6.4.3-unstable.b26e719.0+b26e719"
},
"devDependencies": {
"@aws-amplify/core": "6.4.3-unstable.63bceab.0+63bceab",
"@aws-amplify/react-native": "1.1.6-unstable.63bceab.0+63bceab",
"@aws-amplify/core": "6.4.3-unstable.b26e719.0+b26e719",
"@aws-amplify/react-native": "1.1.6-unstable.b26e719.0+b26e719",
"typescript": "5.0.2"
},
"gitHead": "63bceabcaf0085fa46aa2d5c976fed709c63ef9d"
"gitHead": "b26e7199d25cbc1821ff7c45b8ad78b5544b7a2f"
}

@@ -24,4 +24,4 @@ // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

import {
ListAllOptionsWithPath,
ListPaginateOptionsWithPath,
ListAllWithPathOptions,
ListPaginateWithPathOptions,
ResolvedS3Config,

@@ -271,3 +271,3 @@ } from '../../types/options';

const getDelimiter = (
options?: ListAllOptionsWithPath | ListPaginateOptionsWithPath,
options?: ListAllWithPathOptions | ListPaginateWithPathOptions,
): string | undefined => {

@@ -274,0 +274,0 @@ if (options?.subpathStrategy?.strategy === 'exclude') {

@@ -20,3 +20,3 @@ // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

ResolvedS3Config,
UploadDataOptionsWithKey,
UploadDataWithKeyOptions,
} from '../../../types/options';

@@ -103,3 +103,3 @@ import { StorageError } from '../../../../../errors/StorageError';

if (inputType === STORAGE_INPUT_KEY) {
const accessLevel = (uploadDataOptions as UploadDataOptionsWithKey)
const accessLevel = (uploadDataOptions as UploadDataWithKeyOptions)
?.accessLevel;

@@ -106,0 +106,0 @@

@@ -5,19 +5,17 @@ // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

export {
GetUrlOptionsWithKey,
GetUrlOptionsWithPath,
UploadDataOptionsWithPath,
UploadDataOptionsWithKey,
GetPropertiesOptionsWithKey,
GetPropertiesOptionsWithPath,
ListAllOptionsWithPrefix,
ListPaginateOptionsWithPrefix,
ListAllOptionsWithPath,
ListPaginateOptionsWithPath,
GetUrlWithKeyOptions,
GetUrlWithPathOptions,
UploadDataWithPathOptions,
UploadDataWithKeyOptions,
GetPropertiesWithKeyOptions,
GetPropertiesWithPathOptions,
ListAllWithPrefixOptions,
ListPaginateWithPrefixOptions,
ListAllWithPathOptions,
ListPaginateWithPathOptions,
RemoveOptions,
DownloadDataOptionsWithPath,
DownloadDataOptionsWithKey,
CopyDestinationOptionsWithKey,
CopySourceOptionsWithKey,
CopyWithPathSourceOptions,
CopyWithPathDestinationOptions,
DownloadDataWithPathOptions,
DownloadDataWithKeyOptions,
CopyDestinationWithKeyOptions,
CopySourceWithKeyOptions,
} from './options';

@@ -62,2 +60,1 @@ export {

} from './inputs';
export { S3Exception } from './errors';

@@ -21,17 +21,17 @@ // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

import {
CopyDestinationOptionsWithKey,
CopySourceOptionsWithKey,
DownloadDataOptionsWithKey,
DownloadDataOptionsWithPath,
GetPropertiesOptionsWithKey,
GetPropertiesOptionsWithPath,
GetUrlOptionsWithKey,
GetUrlOptionsWithPath,
ListAllOptionsWithPath,
ListAllOptionsWithPrefix,
ListPaginateOptionsWithPath,
ListPaginateOptionsWithPrefix,
CopyDestinationWithKeyOptions,
CopySourceWithKeyOptions,
DownloadDataWithKeyOptions,
DownloadDataWithPathOptions,
GetPropertiesWithKeyOptions,
GetPropertiesWithPathOptions,
GetUrlWithKeyOptions,
GetUrlWithPathOptions,
ListAllWithPathOptions,
ListAllWithPrefixOptions,
ListPaginateWithPathOptions,
ListPaginateWithPrefixOptions,
RemoveOptions,
UploadDataOptionsWithKey,
UploadDataOptionsWithPath,
UploadDataWithKeyOptions,
UploadDataWithPathOptions,
} from '../types';

@@ -45,4 +45,4 @@

export type CopyInput = StorageCopyInputWithKey<
CopySourceOptionsWithKey,
CopyDestinationOptionsWithKey
CopySourceWithKeyOptions,
CopyDestinationWithKeyOptions
>;

@@ -59,3 +59,3 @@ /**

export type GetPropertiesInput =
StorageGetPropertiesInputWithKey<GetPropertiesOptionsWithKey>;
StorageGetPropertiesInputWithKey<GetPropertiesWithKeyOptions>;
/**

@@ -65,3 +65,3 @@ * Input type with for S3 getProperties API.

export type GetPropertiesWithPathInput =
StorageGetPropertiesInputWithPath<GetPropertiesOptionsWithPath>;
StorageGetPropertiesInputWithPath<GetPropertiesWithPathOptions>;

@@ -72,3 +72,3 @@ /**

*/
export type GetUrlInput = StorageGetUrlInputWithKey<GetUrlOptionsWithKey>;
export type GetUrlInput = StorageGetUrlInputWithKey<GetUrlWithKeyOptions>;
/**

@@ -78,3 +78,3 @@ * Input type with path for S3 getUrl API.

export type GetUrlWithPathInput =
StorageGetUrlInputWithPath<GetUrlOptionsWithPath>;
StorageGetUrlInputWithPath<GetUrlWithPathOptions>;

@@ -85,3 +85,3 @@ /**

export type ListAllWithPathInput =
StorageListInputWithPath<ListAllOptionsWithPath>;
StorageListInputWithPath<ListAllWithPathOptions>;

@@ -92,3 +92,3 @@ /**

export type ListPaginateWithPathInput =
StorageListInputWithPath<ListPaginateOptionsWithPath>;
StorageListInputWithPath<ListPaginateWithPathOptions>;

@@ -99,3 +99,3 @@ /**

*/
export type ListAllInput = StorageListInputWithPrefix<ListAllOptionsWithPrefix>;
export type ListAllInput = StorageListInputWithPrefix<ListAllWithPrefixOptions>;

@@ -107,3 +107,3 @@ /**

export type ListPaginateInput =
StorageListInputWithPrefix<ListPaginateOptionsWithPrefix>;
StorageListInputWithPrefix<ListPaginateWithPrefixOptions>;

@@ -128,3 +128,3 @@ /**

export type DownloadDataInput =
StorageDownloadDataInputWithKey<DownloadDataOptionsWithKey>;
StorageDownloadDataInputWithKey<DownloadDataWithKeyOptions>;

@@ -135,3 +135,3 @@ /**

export type DownloadDataWithPathInput =
StorageDownloadDataInputWithPath<DownloadDataOptionsWithPath>;
StorageDownloadDataInputWithPath<DownloadDataWithPathOptions>;

@@ -143,3 +143,3 @@ /**

export type UploadDataInput =
StorageUploadDataInputWithKey<UploadDataOptionsWithKey>;
StorageUploadDataInputWithKey<UploadDataWithKeyOptions>;

@@ -150,2 +150,2 @@ /**

export type UploadDataWithPathInput =
StorageUploadDataInputWithPath<UploadDataOptionsWithPath>;
StorageUploadDataInputWithPath<UploadDataWithPathOptions>;

@@ -77,5 +77,5 @@ // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

*/
/** @deprecated Use {@link GetPropertiesOptionsWithPath} instead. */
export type GetPropertiesOptionsWithKey = ReadOptions & CommonOptions;
export type GetPropertiesOptionsWithPath = CommonOptions;
/** @deprecated Use {@link GetPropertiesWithPathOptions} instead. */
export type GetPropertiesWithKeyOptions = ReadOptions & CommonOptions;
export type GetPropertiesWithPathOptions = CommonOptions;

@@ -88,6 +88,6 @@ /**

/**
* @deprecated Use {@link ListAllOptionsWithPath} instead.
* @deprecated Use {@link ListAllWithPathOptions} instead.
* Input options type with prefix for S3 list all API.
*/
export type ListAllOptionsWithPrefix = StorageListAllOptions &
export type ListAllWithPrefixOptions = StorageListAllOptions &
ReadOptions &

@@ -97,6 +97,6 @@ CommonOptions;

/**
* @deprecated Use {@link ListPaginateOptionsWithPath} instead.
* @deprecated Use {@link ListPaginateWithPathOptions} instead.
* Input options type with prefix for S3 list API to paginate items.
*/
export type ListPaginateOptionsWithPrefix = StorageListPaginateOptions &
export type ListPaginateWithPrefixOptions = StorageListPaginateOptions &
ReadOptions &

@@ -108,3 +108,3 @@ CommonOptions;

*/
export type ListAllOptionsWithPath = Omit<
export type ListAllWithPathOptions = Omit<
StorageListAllOptions,

@@ -120,3 +120,3 @@ 'accessLevel'

*/
export type ListPaginateOptionsWithPath = Omit<
export type ListPaginateWithPathOptions = Omit<
StorageListPaginateOptions,

@@ -158,5 +158,5 @@ 'accessLevel'

/** @deprecated Use {@link GetUrlOptionsWithPath} instead. */
export type GetUrlOptionsWithKey = ReadOptions & GetUrlOptions;
export type GetUrlOptionsWithPath = GetUrlOptions;
/** @deprecated Use {@link GetUrlWithPathOptions} instead. */
export type GetUrlWithKeyOptions = ReadOptions & GetUrlOptions;
export type GetUrlWithPathOptions = GetUrlOptions;

@@ -170,5 +170,5 @@ /**

/** @deprecated Use {@link DownloadDataOptionsWithPath} instead. */
export type DownloadDataOptionsWithKey = ReadOptions & DownloadDataOptions;
export type DownloadDataOptionsWithPath = DownloadDataOptions;
/** @deprecated Use {@link DownloadDataWithPathOptions} instead. */
export type DownloadDataWithKeyOptions = ReadOptions & DownloadDataOptions;
export type DownloadDataWithPathOptions = DownloadDataOptions;

@@ -202,8 +202,8 @@ export type UploadDataOptions = CommonOptions &

/** @deprecated Use {@link UploadDataOptionsWithPath} instead. */
export type UploadDataOptionsWithKey = WriteOptions & UploadDataOptions;
export type UploadDataOptionsWithPath = UploadDataOptions;
/** @deprecated Use {@link UploadDataWithPathOptions} instead. */
export type UploadDataWithKeyOptions = WriteOptions & UploadDataOptions;
export type UploadDataWithPathOptions = UploadDataOptions;
/** @deprecated This may be removed in the next major version. */
export type CopySourceOptionsWithKey = ReadOptions & {
export type CopySourceWithKeyOptions = ReadOptions & {
/** @deprecated This may be removed in the next major version. */

@@ -215,3 +215,3 @@ key: string;

/** @deprecated This may be removed in the next major version. */
export type CopyDestinationOptionsWithKey = WriteOptions & {
export type CopyDestinationWithKeyOptions = WriteOptions & {
/** @deprecated This may be removed in the next major version. */

@@ -218,0 +218,0 @@ key: string;

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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