🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@smithy/types

Package Overview
Dependencies
Maintainers
2
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@smithy/types - npm Package Compare versions

Comparing version
4.15.0
to
4.15.1
+1
dist-es/endpoints/EndpointParameterInstructions.js
export {};
/**
* @internal
*/
export interface EndpointParameterInstructions {
[name: string]: BuiltInParamInstruction | ClientContextParamInstruction | StaticContextParamInstruction | ContextParamInstruction | OperationContextParamInstruction;
}
/**
* @internal
*/
export interface BuiltInParamInstruction {
type: "builtInParams";
name: string;
}
/**
* @internal
*/
export interface ClientContextParamInstruction {
type: "clientContextParams";
name: string;
}
/**
* @internal
*/
export interface StaticContextParamInstruction {
type: "staticContextParams";
value: string | boolean;
}
/**
* @internal
*/
export interface ContextParamInstruction {
type: "contextParams";
name: string;
}
/**
* @internal
*/
export interface OperationContextParamInstruction {
type: "operationContextParams";
get(input: any): any;
}
+1
-0

@@ -12,2 +12,3 @@ export * from "./abort";

export * from "./endpoints";
export type { EndpointParameterInstructions, BuiltInParamInstruction, ClientContextParamInstruction, StaticContextParamInstruction, ContextParamInstruction, OperationContextParamInstruction, } from "./endpoints/EndpointParameterInstructions";
export * from "./eventStream";

@@ -14,0 +15,0 @@ export * from "./extensions";

+1
-1
{
"name": "@smithy/types",
"version": "4.15.0",
"version": "4.15.1",
"scripts": {

@@ -5,0 +5,0 @@ "build": "concurrently 'yarn:build:types' 'yarn:build:es:cjs'",