@aws-sdk/client-cloudfront-keyvaluestore 3.590.0 → 3.592.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 +0 -6
- package/dist-types/commands/DeleteKeyCommand.d.ts +2 -1
- package/dist-types/commands/DescribeKeyValueStoreCommand.d.ts +2 -1
- package/dist-types/commands/GetKeyCommand.d.ts +2 -1
- package/dist-types/commands/ListKeysCommand.d.ts +2 -1
- package/dist-types/commands/PutKeyCommand.d.ts +2 -1
- package/dist-types/commands/UpdateKeysCommand.d.ts +2 -1
- package/dist-types/index.d.ts +2 -2
- package/dist-types/models/CloudFrontKeyValueStoreServiceException.d.ts +2 -1
- package/dist-types/ts3.4/commands/DeleteKeyCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DescribeKeyValueStoreCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetKeyCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListKeysCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/PutKeyCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateKeysCommand.d.ts +2 -1
- package/dist-types/ts3.4/models/CloudFrontKeyValueStoreServiceException.d.ts +2 -1
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -137,7 +137,6 @@ var CloudFrontKeyValueStoreClient = _CloudFrontKeyValueStoreClient;
|
|
|
137
137
|
|
|
138
138
|
var import_middleware_serde = require("@smithy/middleware-serde");
|
|
139
139
|
|
|
140
|
-
var import_types = require("@smithy/types");
|
|
141
140
|
|
|
142
141
|
// src/protocols/Aws_restJson1.ts
|
|
143
142
|
var import_core = require("@aws-sdk/core");
|
|
@@ -620,7 +619,6 @@ var DeleteKeyCommand = _DeleteKeyCommand;
|
|
|
620
619
|
|
|
621
620
|
|
|
622
621
|
|
|
623
|
-
|
|
624
622
|
var _DescribeKeyValueStoreCommand = class _DescribeKeyValueStoreCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
625
623
|
...commonParams,
|
|
626
624
|
KvsARN: { type: "contextParams", name: "KvsARN" }
|
|
@@ -638,7 +636,6 @@ var DescribeKeyValueStoreCommand = _DescribeKeyValueStoreCommand;
|
|
|
638
636
|
|
|
639
637
|
|
|
640
638
|
|
|
641
|
-
|
|
642
639
|
var _GetKeyCommand = class _GetKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
643
640
|
...commonParams,
|
|
644
641
|
KvsARN: { type: "contextParams", name: "KvsARN" }
|
|
@@ -656,7 +653,6 @@ var GetKeyCommand = _GetKeyCommand;
|
|
|
656
653
|
|
|
657
654
|
|
|
658
655
|
|
|
659
|
-
|
|
660
656
|
var _ListKeysCommand = class _ListKeysCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
661
657
|
...commonParams,
|
|
662
658
|
KvsARN: { type: "contextParams", name: "KvsARN" }
|
|
@@ -674,7 +670,6 @@ var ListKeysCommand = _ListKeysCommand;
|
|
|
674
670
|
|
|
675
671
|
|
|
676
672
|
|
|
677
|
-
|
|
678
673
|
var _PutKeyCommand = class _PutKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
679
674
|
...commonParams,
|
|
680
675
|
KvsARN: { type: "contextParams", name: "KvsARN" }
|
|
@@ -692,7 +687,6 @@ var PutKeyCommand = _PutKeyCommand;
|
|
|
692
687
|
|
|
693
688
|
|
|
694
689
|
|
|
695
|
-
|
|
696
690
|
var _UpdateKeysCommand = class _UpdateKeysCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
697
691
|
...commonParams,
|
|
698
692
|
KvsARN: { type: "contextParams", name: "KvsARN" }
|
package/dist-types/index.d.ts
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
export * from "./CloudFrontKeyValueStoreClient";
|
|
7
7
|
export * from "./CloudFrontKeyValueStore";
|
|
8
8
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
9
|
-
export { RuntimeExtension } from "./runtimeExtensions";
|
|
10
|
-
export { CloudFrontKeyValueStoreExtensionConfiguration } from "./extensionConfiguration";
|
|
9
|
+
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
|
+
export type { CloudFrontKeyValueStoreExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
13
|
export * from "./models";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
|
|
2
|
-
export {
|
|
2
|
+
export type { __ServiceExceptionOptions };
|
|
3
|
+
export { __ServiceException };
|
|
3
4
|
/**
|
|
4
5
|
* @public
|
|
5
6
|
*
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudFrontKeyValueStoreClient";
|
|
8
8
|
import { DeleteKeyRequest, DeleteKeyResponse } from "../models/models_0";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface DeleteKeyCommandInput extends DeleteKeyRequest {}
|
|
11
12
|
export interface DeleteKeyCommandOutput
|
|
12
13
|
extends DeleteKeyResponse,
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
DescribeKeyValueStoreRequest,
|
|
10
10
|
DescribeKeyValueStoreResponse,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface DescribeKeyValueStoreCommandInput
|
|
14
15
|
extends DescribeKeyValueStoreRequest {}
|
|
15
16
|
export interface DescribeKeyValueStoreCommandOutput
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudFrontKeyValueStoreClient";
|
|
8
8
|
import { GetKeyRequest, GetKeyResponse } from "../models/models_0";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface GetKeyCommandInput extends GetKeyRequest {}
|
|
11
12
|
export interface GetKeyCommandOutput extends GetKeyResponse, __MetadataBearer {}
|
|
12
13
|
declare const GetKeyCommand_base: {
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudFrontKeyValueStoreClient";
|
|
8
8
|
import { ListKeysRequest, ListKeysResponse } from "../models/models_0";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface ListKeysCommandInput extends ListKeysRequest {}
|
|
11
12
|
export interface ListKeysCommandOutput
|
|
12
13
|
extends ListKeysResponse,
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudFrontKeyValueStoreClient";
|
|
8
8
|
import { PutKeyRequest, PutKeyResponse } from "../models/models_0";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface PutKeyCommandInput extends PutKeyRequest {}
|
|
11
12
|
export interface PutKeyCommandOutput extends PutKeyResponse, __MetadataBearer {}
|
|
12
13
|
declare const PutKeyCommand_base: {
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudFrontKeyValueStoreClient";
|
|
8
8
|
import { UpdateKeysRequest, UpdateKeysResponse } from "../models/models_0";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface UpdateKeysCommandInput extends UpdateKeysRequest {}
|
|
11
12
|
export interface UpdateKeysCommandOutput
|
|
12
13
|
extends UpdateKeysResponse,
|
|
@@ -2,7 +2,8 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@smithy/smithy-client";
|
|
5
|
-
export {
|
|
5
|
+
export { __ServiceExceptionOptions };
|
|
6
|
+
export { __ServiceException };
|
|
6
7
|
export declare class CloudFrontKeyValueStoreServiceException extends __ServiceException {
|
|
7
8
|
constructor(options: __ServiceExceptionOptions);
|
|
8
9
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudfront-keyvaluestore",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudfront Keyvaluestore Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.592.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-cloudfront-keyvaluestore",
|
|
@@ -20,10 +20,10 @@
|
|
|
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-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.592.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.592.0",
|
|
25
|
+
"@aws-sdk/core": "3.592.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.592.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
|
37
37
|
"@aws-sdk/util-user-agent-node": "3.587.0",
|
|
38
38
|
"@smithy/config-resolver": "^3.0.1",
|
|
39
|
-
"@smithy/core": "^2.
|
|
39
|
+
"@smithy/core": "^2.2.0",
|
|
40
40
|
"@smithy/fetch-http-handler": "^3.0.1",
|
|
41
41
|
"@smithy/hash-node": "^3.0.0",
|
|
42
42
|
"@smithy/invalid-dependency": "^3.0.0",
|