@aws-sdk/client-payment-cryptography-data 3.928.0 → 3.930.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.
Files changed (37) hide show
  1. package/dist-cjs/index.js +1282 -1477
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/PaymentCryptographyDataClient.js +2 -0
  4. package/dist-es/commands/DecryptDataCommand.js +3 -10
  5. package/dist-es/commands/EncryptDataCommand.js +3 -10
  6. package/dist-es/commands/GenerateCardValidationDataCommand.js +3 -10
  7. package/dist-es/commands/GenerateMacCommand.js +3 -10
  8. package/dist-es/commands/GenerateMacEmvPinChangeCommand.js +3 -10
  9. package/dist-es/commands/GeneratePinDataCommand.js +3 -10
  10. package/dist-es/commands/ReEncryptDataCommand.js +3 -10
  11. package/dist-es/commands/TranslateKeyMaterialCommand.js +3 -10
  12. package/dist-es/commands/TranslatePinDataCommand.js +3 -10
  13. package/dist-es/commands/VerifyAuthRequestCryptogramCommand.js +3 -10
  14. package/dist-es/commands/VerifyCardValidationDataCommand.js +3 -10
  15. package/dist-es/commands/VerifyMacCommand.js +3 -10
  16. package/dist-es/commands/VerifyPinDataCommand.js +3 -10
  17. package/dist-es/models/models_0.js +0 -729
  18. package/dist-es/runtimeConfig.shared.js +2 -0
  19. package/dist-es/schemas/schemas_0.js +1238 -0
  20. package/dist-types/PaymentCryptographyDataClient.d.ts +10 -1
  21. package/dist-types/models/models_0.d.ts +68 -305
  22. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  23. package/dist-types/runtimeConfig.d.ts +1 -0
  24. package/dist-types/runtimeConfig.native.d.ts +1 -0
  25. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  26. package/dist-types/schemas/schemas_0.d.ts +141 -0
  27. package/dist-types/ts3.4/PaymentCryptographyDataClient.d.ts +4 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +0 -235
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  33. package/dist-types/ts3.4/schemas/schemas_0.d.ts +147 -0
  34. package/package.json +33 -33
  35. package/dist-es/protocols/Aws_restJson1.js +0 -570
  36. package/dist-types/protocols/Aws_restJson1.d.ts +0 -119
  37. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -161
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
5
5
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
- import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import { DecryptDataCommandInput, DecryptDataCommandOutput } from "./commands/DecryptDataCommand";
11
11
  import { EncryptDataCommandInput, EncryptDataCommandOutput } from "./commands/EncryptDataCommand";
@@ -154,6 +154,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
154
154
  * Optional extensions
155
155
  */
156
156
  extensions?: RuntimeExtension[];
157
+ /**
158
+ * The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
159
+ * may be overridden. A default will always be set by the client.
160
+ * Available options depend on the service's supported protocols and will not be validated by
161
+ * the client.
162
+ * @alpha
163
+ *
164
+ */
165
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
157
166
  /**
158
167
  * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
159
168
  */
@@ -349,6 +349,10 @@ export declare namespace CardGenerationAttributes {
349
349
  DynamicCardVerificationValue?: never;
350
350
  $unknown: [string, any];
351
351
  }
352
+ /**
353
+ * @deprecated unused in schema-serde mode.
354
+ *
355
+ */
352
356
  interface Visitor<T> {
353
357
  AmexCardSecurityCodeVersion1: (value: AmexCardSecurityCodeVersion1) => T;
354
358
  AmexCardSecurityCodeVersion2: (value: AmexCardSecurityCodeVersion2) => T;
@@ -359,7 +363,6 @@ export declare namespace CardGenerationAttributes {
359
363
  DynamicCardVerificationValue: (value: DynamicCardVerificationValue) => T;
360
364
  _: (name: string, value: any) => T;
361
365
  }
362
- const visit: <T>(value: CardGenerationAttributes, visitor: Visitor<T>) => T;
363
366
  }
