@kl1/contracts 1.0.52 → 1.0.54
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.
- package/dist/index.js +1298 -1133
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1296 -1133
- package/dist/index.mjs.map +1 -1
- package/dist/src/channel/index.d.ts +2273 -1438
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +6678 -1560
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +180 -180
- package/dist/src/chat/validation.d.ts +371 -440
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +3026 -1010
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +780 -188
- package/dist/src/comment/schema.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +296 -296
- package/dist/src/contact/schema.d.ts +20 -20
- package/dist/src/contact/validation.d.ts +150 -150
- package/dist/src/contract.d.ts +20591 -8915
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +240 -240
- package/dist/src/cx-log/schema.d.ts +180 -180
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +100 -100
- package/dist/src/line/index.d.ts +301 -6
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/line/schema.d.ts +301 -6
- package/dist/src/line/schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +100 -100
- package/dist/src/telephony-cdr/index.d.ts +180 -180
- package/dist/src/telephony-cdr/schema.d.ts +40 -40
- package/dist/src/ticket/index.d.ts +4128 -1040
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +512 -40
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/{mail/mail-server.d.ts → upload/index.d.ts} +72 -91
- package/dist/src/upload/index.d.ts.map +1 -0
- package/dist/src/upload/schema.d.ts +14 -0
- package/dist/src/upload/schema.d.ts.map +1 -1
- package/dist/src/upload/validation.d.ts +2 -0
- package/dist/src/upload/validation.d.ts.map +1 -0
- package/dist/src/user-presence-status-log/index.d.ts +63 -0
- package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/src/app/index.d.ts +0 -17
- package/dist/src/app/index.d.ts.map +0 -1
- package/dist/src/mail/mail-server.d.ts.map +0 -1
- package/dist/src/platform-contact/schema.d.ts +0 -30
- package/dist/src/platform-contact/schema.d.ts.map +0 -1
@@ -847,16 +847,6 @@ export declare const cxLogContract: {
|
|
847
847
|
};
|
848
848
|
}[];
|
849
849
|
}[];
|
850
|
-
notes: string | null;
|
851
|
-
contactProfile: string | null;
|
852
|
-
socialProfileUrl: string | null;
|
853
|
-
tags: {
|
854
|
-
id: string;
|
855
|
-
name: string;
|
856
|
-
createdAt: Date;
|
857
|
-
updatedAt: Date;
|
858
|
-
deletedAt: Date | null;
|
859
|
-
}[];
|
860
850
|
company: {
|
861
851
|
id: string;
|
862
852
|
createdAt: Date;
|
@@ -867,6 +857,16 @@ export declare const cxLogContract: {
|
|
867
857
|
phone?: string | null | undefined;
|
868
858
|
industry?: string | null | undefined;
|
869
859
|
} | null;
|
860
|
+
notes: string | null;
|
861
|
+
contactProfile: string | null;
|
862
|
+
socialProfileUrl: string | null;
|
863
|
+
tags: {
|
864
|
+
id: string;
|
865
|
+
name: string;
|
866
|
+
createdAt: Date;
|
867
|
+
updatedAt: Date;
|
868
|
+
deletedAt: Date | null;
|
869
|
+
}[];
|
870
870
|
contactEmails: {
|
871
871
|
id: string;
|
872
872
|
isPrimary: boolean;
|
@@ -950,16 +950,6 @@ export declare const cxLogContract: {
|
|
950
950
|
};
|
951
951
|
}[];
|
952
952
|
}[];
|
953
|
-
notes: string | null;
|
954
|
-
contactProfile: string | null;
|
955
|
-
socialProfileUrl: string | null;
|
956
|
-
tags: {
|
957
|
-
id: string;
|
958
|
-
name: string;
|
959
|
-
createdAt: Date;
|
960
|
-
updatedAt: Date;
|
961
|
-
deletedAt: Date | null;
|
962
|
-
}[];
|
963
953
|
company: {
|
964
954
|
id: string;
|
965
955
|
createdAt: Date;
|
@@ -970,6 +960,16 @@ export declare const cxLogContract: {
|
|
970
960
|
phone?: string | null | undefined;
|
971
961
|
industry?: string | null | undefined;
|
972
962
|
} | null;
|
963
|
+
notes: string | null;
|
964
|
+
contactProfile: string | null;
|
965
|
+
socialProfileUrl: string | null;
|
966
|
+
tags: {
|
967
|
+
id: string;
|
968
|
+
name: string;
|
969
|
+
createdAt: Date;
|
970
|
+
updatedAt: Date;
|
971
|
+
deletedAt: Date | null;
|
972
|
+
}[];
|
973
973
|
contactEmails: {
|
974
974
|
id: string;
|
975
975
|
isPrimary: boolean;
|
@@ -1067,16 +1067,6 @@ export declare const cxLogContract: {
|
|
1067
1067
|
};
|
1068
1068
|
}[];
|
1069
1069
|
}[];
|
1070
|
-
notes: string | null;
|
1071
|
-
contactProfile: string | null;
|
1072
|
-
socialProfileUrl: string | null;
|
1073
|
-
tags: {
|
1074
|
-
id: string;
|
1075
|
-
name: string;
|
1076
|
-
createdAt: Date;
|
1077
|
-
updatedAt: Date;
|
1078
|
-
deletedAt: Date | null;
|
1079
|
-
}[];
|
1080
1070
|
company: {
|
1081
1071
|
id: string;
|
1082
1072
|
createdAt: Date;
|
@@ -1087,6 +1077,16 @@ export declare const cxLogContract: {
|
|
1087
1077
|
phone?: string | null | undefined;
|
1088
1078
|
industry?: string | null | undefined;
|
1089
1079
|
} | null;
|
1080
|
+
notes: string | null;
|
1081
|
+
contactProfile: string | null;
|
1082
|
+
socialProfileUrl: string | null;
|
1083
|
+
tags: {
|
1084
|
+
id: string;
|
1085
|
+
name: string;
|
1086
|
+
createdAt: Date;
|
1087
|
+
updatedAt: Date;
|
1088
|
+
deletedAt: Date | null;
|
1089
|
+
}[];
|
1090
1090
|
contactEmails: {
|
1091
1091
|
id: string;
|
1092
1092
|
isPrimary: boolean;
|
@@ -1185,16 +1185,6 @@ export declare const cxLogContract: {
|
|
1185
1185
|
};
|
1186
1186
|
}[];
|
1187
1187
|
}[];
|
1188
|
-
notes: string | null;
|
1189
|
-
contactProfile: string | null;
|
1190
|
-
socialProfileUrl: string | null;
|
1191
|
-
tags: {
|
1192
|
-
id: string;
|
1193
|
-
name: string;
|
1194
|
-
createdAt: Date;
|
1195
|
-
updatedAt: Date;
|
1196
|
-
deletedAt: Date | null;
|
1197
|
-
}[];
|
1198
1188
|
company: {
|
1199
1189
|
id: string;
|
1200
1190
|
createdAt: Date;
|
@@ -1205,6 +1195,16 @@ export declare const cxLogContract: {
|
|
1205
1195
|
phone?: string | null | undefined;
|
1206
1196
|
industry?: string | null | undefined;
|
1207
1197
|
} | null;
|
1198
|
+
notes: string | null;
|
1199
|
+
contactProfile: string | null;
|
1200
|
+
socialProfileUrl: string | null;
|
1201
|
+
tags: {
|
1202
|
+
id: string;
|
1203
|
+
name: string;
|
1204
|
+
createdAt: Date;
|
1205
|
+
updatedAt: Date;
|
1206
|
+
deletedAt: Date | null;
|
1207
|
+
}[];
|
1208
1208
|
contactEmails: {
|
1209
1209
|
id: string;
|
1210
1210
|
isPrimary: boolean;
|
@@ -2129,16 +2129,6 @@ export declare const cxLogContract: {
|
|
2129
2129
|
};
|
2130
2130
|
}[];
|
2131
2131
|
}[];
|
2132
|
-
notes: string | null;
|
2133
|
-
contactProfile: string | null;
|
2134
|
-
socialProfileUrl: string | null;
|
2135
|
-
tags: {
|
2136
|
-
id: string;
|
2137
|
-
name: string;
|
2138
|
-
createdAt: Date;
|
2139
|
-
updatedAt: Date;
|
2140
|
-
deletedAt: Date | null;
|
2141
|
-
}[];
|
2142
2132
|
company: {
|
2143
2133
|
id: string;
|
2144
2134
|
createdAt: Date;
|
@@ -2149,6 +2139,16 @@ export declare const cxLogContract: {
|
|
2149
2139
|
phone?: string | null | undefined;
|
2150
2140
|
industry?: string | null | undefined;
|
2151
2141
|
} | null;
|
2142
|
+
notes: string | null;
|
2143
|
+
contactProfile: string | null;
|
2144
|
+
socialProfileUrl: string | null;
|
2145
|
+
tags: {
|
2146
|
+
id: string;
|
2147
|
+
name: string;
|
2148
|
+
createdAt: Date;
|
2149
|
+
updatedAt: Date;
|
2150
|
+
deletedAt: Date | null;
|
2151
|
+
}[];
|
2152
2152
|
contactEmails: {
|
2153
2153
|
id: string;
|
2154
2154
|
isPrimary: boolean;
|
@@ -2413,16 +2413,6 @@ export declare const cxLogContract: {
|
|
2413
2413
|
};
|
2414
2414
|
}[];
|
2415
2415
|
}[];
|
2416
|
-
notes: string | null;
|
2417
|
-
contactProfile: string | null;
|
2418
|
-
socialProfileUrl: string | null;
|
2419
|
-
tags: {
|
2420
|
-
id: string;
|
2421
|
-
name: string;
|
2422
|
-
createdAt: Date;
|
2423
|
-
updatedAt: Date;
|
2424
|
-
deletedAt: Date | null;
|
2425
|
-
}[];
|
2426
2416
|
company: {
|
2427
2417
|
id: string;
|
2428
2418
|
createdAt: Date;
|
@@ -2433,6 +2423,16 @@ export declare const cxLogContract: {
|
|
2433
2423
|
phone?: string | null | undefined;
|
2434
2424
|
industry?: string | null | undefined;
|
2435
2425
|
} | null;
|
2426
|
+
notes: string | null;
|
2427
|
+
contactProfile: string | null;
|
2428
|
+
socialProfileUrl: string | null;
|
2429
|
+
tags: {
|
2430
|
+
id: string;
|
2431
|
+
name: string;
|
2432
|
+
createdAt: Date;
|
2433
|
+
updatedAt: Date;
|
2434
|
+
deletedAt: Date | null;
|
2435
|
+
}[];
|
2436
2436
|
contactEmails: {
|
2437
2437
|
id: string;
|
2438
2438
|
isPrimary: boolean;
|
@@ -3192,16 +3192,6 @@ export declare const cxLogContract: {
|
|
3192
3192
|
};
|
3193
3193
|
}[];
|
3194
3194
|
}[];
|
3195
|
-
notes: string | null;
|
3196
|
-
contactProfile: string | null;
|
3197
|
-
socialProfileUrl: string | null;
|
3198
|
-
tags: {
|
3199
|
-
id: string;
|
3200
|
-
name: string;
|
3201
|
-
createdAt: Date;
|
3202
|
-
updatedAt: Date;
|
3203
|
-
deletedAt: Date | null;
|
3204
|
-
}[];
|
3205
3195
|
company: {
|
3206
3196
|
id: string;
|
3207
3197
|
createdAt: Date;
|
@@ -3212,6 +3202,16 @@ export declare const cxLogContract: {
|
|
3212
3202
|
phone?: string | null | undefined;
|
3213
3203
|
industry?: string | null | undefined;
|
3214
3204
|
} | null;
|
3205
|
+
notes: string | null;
|
3206
|
+
contactProfile: string | null;
|
3207
|
+
socialProfileUrl: string | null;
|
3208
|
+
tags: {
|
3209
|
+
id: string;
|
3210
|
+
name: string;
|
3211
|
+
createdAt: Date;
|
3212
|
+
updatedAt: Date;
|
3213
|
+
deletedAt: Date | null;
|
3214
|
+
}[];
|
3215
3215
|
contactEmails: {
|
3216
3216
|
id: string;
|
3217
3217
|
isPrimary: boolean;
|
@@ -3295,16 +3295,6 @@ export declare const cxLogContract: {
|
|
3295
3295
|
};
|
3296
3296
|
}[];
|
3297
3297
|
}[];
|
3298
|
-
notes: string | null;
|
3299
|
-
contactProfile: string | null;
|
3300
|
-
socialProfileUrl: string | null;
|
3301
|
-
tags: {
|
3302
|
-
id: string;
|
3303
|
-
name: string;
|
3304
|
-
createdAt: Date;
|
3305
|
-
updatedAt: Date;
|
3306
|
-
deletedAt: Date | null;
|
3307
|
-
}[];
|
3308
3298
|
company: {
|
3309
3299
|
id: string;
|
3310
3300
|
createdAt: Date;
|
@@ -3315,6 +3305,16 @@ export declare const cxLogContract: {
|
|
3315
3305
|
phone?: string | null | undefined;
|
3316
3306
|
industry?: string | null | undefined;
|
3317
3307
|
} | null;
|
3308
|
+
notes: string | null;
|
3309
|
+
contactProfile: string | null;
|
3310
|
+
socialProfileUrl: string | null;
|
3311
|
+
tags: {
|
3312
|
+
id: string;
|
3313
|
+
name: string;
|
3314
|
+
createdAt: Date;
|
3315
|
+
updatedAt: Date;
|
3316
|
+
deletedAt: Date | null;
|
3317
|
+
}[];
|
3318
3318
|
contactEmails: {
|
3319
3319
|
id: string;
|
3320
3320
|
isPrimary: boolean;
|
@@ -3825,16 +3825,6 @@ export declare const cxLogContract: {
|
|
3825
3825
|
};
|
3826
3826
|
}[];
|
3827
3827
|
}[];
|
3828
|
-
notes: string | null;
|
3829
|
-
contactProfile: string | null;
|
3830
|
-
socialProfileUrl: string | null;
|
3831
|
-
tags: {
|
3832
|
-
id: string;
|
3833
|
-
name: string;
|
3834
|
-
createdAt: Date;
|
3835
|
-
updatedAt: Date;
|
3836
|
-
deletedAt: Date | null;
|
3837
|
-
}[];
|
3838
3828
|
company: {
|
3839
3829
|
id: string;
|
3840
3830
|
createdAt: Date;
|
@@ -3845,6 +3835,16 @@ export declare const cxLogContract: {
|
|
3845
3835
|
phone?: string | null | undefined;
|
3846
3836
|
industry?: string | null | undefined;
|
3847
3837
|
} | null;
|
3838
|
+
notes: string | null;
|
3839
|
+
contactProfile: string | null;
|
3840
|
+
socialProfileUrl: string | null;
|
3841
|
+
tags: {
|
3842
|
+
id: string;
|
3843
|
+
name: string;
|
3844
|
+
createdAt: Date;
|
3845
|
+
updatedAt: Date;
|
3846
|
+
deletedAt: Date | null;
|
3847
|
+
}[];
|
3848
3848
|
contactEmails: {
|
3849
3849
|
id: string;
|
3850
3850
|
isPrimary: boolean;
|
@@ -4032,16 +4032,6 @@ export declare const cxLogContract: {
|
|
4032
4032
|
};
|
4033
4033
|
}[];
|
4034
4034
|
}[];
|
4035
|
-
notes: string | null;
|
4036
|
-
contactProfile: string | null;
|
4037
|
-
socialProfileUrl: string | null;
|
4038
|
-
tags: {
|
4039
|
-
id: string;
|
4040
|
-
name: string;
|
4041
|
-
createdAt: Date;
|
4042
|
-
updatedAt: Date;
|
4043
|
-
deletedAt: Date | null;
|
4044
|
-
}[];
|
4045
4035
|
company: {
|
4046
4036
|
id: string;
|
4047
4037
|
createdAt: Date;
|
@@ -4052,6 +4042,16 @@ export declare const cxLogContract: {
|
|
4052
4042
|
phone?: string | null | undefined;
|
4053
4043
|
industry?: string | null | undefined;
|
4054
4044
|
} | null;
|
4045
|
+
notes: string | null;
|
4046
|
+
contactProfile: string | null;
|
4047
|
+
socialProfileUrl: string | null;
|
4048
|
+
tags: {
|
4049
|
+
id: string;
|
4050
|
+
name: string;
|
4051
|
+
createdAt: Date;
|
4052
|
+
updatedAt: Date;
|
4053
|
+
deletedAt: Date | null;
|
4054
|
+
}[];
|
4055
4055
|
contactEmails: {
|
4056
4056
|
id: string;
|
4057
4057
|
isPrimary: boolean;
|
@@ -4774,16 +4774,6 @@ export declare const cxLogContract: {
|
|
4774
4774
|
};
|
4775
4775
|
}[];
|
4776
4776
|
}[];
|
4777
|
-
notes: string | null;
|
4778
|
-
contactProfile: string | null;
|
4779
|
-
socialProfileUrl: string | null;
|
4780
|
-
tags: {
|
4781
|
-
id: string;
|
4782
|
-
name: string;
|
4783
|
-
createdAt: Date;
|
4784
|
-
updatedAt: Date;
|
4785
|
-
deletedAt: Date | null;
|
4786
|
-
}[];
|
4787
4777
|
company: {
|
4788
4778
|
id: string;
|
4789
4779
|
createdAt: Date;
|
@@ -4794,6 +4784,16 @@ export declare const cxLogContract: {
|
|
4794
4784
|
phone?: string | null | undefined;
|
4795
4785
|
industry?: string | null | undefined;
|
4796
4786
|
} | null;
|
4787
|
+
notes: string | null;
|
4788
|
+
contactProfile: string | null;
|
4789
|
+
socialProfileUrl: string | null;
|
4790
|
+
tags: {
|
4791
|
+
id: string;
|
4792
|
+
name: string;
|
4793
|
+
createdAt: Date;
|
4794
|
+
updatedAt: Date;
|
4795
|
+
deletedAt: Date | null;
|
4796
|
+
}[];
|
4797
4797
|
contactEmails: {
|
4798
4798
|
id: string;
|
4799
4799
|
isPrimary: boolean;
|
@@ -4877,16 +4877,6 @@ export declare const cxLogContract: {
|
|
4877
4877
|
};
|
4878
4878
|
}[];
|
4879
4879
|
}[];
|
4880
|
-
notes: string | null;
|
4881
|
-
contactProfile: string | null;
|
4882
|
-
socialProfileUrl: string | null;
|
4883
|
-
tags: {
|
4884
|
-
id: string;
|
4885
|
-
name: string;
|
4886
|
-
createdAt: Date;
|
4887
|
-
updatedAt: Date;
|
4888
|
-
deletedAt: Date | null;
|
4889
|
-
}[];
|
4890
4880
|
company: {
|
4891
4881
|
id: string;
|
4892
4882
|
createdAt: Date;
|
@@ -4897,6 +4887,16 @@ export declare const cxLogContract: {
|
|
4897
4887
|
phone?: string | null | undefined;
|
4898
4888
|
industry?: string | null | undefined;
|
4899
4889
|
} | null;
|
4890
|
+
notes: string | null;
|
4891
|
+
contactProfile: string | null;
|
4892
|
+
socialProfileUrl: string | null;
|
4893
|
+
tags: {
|
4894
|
+
id: string;
|
4895
|
+
name: string;
|
4896
|
+
createdAt: Date;
|
4897
|
+
updatedAt: Date;
|
4898
|
+
deletedAt: Date | null;
|
4899
|
+
}[];
|
4900
4900
|
contactEmails: {
|
4901
4901
|
id: string;
|
4902
4902
|
isPrimary: boolean;
|
@@ -5195,16 +5195,6 @@ export declare const cxLogContract: {
|
|
5195
5195
|
};
|
5196
5196
|
}[];
|
5197
5197
|
}[];
|
5198
|
-
notes: string | null;
|
5199
|
-
contactProfile: string | null;
|
5200
|
-
socialProfileUrl: string | null;
|
5201
|
-
tags: {
|
5202
|
-
id: string;
|
5203
|
-
name: string;
|
5204
|
-
createdAt: Date;
|
5205
|
-
updatedAt: Date;
|
5206
|
-
deletedAt: Date | null;
|
5207
|
-
}[];
|
5208
5198
|
company: {
|
5209
5199
|
id: string;
|
5210
5200
|
createdAt: Date;
|
@@ -5215,6 +5205,16 @@ export declare const cxLogContract: {
|
|
5215
5205
|
phone?: string | null | undefined;
|
5216
5206
|
industry?: string | null | undefined;
|
5217
5207
|
} | null;
|
5208
|
+
notes: string | null;
|
5209
|
+
contactProfile: string | null;
|
5210
|
+
socialProfileUrl: string | null;
|
5211
|
+
tags: {
|
5212
|
+
id: string;
|
5213
|
+
name: string;
|
5214
|
+
createdAt: Date;
|
5215
|
+
updatedAt: Date;
|
5216
|
+
deletedAt: Date | null;
|
5217
|
+
}[];
|
5218
5218
|
contactEmails: {
|
5219
5219
|
id: string;
|
5220
5220
|
isPrimary: boolean;
|
@@ -5402,16 +5402,6 @@ export declare const cxLogContract: {
|
|
5402
5402
|
};
|
5403
5403
|
}[];
|
5404
5404
|
}[];
|
5405
|
-
notes: string | null;
|
5406
|
-
contactProfile: string | null;
|
5407
|
-
socialProfileUrl: string | null;
|
5408
|
-
tags: {
|
5409
|
-
id: string;
|
5410
|
-
name: string;
|
5411
|
-
createdAt: Date;
|
5412
|
-
updatedAt: Date;
|
5413
|
-
deletedAt: Date | null;
|
5414
|
-
}[];
|
5415
5405
|
company: {
|
5416
5406
|
id: string;
|
5417
5407
|
createdAt: Date;
|
@@ -5422,6 +5412,16 @@ export declare const cxLogContract: {
|
|
5422
5412
|
phone?: string | null | undefined;
|
5423
5413
|
industry?: string | null | undefined;
|
5424
5414
|
} | null;
|
5415
|
+
notes: string | null;
|
5416
|
+
contactProfile: string | null;
|
5417
|
+
socialProfileUrl: string | null;
|
5418
|
+
tags: {
|
5419
|
+
id: string;
|
5420
|
+
name: string;
|
5421
|
+
createdAt: Date;
|
5422
|
+
updatedAt: Date;
|
5423
|
+
deletedAt: Date | null;
|
5424
|
+
}[];
|
5425
5425
|
contactEmails: {
|
5426
5426
|
id: string;
|
5427
5427
|
isPrimary: boolean;
|
@@ -5641,16 +5641,6 @@ export declare const cxLogContract: {
|
|
5641
5641
|
};
|
5642
5642
|
}[];
|
5643
5643
|
}[];
|
5644
|
-
notes: string | null;
|
5645
|
-
contactProfile: string | null;
|
5646
|
-
socialProfileUrl: string | null;
|
5647
|
-
tags: {
|
5648
|
-
id: string;
|
5649
|
-
name: string;
|
5650
|
-
createdAt: Date;
|
5651
|
-
updatedAt: Date;
|
5652
|
-
deletedAt: Date | null;
|
5653
|
-
}[];
|
5654
5644
|
company: {
|
5655
5645
|
id: string;
|
5656
5646
|
createdAt: Date;
|
@@ -5661,6 +5651,16 @@ export declare const cxLogContract: {
|
|
5661
5651
|
phone?: string | null | undefined;
|
5662
5652
|
industry?: string | null | undefined;
|
5663
5653
|
} | null;
|
5654
|
+
notes: string | null;
|
5655
|
+
contactProfile: string | null;
|
5656
|
+
socialProfileUrl: string | null;
|
5657
|
+
tags: {
|
5658
|
+
id: string;
|
5659
|
+
name: string;
|
5660
|
+
createdAt: Date;
|
5661
|
+
updatedAt: Date;
|
5662
|
+
deletedAt: Date | null;
|
5663
|
+
}[];
|
5664
5664
|
contactEmails: {
|
5665
5665
|
id: string;
|
5666
5666
|
isPrimary: boolean;
|
@@ -5882,16 +5882,6 @@ export declare const cxLogContract: {
|
|
5882
5882
|
};
|
5883
5883
|
}[];
|
5884
5884
|
}[];
|
5885
|
-
notes: string | null;
|
5886
|
-
contactProfile: string | null;
|
5887
|
-
socialProfileUrl: string | null;
|
5888
|
-
tags: {
|
5889
|
-
id: string;
|
5890
|
-
name: string;
|
5891
|
-
createdAt: Date;
|
5892
|
-
updatedAt: Date;
|
5893
|
-
deletedAt: Date | null;
|
5894
|
-
}[];
|
5895
5885
|
company: {
|
5896
5886
|
id: string;
|
5897
5887
|
createdAt: Date;
|
@@ -5902,6 +5892,16 @@ export declare const cxLogContract: {
|
|
5902
5892
|
phone?: string | null | undefined;
|
5903
5893
|
industry?: string | null | undefined;
|
5904
5894
|
} | null;
|
5895
|
+
notes: string | null;
|
5896
|
+
contactProfile: string | null;
|
5897
|
+
socialProfileUrl: string | null;
|
5898
|
+
tags: {
|
5899
|
+
id: string;
|
5900
|
+
name: string;
|
5901
|
+
createdAt: Date;
|
5902
|
+
updatedAt: Date;
|
5903
|
+
deletedAt: Date | null;
|
5904
|
+
}[];
|
5905
5905
|
contactEmails: {
|
5906
5906
|
id: string;
|
5907
5907
|
isPrimary: boolean;
|
@@ -6089,16 +6089,6 @@ export declare const cxLogContract: {
|
|
6089
6089
|
};
|
6090
6090
|
}[];
|
6091
6091
|
}[];
|
6092
|
-
notes: string | null;
|
6093
|
-
contactProfile: string | null;
|
6094
|
-
socialProfileUrl: string | null;
|
6095
|
-
tags: {
|
6096
|
-
id: string;
|
6097
|
-
name: string;
|
6098
|
-
createdAt: Date;
|
6099
|
-
updatedAt: Date;
|
6100
|
-
deletedAt: Date | null;
|
6101
|
-
}[];
|
6102
6092
|
company: {
|
6103
6093
|
id: string;
|
6104
6094
|
createdAt: Date;
|
@@ -6109,6 +6099,16 @@ export declare const cxLogContract: {
|
|
6109
6099
|
phone?: string | null | undefined;
|
6110
6100
|
industry?: string | null | undefined;
|
6111
6101
|
} | null;
|
6102
|
+
notes: string | null;
|
6103
|
+
contactProfile: string | null;
|
6104
|
+
socialProfileUrl: string | null;
|
6105
|
+
tags: {
|
6106
|
+
id: string;
|
6107
|
+
name: string;
|
6108
|
+
createdAt: Date;
|
6109
|
+
updatedAt: Date;
|
6110
|
+
deletedAt: Date | null;
|
6111
|
+
}[];
|
6112
6112
|
contactEmails: {
|
6113
6113
|
id: string;
|
6114
6114
|
isPrimary: boolean;
|
@@ -6328,16 +6328,6 @@ export declare const cxLogContract: {
|
|
6328
6328
|
};
|
6329
6329
|
}[];
|
6330
6330
|
}[];
|
6331
|
-
notes: string | null;
|
6332
|
-
contactProfile: string | null;
|
6333
|
-
socialProfileUrl: string | null;
|
6334
|
-
tags: {
|
6335
|
-
id: string;
|
6336
|
-
name: string;
|
6337
|
-
createdAt: Date;
|
6338
|
-
updatedAt: Date;
|
6339
|
-
deletedAt: Date | null;
|
6340
|
-
}[];
|
6341
6331
|
company: {
|
6342
6332
|
id: string;
|
6343
6333
|
createdAt: Date;
|
@@ -6348,6 +6338,16 @@ export declare const cxLogContract: {
|
|
6348
6338
|
phone?: string | null | undefined;
|
6349
6339
|
industry?: string | null | undefined;
|
6350
6340
|
} | null;
|
6341
|
+
notes: string | null;
|
6342
|
+
contactProfile: string | null;
|
6343
|
+
socialProfileUrl: string | null;
|
6344
|
+
tags: {
|
6345
|
+
id: string;
|
6346
|
+
name: string;
|
6347
|
+
createdAt: Date;
|
6348
|
+
updatedAt: Date;
|
6349
|
+
deletedAt: Date | null;
|
6350
|
+
}[];
|
6351
6351
|
contactEmails: {
|
6352
6352
|
id: string;
|
6353
6353
|
isPrimary: boolean;
|
@@ -6575,16 +6575,6 @@ export declare const cxLogContract: {
|
|
6575
6575
|
};
|
6576
6576
|
}[];
|
6577
6577
|
}[];
|
6578
|
-
notes: string | null;
|
6579
|
-
contactProfile: string | null;
|
6580
|
-
socialProfileUrl: string | null;
|
6581
|
-
tags: {
|
6582
|
-
id: string;
|
6583
|
-
name: string;
|
6584
|
-
createdAt: Date;
|
6585
|
-
updatedAt: Date;
|
6586
|
-
deletedAt: Date | null;
|
6587
|
-
}[];
|
6588
6578
|
company: {
|
6589
6579
|
id: string;
|
6590
6580
|
createdAt: Date;
|
@@ -6595,6 +6585,16 @@ export declare const cxLogContract: {
|
|
6595
6585
|
phone?: string | null | undefined;
|
6596
6586
|
industry?: string | null | undefined;
|
6597
6587
|
} | null;
|
6588
|
+
notes: string | null;
|
6589
|
+
contactProfile: string | null;
|
6590
|
+
socialProfileUrl: string | null;
|
6591
|
+
tags: {
|
6592
|
+
id: string;
|
6593
|
+
name: string;
|
6594
|
+
createdAt: Date;
|
6595
|
+
updatedAt: Date;
|
6596
|
+
deletedAt: Date | null;
|
6597
|
+
}[];
|
6598
6598
|
contactEmails: {
|
6599
6599
|
id: string;
|
6600
6600
|
isPrimary: boolean;
|
@@ -6782,16 +6782,6 @@ export declare const cxLogContract: {
|
|
6782
6782
|
};
|
6783
6783
|
}[];
|
6784
6784
|
}[];
|
6785
|
-
notes: string | null;
|
6786
|
-
contactProfile: string | null;
|
6787
|
-
socialProfileUrl: string | null;
|
6788
|
-
tags: {
|
6789
|
-
id: string;
|
6790
|
-
name: string;
|
6791
|
-
createdAt: Date;
|
6792
|
-
updatedAt: Date;
|
6793
|
-
deletedAt: Date | null;
|
6794
|
-
}[];
|
6795
6785
|
company: {
|
6796
6786
|
id: string;
|
6797
6787
|
createdAt: Date;
|
@@ -6802,6 +6792,16 @@ export declare const cxLogContract: {
|
|
6802
6792
|
phone?: string | null | undefined;
|
6803
6793
|
industry?: string | null | undefined;
|
6804
6794
|
} | null;
|
6795
|
+
notes: string | null;
|
6796
|
+
contactProfile: string | null;
|
6797
|
+
socialProfileUrl: string | null;
|
6798
|
+
tags: {
|
6799
|
+
id: string;
|
6800
|
+
name: string;
|
6801
|
+
createdAt: Date;
|
6802
|
+
updatedAt: Date;
|
6803
|
+
deletedAt: Date | null;
|
6804
|
+
}[];
|
6805
6805
|
contactEmails: {
|
6806
6806
|
id: string;
|
6807
6807
|
isPrimary: boolean;
|
@@ -7021,16 +7021,6 @@ export declare const cxLogContract: {
|
|
7021
7021
|
};
|
7022
7022
|
}[];
|
7023
7023
|
}[];
|
7024
|
-
notes: string | null;
|
7025
|
-
contactProfile: string | null;
|
7026
|
-
socialProfileUrl: string | null;
|
7027
|
-
tags: {
|
7028
|
-
id: string;
|
7029
|
-
name: string;
|
7030
|
-
createdAt: Date;
|
7031
|
-
updatedAt: Date;
|
7032
|
-
deletedAt: Date | null;
|
7033
|
-
}[];
|
7034
7024
|
company: {
|
7035
7025
|
id: string;
|
7036
7026
|
createdAt: Date;
|
@@ -7041,6 +7031,16 @@ export declare const cxLogContract: {
|
|
7041
7031
|
phone?: string | null | undefined;
|
7042
7032
|
industry?: string | null | undefined;
|
7043
7033
|
} | null;
|
7034
|
+
notes: string | null;
|
7035
|
+
contactProfile: string | null;
|
7036
|
+
socialProfileUrl: string | null;
|
7037
|
+
tags: {
|
7038
|
+
id: string;
|
7039
|
+
name: string;
|
7040
|
+
createdAt: Date;
|
7041
|
+
updatedAt: Date;
|
7042
|
+
deletedAt: Date | null;
|
7043
|
+
}[];
|
7044
7044
|
contactEmails: {
|
7045
7045
|
id: string;
|
7046
7046
|
isPrimary: boolean;
|
@@ -7268,16 +7268,6 @@ export declare const cxLogContract: {
|
|
7268
7268
|
};
|
7269
7269
|
}[];
|
7270
7270
|
}[];
|
7271
|
-
notes: string | null;
|
7272
|
-
contactProfile: string | null;
|
7273
|
-
socialProfileUrl: string | null;
|
7274
|
-
tags: {
|
7275
|
-
id: string;
|
7276
|
-
name: string;
|
7277
|
-
createdAt: Date;
|
7278
|
-
updatedAt: Date;
|
7279
|
-
deletedAt: Date | null;
|
7280
|
-
}[];
|
7281
7271
|
company: {
|
7282
7272
|
id: string;
|
7283
7273
|
createdAt: Date;
|
@@ -7288,6 +7278,16 @@ export declare const cxLogContract: {
|
|
7288
7278
|
phone?: string | null | undefined;
|
7289
7279
|
industry?: string | null | undefined;
|
7290
7280
|
} | null;
|
7281
|
+
notes: string | null;
|
7282
|
+
contactProfile: string | null;
|
7283
|
+
socialProfileUrl: string | null;
|
7284
|
+
tags: {
|
7285
|
+
id: string;
|
7286
|
+
name: string;
|
7287
|
+
createdAt: Date;
|
7288
|
+
updatedAt: Date;
|
7289
|
+
deletedAt: Date | null;
|
7290
|
+
}[];
|
7291
7291
|
contactEmails: {
|
7292
7292
|
id: string;
|
7293
7293
|
isPrimary: boolean;
|
@@ -7475,16 +7475,6 @@ export declare const cxLogContract: {
|
|
7475
7475
|
};
|
7476
7476
|
}[];
|
7477
7477
|
}[];
|
7478
|
-
notes: string | null;
|
7479
|
-
contactProfile: string | null;
|
7480
|
-
socialProfileUrl: string | null;
|
7481
|
-
tags: {
|
7482
|
-
id: string;
|
7483
|
-
name: string;
|
7484
|
-
createdAt: Date;
|
7485
|
-
updatedAt: Date;
|
7486
|
-
deletedAt: Date | null;
|
7487
|
-
}[];
|
7488
7478
|
company: {
|
7489
7479
|
id: string;
|
7490
7480
|
createdAt: Date;
|
@@ -7495,6 +7485,16 @@ export declare const cxLogContract: {
|
|
7495
7485
|
phone?: string | null | undefined;
|
7496
7486
|
industry?: string | null | undefined;
|
7497
7487
|
} | null;
|
7488
|
+
notes: string | null;
|
7489
|
+
contactProfile: string | null;
|
7490
|
+
socialProfileUrl: string | null;
|
7491
|
+
tags: {
|
7492
|
+
id: string;
|
7493
|
+
name: string;
|
7494
|
+
createdAt: Date;
|
7495
|
+
updatedAt: Date;
|
7496
|
+
deletedAt: Date | null;
|
7497
|
+
}[];
|
7498
7498
|
contactEmails: {
|
7499
7499
|
id: string;
|
7500
7500
|
isPrimary: boolean;
|
@@ -7714,16 +7714,6 @@ export declare const cxLogContract: {
|
|
7714
7714
|
};
|
7715
7715
|
}[];
|
7716
7716
|
}[];
|
7717
|
-
notes: string | null;
|
7718
|
-
contactProfile: string | null;
|
7719
|
-
socialProfileUrl: string | null;
|
7720
|
-
tags: {
|
7721
|
-
id: string;
|
7722
|
-
name: string;
|
7723
|
-
createdAt: Date;
|
7724
|
-
updatedAt: Date;
|
7725
|
-
deletedAt: Date | null;
|
7726
|
-
}[];
|
7727
7717
|
company: {
|
7728
7718
|
id: string;
|
7729
7719
|
createdAt: Date;
|
@@ -7734,6 +7724,16 @@ export declare const cxLogContract: {
|
|
7734
7724
|
phone?: string | null | undefined;
|
7735
7725
|
industry?: string | null | undefined;
|
7736
7726
|
} | null;
|
7727
|
+
notes: string | null;
|
7728
|
+
contactProfile: string | null;
|
7729
|
+
socialProfileUrl: string | null;
|
7730
|
+
tags: {
|
7731
|
+
id: string;
|
7732
|
+
name: string;
|
7733
|
+
createdAt: Date;
|
7734
|
+
updatedAt: Date;
|
7735
|
+
deletedAt: Date | null;
|
7736
|
+
}[];
|
7737
7737
|
contactEmails: {
|
7738
7738
|
id: string;
|
7739
7739
|
isPrimary: boolean;
|