@aptos-scp/scp-component-rn-device-services 0.0.1

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 (82) hide show
  1. package/LICENSE.md +1 -0
  2. package/README.md +57 -0
  3. package/constants/package.json +7 -0
  4. package/interfaces/package.json +7 -0
  5. package/ios/AurusEnterpriseSDK.framework/AurusEnterpriseSDK +0 -0
  6. package/ios/AurusEnterpriseSDK.framework/Headers/AurusEnterpriseSDK.h +96 -0
  7. package/ios/SCPRNDeviceServices/AdyenPaymentTerminal.h +18 -0
  8. package/ios/SCPRNDeviceServices/AdyenPaymentTerminal.m +63 -0
  9. package/ios/SCPRNDeviceServices/AurusPaymentTerminal.h +19 -0
  10. package/ios/SCPRNDeviceServices/AurusPaymentTerminal.m +72 -0
  11. package/ios/SCPRNDeviceServices/VendorPaymentTerminal.h +24 -0
  12. package/ios/SCPRNDeviceServices/VendorPaymentTerminal.m +58 -0
  13. package/ios/SCPRNDeviceServices.xcodeproj/project.pbxproj +551 -0
  14. package/lib/AurusDevice/AurusPaymentDevice.d.ts +77 -0
  15. package/lib/AurusDevice/AurusPaymentDevice.js +473 -0
  16. package/lib/AurusDevice/AurusPaymentDevice.js.map +1 -0
  17. package/lib/AurusDevice/constants.d.ts +89 -0
  18. package/lib/AurusDevice/constants.js +94 -0
  19. package/lib/AurusDevice/constants.js.map +1 -0
  20. package/lib/AurusDevice/index.d.ts +2 -0
  21. package/lib/AurusDevice/index.js +8 -0
  22. package/lib/AurusDevice/index.js.map +1 -0
  23. package/lib/AurusDevice/sdk-interface/AESDKRegistration.d.ts +43 -0
  24. package/lib/AurusDevice/sdk-interface/AESDKRegistration.js +9 -0
  25. package/lib/AurusDevice/sdk-interface/AESDKRegistration.js.map +1 -0
  26. package/lib/AurusDevice/sdk-interface/AurusPaymentSupport.d.ts +40 -0
  27. package/lib/AurusDevice/sdk-interface/AurusPaymentSupport.js +307 -0
  28. package/lib/AurusDevice/sdk-interface/AurusPaymentSupport.js.map +1 -0
  29. package/lib/AurusDevice/sdk-interface/CancelTransaction.d.ts +49 -0
  30. package/lib/AurusDevice/sdk-interface/CancelTransaction.js +9 -0
  31. package/lib/AurusDevice/sdk-interface/CancelTransaction.js.map +1 -0
  32. package/lib/AurusDevice/sdk-interface/GetCardBinRequest.d.ts +35 -0
  33. package/lib/AurusDevice/sdk-interface/GetCardBinRequest.js +9 -0
  34. package/lib/AurusDevice/sdk-interface/GetCardBinRequest.js.map +1 -0
  35. package/lib/AurusDevice/sdk-interface/PLCCApplication.d.ts +64 -0
  36. package/lib/AurusDevice/sdk-interface/PLCCApplication.js +9 -0
  37. package/lib/AurusDevice/sdk-interface/PLCCApplication.js.map +1 -0
  38. package/lib/AurusDevice/sdk-interface/TransactionRequest.d.ts +159 -0
  39. package/lib/AurusDevice/sdk-interface/TransactionRequest.js +9 -0
  40. package/lib/AurusDevice/sdk-interface/TransactionRequest.js.map +1 -0
  41. package/lib/AurusDevice/sdk-interface/index.d.ts +6 -0
  42. package/lib/AurusDevice/sdk-interface/index.js +7 -0
  43. package/lib/AurusDevice/sdk-interface/index.js.map +1 -0
  44. package/lib/PaymentDeviceFactory.d.ts +11 -0
  45. package/lib/PaymentDeviceFactory.js +33 -0
  46. package/lib/PaymentDeviceFactory.js.map +1 -0
  47. package/lib/PaymentDeviceService.d.ts +19 -0
  48. package/lib/PaymentDeviceService.js +129 -0
  49. package/lib/PaymentDeviceService.js.map +1 -0
  50. package/lib/constants/constants.d.ts +52 -0
  51. package/lib/constants/constants.js +64 -0
  52. package/lib/constants/constants.js.map +1 -0
  53. package/lib/constants/index.d.ts +1 -0
  54. package/lib/constants/index.js +7 -0
  55. package/lib/constants/index.js.map +1 -0
  56. package/lib/index.d.ts +3 -0
  57. package/lib/index.js +8 -0
  58. package/lib/index.js.map +1 -0
  59. package/lib/interfaces/IDeviceStatus.d.ts +7 -0
  60. package/lib/interfaces/IDeviceStatus.js +4 -0
  61. package/lib/interfaces/IDeviceStatus.js.map +1 -0
  62. package/lib/interfaces/index.d.ts +2 -0
  63. package/lib/interfaces/index.js +3 -0
  64. package/lib/interfaces/index.js.map +1 -0
  65. package/lib/interfaces/payment/IPayment.d.ts +25 -0
  66. package/lib/interfaces/payment/IPayment.js +3 -0
  67. package/lib/interfaces/payment/IPayment.js.map +1 -0
  68. package/lib/interfaces/payment/index.d.ts +2 -0
  69. package/lib/interfaces/payment/index.js +3 -0
  70. package/lib/interfaces/payment/index.js.map +1 -0
  71. package/lib/interfaces/payment/messages/index.d.ts +2 -0
  72. package/lib/interfaces/payment/messages/index.js +3 -0
  73. package/lib/interfaces/payment/messages/index.js.map +1 -0
  74. package/lib/interfaces/payment/messages/requests.d.ts +47 -0
  75. package/lib/interfaces/payment/messages/requests.js +3 -0
  76. package/lib/interfaces/payment/messages/requests.js.map +1 -0
  77. package/lib/interfaces/payment/messages/responses.d.ts +57 -0
  78. package/lib/interfaces/payment/messages/responses.js +3 -0
  79. package/lib/interfaces/payment/messages/responses.js.map +1 -0
  80. package/package.json +84 -0
  81. package/types/money-works/index.d.ts +49 -0
  82. package/types/react-native-xml2js/index.d.ts +6 -0
