@aws-sdk/client-service-catalog-appregistry 3.51.0 → 3.54.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.
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { AssociateAttributeGroupCommandInput, AssociateAttributeGroupCommandOutput } from "./commands/AssociateAttributeGroupCommand";
10
10
  import { AssociateResourceCommandInput, AssociateResourceCommandOutput } from "./commands/AssociateResourceCommand";
11
11
  import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
@@ -49,7 +49,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
49
49
  * A function that can calculate the length of a request body.
50
50
  * @internal
51
51
  */
52
- bodyLengthChecker?: (body: any) => number | undefined;
52
+ bodyLengthChecker?: __BodyLengthCalculator;
53
53
  /**
54
54
  * A function that converts a stream into an array of bytes.
55
55
  * @internal
@@ -3,3 +3,4 @@ export * from "./ServiceCatalogAppRegistryClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { ServiceCatalogAppRegistryServiceException } from "./models/ServiceCatalogAppRegistryServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from ServiceCatalogAppRegistry service.
4
+ */
5
+ export declare class ServiceCatalogAppRegistryServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ServiceCatalogAppRegistryServiceException as __BaseException } from "./ServiceCatalogAppRegistryServiceException";
2
3
  /**
3
4
  * <p>Represents a Amazon Web Services Service Catalog AppRegistry application that is the top-level node in a hierarchy of related
4
5
  * cloud resource abstractions.</p>
@@ -111,34 +112,46 @@ export declare namespace AssociateAttributeGroupResponse {
111
112
  /**
112
113
  * <p>The service is experiencing internal problems.</p>
113
114
  */
114
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
115
- name: "InternalServerException";
116
- $fault: "server";
117
- message?: string;
115
+ export declare class InternalServerException extends __BaseException {
116
+ readonly name: "InternalServerException";
117
+ readonly $fault: "server";
118
+ /**
119
+ * @internal
120
+ */
121
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
118
122
  }
119
123
  /**
120
124
  * <p>The specified resource does not exist.</p>
121
125
  */
122
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
123
- name: "ResourceNotFoundException";
124
- $fault: "client";
125
- message?: string;
126
+ export declare class ResourceNotFoundException extends __BaseException {
127
+ readonly name: "ResourceNotFoundException";
128
+ readonly $fault: "client";
129
+ /**
130
+ * @internal
131
+ */
132
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
126
133
  }
127
134
  /**
128
135
  * <p>The maximum number of resources per account has been reached.</p>
129
136
  */
130
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
131
- name: "ServiceQuotaExceededException";
132
- $fault: "client";
133
- message?: string;
137
+ export declare class ServiceQuotaExceededException extends __BaseException {
138
+ readonly name: "ServiceQuotaExceededException";
139
+ readonly $fault: "client";
140
+ /**
141
+ * @internal
142
+ */
143
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
134
144
  }
135
145
  /**
136
146
  * <p>The request has invalid or missing parameters.</p>
137
147
  */
