evo360-types 1.3.139 → 1.3.140

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.
@@ -13,13 +13,13 @@ export interface ILeadQualification {
13
13
  name: string;
14
14
  funnelLevel: QualificationFunnelLevel;
15
15
  ref?: FirestoreDocumentReference;
16
- updated_at?: Date;
16
+ updated_at?: Date | null;
17
17
  }
18
18
  export interface ILeadDistChannel {
19
19
  code: string;
20
20
  name: string;
21
21
  ref?: FirestoreDocumentReference;
22
- updated_at?: Date;
22
+ updated_at?: Date | null;
23
23
  }
24
24
  export interface ILead extends IProfile {
25
25
  external_id?: string | null;
@@ -22,14 +22,14 @@ export interface ILeadQualification {
22
22
  name: string;
23
23
  funnelLevel: QualificationFunnelLevel;
24
24
  ref?: FirestoreDocumentReference;
25
- updated_at?: Date;
25
+ updated_at?: Date | null;
26
26
  }
27
27
 
28
28
  export interface ILeadDistChannel {
29
29
  code: string;
30
30
  name: string;
31
31
  ref?: FirestoreDocumentReference;
32
- updated_at?: Date;
32
+ updated_at?: Date | null;
33
33
  }
34
34
 
35
35
  export interface ILead extends IProfile {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.139",
3
+ "version": "1.3.140",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",