update version

This commit is contained in:
bipproduction
2025-11-19 00:36:44 +08:00
commit 9d3653c149
14 changed files with 1666 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
import type {
ICredentialType,
INodeProperties,
} from "n8n-workflow";
export class OpenApiCredential implements ICredentialType {
name = "openApiNodeApi";
displayName = "OpenApiNode (Bearer Token)";
documentationUrl = "https://docs.n8n.io/nodes/n8n-nodes-openapi-node/openapi-node";
properties: INodeProperties[] = [
{
displayName: "Base URL",
name: "baseUrl",
type: "string",
default: "",
placeholder: "https://api.example.com",
description: "Enter the base API URL without trailing slash",
required: true,
},
{
displayName: "Bearer Token",
name: "token",
type: "string",
typeOptions: {
password: true,
},
default: "",
description: "Enter the Bearer authentication token (without 'Bearer ' prefix)",
required: true,
},
];
}