138
- export interface ValidationException extends __SmithyException, $MetadataBearer {
139
- name: "ValidationException";
140
- $fault: "client";
141
- message?: string;
148
+ export declare class ValidationException extends __BaseException {
149
+ readonly name: "ValidationException";
150
+ readonly $fault: "client";
151
+ /**
152
+ * @internal
153
+ */
154
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
142
155
  }
143
156
  export declare enum ResourceType {
144
157
  CFN_STACK = "CFN_STACK"
@@ -183,10 +196,13 @@ export declare namespace AssociateResourceResponse {
183
196
  * <p>There was a conflict when processing the request (for example, a resource with the given name already
184
197
  * exists within the account).</p>
185
198
  */
186
- export interface ConflictException extends __SmithyException, $MetadataBearer {
187
- name: "ConflictException";
188
- $fault: "client";
189
- message?: string;
199
+ export declare class ConflictException extends __BaseException {
200
+ readonly name: "ConflictException";
201
+ readonly $fault: "client";
202
+ /**
203
+ * @internal
204
+ */
205
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
190
206
  }
191
207
  /**
192
208
  * <p>Represents a Amazon Web Services Service Catalog AppRegistry attribute group that is rich metadata which describes an application and its components.</p>
@@ -988,6 +1004,8 @@ export interface UpdateApplicationRequest {
988
1004
  */
989
1005
  application: string | undefined;
990
1006
  /**
1007
+ * @deprecated
1008
+ *
991
1009
  * <p>The new name of the application. The name must be unique in the region in which you are updating the application.</p>
992
1010
  */
993
1011
  name?: string;
@@ -1020,6 +1038,8 @@ export interface UpdateAttributeGroupRequest {
1020
1038
  */
1021
1039
  attributeGroup: string | undefined;
1022
1040
  /**
1041
+ * @deprecated
1042
+ *
1023
1043
  * <p>The new name of the attribute group. The name must be unique in the region in which you are
1024
1044
  * updating the attribute group.</p>
1025
1045
  */
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ServiceCatalogAppRegistryClientC
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ServiceCatalogAppRegistryClientC
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ServiceCatalogAppRegistryClientC
8
8
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
9
  apiVersion: string;
10
10
  urlParser: import("@aws-sdk/types").UrlParser;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  streamCollector: import("@aws-sdk/types").StreamCollector;
13
13
  base64Decoder: import("@aws-sdk/types").Decoder;
14
14
  base64Encoder: import("@aws-sdk/types").Encoder;
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { AssociateAttributeGroupCommandInput, AssociateAttributeGroupCommandOutput } from "./commands/AssociateAttributeGroupCommand";
10
10
  import { AssociateResourceCommandInput, AssociateResourceCommandOutput } from "./commands/AssociateResourceCommand";
11
11
  import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
@@ -37,7 +37,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
37
37
 
38
38
  urlParser?: __UrlParser;
39
39
 
40
- bodyLengthChecker?: (body: any) => number | undefined;
40
+ bodyLengthChecker?: __BodyLengthCalculator;
41
41
 
42
42
  streamCollector?: __StreamCollector;
43
43
 
@@ -3,3 +3,4 @@ export * from "./ServiceCatalogAppRegistryClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { ServiceCatalogAppRegistryServiceException } from "./models/ServiceCatalogAppRegistryServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class ServiceCatalogAppRegistryServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ServiceCatalogAppRegistryServiceException as __BaseException } from "./ServiceCatalogAppRegistryServiceException";
2
3
 
3
4
  export interface Application {
4
5
 
@@ -62,28 +63,32 @@ export declare namespace AssociateAttributeGroupResponse {
62
63
  const filterSensitiveLog: (obj: AssociateAttributeGroupResponse) => any;
63
64
  }
64
65
 
65
- export interface InternalServerException extends __SmithyException, $MetadataBearer {
66
- name: "InternalServerException";
67
- $fault: "server";
68
- message?: string;
66
+ export declare class InternalServerException extends __BaseException {
67
+ readonly name: "InternalServerException";
68
+ readonly $fault: "server";
69
+
70
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
69
71
  }
70
72
 
71
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
72
- name: "ResourceNotFoundException";
73
- $fault: "client";
74
- message?: string;
73
+ export declare class ResourceNotFoundException extends __BaseException {
74
+ readonly name: "ResourceNotFoundException";
75
+ readonly $fault: "client";
76
+
77
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
75
78
  }
76
79
 
77
- export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
78
- name: "ServiceQuotaExceededException";
79
- $fault: "client";
80
- message?: string;
80
+ export declare class ServiceQuotaExceededException extends __BaseException {
81
+ readonly name: "ServiceQuotaExceededException";
82
+ readonly $fault: "client";
83
+
84
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
81
85
  }
82
86
 
83
- export interface ValidationException extends __SmithyException, $MetadataBearer {
84
- name: "ValidationException";
85
- $fault: "client";
86
- message?: string;
87
+ export declare class ValidationException extends __BaseException {
88
+ readonly name: "ValidationException";
89
+ readonly $fault: "client";
90
+
91
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
87
92
  }
88
93
  export declare enum ResourceType {
89
94
  CFN_STACK = "CFN_STACK"
@@ -111,10 +116,11 @@ export declare namespace AssociateResourceResponse {
111
116
  const filterSensitiveLog: (obj: AssociateResourceResponse) => any;
112
117
  }
113
118
 
114
- export interface ConflictException extends __SmithyException, $MetadataBearer {
115
- name: "ConflictException";
116
- $fault: "client";
117
- message?: string;
119
+ export declare class ConflictException extends __BaseException {
120
+ readonly name: "ConflictException";
121
+ readonly $fault: "client";
122
+
123
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
118
124
  }
119
125
 
120
126
  export interface AttributeGroup {
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ServiceCatalogAppRegistryClientC
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ServiceCatalogAppRegistryClientC
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ServiceCatalogAppRegistryClientC
6
6
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
7
  apiVersion: string;
8
8
  urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  streamCollector: import("@aws-sdk/types").StreamCollector;
11
11
  base64Decoder: import("@aws-sdk/types").Decoder;
12
12
  base64Encoder: import("@aws-sdk/types").Encoder;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-service-catalog-appregistry",
3
3
  "description": "AWS SDK for JavaScript Service Catalog Appregistry Client for Node.js, Browser and React Native",
4
- "version": "3.51.0",
4
+ "version": "3.54.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -9,7 +9,7 @@
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
11
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
- "clean": "rimraf ./dist-*"
12
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
13
13
  },
14
14
  "main": "./dist-cjs/index.js",
15
15
  "types": "./dist-types/index.d.ts",
@@ -18,41 +18,41 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.51.0",
22
- "@aws-sdk/config-resolver": "3.51.0",
23
- "@aws-sdk/credential-provider-node": "3.51.0",
24
- "@aws-sdk/fetch-http-handler": "3.50.0",
25
- "@aws-sdk/hash-node": "3.50.0",
26
- "@aws-sdk/invalid-dependency": "3.50.0",
27
- "@aws-sdk/middleware-content-length": "3.50.0",
28
- "@aws-sdk/middleware-host-header": "3.50.0",
29
- "@aws-sdk/middleware-logger": "3.50.0",
30
- "@aws-sdk/middleware-retry": "3.51.0",
31
- "@aws-sdk/middleware-serde": "3.50.0",
32
- "@aws-sdk/middleware-signing": "3.50.0",
33
- "@aws-sdk/middleware-stack": "3.50.0",
34
- "@aws-sdk/middleware-user-agent": "3.50.0",
35
- "@aws-sdk/node-config-provider": "3.51.0",
36
- "@aws-sdk/node-http-handler": "3.50.0",
37
- "@aws-sdk/protocol-http": "3.50.0",
38
- "@aws-sdk/smithy-client": "3.50.0",
39
- "@aws-sdk/types": "3.50.0",
40
- "@aws-sdk/url-parser": "3.50.0",
41
- "@aws-sdk/util-base64-browser": "3.49.0",
42
- "@aws-sdk/util-base64-node": "3.49.0",
43
- "@aws-sdk/util-body-length-browser": "3.49.0",
44
- "@aws-sdk/util-body-length-node": "3.49.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.50.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.51.0",
47
- "@aws-sdk/util-user-agent-browser": "3.50.0",
48
- "@aws-sdk/util-user-agent-node": "3.51.0",
49
- "@aws-sdk/util-utf8-browser": "3.49.0",
50
- "@aws-sdk/util-utf8-node": "3.49.0",
21
+ "@aws-sdk/client-sts": "3.54.0",
22
+ "@aws-sdk/config-resolver": "3.54.0",
23
+ "@aws-sdk/credential-provider-node": "3.54.0",
24
+ "@aws-sdk/fetch-http-handler": "3.54.0",
25
+ "@aws-sdk/hash-node": "3.54.0",
26
+ "@aws-sdk/invalid-dependency": "3.54.0",
27
+ "@aws-sdk/middleware-content-length": "3.54.0",
28
+ "@aws-sdk/middleware-host-header": "3.54.0",
29
+ "@aws-sdk/middleware-logger": "3.54.0",
30
+ "@aws-sdk/middleware-retry": "3.54.0",
31
+ "@aws-sdk/middleware-serde": "3.54.0",
32
+ "@aws-sdk/middleware-signing": "3.54.0",
33
+ "@aws-sdk/middleware-stack": "3.54.0",
34
+ "@aws-sdk/middleware-user-agent": "3.54.0",
35
+ "@aws-sdk/node-config-provider": "3.54.0",
36
+ "@aws-sdk/node-http-handler": "3.54.0",
37
+ "@aws-sdk/protocol-http": "3.54.0",
38
+ "@aws-sdk/smithy-client": "3.54.0",
39
+ "@aws-sdk/types": "3.54.0",
40
+ "@aws-sdk/url-parser": "3.54.0",
41
+ "@aws-sdk/util-base64-browser": "3.52.0",
42
+ "@aws-sdk/util-base64-node": "3.52.0",
43
+ "@aws-sdk/util-body-length-browser": "3.54.0",
44
+ "@aws-sdk/util-body-length-node": "3.54.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.54.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.54.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.54.0",
48
+ "@aws-sdk/util-user-agent-node": "3.54.0",
49
+ "@aws-sdk/util-utf8-browser": "3.52.0",
50
+ "@aws-sdk/util-utf8-node": "3.52.0",
51
51
  "tslib": "^2.3.0",
52
52
  "uuid": "^8.3.2"
53
53
  },
54
54
  "devDependencies": {
55
- "@aws-sdk/service-client-documentation-generator": "3.49.0",
55
+ "@aws-sdk/service-client-documentation-generator": "3.52.0",
56
56
  "@tsconfig/recommended": "1.0.1",
57
57
  "@types/node": "^12.7.5",
58
58
  "@types/uuid": "^8.3.0",