@stackflo-labs/n8n-nodes-retainr 0.1.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.
@@ -0,0 +1,7 @@
1
+ import type { ICredentialType, INodeProperties } from 'n8n-workflow';
2
+ export declare class RetainrApi implements ICredentialType {
3
+ name: string;
4
+ displayName: string;
5
+ documentationUrl: string;
6
+ properties: INodeProperties[];
7
+ }
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RetainrApi = void 0;
4
+ class RetainrApi {
5
+ constructor() {
6
+ this.name = 'retainrApi';
7
+ this.displayName = 'Retainr API';
8
+ this.documentationUrl = 'https://retainr.dev/docs/api';
9
+ this.properties = [
10
+ {
11
+ displayName: 'API Key',
12
+ name: 'apiKey',
13
+ type: 'string',
14
+ typeOptions: { password: true },
15
+ default: '',
16
+ placeholder: 'rec_live_...',
17
+ description: 'Your retainr.dev API key. Get one at https://retainr.dev/dashboard',
18
+ },
19
+ {
20
+ displayName: 'Base URL',
21
+ name: 'baseUrl',
22
+ type: 'string',
23
+ default: 'https://api.retainr.dev',
24
+ description: 'Leave as default unless using a self-hosted instance',
25
+ },
26
+ ];
27
+ }
28
+ }
29
+ exports.RetainrApi = RetainrApi;
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@stackflo-labs/n8n-nodes-retainr",
3
+ "version": "0.1.0",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/stackflo-labs/n8n-nodes-retainr.git"
7
+ },
8
+ "description": "n8n community node for retainr.dev — AI agent memory persistence API",
9
+ "license": "MIT",
10
+ "author": {
11
+ "name": "retainr.dev"
12
+ },
13
+ "n8n": {
14
+ "n8nNodesApiVersion": 1,
15
+ "credentials": [
16
+ "dist/credentials/RetainrApi.credentials.js"
17
+ ],
18
+ "nodes": []
19
+ },
20
+ "main": "dist/index.js",
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsc"
26
+ },
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
30
+ "keywords": [
31
+ "n8n-community-node-package",
32
+ "n8n",
33
+ "retainr",
34
+ "ai-memory",
35
+ "agent-memory"
36
+ ],
37
+ "peerDependencies": {
38
+ "n8n-workflow": "*"
39
+ },
40
+ "devDependencies": {
41
+ "n8n-workflow": "^1.0.0",
42
+ "typescript": "^5.0.0"
43
+ }
44
+ }