@motopays/pay-form 1.0.17 → 1.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.18
4
+
5
+ ### Added
6
+ - signature in request. Check README.md to see more details
7
+
8
+
9
+
10
+
11
+
3
12
  ## 1.0.17
4
13
 
5
14
  ### Added
package/README.md CHANGED
@@ -51,6 +51,7 @@ payment$.payment = {
51
51
  details?: ISimple<any>; //any object
52
52
  phoneNumber?: string;
53
53
  ipAddress?: string;
54
+ signature?: string;
54
55
 
55
56
  billingAddress?: {
56
57
  addressLine: string;
@@ -138,6 +139,7 @@ declare module "@motopays/pay-form/pay";
138
139
  | billingAddress.state | string | State of a customer bank account |
139
140
  | billingAddress.country | string | Country of a customer bank account (ISO 3166-1 alpha-2 country code). Example: US |
140
141
  | billingAddress.zip | string | Zip of a customer bank account |
142
+ | signature | string | The signature of the payment. For details contact technical support |
141
143
 
142
144
  ### Settings interface
143
145