@n8n-dev/n8n-nodes-amazonaws-personalize-runtime 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.
Files changed (22) hide show
  1. package/README.md +101 -0
  2. package/dist/banner.svg +113 -0
  3. package/dist/credentials/AmazonawsPersonalizeRuntimeApi.credentials.d.ts +9 -0
  4. package/dist/credentials/AmazonawsPersonalizeRuntimeApi.credentials.js +49 -0
  5. package/dist/credentials/AmazonawsPersonalizeRuntimeApi.credentials.js.map +1 -0
  6. package/dist/icons/amazonaws-personalize-runtime.dark.png +0 -0
  7. package/dist/icons/amazonaws-personalize-runtime.png +0 -0
  8. package/dist/nodes/AmazonawsPersonalizeRuntime/AmazonawsPersonalizeRuntime.node.d.ts +4 -0
  9. package/dist/nodes/AmazonawsPersonalizeRuntime/AmazonawsPersonalizeRuntime.node.js +54 -0
  10. package/dist/nodes/AmazonawsPersonalizeRuntime/AmazonawsPersonalizeRuntime.node.js.map +1 -0
  11. package/dist/nodes/AmazonawsPersonalizeRuntime/AmazonawsPersonalizeRuntime.node.json +20 -0
  12. package/dist/nodes/AmazonawsPersonalizeRuntime/amazonaws-personalize-runtime.dark.png +0 -0
  13. package/dist/nodes/AmazonawsPersonalizeRuntime/amazonaws-personalize-runtime.png +0 -0
  14. package/dist/nodes/AmazonawsPersonalizeRuntime/resources/default/index.d.ts +2 -0
  15. package/dist/nodes/AmazonawsPersonalizeRuntime/resources/default/index.js +512 -0
  16. package/dist/nodes/AmazonawsPersonalizeRuntime/resources/default/index.js.map +1 -0
  17. package/dist/nodes/AmazonawsPersonalizeRuntime/resources/index.d.ts +1 -0
  18. package/dist/nodes/AmazonawsPersonalizeRuntime/resources/index.js +6 -0
  19. package/dist/nodes/AmazonawsPersonalizeRuntime/resources/index.js.map +1 -0
  20. package/dist/package.json +62 -0
  21. package/dist/tsconfig.tsbuildinfo +1 -0
  22. package/package.json +62 -0
