@aws-sdk/client-payment-cryptography 3.462.0 → 3.468.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/README.md +3 -3
- package/dist-types/PaymentCryptography.d.ts +3 -3
- package/dist-types/PaymentCryptographyClient.d.ts +3 -3
- package/dist-types/commands/CreateKeyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteKeyCommand.d.ts +2 -3
- package/dist-types/commands/ExportKeyCommand.d.ts +62 -22
- package/dist-types/commands/GetParametersForImportCommand.d.ts +2 -2
- package/dist-types/commands/ImportKeyCommand.d.ts +31 -20
- package/dist-types/index.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +233 -184
- package/dist-types/ts3.4/models/models_0.d.ts +49 -39
- package/package.json +34 -36
|
@@ -73,6 +73,31 @@ export declare class ValidationException extends __BaseException {
|
|
|
73
73
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
74
74
|
);
|
|
75
75
|
}
|
|
76
|
+
export interface DeleteAliasInput {
|
|
77
|
+
AliasName: string | undefined;
|
|
78
|
+
}
|
|
79
|
+
export interface DeleteAliasOutput {}
|
|
80
|
+
export interface GetAliasInput {
|
|
81
|
+
AliasName: string | undefined;
|
|
82
|
+
}
|
|
83
|
+
export interface GetAliasOutput {
|
|
84
|
+
Alias: Alias | undefined;
|
|
85
|
+
}
|
|
86
|
+
export interface ListAliasesInput {
|
|
87
|
+
NextToken?: string;
|
|
88
|
+
MaxResults?: number;
|
|
89
|
+
}
|
|
90
|
+
export interface ListAliasesOutput {
|
|
91
|
+
Aliases: Alias[] | undefined;
|
|
92
|
+
NextToken?: string;
|
|
93
|
+
}
|
|
94
|
+
export interface UpdateAliasInput {
|
|
95
|
+
AliasName: string | undefined;
|
|
96
|
+
KeyArn?: string;
|
|
97
|
+
}
|
|
98
|
+
export interface UpdateAliasOutput {
|
|
99
|
+
Alias: Alias | undefined;
|
|
100
|
+
}
|
|
76
101
|
export declare const KeyAlgorithm: {
|
|
77
102
|
readonly AES_128: "AES_128";
|
|
78
103
|
readonly AES_192: "AES_192";
|
|
@@ -180,10 +205,6 @@ export interface Key {
|
|
|
180
205
|
export interface CreateKeyOutput {
|
|
181
206
|
Key: Key | undefined;
|
|
182
207
|
}
|
|
183
|
-
export interface DeleteAliasInput {
|
|
184
|
-
AliasName: string | undefined;
|
|
185
|
-
}
|
|
186
|
-
export interface DeleteAliasOutput {}
|
|
187
208
|
export interface DeleteKeyInput {
|
|
188
209
|
KeyIdentifier: string | undefined;
|
|
189
210
|
DeleteKeyInDays?: number;
|
|
@@ -191,6 +212,13 @@ export interface DeleteKeyInput {
|
|
|
191
212
|
export interface DeleteKeyOutput {
|
|
192
213
|
Key: Key | undefined;
|
|
193
214
|
}
|
|
215
|
+
export interface ExportDukptInitialKey {
|
|
216
|
+
KeySerialNumber: string | undefined;
|
|
217
|
+
}
|
|
218
|
+
export interface ExportAttributes {
|
|
219
|
+
ExportDukptInitialKey?: ExportDukptInitialKey;
|
|
220
|
+
KeyCheckValueAlgorithm?: KeyCheckValueAlgorithm;
|
|
221
|
+
}
|
|
194
222
|
export interface ExportTr31KeyBlock {
|
|
195
223
|
WrappingKeyIdentifier: string | undefined;
|
|
196
224
|
}
|
|
@@ -236,6 +264,7 @@ export declare namespace ExportKeyMaterial {
|
|
|
236
264
|
export interface ExportKeyInput {
|
|
237
265
|
KeyMaterial: ExportKeyMaterial | undefined;
|
|
238
266
|
ExportKeyIdentifier: string | undefined;
|
|
267
|
+
ExportAttributes?: ExportAttributes;
|
|
239
268
|
}
|
|
240
269
|
export declare const WrappedKeyMaterialFormat: {
|
|
241
270
|
readonly KEY_CRYPTOGRAM: "KEY_CRYPTOGRAM";
|
|
@@ -248,16 +277,12 @@ export interface WrappedKey {
|
|
|
248
277
|
WrappingKeyArn: string | undefined;
|
|
249
278
|
WrappedKeyMaterialFormat: WrappedKeyMaterialFormat | undefined;
|
|
250
279
|
KeyMaterial: string | undefined;
|
|
280
|
+
KeyCheckValue?: string;
|
|
281
|
+
KeyCheckValueAlgorithm?: KeyCheckValueAlgorithm;
|
|
251
282
|
}
|
|
252
283
|
export interface ExportKeyOutput {
|
|
253
284
|
WrappedKey?: WrappedKey;
|
|
254
285
|
}
|
|
255
|
-
export interface GetAliasInput {
|
|
256
|
-
AliasName: string | undefined;
|
|
257
|
-
}
|
|
258
|
-
export interface GetAliasOutput {
|
|
259
|
-
Alias: Alias | undefined;
|
|
260
|
-
}
|
|
261
286
|
export interface GetKeyInput {
|
|
262
287
|
KeyIdentifier: string | undefined;
|
|
263
288
|
}
|
|
@@ -382,6 +407,11 @@ export interface ImportKeyInput {
|
|
|
382
407
|
export interface ImportKeyOutput {
|
|
383
408
|
Key: Key | undefined;
|
|
384
409
|
}
|
|
410
|
+
export interface ListKeysInput {
|
|
411
|
+
KeyState?: KeyState;
|
|
412
|
+
NextToken?: string;
|
|
413
|
+
MaxResults?: number;
|
|
414
|
+
}
|
|
385
415
|
export interface KeySummary {
|
|
386
416
|
KeyArn: string | undefined;
|
|
387
417
|
KeyState: KeyState | undefined;
|
|
@@ -390,32 +420,10 @@ export interface KeySummary {
|
|
|
390
420
|
Exportable: boolean | undefined;
|
|
391
421
|
Enabled: boolean | undefined;
|
|
392
422
|
}
|
|
393
|
-
export interface ListAliasesInput {
|
|
394
|
-
NextToken?: string;
|
|
395
|
-
MaxResults?: number;
|
|
396
|
-
}
|
|
397
|
-
export interface ListAliasesOutput {
|
|
398
|
-
Aliases: Alias[] | undefined;
|
|
399
|
-
NextToken?: string;
|
|
400
|
-
}
|
|
401
|
-
export interface ListKeysInput {
|
|
402
|
-
KeyState?: KeyState;
|
|
403
|
-
NextToken?: string;
|
|
404
|
-
MaxResults?: number;
|
|
405
|
-
}
|
|
406
423
|
export interface ListKeysOutput {
|
|
407
424
|
Keys: KeySummary[] | undefined;
|
|
408
425
|
NextToken?: string;
|
|
409
426
|
}
|
|
410
|
-
export interface ListTagsForResourceInput {
|
|
411
|
-
ResourceArn: string | undefined;
|
|
412
|
-
NextToken?: string;
|
|
413
|
-
MaxResults?: number;
|
|
414
|
-
}
|
|
415
|
-
export interface ListTagsForResourceOutput {
|
|
416
|
-
Tags: Tag[] | undefined;
|
|
417
|
-
NextToken?: string;
|
|
418
|
-
}
|
|
419
427
|
export interface RestoreKeyInput {
|
|
420
428
|
KeyIdentifier: string | undefined;
|
|
421
429
|
}
|
|
@@ -434,6 +442,15 @@ export interface StopKeyUsageInput {
|
|
|
434
442
|
export interface StopKeyUsageOutput {
|
|
435
443
|
Key: Key | undefined;
|
|
436
444
|
}
|
|
445
|
+
export interface ListTagsForResourceInput {
|
|
446
|
+
ResourceArn: string | undefined;
|
|
447
|
+
NextToken?: string;
|
|
448
|
+
MaxResults?: number;
|
|
449
|
+
}
|
|
450
|
+
export interface ListTagsForResourceOutput {
|
|
451
|
+
Tags: Tag[] | undefined;
|
|
452
|
+
NextToken?: string;
|
|
453
|
+
}
|
|
437
454
|
export interface TagResourceInput {
|
|
438
455
|
ResourceArn: string | undefined;
|
|
439
456
|
Tags: Tag[] | undefined;
|
|
@@ -444,13 +461,6 @@ export interface UntagResourceInput {
|
|
|
444
461
|
TagKeys: string[] | undefined;
|
|
445
462
|
}
|
|
446
463
|
export interface UntagResourceOutput {}
|
|
447
|
-
export interface UpdateAliasInput {
|
|
448
|
-
AliasName: string | undefined;
|
|
449
|
-
KeyArn?: string;
|
|
450
|
-
}
|
|
451
|
-
export interface UpdateAliasOutput {
|
|
452
|
-
Alias: Alias | undefined;
|
|
453
|
-
}
|
|
454
464
|
export declare const ExportTr34KeyBlockFilterSensitiveLog: (
|
|
455
465
|
obj: ExportTr34KeyBlock
|
|
456
466
|
) => any;
|
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-payment-cryptography",
|
|
3
3
|
"description": "AWS SDK for JavaScript Payment Cryptography Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.468.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",
|
|
8
|
-
"build:docs": "typedoc",
|
|
9
8
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
9
|
"build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
|
|
11
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
@@ -21,41 +20,41 @@
|
|
|
21
20
|
"dependencies": {
|
|
22
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-signing": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
33
|
-
"@aws-sdk/types": "3.
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
37
|
-
"@smithy/config-resolver": "^2.0.
|
|
38
|
-
"@smithy/fetch-http-handler": "^2.
|
|
39
|
-
"@smithy/hash-node": "^2.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^2.2.
|
|
43
|
-
"@smithy/middleware-retry": "^2.0.
|
|
44
|
-
"@smithy/middleware-serde": "^2.0.
|
|
45
|
-
"@smithy/middleware-stack": "^2.0.
|
|
46
|
-
"@smithy/node-config-provider": "^2.1.
|
|
47
|
-
"@smithy/node-http-handler": "^2.1
|
|
48
|
-
"@smithy/protocol-http": "^3.0.
|
|
49
|
-
"@smithy/smithy-client": "^2.1.
|
|
50
|
-
"@smithy/types": "^2.
|
|
51
|
-
"@smithy/url-parser": "^2.0.
|
|
23
|
+
"@aws-sdk/client-sts": "3.468.0",
|
|
24
|
+
"@aws-sdk/core": "3.468.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.468.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.468.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.468.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.468.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.468.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.468.0",
|
|
32
|
+
"@aws-sdk/types": "3.468.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.468.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.468.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.468.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.20",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.3.1",
|
|
38
|
+
"@smithy/hash-node": "^2.0.17",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.15",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.17",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.2.2",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.23",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.15",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.9",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.7",
|
|
46
|
+
"@smithy/node-http-handler": "^2.2.1",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.11",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.18",
|
|
49
|
+
"@smithy/types": "^2.7.0",
|
|
50
|
+
"@smithy/url-parser": "^2.0.15",
|
|
52
51
|
"@smithy/util-base64": "^2.0.1",
|
|
53
|
-
"@smithy/util-body-length-browser": "^2.0.
|
|
52
|
+
"@smithy/util-body-length-browser": "^2.0.1",
|
|
54
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
57
|
-
"@smithy/util-endpoints": "^1.0.
|
|
58
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.22",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.28",
|
|
56
|
+
"@smithy/util-endpoints": "^1.0.6",
|
|
57
|
+
"@smithy/util-retry": "^2.0.8",
|
|
59
58
|
"@smithy/util-utf8": "^2.0.2",
|
|
60
59
|
"tslib": "^2.5.0"
|
|
61
60
|
},
|
|
@@ -66,7 +65,6 @@
|
|
|
66
65
|
"concurrently": "7.0.0",
|
|
67
66
|
"downlevel-dts": "0.10.1",
|
|
68
67
|
"rimraf": "3.0.2",
|
|
69
|
-
"typedoc": "0.23.23",
|
|
70
68
|
"typescript": "~4.9.5"
|
|
71
69
|
},
|
|
72
70
|
"engines": {
|