@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 +9 -0
- package/README.md +2 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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
|
|