@@ -0,0 +1,512 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.defaultDescription = void 0;
4
+ exports.defaultDescription = [
5
+ {
6
+ "displayName": "Operation",
7
+ "name": "operation",
8
+ "type": "options",
9
+ "noDataExpression": true,
10
+ "displayOptions": {
11
+ "show": {
12
+ "resource": [
13
+ "Default"
14
+ ]
15
+ }
16
+ },
17
+ "options": [
18
+ {
19
+ "name": "Get Personalized Ranking",
20
+ "value": "Get Personalized Ranking",
21
+ "action": "Get Personalized Ranking",
22
+ "description": "<p>Re-ranks a list of recommended items for the given user. The first item in the list is deemed the most likely item to be of interest to the user.</p> <note> <p>The solution backing the campaign must have been created using a recipe of type PERSONALIZED_RANKING.</p> </note>",
23
+ "routing": {
24
+ "request": {
25
+ "method": "POST",
26
+ "url": "=/personalize-ranking"
27
+ }
28
+ }
29
+ },
30
+ {
31
+ "name": "Get Recommendations",
32
+ "value": "Get Recommendations",
33
+ "action": "Get Recommendations",
34
+ "description": "<p>Returns a list of recommended items. For campaigns, the campaign's Amazon Resource Name (ARN) is required and the required user and item input depends on the recipe type used to create the solution backing the campaign as follows:</p> <ul> <li> <p>USER_PERSONALIZATION - <code>userId</code> required, <code>itemId</code> not used</p> </li> <li> <p>RELATED_ITEMS - <code>itemId</code> required, <code>userId</code> not used</p> </li> </ul> <note> <p>Campaigns that are backed by a solution created using a recipe of type PERSONALIZED_RANKING use the API.</p> </note> <p> For recommenders, the recommender's ARN is required and the required item and user input depends on the use case (domain-based recipe) backing the recommender. For information on use case requirements see <a href=\"https://docs.aws.amazon.com/personalize/latest/dg/domain-use-cases.html\">Choosing recommender use cases</a>. </p>",
35
+ "routing": {
36
+ "request": {
37
+ "method": "POST",
38
+ "url": "=/recommendations"
39
+ }
40
+ }
41
+ }
42
+ ],
43
+ "default": ""
44
+ },
45
+ {
46
+ "displayName": "POST /personalize-ranking",
47
+ "name": "operation",
48
+ "type": "notice",
49
+ "typeOptions": {
50
+ "theme": "info"
51
+ },
52
+ "default": "",
53
+ "displayOptions": {
54
+ "show": {
55
+ "resource": [
56
+ "Default"
57
+ ],
58
+ "operation": [
59
+ "Get Personalized Ranking"
60
+ ]
61
+ }
62
+ }
63
+ },
64
+ {
65
+ "required": true,
66
+ "displayName": "Campaign Arn",
67
+ "name": "campaignArn",
68
+ "type": "string",
69
+ "default": "",
70
+ "description": "The Amazon Resource Name (ARN) of the campaign to use for generating the personalized ranking.",
71
+ "routing": {
72
+ "send": {
73
+ "property": "campaignArn",
74
+ "propertyInDotNotation": false,
75
+ "type": "body",
76
+ "value": "={{ $value }}"
77
+ }
78
+ },
79
+ "displayOptions": {
80
+ "show": {
81
+ "resource": [
82
+ "Default"
83
+ ],
84
+ "operation": [
85
+ "Get Personalized Ranking"
86
+ ]
87
+ }
88
+ }
89
+ },
90
+ {
91
+ "required": true,
92
+ "displayName": "Input List",
93
+ "name": "inputList",
94
+ "type": "json",
95
+ "default": "[\n null\n]",
96
+ "description": "A list of items (by <code>itemId</code>) to rank. If an item was not included in the training dataset, the item is appended to the end of the reranked list. The maximum is 500.",
97
+ "routing": {
98
+ "send": {
99
+ "property": "inputList",
100
+ "propertyInDotNotation": false,
101
+ "type": "body",
102
+ "value": "={{ JSON.parse($value) }}"
103
+ }
104
+ },
105
+ "displayOptions": {
106
+ "show": {
107
+ "resource": [
108
+ "Default"
109
+ ],
110
+ "operation": [
111
+ "Get Personalized Ranking"
112
+ ]
113
+ }
114
+ }
115
+ },
116
+ {
117
+ "required": true,
118
+ "displayName": "User ID",
119
+ "name": "userId",
120
+ "type": "string",
121
+ "default": "",
122
+ "description": "The user for which you want the campaign to provide a personalized ranking.",
123
+ "routing": {
124
+ "send": {
125
+ "property": "userId",
126
+ "propertyInDotNotation": false,
127
+ "type": "body",
128
+ "value": "={{ $value }}"
129
+ }
130
+ },
131
+ "displayOptions": {
132
+ "show": {
133
+ "resource": [
134
+ "Default"
135
+ ],
136
+ "operation": [
137
+ "Get Personalized Ranking"
138
+ ]
139
+ }
140
+ }
141
+ },
142
+ {
143
+ "displayName": "Context",
144
+ "name": "context",
145
+ "type": "json",
146
+ "default": "{}",
147
+ "description": "The contextual metadata to use when getting recommendations. Contextual metadata includes any interaction information that might be relevant when getting a user's recommendations, such as the user's current location or device type.",
148
+ "routing": {
149
+ "send": {
150
+ "property": "context",
151
+ "propertyInDotNotation": false,
152
+ "type": "body",
153
+ "value": "={{ JSON.parse($value) }}"
154
+ }
155
+ },
156
+ "displayOptions": {
157
+ "show": {
158
+ "resource": [
159
+ "Default"
160
+ ],
161
+ "operation": [
162
+ "Get Personalized Ranking"
163
+ ]
164
+ }
165
+ }
166
+ },
167
+ {
168
+ "displayName": "Filter Arn",
169
+ "name": "filterArn",
170
+ "type": "string",
171
+ "default": "",
172
+ "description": "The Amazon Resource Name (ARN) of a filter you created to include items or exclude items from recommendations for a given user. For more information, see <a href=\"https://docs.aws.amazon.com/personalize/latest/dg/filter.html\">Filtering Recommendations</a>.",
173
+ "routing": {
174
+ "send": {
175
+ "property": "filterArn",
176
+ "propertyInDotNotation": false,
177
+ "type": "body",
178
+ "value": "={{ $value }}"
179
+ }
180
+ },
181
+ "displayOptions": {
182
+ "show": {
183
+ "resource": [
184
+ "Default"
185
+ ],
186
+ "operation": [
187
+ "Get Personalized Ranking"
188
+ ]
189
+ }
190
+ }
191
+ },
192
+ {
193
+ "displayName": "Filter Values",
194
+ "name": "filterValues",
195
+ "type": "json",
196
+ "default": "{}",
197
+ "description": "<p>The values to use when filtering recommendations. For each placeholder parameter in your filter expression, provide the parameter name (in matching case) as a key and the filter value(s) as the corresponding value. Separate multiple values for one parameter with a comma. </p> <p>For filter expressions that use an <code>INCLUDE</code> element to include items, you must provide values for all parameters that are defined in the expression. For filters with expressions that use an <code>EXCLUDE</code> element to exclude items, you can omit the <code>filter-values</code>.In this case, Amazon Personalize doesn't use that portion of the expression to filter recommendations.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/personalize/latest/dg/filter.html\">Filtering Recommendations</a>.</p>",
198
+ "routing": {
199
+ "send": {
200
+ "property": "filterValues",
201
+ "propertyInDotNotation": false,
202
+ "type": "body",
203
+ "value": "={{ JSON.parse($value) }}"
204
+ }
205
+ },
206
+ "displayOptions": {
207
+ "show": {
208
+ "resource": [
209
+ "Default"
210
+ ],
211
+ "operation": [
212
+ "Get Personalized Ranking"
213
+ ]
214
+ }
215
+ }
216
+ },
217
+ {
218
+ "displayName": "Hmac API Key",
219
+ "name": "security_hmac",
220
+ "type": "string",
221
+ "default": "",
222
+ "description": "Amazon Signature authorization v4",
223
+ "required": false,
224
+ "routing": {
225
+ "request": {
226
+ "headers": {
227
+ "Authorization": "={{ $value }}"
228
+ }
229
+ }
230
+ },
231
+ "displayOptions": {
232
+ "show": {
233
+ "resource": [
234
+ "Default"
235
+ ],
236
+ "operation": [
237
+ "Get Personalized Ranking"
238
+ ]
239
+ }
240
+ }
241
+ },
242
+ {
243
+ "displayName": "POST /recommendations",
244
+ "name": "operation",
245
+ "type": "notice",
246
+ "typeOptions": {
247
+ "theme": "info"
248
+ },
249
+ "default": "",
250
+ "displayOptions": {
251
+ "show": {
252
+ "resource": [
253
+ "Default"
254
+ ],
255
+ "operation": [
256
+ "Get Recommendations"
257
+ ]
258
+ }
259
+ }
260
+ },
261
+ {
262
+ "displayName": "Campaign Arn",
263
+ "name": "campaignArn",
264
+ "type": "string",
265
+ "default": "",
266
+ "description": "The Amazon Resource Name (ARN) of the campaign to use for getting recommendations.",
267
+ "routing": {
268
+ "send": {
269
+ "property": "campaignArn",
270
+ "propertyInDotNotation": false,
271
+ "type": "body",
272
+ "value": "={{ $value }}"
273
+ }
274
+ },
275
+ "displayOptions": {
276
+ "show": {
277
+ "resource": [
278
+ "Default"
279
+ ],
280
+ "operation": [
281
+ "Get Recommendations"
282
+ ]
283
+ }
284
+ }
285
+ },
286
+ {
287
+ "displayName": "Item ID",
288
+ "name": "itemId",
289
+ "type": "string",
290
+ "default": "",
291
+ "description": "<p>The item ID to provide recommendations for.</p> <p>Required for <code>RELATED_ITEMS</code> recipe type.</p>",
292
+ "routing": {
293
+ "send": {
294
+ "property": "itemId",
295
+ "propertyInDotNotation": false,
296
+ "type": "body",
297
+ "value": "={{ $value }}"
298
+ }
299
+ },
300
+ "displayOptions": {
301
+ "show": {
302
+ "resource": [
303
+ "Default"
304
+ ],
305
+ "operation": [
306
+ "Get Recommendations"
307
+ ]
308
+ }
309
+ }
310
+ },
311
+ {
312
+ "displayName": "User ID",
313
+ "name": "userId",
314
+ "type": "string",
315
+ "default": "",
316
+ "description": "<p>The user ID to provide recommendations for.</p> <p>Required for <code>USER_PERSONALIZATION</code> recipe type.</p>",
317
+ "routing": {
318
+ "send": {
319
+ "property": "userId",
320
+ "propertyInDotNotation": false,
321
+ "type": "body",
322
+ "value": "={{ $value }}"
323
+ }
324
+ },
325
+ "displayOptions": {
326
+ "show": {
327
+ "resource": [
328
+ "Default"
329
+ ],
330
+ "operation": [
331
+ "Get Recommendations"
332
+ ]
333
+ }
334
+ }
335
+ },
336
+ {
337
+ "displayName": "Num Results",
338
+ "name": "numResults",
339
+ "type": "number",
340
+ "default": 0,
341
+ "description": "The number of results to return. The default is 25. The maximum is 500.",
342
+ "routing": {
343
+ "send": {
344
+ "property": "numResults",
345
+ "propertyInDotNotation": false,
346
+ "type": "body",
347
+ "value": "={{ $value }}"
348
+ }
349
+ },
350
+ "displayOptions": {
351
+ "show": {
352
+ "resource": [
353
+ "Default"
354
+ ],
355
+ "operation": [
356
+ "Get Recommendations"
357
+ ]
358
+ }
359
+ }
360
+ },
361
+ {
362
+ "displayName": "Context",
363
+ "name": "context",
364
+ "type": "json",
365
+ "default": "{}",
366
+ "description": "The contextual metadata to use when getting recommendations. Contextual metadata includes any interaction information that might be relevant when getting a user's recommendations, such as the user's current location or device type.",
367
+ "routing": {
368
+ "send": {
369
+ "property": "context",
370
+ "propertyInDotNotation": false,
371
+ "type": "body",
372
+ "value": "={{ JSON.parse($value) }}"
373
+ }
374
+ },
375
+ "displayOptions": {
376
+ "show": {
377
+ "resource": [
378
+ "Default"
379
+ ],
380
+ "operation": [
381
+ "Get Recommendations"
382
+ ]
383
+ }
384
+ }
385
+ },
386
+ {
387
+ "displayName": "Filter Arn",
388
+ "name": "filterArn",
389
+ "type": "string",
390
+ "default": "",
391
+ "description": "<p>The ARN of the filter to apply to the returned recommendations. For more information, see <a href=\"https://docs.aws.amazon.com/personalize/latest/dg/filter.html\">Filtering Recommendations</a>.</p> <p>When using this parameter, be sure the filter resource is <code>ACTIVE</code>.</p>",
392
+ "routing": {
393
+ "send": {
394
+ "property": "filterArn",
395
+ "propertyInDotNotation": false,
396
+ "type": "body",
397
+ "value": "={{ $value }}"
398
+ }
399
+ },
400
+ "displayOptions": {
401
+ "show": {
402
+ "resource": [
403
+ "Default"
404
+ ],
405
+ "operation": [
406
+ "Get Recommendations"
407
+ ]
408
+ }
409
+ }
410
+ },
411
+ {
412
+ "displayName": "Filter Values",
413
+ "name": "filterValues",
414
+ "type": "json",
415
+ "default": "{}",
416
+ "description": "<p>The values to use when filtering recommendations. For each placeholder parameter in your filter expression, provide the parameter name (in matching case) as a key and the filter value(s) as the corresponding value. Separate multiple values for one parameter with a comma. </p> <p>For filter expressions that use an <code>INCLUDE</code> element to include items, you must provide values for all parameters that are defined in the expression. For filters with expressions that use an <code>EXCLUDE</code> element to exclude items, you can omit the <code>filter-values</code>.In this case, Amazon Personalize doesn't use that portion of the expression to filter recommendations.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/personalize/latest/dg/filter.html\">Filtering recommendations and user segments</a>.</p>",
417
+ "routing": {
418
+ "send": {
419
+ "property": "filterValues",
420
+ "propertyInDotNotation": false,
421
+ "type": "body",
422
+ "value": "={{ JSON.parse($value) }}"
423
+ }
424
+ },
425
+ "displayOptions": {
426
+ "show": {
427
+ "resource": [
428
+ "Default"
429
+ ],
430
+ "operation": [
431
+ "Get Recommendations"
432
+ ]
433
+ }
434
+ }
435
+ },
436
+ {
437
+ "displayName": "Recommender Arn",
438
+ "name": "recommenderArn",
439
+ "type": "string",
440
+ "default": "",
441
+ "description": "The Amazon Resource Name (ARN) of the recommender to use to get recommendations. Provide a recommender ARN if you created a Domain dataset group with a recommender for a domain use case.",
442
+ "routing": {
443
+ "send": {
444
+ "property": "recommenderArn",
445
+ "propertyInDotNotation": false,
446
+ "type": "body",
447
+ "value": "={{ $value }}"
448
+ }
449
+ },
450
+ "displayOptions": {
451
+ "show": {
452
+ "resource": [
453
+ "Default"
454
+ ],
455
+ "operation": [
456
+ "Get Recommendations"
457
+ ]
458
+ }
459
+ }
460
+ },
461
+ {
462
+ "displayName": "Promotions",
463
+ "name": "promotions",
464
+ "type": "json",
465
+ "default": "[\n {\n \"percentPromotedItems\": {},\n \"filterArn\": {},\n \"filterValues\": {}\n }\n]",
466
+ "description": "The promotions to apply to the recommendation request. A promotion defines additional business rules that apply to a configurable subset of recommended items.",
467
+ "routing": {
468
+ "send": {
469
+ "property": "promotions",
470
+ "propertyInDotNotation": false,
471
+ "type": "body",
472
+ "value": "={{ JSON.parse($value) }}"
473
+ }
474
+ },
475
+ "displayOptions": {
476
+ "show": {
477
+ "resource": [
478
+ "Default"
479
+ ],
480
+ "operation": [
481
+ "Get Recommendations"
482
+ ]
483
+ }
484
+ }
485
+ },
486
+ {
487
+ "displayName": "Hmac API Key",
488
+ "name": "security_hmac",
489
+ "type": "string",
490
+ "default": "",
491
+ "description": "Amazon Signature authorization v4",
492
+ "required": false,
493
+ "routing": {
494
+ "request": {
495
+ "headers": {
496
+ "Authorization": "={{ $value }}"
497
+ }
498
+ }
499
+ },
500
+ "displayOptions": {
501
+ "show": {
502
+ "resource": [
503
+ "Default"
504
+ ],
505
+ "operation": [
506
+ "Get Recommendations"
507
+ ]
508
+ }
509
+ }
510
+ },
511
+ ];
512
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/AmazonawsPersonalizeRuntime/resources/default/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ export { defaultDescription } from './default';
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.defaultDescription = void 0;
4
+ var default_1 = require("./default");
5
+ Object.defineProperty(exports, "defaultDescription", { enumerable: true, get: function () { return default_1.defaultDescription; } });
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../nodes/AmazonawsPersonalizeRuntime/resources/index.ts"],"names":[],"mappings":";;;AAAA,qCAA+C;AAAtC,6GAAA,kBAAkB,OAAA"}
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@n8n-dev/n8n-nodes-amazonaws-personalize-runtime",
3
+ "version": "1.0.0",
4
+ "description": "n8n community node for Amazonaws Personalize Runtime API",
5
+ "license": "MIT",
6
+ "homepage": "https://n8n-code.github.io/n8n-dev/#/n8n-nodes-amazonaws-personalize-runtime",
7
+ "keywords": [
8
+ "n8n",
9
+ "n8n-community-node",
10
+ "n8n-node",
11
+ "n8n-community-node-package",
12
+ "openapi",
13
+ "swagger",
14
+ "API",
15
+ "automation",
16
+ "workflow",
17
+ "amazonaws-personalize-runtime"
18
+ ],
19
+ "author": {
20
+ "name": "kelvinzer0",
21
+ "email": ""
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/n8n-code/n8n-nodes-amazonaws-personalize-runtime.git"
26
+ },
27
+ "scripts": {
28
+ "build": "n8n-node build",
29
+ "build:watch": "tsc --watch",
30
+ "dev": "n8n-node dev",
31
+ "lint": "n8n-node lint",
32
+ "lint:fix": "n8n-node lint --fix",
33
+ "release": "n8n-node release",
34
+ "prepublishOnly": "npm run build"
35
+ },
36
+ "files": [
37
+ "dist"
38
+ ],
39
+ "n8n": {
40
+ "n8nNodesApiVersion": 1,
41
+ "strict": true,
42
+ "credentials": [
43
+ "dist/credentials/AmazonawsPersonalizeRuntimeApi.credentials.js"
44
+ ],
45
+ "nodes": [
46
+ "dist/nodes/AmazonawsPersonalizeRuntime/AmazonawsPersonalizeRuntime.node.js"
47
+ ]
48
+ },
49
+ "dependencies": {
50
+ "n8n-workflow": "*"
51
+ },
52
+ "devDependencies": {
53
+ "@n8n/node-cli": "*",
54
+ "eslint": "*",
55
+ "prettier": "3.8.3",
56
+ "release-it": "20.2.0",
57
+ "typescript": "5.9.3"
58
+ },
59
+ "peerDependencies": {
60
+ "n8n-workflow": "*"
61
+ }
62
+ }