UNPKG

n8n-ikaue-nodes

Version:

IKAUE nodes for N8N, such as a custom BigQuery node or a Google Search Console node.

307 lines 9.84 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.recordFields = exports.recordOperations = void 0; exports.recordOperations = [ { displayName: 'Operation', name: 'operation', type: 'options', noDataExpression: true, displayOptions: { show: { resource: ['record'], }, }, options: [ { name: 'Create', value: 'create', description: 'Create a new record', action: 'Create a record', }, { name: 'Get Many', value: 'getAll', description: 'Retrieve many records', action: 'Get many records', }, { name: 'Query Job', value: 'query', description: 'Get Query Results', action: 'Get query result records', }, ], default: 'create', }, ]; exports.recordFields = [ { displayName: 'Project Name or ID', name: 'projectId', type: 'options', typeOptions: { loadOptionsMethod: 'getProjects', }, required: true, displayOptions: { show: { operation: ['create', ''], resource: ['record'], }, }, default: '', description: 'ID of the project to create the record in. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.', }, { displayName: 'Dataset Name or ID', name: 'datasetId', type: 'options', typeOptions: { loadOptionsMethod: 'getDatasets', loadOptionsDependsOn: ['projectId'], }, required: true, displayOptions: { show: { operation: ['create'], resource: ['record'], }, }, default: '', description: 'ID of the dataset to create the record in. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.', }, { displayName: 'Table Name or ID', name: 'tableId', type: 'options', typeOptions: { loadOptionsMethod: 'getTables', loadOptionsDependsOn: ['projectId', 'datasetId'], }, required: true, displayOptions: { show: { operation: ['create'], resource: ['record'], }, }, default: '', description: 'ID of the table to create the record in. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.', }, { displayName: 'Columns', name: 'columns', type: 'string', displayOptions: { show: { resource: ['record'], operation: ['create'], }, }, default: '', required: true, placeholder: 'id,name,description', description: 'Comma-separated list of the item properties to use as columns', }, { displayName: 'Options', name: 'options', type: 'collection', placeholder: 'Add Options', default: {}, displayOptions: { show: { operation: ['create'], resource: ['record'], }, }, options: [ { displayName: 'Ignore Unknown Values', name: 'ignoreUnknownValues', type: 'boolean', default: false, description: 'Whether to gnore row values that do not match the schema', }, { displayName: 'Skip Invalid Rows', name: 'skipInvalidRows', type: 'boolean', default: false, description: 'Whether to skip rows with values that do not match the schema', }, { displayName: 'Template Suffix', name: 'templateSuffix', type: 'string', default: '', description: 'Create a new table based on the destination table and insert rows into the new table. The new table will be named <code>{destinationTable}{templateSuffix}</code>', }, { displayName: 'Trace ID', name: 'traceId', type: 'string', default: '', description: 'Unique ID for the request, for debugging only. It is case-sensitive, limited to up to 36 ASCII characters. A UUID is recommended.', }, ], }, { displayName: 'Project Name or ID', name: 'projectId', type: 'options', typeOptions: { loadOptionsMethod: 'getProjects', }, required: true, displayOptions: { show: { operation: ['getAll', 'query'], resource: ['record'], }, }, default: '', description: 'ID of the project to retrieve all rows from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.', }, { displayName: 'Dataset Name or ID', name: 'datasetId', type: 'options', typeOptions: { loadOptionsMethod: 'getDatasets', loadOptionsDependsOn: ['projectId'], }, required: true, displayOptions: { show: { operation: ['getAll', 'query'], resource: ['record'], }, }, default: '', description: 'ID of the dataset to retrieve all rows from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.', }, { displayName: 'Table Name or ID', name: 'tableId', type: 'options', typeOptions: { loadOptionsMethod: 'getTables', loadOptionsDependsOn: ['projectId', 'datasetId'], }, required: true, displayOptions: { show: { operation: ['getAll', 'query'], resource: ['record'], }, }, default: '', description: 'ID of the table to retrieve all rows from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.', }, { displayName: 'Query', name: 'query', type: 'string', typeOptions: { rows: 15 }, displayOptions: { show: { operation: ['query'] }, }, required: true, default: "SELECT * FROM `datasetName.tableName` LIMIT 100", description: 'Write your query in this field', }, { displayName: 'Return All', name: 'returnAll', type: 'boolean', displayOptions: { show: { operation: ['getAll'], resource: ['record'], }, }, default: false, description: 'Whether to return all results or only up to a given limit', }, { displayName: 'Limit', name: 'limit', type: 'number', displayOptions: { show: { operation: ['getAll'], resource: ['record'], returnAll: [false], }, }, typeOptions: { minValue: 1 }, default: 50, description: 'Max number of results to return', }, { displayName: 'Simplify', name: 'simple', type: 'boolean', displayOptions: { show: { resource: ['record'], operation: ['getAll', 'query'], }, }, default: true, description: 'Whether to return a simplified version of the response instead of the raw data', }, { displayName: 'Options', name: 'options', type: 'collection', placeholder: 'Add Options', default: {}, displayOptions: { show: { operation: ['getAll'], resource: ['record'], }, }, options: [ { displayName: 'Fields', name: 'selectedFields', type: 'string', default: '', description: 'Subset of fields to return, supports select into sub fields. Example: <code>selectedFields = "a,e.d.f"</code>', } ], }, { displayName: 'Options', name: 'options', type: 'collection', placeholder: 'Add Options', default: {}, displayOptions: { show: { operation: ['query'], resource: ['record'], }, }, options: [ { displayName: 'Location', name: 'location', type: 'string', default: "EU", description: 'Define your location', }, ], }, ]; //# sourceMappingURL=RecordDescription.js.map