@zkp2p/providers 7.9.0 → 7.9.1-rc.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.
- package/.claude/worktrees/paypal-note-optional-redaction/LICENSE +21 -0
- package/.claude/worktrees/paypal-note-optional-redaction/README.md +546 -0
- package/.claude/worktrees/paypal-note-optional-redaction/alipay/register_alipay.json +58 -0
- package/.claude/worktrees/paypal-note-optional-redaction/alipay/transfer_alipay.json +87 -0
- package/.claude/worktrees/paypal-note-optional-redaction/bankofamerica/transfer_zelle.json +126 -0
- package/.claude/worktrees/paypal-note-optional-redaction/cashapp/transfer_cashapp.json +147 -0
- package/.claude/worktrees/paypal-note-optional-redaction/chase/transfer_zelle.json +156 -0
- package/.claude/worktrees/paypal-note-optional-redaction/chime/transfer_chime.json +130 -0
- package/.claude/worktrees/paypal-note-optional-redaction/citi/transfer_zelle.json +126 -0
- package/.claude/worktrees/paypal-note-optional-redaction/idfc/transfer_idfc.json +109 -0
- package/.claude/worktrees/paypal-note-optional-redaction/luxon/transfer_luxon.json +119 -0
- package/.claude/worktrees/paypal-note-optional-redaction/mercadopago/transfer_mercadopago.json +129 -0
- package/.claude/worktrees/paypal-note-optional-redaction/monzo/transfer_monzo.json +130 -0
- package/.claude/worktrees/paypal-note-optional-redaction/n26/transfer_n26.json +130 -0
- package/.claude/worktrees/paypal-note-optional-redaction/package.json +22 -0
- package/.claude/worktrees/paypal-note-optional-redaction/paypal/register_paypal.json +89 -0
- package/.claude/worktrees/paypal-note-optional-redaction/paypal/transfer_business_paypal.json +124 -0
- package/.claude/worktrees/paypal-note-optional-redaction/paypal/transfer_paypal.json +138 -0
- package/.claude/worktrees/paypal-note-optional-redaction/providers.json +23 -0
- package/.claude/worktrees/paypal-note-optional-redaction/revolut/transfer_revolut.json +138 -0
- package/.claude/worktrees/paypal-note-optional-redaction/royalbankcanada/transfer_interac.json +89 -0
- package/.claude/worktrees/paypal-note-optional-redaction/td_bank/transfer_zelle.json +112 -0
- package/.claude/worktrees/paypal-note-optional-redaction/usbank/transfer_zelle.json +127 -0
- package/.claude/worktrees/paypal-note-optional-redaction/venmo/register_venmo.json +77 -0
- package/.claude/worktrees/paypal-note-optional-redaction/venmo/transfer_venmo.json +120 -0
- package/.claude/worktrees/paypal-note-optional-redaction/wellsfargo/transfer_zelle.json +137 -0
- package/.claude/worktrees/paypal-note-optional-redaction/wise/register_wise.json +81 -0
- package/.claude/worktrees/paypal-note-optional-redaction/wise/transfer_wise.json +157 -0
- package/package.json +1 -1
- package/paypal/transfer_paypal.json +2 -3
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actionType": "transfer_alipay",
|
|
3
|
+
"proofEngine": "reclaim",
|
|
4
|
+
"authLink": "https://consumeprod.alipay.com/record/standard.htm",
|
|
5
|
+
"url": "https://shenghuo.alipay.com/send/queryTransferDetail.htm?tradeNo={{TRADE_NO}}",
|
|
6
|
+
"method": "GET",
|
|
7
|
+
"body": "",
|
|
8
|
+
"metadata": {
|
|
9
|
+
"platform": "alipay",
|
|
10
|
+
"urlRegex": "https://consumeprod.alipay.com/record/standard.htm",
|
|
11
|
+
"method": "GET",
|
|
12
|
+
"fallbackUrlRegex": "",
|
|
13
|
+
"fallbackMethod": "",
|
|
14
|
+
"preprocessRegex": "",
|
|
15
|
+
"transactionsExtraction": {
|
|
16
|
+
"transactionXPathListSelector": "//table[@id='tradeRecordsIndex']//tbody/tr[contains(@class,'J-item') and .//li[contains(@data-link,'send/queryTransferDetail.htm')]]",
|
|
17
|
+
"transactionXPathSelectors": {
|
|
18
|
+
"amount": "normalize-space(.//td[contains(@class,'amount')]/span[contains(@class,'amount')])",
|
|
19
|
+
"paymentId": "normalize-space(.//a[contains(@class,'J-tradeNo')]/@data-clipboard-text)",
|
|
20
|
+
"recipient": "normalize-space(substring-before(.//td[@class='name']/p[contains(@class,'name')][1], '|'))",
|
|
21
|
+
"date": "normalize-space(concat(.//td[@class='time']/p[1], ' ', .//td[@class='time']/p[2]))"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"proofMetadataSelectors": [
|
|
25
|
+
{
|
|
26
|
+
"type": "regex",
|
|
27
|
+
"value": "交易号\\s+(\\d{16,})"
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
"paramNames": [
|
|
32
|
+
"TRADE_NO"
|
|
33
|
+
],
|
|
34
|
+
"paramSelectors": [
|
|
35
|
+
{
|
|
36
|
+
"type": "xPath",
|
|
37
|
+
"value": "normalize-space((//table[@id='tradeRecordsIndex']//tbody/tr[contains(@class,'J-item') and .//li[contains(@data-link,'send/queryTransferDetail.htm')]]//a[contains(@class,'J-tradeNo')]/@data-clipboard-text)[{{INDEX}} + 1])"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"skipRequestHeaders": [
|
|
41
|
+
"Cookie",
|
|
42
|
+
"Accept-Encoding"
|
|
43
|
+
],
|
|
44
|
+
"secretHeaders": [
|
|
45
|
+
"Cookie"
|
|
46
|
+
],
|
|
47
|
+
"responseMatches": [
|
|
48
|
+
{
|
|
49
|
+
"type": "regex",
|
|
50
|
+
"value": "<span class=\"J-emoji\"[^>]*data-emoji=\"(?<recipientIdName>[^\"]+)\"><\\/span>\\r\\n\\s*\\t\\t(?<recipientId>[^\\r\\n]+)"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"type": "regex",
|
|
54
|
+
"value": "<td\\s+class=\"postalfee\">\\s*(?<postalFee>[^<]+)<\\/td>"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"type": "regex",
|
|
58
|
+
"value": "<td\\s+class=\"amount\">\\s*=?(?<totalAmount>[^<]+)<\\/td>"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"type": "regex",
|
|
62
|
+
"value": "<td\\s+class=\"time\"[^>]*>\\s*(?<dateCompleted>[^\\r\\n]+)"
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"responseRedactions": [
|
|
66
|
+
{
|
|
67
|
+
"regex": "<th>¶Ô·½ÐÅÏ¢£º<\\/th>(.*?)<\\/tr>",
|
|
68
|
+
"jsonPath": "",
|
|
69
|
+
"xPath": ""
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"regex": "<td\\s+class=\"postalfee\">[\\s\\S]*?<\\/td>",
|
|
73
|
+
"jsonPath": "",
|
|
74
|
+
"xPath": ""
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"regex": "<td\\s+class=\"amount\">[\\s\\S]*?<\\/td>",
|
|
78
|
+
"jsonPath": "",
|
|
79
|
+
"xPath": ""
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"regex": "<th class=\"time\">(.*?)<\\/th>[\\s\\S]*?<td\\s+class=\"time\">[\\s\\S]*?<\\/td>",
|
|
83
|
+
"jsonPath": "",
|
|
84
|
+
"xPath": ""
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actionType": "transfer_zelle",
|
|
3
|
+
"proofEngine": "reclaim",
|
|
4
|
+
"authLink": "https://secure.bankofamerica.com/pay-transfer-pay-portal/?request_locale=en-us&returnSiteIndicator=GAIMW&target=paymentactivity#/",
|
|
5
|
+
"url": "https://secure.bankofamerica.com/ogateway/payment-activity/api/v4/activity",
|
|
6
|
+
"method": "POST",
|
|
7
|
+
"body": "{\"filterV1\":{\"dateFilter\":{\"timeframeForHistory\":\"DEFAULTDAYS\"}},\"sortCriteriaV1\":{\"fieldName\":\"DATE\",\"order\":\"DESCENDING\"},\"pageInfo\":{\"pageNum\":1,\"pageSize\":\"\"}}",
|
|
8
|
+
"metadata": {
|
|
9
|
+
"shouldReplayRequestInPage": true,
|
|
10
|
+
"platform": "zelle",
|
|
11
|
+
"urlRegex": "https://secure.bankofamerica.com/ogateway/payment-activity/api/v4/activity",
|
|
12
|
+
"method": "POST",
|
|
13
|
+
"fallbackUrlRegex": "https://secure.bankofamerica.com/myaccounts/omni/rest/CommunicationBarkerCount",
|
|
14
|
+
"fallbackMethod": "GET",
|
|
15
|
+
"preprocessRegex": "",
|
|
16
|
+
"transactionsExtraction": {
|
|
17
|
+
"transactionJsonPathListSelector": "$.completedTransactions",
|
|
18
|
+
"transactionJsonPathSelectors": {
|
|
19
|
+
"recipient": "$.targetAccount.displayName",
|
|
20
|
+
"amount": "$.amount",
|
|
21
|
+
"date": "$.transactionDate",
|
|
22
|
+
"paymentId": "$.confirmationNumber"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"proofMetadataSelectors": [
|
|
26
|
+
{
|
|
27
|
+
"type": "jsonPath",
|
|
28
|
+
"value": "$.completedTransactions[{{INDEX}}].confirmationNumber"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"type": "jsonPath",
|
|
32
|
+
"value": "$.completedTransactions[{{INDEX}}].targetAccount.displayName"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"type": "jsonPath",
|
|
36
|
+
"value": "$.completedTransactions[{{INDEX}}].amount"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"type": "jsonPath",
|
|
40
|
+
"value": "$.completedTransactions[{{INDEX}}].transactionDate"
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
"paramNames": [],
|
|
45
|
+
"paramSelectors": [],
|
|
46
|
+
"skipRequestHeaders": [
|
|
47
|
+
"Cookie",
|
|
48
|
+
"Accept-Encoding"
|
|
49
|
+
],
|
|
50
|
+
"secretHeaders": [
|
|
51
|
+
"Cookie"
|
|
52
|
+
],
|
|
53
|
+
"responseMatches": [
|
|
54
|
+
{
|
|
55
|
+
"type": "regex",
|
|
56
|
+
"value": "\"confirmationNumber\":\"(?<confirmationNumber>[^\"]+)\""
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"type": "regex",
|
|
60
|
+
"value": "\"status\":\"(?<status>[^\"]+)\""
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"type": "regex",
|
|
64
|
+
"value": "\"transactionDate\":\"(?<transactionDate>[^\"]+)\""
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"type": "regex",
|
|
68
|
+
"value": "\"amount\":(?<amount>[0-9\\.]+)"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"type": "regex",
|
|
72
|
+
"value": "\"aliasToken\":\"(?<aliasToken>[^\"]+)\""
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"responseRedactions": [
|
|
76
|
+
{
|
|
77
|
+
"jsonPath": "$.completedTransactions[{{INDEX}}].confirmationNumber",
|
|
78
|
+
"xPath": ""
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"jsonPath": "$.completedTransactions[{{INDEX}}].status",
|
|
82
|
+
"xPath": ""
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"jsonPath": "$.completedTransactions[{{INDEX}}].transactionDate",
|
|
86
|
+
"xPath": ""
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"jsonPath": "$.completedTransactions[{{INDEX}}].amount",
|
|
90
|
+
"xPath": ""
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"jsonPath": "$.completedTransactions[{{INDEX}}].targetAccount.aliasToken",
|
|
94
|
+
"xPath": ""
|
|
95
|
+
}
|
|
96
|
+
],
|
|
97
|
+
"additionalClientOptions": {
|
|
98
|
+
"supportedProtocolVersions": ["TLS1_2"],
|
|
99
|
+
"cipherSuites": [
|
|
100
|
+
"TLS_CHACHA20_POLY1305_SHA256",
|
|
101
|
+
"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
|
|
102
|
+
"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256"
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
"mobile": {
|
|
106
|
+
"includeAdditionalCookieDomains": [],
|
|
107
|
+
"additionalClientOptions": {
|
|
108
|
+
"supportedProtocolVersions": ["TLS1_2"],
|
|
109
|
+
"cipherSuites": [
|
|
110
|
+
"TLS_AES_128_GCM_SHA256",
|
|
111
|
+
"TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
|
|
112
|
+
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
"userAgent": {
|
|
116
|
+
"android": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36",
|
|
117
|
+
"ios": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36"
|
|
118
|
+
},
|
|
119
|
+
"useExternalAction": true,
|
|
120
|
+
"external": {
|
|
121
|
+
"actionLink": "bofa://movemoney",
|
|
122
|
+
"appStoreLink": "https://apps.apple.com/us/app/bank-of-america-mobile-banking/id284847138",
|
|
123
|
+
"playStoreLink": "https://play.google.com/store/apps/details?id=com.infonow.bofa"
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actionType": "transfer_cashapp",
|
|
3
|
+
"proofEngine": "reclaim",
|
|
4
|
+
"authLink": "https://cash.app/account/activity",
|
|
5
|
+
"url": "https://cash.app/cash-app/activity/v1.0/page",
|
|
6
|
+
"method": "POST",
|
|
7
|
+
"body": "{\"activity_token\":{\"activity_token_type\":\"CUSTOMER_TOKEN\",\"token\":\"{{SENDER_ID}}\"},\"activity_scope\":\"MY_ACTIVITY_WEB_V2\",\"page_size\":15,\"request_context\":{}}",
|
|
8
|
+
"metadata": {
|
|
9
|
+
"platform": "cashapp",
|
|
10
|
+
"urlRegex": "https://cash.app/cash-app/activity/v1.0/page",
|
|
11
|
+
"method": "POST",
|
|
12
|
+
"fallbackUrlRegex": "",
|
|
13
|
+
"fallbackMethod": "",
|
|
14
|
+
"preprocessRegex": "",
|
|
15
|
+
"transactionsExtraction": {
|
|
16
|
+
"transactionJsonPathListSelector": "$.activity_rows",
|
|
17
|
+
"transactionJsonPathSelectors": {
|
|
18
|
+
"recipient": "$.payment_history_inputs_row.recipient.cashtag",
|
|
19
|
+
"amount": "$.payment_history_inputs_row.payment.amount.amount",
|
|
20
|
+
"date": "$.payment_history_inputs_row.payment.display_date",
|
|
21
|
+
"paymentId": "$.payment_history_inputs_row.payment.history_data.transaction_id",
|
|
22
|
+
"currency": "$.payment_history_inputs_row.payment.amount.currency_code"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"proofMetadataSelectors": [
|
|
26
|
+
{
|
|
27
|
+
"type": "jsonPath",
|
|
28
|
+
"value": "$.activity_rows[{{INDEX}}].payment_history_inputs_row.payment.amount.amount"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"type": "jsonPath",
|
|
32
|
+
"value": "$.activity_rows[{{INDEX}}].payment_history_inputs_row.payment.amount.currency_code"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"type": "jsonPath",
|
|
36
|
+
"value": "$.activity_rows[{{INDEX}}].payment_history_inputs_row.payment.history_data.transaction_id"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"type": "jsonPath",
|
|
40
|
+
"value": "$.activity_rows[{{INDEX}}].payment_history_inputs_row.recipient.cashtag"
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
"paramNames": [
|
|
45
|
+
"SENDER_ID"
|
|
46
|
+
],
|
|
47
|
+
"paramSelectors": [
|
|
48
|
+
{
|
|
49
|
+
"type": "jsonPath",
|
|
50
|
+
"value": "$.activity_rows[{{INDEX}}].payment_history_inputs_row.payment.sender_id"
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
"skipRequestHeaders": [
|
|
54
|
+
"Cookie",
|
|
55
|
+
"x-csrf-token",
|
|
56
|
+
"x-device-name",
|
|
57
|
+
"x-request-signature",
|
|
58
|
+
"x-request-uuid",
|
|
59
|
+
"cash-web-request",
|
|
60
|
+
"x-web-device-info",
|
|
61
|
+
"x-web-context",
|
|
62
|
+
"x-bt-id"
|
|
63
|
+
],
|
|
64
|
+
"secretHeaders": [
|
|
65
|
+
"Cookie",
|
|
66
|
+
"x-csrf-token",
|
|
67
|
+
"x-device-name",
|
|
68
|
+
"x-request-signature",
|
|
69
|
+
"x-request-uuid",
|
|
70
|
+
"cash-web-request",
|
|
71
|
+
"x-web-device-info",
|
|
72
|
+
"x-web-context",
|
|
73
|
+
"x-bt-id"
|
|
74
|
+
],
|
|
75
|
+
"responseMatches": [
|
|
76
|
+
{
|
|
77
|
+
"type": "regex",
|
|
78
|
+
"value": "\"amount\":(?<amount>[0-9]+)"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"type": "regex",
|
|
82
|
+
"value": "\"currency_code\":\"(?<currency_code>[^\"]+)\""
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"type": "regex",
|
|
86
|
+
"value": "\"display_date\":(?<date>[0-9]+)"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"type": "regex",
|
|
90
|
+
"value": "\"cashtag\":\"(?<receiverId>[^\"]+)\""
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"type": "regex",
|
|
94
|
+
"value": "\"transaction_id\":\"(?<paymentId>[^\"]+)\""
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"type": "regex",
|
|
98
|
+
"value": "\"state\":\"(?<state>[^\"]+)\""
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"responseRedactions": [
|
|
102
|
+
{
|
|
103
|
+
"jsonPath": "$.activity_rows[{{INDEX}}].payment_history_inputs_row.payment.amount.amount",
|
|
104
|
+
"xPath": ""
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"jsonPath": "$.activity_rows[{{INDEX}}].payment_history_inputs_row.payment.amount.currency_code",
|
|
108
|
+
"xPath": ""
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"jsonPath": "$.activity_rows[{{INDEX}}].payment_history_inputs_row.payment.display_date",
|
|
112
|
+
"xPath": ""
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"jsonPath": "$.activity_rows[{{INDEX}}].payment_history_inputs_row.recipient.cashtag",
|
|
116
|
+
"xPath": ""
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"jsonPath": "$.activity_rows[{{INDEX}}].payment_history_inputs_row.payment.history_data.transaction_id",
|
|
120
|
+
"xPath": ""
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"jsonPath": "$.activity_rows[{{INDEX}}].payment_history_inputs_row.payment.state",
|
|
124
|
+
"xPath": ""
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
"mobile": {
|
|
128
|
+
"includeAdditionalCookieDomains": [],
|
|
129
|
+
"additionalClientOptions": {
|
|
130
|
+
"cipherSuites": [
|
|
131
|
+
"TLS_CHACHA20_POLY1305_SHA256",
|
|
132
|
+
"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
|
|
133
|
+
"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256"
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
"useExternalAction": true,
|
|
137
|
+
"userAgent": {
|
|
138
|
+
"android": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15",
|
|
139
|
+
"ios": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15"
|
|
140
|
+
},
|
|
141
|
+
"external": {
|
|
142
|
+
"actionLink": "https://cash.app/{{RECIPIENT_ID}}/{{AMOUNT}}",
|
|
143
|
+
"appStoreLink": "https://apps.apple.com/us/app/cash-app-mobile-banking/id711923939",
|
|
144
|
+
"playStoreLink": "https://play.google.com/store/apps/details?id=com.squareup.cash"
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actionType": "transfer_zelle",
|
|
3
|
+
"proofEngine": "reclaim",
|
|
4
|
+
"authLink": "https://secure.chase.com/web/auth/dashboard#/dashboard/quickPay/paymentsActivity/index",
|
|
5
|
+
"url": "https://secure.chase.com/svc/rr/payments/secure/v1/quickpay/payment/activity/list",
|
|
6
|
+
"method": "POST",
|
|
7
|
+
"body": "pageId=&sortBy=PROCESS_DATE&orderBy=DESC",
|
|
8
|
+
"metadata": {
|
|
9
|
+
"platform": "zelle",
|
|
10
|
+
"urlRegex": "https://secure.chase.com/svc/rr/payments/secure/v1/quickpay/payment/activity/list$",
|
|
11
|
+
"method": "POST",
|
|
12
|
+
"fallbackUrlRegex": "",
|
|
13
|
+
"fallbackMethod": "",
|
|
14
|
+
"preprocessRegex": "",
|
|
15
|
+
"transactionsExtraction": {
|
|
16
|
+
"transactionJsonPathListSelector": "$.listItems",
|
|
17
|
+
"transactionJsonPathSelectors": {
|
|
18
|
+
"amount": "$.amount",
|
|
19
|
+
"paymentId": "$.id",
|
|
20
|
+
"recipient": "$.recipientName",
|
|
21
|
+
"date": "$.date",
|
|
22
|
+
"currency": "$.currency"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"proofMetadataSelectors": [
|
|
26
|
+
{
|
|
27
|
+
"type": "jsonPath",
|
|
28
|
+
"value": "$.listItems[{{INDEX}}].amount"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"type": "jsonPath",
|
|
32
|
+
"value": "$.listItems[{{INDEX}}].id"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"type": "jsonPath",
|
|
36
|
+
"value": "$.listItems[{{INDEX}}].recipientName"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"type": "jsonPath",
|
|
40
|
+
"value": "$.listItems[{{INDEX}}].date"
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"userInput": {
|
|
44
|
+
"promptText": "Click Money Sent to proceed with authentication",
|
|
45
|
+
"transactionXpath": "//a[@id='bottom-quickpay_money_sent_menu_item']"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"paramNames": [],
|
|
49
|
+
"paramSelectors": [],
|
|
50
|
+
"skipRequestHeaders": [
|
|
51
|
+
"Cookie",
|
|
52
|
+
"Accept-Encoding",
|
|
53
|
+
"x-jpmc-channel",
|
|
54
|
+
"x-jpmc-csrf-token",
|
|
55
|
+
"referer",
|
|
56
|
+
"origin"
|
|
57
|
+
],
|
|
58
|
+
"secretHeaders": [
|
|
59
|
+
"Cookie",
|
|
60
|
+
"x-jpmc-channel",
|
|
61
|
+
"x-jpmc-csrf-token",
|
|
62
|
+
"referer",
|
|
63
|
+
"origin"
|
|
64
|
+
],
|
|
65
|
+
"responseMatches": [
|
|
66
|
+
{
|
|
67
|
+
"type": "regex",
|
|
68
|
+
"value": "\"id\":(?<id>[0-9]+)"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"type": "regex",
|
|
72
|
+
"value": "\"verboseStatus\":\"(?<verboseStatus>[^\"]+)\""
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"type": "regex",
|
|
76
|
+
"value": "\"date\":\"(?<date>[^\"]+)\""
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"type": "regex",
|
|
80
|
+
"value": "\"amount\":(?<amount>[0-9\\.]+)"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"responseRedactions": [
|
|
84
|
+
{
|
|
85
|
+
"jsonPath": "$.listItems[{{INDEX}}].id",
|
|
86
|
+
"xPath": ""
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"jsonPath": "$.listItems[{{INDEX}}].verboseStatus",
|
|
90
|
+
"xPath": ""
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"jsonPath": "$.listItems[{{INDEX}}].date",
|
|
94
|
+
"xPath": ""
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"jsonPath": "$.listItems[{{INDEX}}].amount",
|
|
98
|
+
"xPath": ""
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"additionalProofs": [
|
|
102
|
+
{
|
|
103
|
+
"url": "https://secure.chase.com/svc/rr/payments/secure/v1/quickpay/payment/activity/detail/list",
|
|
104
|
+
"method": "POST",
|
|
105
|
+
"body": "paymentId={{PAYMENT_ID}}",
|
|
106
|
+
"paramNames": [
|
|
107
|
+
"PAYMENT_ID"
|
|
108
|
+
],
|
|
109
|
+
"paramSelectors": [
|
|
110
|
+
{
|
|
111
|
+
"type": "jsonPath",
|
|
112
|
+
"value": "$.listItems[{{INDEX}}].id"
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
"skipRequestHeaders": [
|
|
116
|
+
"Cookie",
|
|
117
|
+
"Accept-Encoding",
|
|
118
|
+
"x-jpmc-channel",
|
|
119
|
+
"x-jpmc-csrf-token",
|
|
120
|
+
"referer",
|
|
121
|
+
"origin"
|
|
122
|
+
],
|
|
123
|
+
"secretHeaders": [
|
|
124
|
+
"Cookie",
|
|
125
|
+
"x-jpmc-channel",
|
|
126
|
+
"x-jpmc-csrf-token",
|
|
127
|
+
"referer",
|
|
128
|
+
"origin"
|
|
129
|
+
],
|
|
130
|
+
"responseMatches": [
|
|
131
|
+
{
|
|
132
|
+
"type": "regex",
|
|
133
|
+
"value": "\"recipientEmail\":\"(?<recipientEmail>[^\"]+)\""
|
|
134
|
+
}
|
|
135
|
+
],
|
|
136
|
+
"responseRedactions": [
|
|
137
|
+
{
|
|
138
|
+
"jsonPath": "$.recipientEmail"
|
|
139
|
+
}
|
|
140
|
+
]
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"mobile": {
|
|
144
|
+
"includeAdditionalCookieDomains": [],
|
|
145
|
+
"useExternalAction": true,
|
|
146
|
+
"userAgent": {
|
|
147
|
+
"android": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36",
|
|
148
|
+
"ios": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36"
|
|
149
|
+
},
|
|
150
|
+
"external": {
|
|
151
|
+
"actionLink": "chase://",
|
|
152
|
+
"appStoreLink": "https://apps.apple.com/bb/app/chase-mobile-u-s/id298867247",
|
|
153
|
+
"playStoreLink": "https://play.google.com/store/apps/details?id=com.chase.sig.android"
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actionType": "transfer_chime",
|
|
3
|
+
"proofEngine": "reclaim",
|
|
4
|
+
"authLink": "https://app.chime.com/",
|
|
5
|
+
"url": "https://app.chime.com/api/graphql",
|
|
6
|
+
"method": "POST",
|
|
7
|
+
"body": "{{BODY}}",
|
|
8
|
+
"metadata": {
|
|
9
|
+
"platform": "chime",
|
|
10
|
+
"urlRegex": "https://app\\.chime\\.com/api/graphql",
|
|
11
|
+
"bodyRegex": "\"operationName\":\"GetPayAnyoneActivityDetailsQuery\"",
|
|
12
|
+
"method": "POST",
|
|
13
|
+
"fallbackUrlRegex": "",
|
|
14
|
+
"fallbackMethod": "",
|
|
15
|
+
"preprocessRegex": "",
|
|
16
|
+
"shouldReplayRequestInPage": true,
|
|
17
|
+
"transactionsExtraction": {
|
|
18
|
+
"transactionJsonPathListSelector": "",
|
|
19
|
+
"transactionJsonPathSelectors": {
|
|
20
|
+
"recipient": "$.data.p2p.p2p_activity.pay_friend.receiver_identifier",
|
|
21
|
+
"amount": "$.data.p2p.p2p_activity.pay_friend.amount",
|
|
22
|
+
"date": "$.data.p2p.p2p_activity.timestamp",
|
|
23
|
+
"paymentId": "$.data.p2p.p2p_activity.pay_friend.id"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"proofMetadataSelectors": [
|
|
27
|
+
{
|
|
28
|
+
"type": "jsonPath",
|
|
29
|
+
"value": "$.data.p2p.p2p_activity.pay_friend.amount"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"type": "jsonPath",
|
|
33
|
+
"value": "$.data.p2p.p2p_activity.timestamp"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"type": "jsonPath",
|
|
37
|
+
"value": "$.data.p2p.p2p_activity.pay_friend.receiver_identifier"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"type": "jsonPath",
|
|
41
|
+
"value": "$.data.p2p.p2p_activity.pay_friend.id"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"type": "jsonPath",
|
|
45
|
+
"value": "$.data.p2p.p2p_activity.ux_status"
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"userInput": {
|
|
49
|
+
"promptText": "Select a Pay Anyone transaction",
|
|
50
|
+
"transactionXpath": "//ul[.//a[starts-with(@href, '/accounts/checking/')]]"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"paramNames": [
|
|
54
|
+
"BODY"
|
|
55
|
+
],
|
|
56
|
+
"paramSelectors": [
|
|
57
|
+
{
|
|
58
|
+
"type": "regex",
|
|
59
|
+
"value": "^(.*)$",
|
|
60
|
+
"source": "requestBody"
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"skipRequestHeaders": [
|
|
64
|
+
"Cookie",
|
|
65
|
+
"Accept-Encoding",
|
|
66
|
+
"referer"
|
|
67
|
+
],
|
|
68
|
+
"secretHeaders": [
|
|
69
|
+
"Cookie"
|
|
70
|
+
],
|
|
71
|
+
"responseMatches": [
|
|
72
|
+
{
|
|
73
|
+
"type": "regex",
|
|
74
|
+
"value": "\"receiver_identifier\":\"(?<recipientId>[^\"]+)\""
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"type": "regex",
|
|
78
|
+
"value": "\"amount\":(?<amount>[0-9\\.]+)"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"type": "regex",
|
|
82
|
+
"value": "\"timestamp\":\"(?<timestamp>[^\"]+)\""
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"type": "regex",
|
|
86
|
+
"value": "\"ux_status\":\"(?<status>[^\"]+)\""
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"type": "regex",
|
|
90
|
+
"value": "\"id\":\"(?<paymentId>[^\"]+)\""
|
|
91
|
+
}
|
|
92
|
+
],
|
|
93
|
+
"responseRedactions": [
|
|
94
|
+
{
|
|
95
|
+
"jsonPath": "$.data.p2p.p2p_activity.pay_friend.receiver_identifier"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"jsonPath": "$.data.p2p.p2p_activity.pay_friend.amount"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"jsonPath": "$.data.p2p.p2p_activity.timestamp"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"jsonPath": "$.data.p2p.p2p_activity.ux_status"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"jsonPath": "$.data.p2p.p2p_activity.pay_friend.id"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"mobile": {
|
|
111
|
+
"includeAdditionalCookieDomains": [],
|
|
112
|
+
"additionalClientOptions": {
|
|
113
|
+
"cipherSuites": [
|
|
114
|
+
"TLS_CHACHA20_POLY1305_SHA256",
|
|
115
|
+
"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
|
|
116
|
+
"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256"
|
|
117
|
+
]
|
|
118
|
+
},
|
|
119
|
+
"useExternalAction": true,
|
|
120
|
+
"userAgent": {
|
|
121
|
+
"android": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15",
|
|
122
|
+
"ios": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15"
|
|
123
|
+
},
|
|
124
|
+
"external": {
|
|
125
|
+
"actionLink": "https://app.chime.com/link/qr?u={{RECIPIENT_ID}}",
|
|
126
|
+
"appStoreLink": "https://apps.apple.com/us/app/chime-mobile-banking/id836215269",
|
|
127
|
+
"playStoreLink": "https://play.google.com/store/apps/details?id=com.onedebit.chime&hl=en_US"
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|