UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

77 lines 2.6 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ecomOrderProductsFields = exports.ecomOrderProductsOperations = void 0; const GenericFunctions_1 = require("./GenericFunctions"); exports.ecomOrderProductsOperations = [ { displayName: 'Operation', name: 'operation', type: 'options', noDataExpression: true, displayOptions: { show: { resource: ['ecommerceOrderProducts'], }, }, options: [ { name: 'Get Many', value: 'getAll', description: 'Get data of many order products', action: 'Get many ecommerce orders', }, { name: 'Get by Product ID', value: 'getByProductId', description: 'Get data of a ordered product', action: 'Get an e-commerce order product by product ID', }, { name: 'Get by Order ID', value: 'getByOrderId', description: "Get data of an order's products", action: 'Get an e-commerce order product by order ID', }, ], default: 'getAll', }, ]; exports.ecomOrderProductsFields = [ // ---------------------------------- // ecommerceOrderProducts:getByOrderId // ---------------------------------- { displayName: 'Order ID', name: 'orderId', type: 'number', default: 0, displayOptions: { show: { operation: ['getByOrderId'], resource: ['ecommerceOrderProducts'], }, }, description: "The ID of the order whose products you'd like returned", }, // ---------------------------------- // ecommerceOrderProducts:getByProductId // ---------------------------------- { displayName: 'Product ID', name: 'procuctId', type: 'number', default: 0, displayOptions: { show: { operation: ['getByProductId'], resource: ['ecommerceOrderProducts'], }, }, description: "The ID of the product you'd like returned", }, // ---------------------------------- // ecommerceOrderProducts:getAll // ---------------------------------- ...(0, GenericFunctions_1.activeCampaignDefaultGetAllProperties)('ecommerceOrderProducts', 'getAll'), ]; //# sourceMappingURL=EcomOrderProductsDescription.js.map