@aws-sdk/client-payment-cryptography 3.600.0 → 3.608.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
CHANGED
|
@@ -47,6 +47,7 @@ __export(src_exports, {
|
|
|
47
47
|
ImportKeyInputFilterSensitiveLog: () => ImportKeyInputFilterSensitiveLog,
|
|
48
48
|
ImportKeyMaterial: () => ImportKeyMaterial,
|
|
49
49
|
ImportKeyMaterialFilterSensitiveLog: () => ImportKeyMaterialFilterSensitiveLog,
|
|
50
|
+
ImportTr31KeyBlockFilterSensitiveLog: () => ImportTr31KeyBlockFilterSensitiveLog,
|
|
50
51
|
ImportTr34KeyBlockFilterSensitiveLog: () => ImportTr34KeyBlockFilterSensitiveLog,
|
|
51
52
|
InternalServerException: () => InternalServerException,
|
|
52
53
|
KeyAlgorithm: () => KeyAlgorithm,
|
|
@@ -571,6 +572,10 @@ var RootCertificatePublicKeyFilterSensitiveLog = /* @__PURE__ */ __name((obj) =>
|
|
|
571
572
|
...obj,
|
|
572
573
|
...obj.PublicKeyCertificate && { PublicKeyCertificate: import_smithy_client.SENSITIVE_STRING }
|
|
573
574
|
}), "RootCertificatePublicKeyFilterSensitiveLog");
|
|
575
|
+
var ImportTr31KeyBlockFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
576
|
+
...obj,
|
|
577
|
+
...obj.WrappedKeyBlock && { WrappedKeyBlock: import_smithy_client.SENSITIVE_STRING }
|
|
578
|
+
}), "ImportTr31KeyBlockFilterSensitiveLog");
|
|
574
579
|
var ImportTr34KeyBlockFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
575
580
|
...obj,
|
|
576
581
|
...obj.SigningKeyCertificate && { SigningKeyCertificate: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -587,7 +592,7 @@ var ImportKeyMaterialFilterSensitiveLog = /* @__PURE__ */ __name((obj) => {
|
|
|
587
592
|
TrustedCertificatePublicKey: TrustedCertificatePublicKeyFilterSensitiveLog(obj.TrustedCertificatePublicKey)
|
|
588
593
|
};
|
|
589
594
|
if (obj.Tr31KeyBlock !== void 0)
|
|
590
|
-
return { Tr31KeyBlock: obj.Tr31KeyBlock };
|
|
595
|
+
return { Tr31KeyBlock: ImportTr31KeyBlockFilterSensitiveLog(obj.Tr31KeyBlock) };
|
|
591
596
|
if (obj.Tr34KeyBlock !== void 0)
|
|
592
597
|
return { Tr34KeyBlock: ImportTr34KeyBlockFilterSensitiveLog(obj.Tr34KeyBlock) };
|
|
593
598
|
if (obj.KeyCryptogram !== void 0)
|
|
@@ -1617,6 +1622,7 @@ var paginateListTagsForResource = (0, import_core.createPaginator)(PaymentCrypto
|
|
|
1617
1622
|
GetParametersForImportOutputFilterSensitiveLog,
|
|
1618
1623
|
GetPublicKeyCertificateOutputFilterSensitiveLog,
|
|
1619
1624
|
RootCertificatePublicKeyFilterSensitiveLog,
|
|
1625
|
+
ImportTr31KeyBlockFilterSensitiveLog,
|
|
1620
1626
|
ImportTr34KeyBlockFilterSensitiveLog,
|
|
1621
1627
|
TrustedCertificatePublicKeyFilterSensitiveLog,
|
|
1622
1628
|
ImportKeyMaterialFilterSensitiveLog,
|
|
@@ -269,6 +269,10 @@ export const RootCertificatePublicKeyFilterSensitiveLog = (obj) => ({
|
|
|
269
269
|
...obj,
|
|
270
270
|
...(obj.PublicKeyCertificate && { PublicKeyCertificate: SENSITIVE_STRING }),
|
|
271
271
|
});
|
|
272
|
+
export const ImportTr31KeyBlockFilterSensitiveLog = (obj) => ({
|
|
273
|
+
...obj,
|
|
274
|
+
...(obj.WrappedKeyBlock && { WrappedKeyBlock: SENSITIVE_STRING }),
|
|
275
|
+
});
|
|
272
276
|
export const ImportTr34KeyBlockFilterSensitiveLog = (obj) => ({
|
|
273
277
|
...obj,
|
|
274
278
|
...(obj.SigningKeyCertificate && { SigningKeyCertificate: SENSITIVE_STRING }),
|
|
@@ -285,7 +289,7 @@ export const ImportKeyMaterialFilterSensitiveLog = (obj) => {
|
|
|
285
289
|
TrustedCertificatePublicKey: TrustedCertificatePublicKeyFilterSensitiveLog(obj.TrustedCertificatePublicKey),
|
|
286
290
|
};
|
|
287
291
|
if (obj.Tr31KeyBlock !== undefined)
|
|
288
|
-
return { Tr31KeyBlock: obj.Tr31KeyBlock };
|
|
292
|
+
return { Tr31KeyBlock: ImportTr31KeyBlockFilterSensitiveLog(obj.Tr31KeyBlock) };
|
|
289
293
|
if (obj.Tr34KeyBlock !== undefined)
|
|
290
294
|
return { Tr34KeyBlock: ImportTr34KeyBlockFilterSensitiveLog(obj.Tr34KeyBlock) };
|
|
291
295
|
if (obj.KeyCryptogram !== undefined)
|
|
@@ -1554,6 +1554,10 @@ export declare const GetPublicKeyCertificateOutputFilterSensitiveLog: (obj: GetP
|
|
|
1554
1554
|
* @internal
|
|
1555
1555
|
*/
|
|
1556
1556
|
export declare const RootCertificatePublicKeyFilterSensitiveLog: (obj: RootCertificatePublicKey) => any;
|
|
1557
|
+
/**
|
|
1558
|
+
* @internal
|
|
1559
|
+
*/
|
|
1560
|
+
export declare const ImportTr31KeyBlockFilterSensitiveLog: (obj: ImportTr31KeyBlock) => any;
|
|
1557
1561
|
/**
|
|
1558
1562
|
* @internal
|
|
1559
1563
|
*/
|
|
@@ -556,6 +556,9 @@ export declare const GetPublicKeyCertificateOutputFilterSensitiveLog: (
|
|
|
556
556
|
export declare const RootCertificatePublicKeyFilterSensitiveLog: (
|
|
557
557
|
obj: RootCertificatePublicKey
|
|
558
558
|
) => any;
|
|
559
|
+
export declare const ImportTr31KeyBlockFilterSensitiveLog: (
|
|
560
|
+
obj: ImportTr31KeyBlock
|
|
561
|
+
) => any;
|
|
559
562
|
export declare const ImportTr34KeyBlockFilterSensitiveLog: (
|
|
560
563
|
obj: ImportTr34KeyBlock
|
|
561
564
|
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.608.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-payment-cryptography",
|
|
@@ -20,8 +20,8 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.606.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.606.0",
|
|
25
25
|
"@aws-sdk/core": "3.598.0",
|
|
26
26
|
"@aws-sdk/credential-provider-node": "3.600.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.598.0",
|