tambahannya

This commit is contained in:
bipproduction
2025-11-17 13:49:23 +08:00
parent ac3b983032
commit fcc85101fd
2 changed files with 0 additions and 1457 deletions

View File

@@ -1,28 +0,0 @@
import { ICredentialType, INodeProperties } from "n8n-workflow";
export class WajsCredentials implements ICredentialType {
name = "wajs";
displayName = "wajs (Bearer Token)";
properties: INodeProperties[] = [
{
displayName: "Base URL",
name: "baseUrl",
type: "string",
default: "",
placeholder: "https://api.example.com",
description: "Masukkan URL dasar API tanpa garis miring di akhir",
required: true,
},
{
displayName: "Bearer Token",
name: "token",
type: "string",
default: "",
typeOptions: { password: true },
description:
"Masukkan token autentikasi Bearer (tanpa 'Bearer ' di depannya)",
required: true,
},
];
}

File diff suppressed because it is too large Load Diff