@aws-sdk/util-create-request 3.50.0 → 3.52.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/util-create-request
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/util-create-request
@@ -0,0 +1,15 @@
1
+ import { HttpRequest } from "@aws-sdk/protocol-http";
2
+ import { Client, Command } from "@aws-sdk/smithy-client";
3
+ import { MetadataBearer } from "@aws-sdk/types";
4
+ export interface OperationInput {
5
+ String: string;
6
+ }
7
+ export declare type InputTypesUnion = OperationInput;
8
+ export interface OperationOutput extends MetadataBearer {
9
+ Data: string;
10
+ $metadata: {};
11
+ }
12
+ export declare type OutputTypesUnion = OperationOutput;
13
+ export declare const fooClient: Client<any, InputTypesUnion, OutputTypesUnion, any>;
14
+ export declare const operationCommand: Command<InputTypesUnion, OutputTypesUnion, any, OperationInput, MetadataBearer>;
15
+ export declare const httpRequest: HttpRequest;
@@ -0,0 +1,3 @@
1
+ import { Client, Command } from "@aws-sdk/smithy-client";
2
+ import { HttpRequest, MetadataBearer } from "@aws-sdk/types";
3
+ export declare function createRequest<InputTypesUnion extends object, InputType extends InputTypesUnion, OutputType extends MetadataBearer = MetadataBearer>(client: Client<any, InputTypesUnion, MetadataBearer, any>, command: Command<InputType, OutputType, any, InputTypesUnion, MetadataBearer>): Promise<HttpRequest>;
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@aws-sdk/util-create-request",
3
- "version": "3.50.0",
3
+ "version": "3.52.0",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
6
6
  "build:cjs": "tsc -p tsconfig.cjs.json",
7
7
  "build:es": "tsc -p tsconfig.es.json",
8
8
  "build:types": "tsc -p tsconfig.types.json",
9
9
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
10
- "clean": "rimraf ./dist-*",
10
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
11
11
  "test": "jest"
12
12
  },
13
13
  "main": "./dist-cjs/index.js",
@@ -19,13 +19,13 @@
19
19
  },
20
20
  "license": "Apache-2.0",
21
21
  "dependencies": {
22
- "@aws-sdk/middleware-stack": "3.50.0",
23
- "@aws-sdk/smithy-client": "3.50.0",
24
- "@aws-sdk/types": "3.50.0",
22
+ "@aws-sdk/middleware-stack": "3.52.0",
23
+ "@aws-sdk/smithy-client": "3.52.0",
24
+ "@aws-sdk/types": "3.52.0",
25
25
  "tslib": "^2.3.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@aws-sdk/protocol-http": "3.50.0",
28
+ "@aws-sdk/protocol-http": "3.52.0",
29
29
  "@tsconfig/recommended": "1.0.1",
30
30
  "@types/node": "^10.0.3",
31
31
  "concurrently": "7.0.0",