n8n-nodes-fizzy 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.
- package/LICENSE +21 -0
- package/README.md +159 -0
- package/dist/credentials/FizzyApi.credentials.d.ts +14 -0
- package/dist/credentials/FizzyApi.credentials.d.ts.map +1 -0
- package/dist/credentials/FizzyApi.credentials.js +48 -0
- package/dist/credentials/FizzyApi.credentials.js.map +1 -0
- package/dist/credentials/fizzy.svg +21 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +20 -0
- package/dist/index.js.map +1 -0
- package/dist/nodes/Fizzy/Fizzy.node.d.ts +19 -0
- package/dist/nodes/Fizzy/Fizzy.node.d.ts.map +1 -0
- package/dist/nodes/Fizzy/Fizzy.node.js +662 -0
- package/dist/nodes/Fizzy/Fizzy.node.js.map +1 -0
- package/dist/nodes/Fizzy/FizzyTrigger.node.d.ts +19 -0
- package/dist/nodes/Fizzy/FizzyTrigger.node.d.ts.map +1 -0
- package/dist/nodes/Fizzy/FizzyTrigger.node.js +246 -0
- package/dist/nodes/Fizzy/FizzyTrigger.node.js.map +1 -0
- package/dist/nodes/Fizzy/GenericFunctions.d.ts +62 -0
- package/dist/nodes/Fizzy/GenericFunctions.d.ts.map +1 -0
- package/dist/nodes/Fizzy/GenericFunctions.js +171 -0
- package/dist/nodes/Fizzy/GenericFunctions.js.map +1 -0
- package/dist/nodes/Fizzy/descriptions/BoardDescription.d.ts +4 -0
- package/dist/nodes/Fizzy/descriptions/BoardDescription.d.ts.map +1 -0
- package/dist/nodes/Fizzy/descriptions/BoardDescription.js +225 -0
- package/dist/nodes/Fizzy/descriptions/BoardDescription.js.map +1 -0
- package/dist/nodes/Fizzy/descriptions/CardDescription.d.ts +4 -0
- package/dist/nodes/Fizzy/descriptions/CardDescription.d.ts.map +1 -0
- package/dist/nodes/Fizzy/descriptions/CardDescription.js +442 -0
- package/dist/nodes/Fizzy/descriptions/CardDescription.js.map +1 -0
- package/dist/nodes/Fizzy/descriptions/ColumnDescription.d.ts +4 -0
- package/dist/nodes/Fizzy/descriptions/ColumnDescription.d.ts.map +1 -0
- package/dist/nodes/Fizzy/descriptions/ColumnDescription.js +178 -0
- package/dist/nodes/Fizzy/descriptions/ColumnDescription.js.map +1 -0
- package/dist/nodes/Fizzy/descriptions/CommentDescription.d.ts +4 -0
- package/dist/nodes/Fizzy/descriptions/CommentDescription.d.ts.map +1 -0
- package/dist/nodes/Fizzy/descriptions/CommentDescription.js +210 -0
- package/dist/nodes/Fizzy/descriptions/CommentDescription.js.map +1 -0
- package/dist/nodes/Fizzy/descriptions/NotificationDescription.d.ts +4 -0
- package/dist/nodes/Fizzy/descriptions/NotificationDescription.d.ts.map +1 -0
- package/dist/nodes/Fizzy/descriptions/NotificationDescription.js +123 -0
- package/dist/nodes/Fizzy/descriptions/NotificationDescription.js.map +1 -0
- package/dist/nodes/Fizzy/descriptions/ReactionDescription.d.ts +4 -0
- package/dist/nodes/Fizzy/descriptions/ReactionDescription.d.ts.map +1 -0
- package/dist/nodes/Fizzy/descriptions/ReactionDescription.js +176 -0
- package/dist/nodes/Fizzy/descriptions/ReactionDescription.js.map +1 -0
- package/dist/nodes/Fizzy/descriptions/StepDescription.d.ts +4 -0
- package/dist/nodes/Fizzy/descriptions/StepDescription.d.ts.map +1 -0
- package/dist/nodes/Fizzy/descriptions/StepDescription.js +180 -0
- package/dist/nodes/Fizzy/descriptions/StepDescription.js.map +1 -0
- package/dist/nodes/Fizzy/descriptions/TagDescription.d.ts +4 -0
- package/dist/nodes/Fizzy/descriptions/TagDescription.d.ts.map +1 -0
- package/dist/nodes/Fizzy/descriptions/TagDescription.js +62 -0
- package/dist/nodes/Fizzy/descriptions/TagDescription.js.map +1 -0
- package/dist/nodes/Fizzy/descriptions/UserDescription.d.ts +4 -0
- package/dist/nodes/Fizzy/descriptions/UserDescription.d.ts.map +1 -0
- package/dist/nodes/Fizzy/descriptions/UserDescription.js +144 -0
- package/dist/nodes/Fizzy/descriptions/UserDescription.js.map +1 -0
- package/dist/nodes/Fizzy/descriptions/index.d.ts +10 -0
- package/dist/nodes/Fizzy/descriptions/index.d.ts.map +1 -0
- package/dist/nodes/Fizzy/descriptions/index.js +26 -0
- package/dist/nodes/Fizzy/descriptions/index.js.map +1 -0
- package/dist/nodes/Fizzy/fizzy.svg +23 -0
- package/package.json +59 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Rob Zolkos
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
# n8n-nodes-fizzy
|
|
2
|
+
|
|
3
|
+
[](https://n8n.io)
|
|
4
|
+
[](LICENSE)
|
|
5
|
+
[](https://github.com/robzolkos/n8n-nodes-fizzy/actions/workflows/ci.yml)
|
|
6
|
+
|
|
7
|
+
This is an n8n community node that lets you integrate [Fizzy](https://fizzy.do) into your n8n workflows.
|
|
8
|
+
|
|
9
|
+
Fizzy is 37signals' simple, opinionated kanban tool that helps teams focus on what matters. With this node, you can automate your Fizzy boards, cards, comments, and more—connecting them to hundreds of other services in n8n.
|
|
10
|
+
|
|
11
|
+
[n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
|
|
12
|
+
|
|
13
|
+
## What You Can Do
|
|
14
|
+
|
|
15
|
+
### Automate Your Workflow
|
|
16
|
+
- **Create cards automatically** from emails, Slack messages, or form submissions
|
|
17
|
+
- **Sync cards** with your CRM, helpdesk, or other project tools
|
|
18
|
+
- **Get notified** in Slack, Discord, or email when cards are assigned or completed
|
|
19
|
+
- **Generate reports** by pulling card data into spreadsheets or dashboards
|
|
20
|
+
|
|
21
|
+
### React to Events in Real-Time
|
|
22
|
+
The **Fizzy Trigger** node listens for webhook events, so your workflows fire instantly when:
|
|
23
|
+
- A new card is added
|
|
24
|
+
- A card is moved to a column
|
|
25
|
+
- Someone is assigned or unassigned
|
|
26
|
+
- A card is moved to "Done", reopened, or moved to "Not Now"
|
|
27
|
+
- A comment is added
|
|
28
|
+
|
|
29
|
+
## Installation
|
|
30
|
+
|
|
31
|
+
Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
|
|
32
|
+
|
|
33
|
+
**Quick install via npm:**
|
|
34
|
+
```bash
|
|
35
|
+
npm install n8n-nodes-fizzy
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Or search for "Fizzy" in the n8n community nodes panel.
|
|
39
|
+
|
|
40
|
+
## Nodes
|
|
41
|
+
|
|
42
|
+
### Fizzy
|
|
43
|
+
|
|
44
|
+
The main node for interacting with your Fizzy data. Supports full CRUD operations across all Fizzy resources.
|
|
45
|
+
|
|
46
|
+
| Resource | Operations |
|
|
47
|
+
|----------|------------|
|
|
48
|
+
| **Board** | Get, Get Many, Create, Update, Delete |
|
|
49
|
+
| **Card** | Get, Get Many, Create, Update, Delete, Close, Reopen, Move to Column, Move to Not Now, Send to Triage, Toggle Tag, Toggle Assignment, Watch, Unwatch |
|
|
50
|
+
| **Column** | Get, Get Many, Create, Update, Delete |
|
|
51
|
+
| **Comment** | Get, Get Many, Create, Update, Delete |
|
|
52
|
+
| **Reaction** | Get Many, Create, Delete |
|
|
53
|
+
| **Step** | Get, Create, Update, Delete |
|
|
54
|
+
| **Tag** | Get Many |
|
|
55
|
+
| **User** | Get, Get Many, Update, Deactivate |
|
|
56
|
+
| **Notification** | Get Many, Mark as Read, Mark as Unread, Mark All as Read |
|
|
57
|
+
|
|
58
|
+
### Fizzy Trigger
|
|
59
|
+
|
|
60
|
+
A webhook-based trigger node that starts workflows when events happen in Fizzy.
|
|
61
|
+
|
|
62
|
+
| Event | Description |
|
|
63
|
+
|-------|-------------|
|
|
64
|
+
| Card Added | A new card is created |
|
|
65
|
+
| Card Assigned | Someone is assigned to a card |
|
|
66
|
+
| Card Board Changed | A card is moved to a different board |
|
|
67
|
+
| Card Column Changed | A card is moved to a column |
|
|
68
|
+
| Card Moved Back to "Maybe?" | A card is sent back to triage |
|
|
69
|
+
| Card Moved to "Done" | A card is closed |
|
|
70
|
+
| Card Moved to "Not Now" | A card is postponed |
|
|
71
|
+
| Card Moved to "Not Now" Due to Inactivity | A card is automatically postponed due to inactivity |
|
|
72
|
+
| Card Reopened | A card is reopened from Done |
|
|
73
|
+
| Card Unassigned | Someone is removed from a card |
|
|
74
|
+
| Comment Added | A comment is added to a card |
|
|
75
|
+
|
|
76
|
+
Webhook payloads can be verified using HMAC-SHA256 signature verification for security.
|
|
77
|
+
|
|
78
|
+
## Credentials
|
|
79
|
+
|
|
80
|
+
To connect n8n to Fizzy, you'll need:
|
|
81
|
+
|
|
82
|
+
1. **API Token** - Generate a personal access token from your Fizzy account settings
|
|
83
|
+
2. **Base URL** (optional) - Defaults to `https://app.fizzy.do`. Change this if you're using a self-hosted instance.
|
|
84
|
+
|
|
85
|
+
### Setting Up Credentials
|
|
86
|
+
|
|
87
|
+
1. In n8n, go to **Credentials** → **New Credential**
|
|
88
|
+
2. Search for "Fizzy API"
|
|
89
|
+
3. Enter your API token
|
|
90
|
+
4. (Optional) Update the base URL if self-hosting
|
|
91
|
+
5. Click **Test Connection** to verify
|
|
92
|
+
|
|
93
|
+
## Compatibility
|
|
94
|
+
|
|
95
|
+
- **Minimum n8n version:** 1.0.0
|
|
96
|
+
- **Node.js:** v20 or higher
|
|
97
|
+
- **Tested with:** n8n 1.70.0+
|
|
98
|
+
|
|
99
|
+
## Development
|
|
100
|
+
|
|
101
|
+
### Setup
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
git clone https://github.com/robzolkos/n8n-nodes-fizzy.git
|
|
105
|
+
cd n8n-nodes-fizzy
|
|
106
|
+
npm install
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
### Commands
|
|
110
|
+
|
|
111
|
+
| Command | Description |
|
|
112
|
+
|---------|-------------|
|
|
113
|
+
| `npm run build` | Compile TypeScript to JavaScript |
|
|
114
|
+
| `npm run lint` | Validate node structure against n8n requirements |
|
|
115
|
+
| `npm run lintfix` | Auto-fix linting issues |
|
|
116
|
+
| `npm run test` | Run unit tests |
|
|
117
|
+
| `npm run test:watch` | Run tests in watch mode |
|
|
118
|
+
| `npm run dev` | Start n8n with hot-reload for development |
|
|
119
|
+
|
|
120
|
+
### Testing with Docker
|
|
121
|
+
|
|
122
|
+
Run n8n in Docker with your local node mounted:
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
# Build the node first
|
|
126
|
+
npm run build
|
|
127
|
+
|
|
128
|
+
# Start n8n with the custom node
|
|
129
|
+
docker run -it --rm -p 5678:5678 \
|
|
130
|
+
-v $(pwd)/dist:/home/node/.n8n/custom/n8n-nodes-fizzy \
|
|
131
|
+
-e N8N_CUSTOM_EXTENSIONS="/home/node/.n8n/custom" \
|
|
132
|
+
n8nio/n8n
|
|
133
|
+
|
|
134
|
+
# Open http://localhost:5678 and search for "Fizzy"
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
## Example Workflows
|
|
138
|
+
|
|
139
|
+
### Slack → Fizzy Card
|
|
140
|
+
Create a Fizzy card whenever someone posts in a specific Slack channel.
|
|
141
|
+
|
|
142
|
+
### Fizzy → Google Sheets Report
|
|
143
|
+
When a card is closed, append its details to a Google Sheet for tracking completed work.
|
|
144
|
+
|
|
145
|
+
### Email → Fizzy Triage
|
|
146
|
+
Forward emails to a webhook that creates cards in your Fizzy triage column.
|
|
147
|
+
|
|
148
|
+
### Fizzy Assignment → Slack DM
|
|
149
|
+
Notify team members via Slack DM when they're assigned to a card.
|
|
150
|
+
|
|
151
|
+
## Resources
|
|
152
|
+
|
|
153
|
+
- [Fizzy](https://fizzy.do) - Official Fizzy website
|
|
154
|
+
- [n8n Community Nodes Documentation](https://docs.n8n.io/integrations/community-nodes/)
|
|
155
|
+
- [n8n Community Forum](https://community.n8n.io/)
|
|
156
|
+
|
|
157
|
+
## License
|
|
158
|
+
|
|
159
|
+
[MIT](LICENSE)
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
2
|
+
export declare class FizzyApi implements ICredentialType {
|
|
3
|
+
name: string;
|
|
4
|
+
displayName: string;
|
|
5
|
+
icon: {
|
|
6
|
+
readonly light: "file:fizzy.svg";
|
|
7
|
+
readonly dark: "file:fizzy.svg";
|
|
8
|
+
};
|
|
9
|
+
documentationUrl: string;
|
|
10
|
+
properties: INodeProperties[];
|
|
11
|
+
authenticate: IAuthenticateGeneric;
|
|
12
|
+
test: ICredentialTestRequest;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=FizzyApi.credentials.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FizzyApi.credentials.d.ts","sourceRoot":"","sources":["../../credentials/FizzyApi.credentials.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,oBAAoB,EACpB,sBAAsB,EACtB,eAAe,EACf,eAAe,EAChB,MAAM,cAAc,CAAC;AAEtB,qBAAa,QAAS,YAAW,eAAe;IAC9C,IAAI,SAAc;IAClB,WAAW,SAAe;IAC1B,IAAI;;;MAAgE;IACpE,gBAAgB,SAA6D;IAE7E,UAAU,EAAE,eAAe,EAAE,CAkB3B;IAEF,YAAY,EAAE,oBAAoB,CAOhC;IAEF,IAAI,EAAE,sBAAsB,CAS1B;CACH"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FizzyApi = void 0;
|
|
4
|
+
class FizzyApi {
|
|
5
|
+
name = 'fizzyApi';
|
|
6
|
+
displayName = 'Fizzy API';
|
|
7
|
+
icon = { light: 'file:fizzy.svg', dark: 'file:fizzy.svg' };
|
|
8
|
+
documentationUrl = 'https://github.com/basecamp/fizzy/blob/main/docs/API.md';
|
|
9
|
+
properties = [
|
|
10
|
+
{
|
|
11
|
+
displayName: 'API Token',
|
|
12
|
+
name: 'apiToken',
|
|
13
|
+
type: 'string',
|
|
14
|
+
typeOptions: { password: true },
|
|
15
|
+
default: '',
|
|
16
|
+
required: true,
|
|
17
|
+
description: 'Your Fizzy API token. Generate one from your Fizzy account settings.',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
displayName: 'Base URL',
|
|
21
|
+
name: 'baseUrl',
|
|
22
|
+
type: 'string',
|
|
23
|
+
default: 'https://app.fizzy.do',
|
|
24
|
+
required: true,
|
|
25
|
+
description: 'The base URL of your Fizzy instance',
|
|
26
|
+
},
|
|
27
|
+
];
|
|
28
|
+
authenticate = {
|
|
29
|
+
type: 'generic',
|
|
30
|
+
properties: {
|
|
31
|
+
headers: {
|
|
32
|
+
Authorization: '=Bearer {{$credentials.apiToken}}',
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
};
|
|
36
|
+
test = {
|
|
37
|
+
request: {
|
|
38
|
+
baseURL: '={{$credentials.baseUrl}}',
|
|
39
|
+
url: '/my/identity',
|
|
40
|
+
method: 'GET',
|
|
41
|
+
headers: {
|
|
42
|
+
Accept: 'application/json',
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
exports.FizzyApi = FizzyApi;
|
|
48
|
+
//# sourceMappingURL=FizzyApi.credentials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FizzyApi.credentials.js","sourceRoot":"","sources":["../../credentials/FizzyApi.credentials.ts"],"names":[],"mappings":";;;AAOA,MAAa,QAAQ;IACnB,IAAI,GAAG,UAAU,CAAC;IAClB,WAAW,GAAG,WAAW,CAAC;IAC1B,IAAI,GAAG,EAAE,KAAK,EAAE,gBAAgB,EAAE,IAAI,EAAE,gBAAgB,EAAW,CAAC;IACpE,gBAAgB,GAAG,yDAAyD,CAAC;IAE7E,UAAU,GAAsB;QAC9B;YACE,WAAW,EAAE,WAAW;YACxB,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;YAC/B,OAAO,EAAE,EAAE;YACX,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,sEAAsE;SACpF;QACD;YACE,WAAW,EAAE,UAAU;YACvB,IAAI,EAAE,SAAS;YACf,IAAI,EAAE,QAAQ;YACd,OAAO,EAAE,sBAAsB;YAC/B,QAAQ,EAAE,IAAI;YACd,WAAW,EAAE,qCAAqC;SACnD;KACF,CAAC;IAEF,YAAY,GAAyB;QACnC,IAAI,EAAE,SAAS;QACf,UAAU,EAAE;YACV,OAAO,EAAE;gBACP,aAAa,EAAE,mCAAmC;aACnD;SACF;KACF,CAAC;IAEF,IAAI,GAA2B;QAC7B,OAAO,EAAE;YACP,OAAO,EAAE,2BAA2B;YACpC,GAAG,EAAE,cAAc;YACnB,MAAM,EAAE,KAAK;YACb,OAAO,EAAE;gBACP,MAAM,EAAE,kBAAkB;aAC3B;SACF;KACF,CAAC;CACH;AA7CD,4BA6CC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="fizzyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
4
|
+
<stop offset="0%" style="stop-color:#667eea;stop-opacity:1" />
|
|
5
|
+
<stop offset="100%" style="stop-color:#764ba2;stop-opacity:1" />
|
|
6
|
+
</linearGradient>
|
|
7
|
+
</defs>
|
|
8
|
+
<rect width="64" height="64" rx="12" ry="12" fill="url(#fizzyGradient)"/>
|
|
9
|
+
<g fill="#ffffff">
|
|
10
|
+
<!-- Fizzy bubbles representing effervescence -->
|
|
11
|
+
<circle cx="20" cy="44" r="4"/>
|
|
12
|
+
<circle cx="32" cy="36" r="5"/>
|
|
13
|
+
<circle cx="44" cy="42" r="3.5"/>
|
|
14
|
+
<circle cx="26" cy="26" r="3"/>
|
|
15
|
+
<circle cx="40" cy="24" r="4"/>
|
|
16
|
+
<circle cx="34" cy="16" r="2.5"/>
|
|
17
|
+
<circle cx="22" cy="18" r="2"/>
|
|
18
|
+
<circle cx="46" cy="32" r="2.5"/>
|
|
19
|
+
<circle cx="18" cy="34" r="2"/>
|
|
20
|
+
</g>
|
|
21
|
+
</svg>
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAC;AACnD,cAAc,0BAA0B,CAAC;AACzC,cAAc,iCAAiC,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./credentials/FizzyApi.credentials"), exports);
|
|
18
|
+
__exportStar(require("./nodes/Fizzy/Fizzy.node"), exports);
|
|
19
|
+
__exportStar(require("./nodes/Fizzy/FizzyTrigger.node"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qEAAmD;AACnD,2DAAyC;AACzC,kEAAgD"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription, INodeListSearchResult, INodePropertyOptions } from 'n8n-workflow';
|
|
2
|
+
export declare class Fizzy implements INodeType {
|
|
3
|
+
description: INodeTypeDescription;
|
|
4
|
+
methods: {
|
|
5
|
+
loadOptions: {
|
|
6
|
+
getAccounts(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
|
|
7
|
+
getColumns(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
|
|
8
|
+
getTags(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
|
|
9
|
+
getUsers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
|
|
10
|
+
};
|
|
11
|
+
listSearch: {
|
|
12
|
+
searchBoards(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
|
|
13
|
+
searchCards(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
|
|
14
|
+
searchComments(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=Fizzy.node.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Fizzy.node.d.ts","sourceRoot":"","sources":["../../../nodes/Fizzy/Fizzy.node.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,iBAAiB,EACjB,qBAAqB,EACrB,kBAAkB,EAClB,SAAS,EACT,oBAAoB,EAEpB,qBAAqB,EACrB,oBAAoB,EACrB,MAAM,cAAc,CAAC;AAiCtB,qBAAa,KAAM,YAAW,SAAS;IACrC,WAAW,EAAE,oBAAoB,CAuE/B;IAEF,OAAO;;8BAEqB,qBAAqB,GAAG,OAAO,CAAC,oBAAoB,EAAE,CAAC;6BAIxD,qBAAqB,GAAG,OAAO,CAAC,oBAAoB,EAAE,CAAC;0BAQ1D,qBAAqB,GAAG,OAAO,CAAC,oBAAoB,EAAE,CAAC;2BAQtD,qBAAqB,GAAG,OAAO,CAAC,oBAAoB,EAAE,CAAC;;;+BAQpE,qBAAqB,WAClB,MAAM,GACd,OAAO,CAAC,qBAAqB,CAAC;8BAezB,qBAAqB,WAClB,MAAM,GACd,OAAO,CAAC,qBAAqB,CAAC;iCA2BzB,qBAAqB,WAClB,MAAM,GACd,OAAO,CAAC,qBAAqB,CAAC;;MAoCnC;IAEI,OAAO,CAAC,IAAI,EAAE,iBAAiB,GAAG,OAAO,CAAC,kBAAkB,EAAE,EAAE,CAAC;CAycxE"}
|