@zkp2p/providers 3.0.0 → 4.0.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.
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
"includeAdditionalCookieDomains": [],
|
|
128
128
|
"useExternalAction": true,
|
|
129
129
|
"external": {
|
|
130
|
-
"actionLink": "
|
|
130
|
+
"actionLink": "https://cash.app/{{RECIPIENT_ID}}/{{AMOUNT}}",
|
|
131
131
|
"appStoreLink": "https://apps.apple.com/us/app/cash-app-mobile-banking/id711923939",
|
|
132
132
|
"playStoreLink": "https://play.google.com/store/apps/details?id=com.squareup.cash"
|
|
133
133
|
}
|
package/package.json
CHANGED
|
@@ -104,6 +104,13 @@
|
|
|
104
104
|
"actionLink": "venmo://paycharge?txn=pay&recipients={{RECIPIENT_ID}}¬e=🎁&amount={{AMOUNT}}",
|
|
105
105
|
"appStoreLink": "https://apps.apple.com/us/app/venmo/id351727428",
|
|
106
106
|
"playStoreLink": "https://play.google.com/store/apps/details?id=com.venmo"
|
|
107
|
+
},
|
|
108
|
+
"login": {
|
|
109
|
+
"usernameSelector": "#email, input[name=\"login_email\"], input[name=\"username\"], input[type=\"email\"], input[data-testid=\"text-input-username\"]",
|
|
110
|
+
"passwordSelector": "#password, input[name=\"login_password\"][type=\"password\"][data-testid=\"text-input-password\"]",
|
|
111
|
+
"nextSelector": "#btnNext, button[data-testid=\"button-next\"], button.next_button[type=\"submit\"]",
|
|
112
|
+
"submitSelector": "#btnLogin, button[data-testid=\"button-submit\"][type=\"submit\"], button.login_button[type=\"submit\"]",
|
|
113
|
+
"revealTimeoutMs": 5000
|
|
107
114
|
}
|
|
108
115
|
}
|
|
109
116
|
}
|
package/wise/transfer_wise.json
CHANGED
|
@@ -72,6 +72,14 @@
|
|
|
72
72
|
"type": "regex",
|
|
73
73
|
"value": "\"state\":\"OUTGOING_PAYMENT_SENT\",\"date\":(?<timestamp>[0-9]+)"
|
|
74
74
|
},
|
|
75
|
+
{
|
|
76
|
+
"type": "regex",
|
|
77
|
+
"value": "\"sourceAmount\":(?<sourceAmount>[0-9\\.]+)"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"type": "regex",
|
|
81
|
+
"value": "\"sourceCurrency\":\"(?<sourceCurrency>[^\"]+)\""
|
|
82
|
+
},
|
|
75
83
|
{
|
|
76
84
|
"type": "regex",
|
|
77
85
|
"value": "\"targetAmount\":(?<targetAmount>[0-9\\.]+)"
|
|
@@ -98,6 +106,14 @@
|
|
|
98
106
|
"jsonPath": "$.stateHistory",
|
|
99
107
|
"xPath": ""
|
|
100
108
|
},
|
|
109
|
+
{
|
|
110
|
+
"jsonPath": "$.sourceAmount",
|
|
111
|
+
"xPath": ""
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"jsonPath": "$.sourceCurrency",
|
|
115
|
+
"xPath": ""
|
|
116
|
+
},
|
|
101
117
|
{
|
|
102
118
|
"jsonPath": "$.targetAmount",
|
|
103
119
|
"xPath": ""
|
|
@@ -117,16 +133,17 @@
|
|
|
117
133
|
"android": "Mozilla/5.0 (Linux; Android 13; Pixel 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.207 Mobile Safari/537.36",
|
|
118
134
|
"ios": "Mozilla/5.0 (Macintosh; Intel Mac OS X 13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Safari/605.1.15"
|
|
119
135
|
},
|
|
120
|
-
"useExternalAction":
|
|
136
|
+
"useExternalAction": true,
|
|
121
137
|
"external": {
|
|
122
138
|
"actionLink": "transferwise://pay/me/{{RECIPIENT_ID}}",
|
|
123
139
|
"appStoreLink": "https://apps.apple.com/us/app/wise-international-transfers/id612261027",
|
|
124
140
|
"playStoreLink": "https://play.google.com/store/apps/details?id=com.transferwise.android"
|
|
125
141
|
},
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
142
|
+
"login": {
|
|
143
|
+
"usernameSelector": "#email, input[name=\"email\"][type=\"email\"], input.cs-email[type=\"email\"]",
|
|
144
|
+
"passwordSelector": "#password, input[name=\"password\"][type=\"password\"], input.cs-password[type=\"password\"]",
|
|
145
|
+
"submitSelector": "button[type=\"submit\"]",
|
|
146
|
+
"revealTimeoutMs": 5000
|
|
130
147
|
}
|
|
131
148
|
}
|
|
132
149
|
}
|