UNPKG

n8n-nodes-dataverse

Version:

n8n community node for communicating to dataverse

44 lines 1.44 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.operationOptions = void 0; const operation_1 = require("./operation"); exports.operationOptions = { displayName: "Operation", name: "operation", type: "options", noDataExpression: true, options: [ { name: "Get data", value: operation_1.Operation.GET, action: "Retrieve data", }, { name: "Update record", value: operation_1.Operation.PATCH, action: "Update record", }, { name: "Create record", value: operation_1.Operation.POST, action: "Create record", }, { name: "Get lookup from option set definitions", value: operation_1.Operation.OPTIONSET, action: "Retrieve lookup data from OptionSet", }, { name: "Get lookup from global option set definitions", value: operation_1.Operation.GLOBALOPTIONSET, action: "Retrieve lookup data from GlobalOptionSetDefinitions", }, { name: "Get lookup from entity", value: operation_1.Operation.ENTITY, action: "Retrieve lookup data from table", }, ], default: operation_1.Operation.GET, }; //# sourceMappingURL=operationOptions.js.map