@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.
Files changed (30) hide show
  1. package/.claude/worktrees/paypal-note-optional-redaction/LICENSE +21 -0
  2. package/.claude/worktrees/paypal-note-optional-redaction/README.md +546 -0
  3. package/.claude/worktrees/paypal-note-optional-redaction/alipay/register_alipay.json +58 -0
  4. package/.claude/worktrees/paypal-note-optional-redaction/alipay/transfer_alipay.json +87 -0
  5. package/.claude/worktrees/paypal-note-optional-redaction/bankofamerica/transfer_zelle.json +126 -0
  6. package/.claude/worktrees/paypal-note-optional-redaction/cashapp/transfer_cashapp.json +147 -0
  7. package/.claude/worktrees/paypal-note-optional-redaction/chase/transfer_zelle.json +156 -0
  8. package/.claude/worktrees/paypal-note-optional-redaction/chime/transfer_chime.json +130 -0
  9. package/.claude/worktrees/paypal-note-optional-redaction/citi/transfer_zelle.json +126 -0
  10. package/.claude/worktrees/paypal-note-optional-redaction/idfc/transfer_idfc.json +109 -0
  11. package/.claude/worktrees/paypal-note-optional-redaction/luxon/transfer_luxon.json +119 -0
  12. package/.claude/worktrees/paypal-note-optional-redaction/mercadopago/transfer_mercadopago.json +129 -0
  13. package/.claude/worktrees/paypal-note-optional-redaction/monzo/transfer_monzo.json +130 -0
  14. package/.claude/worktrees/paypal-note-optional-redaction/n26/transfer_n26.json +130 -0
  15. package/.claude/worktrees/paypal-note-optional-redaction/package.json +22 -0
  16. package/.claude/worktrees/paypal-note-optional-redaction/paypal/register_paypal.json +89 -0
  17. package/.claude/worktrees/paypal-note-optional-redaction/paypal/transfer_business_paypal.json +124 -0
  18. package/.claude/worktrees/paypal-note-optional-redaction/paypal/transfer_paypal.json +138 -0
  19. package/.claude/worktrees/paypal-note-optional-redaction/providers.json +23 -0
  20. package/.claude/worktrees/paypal-note-optional-redaction/revolut/transfer_revolut.json +138 -0
  21. package/.claude/worktrees/paypal-note-optional-redaction/royalbankcanada/transfer_interac.json +89 -0
  22. package/.claude/worktrees/paypal-note-optional-redaction/td_bank/transfer_zelle.json +112 -0
  23. package/.claude/worktrees/paypal-note-optional-redaction/usbank/transfer_zelle.json +127 -0
  24. package/.claude/worktrees/paypal-note-optional-redaction/venmo/register_venmo.json +77 -0
  25. package/.claude/worktrees/paypal-note-optional-redaction/venmo/transfer_venmo.json +120 -0
  26. package/.claude/worktrees/paypal-note-optional-redaction/wellsfargo/transfer_zelle.json +137 -0
  27. package/.claude/worktrees/paypal-note-optional-redaction/wise/register_wise.json +81 -0
  28. package/.claude/worktrees/paypal-note-optional-redaction/wise/transfer_wise.json +157 -0
  29. package/package.json +1 -1
  30. package/paypal/transfer_paypal.json +2 -3
