UNPKG

@apify/n8n-nodes-apify

Version:
22 lines 944 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 = 'Create dataset'; const rawOption = { name: 'Create Dataset', value: 'Create dataset', action: 'Create dataset', description: 'Creates a dataset and returns its object Keep in mind that data stored under unnamed dataset follows data retention period It creates a dataset with the given name if the parameter name is used If a dataset with the given name already exists then returns its object', routing: { request: { method: 'POST', url: '=/v2/datasets', }, }, }; const { properties, option } = (0, hooks_1.runHooks)(rawOption, properties_1.properties); exports.properties = properties; exports.option = option; //# sourceMappingURL=index.js.map