UNPKG

n8n-nodes-feishu-fork

Version:

n8n custom nodes for n8n to interact with Feishu/Lark, including Lark Bot, Lark MCP, and Lark Trigger.

64 lines 2.5 kB
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const RequestUtils_1 = __importDefault(require("../../../help/utils/RequestUtils")); const wording_1 = require("../../../help/wording"); const description_1 = require("../../../help/description"); exports.default = { name: wording_1.WORDING.CardAddElement, value: "CardAddElement", order: 200, options: [ description_1.DESCRIPTIONS.CARD_ID, description_1.DESCRIPTIONS.CARD_INSERT_TYPE, description_1.DESCRIPTIONS.CARD_SEQUENCE, description_1.DESCRIPTIONS.CARD_ELEMENTS, description_1.DESCRIPTIONS.CARD_TARGET_ELEMENT_ID, { displayName: wording_1.WORDING.Options, name: 'options', type: 'collection', placeholder: wording_1.WORDING.AddField, default: {}, options: [description_1.DESCRIPTIONS.REQUEST_ID], }, { displayName: `<a target="_blank" href="https://open.feishu.cn/document/cardkit-v1/card-element/create">${wording_1.WORDING.OpenDocument}</a>`, name: 'notice', type: 'notice', default: '', }, ], async call(index) { const card_id = this.getNodeParameter('card_id', index, undefined, { extractValue: true, }); const target_element_id = this.getNodeParameter('target_element_id', index, undefined, { extractValue: true, }); const elements = this.getNodeParameter('elements', index, undefined, { extractValue: true, ensureType: 'json', }); const sequence = this.getNodeParameter('sequence', index, undefined, { extractValue: true, }); const options = this.getNodeParameter('options', index, {}); const uuid = options.request_id; const { data } = await RequestUtils_1.default.request.call(this, { method: 'POST', url: `/open-apis/cardkit/v1/cards/${card_id}/elements`, body: { target_element_id, sequence, type: 'insert_after', elements: JSON.stringify(elements), ...(uuid && { uuid }), }, }); return data; }, }; //# sourceMappingURL=CardAddElement.operation.js.map