truflow 0.0.132 → 0.0.134
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export interface IOrderProductItems {
|
|
2
|
+
completed: boolean;
|
|
3
|
+
createddate_end: string;
|
|
4
|
+
createddate_start: string;
|
|
5
|
+
line_id: number;
|
|
6
|
+
op_id: number;
|
|
7
|
+
ordering: string;
|
|
8
|
+
page: number;
|
|
9
|
+
per_page: number;
|
|
10
|
+
updateddate_end: string;
|
|
11
|
+
updateddate_start: string;
|
|
12
|
+
}
|
|
13
|
+
export interface IOrderProductItemsResponse {
|
|
14
|
+
opi_id: number;
|
|
15
|
+
op_id: number;
|
|
16
|
+
line_id: number | null;
|
|
17
|
+
data: string;
|
|
18
|
+
part_data: string;
|
|
19
|
+
adjustments: string;
|
|
20
|
+
qty: number | null;
|
|
21
|
+
original_price: number | null;
|
|
22
|
+
price: number | null;
|
|
23
|
+
price_override: number | null;
|
|
24
|
+
discount: number;
|
|
25
|
+
weight: number;
|
|
26
|
+
completed: number;
|
|
27
|
+
createdby: string | null;
|
|
28
|
+
createdbyid: number | null;
|
|
29
|
+
createddate: string | null;
|
|
30
|
+
updatedby: string | null;
|
|
31
|
+
updatedbyid: number | null;
|
|
32
|
+
updateddate: string | null;
|
|
33
|
+
}
|
package/dist/IIntegration.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export interface IOrderProductItems {
|
|
2
|
+
completed: boolean; // Indicates whether or not the order was completed.
|
|
3
|
+
createddate_end: string; // The end date in a range of dates when the item was created.
|
|
4
|
+
createddate_start: string; // The start date in a range of dates when the item was created.
|
|
5
|
+
line_id: number; // Indicates where the order product item should be displayed.
|
|
6
|
+
op_id: number; // Foreign key, the ID of the associated order product.
|
|
7
|
+
ordering: string; // Ordering.
|
|
8
|
+
page: number; // Page number of the results.
|
|
9
|
+
per_page: number; // The number of results that should populate per page.
|
|
10
|
+
updateddate_end: string; // The end date in a range of dates when the item was last updated.
|
|
11
|
+
updateddate_start: string; // The start date in a range of dates when the item was last updated.
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export interface IOrderProductItemsResponse {
|
|
15
|
+
opi_id: number;
|
|
16
|
+
op_id: number;
|
|
17
|
+
line_id: number | null;
|
|
18
|
+
data: string;
|
|
19
|
+
part_data: string;
|
|
20
|
+
adjustments: string;
|
|
21
|
+
qty: number | null;
|
|
22
|
+
original_price: number | null;
|
|
23
|
+
price: number | null;
|
|
24
|
+
price_override: number | null;
|
|
25
|
+
discount: number;
|
|
26
|
+
weight: number;
|
|
27
|
+
completed: number;
|
|
28
|
+
createdby: string | null;
|
|
29
|
+
createdbyid: number | null;
|
|
30
|
+
createddate: string | null;
|
|
31
|
+
updatedby: string | null;
|
|
32
|
+
updatedbyid: number | null;
|
|
33
|
+
updateddate: string | null;
|
|
34
|
+
}
|
package/src/IIntegration.ts
CHANGED