@aws-sdk/client-clouddirectory 3.658.1 → 3.664.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.
Files changed (49) hide show
  1. package/dist-cjs/runtimeConfig.js +1 -0
  2. package/dist-es/runtimeConfig.js +2 -1
  3. package/dist-types/commands/AddFacetToObjectCommand.d.ts +19 -0
  4. package/dist-types/commands/ApplySchemaCommand.d.ts +18 -0
  5. package/dist-types/commands/AttachObjectCommand.d.ts +23 -0
  6. package/dist-types/commands/AttachPolicyCommand.d.ts +17 -0
  7. package/dist-types/commands/AttachToIndexCommand.d.ts +22 -0
  8. package/dist-types/commands/AttachTypedLinkCommand.d.ts +53 -0
  9. package/dist-types/commands/BatchReadCommand.d.ts +18 -0
  10. package/dist-types/commands/BatchWriteCommand.d.ts +17 -0
  11. package/dist-types/commands/CreateDirectoryCommand.d.ts +20 -0
  12. package/dist-types/commands/CreateFacetCommand.d.ts +13 -0
  13. package/dist-types/commands/CreateIndexCommand.d.ts +20 -0
  14. package/dist-types/commands/CreateObjectCommand.d.ts +22 -0
  15. package/dist-types/commands/CreateSchemaCommand.d.ts +16 -0
  16. package/dist-types/commands/CreateTypedLinkFacetCommand.d.ts +24 -0
  17. package/dist-types/commands/DeleteDirectoryCommand.d.ts +16 -0
  18. package/dist-types/commands/DeleteFacetCommand.d.ts +12 -0
  19. package/dist-types/commands/DeleteObjectCommand.d.ts +14 -0
  20. package/dist-types/commands/DeleteSchemaCommand.d.ts +16 -0
  21. package/dist-types/commands/DeleteTypedLinkFacetCommand.d.ts +12 -0
  22. package/dist-types/commands/DetachFromIndexCommand.d.ts +22 -0
  23. package/dist-types/commands/DetachObjectCommand.d.ts +20 -0
  24. package/dist-types/commands/DetachPolicyCommand.d.ts +17 -0
  25. package/dist-types/commands/DetachTypedLinkCommand.d.ts +31 -0
  26. package/dist-types/commands/DisableDirectoryCommand.d.ts +16 -0
  27. package/dist-types/commands/EnableDirectoryCommand.d.ts +16 -0
  28. package/dist-types/commands/GetDirectoryCommand.d.ts +21 -0
  29. package/dist-types/commands/GetFacetCommand.d.ts +20 -0
  30. package/dist-types/commands/GetObjectInformationCommand.d.ts +26 -0
  31. package/dist-types/commands/GetSchemaAsJsonCommand.d.ts +17 -0
  32. package/dist-types/commands/GetTypedLinkFacetInformationCommand.d.ts +19 -0
  33. package/dist-types/commands/ListAppliedSchemaArnsCommand.d.ts +18 -0
  34. package/dist-types/commands/ListAttachedIndicesCommand.d.ts +24 -0
  35. package/dist-types/commands/ListDevelopmentSchemaArnsCommand.d.ts +21 -0
  36. package/dist-types/commands/ListDirectoriesCommand.d.ts +45 -0
  37. package/dist-types/commands/ListFacetAttributesCommand.d.ts +189 -0
  38. package/dist-types/commands/ListFacetNamesCommand.d.ts +23 -0
  39. package/dist-types/commands/ListIncomingTypedLinksCommand.d.ts +81 -0
  40. package/dist-types/commands/ListIndexCommand.d.ts +33 -0
  41. package/dist-types/commands/ListObjectAttributesCommand.d.ts +40 -0
  42. package/dist-types/commands/ListObjectChildrenCommand.d.ts +21 -0
  43. package/dist-types/runtimeConfig.browser.d.ts +2 -1
  44. package/dist-types/runtimeConfig.d.ts +2 -1
  45. package/dist-types/runtimeConfig.native.d.ts +2 -1
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -3
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +6 -3
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -3
  49. package/package.json +35 -35
