@zkp2p/providers 7.0.0 → 7.2.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.
|
@@ -119,10 +119,11 @@
|
|
|
119
119
|
"mercadolibre.com",
|
|
120
120
|
"www.mercadolibre.com"
|
|
121
121
|
],
|
|
122
|
-
"
|
|
123
|
-
|
|
124
|
-
"
|
|
125
|
-
"
|
|
122
|
+
"useExternalAction": true,
|
|
123
|
+
"external": {
|
|
124
|
+
"actionLink": "mercadopago://",
|
|
125
|
+
"appStoreLink": "https://apps.apple.com/us/app/mercado-pago-cuenta-digital/id925436649",
|
|
126
|
+
"playStoreLink": "https://play.google.com/store/apps/details?id=com.mercadopago.wallet"
|
|
126
127
|
}
|
|
127
128
|
}
|
|
128
129
|
}
|
package/package.json
CHANGED
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
"body": "",
|
|
8
8
|
"metadata": {
|
|
9
9
|
"platform": "paypal",
|
|
10
|
-
"urlRegex": "https://www.paypal.com/myaccount/activities/filter/\\?q
|
|
10
|
+
"urlRegex": "^https://www.paypal.com/myaccount/activities/filter/\\?q=.*$",
|
|
11
11
|
"method": "GET",
|
|
12
12
|
"fallbackUrlRegex": "",
|
|
13
13
|
"fallbackMethod": "",
|
|
14
|
-
"preprocessRegex": "",
|
|
14
|
+
"preprocessRegex": "<pre[^>]*>([\\s\\S]*?)<\\/pre>",
|
|
15
15
|
"transactionsExtraction": {
|
|
16
16
|
"transactionJsonPathListSelector": "$.data.data.activity.transactions",
|
|
17
17
|
"transactionJsonPathSelectors": {
|
|
@@ -97,5 +97,21 @@
|
|
|
97
97
|
"jsonPath": "$.data.primitiveTimeCreated",
|
|
98
98
|
"xPath": ""
|
|
99
99
|
}
|
|
100
|
-
]
|
|
100
|
+
],
|
|
101
|
+
"mobile": {
|
|
102
|
+
"includeAdditionalCookieDomains": [],
|
|
103
|
+
"additionalClientOptions": {
|
|
104
|
+
"cipherSuites": [
|
|
105
|
+
"TLS_CHACHA20_POLY1305_SHA256",
|
|
106
|
+
"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
|
|
107
|
+
"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256"
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
"useExternalAction": true,
|
|
111
|
+
"external": {
|
|
112
|
+
"actionLink": "paypal://",
|
|
113
|
+
"appStoreLink": "https://apps.apple.com/us/app/paypal-pay-send-save/id283646709",
|
|
114
|
+
"playStoreLink": "https://play.google.com/store/apps/details?id=com.paypal.android.p2pmobile&hl=en_US"
|
|
115
|
+
}
|
|
116
|
+
}
|
|
101
117
|
}
|
|
@@ -130,5 +130,74 @@
|
|
|
130
130
|
"appStoreLink": "https://apps.apple.com/us/app/revolut/id370619147",
|
|
131
131
|
"playStoreLink": "https://play.google.com/store/apps/details?id=com.revolut.revolut"
|
|
132
132
|
}
|
|
133
|
-
}
|
|
133
|
+
},
|
|
134
|
+
"additionalProofs": [
|
|
135
|
+
{
|
|
136
|
+
"url": "https://app.revolut.com/api/retail/user/current/transactions/last?count=20",
|
|
137
|
+
"method": "GET",
|
|
138
|
+
"body": "",
|
|
139
|
+
"paramNames": [],
|
|
140
|
+
"paramSelectors": [],
|
|
141
|
+
"skipRequestHeaders": [
|
|
142
|
+
"x-device-id",
|
|
143
|
+
"Cookie"
|
|
144
|
+
],
|
|
145
|
+
"secretHeaders": [
|
|
146
|
+
"x-device-id",
|
|
147
|
+
"Cookie"
|
|
148
|
+
],
|
|
149
|
+
"responseMatches": [
|
|
150
|
+
{
|
|
151
|
+
"type": "regex",
|
|
152
|
+
"value": "\"amount\":(?<amount>[0-9\\-]+)"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"type": "regex",
|
|
156
|
+
"value": "\"completedDate\":(?<completedDate>[0-9]+)"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"type": "regex",
|
|
160
|
+
"value": "\"currency\":\"(?<currency>[^\"]+)\""
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"type": "regex",
|
|
164
|
+
"value": "\"id\":\"(?<id>[^\"]+)\""
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"type": "regex",
|
|
168
|
+
"value": "\"state\":\"(?<state>[^\"]+)\""
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"type": "regex",
|
|
172
|
+
"value": "\"username\":\"(?<username>[^\"]+)\""
|
|
173
|
+
}
|
|
174
|
+
],
|
|
175
|
+
"responseRedactions": [
|
|
176
|
+
{
|
|
177
|
+
"jsonPath": "$.[{{INDEX}}].counterpart.amount",
|
|
178
|
+
"xPath": ""
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"jsonPath": "$.[{{INDEX}}].completedDate",
|
|
182
|
+
"xPath": ""
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"jsonPath": "$.[{{INDEX}}].counterpart.currency",
|
|
186
|
+
"xPath": ""
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"jsonPath": "$.[{{INDEX}}].id",
|
|
190
|
+
"xPath": ""
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"jsonPath": "$.[{{INDEX}}].recipient.username",
|
|
194
|
+
"xPath": ""
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"jsonPath": "$.[{{INDEX}}].state",
|
|
198
|
+
"xPath": ""
|
|
199
|
+
}
|
|
200
|
+
]
|
|
201
|
+
}
|
|
202
|
+
]
|
|
134
203
|
}
|