@@ -0,0 +1,89 @@
1
+ {
2
+ "actionType": "transfer_interac",
3
+ "proofEngine": "reclaim",
4
+ "authLink": "https://www1.royalbank.com/sgw1/olb/index-en/#/payment-history",
5
+ "url": "https://www1.royalbank.com/sgw5/digital/emt-presentation-service/v1/{{PAYMENT_ID}}",
6
+ "method": "GET",
7
+ "body": "",
8
+ "metadata": {
9
+ "platform": "royalbankcanada",
10
+ "urlRegex": "https://www1.royalbank.com/sgw5/digital/payment-history-presentation-service/v1/summary\\?timestamp=\\S+",
11
+ "method": "GET",
12
+ "fallbackUrlRegex": "",
13
+ "fallbackMethod": "",
14
+ "preprocessRegex": "",
15
+ "transactionsExtraction": {
16
+ "transactionJsonPathListSelector": "$.paymentHistoryList",
17
+ "transactionJsonPathSelectors": {
18
+ "amount": "$.amount",
19
+ "paymentId": "$.paymentID",
20
+ "recipient": "$.payeeAccount",
21
+ "date": "$.date",
22
+ "currency": "$.currency"
23
+ }
24
+ },
25
+ "proofMetadataSelectors": [
26
+ {
27
+ "type": "jsonPath",
28
+ "value": "$.paymentHistoryList[{{INDEX}}].amount"
29
+ },
30
+ {
31
+ "type": "jsonPath",
32
+ "value": "$.paymentHistoryList[{{INDEX}}].paymentId"
33
+ },
34
+ {
35
+ "type": "jsonPath",
36
+ "value": "$.paymentHistoryList[{{INDEX}}].payeeAccount"
37
+ },
38
+ {
39
+ "type": "jsonPath",
40
+ "value": "$.paymentHistoryList[{{INDEX}}].date"
41
+ }
42
+ ]
43
+ },
44
+ "paramNames": [
45
+ "PAYMENT_ID"
46
+ ],
47
+ "paramSelectors": [
48
+ {
49
+ "type": "jsonPath",
50
+ "value": "$.paymentHistoryList[{{INDEX}}].paymentID"
51
+ }
52
+ ],
53
+ "skipRequestHeaders": [
54
+ "Cookie",
55
+ "Accept-Encoding",
56
+ "x-dtpc"
57
+ ],
58
+ "secretHeaders": [
59
+ "Cookie"
60
+ ],
61
+ "responseMatches": [
62
+ {
63
+ "type": "regex",
64
+ "value": "\"status\":\"(?<status>[^\"]+)\""
65
+ },
66
+ {
67
+ "type": "regex",
68
+ "value": "\"amount\":(?<amount>[0-9\\.]+)"
69
+ },
70
+ {
71
+ "type": "regex",
72
+ "value": "\"email\":\"(?<email>[^\"]+)\""
73
+ }
74
+ ],
75
+ "responseRedactions": [
76
+ {
77
+ "jsonPath": "$.status",
78
+ "xPath": ""
79
+ },
80
+ {
81
+ "jsonPath": "$.amount",
82
+ "xPath": ""
83
+ },
84
+ {
85
+ "jsonPath": "$.email",
86
+ "xPath": ""
87
+ }
88
+ ]
89
+ }
@@ -0,0 +1,112 @@
1
+ {
2
+ "actionType": "transfer_zelle",
3
+ "proofEngine": "reclaim",
4
+ "authLink": "https://onlinebanking.tdbank.com/",
5
+ "url": "https://mobilews.cashedge.com/mobilewebservice/v2/activity?returnTotalSplitAmount=true&returnZellePaymentID=true&returnReasonCode=true&returnPayeeTransferFee=true",
6
+ "method": "GET",
7
+ "skipRequestHeaders": [
8
+ "Cookie",
9
+ "Accept-Encoding",
10
+ "FSV-HomeId",
11
+ "CEUserAgent"
12
+ ],
13
+ "body": "",
14
+ "metadata": {
15
+ "platform": "zelle",
16
+ "urlRegex": "https://mobilews\\.cashedge\\.com/mobilewebservice/v2/activity.*",
17
+ "method": "GET",
18
+ "fallbackUrlRegex": "",
19
+ "fallbackMethod": "",
20
+ "shouldReplayRequestInPage": false,
21
+ "shouldSkipCloseTab": false,
22
+ "transactionsExtraction": {
23
+ "transactionJsonPathListSelector": "$.activities",
24
+ "transactionJsonPathSelectors": {
25
+ "recipient": "$.sendEmailTo",
26
+ "amount": "$.transferAmount.value",
27
+ "date": "$.creationDate.value",
28
+ "paymentId": "$.zellePaymentID"
29
+ }
30
+ },
31
+ "proofMetadataSelectors": [
32
+ {
33
+ "type": "jsonPath",
34
+ "value": "$.activities[{{INDEX}}].sendEmailTo"
35
+ },
36
+ {
37
+ "type": "jsonPath",
38
+ "value": "$.activities[{{INDEX}}].transferAmount.value"
39
+ },
40
+ {
41
+ "type": "jsonPath",
42
+ "value": "$.activities[{{INDEX}}].creationDate.value"
43
+ },
44
+ {
45
+ "type": "jsonPath",
46
+ "value": "$.activities[{{INDEX}}].zellePaymentID"
47
+ }
48
+ ]
49
+ },
50
+ "paramNames": [],
51
+ "paramSelectors": [],
52
+ "secretHeaders": [
53
+ "Cookie",
54
+ "sessionID",
55
+ "FSV-HomeId"
56
+ ],
57
+ "responseMatches": [
58
+ {
59
+ "type": "regex",
60
+ "value": "\"sendEmailTo\":\"(?<recipient>[^\"]+)\""
61
+ },
62
+ {
63
+ "type": "regex",
64
+ "value": "\"transferAmount\":\\{\"value\":(?<amount>[\\d.]+)\\}"
65
+ },
66
+ {
67
+ "type": "regex",
68
+ "value": "\"transferStatus\":\"(?<status>[^\"]+)\""
69
+ },
70
+ {
71
+ "type": "regex",
72
+ "value": "\"zellePaymentID\":\"(?<paymentId>[^\"]+)\""
73
+ },
74
+ {
75
+ "type": "regex",
76
+ "value": "\"paymentType\":\"(?<type>[^\"]+)\""
77
+ },
78
+ {
79
+ "type": "regex",
80
+ "value": "\"creationDate\":\\{\"value\":\"(?<date>[^\"]+)\"\\}"
81
+ }
82
+ ],
83
+ "responseRedactions": [
84
+ {
85
+ "jsonPath": "$.activities[{{INDEX}}].sendEmailTo"
86
+ },
87
+ {
88
+ "jsonPath": "$.activities[{{INDEX}}].transferAmount"
89
+ },
90
+ {
91
+ "jsonPath": "$.activities[{{INDEX}}].transferStatus"
92
+ },
93
+ {
94
+ "jsonPath": "$.activities[{{INDEX}}].zellePaymentID"
95
+ },
96
+ {
97
+ "jsonPath": "$.activities[{{INDEX}}].paymentType"
98
+ },
99
+ {
100
+ "jsonPath": "$.activities[{{INDEX}}].creationDate"
101
+ }
102
+ ],
103
+ "mobile": {
104
+ "includeAdditionalCookieDomains": ["cashedge.com"],
105
+ "useExternalAction": true,
106
+ "external": {
107
+ "actionLink": "tdbank://",
108
+ "appStoreLink": "https://apps.apple.com/us/app/td-bank-us/id382107453",
109
+ "playStoreLink": "https://play.google.com/store/apps/details?id=com.tdbank"
110
+ }
111
+ }
112
+ }
@@ -0,0 +1,127 @@
1
+ {
2
+ "actionType": "transfer_zelle",
3
+ "proofEngine": "reclaim",
4
+ "authLink": "https://onlinebanking.usbank.com/auth/login/",
5
+ "url": "https://onlinebanking.usbank.com/digital/api/graphql/v1",
6
+ "method": "POST",
7
+ "body": "{\"operationName\":\"paymentListInquiry\",\"variables\":{\"inquiry\":{\"transactionType\":\"PAYMENT\",\"pageNumber\":1,\"pageSize\":7,\"pageInfo\":{\"transactionTypeSubCategories\":[{\"paymentStatusCode\":\"COMPLETE\",\"nextDateFetchKey\":\"\"}]}}},\"query\":\"fragment ActivityFields on ZellePayment {\\n messageReference\\n isCancellable\\n paymentAmountSplit {\\n linkedPaymentAmount\\n splitRequestedAmount\\n splitTotalAmount\\n __typename\\n }\\n payeeAccountToken\\n payeeId\\n payeeName\\n payeePartyName {\\n firstName\\n lastName\\n __typename\\n }\\n payerAccountName\\n payeeAccountName\\n payeeAccountAliasId\\n payerAccountAliasId\\n payerId\\n payerName\\n paymentAuxStatus\\n paymentDirection\\n paymentMemo\\n paymentPurpose\\n paymentReference\\n paymentSchedule {\\n scheduleId\\n nextPaymentDate\\n frequency\\n scheduleDay\\n otherDay\\n hasRecurringAutoPayment\\n stopBy\\n maximumAmount: maximumTransactionAmount\\n maximumTransactionCount\\n __typename\\n }\\n paymentStatus\\n paymentType\\n transferAmount\\n transferAmountCurrency\\n transferDate\\n valueDate\\n lastUpdatedDate\\n __typename\\n transactionSource\\n transactionTypeCode\\n rejectionReason\\n payerAccountToken\\n deliverySpeed\\n transactionReference\\n}\\n\\nquery paymentListInquiry($inquiry: ZellePaymentInquiryRequest) {\\n inquiry: zellePaymentListInquiry(\\n appName: ZELLE\\n zellePaymentInquiryRequest: $inquiry\\n ) {\\n activities: payments {\\n ...ActivityFields\\n __typename\\n }\\n pageInfo {\\n transactionTypeSubCategories {\\n paymentStatusCode\\n nextDateFetchKey\\n __typename\\n }\\n __typename\\n }\\n additionalTransactions\\n totalPages\\n pageSize\\n pageNumber\\n totalRecords\\n __typename\\n }\\n}\\n\"}",
8
+ "metadata": {
9
+ "platform": "zelle",
10
+ "urlRegex": "https://onlinebanking.usbank.com/digital/api/graphql/v1",
11
+ "method": "POST",
12
+ "fallbackUrlRegex": "https://onlinebanking.usbank.com/digital/api/customer-management/graphql/v2",
13
+ "fallbackMethod": "POST",
14
+ "preprocessRegex": "",
15
+ "transactionsExtraction": {
16
+ "transactionJsonPathListSelector": "$.data.inquiry.activities",
17
+ "transactionJsonPathSelectors": {
18
+ "amount": "$.transferAmount",
19
+ "paymentId": "$.paymentReference",
20
+ "recipient": "$.payeeAccountAliasId",
21
+ "date": "$.transferDate",
22
+ "currency": "$.transferAmountCurrency"
23
+ }
24
+ },
25
+ "proofMetadataSelectors": [
26
+ {
27
+ "type": "jsonPath",
28
+ "value": "$.data.inquiry.activities[{{INDEX}}].transferAmount"
29
+ },
30
+ {
31
+ "type": "jsonPath",
32
+ "value": "$.data.inquiry.activities[{{INDEX}}].paymentReference"
33
+ },
34
+ {
35
+ "type": "jsonPath",
36
+ "value": "$.data.inquiry.activities[{{INDEX}}].payeeAccountAliasId"
37
+ },
38
+ {
39
+ "type": "jsonPath",
40
+ "value": "$.data.inquiry.activities[{{INDEX}}].transferDate"
41
+ }
42
+ ]
43
+ },
44
+ "paramNames": [],
45
+ "paramSelectors": [],
46
+ "skipRequestHeaders": [
47
+ "Cookie",
48
+ "Accept-Encoding",
49
+ "Authorization",
50
+ "referer"
51
+ ],
52
+ "secretHeaders": [
53
+ "Cookie",
54
+ "Authorization",
55
+ "referer"
56
+ ],
57
+ "responseMatches": [
58
+ {
59
+ "type": "regex",
60
+ "value": "\"paymentReference\":\"(?<paymentReference>[^\"]+)\""
61
+ },
62
+ {
63
+ "type": "regex",
64
+ "value": "\"paymentStatus\":\"COMPLETE\""
65
+ },
66
+ {
67
+ "type": "regex",
68
+ "value": "\"transferDate\":\"(?<transferDate>[^\"]+)\""
69
+ },
70
+ {
71
+ "type": "regex",
72
+ "value": "\"transferAmount\":\"(?<transferAmount>[0-9\\.]+)\""
73
+ },
74
+ {
75
+ "type": "regex",
76
+ "value": "\"payeeAccountAliasId\":\"(?<payeeAccountAliasId>[^\"]+)\""
77
+ },
78
+ {
79
+ "type": "regex",
80
+ "value": "\"transferAmountCurrency\":\"(?<transferAmountCurrency>[^\"]+)\""
81
+ },
82
+ {
83
+ "type": "regex",
84
+ "value": "\"paymentDirection\":\"OUTBOUND\""
85
+ }
86
+ ],
87
+ "responseRedactions": [
88
+ {
89
+ "jsonPath": "$.data.inquiry.activities[{{INDEX}}].paymentReference",
90
+ "xPath": ""
91
+ },
92
+ {
93
+ "jsonPath": "$.data.inquiry.activities[{{INDEX}}].paymentStatus",
94
+ "xPath": ""
95
+ },
96
+ {
97
+ "jsonPath": "$.data.inquiry.activities[{{INDEX}}].transferDate",
98
+ "xPath": ""
99
+ },
100
+ {
101
+ "jsonPath": "$.data.inquiry.activities[{{INDEX}}].transferAmount",
102
+ "xPath": ""
103
+ },
104
+ {
105
+ "jsonPath": "$.data.inquiry.activities[{{INDEX}}].payeeAccountAliasId",
106
+ "xPath": ""
107
+ },
108
+ {
109
+ "jsonPath": "$.data.inquiry.activities[{{INDEX}}].transferAmountCurrency",
110
+ "xPath": ""
111
+ },
112
+ {
113
+ "jsonPath": "$.data.inquiry.activities[{{INDEX}}].paymentDirection",
114
+ "xPath": ""
115
+ }
116
+ ],
117
+ "additionalProofs": [],
118
+ "mobile": {
119
+ "includeAdditionalCookieDomains": [],
120
+ "useExternalAction": true,
121
+ "external": {
122
+ "actionLink": "usbank://",
123
+ "appStoreLink": "https://apps.apple.com/us/app/u-s-bank-mobile-banking/id458734623",
124
+ "playStoreLink": "https://play.google.com/store/apps/details?id=com.usbank.mobilebanking"
125
+ }
126
+ }
127
+ }
@@ -0,0 +1,77 @@
1
+ {
2
+ "actionType": "register_venmo",
3
+ "proofEngine": "reclaim",
4
+ "authLink": "https://account.venmo.com/?feed=mine",
5
+ "url": "https://account.venmo.com/api/stories?feedType=me&externalId={{SENDER_ID}}",
6
+ "method": "GET",
7
+ "body": "",
8
+ "metadata": {
9
+ "platform": "venmo",
10
+ "urlRegex": "https://account.venmo.com/api/stories\\?feedType=me&externalId=\\S+",
11
+ "method": "GET",
12
+ "fallbackUrlRegex": "",
13
+ "fallbackMethod": "",
14
+ "preprocessRegex": "",
15
+ "transactionsExtraction": {
16
+ "transactionJsonPathListSelector": "$.stories",
17
+ "transactionJsonPathSelectors": {
18
+ "senderId": "$.title.sender.id"
19
+ }
20
+ },
21
+ "proofMetadataSelectors": [
22
+ {
23
+ "type": "jsonPath",
24
+ "value": "$.stories[{{INDEX}}].paymentId"
25
+ }
26
+ ]
27
+ },
28
+ "paramNames": [
29
+ "SENDER_ID"
30
+ ],
31
+ "paramSelectors": [
32
+ {
33
+ "type": "regex",
34
+ "value": "externalId=([0-9]+)",
35
+ "source": "url"
36
+ }
37
+ ],
38
+ "skipRequestHeaders": [],
39
+ "secretHeaders": [
40
+ "Cookie"
41
+ ],
42
+ "responseMatches": [
43
+ {
44
+ "type": "regex",
45
+ "value": "\"paymentId\":\"[^\"]+\""
46
+ }
47
+ ],
48
+ "responseRedactions": [
49
+ {
50
+ "jsonPath": "$.stories[{{INDEX}}].paymentId",
51
+ "xPath": ""
52
+ }
53
+ ],
54
+ "mobile": {
55
+ "includeAdditionalCookieDomains": [],
56
+ "additionalClientOptions": {
57
+ "cipherSuites": [
58
+ "TLS_AES_128_GCM_SHA256",
59
+ "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
60
+ "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"
61
+ ]
62
+ },
63
+ "useExternalAction": true,
64
+ "external": {
65
+ "actionLink": "venmo://paycharge?txn=pay&recipients={{RECIPIENT_ID}}&note=Thx&amount={{AMOUNT}}",
66
+ "appStoreLink": "https://apps.apple.com/us/app/venmo/id351727428",
67
+ "playStoreLink": "https://play.google.com/store/apps/details?id=com.venmo"
68
+ },
69
+ "login": {
70
+ "usernameSelector": "#email, input[name=\"login_email\"], input[name=\"username\"], input[type=\"email\"], input[data-testid=\"text-input-username\"]",
71
+ "passwordSelector": "#password, input[name=\"login_password\"][type=\"password\"][data-testid=\"text-input-password\"]",
72
+ "nextSelector": "#btnNext, button[data-testid=\"button-next\"], button.next_button[type=\"submit\"]",
73
+ "submitSelector": "#btnLogin, button[data-testid=\"button-submit\"][type=\"submit\"], button.login_button[type=\"submit\"]",
74
+ "revealTimeoutMs": 5000
75
+ }
76
+ }
77
+ }
@@ -0,0 +1,120 @@
1
+ {
2
+ "actionType": "transfer_venmo",
3
+ "proofEngine": "reclaim",
4
+ "authLink": "https://account.venmo.com/?feed=mine",
5
+ "url": "https://account.venmo.com/api/stories?feedType=me&externalId={{SENDER_ID}}",
6
+ "method": "GET",
7
+ "body": "",
8
+ "metadata": {
9
+ "platform": "venmo",
10
+ "urlRegex": "https://account.venmo.com/api/stories\\?feedType=me&externalId=\\S+",
11
+ "method": "GET",
12
+ "fallbackUrlRegex": "",
13
+ "fallbackMethod": "",
14
+ "preprocessRegex": "",
15
+ "transactionsExtraction": {
16
+ "transactionJsonPathListSelector": "$.stories",
17
+ "transactionJsonPathSelectors": {
18
+ "recipient": "$.title.receiver.username",
19
+ "amount": "$.amount",
20
+ "date": "$.date",
21
+ "paymentId": "$.paymentId",
22
+ "currency": "$.currency"
23
+ }
24
+ },
25
+ "proofMetadataSelectors": [
26
+ {
27
+ "type": "jsonPath",
28
+ "value": "$.stories[{{INDEX}}].amount"
29
+ },
30
+ {
31
+ "type": "jsonPath",
32
+ "value": "$.stories[{{INDEX}}].paymentId"
33
+ },
34
+ {
35
+ "type": "jsonPath",
36
+ "value": "$.stories[{{INDEX}}].title.receiver.username"
37
+ }
38
+ ]
39
+ },
40
+ "paramNames": [
41
+ "SENDER_ID"
42
+ ],
43
+ "paramSelectors": [
44
+ {
45
+ "type": "jsonPath",
46
+ "value": "$.stories[{{INDEX}}].title.sender.id"
47
+ }
48
+ ],
49
+ "skipRequestHeaders": [],
50
+ "secretHeaders": [
51
+ "Cookie"
52
+ ],
53
+ "responseMatches": [
54
+ {
55
+ "type": "regex",
56
+ "value": "\"amount\":\"- \\$(?<amount>[^\"]+)\""
57
+ },
58
+ {
59
+ "type": "regex",
60
+ "value": "\"date\":\"(?<date>[^\"]+)\""
61
+ },
62
+ {
63
+ "type": "regex",
64
+ "value": "\"paymentId\":\"(?<paymentId>[^\"]+)\""
65
+ },
66
+ {
67
+ "type": "regex",
68
+ "value": "\"id\":\"(?<receiverId>[^\"]+)\""
69
+ },
70
+ {
71
+ "type": "regex",
72
+ "value": "\"subType\":\"(none|business_profile)\""
73
+ }
74
+ ],
75
+ "responseRedactions": [
76
+ {
77
+ "jsonPath": "$.stories[{{INDEX}}].amount",
78
+ "xPath": ""
79
+ },
80
+ {
81
+ "jsonPath": "$.stories[{{INDEX}}].date",
82
+ "xPath": ""
83
+ },
84
+ {
85
+ "jsonPath": "$.stories[{{INDEX}}].paymentId",
86
+ "xPath": ""
87
+ },
88
+ {
89
+ "jsonPath": "$.stories[{{INDEX}}].title.receiver.id",
90
+ "xPath": ""
91
+ },
92
+ {
93
+ "jsonPath": "$.stories[{{INDEX}}].subType",
94
+ "xPath": ""
95
+ }
96
+ ],
97
+ "mobile": {
98
+ "includeAdditionalCookieDomains": [],
99
+ "additionalClientOptions": {
100
+ "cipherSuites": [
101
+ "TLS_AES_128_GCM_SHA256",
102
+ "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
103
+ "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"
104
+ ]
105
+ },
106
+ "useExternalAction": true,
107
+ "external": {
108
+ "actionLink": "venmo://paycharge?txn=pay&recipients={{RECIPIENT_ID}}&note=Thx&amount={{AMOUNT}}",
109
+ "appStoreLink": "https://apps.apple.com/us/app/venmo/id351727428",
110
+ "playStoreLink": "https://play.google.com/store/apps/details?id=com.venmo"
111
+ },
112
+ "login": {
113
+ "usernameSelector": "#email, input[name=\"login_email\"], input[name=\"username\"], input[type=\"email\"], input[data-testid=\"text-input-username\"]",
114
+ "passwordSelector": "#password, input[name=\"login_password\"][type=\"password\"][data-testid=\"text-input-password\"]",
115
+ "nextSelector": "#btnNext, button[data-testid=\"button-next\"], button.next_button[type=\"submit\"]",
116
+ "submitSelector": "#btnLogin, button[data-testid=\"button-submit\"][type=\"submit\"], button.login_button[type=\"submit\"]",
117
+ "revealTimeoutMs": 5000
118
+ }
119
+ }
120
+ }
@@ -0,0 +1,137 @@
1
+ {
2
+ "actionType": "transfer_zelle",
3
+ "authLink": "https://www.wellsfargo.com/online-banking/zelle/",
4
+ "url": "https://connect.secure.wellsfargo.com/zelletransfers/p2p/send/activities?_x={{X_TOKEN}}&firstTimeLoadFlag=true&direction=OUTBOUND&_={{TIMESTAMP}}&F=J",
5
+ "method": "GET",
6
+ "body": "",
7
+ "metadata": {
8
+ "userInput": {
9
+ "promptText": "Click on \"Activity\" to authenticate",
10
+ "transactionXpath": "//li[.//button[@data-en='activity']]"
11
+ },
12
+ "platform": "zelle",
13
+ "urlRegex": "https://connect.secure.wellsfargo.com/zelletransfers/p2p/send/activities\\?_x=\\S+&firstTimeLoadFlag=true&direction=OUTBOUND&_=\\S+&F=J",
14
+ "method": "GET",
15
+ "fallbackUrlRegex": "",
16
+ "fallbackMethod": "",
17
+ "preprocessRegex": "\\/\\*WellFargoProprietary%([\\s\\S]*)%WellFargoProprietary\\*\\/",
18
+ "transactionsExtraction": {
19
+ "transactionJsonPathListSelector": "$.sendReceiveActivitiesViewBean.p2pSendMoney.views[0].activities",
20
+ "transactionJsonPathSelectors": {
21
+ "amount": "$.amount",
22
+ "paymentId": "$.confirmationCode",
23
+ "date": "$.dateTimeStamp",
24
+ "recipient": "$.token"
25
+ }
26
+ },
27
+ "proofMetadataSelectors": [
28
+ {
29
+ "type": "jsonPath",
30
+ "value": "$.sendReceiveActivitiesViewBean.p2pSendMoney.views[0].activities[{{INDEX}}].amount"
31
+ },
32
+ {
33
+ "type": "jsonPath",
34
+ "value": "$.sendReceiveActivitiesViewBean.p2pSendMoney.views[0].activities[{{INDEX}}].confirmationCode"
35
+ },
36
+ {
37
+ "type": "jsonPath",
38
+ "value": "$.sendReceiveActivitiesViewBean.p2pSendMoney.views[0].activities[{{INDEX}}].dateTimeStamp"
39
+ },
40
+ {
41
+ "type": "jsonPath",
42
+ "value": "$.sendReceiveActivitiesViewBean.p2pSendMoney.views[0].activities[{{INDEX}}].token"
43
+ }
44
+ ]
45
+ },
46
+ "paramNames": [
47
+ "X_TOKEN",
48
+ "TIMESTAMP"
49
+ ],
50
+ "paramSelectors": [
51
+ {
52
+ "type": "regex",
53
+ "value": "https://connect.secure.wellsfargo.com/zelletransfers/p2p/send/activities\\?_x=([^&]+)",
54
+ "source": "url"
55
+ },
56
+ {
57
+ "type": "regex",
58
+ "value": "firstTimeLoadFlag=true&direction=OUTBOUND&_=([^&]+)&F=J",
59
+ "source": "url"
60
+ }
61
+ ],
62
+ "skipRequestHeaders": [
63
+ "Cookie",
64
+ "Accept-Encoding",
65
+ "accept-encoding"
66
+ ],
67
+ "secretHeaders": [
68
+ "Cookie"
69
+ ],
70
+ "responseMatches": [
71
+ {
72
+ "type": "regex",
73
+ "value": "\\\\\"confirmationCode\\\\\":\\\\\"(?<confirmationCode>[^\\\\\"]+)\\\\\""
74
+ },
75
+ {
76
+ "type": "regex",
77
+ "value": "\\\\\"amount\\\\\":\\\\\"(?<amount>[^\\\\\"]+)\\\\\""
78
+ },
79
+ {
80
+ "type": "regex",
81
+ "value": "\\\\\"token\\\\\":\\\\\"(?<token>[^\\\\\"]+)\\\\\""
82
+ },
83
+ {
84
+ "type": "regex",
85
+ "value": "\\\\\"dateTimeStamp\\\\\":\\\\\"(?<dateTimeStamp>[^\\\\\"]+)\\\\\""
86
+ },
87
+ {
88
+ "type": "regex",
89
+ "value": "\\\\\"status\\\\\":\\\\\"(?<status>[^\\\\\"]+)\\\\\""
90
+ }
91
+ ],
92
+ "responseRedactions": [
93
+ {
94
+ "jsonPath": "",
95
+ "xPath": "",
96
+ "regex": "\\\\\"confirmationCode\\\\\":\\\\\"([^\\\\\"]*)\\\\\""
97
+ },
98
+ {
99
+ "jsonPath": "",
100
+ "xPath": "",
101
+ "regex": "\\\\\"amount\\\\\":\\\\\"([^\\\\\"]*)\\\\\""
102
+ },
103
+ {
104
+ "jsonPath": "",
105
+ "xPath": "",
106
+ "regex": "\\\\\"token\\\\\":\\\\\"([^\\\\\"]*)\\\\\""
107
+ },
108
+ {
109
+ "jsonPath": "",
110
+ "xPath": "",
111
+ "regex": "\\\\\"dateTimeStamp\\\\\":\\\\\"([^\\\\\"]*)\\\\\""
112
+ },
113
+ {
114
+ "jsonPath": "",
115
+ "xPath": "",
116
+ "regex": "\\\\\"status\\\\\":\\\\\"([^\\\\\"]*)\\\\\""
117
+ }
118
+ ],
119
+ "additionalClientOptions": {
120
+ "cipherSuites": [
121
+ "TLS_CHACHA20_POLY1305_SHA256",
122
+ "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256",
123
+ "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256",
124
+ "TLS_AES_128_GCM_SHA256",
125
+ "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
126
+ "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"
127
+ ]
128
+ },
129
+ "mobile": {
130
+ "includeAdditionalCookieDomains": [],
131
+ "actionLink": "wellsfargo://",
132
+ "isExternalLink": true,
133
+ "appStoreLink": "https://apps.apple.com/us/app/wells-fargo-mobile/id398091704",
134
+ "playStoreLink": "https://play.google.com/store/apps/details?id=com.wellsfargo.mobile"
135
+ }
136
+ }
137
+