364
367
  /**
365
368
  * <p>Parameters that are required to generate or verify dCVC (Dynamic Card Verification Code).</p>
@@ -525,6 +528,10 @@ export declare namespace CardVerificationAttributes {
525
528
  DiscoverDynamicCardVerificationCode?: never;
526
529
  $unknown: [string, any];
527
530
  }
531
+ /**
532
+ * @deprecated unused in schema-serde mode.
533
+ *
534
+ */
528
535
  interface Visitor<T> {
529
536
  AmexCardSecurityCodeVersion1: (value: AmexCardSecurityCodeVersion1) => T;
530
537
  AmexCardSecurityCodeVersion2: (value: AmexCardSecurityCodeVersion2) => T;
@@ -536,7 +543,6 @@ export declare namespace CardVerificationAttributes {
536
543
  DiscoverDynamicCardVerificationCode: (value: DiscoverDynamicCardVerificationCode) => T;
537
544
  _: (name: string, value: any) => T;
538
545
  }
539
- const visit: <T>(value: CardVerificationAttributes, visitor: Visitor<T>) => T;
540
546
  }
541
547
  /**
542
548
  * <p>Parameters that are required for ARPC response generation using method1 after ARQC verification is successful.</p>
@@ -600,12 +606,15 @@ export declare namespace CryptogramAuthResponse {
600
606
  ArpcMethod2?: never;
601
607
  $unknown: [string, any];
602
608
  }
609
+ /**
610
+ * @deprecated unused in schema-serde mode.
611
+ *
612
+ */
603
613
  interface Visitor<T> {
604
614
  ArpcMethod1: (value: CryptogramVerificationArpcMethod1) => T;
605
615
  ArpcMethod2: (value: CryptogramVerificationArpcMethod2) => T;
606
616
  _: (name: string, value: any) => T;
607
617
  }
608
- const visit: <T>(value: CryptogramAuthResponse, visitor: Visitor<T>) => T;
609
618
  }
610
619
  /**
611
620
  * @public
@@ -840,6 +849,10 @@ export declare namespace EncryptionDecryptionAttributes {
840
849
  Emv?: never;
841
850
  $unknown: [string, any];
842
851
  }
852
+ /**
853
+ * @deprecated unused in schema-serde mode.
854
+ *
855
+ */
843
856
  interface Visitor<T> {
844
857
  Symmetric: (value: SymmetricEncryptionAttributes) => T;
845
858
  Asymmetric: (value: AsymmetricEncryptionAttributes) => T;
@@ -847,7 +860,6 @@ export declare namespace EncryptionDecryptionAttributes {
847
860
  Emv: (value: EmvEncryptionAttributes) => T;
848
861
  _: (name: string, value: any) => T;
849
862
  }
850
- const visit: <T>(value: EncryptionDecryptionAttributes, visitor: Visitor<T>) => T;
851
863
  }
852
864
  /**
853
865
  * @public
@@ -978,12 +990,15 @@ export declare namespace WrappedKeyMaterial {
978
990
  DiffieHellmanSymmetricKey?: never;
979
991
  $unknown: [string, any];
980
992
  }
993
+ /**
994
+ * @deprecated unused in schema-serde mode.
995
+ *
996
+ */
981
997
  interface Visitor<T> {
982
998
  Tr31KeyBlock: (value: string) => T;
983
999
  DiffieHellmanSymmetricKey: (value: EcdhDerivationAttributes) => T;
984
1000
  _: (name: string, value: any) => T;
985
1001
  }
986
- const visit: <T>(value: WrappedKeyMaterial, visitor: Visitor<T>) => T;
987
1002
  }
988
1003
  /**
989
1004
  * <p>Parameter information of a WrappedKeyBlock for encryption key exchange.</p>
@@ -1355,6 +1370,10 @@ export declare namespace DerivationMethodAttributes {
1355
1370
  Mastercard?: never;
1356
1371
  $unknown: [string, any];
1357
1372
  }
1373
+ /**
1374
+ * @deprecated unused in schema-serde mode.
1375
+ *
1376
+ */
1358
1377
  interface Visitor<T> {
1359
1378
  EmvCommon: (value: EmvCommonAttributes) => T;
1360
1379
  Amex: (value: AmexAttributes) => T;
@@ -1363,7 +1382,6 @@ export declare namespace DerivationMethodAttributes {
1363
1382
  Mastercard: (value: MasterCardAttributes) => T;
1364
1383
  _: (name: string, value: any) => T;
1365
1384
  }
1366
- const visit: <T>(value: DerivationMethodAttributes, visitor: Visitor<T>) => T;
1367
1385
  }
1368
1386
  /**
1369
1387
  * <p>The shared information used when deriving a key using ECDH.</p>
@@ -1389,11 +1407,14 @@ export declare namespace DiffieHellmanDerivationData {
1389
1407
  SharedInformation?: never;
1390
1408
  $unknown: [string, any];
1391
1409
  }
1410
+ /**
1411
+ * @deprecated unused in schema-serde mode.
1412
+ *
1413
+ */
1392
1414
  interface Visitor<T> {
1393
1415
  SharedInformation: (value: string) => T;
1394
1416
  _: (name: string, value: any) => T;
1395
1417
  }
1396
- const visit: <T>(value: DiffieHellmanDerivationData, visitor: Visitor<T>) => T;
1397
1418
  }
1398
1419
  /**
1399
1420
  * <p>Parameters that are used for Derived Unique Key Per Transaction (DUKPT) derivation algorithm.</p>
@@ -1611,12 +1632,15 @@ export declare namespace SessionKeyDerivationValue {
1611
1632
  ApplicationTransactionCounter?: never;
1612
1633
  $unknown: [string, any];
1613
1634
  }
1635
+ /**
1636
+ * @deprecated unused in schema-serde mode.
1637
+ *
1638
+ */
1614
1639
  interface Visitor<T> {
1615
1640
  ApplicationCryptogram: (value: string) => T;
1616
1641
  ApplicationTransactionCounter: (value: string) => T;
1617
1642
  _: (name: string, value: any) => T;
1618
1643
  }
1619
- const visit: <T>(value: SessionKeyDerivationValue, visitor: Visitor<T>) => T;
1620
1644
  }
1621
1645
  /**
1622
1646
  * <p>Parameters that are required for EMV MAC generation and verification.</p>
@@ -1729,6 +1753,10 @@ export declare namespace MacAttributes {
1729
1753
  DukptCmac?: never;
1730
1754
  $unknown: [string, any];
1731
1755
  }
1756
+ /**
1757
+ * @deprecated unused in schema-serde mode.
1758
+ *
1759
+ */
1732
1760
  interface Visitor<T> {
1733
1761
  Algorithm: (value: MacAlgorithm) => T;
1734
1762
  EmvMac: (value: MacAlgorithmEmv) => T;
@@ -1737,7 +1765,6 @@ export declare namespace MacAttributes {
1737
1765
  DukptCmac: (value: MacAlgorithmDukpt) => T;
1738
1766
  _: (name: string, value: any) => T;
1739
1767
  }
1740
- const visit: <T>(value: MacAttributes, visitor: Visitor<T>) => T;
1741
1768
  }
1742
1769
  /**
1743
1770
  * @public
@@ -2133,6 +2160,10 @@ export declare namespace PinGenerationAttributes {
2133
2160
  Ibm3624PinFromOffset?: never;
2134
2161
  $unknown: [string, any];
2135
2162
  }
2163
+ /**
2164
+ * @deprecated unused in schema-serde mode.
2165
+ *
2166
+ */
2136
2167
  interface Visitor<T> {
2137
2168
  VisaPin: (value: VisaPin) => T;
2138
2169
  VisaPinVerificationValue: (value: VisaPinVerificationValue) => T;
@@ -2142,7 +2173,6 @@ export declare namespace PinGenerationAttributes {
2142
2173
  Ibm3624PinFromOffset: (value: Ibm3624PinFromOffset) => T;
2143
2174
  _: (name: string, value: any) => T;
2144
2175
  }
2145
- const visit: <T>(value: PinGenerationAttributes, visitor: Visitor<T>) => T;
2146
2176
  }
2147
2177
  /**
2148
2178
  * @public
@@ -2233,12 +2263,15 @@ export declare namespace PinData {
2233
2263
  VerificationValue?: never;
2234
2264
  $unknown: [string, any];
2235
2265
  }
2266
+ /**
2267
+ * @deprecated unused in schema-serde mode.
2268
+ *
2269
+ */
2236
2270
  interface Visitor<T> {
2237
2271
  PinOffset: (value: string) => T;
2238
2272
  VerificationValue: (value: string) => T;
2239
2273
  _: (name: string, value: any) => T;
2240
2274
  }
2241
- const visit: <T>(value: PinData, visitor: Visitor<T>) => T;
2242
2275
  }
2243
2276
  /**
2244
2277
  * @public
@@ -2371,11 +2404,14 @@ export declare namespace IncomingKeyMaterial {
2371
2404
  DiffieHellmanTr31KeyBlock?: never;
2372
2405
  $unknown: [string, any];
2373
2406
  }
2407
+ /**
2408
+ * @deprecated unused in schema-serde mode.
2409
+ *
2410
+ */
2374
2411
  interface Visitor<T> {
2375
2412
  DiffieHellmanTr31KeyBlock: (value: IncomingDiffieHellmanTr31KeyBlock) => T;
2376
2413
  _: (name: string, value: any) => T;
2377
2414
  }
2378
- const visit: <T>(value: IncomingKeyMaterial, visitor: Visitor<T>) => T;
2379
2415
  }
2380
2416
  /**
2381
2417
  * <p>Parameter information of the TR31WrappedKeyBlock containing the transaction key wrapped using a KEK.</p>
@@ -2412,11 +2448,14 @@ export declare namespace OutgoingKeyMaterial {
2412
2448
  Tr31KeyBlock?: never;
2413
2449
  $unknown: [string, any];
2414
2450
  }
2451
+ /**
2452
+ * @deprecated unused in schema-serde mode.
2453
+ *
2454
+ */
2415
2455
  interface Visitor<T> {
2416
2456
  Tr31KeyBlock: (value: OutgoingTr31KeyBlock) => T;
2417
2457
  _: (name: string, value: any) => T;
2418
2458
  }
2419
- const visit: <T>(value: OutgoingKeyMaterial, visitor: Visitor<T>) => T;
2420
2459
  }
2421
2460
  /**
2422
2461
  * <p>Parameters that are required to perform reencryption operation.</p>
@@ -2453,12 +2492,15 @@ export declare namespace ReEncryptionAttributes {
2453
2492
  Dukpt?: never;
2454
2493
  $unknown: [string, any];
2455
2494
  }
2495
+ /**
2496
+ * @deprecated unused in schema-serde mode.
2497
+ *
2498
+ */
2456
2499
  interface Visitor<T> {
2457
2500
  Symmetric: (value: SymmetricEncryptionAttributes) => T;
2458
2501
  Dukpt: (value: DukptEncryptionAttributes) => T;
2459
2502
  _: (name: string, value: any) => T;
2460
2503
  }
2461
- const visit: <T>(value: ReEncryptionAttributes, visitor: Visitor<T>) => T;
2462
2504
  }
2463
2505
  /**
2464
2506
  * @public
@@ -2664,6 +2706,10 @@ export declare namespace TranslationIsoFormats {
2664
2706
  IsoFormat4?: never;
2665
2707
  $unknown: [string, any];
2666
2708
  }
2709
+ /**
2710
+ * @deprecated unused in schema-serde mode.
2711
+ *
2712
+ */
2667
2713
  interface Visitor<T> {
2668
2714
  IsoFormat0: (value: TranslationPinDataIsoFormat034) => T;
2669
2715
  IsoFormat1: (value: TranslationPinDataIsoFormat1) => T;
@@ -2671,7 +2717,6 @@ export declare namespace TranslationIsoFormats {
2671
2717
  IsoFormat4: (value: TranslationPinDataIsoFormat034) => T;
2672
2718
  _: (name: string, value: any) => T;
2673
2719
  }
2674
- const visit: <T>(value: TranslationIsoFormats, visitor: Visitor<T>) => T;
2675
2720
  }
2676
2721
  /**
2677
2722
  * @public
@@ -2955,6 +3000,10 @@ export declare namespace SessionKeyDerivation {
2955
3000
  Visa?: never;
2956
3001
  $unknown: [string, any];
2957
3002
  }
3003
+ /**
3004
+ * @deprecated unused in schema-serde mode.
3005
+ *
3006
+ */
2958
3007
  interface Visitor<T> {
2959
3008
  EmvCommon: (value: SessionKeyEmvCommon) => T;
2960
3009
  Mastercard: (value: SessionKeyMastercard) => T;
@@ -2963,7 +3012,6 @@ export declare namespace SessionKeyDerivation {
2963
3012
  Visa: (value: SessionKeyVisa) => T;
2964
3013
  _: (name: string, value: any) => T;
2965
3014
  }
2966
- const visit: <T>(value: SessionKeyDerivation, visitor: Visitor<T>) => T;
2967
3015
  }
2968
3016
  /**
2969
3017
  * @public
@@ -3156,12 +3204,15 @@ export declare namespace PinVerificationAttributes {
3156
3204
  Ibm3624Pin?: never;
3157
3205
  $unknown: [string, any];
3158
3206
  }
3207
+ /**
3208
+ * @deprecated unused in schema-serde mode.
3209
+ *
3210
+ */
3159
3211
  interface Visitor<T> {
3160
3212
  VisaPin: (value: VisaPinVerification) => T;
3161
3213
  Ibm3624Pin: (value: Ibm3624PinVerification) => T;
3162
3214
  _: (name: string, value: any) => T;
3163
3215
  }
3164
- const visit: <T>(value: PinVerificationAttributes, visitor: Visitor<T>) => T;
3165
3216
  }
3166
3217
  /**
3167
3218
  * @public
@@ -3238,291 +3289,3 @@ export interface VerifyPinDataOutput {
3238
3289
  */
3239
3290
  EncryptionKeyCheckValue: string | undefined;
3240
3291
  }
