UNPKG

@apify/n8n-nodes-apify

Version:
22 lines 884 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.properties = exports.option = exports.name = void 0; const properties_1 = require("./properties"); const hooks_1 = require("./hooks"); exports.name = 'Update dataset'; const rawOption = { name: 'Update Dataset', value: 'Update dataset', action: 'Update dataset', description: 'Updates a dataset s name using a value specified by a JSON object passed in the PUT payload The response is the updated dataset object as returned by the Get dataset API endpoint', routing: { request: { method: 'PUT', url: '=/v2/datasets/{{$parameter["datasetId"]}}', }, }, }; const { properties, option } = (0, hooks_1.runHooks)(rawOption, properties_1.properties); exports.properties = properties; exports.option = option; //# sourceMappingURL=index.js.map