@aws-sdk/client-appconfigdata 3.354.0 → 3.357.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/protocols/Aws_restJson1.js +2 -8
- package/dist-es/protocols/Aws_restJson1.js +1 -7
- package/dist-types/AppConfigDataClient.d.ts +1 -1
- package/dist-types/commands/GetLatestConfigurationCommand.d.ts +8 -1
- package/dist-types/ts3.4/commands/GetLatestConfigurationCommand.d.ts +8 -1
- package/package.json +29 -28
|
@@ -63,7 +63,7 @@ const de_GetLatestConfigurationCommand = async (output, context) => {
|
|
|
63
63
|
ContentType: [, output.headers["content-type"]],
|
|
64
64
|
VersionLabel: [, output.headers["version-label"]],
|
|
65
65
|
});
|
|
66
|
-
const data = await collectBody(output.body, context);
|
|
66
|
+
const data = await (0, smithy_client_1.collectBody)(output.body, context);
|
|
67
67
|
contents.Configuration = data;
|
|
68
68
|
return contents;
|
|
69
69
|
};
|
|
@@ -202,13 +202,7 @@ const deserializeMetadata = (output) => ({
|
|
|
202
202
|
extendedRequestId: output.headers["x-amz-id-2"],
|
|
203
203
|
cfId: output.headers["x-amz-cf-id"],
|
|
204
204
|
});
|
|
205
|
-
const
|
|
206
|
-
if (streamBody instanceof Uint8Array) {
|
|
207
|
-
return Promise.resolve(streamBody);
|
|
208
|
-
}
|
|
209
|
-
return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());
|
|
210
|
-
};
|
|
211
|
-
const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
|
|
205
|
+
const collectBodyString = (streamBody, context) => (0, smithy_client_1.collectBody)(streamBody, context).then((body) => context.utf8Encoder(body));
|
|
212
206
|
const isSerializableHeaderValue = (value) => value !== undefined &&
|
|
213
207
|
value !== null &&
|
|
214
208
|
value !== "" &&
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _json, decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, expectUnion as __expectUnion, map, strictParseInt32 as __strictParseInt32, take, withBaseException, } from "@aws-sdk/smithy-client";
|
|
1
|
+
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, expectUnion as __expectUnion, map, strictParseInt32 as __strictParseInt32, take, withBaseException, } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
|
|
3
3
|
import { AppConfigDataServiceException as __BaseException } from "../models/AppConfigDataServiceException";
|
|
4
4
|
import { BadRequestException, InternalServerException, ResourceNotFoundException, ThrottlingException, } from "../models/models_0";
|
|
@@ -195,12 +195,6 @@ const deserializeMetadata = (output) => ({
|
|
|
195
195
|
extendedRequestId: output.headers["x-amz-id-2"],
|
|
196
196
|
cfId: output.headers["x-amz-cf-id"],
|
|
197
197
|
});
|
|
198
|
-
const collectBody = (streamBody = new Uint8Array(), context) => {
|
|
199
|
-
if (streamBody instanceof Uint8Array) {
|
|
200
|
-
return Promise.resolve(streamBody);
|
|
201
|
-
}
|
|
202
|
-
return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());
|
|
203
|
-
};
|
|
204
198
|
const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
|
|
205
199
|
const isSerializableHeaderValue = (value) => value !== undefined &&
|
|
206
200
|
value !== null &&
|
|
@@ -75,7 +75,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
75
75
|
*/
|
|
76
76
|
runtime?: string;
|
|
77
77
|
/**
|
|
78
|
-
* Disable
|
|
78
|
+
* Disable dynamically changing the endpoint of the client based on the hostPrefix
|
|
79
79
|
* trait of an operation.
|
|
80
80
|
*/
|
|
81
81
|
disableHostPrefix?: boolean;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { Uint8ArrayBlobAdapter } from "@aws-sdk/util-stream";
|
|
4
5
|
import { AppConfigDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigDataClient";
|
|
5
6
|
import { GetLatestConfigurationRequest, GetLatestConfigurationResponse } from "../models/models_0";
|
|
6
7
|
/**
|
|
@@ -14,12 +15,18 @@ export { __MetadataBearer, $Command };
|
|
|
14
15
|
*/
|
|
15
16
|
export interface GetLatestConfigurationCommandInput extends GetLatestConfigurationRequest {
|
|
16
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export type GetLatestConfigurationCommandOutputType = Omit<GetLatestConfigurationResponse, "Configuration"> & {
|
|
22
|
+
Configuration?: Uint8ArrayBlobAdapter;
|
|
23
|
+
};
|
|
17
24
|
/**
|
|
18
25
|
* @public
|
|
19
26
|
*
|
|
20
27
|
* The output of {@link GetLatestConfigurationCommand}.
|
|
21
28
|
*/
|
|
22
|
-
export interface GetLatestConfigurationCommandOutput extends
|
|
29
|
+
export interface GetLatestConfigurationCommandOutput extends GetLatestConfigurationCommandOutputType, __MetadataBearer {
|
|
23
30
|
}
|
|
24
31
|
/**
|
|
25
32
|
* @public
|
|
@@ -6,6 +6,7 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
+
import { Uint8ArrayBlobAdapter } from "@aws-sdk/util-stream";
|
|
9
10
|
import {
|
|
10
11
|
AppConfigDataClientResolvedConfig,
|
|
11
12
|
ServiceInputTypes,
|
|
@@ -18,8 +19,14 @@ import {
|
|
|
18
19
|
export { __MetadataBearer, $Command };
|
|
19
20
|
export interface GetLatestConfigurationCommandInput
|
|
20
21
|
extends GetLatestConfigurationRequest {}
|
|
22
|
+
export type GetLatestConfigurationCommandOutputType = Pick<
|
|
23
|
+
GetLatestConfigurationResponse,
|
|
24
|
+
Exclude<keyof GetLatestConfigurationResponse, "Configuration">
|
|
25
|
+
> & {
|
|
26
|
+
Configuration?: Uint8ArrayBlobAdapter;
|
|
27
|
+
};
|
|
21
28
|
export interface GetLatestConfigurationCommandOutput
|
|
22
|
-
extends
|
|
29
|
+
extends GetLatestConfigurationCommandOutputType,
|
|
23
30
|
__MetadataBearer {}
|
|
24
31
|
export declare class GetLatestConfigurationCommand extends $Command<
|
|
25
32
|
GetLatestConfigurationCommandInput,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appconfigdata",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appconfigdata Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.357.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",
|
|
@@ -21,36 +21,37 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.357.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.357.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.357.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.357.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.357.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.357.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.357.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.357.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.357.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.357.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.357.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.357.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.357.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.357.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.357.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.357.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.357.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.357.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.357.0",
|
|
43
|
+
"@aws-sdk/types": "3.357.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.357.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-
|
|
53
|
-
"@aws-sdk/util-user-agent-
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.357.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.357.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.357.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.357.0",
|
|
52
|
+
"@aws-sdk/util-stream": "3.357.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.357.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.357.0",
|
|
54
55
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
55
56
|
"@smithy/protocol-http": "^1.0.1",
|
|
56
57
|
"@smithy/types": "^1.0.0",
|