@@ -144,6 +144,39 @@ declare const ListIndexCommand_base: {
144
144
  * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
145
145
  *
146
146
  * @public
147
+ * @example To list an index
148
+ * ```javascript
149
+ * //
150
+ * const input = {
151
+ * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY",
152
+ * "IndexReference": {
153
+ * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TW45F26R1HTY2z-stwKBte_Q"
154
+ * }
155
+ * };
156
+ * const command = new ListIndexCommand(input);
157
+ * const response = await client.send(command);
158
+ * /* response ==
159
+ * {
160
+ * "IndexAttachments": [
161
+ * {
162
+ * "IndexedAttributes": [
163
+ * {
164
+ * "Key": {
165
+ * "FacetName": "Organization",
166
+ * "Name": "description",
167
+ * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1"
168
+ * },
169
+ * "Value": {}
170
+ * }
171
+ * ],
172
+ * "ObjectIdentifier": "AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw"
173
+ * }
174
+ * ]
175
+ * }
176
+ * *\/
177
+ * // example id: to-list-an-index-1508281185950
178
+ * ```
179
+ *
147
180
  */
148
181
  export declare class ListIndexCommand extends ListIndexCommand_base {
149
182
  /** @internal type navigation helper, not in runtime. */
@@ -114,6 +114,46 @@ declare const ListObjectAttributesCommand_base: {
114
114
  * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
115
115
  *
116
116
  * @public
117
+ * @example To list object attributes
118
+ * ```javascript
119
+ * //
120
+ * const input = {
121
+ * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY",
122
+ * "ObjectReference": {
123
+ * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TW45F26R1HTY2z-stwKBte_Q"
124
+ * }
125
+ * };
126
+ * const command = new ListObjectAttributesCommand(input);
127
+ * const response = await client.send(command);
128
+ * /* response ==
129
+ * {
130
+ * "Attributes": [
131
+ * {
132
+ * "Key": {
133
+ * "FacetName": "INDEX",
134
+ * "Name": "index_is_unique",
135
+ * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/CloudDirectory/1.0"
136
+ * },
137
+ * "Value": {
138
+ * "BooleanValue": true
139
+ * }
140
+ * },
141
+ * {
142
+ * "Key": {
143
+ * "FacetName": "INDEX",
144
+ * "Name": "ordered_indexed_attributes",
145
+ * "SchemaArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/CloudDirectory/1.0"
146
+ * },
147
+ * "Value": {
148
+ * "StringValue": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY/schema/org/1*Organization*description"
149
+ * }
150
+ * }
151
+ * ]
152
+ * }
153
+ * *\/
154
+ * // example id: to-list-object-attributes-1508281422770
155
+ * ```
156
+ *
117
157
  */
118
158
  export declare class ListObjectAttributesCommand extends ListObjectAttributesCommand_base {
119
159
  /** @internal type navigation helper, not in runtime. */
@@ -97,6 +97,27 @@ declare const ListObjectChildrenCommand_base: {
97
97
  * <p>Base exception class for all service exceptions from CloudDirectory service.</p>
98
98
  *
99
99
  * @public
100
+ * @example To list an objects children
101
+ * ```javascript
102
+ * //
103
+ * const input = {
104
+ * "DirectoryArn": "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY",
105
+ * "ObjectReference": {
106
+ * "Selector": "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw"
107
+ * }
108
+ * };
109
+ * const command = new ListObjectChildrenCommand(input);
110
+ * const response = await client.send(command);
111
+ * /* response ==
112
+ * {
113
+ * "Children": {
114
+ * "link2": "AQGG_ADlfNZBzYHY_JgDt3TWSvfuEnDqTdmeCuTs6YBNUA"
115
+ * }
116
+ * }
117
+ * *\/
118
+ * // example id: to-list-an-objects-children-1508281694794
119
+ * ```
120
+ *
100
121
  */
101
122
  export declare class ListObjectChildrenCommand extends ListObjectChildrenCommand_base {
102
123
  /** @internal type navigation helper, not in runtime. */
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
11
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
11
+ defaultUserAgentProvider: (config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
29
29
  logger: import("@smithy/types").Logger;
30
30
  extensions: import("./runtimeExtensions").RuntimeExtension[];
31
31
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
32
33
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
33
34
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
34
35
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
11
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<string>;
14
14
  requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
@@ -17,6 +17,7 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
17
17
  streamCollector: import("@smithy/types").StreamCollector;
18
18
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
19
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
20
21
  apiVersion: string;
21
22
  cacheMiddleware?: boolean | undefined;
22
23
  urlParser: import("@smithy/types").UrlParser;
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
20
20
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
21
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
22
  region: string | import("@smithy/types").Provider<any>;
23
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
23
+ defaultUserAgentProvider: (config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
24
24
  credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
25
25
  maxAttempts: number | import("@smithy/types").Provider<number>;
26
26
  retryMode: string | import("@smithy/types").Provider<string>;
@@ -28,6 +28,7 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
28
28
  extensions: import("./runtimeExtensions").RuntimeExtension[];
29
29
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
30
30
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
31
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
31
32
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
32
33
  endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
33
34
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
@@ -9,9 +9,9 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
9
9
  credentialDefaultProvider: (
10
10
  input: any
11
11
  ) => import("@smithy/types").AwsCredentialIdentityProvider;
12
- defaultUserAgentProvider: import("@smithy/types").Provider<
13
- import("@smithy/types").UserAgent
14
- >;
12
+ defaultUserAgentProvider: (
13
+ config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
14
+ ) => Promise<import("@smithy/types").UserAgent>;
15
15
  maxAttempts: number | import("@smithy/types").Provider<number>;
16
16
  region: string | import("@smithy/types").Provider<any>;
17
17
  requestHandler:
@@ -34,6 +34,10 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
34
34
  logger: import("@smithy/types").Logger;
35
35
  extensions: import("./runtimeExtensions").RuntimeExtension[];
36
36
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
37
+ userAgentAppId?:
38
+ | string
39
+ | import("@smithy/types").Provider<string | undefined>
40
+ | undefined;
37
41
  retryStrategy?:
38
42
  | import("@smithy/types").RetryStrategy
39
43
  | import("@smithy/types").RetryStrategyV2
@@ -13,9 +13,11 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
13
13
  ) => import("@smithy/types").MemoizedProvider<
14
14
  import("@smithy/types").AwsCredentialIdentity
15
15
  >;
16
- defaultUserAgentProvider: import("@smithy/types").Provider<
17
- import("@smithy/types").UserAgent
18
- >;
16
+ defaultUserAgentProvider: (
17
+ config?:
18
+ | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
19
+ | undefined
20
+ ) => Promise<import("@smithy/types").UserAgent>;
19
21
  maxAttempts: number | import("@smithy/types").Provider<number>;
20
22
  region: string | import("@smithy/types").Provider<string>;
21
23
  requestHandler:
@@ -26,6 +28,7 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
26
28
  streamCollector: import("@smithy/types").StreamCollector;
27
29
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
28
30
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
31
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
29
32
  apiVersion: string;
30
33
  cacheMiddleware?: boolean | undefined;
31
34
  urlParser: import("@smithy/types").UrlParser;
@@ -22,9 +22,9 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
22
22
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
23
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
24
  region: string | import("@smithy/types").Provider<any>;
25
- defaultUserAgentProvider: import("@smithy/types").Provider<
26
- import("@smithy/types").UserAgent
27
- >;
25
+ defaultUserAgentProvider: (
26
+ config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
27
+ ) => Promise<import("@smithy/types").UserAgent>;
28
28
  credentialDefaultProvider: (
29
29
  input: any
30
30
  ) => import("@smithy/types").AwsCredentialIdentityProvider;
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: CloudDirectoryClientConfig) => {
38
38
  import("@smithy/smithy-client").DefaultsMode
39
39
  >;
40
40
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
41
+ userAgentAppId?:
42
+ | string
43
+ | import("@smithy/types").Provider<string | undefined>
44
+ | undefined;
41
45
  retryStrategy?:
42
46
  | import("@smithy/types").RetryStrategy
43
47
  | import("@smithy/types").RetryStrategyV2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-clouddirectory",
3
3
  "description": "AWS SDK for JavaScript Clouddirectory Client for Node.js, Browser and React Native",
4
- "version": "3.658.1",
4
+ "version": "3.664.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-clouddirectory",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.658.1",
24
- "@aws-sdk/client-sts": "3.658.1",
25
- "@aws-sdk/core": "3.658.1",
26
- "@aws-sdk/credential-provider-node": "3.658.1",
27
- "@aws-sdk/middleware-host-header": "3.654.0",
28
- "@aws-sdk/middleware-logger": "3.654.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.654.0",
30
- "@aws-sdk/middleware-user-agent": "3.654.0",
31
- "@aws-sdk/region-config-resolver": "3.654.0",
32
- "@aws-sdk/types": "3.654.0",
33
- "@aws-sdk/util-endpoints": "3.654.0",
34
- "@aws-sdk/util-user-agent-browser": "3.654.0",
35
- "@aws-sdk/util-user-agent-node": "3.654.0",
36
- "@smithy/config-resolver": "^3.0.8",
37
- "@smithy/core": "^2.4.6",
38
- "@smithy/fetch-http-handler": "^3.2.8",
39
- "@smithy/hash-node": "^3.0.6",
40
- "@smithy/invalid-dependency": "^3.0.6",
41
- "@smithy/middleware-content-length": "^3.0.8",
42
- "@smithy/middleware-endpoint": "^3.1.3",
43
- "@smithy/middleware-retry": "^3.0.21",
44
- "@smithy/middleware-serde": "^3.0.6",
45
- "@smithy/middleware-stack": "^3.0.6",
46
- "@smithy/node-config-provider": "^3.1.7",
47
- "@smithy/node-http-handler": "^3.2.3",
48
- "@smithy/protocol-http": "^4.1.3",
49
- "@smithy/smithy-client": "^3.3.5",
50
- "@smithy/types": "^3.4.2",
51
- "@smithy/url-parser": "^3.0.6",
23
+ "@aws-sdk/client-sso-oidc": "3.664.0",
24
+ "@aws-sdk/client-sts": "3.664.0",
25
+ "@aws-sdk/core": "3.664.0",
26
+ "@aws-sdk/credential-provider-node": "3.664.0",
27
+ "@aws-sdk/middleware-host-header": "3.664.0",
28
+ "@aws-sdk/middleware-logger": "3.664.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.664.0",
30
+ "@aws-sdk/middleware-user-agent": "3.664.0",
31
+ "@aws-sdk/region-config-resolver": "3.664.0",
32
+ "@aws-sdk/types": "3.664.0",
33
+ "@aws-sdk/util-endpoints": "3.664.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.664.0",
35
+ "@aws-sdk/util-user-agent-node": "3.664.0",
36
+ "@smithy/config-resolver": "^3.0.9",
37
+ "@smithy/core": "^2.4.7",
38
+ "@smithy/fetch-http-handler": "^3.2.9",
39
+ "@smithy/hash-node": "^3.0.7",
40
+ "@smithy/invalid-dependency": "^3.0.7",
41
+ "@smithy/middleware-content-length": "^3.0.9",
42
+ "@smithy/middleware-endpoint": "^3.1.4",
43
+ "@smithy/middleware-retry": "^3.0.22",
44
+ "@smithy/middleware-serde": "^3.0.7",
45
+ "@smithy/middleware-stack": "^3.0.7",
46
+ "@smithy/node-config-provider": "^3.1.8",
47
+ "@smithy/node-http-handler": "^3.2.4",
48
+ "@smithy/protocol-http": "^4.1.4",
49
+ "@smithy/smithy-client": "^3.3.6",
50
+ "@smithy/types": "^3.5.0",
51
+ "@smithy/url-parser": "^3.0.7",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.21",
56
- "@smithy/util-defaults-mode-node": "^3.0.21",
57
- "@smithy/util-endpoints": "^2.1.2",
58
- "@smithy/util-middleware": "^3.0.6",
59
- "@smithy/util-retry": "^3.0.6",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.22",
56
+ "@smithy/util-defaults-mode-node": "^3.0.22",
57
+ "@smithy/util-endpoints": "^2.1.3",
58
+ "@smithy/util-middleware": "^3.0.7",
59
+ "@smithy/util-retry": "^3.0.7",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },