@aws-sdk/client-payment-cryptography-data 3.948.0 → 3.953.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 (33) hide show
  1. package/dist-cjs/index.js +372 -256
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/DecryptDataCommand.js +2 -2
  4. package/dist-es/commands/EncryptDataCommand.js +2 -2
  5. package/dist-es/commands/GenerateCardValidationDataCommand.js +2 -2
  6. package/dist-es/commands/GenerateMacCommand.js +2 -2
  7. package/dist-es/commands/GenerateMacEmvPinChangeCommand.js +2 -2
  8. package/dist-es/commands/GeneratePinDataCommand.js +2 -2
  9. package/dist-es/commands/ReEncryptDataCommand.js +2 -2
  10. package/dist-es/commands/TranslateKeyMaterialCommand.js +2 -2
  11. package/dist-es/commands/TranslatePinDataCommand.js +2 -2
  12. package/dist-es/commands/VerifyAuthRequestCryptogramCommand.js +2 -2
  13. package/dist-es/commands/VerifyCardValidationDataCommand.js +2 -2
  14. package/dist-es/commands/VerifyMacCommand.js +2 -2
  15. package/dist-es/commands/VerifyPinDataCommand.js +2 -2
  16. package/dist-es/index.js +1 -0
  17. package/dist-es/runtimeConfig.shared.js +6 -1
  18. package/dist-es/schemas/schemas_0.js +260 -253
  19. package/dist-types/PaymentCryptographyDataClient.d.ts +1 -10
  20. package/dist-types/index.d.ts +1 -0
  21. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  22. package/dist-types/runtimeConfig.d.ts +6 -2
  23. package/dist-types/runtimeConfig.native.d.ts +6 -2
  24. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  25. package/dist-types/schemas/schemas_0.d.ts +110 -140
  26. package/dist-types/ts3.4/PaymentCryptographyDataClient.d.ts +0 -4
  27. package/dist-types/ts3.4/index.d.ts +1 -0
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  31. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  32. package/dist-types/ts3.4/schemas/schemas_0.d.ts +109 -141
  33. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class PaymentCryptographyDataClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let PaymentCryptographyDataServiceException$1 = class PaymentCryptographyDataServiceException extends smithyClient.ServiceException {
113
+ class PaymentCryptographyDataServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, PaymentCryptographyDataServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends PaymentCryptographyDataServiceException$1 {
120
+ class AccessDeniedException extends PaymentCryptographyDataServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  Message;
@@ -130,8 +130,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends PaymentCryptog
130
130
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
131
131
  this.Message = opts.Message;
132
132
  }
133
- };
134
- let InternalServerException$1 = class InternalServerException extends PaymentCryptographyDataServiceException$1 {
133
+ }
134
+ class InternalServerException extends PaymentCryptographyDataServiceException {
135
135
  name = "InternalServerException";
136
136
  $fault = "server";
137
137
  Message;
@@ -144,8 +144,8 @@ let InternalServerException$1 = class InternalServerException extends PaymentCry
144
144
  Object.setPrototypeOf(this, InternalServerException.prototype);
145
145
  this.Message = opts.Message;
146
146
  }
147
- };
148
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends PaymentCryptographyDataServiceException$1 {
147
+ }
148
+ class ResourceNotFoundException extends PaymentCryptographyDataServiceException {
149
149
  name = "ResourceNotFoundException";
150
150
  $fault = "client";
151
151
  ResourceId;
@@ -158,8 +158,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Paymen
158
158
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
159
159
  this.ResourceId = opts.ResourceId;
160
160
  }
161
- };
162
- let ThrottlingException$1 = class ThrottlingException extends PaymentCryptographyDataServiceException$1 {
161
+ }
162
+ class ThrottlingException extends PaymentCryptographyDataServiceException {
163
163
  name = "ThrottlingException";
164
164
  $fault = "client";
165
165
  Message;
@@ -172,8 +172,8 @@ let ThrottlingException$1 = class ThrottlingException extends PaymentCryptograph
172
172
  Object.setPrototypeOf(this, ThrottlingException.prototype);
173
173
  this.Message = opts.Message;
174
174
  }
175
- };
176
- let ValidationException$1 = class ValidationException extends PaymentCryptographyDataServiceException$1 {
175
+ }
176
+ class ValidationException extends PaymentCryptographyDataServiceException {
177
177
  name = "ValidationException";
178
178
  $fault = "client";
179
179
  fieldList;
@@ -186,8 +186,8 @@ let ValidationException$1 = class ValidationException extends PaymentCryptograph
186
186
  Object.setPrototypeOf(this, ValidationException.prototype);
187
187
  this.fieldList = opts.fieldList;
188
188
  }
189
- };
190
- let VerificationFailedException$1 = class VerificationFailedException extends PaymentCryptographyDataServiceException$1 {
189
+ }
190
+ class VerificationFailedException extends PaymentCryptographyDataServiceException {
191
191
  name = "VerificationFailedException";
192
192
  $fault = "client";
193
193
  Reason;
@@ -202,7 +202,7 @@ let VerificationFailedException$1 = class VerificationFailedException extends Pa
202
202
  this.Reason = opts.Reason;
203
203
  this.Message = opts.Message;
204
204
  }
205
- };
205
+ }
206
206
 
207
207
  const _A = "Amex";
208
208
  const _AA = "AmexAttributes";
@@ -510,17 +510,17 @@ var TrackDataType = [0, n0, _TDT, 8, 0];
510
510
  var TransactionDataType = [0, n0, _TDTr, 8, 0];
511
511
  var ValidationDataType = [0, n0, _VDT, 8, 0];
512
512
  var VerificationValueType = [0, n0, _VVT, 8, 0];
513
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
514
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
515
- var AmexAttributes = [
513
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_M], [0]];
514
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
515
+ var AmexAttributes$ = [
516
516
  3,
517
517
  n0,
518
518
  _AA,
519
519
  0,
520
520
  [_MKDM, _PAN, _PSN, _ATC, _ARKI, _CPA],
521
- [0, [() => PrimaryAccountNumberType, 0], 0, 0, 0, [() => CurrentPinAttributes, 0]],
521
+ [0, [() => PrimaryAccountNumberType, 0], 0, 0, 0, [() => CurrentPinAttributes$, 0]],
522
522
  ];
523
- var AmexCardSecurityCodeVersion1 = [
523
+ var AmexCardSecurityCodeVersion1$ = [
524
524
  3,
525
525
  n0,
526
526
  _ACSCV,
@@ -528,7 +528,7 @@ var AmexCardSecurityCodeVersion1 = [
528
528
  [_CED],
529
529
  [[() => CardExpiryDateType, 0]],
530
530
  ];
531
- var AmexCardSecurityCodeVersion2 = [
531
+ var AmexCardSecurityCodeVersion2$ = [
532
532
  3,
533
533
  n0,
534
534
  _ACSCVm,
@@ -539,9 +539,9 @@ var AmexCardSecurityCodeVersion2 = [
539
539
  [() => ServiceCodeType, 0],
540
540
  ],
541
541
  ];
542
- var AsymmetricEncryptionAttributes = [3, n0, _AEA, 0, [_PT], [0]];
543
- var CardHolderVerificationValue = [3, n0, _CHVV, 0, [_UN, _PSN, _ATC], [0, 0, 0]];
544
- var CardVerificationValue1 = [
542
+ var AsymmetricEncryptionAttributes$ = [3, n0, _AEA, 0, [_PT], [0]];
543
+ var CardHolderVerificationValue$ = [3, n0, _CHVV, 0, [_UN, _PSN, _ATC], [0, 0, 0]];
544
+ var CardVerificationValue1$ = [
545
545
  3,
546
546
  n0,
547
547
  _CVV,
@@ -552,9 +552,9 @@ var CardVerificationValue1 = [
552
552
  [() => ServiceCodeType, 0],
553
553
  ],
554
554
  ];
555
- var CardVerificationValue2 = [3, n0, _CVVa, 0, [_CED], [[() => CardExpiryDateType, 0]]];
556
- var CryptogramVerificationArpcMethod1 = [3, n0, _CVAM, 0, [_ARC], [0]];
557
- var CryptogramVerificationArpcMethod2 = [
555
+ var CardVerificationValue2$ = [3, n0, _CVVa, 0, [_CED], [[() => CardExpiryDateType, 0]]];
556
+ var CryptogramVerificationArpcMethod1$ = [3, n0, _CVAM, 0, [_ARC], [0]];
557
+ var CryptogramVerificationArpcMethod2$ = [
558
558
  3,
559
559
  n0,
560
560
  _CVAMr,
@@ -562,7 +562,7 @@ var CryptogramVerificationArpcMethod2 = [
562
562
  [_CSU, _PAD],
563
563
  [0, [() => ProprietaryAuthenticationDataType, 0]],
564
564
  ];
565
- var CurrentPinAttributes = [
565
+ var CurrentPinAttributes$ = [
566
566
  3,
567
567
  n0,
568
568
  _CPA,
@@ -570,7 +570,7 @@ var CurrentPinAttributes = [
570
570
  [_CPPI, _CEPB],
571
571
  [0, [() => PinBlockLengthEquals16, 0]],
572
572
  ];
573
- var DecryptDataInput = [
573
+ var DecryptDataInput$ = [
574
574
  3,
575
575
  n0,
576
576
  _DDI,
@@ -579,11 +579,11 @@ var DecryptDataInput = [
579
579
  [
580
580
  [0, 1],
581
581
  [() => CipherTextType, 0],
582
- [() => EncryptionDecryptionAttributes, 0],
583
- [() => WrappedKey, 0],
582
+ [() => EncryptionDecryptionAttributes$, 0],
583
+ [() => WrappedKey$, 0],
584
584
  ],
585
585
  ];
586
- var DecryptDataOutput = [
586
+ var DecryptDataOutput$ = [
587
587
  3,
588
588
  n0,
589
589
  _DDO,
@@ -591,7 +591,7 @@ var DecryptDataOutput = [
591
591
  [_KA, _KCV, _PTl],
592
592
  [0, 0, [() => PlainTextOutputType, 0]],
593
593
  ];
594
- var DiscoverDynamicCardVerificationCode = [
594
+ var DiscoverDynamicCardVerificationCode$ = [
595
595
  3,
596
596
  n0,
597
597
  _DDCVC,
@@ -599,9 +599,9 @@ var DiscoverDynamicCardVerificationCode = [
599
599
  [_CED, _UN, _ATC],
600
600
  [[() => CardExpiryDateType, 0], 0, 0],
601
601
  ];
602
- var DukptAttributes = [3, n0, _DAu, 0, [_KSN, _DDT], [0, 0]];
603
- var DukptDerivationAttributes = [3, n0, _DDA, 0, [_KSN, _DKDT, _DKV], [0, 0, 0]];
604
- var DukptEncryptionAttributes = [
602
+ var DukptAttributes$ = [3, n0, _DAu, 0, [_KSN, _DDT], [0, 0]];
603
+ var DukptDerivationAttributes$ = [3, n0, _DDA, 0, [_KSN, _DKDT, _DKV], [0, 0, 0]];
604
+ var DukptEncryptionAttributes$ = [
605
605
  3,
606
606
  n0,
607
607
  _DEA,
@@ -609,7 +609,7 @@ var DukptEncryptionAttributes = [
609
609
  [_KSN, _Mo, _DKDT, _DKV, _IV],
610
610
  [0, 0, 0, 0, [() => InitializationVectorType, 0]],
611
611
  ];
612
- var DynamicCardVerificationCode = [
612
+ var DynamicCardVerificationCode$ = [
613
613
  3,
614
614
  n0,
615
615
  _DCVC,
@@ -617,7 +617,7 @@ var DynamicCardVerificationCode = [
617
617
  [_UN, _PSN, _ATC, _TD],
618
618
  [0, 0, 0, [() => TrackDataType, 0]],
619
619
  ];
620
- var DynamicCardVerificationValue = [
620
+ var DynamicCardVerificationValue$ = [
621
621
  3,
622
622
  n0,
623
623
  _DCVV,
@@ -625,7 +625,7 @@ var DynamicCardVerificationValue = [
625
625
  [_PSN, _CED, _SC, _ATC],
626
626
  [0, [() => CardExpiryDateType, 0], [() => ServiceCodeType, 0], 0],
627
627
  ];
628
- var EcdhDerivationAttributes = [
628
+ var EcdhDerivationAttributes$ = [
629
629
  3,
630
630
  n0,
631
631
  _EDA,
@@ -633,7 +633,7 @@ var EcdhDerivationAttributes = [
633
633
  [_CAPKI, _PKC, _KAe, _KDF, _KDHA, _SI],
634
634
  [0, 0, 0, 0, 0, 0],
635
635
  ];
636
- var Emv2000Attributes = [
636
+ var Emv2000Attributes$ = [
637
637
  3,
638
638
  n0,
639
639
  _EA,
@@ -641,7 +641,7 @@ var Emv2000Attributes = [
641
641
  [_MKDM, _PAN, _PSN, _ATC],
642
642
  [0, [() => PrimaryAccountNumberType, 0], 0, 0],
643
643
  ];
644
- var EmvCommonAttributes = [
644
+ var EmvCommonAttributes$ = [
645
645
  3,
646
646
  n0,
647
647
  _ECA,
@@ -649,7 +649,7 @@ var EmvCommonAttributes = [
649
649
  [_MKDM, _PAN, _PSN, _AC, _Mo, _PBPT, _PBLP],
650
650
  [0, [() => PrimaryAccountNumberType, 0], 0, [() => ApplicationCryptogramType, 0], 0, 0, 0],
651
651
  ];
652
- var EmvEncryptionAttributes = [
652
+ var EmvEncryptionAttributes$ = [
653
653
  3,
654
654
  n0,
655
655
  _EEA,
@@ -664,7 +664,7 @@ var EmvEncryptionAttributes = [
664
664
  [() => InitializationVectorType, 0],
665
665
  ],
666
666
  ];
667
- var EncryptDataInput = [
667
+ var EncryptDataInput$ = [
668
668
  3,
669
669
  n0,
670
670
  _EDI,
@@ -673,11 +673,11 @@ var EncryptDataInput = [
673
673
  [
674
674
  [0, 1],
675
675
  [() => PlainTextType, 0],
676
- [() => EncryptionDecryptionAttributes, 0],
677
- [() => WrappedKey, 0],
676
+ [() => EncryptionDecryptionAttributes$, 0],
677
+ [() => WrappedKey$, 0],
678
678
  ],
679
679
  ];
680
- var EncryptDataOutput = [
680
+ var EncryptDataOutput$ = [
681
681
  3,
682
682
  n0,
683
683
  _EDO,
@@ -685,15 +685,15 @@ var EncryptDataOutput = [
685
685
  [_KA, _KCV, _CT],
686
686
  [0, 0, [() => CipherTextType, 0]],
687
687
  ];
688
- var GenerateCardValidationDataInput = [
688
+ var GenerateCardValidationDataInput$ = [
689
689
  3,
690
690
  n0,
691
691
  _GCVDI,
692
692
  0,
693
693
  [_KI, _PAN, _GA, _VDL],
694
- [0, [() => PrimaryAccountNumberType, 0], [() => CardGenerationAttributes, 0], 1],
694
+ [0, [() => PrimaryAccountNumberType, 0], [() => CardGenerationAttributes$, 0], 1],
695
695
  ];
696
- var GenerateCardValidationDataOutput = [
696
+ var GenerateCardValidationDataOutput$ = [
697
697
  3,
698
698
  n0,
699
699
  _GCVDO,
@@ -701,7 +701,7 @@ var GenerateCardValidationDataOutput = [
701
701
  [_KA, _KCV, _VD],
702
702
  [0, 0, [() => ValidationDataType, 0]],
703
703
  ];
704
- var GenerateMacEmvPinChangeInput = [
704
+ var GenerateMacEmvPinChangeInput$ = [
705
705
  3,
706
706
  n0,
707
707
  _GMEPCI,
@@ -714,10 +714,10 @@ var GenerateMacEmvPinChangeInput = [
714
714
  0,
715
715
  0,
716
716
  [() => CommandMessageDataType, 0],
717
- [() => DerivationMethodAttributes, 0],
717
+ [() => DerivationMethodAttributes$, 0],
718
718
  ],
719
719
  ];
720
- var GenerateMacEmvPinChangeOutput = [
720
+ var GenerateMacEmvPinChangeOutput$ = [
721
721
  3,
722
722
  n0,
723
723
  _GMEPCO,
@@ -732,18 +732,18 @@ var GenerateMacEmvPinChangeOutput = [
732
732
  0,
733
733
  0,
734
734
  0,
735
- () => VisaAmexDerivationOutputs,
735
+ () => VisaAmexDerivationOutputs$,
736
736
  ],
737
737
  ];
738
- var GenerateMacInput = [
738
+ var GenerateMacInput$ = [
739
739
  3,
740
740
  n0,
741
741
  _GMI,
742
742
  0,
743
743
  [_KI, _MD, _GA, _ML],
744
- [0, [() => MessageDataType, 0], [() => MacAttributes, 0], 1],
744
+ [0, [() => MessageDataType, 0], [() => MacAttributes$, 0], 1],
745
745
  ];
746
- var GenerateMacOutput = [
746
+ var GenerateMacOutput$ = [
747
747
  3,
748
748
  n0,
749
749
  _GMO,
@@ -751,23 +751,23 @@ var GenerateMacOutput = [
751
751
  [_KA, _KCV, _Ma],
752
752
  [0, 0, [() => MacOutputType, 0]],
753
753
  ];
754
- var GeneratePinDataInput = [
754
+ var GeneratePinDataInput$ = [
755
755
  3,
756
756
  n0,
757
757
  _GPDI,
758
758
  0,
759
759
  [_GKI, _EKI, _GA, _PDL, _PAN, _PBF, _EWK],
760
- [0, 0, [() => PinGenerationAttributes, 0], 1, [() => PrimaryAccountNumberType, 0], 0, [() => WrappedKey, 0]],
760
+ [0, 0, [() => PinGenerationAttributes$, 0], 1, [() => PrimaryAccountNumberType, 0], 0, [() => WrappedKey$, 0]],
761
761
  ];
762
- var GeneratePinDataOutput = [
762
+ var GeneratePinDataOutput$ = [
763
763
  3,
764
764
  n0,
765
765
  _GPDO,
766
766
  0,
767
767
  [_GKA, _GKCV, _EKA, _EKCV, _EPB, _PD],
768
- [0, 0, 0, 0, [() => EncryptedPinBlockType, 0], [() => PinData, 0]],
768
+ [0, 0, 0, 0, [() => EncryptedPinBlockType, 0], [() => PinData$, 0]],
769
769
  ];
770
- var Ibm3624NaturalPin = [
770
+ var Ibm3624NaturalPin$ = [
771
771
  3,
772
772
  n0,
773
773
  _INP,
@@ -775,7 +775,7 @@ var Ibm3624NaturalPin = [
775
775
  [_DT, _PVDPC, _PVD],
776
776
  [[() => DecimalizationTableType, 0], 0, [() => PinValidationDataType, 0]],
777
777
  ];
778
- var Ibm3624PinFromOffset = [
778
+ var Ibm3624PinFromOffset$ = [
779
779
  3,
780
780
  n0,
781
781
  _IPFO,
@@ -783,7 +783,7 @@ var Ibm3624PinFromOffset = [
783
783
  [_DT, _PVDPC, _PVD, _PO],
784
784
  [[() => DecimalizationTableType, 0], 0, [() => PinValidationDataType, 0], [() => PinOffsetType, 0]],
785
785
  ];
786
- var Ibm3624PinOffset = [
786
+ var Ibm3624PinOffset$ = [
787
787
  3,
788
788
  n0,
789
789
  _IPO,
@@ -791,7 +791,7 @@ var Ibm3624PinOffset = [
791
791
  [_EPB, _DT, _PVDPC, _PVD],
792
792
  [[() => EncryptedPinBlockType, 0], [() => DecimalizationTableType, 0], 0, [() => PinValidationDataType, 0]],
793
793
  ];
794
- var Ibm3624PinVerification = [
794
+ var Ibm3624PinVerification$ = [
795
795
  3,
796
796
  n0,
797
797
  _IPV,
@@ -799,7 +799,7 @@ var Ibm3624PinVerification = [
799
799
  [_DT, _PVDPC, _PVD, _PO],
800
800
  [[() => DecimalizationTableType, 0], 0, [() => PinValidationDataType, 0], [() => PinOffsetType, 0]],
801
801
  ];
802
- var Ibm3624RandomPin = [
802
+ var Ibm3624RandomPin$ = [
803
803
  3,
804
804
  n0,
805
805
  _IRP,
@@ -807,26 +807,26 @@ var Ibm3624RandomPin = [
807
807
  [_DT, _PVDPC, _PVD],
808
808
  [[() => DecimalizationTableType, 0], 0, [() => PinValidationDataType, 0]],
809
809
  ];
810
- var IncomingDiffieHellmanTr31KeyBlock = [
810
+ var IncomingDiffieHellmanTr31KeyBlock$ = [
811
811
  3,
812
812
  n0,
813
813
  _IDHTKB,
814
814
  0,
815
815
  [_PKI, _CAPKI, _PKC, _DKA, _KDF, _KDHA, _DD, _WKB],
816
- [0, 0, 0, 0, 0, 0, () => DiffieHellmanDerivationData, [() => Tr31WrappedKeyBlock, 0]],
816
+ [0, 0, 0, 0, 0, 0, () => DiffieHellmanDerivationData$, [() => Tr31WrappedKeyBlock, 0]],
817
817
  ];
818
- var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
819
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
820
- var MacAlgorithmDukpt = [3, n0, _MAD, 0, [_KSN, _DKV, _DDT], [0, 0, 0]];
821
- var MacAlgorithmEmv = [
818
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
819
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
820
+ var MacAlgorithmDukpt$ = [3, n0, _MAD, 0, [_KSN, _DKV, _DDT], [0, 0, 0]];
821
+ var MacAlgorithmEmv$ = [
822
822
  3,
823
823
  n0,
824
824
  _MAE,
825
825
  0,
826
826
  [_MKDM, _PAN, _PSN, _SKDM, _SKDV],
827
- [0, [() => PrimaryAccountNumberType, 0], 0, 0, [() => SessionKeyDerivationValue, 0]],
827
+ [0, [() => PrimaryAccountNumberType, 0], 0, 0, [() => SessionKeyDerivationValue$, 0]],
828
828
  ];
829
- var MasterCardAttributes = [
829
+ var MasterCardAttributes$ = [
830
830
  3,
831
831
  n0,
832
832
  _MCA,
@@ -834,8 +834,8 @@ var MasterCardAttributes = [
834
834
  [_MKDM, _PAN, _PSN, _AC],
835
835
  [0, [() => PrimaryAccountNumberType, 0], 0, [() => ApplicationCryptogramType, 0]],
836
836
  ];
837
- var OutgoingTr31KeyBlock = [3, n0, _OTKB, 0, [_WKI], [0]];
838
- var ReEncryptDataInput = [
837
+ var OutgoingTr31KeyBlock$ = [3, n0, _OTKB, 0, [_WKI], [0]];
838
+ var ReEncryptDataInput$ = [
839
839
  3,
840
840
  n0,
841
841
  _REDI,
@@ -845,13 +845,13 @@ var ReEncryptDataInput = [
845
845
  [0, 1],
846
846
  0,
847
847
  [() => CipherTextType, 0],
848
- [() => ReEncryptionAttributes, 0],
849
- [() => ReEncryptionAttributes, 0],
850
- [() => WrappedKey, 0],
851
- [() => WrappedKey, 0],
848
+ [() => ReEncryptionAttributes$, 0],
849
+ [() => ReEncryptionAttributes$, 0],
850
+ [() => WrappedKey$, 0],
851
+ [() => WrappedKey$, 0],
852
852
  ],
853
853
  ];
854
- var ReEncryptDataOutput = [
854
+ var ReEncryptDataOutput$ = [
855
855
  3,
856
856
  n0,
857
857
  _REDO,
@@ -859,9 +859,9 @@ var ReEncryptDataOutput = [
859
859
  [_KA, _KCV, _CT],
860
860
  [0, 0, [() => CipherTextType, 0]],
861
861
  ];
862
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_RI], [0]];
863
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
864
- var SessionKeyAmex = [
862
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_RI], [0]];
863
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
864
+ var SessionKeyAmex$ = [
865
865
  3,
866
866
  n0,
867
867
  _SKA,
@@ -869,7 +869,7 @@ var SessionKeyAmex = [
869
869
  [_PAN, _PSN],
870
870
  [[() => PrimaryAccountNumberType, 0], 0],
871
871
  ];
872
- var SessionKeyEmv2000 = [
872
+ var SessionKeyEmv2000$ = [
873
873
  3,
874
874
  n0,
875
875
  _SKE,
@@ -877,7 +877,7 @@ var SessionKeyEmv2000 = [
877
877
  [_PAN, _PSN, _ATC],
878
878
  [[() => PrimaryAccountNumberType, 0], 0, 0],
879
879
  ];
880
- var SessionKeyEmvCommon = [
880
+ var SessionKeyEmvCommon$ = [
881
881
  3,
882
882
  n0,
883
883
  _SKEC,
@@ -885,7 +885,7 @@ var SessionKeyEmvCommon = [
885
885
  [_PAN, _PSN, _ATC],
886
886
  [[() => PrimaryAccountNumberType, 0], 0, 0],
887
887
  ];
888
- var SessionKeyMastercard = [
888
+ var SessionKeyMastercard$ = [
889
889
  3,
890
890
  n0,
891
891
  _SKM,
@@ -893,7 +893,7 @@ var SessionKeyMastercard = [
893
893
  [_PAN, _PSN, _ATC, _UN],
894
894
  [[() => PrimaryAccountNumberType, 0], 0, 0, 0],
895
895
  ];
896
- var SessionKeyVisa = [
896
+ var SessionKeyVisa$ = [
897
897
  3,
898
898
  n0,
899
899
  _SKV,
@@ -901,7 +901,7 @@ var SessionKeyVisa = [
901
901
  [_PAN, _PSN],
902
902
  [[() => PrimaryAccountNumberType, 0], 0],
903
903
  ];
904
- var SymmetricEncryptionAttributes = [
904
+ var SymmetricEncryptionAttributes$ = [
905
905
  3,
906
906
  n0,
907
907
  _SEA,
@@ -909,18 +909,25 @@ var SymmetricEncryptionAttributes = [
909
909
  [_Mo, _IV, _PT],
910
910
  [0, [() => InitializationVectorType, 0], 0],
911
911
  ];
912
- var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
913
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
914
- var TranslateKeyMaterialInput = [
912
+ var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
913
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
914
+ var TranslateKeyMaterialInput$ = [
915
915
  3,
916
916
  n0,
917
917
  _TKMI,
918
918
  0,
919
919
  [_IKM, _OKM, _KCVA],
920
- [[() => IncomingKeyMaterial, 0], () => OutgoingKeyMaterial, 0],
920
+ [[() => IncomingKeyMaterial$, 0], () => OutgoingKeyMaterial$, 0],
921
+ ];
922
+ var TranslateKeyMaterialOutput$ = [
923
+ 3,
924
+ n0,
925
+ _TKMO,
926
+ 0,
927
+ [_WK],
928
+ [[() => WrappedWorkingKey$, 0]],
921
929
  ];
922
- var TranslateKeyMaterialOutput = [3, n0, _TKMO, 0, [_WK], [[() => WrappedWorkingKey, 0]]];
923
- var TranslatePinDataInput = [
930
+ var TranslatePinDataInput$ = [
924
931
  3,
925
932
  n0,
926
933
  _TPDI,
@@ -929,16 +936,16 @@ var TranslatePinDataInput = [
929
936
  [
930
937
  0,
931
938
  0,
932
- [() => TranslationIsoFormats, 0],
933
- [() => TranslationIsoFormats, 0],
939
+ [() => TranslationIsoFormats$, 0],
940
+ [() => TranslationIsoFormats$, 0],
934
941
  [() => HexEvenLengthBetween16And32, 0],
935
- () => DukptDerivationAttributes,
936
- () => DukptDerivationAttributes,
937
- [() => WrappedKey, 0],
938
- [() => WrappedKey, 0],
942
+ () => DukptDerivationAttributes$,
943
+ () => DukptDerivationAttributes$,
944
+ [() => WrappedKey$, 0],
945
+ [() => WrappedKey$, 0],
939
946
  ],
940
947
  ];
941
- var TranslatePinDataOutput = [
948
+ var TranslatePinDataOutput$ = [
942
949
  3,
943
950
  n0,
944
951
  _TPDO,
@@ -946,7 +953,7 @@ var TranslatePinDataOutput = [
946
953
  [_PB, _KA, _KCV],
947
954
  [[() => EncryptedPinBlockType, 0], 0, 0],
948
955
  ];
949
- var TranslationPinDataIsoFormat034 = [
956
+ var TranslationPinDataIsoFormat034$ = [
950
957
  3,
951
958
  n0,
952
959
  _TPDIF,
@@ -954,8 +961,8 @@ var TranslationPinDataIsoFormat034 = [
954
961
  [_PAN],
955
962
  [[() => PrimaryAccountNumberType, 0]],
956
963
  ];
957
- var TranslationPinDataIsoFormat1 = [3, n0, _TPDIFr, 0, [], []];
958
- var ValidationException = [
964
+ var TranslationPinDataIsoFormat1$ = [3, n0, _TPDIFr, 0, [], []];
965
+ var ValidationException$ = [
959
966
  -3,
960
967
  n0,
961
968
  _VE,
@@ -963,11 +970,11 @@ var ValidationException = [
963
970
  [_m, _fL],
964
971
  [0, () => ValidationExceptionFieldList],
965
972
  ];
966
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
967
- var ValidationExceptionField = [3, n0, _VEF, 0, [_p, _m], [0, 0]];
968
- var VerificationFailedException = [-3, n0, _VFE, { [_e]: _c, [_hE]: 400 }, [_R, _M], [0, 0]];
969
- schema.TypeRegistry.for(n0).registerError(VerificationFailedException, VerificationFailedException$1);
970
- var VerifyAuthRequestCryptogramInput = [
973
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
974
+ var ValidationExceptionField$ = [3, n0, _VEF, 0, [_p, _m], [0, 0]];
975
+ var VerificationFailedException$ = [-3, n0, _VFE, { [_e]: _c, [_hE]: 400 }, [_R, _M], [0, 0]];
976
+ schema.TypeRegistry.for(n0).registerError(VerificationFailedException$, VerificationFailedException);
977
+ var VerifyAuthRequestCryptogramInput$ = [
971
978
  3,
972
979
  n0,
973
980
  _VARCI,
@@ -978,11 +985,11 @@ var VerifyAuthRequestCryptogramInput = [
978
985
  [() => TransactionDataType, 0],
979
986
  [() => AuthRequestCryptogramType, 0],
980
987
  0,
981
- [() => SessionKeyDerivation, 0],
982
- [() => CryptogramAuthResponse, 0],
988
+ [() => SessionKeyDerivation$, 0],
989
+ [() => CryptogramAuthResponse$, 0],
983
990
  ],
984
991
  ];
985
- var VerifyAuthRequestCryptogramOutput = [
992
+ var VerifyAuthRequestCryptogramOutput$ = [
986
993
  3,
987
994
  n0,
988
995
  _VARCO,
@@ -990,25 +997,25 @@ var VerifyAuthRequestCryptogramOutput = [
990
997
  [_KA, _KCV, _ARV],
991
998
  [0, 0, [() => AuthResponseValueType, 0]],
992
999
  ];
993
- var VerifyCardValidationDataInput = [
1000
+ var VerifyCardValidationDataInput$ = [
994
1001
  3,
995
1002
  n0,
996
1003
  _VCVDI,
997
1004
  0,
998
1005
  [_KI, _PAN, _VA, _VD],
999
- [0, [() => PrimaryAccountNumberType, 0], [() => CardVerificationAttributes, 0], [() => ValidationDataType, 0]],
1006
+ [0, [() => PrimaryAccountNumberType, 0], [() => CardVerificationAttributes$, 0], [() => ValidationDataType, 0]],
1000
1007
  ];
1001
- var VerifyCardValidationDataOutput = [3, n0, _VCVDO, 0, [_KA, _KCV], [0, 0]];
1002
- var VerifyMacInput = [
1008
+ var VerifyCardValidationDataOutput$ = [3, n0, _VCVDO, 0, [_KA, _KCV], [0, 0]];
1009
+ var VerifyMacInput$ = [
1003
1010
  3,
1004
1011
  n0,
1005
1012
  _VMI,
1006
1013
  0,
1007
1014
  [_KI, _MD, _Ma, _VA, _ML],
1008
- [0, [() => MessageDataType, 0], [() => MacType, 0], [() => MacAttributes, 0], 1],
1015
+ [0, [() => MessageDataType, 0], [() => MacType, 0], [() => MacAttributes$, 0], 1],
1009
1016
  ];
1010
- var VerifyMacOutput = [3, n0, _VMO, 0, [_KA, _KCV], [0, 0]];
1011
- var VerifyPinDataInput = [
1017
+ var VerifyMacOutput$ = [3, n0, _VMO, 0, [_KA, _KCV], [0, 0]];
1018
+ var VerifyPinDataInput$ = [
1012
1019
  3,
1013
1020
  n0,
1014
1021
  _VPDI,
@@ -1017,17 +1024,17 @@ var VerifyPinDataInput = [
1017
1024
  [
1018
1025
  0,
1019
1026
  0,
1020
- [() => PinVerificationAttributes, 0],
1027
+ [() => PinVerificationAttributes$, 0],
1021
1028
  [() => EncryptedPinBlockType, 0],
1022
1029
  [() => PrimaryAccountNumberType, 0],
1023
1030
  0,
1024
1031
  1,
1025
- () => DukptAttributes,
1026
- [() => WrappedKey, 0],
1032
+ () => DukptAttributes$,
1033
+ [() => WrappedKey$, 0],
1027
1034
  ],
1028
1035
  ];
1029
- var VerifyPinDataOutput = [3, n0, _VPDO, 0, [_VKA, _VKCV, _EKA, _EKCV], [0, 0, 0, 0]];
1030
- var VisaAmexDerivationOutputs = [
1036
+ var VerifyPinDataOutput$ = [3, n0, _VPDO, 0, [_VKA, _VKCV, _EKA, _EKCV], [0, 0, 0, 0]];
1037
+ var VisaAmexDerivationOutputs$ = [
1031
1038
  3,
1032
1039
  n0,
1033
1040
  _VADO,
@@ -1035,16 +1042,16 @@ var VisaAmexDerivationOutputs = [
1035
1042
  [_ARKA, _ARKCV, _CPPA, _CPPKCV],
1036
1043
  [0, 0, 0, 0],
1037
1044
  ];
1038
- var VisaAttributes = [
1045
+ var VisaAttributes$ = [
1039
1046
  3,
1040
1047
  n0,
1041
1048
  _VAi,
1042
1049
  0,
1043
1050
  [_MKDM, _PAN, _PSN, _ATC, _ARKI, _CPA],
1044
- [0, [() => PrimaryAccountNumberType, 0], 0, 0, 0, [() => CurrentPinAttributes, 0]],
1051
+ [0, [() => PrimaryAccountNumberType, 0], 0, 0, 0, [() => CurrentPinAttributes$, 0]],
1045
1052
  ];
1046
- var VisaPin = [3, n0, _VP, 0, [_PVKI], [1]];
1047
- var VisaPinVerification = [
1053
+ var VisaPin$ = [3, n0, _VP, 0, [_PVKI], [1]];
1054
+ var VisaPinVerification$ = [
1048
1055
  3,
1049
1056
  n0,
1050
1057
  _VPV,
@@ -1052,7 +1059,7 @@ var VisaPinVerification = [
1052
1059
  [_PVKI, _VV],
1053
1060
  [1, [() => VerificationValueType, 0]],
1054
1061
  ];
1055
- var VisaPinVerificationValue = [
1062
+ var VisaPinVerificationValue$ = [
1056
1063
  3,
1057
1064
  n0,
1058
1065
  _VPVV,
@@ -1060,8 +1067,8 @@ var VisaPinVerificationValue = [
1060
1067
  [_EPB, _PVKI],
1061
1068
  [[() => EncryptedPinBlockType, 0], 1],
1062
1069
  ];
1063
- var WrappedKey = [3, n0, _WK, 0, [_WKM, _KCVA], [[() => WrappedKeyMaterial, 0], 0]];
1064
- var WrappedWorkingKey = [
1070
+ var WrappedKey$ = [3, n0, _WK, 0, [_WKM, _KCVA], [[() => WrappedKeyMaterial$, 0], 0]];
1071
+ var WrappedWorkingKey$ = [
1065
1072
  3,
1066
1073
  n0,
1067
1074
  _WWK,
@@ -1069,7 +1076,7 @@ var WrappedWorkingKey = [
1069
1076
  [_WKM, _KCV, _WKMF],
1070
1077
  [[() => KeyMaterial, 0], 0, 0],
1071
1078
  ];
1072
- var PaymentCryptographyDataServiceException = [
1079
+ var PaymentCryptographyDataServiceException$ = [
1073
1080
  -3,
1074
1081
  _sm,
1075
1082
  "PaymentCryptographyDataServiceException",
@@ -1077,95 +1084,95 @@ var PaymentCryptographyDataServiceException = [
1077
1084
  [],
1078
1085
  [],
1079
1086
  ];
1080
- schema.TypeRegistry.for(_sm).registerError(PaymentCryptographyDataServiceException, PaymentCryptographyDataServiceException$1);
1081
- var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
1082
- var CardGenerationAttributes = [
1087
+ schema.TypeRegistry.for(_sm).registerError(PaymentCryptographyDataServiceException$, PaymentCryptographyDataServiceException);
1088
+ var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
1089
+ var CardGenerationAttributes$ = [
1083
1090
  3,
1084
1091
  n0,
1085
1092
  _CGA,
1086
1093
  0,
1087
1094
  [_ACSCV, _ACSCVm, _CVV, _CVVa, _CHVV, _DCVC, _DCVV],
1088
1095
  [
1089
- [() => AmexCardSecurityCodeVersion1, 0],
1090
- [() => AmexCardSecurityCodeVersion2, 0],
1091
- [() => CardVerificationValue1, 0],
1092
- [() => CardVerificationValue2, 0],
1093
- () => CardHolderVerificationValue,
1094
- [() => DynamicCardVerificationCode, 0],
1095
- [() => DynamicCardVerificationValue, 0],
1096
+ [() => AmexCardSecurityCodeVersion1$, 0],
1097
+ [() => AmexCardSecurityCodeVersion2$, 0],
1098
+ [() => CardVerificationValue1$, 0],
1099
+ [() => CardVerificationValue2$, 0],
1100
+ () => CardHolderVerificationValue$,
1101
+ [() => DynamicCardVerificationCode$, 0],
1102
+ [() => DynamicCardVerificationValue$, 0],
1096
1103
  ],
1097
1104
  ];
1098
- var CardVerificationAttributes = [
1105
+ var CardVerificationAttributes$ = [
1099
1106
  3,
1100
1107
  n0,
1101
1108
  _CVA,
1102
1109
  0,
1103
1110
  [_ACSCV, _ACSCVm, _CVV, _CVVa, _CHVV, _DCVC, _DCVV, _DDCVC],
1104
1111
  [
1105
- [() => AmexCardSecurityCodeVersion1, 0],
1106
- [() => AmexCardSecurityCodeVersion2, 0],
1107
- [() => CardVerificationValue1, 0],
1108
- [() => CardVerificationValue2, 0],
1109
- () => CardHolderVerificationValue,
1110
- [() => DynamicCardVerificationCode, 0],
1111
- [() => DynamicCardVerificationValue, 0],
1112
- [() => DiscoverDynamicCardVerificationCode, 0],
1112
+ [() => AmexCardSecurityCodeVersion1$, 0],
1113
+ [() => AmexCardSecurityCodeVersion2$, 0],
1114
+ [() => CardVerificationValue1$, 0],
1115
+ [() => CardVerificationValue2$, 0],
1116
+ () => CardHolderVerificationValue$,
1117
+ [() => DynamicCardVerificationCode$, 0],
1118
+ [() => DynamicCardVerificationValue$, 0],
1119
+ [() => DiscoverDynamicCardVerificationCode$, 0],
1113
1120
  ],
1114
1121
  ];
1115
- var CryptogramAuthResponse = [
1122
+ var CryptogramAuthResponse$ = [
1116
1123
  3,
1117
1124
  n0,
1118
1125
  _CAR,
1119
1126
  0,
1120
1127
  [_AM, _AMr],
1121
- [() => CryptogramVerificationArpcMethod1, [() => CryptogramVerificationArpcMethod2, 0]],
1128
+ [() => CryptogramVerificationArpcMethod1$, [() => CryptogramVerificationArpcMethod2$, 0]],
1122
1129
  ];
1123
- var DerivationMethodAttributes = [
1130
+ var DerivationMethodAttributes$ = [
1124
1131
  3,
1125
1132
  n0,
1126
1133
  _DMA,
1127
1134
  0,
1128
1135
  [_EC, _A, _V, _E, _Mas],
1129
1136
  [
1130
- [() => EmvCommonAttributes, 0],
1131
- [() => AmexAttributes, 0],
1132
- [() => VisaAttributes, 0],
1133
- [() => Emv2000Attributes, 0],
1134
- [() => MasterCardAttributes, 0],
1137
+ [() => EmvCommonAttributes$, 0],
1138
+ [() => AmexAttributes$, 0],
1139
+ [() => VisaAttributes$, 0],
1140
+ [() => Emv2000Attributes$, 0],
1141
+ [() => MasterCardAttributes$, 0],
1135
1142
  ],
1136
1143
  ];
1137
- var DiffieHellmanDerivationData = [3, n0, _DHDD, 0, [_SI], [0]];
1138
- var EncryptionDecryptionAttributes = [
1144
+ var DiffieHellmanDerivationData$ = [3, n0, _DHDD, 0, [_SI], [0]];
1145
+ var EncryptionDecryptionAttributes$ = [
1139
1146
  3,
1140
1147
  n0,
1141
1148
  _EDAn,
1142
1149
  0,
1143
1150
  [_S, _As, _D, _Em],
1144
1151
  [
1145
- [() => SymmetricEncryptionAttributes, 0],
1146
- () => AsymmetricEncryptionAttributes,
1147
- [() => DukptEncryptionAttributes, 0],
1148
- [() => EmvEncryptionAttributes, 0],
1152
+ [() => SymmetricEncryptionAttributes$, 0],
1153
+ () => AsymmetricEncryptionAttributes$,
1154
+ [() => DukptEncryptionAttributes$, 0],
1155
+ [() => EmvEncryptionAttributes$, 0],
1149
1156
  ],
1150
1157
  ];
1151
- var IncomingKeyMaterial = [
1158
+ var IncomingKeyMaterial$ = [
1152
1159
  3,
1153
1160
  n0,
1154
1161
  _IKM,
1155
1162
  0,
1156
1163
  [_DHTKB],
1157
- [[() => IncomingDiffieHellmanTr31KeyBlock, 0]],
1164
+ [[() => IncomingDiffieHellmanTr31KeyBlock$, 0]],
1158
1165
  ];
1159
- var MacAttributes = [
1166
+ var MacAttributes$ = [
1160
1167
  3,
1161
1168
  n0,
1162
1169
  _MA,
1163
1170
  0,
1164
1171
  [_Al, _EM, _DIA, _DIAu, _DC],
1165
- [0, [() => MacAlgorithmEmv, 0], () => MacAlgorithmDukpt, () => MacAlgorithmDukpt, () => MacAlgorithmDukpt],
1172
+ [0, [() => MacAlgorithmEmv$, 0], () => MacAlgorithmDukpt$, () => MacAlgorithmDukpt$, () => MacAlgorithmDukpt$],
1166
1173
  ];
1167
- var OutgoingKeyMaterial = [3, n0, _OKM, 0, [_TKB], [() => OutgoingTr31KeyBlock]];
1168
- var PinData = [
1174
+ var OutgoingKeyMaterial$ = [3, n0, _OKM, 0, [_TKB], [() => OutgoingTr31KeyBlock$]];
1175
+ var PinData$ = [
1169
1176
  3,
1170
1177
  n0,
1171
1178
  _PD,
@@ -1176,58 +1183,58 @@ var PinData = [
1176
1183
  [() => VerificationValueType, 0],
1177
1184
  ],
1178
1185
  ];
1179
- var PinGenerationAttributes = [
1186
+ var PinGenerationAttributes$ = [
1180
1187
  3,
1181
1188
  n0,
1182
1189
  _PGA,
1183
1190
  0,
1184
1191
  [_VP, _VPVV, _IPO, _INP, _IRP, _IPFO],
1185
1192
  [
1186
- () => VisaPin,
1187
- [() => VisaPinVerificationValue, 0],
1188
- [() => Ibm3624PinOffset, 0],
1189
- [() => Ibm3624NaturalPin, 0],
1190
- [() => Ibm3624RandomPin, 0],
1191
- [() => Ibm3624PinFromOffset, 0],
1193
+ () => VisaPin$,
1194
+ [() => VisaPinVerificationValue$, 0],
1195
+ [() => Ibm3624PinOffset$, 0],
1196
+ [() => Ibm3624NaturalPin$, 0],
1197
+ [() => Ibm3624RandomPin$, 0],
1198
+ [() => Ibm3624PinFromOffset$, 0],
1192
1199
  ],
1193
1200
  ];
1194
- var PinVerificationAttributes = [
1201
+ var PinVerificationAttributes$ = [
1195
1202
  3,
1196
1203
  n0,
1197
1204
  _PVA,
1198
1205
  0,
1199
1206
  [_VP, _IP],
1200
1207
  [
1201
- [() => VisaPinVerification, 0],
1202
- [() => Ibm3624PinVerification, 0],
1208
+ [() => VisaPinVerification$, 0],
1209
+ [() => Ibm3624PinVerification$, 0],
1203
1210
  ],
1204
1211
  ];
1205
- var ReEncryptionAttributes = [
1212
+ var ReEncryptionAttributes$ = [
1206
1213
  3,
1207
1214
  n0,
1208
1215
  _REA,
1209
1216
  0,
1210
1217
  [_S, _D],
1211
1218
  [
1212
- [() => SymmetricEncryptionAttributes, 0],
1213
- [() => DukptEncryptionAttributes, 0],
1219
+ [() => SymmetricEncryptionAttributes$, 0],
1220
+ [() => DukptEncryptionAttributes$, 0],
1214
1221
  ],
1215
1222
  ];
1216
- var SessionKeyDerivation = [
1223
+ var SessionKeyDerivation$ = [
1217
1224
  3,
1218
1225
  n0,
1219
1226
  _SKD,
1220
1227
  0,
1221
1228
  [_EC, _Mas, _E, _A, _V],
1222
1229
  [
1223
- [() => SessionKeyEmvCommon, 0],
1224
- [() => SessionKeyMastercard, 0],
1225
- [() => SessionKeyEmv2000, 0],
1226
- [() => SessionKeyAmex, 0],
1227
- [() => SessionKeyVisa, 0],
1230
+ [() => SessionKeyEmvCommon$, 0],
1231
+ [() => SessionKeyMastercard$, 0],
1232
+ [() => SessionKeyEmv2000$, 0],
1233
+ [() => SessionKeyAmex$, 0],
1234
+ [() => SessionKeyVisa$, 0],
1228
1235
  ],
1229
1236
  ];
1230
- var SessionKeyDerivationValue = [
1237
+ var SessionKeyDerivationValue$ = [
1231
1238
  3,
1232
1239
  n0,
1233
1240
  _SKDV,
@@ -1235,130 +1242,130 @@ var SessionKeyDerivationValue = [
1235
1242
  [_AC, _ATC],
1236
1243
  [[() => ApplicationCryptogramType, 0], 0],
1237
1244
  ];
1238
- var TranslationIsoFormats = [
1245
+ var TranslationIsoFormats$ = [
1239
1246
  3,
1240
1247
  n0,
1241
1248
  _TIF,
1242
1249
  0,
1243
1250
  [_IF, _IFs, _IFso, _IFsoo],
1244
1251
  [
1245
- [() => TranslationPinDataIsoFormat034, 0],
1246
- () => TranslationPinDataIsoFormat1,
1247
- [() => TranslationPinDataIsoFormat034, 0],
1248
- [() => TranslationPinDataIsoFormat034, 0],
1252
+ [() => TranslationPinDataIsoFormat034$, 0],
1253
+ () => TranslationPinDataIsoFormat1$,
1254
+ [() => TranslationPinDataIsoFormat034$, 0],
1255
+ [() => TranslationPinDataIsoFormat034$, 0],
1249
1256
  ],
1250
1257
  ];
1251
- var WrappedKeyMaterial = [
1258
+ var WrappedKeyMaterial$ = [
1252
1259
  3,
1253
1260
  n0,
1254
1261
  _WKM,
1255
1262
  0,
1256
1263
  [_TKB, _DHSK],
1257
- [[() => Tr31WrappedKeyBlock, 0], () => EcdhDerivationAttributes],
1264
+ [[() => Tr31WrappedKeyBlock, 0], () => EcdhDerivationAttributes$],
1258
1265
  ];
1259
- var DecryptData = [
1266
+ var DecryptData$ = [
1260
1267
  9,
1261
1268
  n0,
1262
1269
  _DDe,
1263
1270
  { [_h]: ["POST", "/keys/{KeyIdentifier}/decrypt", 200] },
1264
- () => DecryptDataInput,
1265
- () => DecryptDataOutput,
1271
+ () => DecryptDataInput$,
1272
+ () => DecryptDataOutput$,
1266
1273
  ];
1267
- var EncryptData = [
1274
+ var EncryptData$ = [
1268
1275
  9,
1269
1276
  n0,
1270
1277
  _ED,
1271
1278
  { [_h]: ["POST", "/keys/{KeyIdentifier}/encrypt", 200] },
1272
- () => EncryptDataInput,
1273
- () => EncryptDataOutput,
1279
+ () => EncryptDataInput$,
1280
+ () => EncryptDataOutput$,
1274
1281
  ];
1275
- var GenerateCardValidationData = [
1282
+ var GenerateCardValidationData$ = [
1276
1283
  9,
1277
1284
  n0,
1278
1285
  _GCVD,
1279
1286
  { [_h]: ["POST", "/cardvalidationdata/generate", 200] },
1280
- () => GenerateCardValidationDataInput,
1281
- () => GenerateCardValidationDataOutput,
1287
+ () => GenerateCardValidationDataInput$,
1288
+ () => GenerateCardValidationDataOutput$,
1282
1289
  ];
1283
- var GenerateMac = [
1290
+ var GenerateMac$ = [
1284
1291
  9,
1285
1292
  n0,
1286
1293
  _GM,
1287
1294
  { [_h]: ["POST", "/mac/generate", 200] },
1288
- () => GenerateMacInput,
1289
- () => GenerateMacOutput,
1295
+ () => GenerateMacInput$,
1296
+ () => GenerateMacOutput$,
1290
1297
  ];
1291
- var GenerateMacEmvPinChange = [
1298
+ var GenerateMacEmvPinChange$ = [
1292
1299
  9,
1293
1300
  n0,
1294
1301
  _GMEPC,
1295
1302
  { [_h]: ["POST", "/macemvpinchange/generate", 200] },
1296
- () => GenerateMacEmvPinChangeInput,
1297
- () => GenerateMacEmvPinChangeOutput,
1303
+ () => GenerateMacEmvPinChangeInput$,
1304
+ () => GenerateMacEmvPinChangeOutput$,
1298
1305
  ];
1299
- var GeneratePinData = [
1306
+ var GeneratePinData$ = [
1300
1307
  9,
1301
1308
  n0,
1302
1309
  _GPD,
1303
1310
  { [_h]: ["POST", "/pindata/generate", 200] },
1304
- () => GeneratePinDataInput,
1305
- () => GeneratePinDataOutput,
1311
+ () => GeneratePinDataInput$,
1312
+ () => GeneratePinDataOutput$,
1306
1313
  ];
1307
- var ReEncryptData = [
1314
+ var ReEncryptData$ = [
1308
1315
  9,
1309
1316
  n0,
1310
1317
  _RED,
1311
1318
  { [_h]: ["POST", "/keys/{IncomingKeyIdentifier}/reencrypt", 200] },
1312
- () => ReEncryptDataInput,
1313
- () => ReEncryptDataOutput,
1319
+ () => ReEncryptDataInput$,
1320
+ () => ReEncryptDataOutput$,
1314
1321
  ];
1315
- var TranslateKeyMaterial = [
1322
+ var TranslateKeyMaterial$ = [
1316
1323
  9,
1317
1324
  n0,
1318
1325
  _TKM,
1319
1326
  { [_h]: ["POST", "/keymaterial/translate", 200] },
1320
- () => TranslateKeyMaterialInput,
1321
- () => TranslateKeyMaterialOutput,
1327
+ () => TranslateKeyMaterialInput$,
1328
+ () => TranslateKeyMaterialOutput$,
1322
1329
  ];
1323
- var TranslatePinData = [
1330
+ var TranslatePinData$ = [
1324
1331
  9,
1325
1332
  n0,
1326
1333
  _TPD,
1327
1334
  { [_h]: ["POST", "/pindata/translate", 200] },
1328
- () => TranslatePinDataInput,
1329
- () => TranslatePinDataOutput,
1335
+ () => TranslatePinDataInput$,
1336
+ () => TranslatePinDataOutput$,
1330
1337
  ];
1331
- var VerifyAuthRequestCryptogram = [
1338
+ var VerifyAuthRequestCryptogram$ = [
1332
1339
  9,
1333
1340
  n0,
1334
1341
  _VARC,
1335
1342
  { [_h]: ["POST", "/cryptogram/verify", 200] },
1336
- () => VerifyAuthRequestCryptogramInput,
1337
- () => VerifyAuthRequestCryptogramOutput,
1343
+ () => VerifyAuthRequestCryptogramInput$,
1344
+ () => VerifyAuthRequestCryptogramOutput$,
1338
1345
  ];
1339
- var VerifyCardValidationData = [
1346
+ var VerifyCardValidationData$ = [
1340
1347
  9,
1341
1348
  n0,
1342
1349
  _VCVD,
1343
1350
  { [_h]: ["POST", "/cardvalidationdata/verify", 200] },
1344
- () => VerifyCardValidationDataInput,
1345
- () => VerifyCardValidationDataOutput,
1351
+ () => VerifyCardValidationDataInput$,
1352
+ () => VerifyCardValidationDataOutput$,
1346
1353
  ];
1347
- var VerifyMac = [
1354
+ var VerifyMac$ = [
1348
1355
  9,
1349
1356
  n0,
1350
1357
  _VM,
1351
1358
  { [_h]: ["POST", "/mac/verify", 200] },
1352
- () => VerifyMacInput,
1353
- () => VerifyMacOutput,
1359
+ () => VerifyMacInput$,
1360
+ () => VerifyMacOutput$,
1354
1361
  ];
1355
- var VerifyPinData = [
1362
+ var VerifyPinData$ = [
1356
1363
  9,
1357
1364
  n0,
1358
1365
  _VPD,
1359
1366
  { [_h]: ["POST", "/pindata/verify", 200] },
1360
- () => VerifyPinDataInput,
1361
- () => VerifyPinDataOutput,
1367
+ () => VerifyPinDataInput$,
1368
+ () => VerifyPinDataOutput$,
1362
1369
  ];
1363
1370
 
1364
1371
  class DecryptDataCommand extends smithyClient.Command
@@ -1369,7 +1376,7 @@ class DecryptDataCommand extends smithyClient.Command
1369
1376
  })
1370
1377
  .s("PaymentCryptographyDataPlane", "DecryptData", {})
1371
1378
  .n("PaymentCryptographyDataClient", "DecryptDataCommand")
1372
- .sc(DecryptData)
1379
+ .sc(DecryptData$)
1373
1380
  .build() {
1374
1381
  }
1375
1382
 
@@ -1381,7 +1388,7 @@ class EncryptDataCommand extends smithyClient.Command
1381
1388
  })
1382
1389
  .s("PaymentCryptographyDataPlane", "EncryptData", {})
1383
1390
  .n("PaymentCryptographyDataClient", "EncryptDataCommand")
1384
- .sc(EncryptData)
1391
+ .sc(EncryptData$)
1385
1392
  .build() {
1386
1393
  }
1387
1394
 
@@ -1393,7 +1400,7 @@ class GenerateCardValidationDataCommand extends smithyClient.Command
1393
1400
  })
1394
1401
  .s("PaymentCryptographyDataPlane", "GenerateCardValidationData", {})
1395
1402
  .n("PaymentCryptographyDataClient", "GenerateCardValidationDataCommand")
1396
- .sc(GenerateCardValidationData)
1403
+ .sc(GenerateCardValidationData$)
1397
1404
  .build() {
1398
1405
  }
1399
1406
 
@@ -1405,7 +1412,7 @@ class GenerateMacCommand extends smithyClient.Command
1405
1412
  })
1406
1413
  .s("PaymentCryptographyDataPlane", "GenerateMac", {})
1407
1414
  .n("PaymentCryptographyDataClient", "GenerateMacCommand")
1408
- .sc(GenerateMac)
1415
+ .sc(GenerateMac$)
1409
1416
  .build() {
1410
1417
  }
1411
1418
 
@@ -1417,7 +1424,7 @@ class GenerateMacEmvPinChangeCommand extends smithyClient.Command
1417
1424
  })
1418
1425
  .s("PaymentCryptographyDataPlane", "GenerateMacEmvPinChange", {})
1419
1426
  .n("PaymentCryptographyDataClient", "GenerateMacEmvPinChangeCommand")
1420
- .sc(GenerateMacEmvPinChange)
1427
+ .sc(GenerateMacEmvPinChange$)
1421
1428
  .build() {
1422
1429
  }
1423
1430
 
@@ -1429,7 +1436,7 @@ class GeneratePinDataCommand extends smithyClient.Command
1429
1436
  })
1430
1437
  .s("PaymentCryptographyDataPlane", "GeneratePinData", {})
1431
1438
  .n("PaymentCryptographyDataClient", "GeneratePinDataCommand")
1432
- .sc(GeneratePinData)
1439
+ .sc(GeneratePinData$)
1433
1440
  .build() {
1434
1441
  }
1435
1442
 
@@ -1441,7 +1448,7 @@ class ReEncryptDataCommand extends smithyClient.Command
1441
1448
  })
1442
1449
  .s("PaymentCryptographyDataPlane", "ReEncryptData", {})
1443
1450
  .n("PaymentCryptographyDataClient", "ReEncryptDataCommand")
1444
- .sc(ReEncryptData)
1451
+ .sc(ReEncryptData$)
1445
1452
  .build() {
1446
1453
  }
1447
1454
 
@@ -1453,7 +1460,7 @@ class TranslateKeyMaterialCommand extends smithyClient.Command
1453
1460
  })
1454
1461
  .s("PaymentCryptographyDataPlane", "TranslateKeyMaterial", {})
1455
1462
  .n("PaymentCryptographyDataClient", "TranslateKeyMaterialCommand")
1456
- .sc(TranslateKeyMaterial)
1463
+ .sc(TranslateKeyMaterial$)
1457
1464
  .build() {
1458
1465
  }
1459
1466
 
@@ -1465,7 +1472,7 @@ class TranslatePinDataCommand extends smithyClient.Command
1465
1472
  })
1466
1473
  .s("PaymentCryptographyDataPlane", "TranslatePinData", {})
1467
1474
  .n("PaymentCryptographyDataClient", "TranslatePinDataCommand")
1468
- .sc(TranslatePinData)
1475
+ .sc(TranslatePinData$)
1469
1476
  .build() {
1470
1477
  }
1471
1478
 
@@ -1477,7 +1484,7 @@ class VerifyAuthRequestCryptogramCommand extends smithyClient.Command
1477
1484
  })
1478
1485
  .s("PaymentCryptographyDataPlane", "VerifyAuthRequestCryptogram", {})
1479
1486
  .n("PaymentCryptographyDataClient", "VerifyAuthRequestCryptogramCommand")
1480
- .sc(VerifyAuthRequestCryptogram)
1487
+ .sc(VerifyAuthRequestCryptogram$)
1481
1488
  .build() {
1482
1489
  }
1483
1490
 
@@ -1489,7 +1496,7 @@ class VerifyCardValidationDataCommand extends smithyClient.Command
1489
1496
  })
1490
1497
  .s("PaymentCryptographyDataPlane", "VerifyCardValidationData", {})
1491
1498
  .n("PaymentCryptographyDataClient", "VerifyCardValidationDataCommand")
1492
- .sc(VerifyCardValidationData)
1499
+ .sc(VerifyCardValidationData$)
1493
1500
  .build() {
1494
1501
  }
1495
1502
 
@@ -1501,7 +1508,7 @@ class VerifyMacCommand extends smithyClient.Command
1501
1508
  })
1502
1509
  .s("PaymentCryptographyDataPlane", "VerifyMac", {})
1503
1510
  .n("PaymentCryptographyDataClient", "VerifyMacCommand")
1504
- .sc(VerifyMac)
1511
+ .sc(VerifyMac$)
1505
1512
  .build() {
1506
1513
  }
1507
1514
 
@@ -1513,7 +1520,7 @@ class VerifyPinDataCommand extends smithyClient.Command
1513
1520
  })
1514
1521
  .s("PaymentCryptographyDataPlane", "VerifyPinData", {})
1515
1522
  .n("PaymentCryptographyDataClient", "VerifyPinDataCommand")
1516
- .sc(VerifyPinData)
1523
+ .sc(VerifyPinData$)
1517
1524
  .build() {
1518
1525
  }
1519
1526
 
@@ -1662,45 +1669,154 @@ Object.defineProperty(exports, "__Client", {
1662
1669
  enumerable: true,
1663
1670
  get: function () { return smithyClient.Client; }
1664
1671
  });
1665
- exports.AccessDeniedException = AccessDeniedException$1;
1672
+ exports.AccessDeniedException = AccessDeniedException;
1673
+ exports.AccessDeniedException$ = AccessDeniedException$;
1674
+ exports.AmexAttributes$ = AmexAttributes$;
1675
+ exports.AmexCardSecurityCodeVersion1$ = AmexCardSecurityCodeVersion1$;
1676
+ exports.AmexCardSecurityCodeVersion2$ = AmexCardSecurityCodeVersion2$;
1677
+ exports.AsymmetricEncryptionAttributes$ = AsymmetricEncryptionAttributes$;
1678
+ exports.CardGenerationAttributes$ = CardGenerationAttributes$;
1679
+ exports.CardHolderVerificationValue$ = CardHolderVerificationValue$;
1680
+ exports.CardVerificationAttributes$ = CardVerificationAttributes$;
1681
+ exports.CardVerificationValue1$ = CardVerificationValue1$;
1682
+ exports.CardVerificationValue2$ = CardVerificationValue2$;
1683
+ exports.CryptogramAuthResponse$ = CryptogramAuthResponse$;
1684
+ exports.CryptogramVerificationArpcMethod1$ = CryptogramVerificationArpcMethod1$;
1685
+ exports.CryptogramVerificationArpcMethod2$ = CryptogramVerificationArpcMethod2$;
1686
+ exports.CurrentPinAttributes$ = CurrentPinAttributes$;
1687
+ exports.DecryptData$ = DecryptData$;
1666
1688
  exports.DecryptDataCommand = DecryptDataCommand;
1689
+ exports.DecryptDataInput$ = DecryptDataInput$;
1690
+ exports.DecryptDataOutput$ = DecryptDataOutput$;
1691
+ exports.DerivationMethodAttributes$ = DerivationMethodAttributes$;
1692
+ exports.DiffieHellmanDerivationData$ = DiffieHellmanDerivationData$;
1693
+ exports.DiscoverDynamicCardVerificationCode$ = DiscoverDynamicCardVerificationCode$;
1694
+ exports.DukptAttributes$ = DukptAttributes$;
1695
+ exports.DukptDerivationAttributes$ = DukptDerivationAttributes$;
1667
1696
  exports.DukptDerivationType = DukptDerivationType;
1697
+ exports.DukptEncryptionAttributes$ = DukptEncryptionAttributes$;
1668
1698
  exports.DukptEncryptionMode = DukptEncryptionMode;
1669
1699
  exports.DukptKeyVariant = DukptKeyVariant;
1700
+ exports.DynamicCardVerificationCode$ = DynamicCardVerificationCode$;
1701
+ exports.DynamicCardVerificationValue$ = DynamicCardVerificationValue$;
1702
+ exports.EcdhDerivationAttributes$ = EcdhDerivationAttributes$;
1703
+ exports.Emv2000Attributes$ = Emv2000Attributes$;
1704
+ exports.EmvCommonAttributes$ = EmvCommonAttributes$;
1705
+ exports.EmvEncryptionAttributes$ = EmvEncryptionAttributes$;
1670
1706
  exports.EmvEncryptionMode = EmvEncryptionMode;
1671
1707
  exports.EmvMajorKeyDerivationMode = EmvMajorKeyDerivationMode;
1708
+ exports.EncryptData$ = EncryptData$;
1672
1709
  exports.EncryptDataCommand = EncryptDataCommand;
1710
+ exports.EncryptDataInput$ = EncryptDataInput$;
1711
+ exports.EncryptDataOutput$ = EncryptDataOutput$;
1712
+ exports.EncryptionDecryptionAttributes$ = EncryptionDecryptionAttributes$;
1673
1713
  exports.EncryptionMode = EncryptionMode;
1714
+ exports.GenerateCardValidationData$ = GenerateCardValidationData$;
1674
1715
  exports.GenerateCardValidationDataCommand = GenerateCardValidationDataCommand;
1716
+ exports.GenerateCardValidationDataInput$ = GenerateCardValidationDataInput$;
1717
+ exports.GenerateCardValidationDataOutput$ = GenerateCardValidationDataOutput$;
1718
+ exports.GenerateMac$ = GenerateMac$;
1675
1719
  exports.GenerateMacCommand = GenerateMacCommand;
1720
+ exports.GenerateMacEmvPinChange$ = GenerateMacEmvPinChange$;
1676
1721
  exports.GenerateMacEmvPinChangeCommand = GenerateMacEmvPinChangeCommand;
1722
+ exports.GenerateMacEmvPinChangeInput$ = GenerateMacEmvPinChangeInput$;
1723
+ exports.GenerateMacEmvPinChangeOutput$ = GenerateMacEmvPinChangeOutput$;
1724
+ exports.GenerateMacInput$ = GenerateMacInput$;
1725
+ exports.GenerateMacOutput$ = GenerateMacOutput$;
1726
+ exports.GeneratePinData$ = GeneratePinData$;
1677
1727
  exports.GeneratePinDataCommand = GeneratePinDataCommand;
1678
- exports.InternalServerException = InternalServerException$1;
1728
+ exports.GeneratePinDataInput$ = GeneratePinDataInput$;
1729
+ exports.GeneratePinDataOutput$ = GeneratePinDataOutput$;
1730
+ exports.Ibm3624NaturalPin$ = Ibm3624NaturalPin$;
1731
+ exports.Ibm3624PinFromOffset$ = Ibm3624PinFromOffset$;
1732
+ exports.Ibm3624PinOffset$ = Ibm3624PinOffset$;
1733
+ exports.Ibm3624PinVerification$ = Ibm3624PinVerification$;
1734
+ exports.Ibm3624RandomPin$ = Ibm3624RandomPin$;
1735
+ exports.IncomingDiffieHellmanTr31KeyBlock$ = IncomingDiffieHellmanTr31KeyBlock$;
1736
+ exports.IncomingKeyMaterial$ = IncomingKeyMaterial$;
1737
+ exports.InternalServerException = InternalServerException;
1738
+ exports.InternalServerException$ = InternalServerException$;
1679
1739
  exports.KeyCheckValueAlgorithm = KeyCheckValueAlgorithm;
1680
1740
  exports.KeyDerivationFunction = KeyDerivationFunction;
1681
1741
  exports.KeyDerivationHashAlgorithm = KeyDerivationHashAlgorithm;
1682
1742
  exports.MacAlgorithm = MacAlgorithm;
1743
+ exports.MacAlgorithmDukpt$ = MacAlgorithmDukpt$;
1744
+ exports.MacAlgorithmEmv$ = MacAlgorithmEmv$;
1745
+ exports.MacAttributes$ = MacAttributes$;
1683
1746
  exports.MajorKeyDerivationMode = MajorKeyDerivationMode;
1747
+ exports.MasterCardAttributes$ = MasterCardAttributes$;
1748
+ exports.OutgoingKeyMaterial$ = OutgoingKeyMaterial$;
1749
+ exports.OutgoingTr31KeyBlock$ = OutgoingTr31KeyBlock$;
1684
1750
  exports.PaddingType = PaddingType;
1685
1751
  exports.PaymentCryptographyData = PaymentCryptographyData;
1686
1752
  exports.PaymentCryptographyDataClient = PaymentCryptographyDataClient;
1687
- exports.PaymentCryptographyDataServiceException = PaymentCryptographyDataServiceException$1;
1753
+ exports.PaymentCryptographyDataServiceException = PaymentCryptographyDataServiceException;
1754
+ exports.PaymentCryptographyDataServiceException$ = PaymentCryptographyDataServiceException$;
1688
1755
  exports.PinBlockFormatForEmvPinChange = PinBlockFormatForEmvPinChange;
1689
1756
  exports.PinBlockFormatForPinData = PinBlockFormatForPinData;
1690
1757
  exports.PinBlockLengthPosition = PinBlockLengthPosition;
1691
1758
  exports.PinBlockPaddingType = PinBlockPaddingType;
1759
+ exports.PinData$ = PinData$;
1760
+ exports.PinGenerationAttributes$ = PinGenerationAttributes$;
1761
+ exports.PinVerificationAttributes$ = PinVerificationAttributes$;
1762
+ exports.ReEncryptData$ = ReEncryptData$;
1692
1763
  exports.ReEncryptDataCommand = ReEncryptDataCommand;
1693
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1764
+ exports.ReEncryptDataInput$ = ReEncryptDataInput$;
1765
+ exports.ReEncryptDataOutput$ = ReEncryptDataOutput$;
1766
+ exports.ReEncryptionAttributes$ = ReEncryptionAttributes$;
1767
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1768
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1769
+ exports.SessionKeyAmex$ = SessionKeyAmex$;
1770
+ exports.SessionKeyDerivation$ = SessionKeyDerivation$;
1694
1771
  exports.SessionKeyDerivationMode = SessionKeyDerivationMode;
1772
+ exports.SessionKeyDerivationValue$ = SessionKeyDerivationValue$;
1773
+ exports.SessionKeyEmv2000$ = SessionKeyEmv2000$;
1774
+ exports.SessionKeyEmvCommon$ = SessionKeyEmvCommon$;
1775
+ exports.SessionKeyMastercard$ = SessionKeyMastercard$;
1776
+ exports.SessionKeyVisa$ = SessionKeyVisa$;
1777
+ exports.SymmetricEncryptionAttributes$ = SymmetricEncryptionAttributes$;
1695
1778
  exports.SymmetricKeyAlgorithm = SymmetricKeyAlgorithm;
1696
- exports.ThrottlingException = ThrottlingException$1;
1779
+ exports.ThrottlingException = ThrottlingException;
1780
+ exports.ThrottlingException$ = ThrottlingException$;
1781
+ exports.TranslateKeyMaterial$ = TranslateKeyMaterial$;
1697
1782
  exports.TranslateKeyMaterialCommand = TranslateKeyMaterialCommand;
1783
+ exports.TranslateKeyMaterialInput$ = TranslateKeyMaterialInput$;
1784
+ exports.TranslateKeyMaterialOutput$ = TranslateKeyMaterialOutput$;
1785
+ exports.TranslatePinData$ = TranslatePinData$;
1698
1786
  exports.TranslatePinDataCommand = TranslatePinDataCommand;
1699
- exports.ValidationException = ValidationException$1;
1700
- exports.VerificationFailedException = VerificationFailedException$1;
1787
+ exports.TranslatePinDataInput$ = TranslatePinDataInput$;
1788
+ exports.TranslatePinDataOutput$ = TranslatePinDataOutput$;
1789
+ exports.TranslationIsoFormats$ = TranslationIsoFormats$;
1790
+ exports.TranslationPinDataIsoFormat034$ = TranslationPinDataIsoFormat034$;
1791
+ exports.TranslationPinDataIsoFormat1$ = TranslationPinDataIsoFormat1$;
1792
+ exports.ValidationException = ValidationException;
1793
+ exports.ValidationException$ = ValidationException$;
1794
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
1795
+ exports.VerificationFailedException = VerificationFailedException;
1796
+ exports.VerificationFailedException$ = VerificationFailedException$;
1701
1797
  exports.VerificationFailedReason = VerificationFailedReason;
1798
+ exports.VerifyAuthRequestCryptogram$ = VerifyAuthRequestCryptogram$;
1702
1799
  exports.VerifyAuthRequestCryptogramCommand = VerifyAuthRequestCryptogramCommand;
1800
+ exports.VerifyAuthRequestCryptogramInput$ = VerifyAuthRequestCryptogramInput$;
1801
+ exports.VerifyAuthRequestCryptogramOutput$ = VerifyAuthRequestCryptogramOutput$;
1802
+ exports.VerifyCardValidationData$ = VerifyCardValidationData$;
1703
1803
  exports.VerifyCardValidationDataCommand = VerifyCardValidationDataCommand;
1804
+ exports.VerifyCardValidationDataInput$ = VerifyCardValidationDataInput$;
1805
+ exports.VerifyCardValidationDataOutput$ = VerifyCardValidationDataOutput$;
1806
+ exports.VerifyMac$ = VerifyMac$;
1704
1807
  exports.VerifyMacCommand = VerifyMacCommand;
1808
+ exports.VerifyMacInput$ = VerifyMacInput$;
1809
+ exports.VerifyMacOutput$ = VerifyMacOutput$;
1810
+ exports.VerifyPinData$ = VerifyPinData$;
1705
1811
  exports.VerifyPinDataCommand = VerifyPinDataCommand;
1812
+ exports.VerifyPinDataInput$ = VerifyPinDataInput$;
1813
+ exports.VerifyPinDataOutput$ = VerifyPinDataOutput$;
1814
+ exports.VisaAmexDerivationOutputs$ = VisaAmexDerivationOutputs$;
1815
+ exports.VisaAttributes$ = VisaAttributes$;
1816
+ exports.VisaPin$ = VisaPin$;
1817
+ exports.VisaPinVerification$ = VisaPinVerification$;
1818
+ exports.VisaPinVerificationValue$ = VisaPinVerificationValue$;
1819
+ exports.WrappedKey$ = WrappedKey$;
1820
+ exports.WrappedKeyMaterial$ = WrappedKeyMaterial$;
1706
1821
  exports.WrappedKeyMaterialFormat = WrappedKeyMaterialFormat;
1822
+ exports.WrappedWorkingKey$ = WrappedWorkingKey$;