Skip to content

Commit 08cc429

Browse files
committed
fix build
1 parent 5e92152 commit 08cc429

File tree

5 files changed

+610
-591
lines changed

5 files changed

+610
-591
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ pnpm-lock.yaml
1515
*.tgz
1616
.envrc
1717
.env
18+
.claude
Lines changed: 20 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,23 @@
1-
import {
2-
ICredentialType,
3-
INodeProperties,
4-
} from 'n8n-workflow';
1+
import { ICredentialType, INodeProperties } from "n8n-workflow";
52

63
export class SignalCliApi implements ICredentialType {
7-
name = 'signalCliApi';
8-
displayName = 'Signal CLI API';
9-
properties: INodeProperties[] = [
10-
{
11-
displayName: 'URL',
12-
name: 'url',
13-
type: 'string',
14-
default: process.env.ENDPOINT || '',
15-
placeholder: 'http://localhost:8085',
16-
required: true,
17-
},
18-
{
19-
displayName: 'Account',
20-
name: 'account',
21-
type: 'string',
22-
default: '',
23-
required: true,
24-
},
25-
];
4+
name = "signalCliApi";
5+
displayName = "Signal CLI API";
6+
properties: INodeProperties[] = [
7+
{
8+
displayName: "URL",
9+
name: "url",
10+
type: "string",
11+
default: process.env.ENDPOINT || "",
12+
placeholder: "http://localhost:8085",
13+
required: true,
14+
},
15+
{
16+
displayName: "Account",
17+
name: "account",
18+
type: "string",
19+
default: "",
20+
required: true,
21+
},
22+
];
2623
}

0 commit comments

Comments
 (0)