Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@smithy/protocol-http

Package Overview
Dependencies
Maintainers
2
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@smithy/protocol-http - npm Package Compare versions

Comparing version 2.0.5 to 3.0.0

dist-cjs/extensions/httpExtensionConfiguration.js

1

dist-cjs/index.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
tslib_1.__exportStar(require("./extensions"), exports);
tslib_1.__exportStar(require("./Field"), exports);

@@ -5,0 +6,0 @@ tslib_1.__exportStar(require("./Fields"), exports);

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

export * from "./extensions";
export * from "./Field";

@@ -2,0 +3,0 @@ export * from "./Fields";

import { HttpHandlerOptions, RequestHandler } from "@smithy/types";
import { HttpRequest } from "./httpRequest";
import { HttpResponse } from "./httpResponse";
export type HttpHandler = RequestHandler<HttpRequest, HttpResponse, HttpHandlerOptions>;
/**
* @internal
*/
export type HttpHandler<HttpHandlerConfig> = RequestHandler<HttpRequest, HttpResponse, HttpHandlerOptions> & {
/**
* @internal
* @param key
* @param value
*/
updateHttpClientConfig(key: keyof HttpHandlerConfig, value: HttpHandlerConfig[typeof key]): void;
/**
* @internal
*/
httpHandlerConfigs(): HttpHandlerConfig;
};

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

export * from "./extensions";
export * from "./Field";

@@ -2,0 +3,0 @@ export * from "./Fields";

import { HttpHandlerOptions, RequestHandler } from "@smithy/types";
import { HttpRequest } from "./httpRequest";
import { HttpResponse } from "./httpResponse";
export type HttpHandler = RequestHandler<HttpRequest, HttpResponse, HttpHandlerOptions>;
/**
* @internal
*/
export type HttpHandler<HttpHandlerConfig> = RequestHandler<HttpRequest, HttpResponse, HttpHandlerOptions> & {
/**
* @internal
* @param key
* @param value
*/
updateHttpClientConfig(key: keyof HttpHandlerConfig, value: HttpHandlerConfig[typeof key]): void;
/**
* @internal
*/
httpHandlerConfigs(): HttpHandlerConfig;
};

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

export * from "./extensions";
export * from "./Field";

@@ -2,0 +3,0 @@ export * from "./Fields";

4

package.json
{
"name": "@smithy/protocol-http",
"version": "2.0.5",
"version": "3.0.0",
"scripts": {

@@ -26,3 +26,3 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",

"dependencies": {
"@smithy/types": "^2.2.2",
"@smithy/types": "^2.3.0",
"tslib": "^2.5.0"

@@ -29,0 +29,0 @@ },

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