@belmontdigitalmarketing/n8n-nodes-flowlu 0.2.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,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FlowluApi = void 0;
4
+ class FlowluApi {
5
+ constructor() {
6
+ this.name = 'flowluApi';
7
+ this.displayName = 'Flowlu API';
8
+ this.documentationUrl = 'https://www.flowlu.com/api/';
9
+ this.properties = [
10
+ {
11
+ displayName: 'Subdomain',
12
+ name: 'subdomain',
13
+ type: 'string',
14
+ default: '',
15
+ placeholder: 'your-company',
16
+ description: 'Your unique Flowlu domain (e.g., "belmontdigital" for belmontdigital.flowlu.com)',
17
+ required: true,
18
+ },
19
+ {
20
+ displayName: 'API Key',
21
+ name: 'apiKey',
22
+ type: 'string',
23
+ typeOptions: {
24
+ password: true,
25
+ },
26
+ default: '',
27
+ description: 'Your Flowlu API key from Settings > API Settings',
28
+ required: true,
29
+ },
30
+ ];
31
+ }
32
+ }
33
+ exports.FlowluApi = FlowluApi;