@n8n-dev/n8n-nodes-nbg-gr 1.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.
- package/README.md +106 -0
- package/dist/banner.svg +101 -0
- package/dist/credentials/NbgGrApi.credentials.d.ts +9 -0
- package/dist/credentials/NbgGrApi.credentials.js +49 -0
- package/dist/credentials/NbgGrApi.credentials.js.map +1 -0
- package/dist/icons/nbg-gr.dark.svg +18 -0
- package/dist/icons/nbg-gr.svg +18 -0
- package/dist/nodes/NbgGr/NbgGr.node.d.ts +4 -0
- package/dist/nodes/NbgGr/NbgGr.node.js +117 -0
- package/dist/nodes/NbgGr/NbgGr.node.js.map +1 -0
- package/dist/nodes/NbgGr/NbgGr.node.json +20 -0
- package/dist/nodes/NbgGr/nbg-gr.dark.svg +18 -0
- package/dist/nodes/NbgGr/nbg-gr.svg +18 -0
- package/dist/nodes/NbgGr/resources/account-access/index.d.ts +2 -0
- package/dist/nodes/NbgGr/resources/account-access/index.js +641 -0
- package/dist/nodes/NbgGr/resources/account-access/index.js.map +1 -0
- package/dist/nodes/NbgGr/resources/accounts/index.d.ts +2 -0
- package/dist/nodes/NbgGr/resources/accounts/index.js +199 -0
- package/dist/nodes/NbgGr/resources/accounts/index.js.map +1 -0
- package/dist/nodes/NbgGr/resources/balances/index.d.ts +2 -0
- package/dist/nodes/NbgGr/resources/balances/index.js +217 -0
- package/dist/nodes/NbgGr/resources/balances/index.js.map +1 -0
- package/dist/nodes/NbgGr/resources/beneficiaries/index.d.ts +2 -0
- package/dist/nodes/NbgGr/resources/beneficiaries/index.js +217 -0
- package/dist/nodes/NbgGr/resources/beneficiaries/index.js.map +1 -0
- package/dist/nodes/NbgGr/resources/index.d.ts +10 -0
- package/dist/nodes/NbgGr/resources/index.js +24 -0
- package/dist/nodes/NbgGr/resources/index.js.map +1 -0
- package/dist/nodes/NbgGr/resources/parties/index.d.ts +2 -0
- package/dist/nodes/NbgGr/resources/parties/index.js +589 -0
- package/dist/nodes/NbgGr/resources/parties/index.js.map +1 -0
- package/dist/nodes/NbgGr/resources/sandbox/index.d.ts +2 -0
- package/dist/nodes/NbgGr/resources/sandbox/index.js +359 -0
- package/dist/nodes/NbgGr/resources/sandbox/index.js.map +1 -0
- package/dist/nodes/NbgGr/resources/scheduled-payments/index.d.ts +2 -0
- package/dist/nodes/NbgGr/resources/scheduled-payments/index.js +217 -0
- package/dist/nodes/NbgGr/resources/scheduled-payments/index.js.map +1 -0
- package/dist/nodes/NbgGr/resources/standing-orders/index.d.ts +2 -0
- package/dist/nodes/NbgGr/resources/standing-orders/index.js +217 -0
- package/dist/nodes/NbgGr/resources/standing-orders/index.js.map +1 -0
- package/dist/nodes/NbgGr/resources/statements/index.d.ts +2 -0
- package/dist/nodes/NbgGr/resources/statements/index.js +480 -0
- package/dist/nodes/NbgGr/resources/statements/index.js.map +1 -0
- package/dist/nodes/NbgGr/resources/transactions/index.d.ts +2 -0
- package/dist/nodes/NbgGr/resources/transactions/index.js +480 -0
- package/dist/nodes/NbgGr/resources/transactions/index.js.map +1 -0
- package/dist/package.json +62 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +62 -0
|
@@ -0,0 +1,359 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.sandboxDescription = void 0;
|
|
4
|
+
exports.sandboxDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Sandbox"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "POST Sandbox",
|
|
20
|
+
"value": "POST Sandbox",
|
|
21
|
+
"action": "Create Sandbox",
|
|
22
|
+
"description": "Create Sandbox",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "POST",
|
|
26
|
+
"url": "=/sandbox"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "PUT Sandbox",
|
|
32
|
+
"value": "PUT Sandbox",
|
|
33
|
+
"action": "Import Sandbox",
|
|
34
|
+
"description": "Import Sandbox",
|
|
35
|
+
"routing": {
|
|
36
|
+
"request": {
|
|
37
|
+
"method": "PUT",
|
|
38
|
+
"url": "=/sandbox"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "DELETE Sandbox",
|
|
44
|
+
"value": "DELETE Sandbox",
|
|
45
|
+
"action": "Delete Sandbox",
|
|
46
|
+
"description": "Delete Sandbox",
|
|
47
|
+
"routing": {
|
|
48
|
+
"request": {
|
|
49
|
+
"method": "DELETE",
|
|
50
|
+
"url": "=/sandbox/{{$parameter[\"sandboxId\"]}}"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "GET Sandbox",
|
|
56
|
+
"value": "GET Sandbox",
|
|
57
|
+
"action": "Export Sandbox",
|
|
58
|
+
"description": "Export Sandbox",
|
|
59
|
+
"routing": {
|
|
60
|
+
"request": {
|
|
61
|
+
"method": "GET",
|
|
62
|
+
"url": "=/sandbox/{{$parameter[\"sandboxId\"]}}"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"default": ""
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"displayName": "POST /sandbox",
|
|
71
|
+
"name": "operation",
|
|
72
|
+
"type": "notice",
|
|
73
|
+
"typeOptions": {
|
|
74
|
+
"theme": "info"
|
|
75
|
+
},
|
|
76
|
+
"default": "",
|
|
77
|
+
"displayOptions": {
|
|
78
|
+
"show": {
|
|
79
|
+
"resource": [
|
|
80
|
+
"Sandbox"
|
|
81
|
+
],
|
|
82
|
+
"operation": [
|
|
83
|
+
"POST Sandbox"
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"required": true,
|
|
90
|
+
"displayName": "Sandbox Id",
|
|
91
|
+
"name": "sandboxId",
|
|
92
|
+
"type": "string",
|
|
93
|
+
"default": "",
|
|
94
|
+
"description": "Sandbox Id",
|
|
95
|
+
"routing": {
|
|
96
|
+
"send": {
|
|
97
|
+
"property": "sandboxId",
|
|
98
|
+
"propertyInDotNotation": false,
|
|
99
|
+
"type": "body",
|
|
100
|
+
"value": "={{ $value }}"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"displayOptions": {
|
|
104
|
+
"show": {
|
|
105
|
+
"resource": [
|
|
106
|
+
"Sandbox"
|
|
107
|
+
],
|
|
108
|
+
"operation": [
|
|
109
|
+
"POST Sandbox"
|
|
110
|
+
]
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"displayName": "Client Id API Key",
|
|
116
|
+
"name": "security_client_id",
|
|
117
|
+
"type": "string",
|
|
118
|
+
"default": "",
|
|
119
|
+
"description": "Application's Id",
|
|
120
|
+
"required": false,
|
|
121
|
+
"routing": {
|
|
122
|
+
"request": {
|
|
123
|
+
"headers": {
|
|
124
|
+
"Client-Id": "={{ $value }}"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"displayOptions": {
|
|
129
|
+
"show": {
|
|
130
|
+
"resource": [
|
|
131
|
+
"Sandbox"
|
|
132
|
+
],
|
|
133
|
+
"operation": [
|
|
134
|
+
"POST Sandbox"
|
|
135
|
+
]
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"displayName": "PUT /sandbox",
|
|
141
|
+
"name": "operation",
|
|
142
|
+
"type": "notice",
|
|
143
|
+
"typeOptions": {
|
|
144
|
+
"theme": "info"
|
|
145
|
+
},
|
|
146
|
+
"default": "",
|
|
147
|
+
"displayOptions": {
|
|
148
|
+
"show": {
|
|
149
|
+
"resource": [
|
|
150
|
+
"Sandbox"
|
|
151
|
+
],
|
|
152
|
+
"operation": [
|
|
153
|
+
"PUT Sandbox"
|
|
154
|
+
]
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"required": true,
|
|
160
|
+
"displayName": "Sandbox Id",
|
|
161
|
+
"name": "sandboxId",
|
|
162
|
+
"type": "string",
|
|
163
|
+
"default": "",
|
|
164
|
+
"description": "Sandbox id",
|
|
165
|
+
"routing": {
|
|
166
|
+
"send": {
|
|
167
|
+
"property": "sandboxId",
|
|
168
|
+
"propertyInDotNotation": false,
|
|
169
|
+
"type": "body",
|
|
170
|
+
"value": "={{ $value }}"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"displayOptions": {
|
|
174
|
+
"show": {
|
|
175
|
+
"resource": [
|
|
176
|
+
"Sandbox"
|
|
177
|
+
],
|
|
178
|
+
"operation": [
|
|
179
|
+
"PUT Sandbox"
|
|
180
|
+
]
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"displayName": "Users",
|
|
186
|
+
"name": "users",
|
|
187
|
+
"type": "json",
|
|
188
|
+
"default": "[\n {\n \"accounts\": [\n {\n \"beneficiaries\": [\n {}\n ],\n \"info\": {},\n \"party\": {},\n \"scheduledPayments\": [\n {}\n ],\n \"standingOrders\": [\n {}\n ],\n \"statements\": [\n {}\n ],\n \"transactions\": [\n {}\n ]\n }\n ],\n \"cards\": [\n {\n \"info\": {},\n \"party\": {},\n \"statements\": [\n {}\n ],\n \"transactions\": [\n {}\n ]\n }\n ],\n \"retryCacheEntries\": [\n {}\n ]\n }\n]",
|
|
189
|
+
"description": "List of users",
|
|
190
|
+
"routing": {
|
|
191
|
+
"send": {
|
|
192
|
+
"property": "users",
|
|
193
|
+
"propertyInDotNotation": false,
|
|
194
|
+
"type": "body",
|
|
195
|
+
"value": "={{ JSON.parse($value) }}"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
"displayOptions": {
|
|
199
|
+
"show": {
|
|
200
|
+
"resource": [
|
|
201
|
+
"Sandbox"
|
|
202
|
+
],
|
|
203
|
+
"operation": [
|
|
204
|
+
"PUT Sandbox"
|
|
205
|
+
]
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"displayName": "Client Id API Key",
|
|
211
|
+
"name": "security_client_id",
|
|
212
|
+
"type": "string",
|
|
213
|
+
"default": "",
|
|
214
|
+
"description": "Application's Id",
|
|
215
|
+
"required": false,
|
|
216
|
+
"routing": {
|
|
217
|
+
"request": {
|
|
218
|
+
"headers": {
|
|
219
|
+
"Client-Id": "={{ $value }}"
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"displayOptions": {
|
|
224
|
+
"show": {
|
|
225
|
+
"resource": [
|
|
226
|
+
"Sandbox"
|
|
227
|
+
],
|
|
228
|
+
"operation": [
|
|
229
|
+
"PUT Sandbox"
|
|
230
|
+
]
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"displayName": "DELETE /sandbox/{sandboxId}",
|
|
236
|
+
"name": "operation",
|
|
237
|
+
"type": "notice",
|
|
238
|
+
"typeOptions": {
|
|
239
|
+
"theme": "info"
|
|
240
|
+
},
|
|
241
|
+
"default": "",
|
|
242
|
+
"displayOptions": {
|
|
243
|
+
"show": {
|
|
244
|
+
"resource": [
|
|
245
|
+
"Sandbox"
|
|
246
|
+
],
|
|
247
|
+
"operation": [
|
|
248
|
+
"DELETE Sandbox"
|
|
249
|
+
]
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"displayName": "Sandbox Id",
|
|
255
|
+
"name": "sandboxId",
|
|
256
|
+
"required": true,
|
|
257
|
+
"description": "Sandbox Id",
|
|
258
|
+
"default": "",
|
|
259
|
+
"type": "string",
|
|
260
|
+
"displayOptions": {
|
|
261
|
+
"show": {
|
|
262
|
+
"resource": [
|
|
263
|
+
"Sandbox"
|
|
264
|
+
],
|
|
265
|
+
"operation": [
|
|
266
|
+
"DELETE Sandbox"
|
|
267
|
+
]
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"displayName": "Client Id API Key",
|
|
273
|
+
"name": "security_client_id",
|
|
274
|
+
"type": "string",
|
|
275
|
+
"default": "",
|
|
276
|
+
"description": "Application's Id",
|
|
277
|
+
"required": false,
|
|
278
|
+
"routing": {
|
|
279
|
+
"request": {
|
|
280
|
+
"headers": {
|
|
281
|
+
"Client-Id": "={{ $value }}"
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
"displayOptions": {
|
|
286
|
+
"show": {
|
|
287
|
+
"resource": [
|
|
288
|
+
"Sandbox"
|
|
289
|
+
],
|
|
290
|
+
"operation": [
|
|
291
|
+
"DELETE Sandbox"
|
|
292
|
+
]
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"displayName": "GET /sandbox/{sandboxId}",
|
|
298
|
+
"name": "operation",
|
|
299
|
+
"type": "notice",
|
|
300
|
+
"typeOptions": {
|
|
301
|
+
"theme": "info"
|
|
302
|
+
},
|
|
303
|
+
"default": "",
|
|
304
|
+
"displayOptions": {
|
|
305
|
+
"show": {
|
|
306
|
+
"resource": [
|
|
307
|
+
"Sandbox"
|
|
308
|
+
],
|
|
309
|
+
"operation": [
|
|
310
|
+
"GET Sandbox"
|
|
311
|
+
]
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"displayName": "Sandbox Id",
|
|
317
|
+
"name": "sandboxId",
|
|
318
|
+
"required": true,
|
|
319
|
+
"description": "Sandbox Id",
|
|
320
|
+
"default": "",
|
|
321
|
+
"type": "string",
|
|
322
|
+
"displayOptions": {
|
|
323
|
+
"show": {
|
|
324
|
+
"resource": [
|
|
325
|
+
"Sandbox"
|
|
326
|
+
],
|
|
327
|
+
"operation": [
|
|
328
|
+
"GET Sandbox"
|
|
329
|
+
]
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"displayName": "Client Id API Key",
|
|
335
|
+
"name": "security_client_id",
|
|
336
|
+
"type": "string",
|
|
337
|
+
"default": "",
|
|
338
|
+
"description": "Application's Id",
|
|
339
|
+
"required": false,
|
|
340
|
+
"routing": {
|
|
341
|
+
"request": {
|
|
342
|
+
"headers": {
|
|
343
|
+
"Client-Id": "={{ $value }}"
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
"displayOptions": {
|
|
348
|
+
"show": {
|
|
349
|
+
"resource": [
|
|
350
|
+
"Sandbox"
|
|
351
|
+
],
|
|
352
|
+
"operation": [
|
|
353
|
+
"GET Sandbox"
|
|
354
|
+
]
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
},
|
|
358
|
+
];
|
|
359
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/NbgGr/resources/sandbox/index.ts"],"names":[],"mappings":";;;AAEa,QAAA,kBAAkB,GAAsB;IACnD;QACC,aAAa,EAAE,WAAW;QAC1B,MAAM,EAAE,WAAW;QACnB,MAAM,EAAE,SAAS;QACjB,kBAAkB,EAAE,IAAI;QACxB,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,SAAS;iBACT;aACD;SACD;QACD,SAAS,EAAE;YACV;gBACC,MAAM,EAAE,cAAc;gBACtB,OAAO,EAAE,cAAc;gBACvB,QAAQ,EAAE,gBAAgB;gBAC1B,aAAa,EAAE,gBAAgB;gBAC/B,SAAS,EAAE;oBACV,SAAS,EAAE;wBACV,QAAQ,EAAE,MAAM;wBAChB,KAAK,EAAE,WAAW;qBAClB;iBACD;aACD;YACD;gBACC,MAAM,EAAE,aAAa;gBACrB,OAAO,EAAE,aAAa;gBACtB,QAAQ,EAAE,gBAAgB;gBAC1B,aAAa,EAAE,gBAAgB;gBAC/B,SAAS,EAAE;oBACV,SAAS,EAAE;wBACV,QAAQ,EAAE,KAAK;wBACf,KAAK,EAAE,WAAW;qBAClB;iBACD;aACD;YACD;gBACC,MAAM,EAAE,gBAAgB;gBACxB,OAAO,EAAE,gBAAgB;gBACzB,QAAQ,EAAE,gBAAgB;gBAC1B,aAAa,EAAE,gBAAgB;gBAC/B,SAAS,EAAE;oBACV,SAAS,EAAE;wBACV,QAAQ,EAAE,QAAQ;wBAClB,KAAK,EAAE,yCAAyC;qBAChD;iBACD;aACD;YACD;gBACC,MAAM,EAAE,aAAa;gBACrB,OAAO,EAAE,aAAa;gBACtB,QAAQ,EAAE,gBAAgB;gBAC1B,aAAa,EAAE,gBAAgB;gBAC/B,SAAS,EAAE;oBACV,SAAS,EAAE;wBACV,QAAQ,EAAE,KAAK;wBACf,KAAK,EAAE,yCAAyC;qBAChD;iBACD;aACD;SACD;QACD,SAAS,EAAE,EAAE;KACb;IACD;QACC,aAAa,EAAE,eAAe;QAC9B,MAAM,EAAE,WAAW;QACnB,MAAM,EAAE,QAAQ;QAChB,aAAa,EAAE;YACd,OAAO,EAAE,MAAM;SACf;QACD,SAAS,EAAE,EAAE;QACb,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,SAAS;iBACT;gBACD,WAAW,EAAE;oBACZ,cAAc;iBACd;aACD;SACD;KACD;IACD;QACC,UAAU,EAAE,IAAI;QAChB,aAAa,EAAE,YAAY;QAC3B,MAAM,EAAE,WAAW;QACnB,MAAM,EAAE,QAAQ;QAChB,SAAS,EAAE,EAAE;QACb,aAAa,EAAE,YAAY;QAC3B,SAAS,EAAE;YACV,MAAM,EAAE;gBACP,UAAU,EAAE,WAAW;gBACvB,uBAAuB,EAAE,KAAK;gBAC9B,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE,eAAe;aACxB;SACD;QACD,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,SAAS;iBACT;gBACD,WAAW,EAAE;oBACZ,cAAc;iBACd;aACD;SACD;KACD;IACD;QACC,aAAa,EAAE,mBAAmB;QAClC,MAAM,EAAE,oBAAoB;QAC5B,MAAM,EAAE,QAAQ;QAChB,SAAS,EAAE,EAAE;QACb,aAAa,EAAE,kBAAkB;QACjC,UAAU,EAAE,KAAK;QACjB,SAAS,EAAE;YACV,SAAS,EAAE;gBACV,SAAS,EAAE;oBACV,WAAW,EAAE,eAAe;iBAC5B;aACD;SACD;QACD,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,SAAS;iBACT;gBACD,WAAW,EAAE;oBACZ,cAAc;iBACd;aACD;SACD;KACD;IACD;QACC,aAAa,EAAE,cAAc;QAC7B,MAAM,EAAE,WAAW;QACnB,MAAM,EAAE,QAAQ;QAChB,aAAa,EAAE;YACd,OAAO,EAAE,MAAM;SACf;QACD,SAAS,EAAE,EAAE;QACb,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,SAAS;iBACT;gBACD,WAAW,EAAE;oBACZ,aAAa;iBACb;aACD;SACD;KACD;IACD;QACC,UAAU,EAAE,IAAI;QAChB,aAAa,EAAE,YAAY;QAC3B,MAAM,EAAE,WAAW;QACnB,MAAM,EAAE,QAAQ;QAChB,SAAS,EAAE,EAAE;QACb,aAAa,EAAE,YAAY;QAC3B,SAAS,EAAE;YACV,MAAM,EAAE;gBACP,UAAU,EAAE,WAAW;gBACvB,uBAAuB,EAAE,KAAK;gBAC9B,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE,eAAe;aACxB;SACD;QACD,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,SAAS;iBACT;gBACD,WAAW,EAAE;oBACZ,aAAa;iBACb;aACD;SACD;KACD;IACD;QACC,aAAa,EAAE,OAAO;QACtB,MAAM,EAAE,OAAO;QACf,MAAM,EAAE,MAAM;QACd,SAAS,EAAE,2nBAA2nB;QACtoB,aAAa,EAAE,eAAe;QAC9B,SAAS,EAAE;YACV,MAAM,EAAE;gBACP,UAAU,EAAE,OAAO;gBACnB,uBAAuB,EAAE,KAAK;gBAC9B,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE,2BAA2B;aACpC;SACD;QACD,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,SAAS;iBACT;gBACD,WAAW,EAAE;oBACZ,aAAa;iBACb;aACD;SACD;KACD;IACD;QACC,aAAa,EAAE,mBAAmB;QAClC,MAAM,EAAE,oBAAoB;QAC5B,MAAM,EAAE,QAAQ;QAChB,SAAS,EAAE,EAAE;QACb,aAAa,EAAE,kBAAkB;QACjC,UAAU,EAAE,KAAK;QACjB,SAAS,EAAE;YACV,SAAS,EAAE;gBACV,SAAS,EAAE;oBACV,WAAW,EAAE,eAAe;iBAC5B;aACD;SACD;QACD,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,SAAS;iBACT;gBACD,WAAW,EAAE;oBACZ,aAAa;iBACb;aACD;SACD;KACD;IACD;QACC,aAAa,EAAE,6BAA6B;QAC5C,MAAM,EAAE,WAAW;QACnB,MAAM,EAAE,QAAQ;QAChB,aAAa,EAAE;YACd,OAAO,EAAE,MAAM;SACf;QACD,SAAS,EAAE,EAAE;QACb,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,SAAS;iBACT;gBACD,WAAW,EAAE;oBACZ,gBAAgB;iBAChB;aACD;SACD;KACD;IACD;QACC,aAAa,EAAE,YAAY;QAC3B,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,IAAI;QAChB,aAAa,EAAE,YAAY;QAC3B,SAAS,EAAE,EAAE;QACb,MAAM,EAAE,QAAQ;QAChB,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,SAAS;iBACT;gBACD,WAAW,EAAE;oBACZ,gBAAgB;iBAChB;aACD;SACD;KACD;IACD;QACC,aAAa,EAAE,mBAAmB;QAClC,MAAM,EAAE,oBAAoB;QAC5B,MAAM,EAAE,QAAQ;QAChB,SAAS,EAAE,EAAE;QACb,aAAa,EAAE,kBAAkB;QACjC,UAAU,EAAE,KAAK;QACjB,SAAS,EAAE;YACV,SAAS,EAAE;gBACV,SAAS,EAAE;oBACV,WAAW,EAAE,eAAe;iBAC5B;aACD;SACD;QACD,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,SAAS;iBACT;gBACD,WAAW,EAAE;oBACZ,gBAAgB;iBAChB;aACD;SACD;KACD;IACD;QACC,aAAa,EAAE,0BAA0B;QACzC,MAAM,EAAE,WAAW;QACnB,MAAM,EAAE,QAAQ;QAChB,aAAa,EAAE;YACd,OAAO,EAAE,MAAM;SACf;QACD,SAAS,EAAE,EAAE;QACb,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,SAAS;iBACT;gBACD,WAAW,EAAE;oBACZ,aAAa;iBACb;aACD;SACD;KACD;IACD;QACC,aAAa,EAAE,YAAY;QAC3B,MAAM,EAAE,WAAW;QACnB,UAAU,EAAE,IAAI;QAChB,aAAa,EAAE,YAAY;QAC3B,SAAS,EAAE,EAAE;QACb,MAAM,EAAE,QAAQ;QAChB,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,SAAS;iBACT;gBACD,WAAW,EAAE;oBACZ,aAAa;iBACb;aACD;SACD;KACD;IACD;QACC,aAAa,EAAE,mBAAmB;QAClC,MAAM,EAAE,oBAAoB;QAC5B,MAAM,EAAE,QAAQ;QAChB,SAAS,EAAE,EAAE;QACb,aAAa,EAAE,kBAAkB;QACjC,UAAU,EAAE,KAAK;QACjB,SAAS,EAAE;YACV,SAAS,EAAE;gBACV,SAAS,EAAE;oBACV,WAAW,EAAE,eAAe;iBAC5B;aACD;SACD;QACD,gBAAgB,EAAE;YACjB,MAAM,EAAE;gBACP,UAAU,EAAE;oBACX,SAAS;iBACT;gBACD,WAAW,EAAE;oBACZ,aAAa;iBACb;aACD;SACD;KACD;CACF,CAAC"}
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.scheduledPaymentsDescription = void 0;
|
|
4
|
+
exports.scheduledPaymentsDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Scheduled Payments"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "GET Accounts Scheduled Payments",
|
|
20
|
+
"value": "GET Accounts Scheduled Payments",
|
|
21
|
+
"action": "Get Scheduled Payments",
|
|
22
|
+
"description": "Get Scheduled Payments by Account ID",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "GET",
|
|
26
|
+
"url": "=/accounts/{{$parameter[\"accountId\"]}}/scheduled-payments"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"default": ""
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"displayName": "GET /accounts/{accountId}/scheduled-payments",
|
|
35
|
+
"name": "operation",
|
|
36
|
+
"type": "notice",
|
|
37
|
+
"typeOptions": {
|
|
38
|
+
"theme": "info"
|
|
39
|
+
},
|
|
40
|
+
"default": "",
|
|
41
|
+
"displayOptions": {
|
|
42
|
+
"show": {
|
|
43
|
+
"resource": [
|
|
44
|
+
"Scheduled Payments"
|
|
45
|
+
],
|
|
46
|
+
"operation": [
|
|
47
|
+
"GET Accounts Scheduled Payments"
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"displayName": "Account Id",
|
|
54
|
+
"name": "accountId",
|
|
55
|
+
"required": true,
|
|
56
|
+
"description": "AccountId",
|
|
57
|
+
"default": "",
|
|
58
|
+
"type": "string",
|
|
59
|
+
"displayOptions": {
|
|
60
|
+
"show": {
|
|
61
|
+
"resource": [
|
|
62
|
+
"Scheduled Payments"
|
|
63
|
+
],
|
|
64
|
+
"operation": [
|
|
65
|
+
"GET Accounts Scheduled Payments"
|
|
66
|
+
]
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"displayName": "X Fapi Auth Date",
|
|
72
|
+
"name": "x-fapi-auth-date",
|
|
73
|
+
"description": "The time when the PSU last logged in with the TPP.\r\nAll dates in the HTTP headers are represented as RFC 7231 Full Dates. An example is below:\r\nSun, 10 Sep 2017 19:43:31 UTC",
|
|
74
|
+
"default": "",
|
|
75
|
+
"type": "string",
|
|
76
|
+
"routing": {
|
|
77
|
+
"request": {
|
|
78
|
+
"headers": {
|
|
79
|
+
"x-fapi-auth-date": "={{ $value }}"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"displayOptions": {
|
|
84
|
+
"show": {
|
|
85
|
+
"resource": [
|
|
86
|
+
"Scheduled Payments"
|
|
87
|
+
],
|
|
88
|
+
"operation": [
|
|
89
|
+
"GET Accounts Scheduled Payments"
|
|
90
|
+
]
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"displayName": "X Fapi Customer Ip Address",
|
|
96
|
+
"name": "x-fapi-customer-ip-address",
|
|
97
|
+
"description": "The PSU's IP address if the PSU is currently logged in with the TPP.",
|
|
98
|
+
"default": "",
|
|
99
|
+
"type": "string",
|
|
100
|
+
"routing": {
|
|
101
|
+
"request": {
|
|
102
|
+
"headers": {
|
|
103
|
+
"x-fapi-customer-ip-address": "={{ $value }}"
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"displayOptions": {
|
|
108
|
+
"show": {
|
|
109
|
+
"resource": [
|
|
110
|
+
"Scheduled Payments"
|
|
111
|
+
],
|
|
112
|
+
"operation": [
|
|
113
|
+
"GET Accounts Scheduled Payments"
|
|
114
|
+
]
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"displayName": "X Fapi Interaction Id",
|
|
120
|
+
"name": "x-fapi-interaction-id",
|
|
121
|
+
"description": "An RFC4122 UID used as a correlation id.",
|
|
122
|
+
"default": "",
|
|
123
|
+
"type": "string",
|
|
124
|
+
"routing": {
|
|
125
|
+
"request": {
|
|
126
|
+
"headers": {
|
|
127
|
+
"x-fapi-interaction-id": "={{ $value }}"
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
},
|
|
131
|
+
"displayOptions": {
|
|
132
|
+
"show": {
|
|
133
|
+
"resource": [
|
|
134
|
+
"Scheduled Payments"
|
|
135
|
+
],
|
|
136
|
+
"operation": [
|
|
137
|
+
"GET Accounts Scheduled Payments"
|
|
138
|
+
]
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"displayName": "X Customer User Agent",
|
|
144
|
+
"name": "x-customer-user-agent",
|
|
145
|
+
"description": "Indicates the user-agent that the PSU is using.",
|
|
146
|
+
"default": "",
|
|
147
|
+
"type": "string",
|
|
148
|
+
"routing": {
|
|
149
|
+
"request": {
|
|
150
|
+
"headers": {
|
|
151
|
+
"x-customer-user-agent": "={{ $value }}"
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"displayOptions": {
|
|
156
|
+
"show": {
|
|
157
|
+
"resource": [
|
|
158
|
+
"Scheduled Payments"
|
|
159
|
+
],
|
|
160
|
+
"operation": [
|
|
161
|
+
"GET Accounts Scheduled Payments"
|
|
162
|
+
]
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"displayName": "Sandbox Id",
|
|
168
|
+
"name": "sandbox-id",
|
|
169
|
+
"required": true,
|
|
170
|
+
"description": "The unique id of the sandbox to be used",
|
|
171
|
+
"default": "",
|
|
172
|
+
"type": "string",
|
|
173
|
+
"routing": {
|
|
174
|
+
"request": {
|
|
175
|
+
"headers": {
|
|
176
|
+
"sandbox-id": "={{ $value }}"
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
"displayOptions": {
|
|
181
|
+
"show": {
|
|
182
|
+
"resource": [
|
|
183
|
+
"Scheduled Payments"
|
|
184
|
+
],
|
|
185
|
+
"operation": [
|
|
186
|
+
"GET Accounts Scheduled Payments"
|
|
187
|
+
]
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"displayName": "Client Id API Key",
|
|
193
|
+
"name": "security_client_id",
|
|
194
|
+
"type": "string",
|
|
195
|
+
"default": "",
|
|
196
|
+
"description": "Application's Id",
|
|
197
|
+
"required": false,
|
|
198
|
+
"routing": {
|
|
199
|
+
"request": {
|
|
200
|
+
"headers": {
|
|
201
|
+
"Client-Id": "={{ $value }}"
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"displayOptions": {
|
|
206
|
+
"show": {
|
|
207
|
+
"resource": [
|
|
208
|
+
"Scheduled Payments"
|
|
209
|
+
],
|
|
210
|
+
"operation": [
|
|
211
|
+
"GET Accounts Scheduled Payments"
|
|
212
|
+
]
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
];
|
|
217
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/NbgGr/resources/scheduled-payments/index.ts"],"names":[],"mappings":"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"}
|