truflow 0.0.122 → 0.0.123

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.
@@ -27,6 +27,21 @@ type ISum = {
27
27
  formula: string;
28
28
  };
29
29
  export interface IProduct {
30
+ createddate_end: string;
31
+ createddate_start: string;
32
+ export_class: string;
33
+ include_in_designer: boolean;
34
+ line_id: number;
35
+ name: string;
36
+ ordering: string;
37
+ page: number;
38
+ per_page: number;
39
+ related_objects: any;
40
+ status: number;
41
+ updateddate_end: string;
42
+ updateddate_start: string;
43
+ }
44
+ export interface IProductResponse {
30
45
  product_id: number;
31
46
  line_id: number;
32
47
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "truflow",
3
- "version": "0.0.122",
3
+ "version": "0.0.123",
4
4
  "main": "./dist/index.js",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -17,7 +17,7 @@ type IValidation = {
17
17
  action_type: string;
18
18
  value: string;
19
19
  }[];
20
- conditions: null | any; // adjust according to your conditions structure
20
+ conditions: null | any;
21
21
  };
22
22
 
23
23
  type ISum = {
@@ -30,6 +30,22 @@ type ISum = {
30
30
  };
31
31
 
32
32
  export interface IProduct {
33
+ createddate_end: string;
34
+ createddate_start: string;
35
+ export_class: string;
36
+ include_in_designer: boolean;
37
+ line_id: number;
38
+ name: string;
39
+ ordering: string;
40
+ page: number;
41
+ per_page: number;
42
+ related_objects: any;
43
+ status: number;
44
+ updateddate_end: string;
45
+ updateddate_start: string;
46
+ }
47
+
48
+ export interface IProductResponse {
33
49
  product_id: number;
34
50
  line_id: number;
35
51
  name: string;