UNPKG

n8n-nodes-feishu-lite

Version:
84 lines 3.3 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 NodeUtils_1 = __importDefault(require("../../../help/utils/NodeUtils")); exports.default = { name: '新增记录', value: 'bitable:table:record:add', order: 70, options: [ { displayName: '多维表格 Token', name: 'app_toke', type: 'string', required: true, default: '', description: '多维表格 App 的唯一标识。', }, { displayName: '多维表格 ID', name: 'table_id', type: 'string', required: true, default: '', description: '多维表格数据表的唯一标识。', }, { displayName: '用户 ID 类型', name: 'user_id_type', type: 'options', options: [ { name: 'Open ID', value: 'open_id' }, { name: 'Union ID', value: 'union_id' }, { name: 'User ID', value: 'user_id' }, ], description: '用户 ID 类型。', default: 'open_id', }, { displayName: '操作的唯一标识', name: 'client_toke', type: 'string', default: '', description: '操作的唯一标识,与接口返回值的 client_token 相对应,用于幂等的进行更新操作。此值为空表示将发起一次新的请求,此值非空表示幂等的进行更新操作', }, { displayName: '是否忽略一致性读写检查', name: 'ignore_consistency_check', type: 'boolean', default: true, }, { displayName: '请求体JSON', name: 'body', type: 'json', required: true, default: '{"fields":{}}', description: '参考:https://open.feishu.cn/document/server-docs/docs/bitable-v1/app-table-record/create#requestBody', }, ], async call(index) { const app_token = this.getNodeParameter('app_toke', index); const table_id = this.getNodeParameter('table_id', index); const user_id_type = this.getNodeParameter('user_id_type', index); const client_token = this.getNodeParameter('client_toke', index); const ignore_consistency_check = this.getNodeParameter('ignore_consistency_check', index, true); const body = NodeUtils_1.default.getNodeJsonData(this, 'body', index); const qs = {}; if (user_id_type) qs.user_id_type = user_id_type; if (client_token) qs.client_token = client_token; qs.ignore_consistency_check = ignore_consistency_check; return RequestUtils_1.default.request.call(this, { method: 'POST', url: `/open-apis/bitable/v1/apps/${app_token}/tables/${table_id}/records`, qs, body: body }); }, }; //# sourceMappingURL=BitableTableRecrodAddOperate.js.map