@aws-sdk/core 3.973.18 → 3.973.19

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-cjs/index.js CHANGED
@@ -1722,6 +1722,9 @@ class AwsEc2QueryProtocol extends AwsQueryProtocol {
1722
1722
  };
1723
1723
  Object.assign(this.serializer.settings, ec2Settings);
1724
1724
  }
1725
+ getShapeId() {
1726
+ return "aws.protocols#ec2Query";
1727
+ }
1725
1728
  useNestedResult() {
1726
1729
  return false;
1727
1730
  }
@@ -2183,6 +2186,7 @@ exports.JsonShapeDeserializer = JsonShapeDeserializer;
2183
2186
  exports.JsonShapeSerializer = JsonShapeSerializer;
2184
2187
  exports.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS = NODE_AUTH_SCHEME_PREFERENCE_OPTIONS;
2185
2188
  exports.NODE_SIGV4A_CONFIG_OPTIONS = NODE_SIGV4A_CONFIG_OPTIONS;
2189
+ exports.QueryShapeSerializer = QueryShapeSerializer;
2186
2190
  exports.XmlCodec = XmlCodec;
2187
2191
  exports.XmlShapeDeserializer = XmlShapeDeserializer;
2188
2192
  exports.XmlShapeSerializer = XmlShapeSerializer;
@@ -1384,6 +1384,9 @@ class AwsEc2QueryProtocol extends AwsQueryProtocol {
1384
1384
  };
1385
1385
  Object.assign(this.serializer.settings, ec2Settings);
1386
1386
  }
1387
+ getShapeId() {
1388
+ return "aws.protocols#ec2Query";
1389
+ }
1387
1390
  useNestedResult() {
1388
1391
  return false;
1389
1392
  }
@@ -1840,6 +1843,7 @@ exports.AwsSmithyRpcV2CborProtocol = AwsSmithyRpcV2CborProtocol;
1840
1843
  exports.JsonCodec = JsonCodec;
1841
1844
  exports.JsonShapeDeserializer = JsonShapeDeserializer;
1842
1845
  exports.JsonShapeSerializer = JsonShapeSerializer;
1846
+ exports.QueryShapeSerializer = QueryShapeSerializer;
1843
1847
  exports.XmlCodec = XmlCodec;
1844
1848
  exports.XmlShapeDeserializer = XmlShapeDeserializer;
1845
1849
  exports.XmlShapeSerializer = XmlShapeSerializer;
@@ -11,6 +11,8 @@ export * from "./json/awsExpectUnion";
11
11
  export * from "./json/parseJsonBody";
12
12
  export * from "./query/AwsEc2QueryProtocol";
13
13
  export * from "./query/AwsQueryProtocol";
14
+ export * from "./query/QuerySerializerSettings";
15
+ export * from "./query/QueryShapeSerializer";
14
16
  export * from "./xml/AwsRestXmlProtocol";
15
17
  export * from "./xml/XmlCodec";
16
18
  export * from "./xml/XmlShapeDeserializer";
@@ -12,6 +12,9 @@ export class AwsEc2QueryProtocol extends AwsQueryProtocol {
12
12
  };
13
13
  Object.assign(this.serializer.settings, ec2Settings);
14
14
  }
15
+ getShapeId() {
16
+ return "aws.protocols#ec2Query";
17
+ }
15
18
  useNestedResult() {
16
19
  return false;
17
20
  }
@@ -11,6 +11,8 @@ export * from "./json/awsExpectUnion";
11
11
  export * from "./json/parseJsonBody";
12
12
  export * from "./query/AwsEc2QueryProtocol";
13
13
  export * from "./query/AwsQueryProtocol";
14
+ export * from "./query/QuerySerializerSettings";
15
+ export * from "./query/QueryShapeSerializer";
14
16
  export * from "./xml/AwsRestXmlProtocol";
15
17
  export * from "./xml/XmlCodec";
16
18
  export * from "./xml/XmlShapeDeserializer";
@@ -13,6 +13,10 @@ export declare class AwsEc2QueryProtocol extends AwsQueryProtocol {
13
13
  xmlNamespace: string;
14
14
  version: string;
15
15
  });
16
+ /**
17
+ * @override
18
+ */
19
+ getShapeId(): string;
16
20
  /**
17
21
  * EC2 Query reads XResponse.XResult instead of XResponse directly.
18
22
  */
@@ -1,4 +1,7 @@
1
1
  import type { CodecSettings } from "@smithy/types";
2
+ /**
3
+ * @internal
4
+ */
2
5
  export type QuerySerializerSettings = CodecSettings & {
3
6
  capitalizeKeys?: boolean;
4
7
  flattenLists?: boolean;
@@ -11,6 +11,8 @@ export * from "./json/awsExpectUnion";
11
11
  export * from "./json/parseJsonBody";
12
12
  export * from "./query/AwsEc2QueryProtocol";
13
13
  export * from "./query/AwsQueryProtocol";
14
+ export * from "./query/QuerySerializerSettings";
15
+ export * from "./query/QueryShapeSerializer";
14
16
  export * from "./xml/AwsRestXmlProtocol";
15
17
  export * from "./xml/XmlCodec";
16
18
  export * from "./xml/XmlShapeDeserializer";
@@ -10,5 +10,6 @@ export declare class AwsEc2QueryProtocol extends AwsQueryProtocol {
10
10
  xmlNamespace: string;
11
11
  version: string;
12
12
  });
13
+ getShapeId(): string;
13
14
  protected useNestedResult(): boolean;
14
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/core",
3
- "version": "3.973.18",
3
+ "version": "3.973.19",
4
4
  "description": "Core functions & classes shared by multiple AWS SDK clients.",
5
5
  "scripts": {
6
6
  "build": "yarn lint && concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
@@ -83,12 +83,12 @@
83
83
  "dependencies": {
84
84
  "@aws-sdk/types": "^3.973.5",
85
85
  "@aws-sdk/xml-builder": "^3.972.10",
86
- "@smithy/core": "^3.23.8",
86
+ "@smithy/core": "^3.23.9",
87
87
  "@smithy/node-config-provider": "^4.3.11",
88
88
  "@smithy/property-provider": "^4.2.11",
89
89
  "@smithy/protocol-http": "^5.3.11",
90
90
  "@smithy/signature-v4": "^5.3.11",
91
- "@smithy/smithy-client": "^4.12.2",
91
+ "@smithy/smithy-client": "^4.12.3",
92
92
  "@smithy/types": "^4.13.0",
93
93
  "@smithy/util-base64": "^4.3.2",
94
94
  "@smithy/util-middleware": "^4.2.11",