@attocash/n8n-nodes-atto 0.1.0 → 0.2.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/README.md +92 -44
- package/dist/nodes/Atto/Atto.node.js +59 -50
- package/dist/nodes/Atto/Atto.node.js.map +1 -1
- package/dist/nodes/Atto/operations.d.ts +3 -0
- package/dist/nodes/Atto/operations.js +57 -26
- package/dist/nodes/Atto/operations.js.map +1 -1
- package/dist/nodes/AttoTrigger/AttoTrigger.node.js +54 -22
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/examples/incoming-to-receive.json +0 -3
- package/examples/ping-pong-receivable.json +1 -36
- package/package.json +1 -1
|
@@ -25,9 +25,6 @@
|
|
|
25
25
|
"resource": "receivable",
|
|
26
26
|
"operation": "receivePending",
|
|
27
27
|
"secretSource": "credentials",
|
|
28
|
-
"receivableSource": "input",
|
|
29
|
-
"minAmount": "1",
|
|
30
|
-
"minAmountUnit": "RAW",
|
|
31
28
|
"representativeAddress": "",
|
|
32
29
|
"timeoutMs": 60000
|
|
33
30
|
},
|
|
@@ -43,27 +40,6 @@
|
|
|
43
40
|
}
|
|
44
41
|
}
|
|
45
42
|
},
|
|
46
|
-
{
|
|
47
|
-
"parameters": {
|
|
48
|
-
"resource": "accountEntry",
|
|
49
|
-
"operation": "getAccountEntries",
|
|
50
|
-
"queryMode": "hash",
|
|
51
|
-
"hash": "={{ $json.hash }}",
|
|
52
|
-
"maxItems": 1,
|
|
53
|
-
"timeoutMs": 5000
|
|
54
|
-
},
|
|
55
|
-
"id": "atto-get-receive-entry",
|
|
56
|
-
"name": "Get Receive Account Entry",
|
|
57
|
-
"type": "@attocash/n8n-nodes-atto.atto",
|
|
58
|
-
"typeVersion": 1,
|
|
59
|
-
"position": [780, 260],
|
|
60
|
-
"credentials": {
|
|
61
|
-
"attoApi": {
|
|
62
|
-
"id": "1",
|
|
63
|
-
"name": "Atto Local"
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
43
|
{
|
|
68
44
|
"parameters": {
|
|
69
45
|
"resource": "transaction",
|
|
@@ -78,7 +54,7 @@
|
|
|
78
54
|
"name": "Send Pong",
|
|
79
55
|
"type": "@attocash/n8n-nodes-atto.atto",
|
|
80
56
|
"typeVersion": 1,
|
|
81
|
-
"position": [
|
|
57
|
+
"position": [780, 260],
|
|
82
58
|
"credentials": {
|
|
83
59
|
"attoApi": {
|
|
84
60
|
"id": "1",
|
|
@@ -100,17 +76,6 @@
|
|
|
100
76
|
]
|
|
101
77
|
},
|
|
102
78
|
"Receive Atto": {
|
|
103
|
-
"main": [
|
|
104
|
-
[
|
|
105
|
-
{
|
|
106
|
-
"node": "Get Receive Account Entry",
|
|
107
|
-
"type": "main",
|
|
108
|
-
"index": 0
|
|
109
|
-
}
|
|
110
|
-
]
|
|
111
|
-
]
|
|
112
|
-
},
|
|
113
|
-
"Get Receive Account Entry": {
|
|
114
79
|
"main": [
|
|
115
80
|
[
|
|
116
81
|
{
|
package/package.json
CHANGED