@aws-sdk/client-kafka 3.529.1 → 3.533.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-cjs/index.js CHANGED
@@ -77,6 +77,7 @@ __export(src_exports, {
77
77
  PutClusterPolicyCommand: () => PutClusterPolicyCommand,
78
78
  RebootBrokerCommand: () => RebootBrokerCommand,
79
79
  RejectClientVpcConnectionCommand: () => RejectClientVpcConnectionCommand,
80
+ ReplicationStartingPositionType: () => ReplicationStartingPositionType,
80
81
  ReplicatorState: () => ReplicatorState,
81
82
  ServiceUnavailableException: () => ServiceUnavailableException,
82
83
  StorageMode: () => StorageMode,
@@ -356,6 +357,10 @@ var TargetCompressionType = {
356
357
  SNAPPY: "SNAPPY",
357
358
  ZSTD: "ZSTD"
358
359
  };
360
+ var ReplicationStartingPositionType = {
361
+ EARLIEST: "EARLIEST",
362
+ LATEST: "LATEST"
363
+ };
359
364
  var ReplicatorState = {
360
365
  CREATING: "CREATING",
361
366
  DELETING: "DELETING",
@@ -2393,6 +2398,11 @@ var se_ReplicationInfo = /* @__PURE__ */ __name((input, context) => {
2393
2398
  topicReplication: [, (_) => se_TopicReplication(_, context), `TopicReplication`]
2394
2399
  });
2395
2400
  }, "se_ReplicationInfo");
2401
+ var se_ReplicationStartingPosition = /* @__PURE__ */ __name((input, context) => {
2402
+ return (0, import_smithy_client.take)(input, {
2403
+ type: [, , `Type`]
2404
+ });
2405
+ }, "se_ReplicationStartingPosition");
2396
2406
  var se_S3 = /* @__PURE__ */ __name((input, context) => {
2397
2407
  return (0, import_smithy_client.take)(input, {
2398
2408
  bucket: [, , `Bucket`],
@@ -2443,6 +2453,7 @@ var se_TopicReplication = /* @__PURE__ */ __name((input, context) => {
2443
2453
  copyAccessControlListsForTopics: [, , `CopyAccessControlListsForTopics`],
2444
2454
  copyTopicConfigurations: [, , `CopyTopicConfigurations`],
2445
2455
  detectAndCopyNewTopics: [, , `DetectAndCopyNewTopics`],
2456
+ startingPosition: [, (_) => se_ReplicationStartingPosition(_, context), `StartingPosition`],
2446
2457
  topicsToExclude: [, import_smithy_client._json, `TopicsToExclude`],
2447
2458
  topicsToReplicate: [, import_smithy_client._json, `TopicsToReplicate`]
2448
2459
  });
@@ -3016,6 +3027,11 @@ var de_ReplicationInfoSummary = /* @__PURE__ */ __name((output, context) => {
3016
3027
  TargetKafkaClusterAlias: [, import_smithy_client.expectString, `targetKafkaClusterAlias`]
3017
3028
  });
3018
3029
  }, "de_ReplicationInfoSummary");
3030
+ var de_ReplicationStartingPosition = /* @__PURE__ */ __name((output, context) => {
3031
+ return (0, import_smithy_client.take)(output, {
3032
+ Type: [, import_smithy_client.expectString, `type`]
3033
+ });
3034
+ }, "de_ReplicationStartingPosition");
3019
3035
  var de_ReplicationStateInfo = /* @__PURE__ */ __name((output, context) => {
3020
3036
  return (0, import_smithy_client.take)(output, {
3021
3037
  Code: [, import_smithy_client.expectString, `code`],
@@ -3095,6 +3111,7 @@ var de_TopicReplication = /* @__PURE__ */ __name((output, context) => {
3095
3111
  CopyAccessControlListsForTopics: [, import_smithy_client.expectBoolean, `copyAccessControlListsForTopics`],
3096
3112
  CopyTopicConfigurations: [, import_smithy_client.expectBoolean, `copyTopicConfigurations`],
3097
3113
  DetectAndCopyNewTopics: [, import_smithy_client.expectBoolean, `detectAndCopyNewTopics`],
3114
+ StartingPosition: [, (_) => de_ReplicationStartingPosition(_, context), `startingPosition`],
3098
3115
  TopicsToExclude: [, import_smithy_client._json, `topicsToExclude`],
3099
3116
  TopicsToReplicate: [, import_smithy_client._json, `topicsToReplicate`]
3100
3117
  });
@@ -4289,6 +4306,7 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
4289
4306
  KafkaVersionStatus,
4290
4307
  NodeType,
4291
4308
  TargetCompressionType,
4309
+ ReplicationStartingPositionType,
4292
4310
  ReplicatorState,
4293
4311
  BadRequestException,
4294
4312
  ForbiddenException,
@@ -69,6 +69,10 @@ export const TargetCompressionType = {
69
69
  SNAPPY: "SNAPPY",
70
70
  ZSTD: "ZSTD",
71
71
  };
72
+ export const ReplicationStartingPositionType = {
73
+ EARLIEST: "EARLIEST",
74
+ LATEST: "LATEST",
75
+ };
72
76
  export const ReplicatorState = {
73
77
  CREATING: "CREATING",
74
78
  DELETING: "DELETING",
@@ -1843,6 +1843,11 @@ const se_ReplicationInfo = (input, context) => {
1843
1843
  topicReplication: [, (_) => se_TopicReplication(_, context), `TopicReplication`],
1844
1844
  });
1845
1845
  };
1846
+ const se_ReplicationStartingPosition = (input, context) => {
1847
+ return take(input, {
1848
+ type: [, , `Type`],
1849
+ });
1850
+ };
1846
1851
  const se_S3 = (input, context) => {
1847
1852
  return take(input, {
1848
1853
  bucket: [, , `Bucket`],
@@ -1893,6 +1898,7 @@ const se_TopicReplication = (input, context) => {
1893
1898
  copyAccessControlListsForTopics: [, , `CopyAccessControlListsForTopics`],
1894
1899
  copyTopicConfigurations: [, , `CopyTopicConfigurations`],
1895
1900
  detectAndCopyNewTopics: [, , `DetectAndCopyNewTopics`],
1901
+ startingPosition: [, (_) => se_ReplicationStartingPosition(_, context), `StartingPosition`],
1896
1902
  topicsToExclude: [, _json, `TopicsToExclude`],
1897
1903
  topicsToReplicate: [, _json, `TopicsToReplicate`],
1898
1904
  });
@@ -2506,6 +2512,11 @@ const de_ReplicationInfoSummary = (output, context) => {
2506
2512
  TargetKafkaClusterAlias: [, __expectString, `targetKafkaClusterAlias`],
2507
2513
  });
2508
2514
  };
2515
+ const de_ReplicationStartingPosition = (output, context) => {
2516
+ return take(output, {
2517
+ Type: [, __expectString, `type`],
2518
+ });
2519
+ };
2509
2520
  const de_ReplicationStateInfo = (output, context) => {
2510
2521
  return take(output, {
2511
2522
  Code: [, __expectString, `code`],
@@ -2585,6 +2596,7 @@ const de_TopicReplication = (output, context) => {
2585
2596
  CopyAccessControlListsForTopics: [, __expectBoolean, `copyAccessControlListsForTopics`],
2586
2597
  CopyTopicConfigurations: [, __expectBoolean, `copyTopicConfigurations`],
2587
2598
  DetectAndCopyNewTopics: [, __expectBoolean, `detectAndCopyNewTopics`],
2599
+ StartingPosition: [, (_) => de_ReplicationStartingPosition(_, context), `startingPosition`],
2588
2600
  TopicsToExclude: [, _json, `topicsToExclude`],
2589
2601
  TopicsToReplicate: [, _json, `topicsToReplicate`],
2590
2602
  });
@@ -39,7 +39,7 @@ declare const CreateConfigurationCommand_base: {
39
39
  * "STRING_VALUE",
40
40
  * ],
41
41
  * Name: "STRING_VALUE", // required
42
- * ServerProperties: "BLOB_VALUE", // required
42
+ * ServerProperties: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("") // required
43
43
  * };
44
44
  * const command = new CreateConfigurationCommand(input);
45
45
  * const response = await client.send(command);
@@ -69,6 +69,9 @@ declare const CreateReplicatorCommand_base: {
69
69
  * CopyAccessControlListsForTopics: true || false,
70
70
  * CopyTopicConfigurations: true || false,
71
71
  * DetectAndCopyNewTopics: true || false,
72
+ * StartingPosition: { // ReplicationStartingPosition
73
+ * Type: "LATEST" || "EARLIEST",
74
+ * },
72
75
  * TopicsToExclude: [ // __listOf__stringMax249
73
76
  * "STRING_VALUE",
74
77
  * ],
@@ -44,7 +44,7 @@ declare const DescribeConfigurationRevisionCommand_base: {
44
44
  * // CreationTime: new Date("TIMESTAMP"),
45
45
  * // Description: "STRING_VALUE",
46
46
  * // Revision: Number("long"),
47
- * // ServerProperties: "BLOB_VALUE",
47
+ * // ServerProperties: new Uint8Array(),
48
48
  * // };
49
49
  *
50
50
  * ```
@@ -77,6 +77,9 @@ declare const DescribeReplicatorCommand_base: {
77
77
  * // CopyAccessControlListsForTopics: true || false,
78
78
  * // CopyTopicConfigurations: true || false,
79
79
  * // DetectAndCopyNewTopics: true || false,
80
+ * // StartingPosition: { // ReplicationStartingPosition
81
+ * // Type: "LATEST" || "EARLIEST",
82
+ * // },
80
83
  * // TopicsToExclude: [ // __listOf__stringMax249
81
84
  * // "STRING_VALUE",
82
85
  * // ],
@@ -36,7 +36,7 @@ declare const UpdateConfigurationCommand_base: {
36
36
  * const input = { // UpdateConfigurationRequest
37
37
  * Arn: "STRING_VALUE", // required
38
38
  * Description: "STRING_VALUE",
39
- * ServerProperties: "BLOB_VALUE", // required
39
+ * ServerProperties: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("") // required
40
40
  * };
41
41
  * const command = new UpdateConfigurationCommand(input);
42
42
  * const response = await client.send(command);
@@ -1560,6 +1560,29 @@ export declare const TargetCompressionType: {
1560
1560
  * @public
1561
1561
  */
1562
1562
  export type TargetCompressionType = (typeof TargetCompressionType)[keyof typeof TargetCompressionType];
1563
+ /**
1564
+ * @public
1565
+ * @enum
1566
+ */
1567
+ export declare const ReplicationStartingPositionType: {
1568
+ readonly EARLIEST: "EARLIEST";
1569
+ readonly LATEST: "LATEST";
1570
+ };
1571
+ /**
1572
+ * @public
1573
+ */
1574
+ export type ReplicationStartingPositionType = (typeof ReplicationStartingPositionType)[keyof typeof ReplicationStartingPositionType];
1575
+ /**
1576
+ * @public
1577
+ * <p>Configuration for specifying the position in the topics to start replicating from.</p>
1578
+ */
1579
+ export interface ReplicationStartingPosition {
1580
+ /**
1581
+ * @public
1582
+ * <p>The type of replication starting position.</p>
1583
+ */
1584
+ Type?: ReplicationStartingPositionType;
1585
+ }
1563
1586
  /**
1564
1587
  * @public
1565
1588
  * <p>Details about topic replication.</p>
@@ -1580,6 +1603,11 @@ export interface TopicReplication {
1580
1603
  * <p>Whether to periodically check for new topics and partitions.</p>
1581
1604
  */
1582
1605
  DetectAndCopyNewTopics?: boolean;
1606
+ /**
1607
+ * @public
1608
+ * <p>Configuration for specifying the position in the topics to start replicating from.</p>
1609
+ */
1610
+ StartingPosition?: ReplicationStartingPosition;
1583
1611
  /**
1584
1612
  * @public
1585
1613
  * <p>List of regular expression patterns indicating the topics that should not be replicated.</p>
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: KafkaClientConfig) => {
20
20
  apiVersion: string;
21
21
  urlParser: import("@smithy/types").UrlParser;
22
22
  base64Decoder: import("@smithy/types").Decoder;
23
- base64Encoder: import("@smithy/types").Encoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
24
  utf8Decoder: import("@smithy/types").Decoder;
25
- utf8Encoder: import("@smithy/types").Encoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
26
  disableHostPrefix: boolean;
27
27
  serviceId: string;
28
28
  logger: import("@smithy/types").Logger;
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: KafkaClientConfig) => {
20
20
  apiVersion: string;
21
21
  urlParser: import("@smithy/types").UrlParser;
22
22
  base64Decoder: import("@smithy/types").Decoder;
23
- base64Encoder: import("@smithy/types").Encoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
24
  utf8Decoder: import("@smithy/types").Decoder;
25
- utf8Encoder: import("@smithy/types").Encoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
26
  disableHostPrefix: boolean;
27
27
  serviceId: string;
28
28
  logger: import("@smithy/types").Logger;
@@ -11,9 +11,9 @@ export declare const getRuntimeConfig: (config: KafkaClientConfig) => {
11
11
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
12
12
  streamCollector: import("@smithy/types").StreamCollector;
13
13
  base64Decoder: import("@smithy/types").Decoder;
14
- base64Encoder: import("@smithy/types").Encoder;
14
+ base64Encoder: (_input: string | Uint8Array) => string;
15
15
  utf8Decoder: import("@smithy/types").Decoder;
16
- utf8Encoder: import("@smithy/types").Encoder;
16
+ utf8Encoder: (input: string | Uint8Array) => string;
17
17
  disableHostPrefix: boolean;
18
18
  serviceId: string;
19
19
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -5,7 +5,7 @@ import { KafkaClientConfig } from "./KafkaClient";
5
5
  export declare const getRuntimeConfig: (config: KafkaClientConfig) => {
6
6
  apiVersion: string;
7
7
  base64Decoder: import("@smithy/types").Decoder;
8
- base64Encoder: import("@smithy/types").Encoder;
8
+ base64Encoder: (_input: string | Uint8Array) => string;
9
9
  disableHostPrefix: boolean;
10
10
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
11
  logger?: import("@smithy/types").Logger | undefined;
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: KafkaClientConfig) => {
17
17
  serviceId: string;
18
18
  urlParser: import("@smithy/types").UrlParser;
19
19
  utf8Decoder: import("@smithy/types").Decoder;
20
- utf8Encoder: import("@smithy/types").Encoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
21
  };
@@ -435,10 +435,20 @@ export declare const TargetCompressionType: {
435
435
  };
436
436
  export type TargetCompressionType =
437
437
  (typeof TargetCompressionType)[keyof typeof TargetCompressionType];
438
+ export declare const ReplicationStartingPositionType: {
439
+ readonly EARLIEST: "EARLIEST";
440
+ readonly LATEST: "LATEST";
441
+ };
442
+ export type ReplicationStartingPositionType =
443
+ (typeof ReplicationStartingPositionType)[keyof typeof ReplicationStartingPositionType];
444
+ export interface ReplicationStartingPosition {
445
+ Type?: ReplicationStartingPositionType;
446
+ }
438
447
  export interface TopicReplication {
439
448
  CopyAccessControlListsForTopics?: boolean;
440
449
  CopyTopicConfigurations?: boolean;
441
450
  DetectAndCopyNewTopics?: boolean;
451
+ StartingPosition?: ReplicationStartingPosition;
442
452
  TopicsToExclude?: string[];
443
453
  TopicsToReplicate: string[] | undefined;
444
454
  }
@@ -25,9 +25,9 @@ export declare const getRuntimeConfig: (config: KafkaClientConfig) => {
25
25
  apiVersion: string;
26
26
  urlParser: import("@smithy/types").UrlParser;
27
27
  base64Decoder: import("@smithy/types").Decoder;
28
- base64Encoder: import("@smithy/types").Encoder;
28
+ base64Encoder: (_input: string | Uint8Array) => string;
29
29
  utf8Decoder: import("@smithy/types").Decoder;
30
- utf8Encoder: import("@smithy/types").Encoder;
30
+ utf8Encoder: (input: string | Uint8Array) => string;
31
31
  disableHostPrefix: boolean;
32
32
  serviceId: string;
33
33
  logger: import("@smithy/types").Logger;
@@ -29,9 +29,9 @@ export declare const getRuntimeConfig: (config: KafkaClientConfig) => {
29
29
  apiVersion: string;
30
30
  urlParser: import("@smithy/types").UrlParser;
31
31
  base64Decoder: import("@smithy/types").Decoder;
32
- base64Encoder: import("@smithy/types").Encoder;
32
+ base64Encoder: (_input: string | Uint8Array) => string;
33
33
  utf8Decoder: import("@smithy/types").Decoder;
34
- utf8Encoder: import("@smithy/types").Encoder;
34
+ utf8Encoder: (input: string | Uint8Array) => string;
35
35
  disableHostPrefix: boolean;
36
36
  serviceId: string;
37
37
  logger: import("@smithy/types").Logger;
@@ -13,9 +13,9 @@ export declare const getRuntimeConfig: (config: KafkaClientConfig) => {
13
13
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
14
14
  streamCollector: import("@smithy/types").StreamCollector;
15
15
  base64Decoder: import("@smithy/types").Decoder;
16
- base64Encoder: import("@smithy/types").Encoder;
16
+ base64Encoder: (_input: string | Uint8Array) => string;
17
17
  utf8Decoder: import("@smithy/types").Decoder;
18
- utf8Encoder: import("@smithy/types").Encoder;
18
+ utf8Encoder: (input: string | Uint8Array) => string;
19
19
  disableHostPrefix: boolean;
20
20
  serviceId: string;
21
21
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -2,7 +2,7 @@ import { KafkaClientConfig } from "./KafkaClient";
2
2
  export declare const getRuntimeConfig: (config: KafkaClientConfig) => {
3
3
  apiVersion: string;
4
4
  base64Decoder: import("@smithy/types").Decoder;
5
- base64Encoder: import("@smithy/types").Encoder;
5
+ base64Encoder: (_input: string | Uint8Array) => string;
6
6
  disableHostPrefix: boolean;
7
7
  endpointProvider: (
8
8
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: KafkaClientConfig) => {
17
17
  serviceId: string;
18
18
  urlParser: import("@smithy/types").UrlParser;
19
19
  utf8Decoder: import("@smithy/types").Decoder;
20
- utf8Encoder: import("@smithy/types").Encoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
21
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kafka",
3
3
  "description": "AWS SDK for JavaScript Kafka Client for Node.js, Browser and React Native",
4
- "version": "3.529.1",
4
+ "version": "3.533.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-kafka",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.529.1",
24
- "@aws-sdk/core": "3.529.1",
25
- "@aws-sdk/credential-provider-node": "3.529.1",
26
- "@aws-sdk/middleware-host-header": "3.523.0",
27
- "@aws-sdk/middleware-logger": "3.523.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.523.0",
29
- "@aws-sdk/middleware-user-agent": "3.525.0",
30
- "@aws-sdk/region-config-resolver": "3.525.0",
31
- "@aws-sdk/types": "3.523.0",
32
- "@aws-sdk/util-endpoints": "3.525.0",
33
- "@aws-sdk/util-user-agent-browser": "3.523.0",
34
- "@aws-sdk/util-user-agent-node": "3.525.0",
35
- "@smithy/config-resolver": "^2.1.4",
36
- "@smithy/core": "^1.3.5",
37
- "@smithy/fetch-http-handler": "^2.4.3",
38
- "@smithy/hash-node": "^2.1.3",
39
- "@smithy/invalid-dependency": "^2.1.3",
40
- "@smithy/middleware-content-length": "^2.1.3",
41
- "@smithy/middleware-endpoint": "^2.4.4",
42
- "@smithy/middleware-retry": "^2.1.4",
43
- "@smithy/middleware-serde": "^2.1.3",
44
- "@smithy/middleware-stack": "^2.1.3",
45
- "@smithy/node-config-provider": "^2.2.4",
46
- "@smithy/node-http-handler": "^2.4.1",
47
- "@smithy/protocol-http": "^3.2.1",
48
- "@smithy/smithy-client": "^2.4.2",
49
- "@smithy/types": "^2.10.1",
50
- "@smithy/url-parser": "^2.1.3",
51
- "@smithy/util-base64": "^2.1.1",
23
+ "@aws-sdk/client-sts": "3.533.0",
24
+ "@aws-sdk/core": "3.533.0",
25
+ "@aws-sdk/credential-provider-node": "3.533.0",
26
+ "@aws-sdk/middleware-host-header": "3.533.0",
27
+ "@aws-sdk/middleware-logger": "3.533.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.533.0",
29
+ "@aws-sdk/middleware-user-agent": "3.533.0",
30
+ "@aws-sdk/region-config-resolver": "3.533.0",
31
+ "@aws-sdk/types": "3.533.0",
32
+ "@aws-sdk/util-endpoints": "3.533.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.533.0",
34
+ "@aws-sdk/util-user-agent-node": "3.533.0",
35
+ "@smithy/config-resolver": "^2.1.5",
36
+ "@smithy/core": "^1.3.8",
37
+ "@smithy/fetch-http-handler": "^2.4.5",
38
+ "@smithy/hash-node": "^2.1.4",
39
+ "@smithy/invalid-dependency": "^2.1.4",
40
+ "@smithy/middleware-content-length": "^2.1.4",
41
+ "@smithy/middleware-endpoint": "^2.4.6",
42
+ "@smithy/middleware-retry": "^2.1.7",
43
+ "@smithy/middleware-serde": "^2.2.1",
44
+ "@smithy/middleware-stack": "^2.1.4",
45
+ "@smithy/node-config-provider": "^2.2.5",
46
+ "@smithy/node-http-handler": "^2.4.3",
47
+ "@smithy/protocol-http": "^3.2.2",
48
+ "@smithy/smithy-client": "^2.4.5",
49
+ "@smithy/types": "^2.11.0",
50
+ "@smithy/url-parser": "^2.1.4",
51
+ "@smithy/util-base64": "^2.2.1",
52
52
  "@smithy/util-body-length-browser": "^2.1.1",
53
- "@smithy/util-body-length-node": "^2.2.1",
54
- "@smithy/util-defaults-mode-browser": "^2.1.4",
55
- "@smithy/util-defaults-mode-node": "^2.2.3",
56
- "@smithy/util-endpoints": "^1.1.4",
57
- "@smithy/util-middleware": "^2.1.3",
58
- "@smithy/util-retry": "^2.1.3",
59
- "@smithy/util-utf8": "^2.1.1",
53
+ "@smithy/util-body-length-node": "^2.2.2",
54
+ "@smithy/util-defaults-mode-browser": "^2.1.7",
55
+ "@smithy/util-defaults-mode-node": "^2.2.7",
56
+ "@smithy/util-endpoints": "^1.1.5",
57
+ "@smithy/util-middleware": "^2.1.4",
58
+ "@smithy/util-retry": "^2.1.4",
59
+ "@smithy/util-utf8": "^2.2.0",
60
60
  "tslib": "^2.5.0"
61
61
  },
62
62
  "devDependencies": {