n8n-nodes-dataverse
Version:
n8n community node for communicating to dataverse
36 lines • 1.16 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.optionsetOperations = void 0;
const properties_1 = require("./properties");
const operation_1 = require("./operation");
exports.optionsetOperations = [
{
displayName: "Entity Name",
name: properties_1.Properties.OPTIONSET_ENTITYNAME,
type: "options",
typeOptions: {
loadOptionsMethod: "getEntityList",
},
default: "",
displayOptions: {
show: {
operation: [operation_1.Operation.OPTIONSET],
},
},
required: true,
description: "Select the Dataverse entity (e.g., contacts, accounts)",
},
{
displayName: "Attribute Name",
name: properties_1.Properties.OPTIONSET_ATTRIBUTENAME,
type: "string",
default: "",
displayOptions: {
show: {
operation: [operation_1.Operation.OPTIONSET],
},
},
description: "Enter the attribute name for the OptionSet",
},
];
//# sourceMappingURL=optionsetOperations.js.map