@aws-sdk/core 3.927.0 → 3.930.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/dist-types/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +1 -1
- package/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +1 -1
- package/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +1 -1
- package/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +1 -1
- package/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +1 -1
- package/dist-types/submodules/protocols/json/JsonCodec.d.ts +1 -1
- package/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +1 -1
- package/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +1 -1
- package/dist-types/submodules/protocols/json/jsonReviver.d.ts +1 -1
- package/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +1 -1
- package/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +1 -1
- package/dist-types/submodules/protocols/query/QueryShapeSerializer.d.ts +1 -1
- package/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +1 -1
- package/dist-types/submodules/protocols/xml/XmlShapeDeserializer.d.ts +1 -1
- package/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts +1 -1
- package/package.json +11 -11
|
@@ -3,7 +3,7 @@ import type { EndpointBearer, HandlerExecutionContext, HttpRequest, HttpResponse
|
|
|
3
3
|
/**
|
|
4
4
|
* Extends the Smithy implementation to add AwsQueryCompatibility support.
|
|
5
5
|
*
|
|
6
|
-
* @
|
|
6
|
+
* @public
|
|
7
7
|
*/
|
|
8
8
|
export declare class AwsSmithyRpcV2CborProtocol extends SmithyRpcV2CborProtocol {
|
|
9
9
|
private readonly awsQueryCompatible;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AwsJsonRpcProtocol } from "./AwsJsonRpcProtocol";
|
|
2
2
|
/**
|
|
3
|
-
* @
|
|
3
|
+
* @public
|
|
4
4
|
* @see https://smithy.io/2.0/aws/protocols/aws-json-1_1-protocol.html#differences-between-awsjson1-0-and-awsjson1-1
|
|
5
5
|
*/
|
|
6
6
|
export declare class AwsJson1_0Protocol extends AwsJsonRpcProtocol {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AwsJsonRpcProtocol } from "./AwsJsonRpcProtocol";
|
|
2
2
|
/**
|
|
3
|
-
* @
|
|
3
|
+
* @public
|
|
4
4
|
* @see https://smithy.io/2.0/aws/protocols/aws-json-1_1-protocol.html#differences-between-awsjson1-0-and-awsjson1-1
|
|
5
5
|
*/
|
|
6
6
|
export declare class AwsJson1_1Protocol extends AwsJsonRpcProtocol {
|
|
@@ -2,7 +2,7 @@ import { RpcProtocol } from "@smithy/core/protocols";
|
|
|
2
2
|
import type { EndpointBearer, HandlerExecutionContext, HttpRequest, HttpResponse, OperationSchema, ResponseMetadata, SerdeFunctions, ShapeDeserializer, ShapeSerializer } from "@smithy/types";
|
|
3
3
|
import { JsonCodec } from "./JsonCodec";
|
|
4
4
|
/**
|
|
5
|
-
* @
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare abstract class AwsJsonRpcProtocol extends RpcProtocol {
|
|
8
8
|
protected serializer: ShapeSerializer<string | Uint8Array>;
|
|
@@ -2,7 +2,7 @@ import { HttpBindingProtocol } from "@smithy/core/protocols";
|
|
|
2
2
|
import type { EndpointBearer, HandlerExecutionContext, HttpRequest, HttpResponse, OperationSchema, ResponseMetadata, SerdeFunctions, ShapeDeserializer, ShapeSerializer } from "@smithy/types";
|
|
3
3
|
import { JsonCodec } from "./JsonCodec";
|
|
4
4
|
/**
|
|
5
|
-
* @
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare class AwsRestJsonProtocol extends HttpBindingProtocol {
|
|
8
8
|
protected serializer: ShapeSerializer<string | Uint8Array>;
|
|
@@ -3,7 +3,7 @@ import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
|
|
3
3
|
import { JsonShapeDeserializer } from "./JsonShapeDeserializer";
|
|
4
4
|
import { JsonShapeSerializer } from "./JsonShapeSerializer";
|
|
5
5
|
/**
|
|
6
|
-
* @
|
|
6
|
+
* @public
|
|
7
7
|
*/
|
|
8
8
|
export type JsonSettings = CodecSettings & {
|
|
9
9
|
jsonName: boolean;
|
|
@@ -2,7 +2,7 @@ import type { DocumentType, Schema, ShapeDeserializer } from "@smithy/types";
|
|
|
2
2
|
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
|
3
3
|
import { JsonSettings } from "./JsonCodec";
|
|
4
4
|
/**
|
|
5
|
-
* @
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare class JsonShapeDeserializer extends SerdeContextConfig implements ShapeDeserializer<string> {
|
|
8
8
|
readonly settings: JsonSettings;
|
|
@@ -2,7 +2,7 @@ import type { Schema, ShapeSerializer } from "@smithy/types";
|
|
|
2
2
|
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
|
3
3
|
import type { JsonSettings } from "./JsonCodec";
|
|
4
4
|
/**
|
|
5
|
-
* @
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare class JsonShapeSerializer extends SerdeContextConfig implements ShapeSerializer<string> {
|
|
8
8
|
readonly settings: JsonSettings;
|
|
@@ -3,7 +3,7 @@ import type { Codec, EndpointBearer, HandlerExecutionContext, HttpRequest, HttpR
|
|
|
3
3
|
import { XmlShapeDeserializer } from "../xml/XmlShapeDeserializer";
|
|
4
4
|
import { QueryShapeSerializer } from "./QueryShapeSerializer";
|
|
5
5
|
/**
|
|
6
|
-
* @
|
|
6
|
+
* @public
|
|
7
7
|
*/
|
|
8
8
|
export declare class AwsQueryProtocol extends RpcProtocol {
|
|
9
9
|
options: {
|
|
@@ -2,7 +2,7 @@ import type { Schema, ShapeSerializer } from "@smithy/types";
|
|
|
2
2
|
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
|
3
3
|
import type { QuerySerializerSettings } from "./QuerySerializerSettings";
|
|
4
4
|
/**
|
|
5
|
-
* @
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare class QueryShapeSerializer extends SerdeContextConfig implements ShapeSerializer<string | Uint8Array> {
|
|
8
8
|
readonly settings: QuerySerializerSettings;
|
|
@@ -2,7 +2,7 @@ import { HttpBindingProtocol } from "@smithy/core/protocols";
|
|
|
2
2
|
import type { EndpointBearer, HandlerExecutionContext, HttpRequest as IHttpRequest, HttpResponse as IHttpResponse, MetadataBearer, OperationSchema, ResponseMetadata, SerdeFunctions, ShapeDeserializer, ShapeSerializer } from "@smithy/types";
|
|
3
3
|
import { XmlCodec } from "./XmlCodec";
|
|
4
4
|
/**
|
|
5
|
-
* @
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare class AwsRestXmlProtocol extends HttpBindingProtocol {
|
|
8
8
|
private readonly codec;
|
|
@@ -2,7 +2,7 @@ import type { Schema, SerdeFunctions, ShapeDeserializer } from "@smithy/types";
|
|
|
2
2
|
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
|
3
3
|
import type { XmlSettings } from "./XmlCodec";
|
|
4
4
|
/**
|
|
5
|
-
* @
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare class XmlShapeDeserializer extends SerdeContextConfig implements ShapeDeserializer<Uint8Array | string> {
|
|
8
8
|
readonly settings: XmlSettings;
|
|
@@ -2,7 +2,7 @@ import type { Schema as ISchema, ShapeSerializer } from "@smithy/types";
|
|
|
2
2
|
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
|
3
3
|
import { XmlSettings } from "./XmlCodec";
|
|
4
4
|
/**
|
|
5
|
-
* @
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare class XmlShapeSerializer extends SerdeContextConfig implements ShapeSerializer<string | Uint8Array> {
|
|
8
8
|
readonly settings: XmlSettings;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.930.0",
|
|
4
4
|
"description": "Core functions & classes shared by multiple AWS SDK clients.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn lint && concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
@@ -81,17 +81,17 @@
|
|
|
81
81
|
},
|
|
82
82
|
"license": "Apache-2.0",
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@aws-sdk/types": "3.
|
|
85
|
-
"@aws-sdk/xml-builder": "3.
|
|
86
|
-
"@smithy/core": "^3.
|
|
87
|
-
"@smithy/node-config-provider": "^4.3.
|
|
88
|
-
"@smithy/property-provider": "^4.2.
|
|
89
|
-
"@smithy/protocol-http": "^5.3.
|
|
90
|
-
"@smithy/signature-v4": "^5.3.
|
|
91
|
-
"@smithy/smithy-client": "^4.9.
|
|
92
|
-
"@smithy/types": "^4.
|
|
84
|
+
"@aws-sdk/types": "3.930.0",
|
|
85
|
+
"@aws-sdk/xml-builder": "3.930.0",
|
|
86
|
+
"@smithy/core": "^3.18.2",
|
|
87
|
+
"@smithy/node-config-provider": "^4.3.5",
|
|
88
|
+
"@smithy/property-provider": "^4.2.5",
|
|
89
|
+
"@smithy/protocol-http": "^5.3.5",
|
|
90
|
+
"@smithy/signature-v4": "^5.3.5",
|
|
91
|
+
"@smithy/smithy-client": "^4.9.5",
|
|
92
|
+
"@smithy/types": "^4.9.0",
|
|
93
93
|
"@smithy/util-base64": "^4.3.0",
|
|
94
|
-
"@smithy/util-middleware": "^4.2.
|
|
94
|
+
"@smithy/util-middleware": "^4.2.5",
|
|
95
95
|
"@smithy/util-utf8": "^4.2.0",
|
|
96
96
|
"tslib": "^2.6.2"
|
|
97
97
|
},
|