UNPKG

n8n-nodes-bluesky

Version:

⚠️ PROOF OF CONCEPT - Bluesky nodes for n8n (unmaintained, use at own risk)

36 lines (35 loc) 1.08 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BlueskyApi = void 0; class BlueskyApi { constructor() { this.name = 'blueskyApi'; this.displayName = 'Bluesky App Password'; this.properties = [ { displayName: 'Handle', name: 'identifier', type: 'string', default: '', placeholder: 'your-handle.bsky.social', required: true, }, { displayName: 'App Password', name: 'password', type: 'string', typeOptions: { password: true }, default: '', required: true, hint: 'Create via Bluesky → Settings → Advanced → App Passwords', }, { displayName: 'Service URL', name: 'host', type: 'string', default: 'https://bsky.social', }, ]; } } exports.BlueskyApi = BlueskyApi;