mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
⚡ Renamed to Keap.
This commit is contained in:
35
packages/nodes-base/nodes/Keap/EcommerceOrderInterface.ts
Normal file
35
packages/nodes-base/nodes/Keap/EcommerceOrderInterface.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
|
||||
|
||||
export interface IItem {
|
||||
description?: string;
|
||||
price?: number;
|
||||
product_id?: number;
|
||||
quantity?: number;
|
||||
}
|
||||
|
||||
export interface IShippingAddress {
|
||||
company?: string;
|
||||
country_code?: string;
|
||||
first_name?: string;
|
||||
last_name?: string;
|
||||
line1?: string;
|
||||
line2?: string;
|
||||
locality?: string;
|
||||
middle_name?: string;
|
||||
postal_code?: string;
|
||||
region?: string;
|
||||
zip_code?: string;
|
||||
zip_four?: string;
|
||||
}
|
||||
|
||||
export interface IEcommerceOrder {
|
||||
contact_id: number;
|
||||
lead_affiliate_id?: string;
|
||||
order_date: string;
|
||||
order_items?: IItem[];
|
||||
order_title: string;
|
||||
order_type?: string;
|
||||
promo_codes?: string[];
|
||||
sales_affiliate_id?: number;
|
||||
shipping_address?: IShippingAddress;
|
||||
}
|
||||
Reference in New Issue
Block a user