3241
- /**
3242
- * @internal
3243
- */
3244
- export declare const CurrentPinAttributesFilterSensitiveLog: (obj: CurrentPinAttributes) => any;
3245
- /**
3246
- * @internal
3247
- */
3248
- export declare const AmexAttributesFilterSensitiveLog: (obj: AmexAttributes) => any;
3249
- /**
3250
- * @internal
3251
- */
3252
- export declare const AmexCardSecurityCodeVersion1FilterSensitiveLog: (obj: AmexCardSecurityCodeVersion1) => any;
3253
- /**
3254
- * @internal
3255
- */
3256
- export declare const AmexCardSecurityCodeVersion2FilterSensitiveLog: (obj: AmexCardSecurityCodeVersion2) => any;
3257
- /**
3258
- * @internal
3259
- */
3260
- export declare const CardVerificationValue1FilterSensitiveLog: (obj: CardVerificationValue1) => any;
3261
- /**
3262
- * @internal
3263
- */
3264
- export declare const CardVerificationValue2FilterSensitiveLog: (obj: CardVerificationValue2) => any;
3265
- /**
3266
- * @internal
3267
- */
3268
- export declare const DynamicCardVerificationCodeFilterSensitiveLog: (obj: DynamicCardVerificationCode) => any;
3269
- /**
3270
- * @internal
3271
- */
3272
- export declare const DynamicCardVerificationValueFilterSensitiveLog: (obj: DynamicCardVerificationValue) => any;
3273
- /**
3274
- * @internal
3275
- */
3276
- export declare const CardGenerationAttributesFilterSensitiveLog: (obj: CardGenerationAttributes) => any;
3277
- /**
3278
- * @internal
3279
- */
3280
- export declare const DiscoverDynamicCardVerificationCodeFilterSensitiveLog: (obj: DiscoverDynamicCardVerificationCode) => any;
3281
- /**
3282
- * @internal
3283
- */
3284
- export declare const CardVerificationAttributesFilterSensitiveLog: (obj: CardVerificationAttributes) => any;
3285
- /**
3286
- * @internal
3287
- */
3288
- export declare const CryptogramVerificationArpcMethod2FilterSensitiveLog: (obj: CryptogramVerificationArpcMethod2) => any;
3289
- /**
3290
- * @internal
3291
- */
3292
- export declare const CryptogramAuthResponseFilterSensitiveLog: (obj: CryptogramAuthResponse) => any;
3293
- /**
3294
- * @internal
3295
- */
3296
- export declare const DukptEncryptionAttributesFilterSensitiveLog: (obj: DukptEncryptionAttributes) => any;
3297
- /**
3298
- * @internal
3299
- */
3300
- export declare const EmvEncryptionAttributesFilterSensitiveLog: (obj: EmvEncryptionAttributes) => any;
3301
- /**
3302
- * @internal
3303
- */
3304
- export declare const SymmetricEncryptionAttributesFilterSensitiveLog: (obj: SymmetricEncryptionAttributes) => any;
3305
- /**
3306
- * @internal
3307
- */
3308
- export declare const EncryptionDecryptionAttributesFilterSensitiveLog: (obj: EncryptionDecryptionAttributes) => any;
3309
- /**
3310
- * @internal
3311
- */
3312
- export declare const WrappedKeyMaterialFilterSensitiveLog: (obj: WrappedKeyMaterial) => any;
3313
- /**
3314
- * @internal
3315
- */
3316
- export declare const WrappedKeyFilterSensitiveLog: (obj: WrappedKey) => any;
3317
- /**
3318
- * @internal
3319
- */
3320
- export declare const DecryptDataInputFilterSensitiveLog: (obj: DecryptDataInput) => any;
3321
- /**
3322
- * @internal
3323
- */
3324
- export declare const DecryptDataOutputFilterSensitiveLog: (obj: DecryptDataOutput) => any;
3325
- /**
3326
- * @internal
3327
- */
3328
- export declare const Emv2000AttributesFilterSensitiveLog: (obj: Emv2000Attributes) => any;
3329
- /**
3330
- * @internal
3331
- */
3332
- export declare const EmvCommonAttributesFilterSensitiveLog: (obj: EmvCommonAttributes) => any;
3333
- /**
3334
- * @internal
3335
- */
3336
- export declare const MasterCardAttributesFilterSensitiveLog: (obj: MasterCardAttributes) => any;
3337
- /**
3338
- * @internal
3339
- */
3340
- export declare const VisaAttributesFilterSensitiveLog: (obj: VisaAttributes) => any;
3341
- /**
3342
- * @internal
3343
- */
3344
- export declare const DerivationMethodAttributesFilterSensitiveLog: (obj: DerivationMethodAttributes) => any;
3345
- /**
3346
- * @internal
3347
- */
3348
- export declare const EncryptDataInputFilterSensitiveLog: (obj: EncryptDataInput) => any;
3349
- /**
3350
- * @internal
3351
- */
3352
- export declare const EncryptDataOutputFilterSensitiveLog: (obj: EncryptDataOutput) => any;
3353
- /**
3354
- * @internal
3355
- */
3356
- export declare const GenerateCardValidationDataInputFilterSensitiveLog: (obj: GenerateCardValidationDataInput) => any;
3357
- /**
3358
- * @internal
3359
- */
3360
- export declare const GenerateCardValidationDataOutputFilterSensitiveLog: (obj: GenerateCardValidationDataOutput) => any;
3361
- /**
3362
- * @internal
3363
- */
3364
- export declare const SessionKeyDerivationValueFilterSensitiveLog: (obj: SessionKeyDerivationValue) => any;
3365
- /**
3366
- * @internal
3367
- */
3368
- export declare const MacAlgorithmEmvFilterSensitiveLog: (obj: MacAlgorithmEmv) => any;
3369
- /**
3370
- * @internal
3371
- */
3372
- export declare const MacAttributesFilterSensitiveLog: (obj: MacAttributes) => any;
3373
- /**
3374
- * @internal
3375
- */
3376
- export declare const GenerateMacInputFilterSensitiveLog: (obj: GenerateMacInput) => any;
3377
- /**
3378
- * @internal
3379
- */
3380
- export declare const GenerateMacOutputFilterSensitiveLog: (obj: GenerateMacOutput) => any;
3381
- /**
3382
- * @internal
3383
- */
3384
- export declare const GenerateMacEmvPinChangeInputFilterSensitiveLog: (obj: GenerateMacEmvPinChangeInput) => any;
3385
- /**
3386
- * @internal
3387
- */
3388
- export declare const GenerateMacEmvPinChangeOutputFilterSensitiveLog: (obj: GenerateMacEmvPinChangeOutput) => any;
3389
- /**
3390
- * @internal
3391
- */
3392
- export declare const Ibm3624NaturalPinFilterSensitiveLog: (obj: Ibm3624NaturalPin) => any;
3393
- /**
3394
- * @internal
3395
- */
3396
- export declare const Ibm3624PinFromOffsetFilterSensitiveLog: (obj: Ibm3624PinFromOffset) => any;
3397
- /**
3398
- * @internal
3399
- */
3400
- export declare const Ibm3624PinOffsetFilterSensitiveLog: (obj: Ibm3624PinOffset) => any;
3401
- /**
3402
- * @internal
3403
- */
3404
- export declare const Ibm3624RandomPinFilterSensitiveLog: (obj: Ibm3624RandomPin) => any;
3405
- /**
3406
- * @internal
3407
- */
3408
- export declare const VisaPinVerificationValueFilterSensitiveLog: (obj: VisaPinVerificationValue) => any;
3409
- /**
3410
- * @internal
3411
- */
3412
- export declare const PinGenerationAttributesFilterSensitiveLog: (obj: PinGenerationAttributes) => any;
3413
- /**
3414
- * @internal
3415
- */
3416
- export declare const GeneratePinDataInputFilterSensitiveLog: (obj: GeneratePinDataInput) => any;
3417
- /**
3418
- * @internal
3419
- */
3420
- export declare const PinDataFilterSensitiveLog: (obj: PinData) => any;
3421
- /**
3422
- * @internal
3423
- */
3424
- export declare const GeneratePinDataOutputFilterSensitiveLog: (obj: GeneratePinDataOutput) => any;
3425
- /**
3426
- * @internal
3427
- */
3428
- export declare const Ibm3624PinVerificationFilterSensitiveLog: (obj: Ibm3624PinVerification) => any;
3429
- /**
3430
- * @internal
3431
- */
3432
- export declare const IncomingDiffieHellmanTr31KeyBlockFilterSensitiveLog: (obj: IncomingDiffieHellmanTr31KeyBlock) => any;
3433
- /**
3434
- * @internal
3435
- */
3436
- export declare const IncomingKeyMaterialFilterSensitiveLog: (obj: IncomingKeyMaterial) => any;
3437
- /**
3438
- * @internal
3439
- */
3440
- export declare const ReEncryptionAttributesFilterSensitiveLog: (obj: ReEncryptionAttributes) => any;
3441
- /**
3442
- * @internal
3443
- */
3444
- export declare const ReEncryptDataInputFilterSensitiveLog: (obj: ReEncryptDataInput) => any;
3445
- /**
3446
- * @internal
3447
- */
3448
- export declare const ReEncryptDataOutputFilterSensitiveLog: (obj: ReEncryptDataOutput) => any;
3449
- /**
3450
- * @internal
3451
- */
3452
- export declare const TranslateKeyMaterialInputFilterSensitiveLog: (obj: TranslateKeyMaterialInput) => any;
3453
- /**
3454
- * @internal
3455
- */
3456
- export declare const WrappedWorkingKeyFilterSensitiveLog: (obj: WrappedWorkingKey) => any;
3457
- /**
3458
- * @internal
3459
- */
3460
- export declare const TranslateKeyMaterialOutputFilterSensitiveLog: (obj: TranslateKeyMaterialOutput) => any;
3461
- /**
3462
- * @internal
3463
- */
3464
- export declare const TranslationPinDataIsoFormat034FilterSensitiveLog: (obj: TranslationPinDataIsoFormat034) => any;
3465
- /**
3466
- * @internal
3467
- */
3468
- export declare const TranslationIsoFormatsFilterSensitiveLog: (obj: TranslationIsoFormats) => any;
3469
- /**
3470
- * @internal
3471
- */
3472
- export declare const TranslatePinDataInputFilterSensitiveLog: (obj: TranslatePinDataInput) => any;
3473
- /**
3474
- * @internal
3475
- */
3476
- export declare const TranslatePinDataOutputFilterSensitiveLog: (obj: TranslatePinDataOutput) => any;
3477
- /**
3478
- * @internal
3479
- */
3480
- export declare const SessionKeyAmexFilterSensitiveLog: (obj: SessionKeyAmex) => any;
3481
- /**
3482
- * @internal
3483
- */
3484
- export declare const SessionKeyEmv2000FilterSensitiveLog: (obj: SessionKeyEmv2000) => any;
3485
- /**
3486
- * @internal
3487
- */
3488
- export declare const SessionKeyEmvCommonFilterSensitiveLog: (obj: SessionKeyEmvCommon) => any;
3489
- /**
3490
- * @internal
3491
- */
3492
- export declare const SessionKeyMastercardFilterSensitiveLog: (obj: SessionKeyMastercard) => any;
3493
- /**
3494
- * @internal
3495
- */
3496
- export declare const SessionKeyVisaFilterSensitiveLog: (obj: SessionKeyVisa) => any;
3497
- /**
3498
- * @internal
3499
- */
3500
- export declare const SessionKeyDerivationFilterSensitiveLog: (obj: SessionKeyDerivation) => any;
3501
- /**
3502
- * @internal
3503
- */
3504
- export declare const VerifyAuthRequestCryptogramInputFilterSensitiveLog: (obj: VerifyAuthRequestCryptogramInput) => any;
3505
- /**
3506
- * @internal
3507
- */
3508
- export declare const VerifyAuthRequestCryptogramOutputFilterSensitiveLog: (obj: VerifyAuthRequestCryptogramOutput) => any;
3509
- /**
3510
- * @internal
3511
- */
3512
- export declare const VerifyCardValidationDataInputFilterSensitiveLog: (obj: VerifyCardValidationDataInput) => any;
3513
- /**
3514
- * @internal
3515
- */
3516
- export declare const VerifyMacInputFilterSensitiveLog: (obj: VerifyMacInput) => any;
3517
- /**
3518
- * @internal
3519
- */
3520
- export declare const VisaPinVerificationFilterSensitiveLog: (obj: VisaPinVerification) => any;
3521
- /**
3522
- * @internal
3523
- */
3524
- export declare const PinVerificationAttributesFilterSensitiveLog: (obj: PinVerificationAttributes) => any;
3525
- /**
3526
- * @internal
3527
- */
3528
- export declare const VerifyPinDataInputFilterSensitiveLog: (obj: VerifyPinDataInput) => any;
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: PaymentCryptographyDataClientCon
29
29
  profile?: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
32
33
  customUserAgent?: string | import("@smithy/types").UserAgent;
33
34
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
35
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: PaymentCryptographyDataClientCon
31
31
  profile?: string;
32
32
  logger: import("@smithy/types").Logger;
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
34
35
  customUserAgent?: string | import("@smithy/types").UserAgent;
35
36
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
37
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: PaymentCryptographyDataClientCon
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
29
29
  extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
30
31
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
32
  customUserAgent?: string | import("@smithy/types").UserAgent;
32
33
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: PaymentCryptographyDataClientCon
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PaymentCryptographyDataHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
17
18
  serviceId: string;
18
19
  urlParser: import("@smithy/types").UrlParser;
19
20
  utf8Decoder: import("@smithy/types").Decoder;