@@ -0,0 +1,551 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 48;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 3856B53A1F9FD52F008E4649 /* AurusPaymentTerminal.m in Sources */ = {isa = PBXBuildFile; fileRef = 3856B5391F9FD52F008E4649 /* AurusPaymentTerminal.m */; };
11
+ 38AB31641F99465F006E2214 /* VendorPaymentTerminal.m in Sources */ = {isa = PBXBuildFile; fileRef = 38AB315F1F99465F006E2214 /* VendorPaymentTerminal.m */; };
12
+ 38AB31661F994A34006E2214 /* VendorPaymentTerminal.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 38AB315E1F99465F006E2214 /* VendorPaymentTerminal.h */; };
13
+ BA2093D01FB650800062B51D /* AdyenPaymentTerminal.m in Sources */ = {isa = PBXBuildFile; fileRef = BA2093CE1FB650800062B51D /* AdyenPaymentTerminal.m */; };
14
+ BA55ECD01FBB8BE600C82181 /* AurusEnterpriseSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA55ECCF1FBB8BE500C82181 /* AurusEnterpriseSDK.framework */; };
15
+ /* End PBXBuildFile section */
16
+
17
+ /* Begin PBXContainerItemProxy section */
18
+ 38AB316D1F994ED0006E2214 /* PBXContainerItemProxy */ = {
19
+ isa = PBXContainerItemProxy;
20
+ containerPortal = 38AB31681F994ED0006E2214 /* RCTLinking.xcodeproj */;
21
+ proxyType = 2;
22
+ remoteGlobalIDString = 134814201AA4EA6300B7C361;
23
+ remoteInfo = RCTLinking;
24
+ };
25
+ 38AB316F1F994ED0006E2214 /* PBXContainerItemProxy */ = {
26
+ isa = PBXContainerItemProxy;
27
+ containerPortal = 38AB31681F994ED0006E2214 /* RCTLinking.xcodeproj */;
28
+ proxyType = 2;
29
+ remoteGlobalIDString = 2D2A28471D9B043800D4039D;
30
+ remoteInfo = "RCTLinking-tvOS";
31
+ };
32
+ BA2093BE1FB6394F0062B51D /* PBXContainerItemProxy */ = {
33
+ isa = PBXContainerItemProxy;
34
+ containerPortal = BA2093B31FB6394F0062B51D /* React.xcodeproj */;
35
+ proxyType = 2;
36
+ remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
37
+ remoteInfo = React;
38
+ };
39
+ BA2093C01FB6394F0062B51D /* PBXContainerItemProxy */ = {
40
+ isa = PBXContainerItemProxy;
41
+ containerPortal = BA2093B31FB6394F0062B51D /* React.xcodeproj */;
42
+ proxyType = 2;
43
+ remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
44
+ remoteInfo = "React-tvOS";
45
+ };
46
+ BA2093C21FB6394F0062B51D /* PBXContainerItemProxy */ = {
47
+ isa = PBXContainerItemProxy;
48
+ containerPortal = BA2093B31FB6394F0062B51D /* React.xcodeproj */;
49
+ proxyType = 2;
50
+ remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
51
+ remoteInfo = yoga;
52
+ };
53
+ BA2093C41FB6394F0062B51D /* PBXContainerItemProxy */ = {
54
+ isa = PBXContainerItemProxy;
55
+ containerPortal = BA2093B31FB6394F0062B51D /* React.xcodeproj */;
56
+ proxyType = 2;
57
+ remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
58
+ remoteInfo = "yoga-tvOS";
59
+ };
60
+ BA2093C61FB6394F0062B51D /* PBXContainerItemProxy */ = {
61
+ isa = PBXContainerItemProxy;
62
+ containerPortal = BA2093B31FB6394F0062B51D /* React.xcodeproj */;
63
+ proxyType = 2;
64
+ remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
65
+ remoteInfo = cxxreact;
66
+ };
67
+ BA2093C81FB6394F0062B51D /* PBXContainerItemProxy */ = {
68
+ isa = PBXContainerItemProxy;
69
+ containerPortal = BA2093B31FB6394F0062B51D /* React.xcodeproj */;
70
+ proxyType = 2;
71
+ remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
72
+ remoteInfo = "cxxreact-tvOS";
73
+ };
74
+ BA2093CA1FB6394F0062B51D /* PBXContainerItemProxy */ = {
75
+ isa = PBXContainerItemProxy;
76
+ containerPortal = BA2093B31FB6394F0062B51D /* React.xcodeproj */;
77
+ proxyType = 2;
78
+ remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
79
+ remoteInfo = jschelpers;
80
+ };
81
+ BA2093CC1FB6394F0062B51D /* PBXContainerItemProxy */ = {
82
+ isa = PBXContainerItemProxy;
83
+ containerPortal = BA2093B31FB6394F0062B51D /* React.xcodeproj */;
84
+ proxyType = 2;
85
+ remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
86
+ remoteInfo = "jschelpers-tvOS";
87
+ };
88
+ /* End PBXContainerItemProxy section */
89
+
90
+ /* Begin PBXCopyFilesBuildPhase section */
91
+ 381C10011F9823AD00A849FA /* CopyFiles */ = {
92
+ isa = PBXCopyFilesBuildPhase;
93
+ buildActionMask = 2147483647;
94
+ dstPath = "include/$(PRODUCT_NAME)";
95
+ dstSubfolderSpec = 16;
96
+ files = (
97
+ 38AB31661F994A34006E2214 /* VendorPaymentTerminal.h in CopyFiles */,
98
+ );
99
+ runOnlyForDeploymentPostprocessing = 0;
100
+ };
101
+ /* End PBXCopyFilesBuildPhase section */
102
+
103
+ /* Begin PBXFileReference section */
104
+ 381C10031F9823AD00A849FA /* libSCPRNDeviceServices.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libSCPRNDeviceServices.a; sourceTree = BUILT_PRODUCTS_DIR; };
105
+ 3856B5361F9FD52F008E4649 /* AurusPaymentTerminal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AurusPaymentTerminal.h; sourceTree = "<group>"; };
106
+ 3856B5391F9FD52F008E4649 /* AurusPaymentTerminal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AurusPaymentTerminal.m; sourceTree = "<group>"; };
107
+ 38AB315E1F99465F006E2214 /* VendorPaymentTerminal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VendorPaymentTerminal.h; sourceTree = "<group>"; };
108
+ 38AB315F1F99465F006E2214 /* VendorPaymentTerminal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VendorPaymentTerminal.m; sourceTree = "<group>"; };
109
+ 38AB31681F994ED0006E2214 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
110
+ 38AB31711F994F11006E2214 /* RCTLinkingManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinkingManager.h"; sourceTree = "<group>"; };
111
+ BA2093B31FB6394F0062B51D /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = "<group>"; };
112
+ BA2093CE1FB650800062B51D /* AdyenPaymentTerminal.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AdyenPaymentTerminal.m; sourceTree = "<group>"; };
113
+ BA2093CF1FB650800062B51D /* AdyenPaymentTerminal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AdyenPaymentTerminal.h; sourceTree = "<group>"; };
114
+ BA55ECCF1FBB8BE500C82181 /* AurusEnterpriseSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AurusEnterpriseSDK.framework; sourceTree = "<group>"; };
115
+ BA8F97911FB606F500008C08 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
116
+ BA8F97931FB606FC00008C08 /* libz.1.2.5.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.1.2.5.tbd; path = usr/lib/libz.1.2.5.tbd; sourceTree = SDKROOT; };
117
+ BA8F97951FB6072100008C08 /* libstdc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.tbd"; path = "usr/lib/libstdc++.tbd"; sourceTree = SDKROOT; };
118
+ BA8F97971FB6072700008C08 /* libstdc++.6.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libstdc++.6.tbd"; path = "usr/lib/libstdc++.6.tbd"; sourceTree = SDKROOT; };
119
+ BA8F97991FB6073100008C08 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
120
+ BA8F979B1FB6073800008C08 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
121
+ BAE345C41FB0F7FE00EF7D2B /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
122
+ BAE345C71FB0F80800EF7D2B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
123
+ BAE345C81FB0F81000EF7D2B /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
124
+ BAE345C91FB0F81A00EF7D2B /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
125
+ BAE345CA1FB0F82300EF7D2B /* CoreImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; };
126
+ BAE345CB1FB0F82B00EF7D2B /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = System/Library/Frameworks/CoreVideo.framework; sourceTree = SDKROOT; };
127
+ BAE345CC1FB0F83300EF7D2B /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
128
+ BAE345CD1FB0F83C00EF7D2B /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
129
+ BAE345CE1FB0F84300EF7D2B /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
130
+ BAE345CF1FB0F84A00EF7D2B /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
131
+ BAE345D01FB0F85300EF7D2B /* CoreBluetooth.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreBluetooth.framework; path = System/Library/Frameworks/CoreBluetooth.framework; sourceTree = SDKROOT; };
132
+ BAE345D11FB0F85B00EF7D2B /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
133
+ BAE345D21FB0F86300EF7D2B /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
134
+ BAE345D31FB0F86B00EF7D2B /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = System/Library/Frameworks/ExternalAccessory.framework; sourceTree = SDKROOT; };
135
+ BAE345D41FB0F87300EF7D2B /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
136
+ BAE345D51FB0F87A00EF7D2B /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
137
+ BAE345D61FB0F88400EF7D2B /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
138
+ BAE345D71FB0F88E00EF7D2B /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
139
+ /* End PBXFileReference section */
140
+
141
+ /* Begin PBXFrameworksBuildPhase section */
142
+ 381C10001F9823AD00A849FA /* Frameworks */ = {
143
+ isa = PBXFrameworksBuildPhase;
144
+ buildActionMask = 2147483647;
145
+ files = (
146
+ BA55ECD01FBB8BE600C82181 /* AurusEnterpriseSDK.framework in Frameworks */,
147
+ );
148
+ runOnlyForDeploymentPostprocessing = 0;
149
+ };
150
+ /* End PBXFrameworksBuildPhase section */
151
+
152
+ /* Begin PBXGroup section */
153
+ 381C0FFA1F9823AD00A849FA = {
154
+ isa = PBXGroup;
155
+ children = (
156
+ 381C10051F9823AD00A849FA /* SCPRNDeviceServices */,
157
+ 381C10041F9823AD00A849FA /* Products */,
158
+ 38AB31671F994ED0006E2214 /* Frameworks */,
159
+ );
160
+ sourceTree = "<group>";
161
+ };
162
+ 381C10041F9823AD00A849FA /* Products */ = {
163
+ isa = PBXGroup;
164
+ children = (
165
+ 381C10031F9823AD00A849FA /* libSCPRNDeviceServices.a */,
166
+ );
167
+ name = Products;
168
+ sourceTree = "<group>";
169
+ };
170
+ 381C10051F9823AD00A849FA /* SCPRNDeviceServices */ = {
171
+ isa = PBXGroup;
172
+ children = (
173
+ BA2093CF1FB650800062B51D /* AdyenPaymentTerminal.h */,
174
+ BA2093CE1FB650800062B51D /* AdyenPaymentTerminal.m */,
175
+ 3856B5361F9FD52F008E4649 /* AurusPaymentTerminal.h */,
176
+ 3856B5391F9FD52F008E4649 /* AurusPaymentTerminal.m */,
177
+ 38AB315E1F99465F006E2214 /* VendorPaymentTerminal.h */,
178
+ 38AB315F1F99465F006E2214 /* VendorPaymentTerminal.m */,
179
+ );
180
+ path = SCPRNDeviceServices;
181
+ sourceTree = "<group>";
182
+ };
183
+ 38AB31671F994ED0006E2214 /* Frameworks */ = {
184
+ isa = PBXGroup;
185
+ children = (
186
+ BA55ECCF1FBB8BE500C82181 /* AurusEnterpriseSDK.framework */,
187
+ BA8F979B1FB6073800008C08 /* libsqlite3.0.tbd */,
188
+ BA8F97991FB6073100008C08 /* libsqlite3.tbd */,
189
+ BA8F97971FB6072700008C08 /* libstdc++.6.tbd */,
190
+ BA8F97951FB6072100008C08 /* libstdc++.tbd */,
191
+ BA8F97931FB606FC00008C08 /* libz.1.2.5.tbd */,
192
+ BA8F97911FB606F500008C08 /* libz.tbd */,
193
+ BAE345D71FB0F88E00EF7D2B /* AudioToolbox.framework */,
194
+ BAE345D61FB0F88400EF7D2B /* MessageUI.framework */,
195
+ BAE345D51FB0F87A00EF7D2B /* CFNetwork.framework */,
196
+ BAE345D41FB0F87300EF7D2B /* MediaPlayer.framework */,
197
+ BAE345D31FB0F86B00EF7D2B /* ExternalAccessory.framework */,
198
+ BAE345D21FB0F86300EF7D2B /* SystemConfiguration.framework */,
199
+ BAE345D11FB0F85B00EF7D2B /* QuartzCore.framework */,
200
+ BAE345D01FB0F85300EF7D2B /* CoreBluetooth.framework */,
201
+ BAE345CF1FB0F84A00EF7D2B /* CoreLocation.framework */,
202
+ BAE345CE1FB0F84300EF7D2B /* CoreGraphics.framework */,
203
+ BAE345CD1FB0F83C00EF7D2B /* CoreMedia.framework */,
204
+ BAE345CC1FB0F83300EF7D2B /* Security.framework */,
205
+ BAE345CB1FB0F82B00EF7D2B /* CoreVideo.framework */,
206
+ BAE345CA1FB0F82300EF7D2B /* CoreImage.framework */,
207
+ BAE345C91FB0F81A00EF7D2B /* CoreFoundation.framework */,
208
+ BAE345C81FB0F81000EF7D2B /* UIKit.framework */,
209
+ BAE345C71FB0F80800EF7D2B /* Foundation.framework */,
210
+ BAE345C41FB0F7FE00EF7D2B /* AVFoundation.framework */,
211
+ 38AB31711F994F11006E2214 /* RCTLinkingManager.h */,
212
+ 38AB31681F994ED0006E2214 /* RCTLinking.xcodeproj */,
213
+ BA2093B31FB6394F0062B51D /* React.xcodeproj */,
214
+ );
215
+ name = Frameworks;
216
+ sourceTree = "<group>";
217
+ };
218
+ 38AB31691F994ED0006E2214 /* Products */ = {
219
+ isa = PBXGroup;
220
+ children = (
221
+ 38AB316E1F994ED0006E2214 /* libRCTLinking.a */,
222
+ 38AB31701F994ED0006E2214 /* libRCTLinking-tvOS.a */,
223
+ );
224
+ name = Products;
225
+ sourceTree = "<group>";
226
+ };
227
+ BA2093B41FB6394F0062B51D /* Products */ = {
228
+ isa = PBXGroup;
229
+ children = (
230
+ BA2093BF1FB6394F0062B51D /* libReact.a */,
231
+ BA2093C11FB6394F0062B51D /* libReact.a */,
232
+ BA2093C31FB6394F0062B51D /* libyoga.a */,
233
+ BA2093C51FB6394F0062B51D /* libyoga.a */,
234
+ BA2093C71FB6394F0062B51D /* libcxxreact.a */,
235
+ BA2093C91FB6394F0062B51D /* libcxxreact.a */,
236
+ BA2093CB1FB6394F0062B51D /* libjschelpers.a */,
237
+ BA2093CD1FB6394F0062B51D /* libjschelpers.a */,
238
+ );
239
+ name = Products;
240
+ sourceTree = "<group>";
241
+ };
242
+ /* End PBXGroup section */
243
+
244
+ /* Begin PBXNativeTarget section */
245
+ 381C10021F9823AD00A849FA /* SCPRNDeviceServices */ = {
246
+ isa = PBXNativeTarget;
247
+ buildConfigurationList = 381C100C1F9823AD00A849FA /* Build configuration list for PBXNativeTarget "SCPRNDeviceServices" */;
248
+ buildPhases = (
249
+ 381C0FFF1F9823AD00A849FA /* Sources */,
250
+ 381C10001F9823AD00A849FA /* Frameworks */,
251
+ 381C10011F9823AD00A849FA /* CopyFiles */,
252
+ );
253
+ buildRules = (
254
+ );
255
+ dependencies = (
256
+ );
257
+ name = SCPRNDeviceServices;
258
+ productName = SCPRNDeviceServices;
259
+ productReference = 381C10031F9823AD00A849FA /* libSCPRNDeviceServices.a */;
260
+ productType = "com.apple.product-type.library.static";
261
+ };
262
+ /* End PBXNativeTarget section */
263
+
264
+ /* Begin PBXProject section */
265
+ 381C0FFB1F9823AD00A849FA /* Project object */ = {
266
+ isa = PBXProject;
267
+ attributes = {
268
+ LastUpgradeCheck = 0900;
269
+ ORGANIZATIONNAME = Aptos;
270
+ TargetAttributes = {
271
+ 381C10021F9823AD00A849FA = {
272
+ CreatedOnToolsVersion = 9.0;
273
+ ProvisioningStyle = Automatic;
274
+ };
275
+ };
276
+ };
277
+ buildConfigurationList = 381C0FFE1F9823AD00A849FA /* Build configuration list for PBXProject "SCPRNDeviceServices" */;
278
+ compatibilityVersion = "Xcode 8.0";
279
+ developmentRegion = en;
280
+ hasScannedForEncodings = 0;
281
+ knownRegions = (
282
+ en,
283
+ );
284
+ mainGroup = 381C0FFA1F9823AD00A849FA;
285
+ productRefGroup = 381C10041F9823AD00A849FA /* Products */;
286
+ projectDirPath = "";
287
+ projectReferences = (
288
+ {
289
+ ProductGroup = 38AB31691F994ED0006E2214 /* Products */;
290
+ ProjectRef = 38AB31681F994ED0006E2214 /* RCTLinking.xcodeproj */;
291
+ },
292
+ {
293
+ ProductGroup = BA2093B41FB6394F0062B51D /* Products */;
294
+ ProjectRef = BA2093B31FB6394F0062B51D /* React.xcodeproj */;
295
+ },
296
+ );
297
+ projectRoot = "";
298
+ targets = (
299
+ 381C10021F9823AD00A849FA /* SCPRNDeviceServices */,
300
+ );
301
+ };
302
+ /* End PBXProject section */
303
+
304
+ /* Begin PBXReferenceProxy section */
305
+ 38AB316E1F994ED0006E2214 /* libRCTLinking.a */ = {
306
+ isa = PBXReferenceProxy;
307
+ fileType = archive.ar;
308
+ path = libRCTLinking.a;
309
+ remoteRef = 38AB316D1F994ED0006E2214 /* PBXContainerItemProxy */;
310
+ sourceTree = BUILT_PRODUCTS_DIR;
311
+ };
312
+ 38AB31701F994ED0006E2214 /* libRCTLinking-tvOS.a */ = {
313
+ isa = PBXReferenceProxy;
314
+ fileType = archive.ar;
315
+ path = "libRCTLinking-tvOS.a";
316
+ remoteRef = 38AB316F1F994ED0006E2214 /* PBXContainerItemProxy */;
317
+ sourceTree = BUILT_PRODUCTS_DIR;
318
+ };
319
+ BA2093BF1FB6394F0062B51D /* libReact.a */ = {
320
+ isa = PBXReferenceProxy;
321
+ fileType = archive.ar;
322
+ path = libReact.a;
323
+ remoteRef = BA2093BE1FB6394F0062B51D /* PBXContainerItemProxy */;
324
+ sourceTree = BUILT_PRODUCTS_DIR;
325
+ };
326
+ BA2093C11FB6394F0062B51D /* libReact.a */ = {
327
+ isa = PBXReferenceProxy;
328
+ fileType = archive.ar;
329
+ path = libReact.a;
330
+ remoteRef = BA2093C01FB6394F0062B51D /* PBXContainerItemProxy */;
331
+ sourceTree = BUILT_PRODUCTS_DIR;
332
+ };
333
+ BA2093C31FB6394F0062B51D /* libyoga.a */ = {
334
+ isa = PBXReferenceProxy;
335
+ fileType = archive.ar;
336
+ path = libyoga.a;
337
+ remoteRef = BA2093C21FB6394F0062B51D /* PBXContainerItemProxy */;
338
+ sourceTree = BUILT_PRODUCTS_DIR;
339
+ };
340
+ BA2093C51FB6394F0062B51D /* libyoga.a */ = {
341
+ isa = PBXReferenceProxy;
342
+ fileType = archive.ar;
343
+ path = libyoga.a;
344
+ remoteRef = BA2093C41FB6394F0062B51D /* PBXContainerItemProxy */;
345
+ sourceTree = BUILT_PRODUCTS_DIR;
346
+ };
347
+ BA2093C71FB6394F0062B51D /* libcxxreact.a */ = {
348
+ isa = PBXReferenceProxy;
349
+ fileType = archive.ar;
350
+ path = libcxxreact.a;
351
+ remoteRef = BA2093C61FB6394F0062B51D /* PBXContainerItemProxy */;
352
+ sourceTree = BUILT_PRODUCTS_DIR;
353
+ };
354
+ BA2093C91FB6394F0062B51D /* libcxxreact.a */ = {
355
+ isa = PBXReferenceProxy;
356
+ fileType = archive.ar;
357
+ path = libcxxreact.a;
358
+ remoteRef = BA2093C81FB6394F0062B51D /* PBXContainerItemProxy */;
359
+ sourceTree = BUILT_PRODUCTS_DIR;
360
+ };
361
+ BA2093CB1FB6394F0062B51D /* libjschelpers.a */ = {
362
+ isa = PBXReferenceProxy;
363
+ fileType = archive.ar;
364
+ path = libjschelpers.a;
365
+ remoteRef = BA2093CA1FB6394F0062B51D /* PBXContainerItemProxy */;
366
+ sourceTree = BUILT_PRODUCTS_DIR;
367
+ };
368
+ BA2093CD1FB6394F0062B51D /* libjschelpers.a */ = {
369
+ isa = PBXReferenceProxy;
370
+ fileType = archive.ar;
371
+ path = libjschelpers.a;
372
+ remoteRef = BA2093CC1FB6394F0062B51D /* PBXContainerItemProxy */;
373
+ sourceTree = BUILT_PRODUCTS_DIR;
374
+ };
375
+ /* End PBXReferenceProxy section */
376
+
377
+ /* Begin PBXSourcesBuildPhase section */
378
+ 381C0FFF1F9823AD00A849FA /* Sources */ = {
379
+ isa = PBXSourcesBuildPhase;
380
+ buildActionMask = 2147483647;
381
+ files = (
382
+ 3856B53A1F9FD52F008E4649 /* AurusPaymentTerminal.m in Sources */,
383
+ 38AB31641F99465F006E2214 /* VendorPaymentTerminal.m in Sources */,
384
+ BA2093D01FB650800062B51D /* AdyenPaymentTerminal.m in Sources */,
385
+ );
386
+ runOnlyForDeploymentPostprocessing = 0;
387
+ };
388
+ /* End PBXSourcesBuildPhase section */
389
+
390
+ /* Begin XCBuildConfiguration section */
391
+ 381C100A1F9823AD00A849FA /* Debug */ = {
392
+ isa = XCBuildConfiguration;
393
+ buildSettings = {
394
+ ALWAYS_SEARCH_USER_PATHS = NO;
395
+ CLANG_ANALYZER_NONNULL = YES;
396
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
397
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
398
+ CLANG_CXX_LIBRARY = "libc++";
399
+ CLANG_ENABLE_MODULES = YES;
400
+ CLANG_ENABLE_OBJC_ARC = YES;
401
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
402
+ CLANG_WARN_BOOL_CONVERSION = YES;
403
+ CLANG_WARN_COMMA = YES;
404
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
405
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
406
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
407
+ CLANG_WARN_EMPTY_BODY = YES;
408
+ CLANG_WARN_ENUM_CONVERSION = YES;
409
+ CLANG_WARN_INFINITE_RECURSION = YES;
410
+ CLANG_WARN_INT_CONVERSION = YES;
411
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
412
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
413
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
414
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
415
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
416
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
417
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
418
+ CLANG_WARN_UNREACHABLE_CODE = YES;
419
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
420
+ CODE_SIGN_IDENTITY = "iPhone Developer";
421
+ COPY_PHASE_STRIP = NO;
422
+ DEBUG_INFORMATION_FORMAT = dwarf;
423
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
424
+ ENABLE_TESTABILITY = YES;
425
+ GCC_C_LANGUAGE_STANDARD = gnu11;
426
+ GCC_DYNAMIC_NO_PIC = NO;
427
+ GCC_NO_COMMON_BLOCKS = YES;
428
+ GCC_OPTIMIZATION_LEVEL = 0;
429
+ GCC_PREPROCESSOR_DEFINITIONS = (
430
+ "DEBUG=1",
431
+ "$(inherited)",
432
+ );
433
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
434
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
435
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
436
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
437
+ GCC_WARN_UNUSED_FUNCTION = YES;
438
+ GCC_WARN_UNUSED_VARIABLE = YES;
439
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
440
+ MTL_ENABLE_DEBUG_INFO = YES;
441
+ ONLY_ACTIVE_ARCH = YES;
442
+ SDKROOT = iphoneos;
443
+ };
444
+ name = Debug;
445
+ };
446
+ 381C100B1F9823AD00A849FA /* Release */ = {
447
+ isa = XCBuildConfiguration;
448
+ buildSettings = {
449
+ ALWAYS_SEARCH_USER_PATHS = NO;
450
+ CLANG_ANALYZER_NONNULL = YES;
451
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
452
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
453
+ CLANG_CXX_LIBRARY = "libc++";
454
+ CLANG_ENABLE_MODULES = YES;
455
+ CLANG_ENABLE_OBJC_ARC = YES;
456
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
457
+ CLANG_WARN_BOOL_CONVERSION = YES;
458
+ CLANG_WARN_COMMA = YES;
459
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
460
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
461
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
462
+ CLANG_WARN_EMPTY_BODY = YES;
463
+ CLANG_WARN_ENUM_CONVERSION = YES;
464
+ CLANG_WARN_INFINITE_RECURSION = YES;
465
+ CLANG_WARN_INT_CONVERSION = YES;
466
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
467
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
468
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
469
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
470
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
471
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
472
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
473
+ CLANG_WARN_UNREACHABLE_CODE = YES;
474
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
475
+ CODE_SIGN_IDENTITY = "iPhone Distribution";
476
+ COPY_PHASE_STRIP = NO;
477
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
478
+ ENABLE_NS_ASSERTIONS = NO;
479
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
480
+ GCC_C_LANGUAGE_STANDARD = gnu11;
481
+ GCC_NO_COMMON_BLOCKS = YES;
482
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
483
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
484
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
485
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
486
+ GCC_WARN_UNUSED_FUNCTION = YES;
487
+ GCC_WARN_UNUSED_VARIABLE = YES;
488
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
489
+ MTL_ENABLE_DEBUG_INFO = NO;
490
+ SDKROOT = iphoneos;
491
+ VALIDATE_PRODUCT = YES;
492
+ };
493
+ name = Release;
494
+ };
495
+ 381C100D1F9823AD00A849FA /* Debug */ = {
496
+ isa = XCBuildConfiguration;
497
+ buildSettings = {
498
+ CODE_SIGN_STYLE = Automatic;
499
+ DEVELOPMENT_TEAM = 426NTBTTC9;
500
+ FRAMEWORK_SEARCH_PATHS = (
501
+ "$(inherited)",
502
+ "$(PROJECT_DIR)",
503
+ );
504
+ OTHER_LDFLAGS = "-ObjC";
505
+ PRODUCT_NAME = "$(TARGET_NAME)";
506
+ SKIP_INSTALL = YES;
507
+ TARGETED_DEVICE_FAMILY = "1,2";
508
+ };
509
+ name = Debug;
510
+ };
511
+ 381C100E1F9823AD00A849FA /* Release */ = {
512
+ isa = XCBuildConfiguration;
513
+ buildSettings = {
514
+ CODE_SIGN_STYLE = Automatic;
515
+ DEVELOPMENT_TEAM = 426NTBTTC9;
516
+ FRAMEWORK_SEARCH_PATHS = (
517
+ "$(inherited)",
518
+ "$(PROJECT_DIR)",
519
+ );
520
+ OTHER_LDFLAGS = "-ObjC";
521
+ PRODUCT_NAME = "$(TARGET_NAME)";
522
+ SKIP_INSTALL = YES;
523
+ TARGETED_DEVICE_FAMILY = "1,2";
524
+ };
525
+ name = Release;
526
+ };
527
+ /* End XCBuildConfiguration section */
528
+
529
+ /* Begin XCConfigurationList section */
530
+ 381C0FFE1F9823AD00A849FA /* Build configuration list for PBXProject "SCPRNDeviceServices" */ = {
531
+ isa = XCConfigurationList;
532
+ buildConfigurations = (
533
+ 381C100A1F9823AD00A849FA /* Debug */,
534
+ 381C100B1F9823AD00A849FA /* Release */,
535
+ );
536
+ defaultConfigurationIsVisible = 0;
537
+ defaultConfigurationName = Release;
538
+ };
539
+ 381C100C1F9823AD00A849FA /* Build configuration list for PBXNativeTarget "SCPRNDeviceServices" */ = {
540
+ isa = XCConfigurationList;
541
+ buildConfigurations = (
542
+ 381C100D1F9823AD00A849FA /* Debug */,
543
+ 381C100E1F9823AD00A849FA /* Release */,
544
+ );
545
+ defaultConfigurationIsVisible = 0;
546
+ defaultConfigurationName = Release;
547
+ };
548
+ /* End XCConfigurationList section */
549
+ };
550
+ rootObject = 381C0FFB1F9823AD00A849FA /* Project object */;
551
+ }
@@ -0,0 +1,77 @@
1
+ import { EventEmitter } from "fbemitter";
2
+ import { EmitterSubscription, NativeEventEmitter } from "react-native";
3
+ import { IAuthorizationContext, IBankCardRequest, IGiftCardRequest, IPaymentDeviceConfiguration } from "../";
4
+ import { IPaymentDevice } from "../interfaces/payment/IPayment";
5
+ /**
6
+ * This is the interface that the native (bridge) class implements.
7
+ *
8
+ * Note: any changes to the native API must be reflected here and vice-versa.
9
+ */
10
+ export interface INativeAurusPaymentTerminal {
11
+ initialize(): void;
12
+ OnAESDKProcessRequest(WithRequest: string): void;
13
+ }
14
+ export declare class AurusPaymentDevice implements IPaymentDevice {
15
+ protected _devicePaymentTerminal: INativeAurusPaymentTerminal;
16
+ protected _deviceNotificationEmitter: EventEmitter;
17
+ protected _deviceSubscriptions: EmitterSubscription[];
18
+ protected _nativeEventEmitter: NativeEventEmitter;
19
+ private _initInProgress;
20
+ private _registrationInProgress;
21
+ /**
22
+ * To avoid pushing native component awareness onto the rest of the app, the native objects
23
+ * are created in the constructor, which only accepts JavaScript parameters.
24
+ *
25
+ * @param {EventEmitter} deviceNotificationEmitter
26
+ */
27
+ constructor(paymentConfig: IPaymentDeviceConfiguration, deviceNotificationEmitter: EventEmitter);
28
+ initialize(): Promise<void>;
29
+ start(): Promise<void>;
30
+ captureSale(authRequest: IBankCardRequest): Promise<IAuthorizationContext>;
31
+ captureRefund(authRequest: IBankCardRequest): Promise<IAuthorizationContext>;
32
+ giftcardActivate(authRequest: IGiftCardRequest): Promise<IAuthorizationContext>;
33
+ giftcardBalance(authRequest: IGiftCardRequest): Promise<IAuthorizationContext>;
34
+ giftcardIssue(authRequest: IGiftCardRequest): Promise<IAuthorizationContext>;
35
+ giftcardRedeem(authRequest: IGiftCardRequest): Promise<IAuthorizationContext>;
36
+ void(authRequest: IBankCardRequest): Promise<IAuthorizationContext>;
37
+ stop(): Promise<void>;
38
+ tearDown(): Promise<void>;
39
+ processTimeout(): Promise<void>;
40
+ private authorize(authRequest);
41
+ private sendResponse(authResponse, event?);
42
+ /**
43
+ * This method handles events published by the native components. This is an adapter between the native and JavaScript
44
+ * components for asynchronous events from the native layer.
45
+ *
46
+ * @param args
47
+ * @return {any}
48
+ */
49
+ private onAESDKResponse(...args);
50
+ private sendCancelTranRequest();
51
+ private sendCancelLastTranRequest();
52
+ private sendTransRequest(getCardBinResp);
53
+ private sendCardTransRequest();
54
+ /**
55
+ * Sends a GetCardBinRequest to request card data from teh device
56
+ * @param authRequest
57
+ */
58
+ private sendGetCardBin(authRequest);
59
+ /**
60
+ * Sends an AESDKRegistrationRequest to register the device
61
+ * @param authRequest
62
+ */
63
+ private sendAESDKRegistration(authRequest);
64
+ private handleAESDKResponse(xml);
65
+ private convertXmlToJs(xml);
66
+ private processResponse(response);
67
+ private processTrans(response);
68
+ private processGetCardBin(response);
69
+ private processCancelTrans(response);
70
+ private processAESDKRegistration(response);
71
+ private processAESDK(response);
72
+ private mapAurusResponseCode(responseCode);
73
+ private mapAurusCardType(aurusCardType);
74
+ private mapAurusTenderType(aurusCardType);
75
+ private parseEMVData(data);
76
+ private parseEMVField(field, emvData);
77
+ }