UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

73 lines (69 loc) 1.93 kB
/** * Magento 2 Node - Version 1 * Discriminator: resource=product, operation=create */ interface Credentials { magento2Api: CredentialReference; } /** Create a new customer */ export type Magento2V1ProductCreateParams = { resource: 'product'; operation: 'create'; /** * Stock-keeping unit of the product */ sku?: string | Expression<string> | PlaceholderValue; /** * Name */ name?: string | Expression<string> | PlaceholderValue; /** * Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; */ attributeSetId?: string | Expression<string>; /** * Price * @default 0 */ price?: number | Expression<number>; /** * Additional Fields * @default {} */ additionalFields?: { /** Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; * @displayOptions.show { /operation: ["update"] } */ attribute_set_id?: string | Expression<string>; /** Name * @displayOptions.show { /operation: ["update"] } */ name?: string | Expression<string> | PlaceholderValue; /** Price * @displayOptions.show { /operation: ["update"] } * @default 0 */ price?: number | Expression<number>; /** Status * @default 1 */ status?: 1 | 2 | Expression<number>; /** Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt; */ type_id?: string | Expression<string>; /** Visibility * @default 4 */ visibility?: 1 | 2 | 3 | 4 | Expression<number>; /** Weight (LBS) * @default 0 */ weight?: number | Expression<number>; }; }; export type Magento2V1ProductCreateNode = { type: 'n8n-nodes-base.magento2'; version: 1; credentials?: Credentials; config: NodeConfig<Magento2V1ProductCreateParams>; };