@kl1/contracts 1.0.53 → 1.0.55
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 +104 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +103 -14
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +1033 -1033
- package/dist/src/chat/schema.d.ts +180 -180
- package/dist/src/chat/validation.d.ts +192 -192
- 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 +8513 -3217
- 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 +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +100 -100
- 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 +3980 -892
- 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/upload/index.d.ts +197 -0
- 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/package.json +1 -1
package/dist/src/chat/index.d.ts
CHANGED
@@ -18,7 +18,7 @@ export declare const receiveMessageContract: {
|
|
18
18
|
receiveMessage: {
|
19
19
|
body: z.ZodObject<{
|
20
20
|
message: z.ZodObject<{
|
21
|
-
message: z.ZodString
|
21
|
+
message: z.ZodOptional<z.ZodString>;
|
22
22
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
23
23
|
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
|
24
24
|
metadata: z.ZodAny;
|
@@ -612,9 +612,6 @@ export declare const receiveMessageContract: {
|
|
612
612
|
channel: string | null;
|
613
613
|
address: string | null;
|
614
614
|
name: string;
|
615
|
-
notes: string | null;
|
616
|
-
contactProfile: string | null;
|
617
|
-
socialProfileUrl: string | null;
|
618
615
|
company: {
|
619
616
|
id: string;
|
620
617
|
createdAt: Date;
|
@@ -625,6 +622,9 @@ export declare const receiveMessageContract: {
|
|
625
622
|
phone?: string | null | undefined;
|
626
623
|
industry?: string | null | undefined;
|
627
624
|
} | null;
|
625
|
+
notes: string | null;
|
626
|
+
contactProfile: string | null;
|
627
|
+
socialProfileUrl: string | null;
|
628
628
|
tags?: {
|
629
629
|
id: string;
|
630
630
|
name: string;
|
@@ -712,9 +712,6 @@ export declare const receiveMessageContract: {
|
|
712
712
|
channel: string | null;
|
713
713
|
address: string | null;
|
714
714
|
name: string;
|
715
|
-
notes: string | null;
|
716
|
-
contactProfile: string | null;
|
717
|
-
socialProfileUrl: string | null;
|
718
715
|
company: {
|
719
716
|
id: string;
|
720
717
|
createdAt: Date;
|
@@ -725,6 +722,9 @@ export declare const receiveMessageContract: {
|
|
725
722
|
phone?: string | null | undefined;
|
726
723
|
industry?: string | null | undefined;
|
727
724
|
} | null;
|
725
|
+
notes: string | null;
|
726
|
+
contactProfile: string | null;
|
727
|
+
socialProfileUrl: string | null;
|
728
728
|
tags?: {
|
729
729
|
id: string;
|
730
730
|
name: string;
|
@@ -822,9 +822,6 @@ export declare const receiveMessageContract: {
|
|
822
822
|
channel: string | null;
|
823
823
|
address: string | null;
|
824
824
|
name: string;
|
825
|
-
notes: string | null;
|
826
|
-
contactProfile: string | null;
|
827
|
-
socialProfileUrl: string | null;
|
828
825
|
company: {
|
829
826
|
id: string;
|
830
827
|
createdAt: Date;
|
@@ -835,6 +832,9 @@ export declare const receiveMessageContract: {
|
|
835
832
|
phone?: string | null | undefined;
|
836
833
|
industry?: string | null | undefined;
|
837
834
|
} | null;
|
835
|
+
notes: string | null;
|
836
|
+
contactProfile: string | null;
|
837
|
+
socialProfileUrl: string | null;
|
838
838
|
tags?: {
|
839
839
|
id: string;
|
840
840
|
name: string;
|
@@ -933,9 +933,6 @@ export declare const receiveMessageContract: {
|
|
933
933
|
channel: string | null;
|
934
934
|
address: string | null;
|
935
935
|
name: string;
|
936
|
-
notes: string | null;
|
937
|
-
contactProfile: string | null;
|
938
|
-
socialProfileUrl: string | null;
|
939
936
|
company: {
|
940
937
|
id: string;
|
941
938
|
createdAt: Date;
|
@@ -946,6 +943,9 @@ export declare const receiveMessageContract: {
|
|
946
943
|
phone?: string | null | undefined;
|
947
944
|
industry?: string | null | undefined;
|
948
945
|
} | null;
|
946
|
+
notes: string | null;
|
947
|
+
contactProfile: string | null;
|
948
|
+
socialProfileUrl: string | null;
|
949
949
|
tags?: {
|
950
950
|
id: string;
|
951
951
|
name: string;
|
@@ -1695,9 +1695,6 @@ export declare const receiveMessageContract: {
|
|
1695
1695
|
channel: string | null;
|
1696
1696
|
address: string | null;
|
1697
1697
|
name: string;
|
1698
|
-
notes: string | null;
|
1699
|
-
contactProfile: string | null;
|
1700
|
-
socialProfileUrl: string | null;
|
1701
1698
|
company: {
|
1702
1699
|
id: string;
|
1703
1700
|
createdAt: Date;
|
@@ -1708,6 +1705,9 @@ export declare const receiveMessageContract: {
|
|
1708
1705
|
phone?: string | null | undefined;
|
1709
1706
|
industry?: string | null | undefined;
|
1710
1707
|
} | null;
|
1708
|
+
notes: string | null;
|
1709
|
+
contactProfile: string | null;
|
1710
|
+
socialProfileUrl: string | null;
|
1711
1711
|
tags?: {
|
1712
1712
|
id: string;
|
1713
1713
|
name: string;
|
@@ -1961,9 +1961,6 @@ export declare const receiveMessageContract: {
|
|
1961
1961
|
channel: string | null;
|
1962
1962
|
address: string | null;
|
1963
1963
|
name: string;
|
1964
|
-
notes: string | null;
|
1965
|
-
contactProfile: string | null;
|
1966
|
-
socialProfileUrl: string | null;
|
1967
1964
|
company: {
|
1968
1965
|
id: string;
|
1969
1966
|
createdAt: Date;
|
@@ -1974,6 +1971,9 @@ export declare const receiveMessageContract: {
|
|
1974
1971
|
phone?: string | null | undefined;
|
1975
1972
|
industry?: string | null | undefined;
|
1976
1973
|
} | null;
|
1974
|
+
notes: string | null;
|
1975
|
+
contactProfile: string | null;
|
1976
|
+
socialProfileUrl: string | null;
|
1977
1977
|
tags?: {
|
1978
1978
|
id: string;
|
1979
1979
|
name: string;
|
@@ -2206,37 +2206,37 @@ export declare const receiveMessageContract: {
|
|
2206
2206
|
} | undefined;
|
2207
2207
|
}>;
|
2208
2208
|
upload: z.ZodOptional<z.ZodObject<{
|
2209
|
-
|
2210
|
-
|
2211
|
-
|
2212
|
-
|
2213
|
-
|
2214
|
-
fileName: z.ZodString;
|
2215
|
-
fileSize: z.ZodNumber;
|
2216
|
-
fileKey: z.ZodString;
|
2217
|
-
fileUrl: z.ZodNullable<z.ZodString>;
|
2209
|
+
bucketName: z.ZodNullable<z.ZodString>;
|
2210
|
+
fileName: z.ZodNullable<z.ZodString>;
|
2211
|
+
fileSize: z.ZodNullable<z.ZodNumber>;
|
2212
|
+
fileKey: z.ZodNullable<z.ZodString>;
|
2213
|
+
fileUrl: z.ZodOptional<z.ZodString>;
|
2218
2214
|
status: z.ZodOptional<z.ZodString>;
|
2215
|
+
id: z.ZodString;
|
2216
|
+
createdAt: z.ZodString;
|
2217
|
+
updatedAt: z.ZodString;
|
2218
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2219
2219
|
}, "strip", z.ZodTypeAny, {
|
2220
2220
|
id: string;
|
2221
|
-
createdAt:
|
2222
|
-
updatedAt:
|
2223
|
-
deletedAt:
|
2224
|
-
fileName: string;
|
2225
|
-
fileKey: string;
|
2226
|
-
bucketName: string;
|
2227
|
-
fileSize: number;
|
2228
|
-
fileUrl
|
2221
|
+
createdAt: string;
|
2222
|
+
updatedAt: string;
|
2223
|
+
deletedAt: string | null;
|
2224
|
+
fileName: string | null;
|
2225
|
+
fileKey: string | null;
|
2226
|
+
bucketName: string | null;
|
2227
|
+
fileSize: number | null;
|
2228
|
+
fileUrl?: string | undefined;
|
2229
2229
|
status?: string | undefined;
|
2230
2230
|
}, {
|
2231
2231
|
id: string;
|
2232
|
-
createdAt:
|
2233
|
-
updatedAt:
|
2234
|
-
deletedAt:
|
2235
|
-
fileName: string;
|
2236
|
-
fileKey: string;
|
2237
|
-
bucketName: string;
|
2238
|
-
fileSize: number;
|
2239
|
-
fileUrl
|
2232
|
+
createdAt: string;
|
2233
|
+
updatedAt: string;
|
2234
|
+
deletedAt: string | null;
|
2235
|
+
fileName: string | null;
|
2236
|
+
fileKey: string | null;
|
2237
|
+
bucketName: string | null;
|
2238
|
+
fileSize: number | null;
|
2239
|
+
fileUrl?: string | undefined;
|
2240
2240
|
status?: string | undefined;
|
2241
2241
|
}>>;
|
2242
2242
|
actor: z.ZodOptional<z.ZodObject<{
|
@@ -2853,7 +2853,6 @@ export declare const receiveMessageContract: {
|
|
2853
2853
|
}>>;
|
2854
2854
|
}, "strip", z.ZodTypeAny, {
|
2855
2855
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
2856
|
-
message: string;
|
2857
2856
|
direction: "incoming" | "outgoing" | "system";
|
2858
2857
|
platformId: string;
|
2859
2858
|
room: {
|
@@ -2879,9 +2878,6 @@ export declare const receiveMessageContract: {
|
|
2879
2878
|
channel: string | null;
|
2880
2879
|
address: string | null;
|
2881
2880
|
name: string;
|
2882
|
-
notes: string | null;
|
2883
|
-
contactProfile: string | null;
|
2884
|
-
socialProfileUrl: string | null;
|
2885
2881
|
company: {
|
2886
2882
|
id: string;
|
2887
2883
|
createdAt: Date;
|
@@ -2892,6 +2888,9 @@ export declare const receiveMessageContract: {
|
|
2892
2888
|
phone?: string | null | undefined;
|
2893
2889
|
industry?: string | null | undefined;
|
2894
2890
|
} | null;
|
2891
|
+
notes: string | null;
|
2892
|
+
contactProfile: string | null;
|
2893
|
+
socialProfileUrl: string | null;
|
2895
2894
|
tags?: {
|
2896
2895
|
id: string;
|
2897
2896
|
name: string;
|
@@ -3125,6 +3124,7 @@ export declare const receiveMessageContract: {
|
|
3125
3124
|
};
|
3126
3125
|
platformMessageId: string;
|
3127
3126
|
locale: "" | "th" | "mm" | "en" | null;
|
3127
|
+
message?: string | undefined;
|
3128
3128
|
metadata?: any;
|
3129
3129
|
replyPlatformMessageId?: string | undefined;
|
3130
3130
|
template?: any;
|
@@ -3133,14 +3133,14 @@ export declare const receiveMessageContract: {
|
|
3133
3133
|
imageSetId?: string | undefined;
|
3134
3134
|
upload?: {
|
3135
3135
|
id: string;
|
3136
|
-
createdAt:
|
3137
|
-
updatedAt:
|
3138
|
-
deletedAt:
|
3139
|
-
fileName: string;
|
3140
|
-
fileKey: string;
|
3141
|
-
bucketName: string;
|
3142
|
-
fileSize: number;
|
3143
|
-
fileUrl
|
3136
|
+
createdAt: string;
|
3137
|
+
updatedAt: string;
|
3138
|
+
deletedAt: string | null;
|
3139
|
+
fileName: string | null;
|
3140
|
+
fileKey: string | null;
|
3141
|
+
bucketName: string | null;
|
3142
|
+
fileSize: number | null;
|
3143
|
+
fileUrl?: string | undefined;
|
3144
3144
|
status?: string | undefined;
|
3145
3145
|
} | undefined;
|
3146
3146
|
actor?: {
|
@@ -3277,7 +3277,6 @@ export declare const receiveMessageContract: {
|
|
3277
3277
|
} | undefined;
|
3278
3278
|
}, {
|
3279
3279
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
3280
|
-
message: string;
|
3281
3280
|
direction: "incoming" | "outgoing" | "system";
|
3282
3281
|
platformId: string;
|
3283
3282
|
room: {
|
@@ -3303,9 +3302,6 @@ export declare const receiveMessageContract: {
|
|
3303
3302
|
channel: string | null;
|
3304
3303
|
address: string | null;
|
3305
3304
|
name: string;
|
3306
|
-
notes: string | null;
|
3307
|
-
contactProfile: string | null;
|
3308
|
-
socialProfileUrl: string | null;
|
3309
3305
|
company: {
|
3310
3306
|
id: string;
|
3311
3307
|
createdAt: Date;
|
@@ -3316,6 +3312,9 @@ export declare const receiveMessageContract: {
|
|
3316
3312
|
phone?: string | null | undefined;
|
3317
3313
|
industry?: string | null | undefined;
|
3318
3314
|
} | null;
|
3315
|
+
notes: string | null;
|
3316
|
+
contactProfile: string | null;
|
3317
|
+
socialProfileUrl: string | null;
|
3319
3318
|
tags?: {
|
3320
3319
|
id: string;
|
3321
3320
|
name: string;
|
@@ -3549,6 +3548,7 @@ export declare const receiveMessageContract: {
|
|
3549
3548
|
};
|
3550
3549
|
platformMessageId: string;
|
3551
3550
|
locale: "" | "th" | "mm" | "en" | null;
|
3551
|
+
message?: string | undefined;
|
3552
3552
|
metadata?: any;
|
3553
3553
|
replyPlatformMessageId?: string | undefined;
|
3554
3554
|
template?: any;
|
@@ -3557,14 +3557,14 @@ export declare const receiveMessageContract: {
|
|
3557
3557
|
imageSetId?: string | undefined;
|
3558
3558
|
upload?: {
|
3559
3559
|
id: string;
|
3560
|
-
createdAt:
|
3561
|
-
updatedAt:
|
3562
|
-
deletedAt:
|
3563
|
-
fileName: string;
|
3564
|
-
fileKey: string;
|
3565
|
-
bucketName: string;
|
3566
|
-
fileSize: number;
|
3567
|
-
fileUrl
|
3560
|
+
createdAt: string;
|
3561
|
+
updatedAt: string;
|
3562
|
+
deletedAt: string | null;
|
3563
|
+
fileName: string | null;
|
3564
|
+
fileKey: string | null;
|
3565
|
+
bucketName: string | null;
|
3566
|
+
fileSize: number | null;
|
3567
|
+
fileUrl?: string | undefined;
|
3568
3568
|
status?: string | undefined;
|
3569
3569
|
} | undefined;
|
3570
3570
|
actor?: {
|
@@ -3703,7 +3703,6 @@ export declare const receiveMessageContract: {
|
|
3703
3703
|
}, "strip", z.ZodTypeAny, {
|
3704
3704
|
message: {
|
3705
3705
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
3706
|
-
message: string;
|
3707
3706
|
direction: "incoming" | "outgoing" | "system";
|
3708
3707
|
platformId: string;
|
3709
3708
|
room: {
|
@@ -3729,9 +3728,6 @@ export declare const receiveMessageContract: {
|
|
3729
3728
|
channel: string | null;
|
3730
3729
|
address: string | null;
|
3731
3730
|
name: string;
|
3732
|
-
notes: string | null;
|
3733
|
-
contactProfile: string | null;
|
3734
|
-
socialProfileUrl: string | null;
|
3735
3731
|
company: {
|
3736
3732
|
id: string;
|
3737
3733
|
createdAt: Date;
|
@@ -3742,6 +3738,9 @@ export declare const receiveMessageContract: {
|
|
3742
3738
|
phone?: string | null | undefined;
|
3743
3739
|
industry?: string | null | undefined;
|
3744
3740
|
} | null;
|
3741
|
+
notes: string | null;
|
3742
|
+
contactProfile: string | null;
|
3743
|
+
socialProfileUrl: string | null;
|
3745
3744
|
tags?: {
|
3746
3745
|
id: string;
|
3747
3746
|
name: string;
|
@@ -3975,6 +3974,7 @@ export declare const receiveMessageContract: {
|
|
3975
3974
|
};
|
3976
3975
|
platformMessageId: string;
|
3977
3976
|
locale: "" | "th" | "mm" | "en" | null;
|
3977
|
+
message?: string | undefined;
|
3978
3978
|
metadata?: any;
|
3979
3979
|
replyPlatformMessageId?: string | undefined;
|
3980
3980
|
template?: any;
|
@@ -3983,14 +3983,14 @@ export declare const receiveMessageContract: {
|
|
3983
3983
|
imageSetId?: string | undefined;
|
3984
3984
|
upload?: {
|
3985
3985
|
id: string;
|
3986
|
-
createdAt:
|
3987
|
-
updatedAt:
|
3988
|
-
deletedAt:
|
3989
|
-
fileName: string;
|
3990
|
-
fileKey: string;
|
3991
|
-
bucketName: string;
|
3992
|
-
fileSize: number;
|
3993
|
-
fileUrl
|
3986
|
+
createdAt: string;
|
3987
|
+
updatedAt: string;
|
3988
|
+
deletedAt: string | null;
|
3989
|
+
fileName: string | null;
|
3990
|
+
fileKey: string | null;
|
3991
|
+
bucketName: string | null;
|
3992
|
+
fileSize: number | null;
|
3993
|
+
fileUrl?: string | undefined;
|
3994
3994
|
status?: string | undefined;
|
3995
3995
|
} | undefined;
|
3996
3996
|
actor?: {
|
@@ -4129,7 +4129,6 @@ export declare const receiveMessageContract: {
|
|
4129
4129
|
}, {
|
4130
4130
|
message: {
|
4131
4131
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
|
4132
|
-
message: string;
|
4133
4132
|
direction: "incoming" | "outgoing" | "system";
|
4134
4133
|
platformId: string;
|
4135
4134
|
room: {
|
@@ -4155,9 +4154,6 @@ export declare const receiveMessageContract: {
|
|
4155
4154
|
channel: string | null;
|
4156
4155
|
address: string | null;
|
4157
4156
|
name: string;
|
4158
|
-
notes: string | null;
|
4159
|
-
contactProfile: string | null;
|
4160
|
-
socialProfileUrl: string | null;
|
4161
4157
|
company: {
|
4162
4158
|
id: string;
|
4163
4159
|
createdAt: Date;
|
@@ -4168,6 +4164,9 @@ export declare const receiveMessageContract: {
|
|
4168
4164
|
phone?: string | null | undefined;
|
4169
4165
|
industry?: string | null | undefined;
|
4170
4166
|
} | null;
|
4167
|
+
notes: string | null;
|
4168
|
+
contactProfile: string | null;
|
4169
|
+
socialProfileUrl: string | null;
|
4171
4170
|
tags?: {
|
4172
4171
|
id: string;
|
4173
4172
|
name: string;
|
@@ -4401,6 +4400,7 @@ export declare const receiveMessageContract: {
|
|
4401
4400
|
};
|
4402
4401
|
platformMessageId: string;
|
4403
4402
|
locale: "" | "th" | "mm" | "en" | null;
|
4403
|
+
message?: string | undefined;
|
4404
4404
|
metadata?: any;
|
4405
4405
|
replyPlatformMessageId?: string | undefined;
|
4406
4406
|
template?: any;
|
@@ -4409,14 +4409,14 @@ export declare const receiveMessageContract: {
|
|
4409
4409
|
imageSetId?: string | undefined;
|
4410
4410
|
upload?: {
|
4411
4411
|
id: string;
|
4412
|
-
createdAt:
|
4413
|
-
updatedAt:
|
4414
|
-
deletedAt:
|
4415
|
-
fileName: string;
|
4416
|
-
fileKey: string;
|
4417
|
-
bucketName: string;
|
4418
|
-
fileSize: number;
|
4419
|
-
fileUrl
|
4412
|
+
createdAt: string;
|
4413
|
+
updatedAt: string;
|
4414
|
+
deletedAt: string | null;
|
4415
|
+
fileName: string | null;
|
4416
|
+
fileKey: string | null;
|
4417
|
+
bucketName: string | null;
|
4418
|
+
fileSize: number | null;
|
4419
|
+
fileUrl?: string | undefined;
|
4420
4420
|
status?: string | undefined;
|
4421
4421
|
} | undefined;
|
4422
4422
|
actor?: {
|
@@ -5352,16 +5352,6 @@ export declare const mainChatContract: {
|
|
5352
5352
|
};
|
5353
5353
|
}[];
|
5354
5354
|
}[];
|
5355
|
-
notes: string | null;
|
5356
|
-
contactProfile: string | null;
|
5357
|
-
socialProfileUrl: string | null;
|
5358
|
-
tags: {
|
5359
|
-
id: string;
|
5360
|
-
name: string;
|
5361
|
-
createdAt: Date;
|
5362
|
-
updatedAt: Date;
|
5363
|
-
deletedAt: Date | null;
|
5364
|
-
}[];
|
5365
5355
|
company: {
|
5366
5356
|
id: string;
|
5367
5357
|
createdAt: Date;
|
@@ -5372,6 +5362,16 @@ export declare const mainChatContract: {
|
|
5372
5362
|
phone?: string | null | undefined;
|
5373
5363
|
industry?: string | null | undefined;
|
5374
5364
|
} | null;
|
5365
|
+
notes: string | null;
|
5366
|
+
contactProfile: string | null;
|
5367
|
+
socialProfileUrl: string | null;
|
5368
|
+
tags: {
|
5369
|
+
id: string;
|
5370
|
+
name: string;
|
5371
|
+
createdAt: Date;
|
5372
|
+
updatedAt: Date;
|
5373
|
+
deletedAt: Date | null;
|
5374
|
+
}[];
|
5375
5375
|
contactEmails: {
|
5376
5376
|
id: string;
|
5377
5377
|
isPrimary: boolean;
|
@@ -5455,16 +5455,6 @@ export declare const mainChatContract: {
|
|
5455
5455
|
};
|
5456
5456
|
}[];
|
5457
5457
|
}[];
|
5458
|
-
notes: string | null;
|
5459
|
-
contactProfile: string | null;
|
5460
|
-
socialProfileUrl: string | null;
|
5461
|
-
tags: {
|
5462
|
-
id: string;
|
5463
|
-
name: string;
|
5464
|
-
createdAt: Date;
|
5465
|
-
updatedAt: Date;
|
5466
|
-
deletedAt: Date | null;
|
5467
|
-
}[];
|
5468
5458
|
company: {
|
5469
5459
|
id: string;
|
5470
5460
|
createdAt: Date;
|
@@ -5475,6 +5465,16 @@ export declare const mainChatContract: {
|
|
5475
5465
|
phone?: string | null | undefined;
|
5476
5466
|
industry?: string | null | undefined;
|
5477
5467
|
} | null;
|
5468
|
+
notes: string | null;
|
5469
|
+
contactProfile: string | null;
|
5470
|
+
socialProfileUrl: string | null;
|
5471
|
+
tags: {
|
5472
|
+
id: string;
|
5473
|
+
name: string;
|
5474
|
+
createdAt: Date;
|
5475
|
+
updatedAt: Date;
|
5476
|
+
deletedAt: Date | null;
|
5477
|
+
}[];
|
5478
5478
|
contactEmails: {
|
5479
5479
|
id: string;
|
5480
5480
|
isPrimary: boolean;
|
@@ -5572,16 +5572,6 @@ export declare const mainChatContract: {
|
|
5572
5572
|
};
|
5573
5573
|
}[];
|
5574
5574
|
}[];
|
5575
|
-
notes: string | null;
|
5576
|
-
contactProfile: string | null;
|
5577
|
-
socialProfileUrl: string | null;
|
5578
|
-
tags: {
|
5579
|
-
id: string;
|
5580
|
-
name: string;
|
5581
|
-
createdAt: Date;
|
5582
|
-
updatedAt: Date;
|
5583
|
-
deletedAt: Date | null;
|
5584
|
-
}[];
|
5585
5575
|
company: {
|
5586
5576
|
id: string;
|
5587
5577
|
createdAt: Date;
|
@@ -5592,6 +5582,16 @@ export declare const mainChatContract: {
|
|
5592
5582
|
phone?: string | null | undefined;
|
5593
5583
|
industry?: string | null | undefined;
|
5594
5584
|
} | null;
|
5585
|
+
notes: string | null;
|
5586
|
+
contactProfile: string | null;
|
5587
|
+
socialProfileUrl: string | null;
|
5588
|
+
tags: {
|
5589
|
+
id: string;
|
5590
|
+
name: string;
|
5591
|
+
createdAt: Date;
|
5592
|
+
updatedAt: Date;
|
5593
|
+
deletedAt: Date | null;
|
5594
|
+
}[];
|
5595
5595
|
contactEmails: {
|
5596
5596
|
id: string;
|
5597
5597
|
isPrimary: boolean;
|
@@ -5690,16 +5690,6 @@ export declare const mainChatContract: {
|
|
5690
5690
|
};
|
5691
5691
|
}[];
|
5692
5692
|
}[];
|
5693
|
-
notes: string | null;
|
5694
|
-
contactProfile: string | null;
|
5695
|
-
socialProfileUrl: string | null;
|
5696
|
-
tags: {
|
5697
|
-
id: string;
|
5698
|
-
name: string;
|
5699
|
-
createdAt: Date;
|
5700
|
-
updatedAt: Date;
|
5701
|
-
deletedAt: Date | null;
|
5702
|
-
}[];
|
5703
5693
|
company: {
|
5704
5694
|
id: string;
|
5705
5695
|
createdAt: Date;
|
@@ -5710,6 +5700,16 @@ export declare const mainChatContract: {
|
|
5710
5700
|
phone?: string | null | undefined;
|
5711
5701
|
industry?: string | null | undefined;
|
5712
5702
|
} | null;
|
5703
|
+
notes: string | null;
|
5704
|
+
contactProfile: string | null;
|
5705
|
+
socialProfileUrl: string | null;
|
5706
|
+
tags: {
|
5707
|
+
id: string;
|
5708
|
+
name: string;
|
5709
|
+
createdAt: Date;
|
5710
|
+
updatedAt: Date;
|
5711
|
+
deletedAt: Date | null;
|
5712
|
+
}[];
|
5713
5713
|
contactEmails: {
|
5714
5714
|
id: string;
|
5715
5715
|
isPrimary: boolean;
|
@@ -6781,16 +6781,6 @@ export declare const mainChatContract: {
|
|
6781
6781
|
};
|
6782
6782
|
}[];
|
6783
6783
|
}[];
|
6784
|
-
notes: string | null;
|
6785
|
-
contactProfile: string | null;
|
6786
|
-
socialProfileUrl: string | null;
|
6787
|
-
tags: {
|
6788
|
-
id: string;
|
6789
|
-
name: string;
|
6790
|
-
createdAt: Date;
|
6791
|
-
updatedAt: Date;
|
6792
|
-
deletedAt: Date | null;
|
6793
|
-
}[];
|
6794
6784
|
company: {
|
6795
6785
|
id: string;
|
6796
6786
|
createdAt: Date;
|
@@ -6801,6 +6791,16 @@ export declare const mainChatContract: {
|
|
6801
6791
|
phone?: string | null | undefined;
|
6802
6792
|
industry?: string | null | undefined;
|
6803
6793
|
} | null;
|
6794
|
+
notes: string | null;
|
6795
|
+
contactProfile: string | null;
|
6796
|
+
socialProfileUrl: string | null;
|
6797
|
+
tags: {
|
6798
|
+
id: string;
|
6799
|
+
name: string;
|
6800
|
+
createdAt: Date;
|
6801
|
+
updatedAt: Date;
|
6802
|
+
deletedAt: Date | null;
|
6803
|
+
}[];
|
6804
6804
|
contactEmails: {
|
6805
6805
|
id: string;
|
6806
6806
|
isPrimary: boolean;
|
@@ -7100,16 +7100,6 @@ export declare const mainChatContract: {
|
|
7100
7100
|
};
|
7101
7101
|
}[];
|
7102
7102
|
}[];
|
7103
|
-
notes: string | null;
|
7104
|
-
contactProfile: string | null;
|
7105
|
-
socialProfileUrl: string | null;
|
7106
|
-
tags: {
|
7107
|
-
id: string;
|
7108
|
-
name: string;
|
7109
|
-
createdAt: Date;
|
7110
|
-
updatedAt: Date;
|
7111
|
-
deletedAt: Date | null;
|
7112
|
-
}[];
|
7113
7103
|
company: {
|
7114
7104
|
id: string;
|
7115
7105
|
createdAt: Date;
|
@@ -7120,6 +7110,16 @@ export declare const mainChatContract: {
|
|
7120
7110
|
phone?: string | null | undefined;
|
7121
7111
|
industry?: string | null | undefined;
|
7122
7112
|
} | null;
|
7113
|
+
notes: string | null;
|
7114
|
+
contactProfile: string | null;
|
7115
|
+
socialProfileUrl: string | null;
|
7116
|
+
tags: {
|
7117
|
+
id: string;
|
7118
|
+
name: string;
|
7119
|
+
createdAt: Date;
|
7120
|
+
updatedAt: Date;
|
7121
|
+
deletedAt: Date | null;
|
7122
|
+
}[];
|
7123
7123
|
contactEmails: {
|
7124
7124
|
id: string;
|
7125
7125
|
isPrimary: boolean;
|
@@ -7431,16 +7431,6 @@ export declare const mainChatContract: {
|
|
7431
7431
|
};
|
7432
7432
|
}[];
|
7433
7433
|
}[];
|
7434
|
-
notes: string | null;
|
7435
|
-
contactProfile: string | null;
|
7436
|
-
socialProfileUrl: string | null;
|
7437
|
-
tags: {
|
7438
|
-
id: string;
|
7439
|
-
name: string;
|
7440
|
-
createdAt: Date;
|
7441
|
-
updatedAt: Date;
|
7442
|
-
deletedAt: Date | null;
|
7443
|
-
}[];
|
7444
7434
|
company: {
|
7445
7435
|
id: string;
|
7446
7436
|
createdAt: Date;
|
@@ -7451,6 +7441,16 @@ export declare const mainChatContract: {
|
|
7451
7441
|
phone?: string | null | undefined;
|
7452
7442
|
industry?: string | null | undefined;
|
7453
7443
|
} | null;
|
7444
|
+
notes: string | null;
|
7445
|
+
contactProfile: string | null;
|
7446
|
+
socialProfileUrl: string | null;
|
7447
|
+
tags: {
|
7448
|
+
id: string;
|
7449
|
+
name: string;
|
7450
|
+
createdAt: Date;
|
7451
|
+
updatedAt: Date;
|
7452
|
+
deletedAt: Date | null;
|
7453
|
+
}[];
|
7454
7454
|
contactEmails: {
|
7455
7455
|
id: string;
|
7456
7456
|
isPrimary: boolean;
|
@@ -7760,16 +7760,6 @@ export declare const mainChatContract: {
|
|
7760
7760
|
};
|
7761
7761
|
}[];
|
7762
7762
|
}[];
|
7763
|
-
notes: string | null;
|
7764
|
-
contactProfile: string | null;
|
7765
|
-
socialProfileUrl: string | null;
|
7766
|
-
tags: {
|
7767
|
-
id: string;
|
7768
|
-
name: string;
|
7769
|
-
createdAt: Date;
|
7770
|
-
updatedAt: Date;
|
7771
|
-
deletedAt: Date | null;
|
7772
|
-
}[];
|
7773
7763
|
company: {
|
7774
7764
|
id: string;
|
7775
7765
|
createdAt: Date;
|
@@ -7780,6 +7770,16 @@ export declare const mainChatContract: {
|
|
7780
7770
|
phone?: string | null | undefined;
|
7781
7771
|
industry?: string | null | undefined;
|
7782
7772
|
} | null;
|
7773
|
+
notes: string | null;
|
7774
|
+
contactProfile: string | null;
|
7775
|
+
socialProfileUrl: string | null;
|
7776
|
+
tags: {
|
7777
|
+
id: string;
|
7778
|
+
name: string;
|
7779
|
+
createdAt: Date;
|
7780
|
+
updatedAt: Date;
|
7781
|
+
deletedAt: Date | null;
|
7782
|
+
}[];
|
7783
7783
|
contactEmails: {
|
7784
7784
|
id: string;
|
7785
7785
|
isPrimary: boolean;
|
@@ -8612,16 +8612,6 @@ export declare const mainChatContract: {
|
|
8612
8612
|
};
|
8613
8613
|
}[];
|
8614
8614
|
}[];
|
8615
|
-
notes: string | null;
|
8616
|
-
contactProfile: string | null;
|
8617
|
-
socialProfileUrl: string | null;
|
8618
|
-
tags: {
|
8619
|
-
id: string;
|
8620
|
-
name: string;
|
8621
|
-
createdAt: Date;
|
8622
|
-
updatedAt: Date;
|
8623
|
-
deletedAt: Date | null;
|
8624
|
-
}[];
|
8625
8615
|
company: {
|
8626
8616
|
id: string;
|
8627
8617
|
createdAt: Date;
|
@@ -8632,6 +8622,16 @@ export declare const mainChatContract: {
|
|
8632
8622
|
phone?: string | null | undefined;
|
8633
8623
|
industry?: string | null | undefined;
|
8634
8624
|
} | null;
|
8625
|
+
notes: string | null;
|
8626
|
+
contactProfile: string | null;
|
8627
|
+
socialProfileUrl: string | null;
|
8628
|
+
tags: {
|
8629
|
+
id: string;
|
8630
|
+
name: string;
|
8631
|
+
createdAt: Date;
|
8632
|
+
updatedAt: Date;
|
8633
|
+
deletedAt: Date | null;
|
8634
|
+
}[];
|
8635
8635
|
contactEmails: {
|
8636
8636
|
id: string;
|
8637
8637
|
isPrimary: boolean;
|
@@ -8715,16 +8715,6 @@ export declare const mainChatContract: {
|
|
8715
8715
|
};
|
8716
8716
|
}[];
|
8717
8717
|
}[];
|
8718
|
-
notes: string | null;
|
8719
|
-
contactProfile: string | null;
|
8720
|
-
socialProfileUrl: string | null;
|
8721
|
-
tags: {
|
8722
|
-
id: string;
|
8723
|
-
name: string;
|
8724
|
-
createdAt: Date;
|
8725
|
-
updatedAt: Date;
|
8726
|
-
deletedAt: Date | null;
|
8727
|
-
}[];
|
8728
8718
|
company: {
|
8729
8719
|
id: string;
|
8730
8720
|
createdAt: Date;
|
@@ -8735,6 +8725,16 @@ export declare const mainChatContract: {
|
|
8735
8725
|
phone?: string | null | undefined;
|
8736
8726
|
industry?: string | null | undefined;
|
8737
8727
|
} | null;
|
8728
|
+
notes: string | null;
|
8729
|
+
contactProfile: string | null;
|
8730
|
+
socialProfileUrl: string | null;
|
8731
|
+
tags: {
|
8732
|
+
id: string;
|
8733
|
+
name: string;
|
8734
|
+
createdAt: Date;
|
8735
|
+
updatedAt: Date;
|
8736
|
+
deletedAt: Date | null;
|
8737
|
+
}[];
|
8738
8738
|
contactEmails: {
|
8739
8739
|
id: string;
|
8740
8740
|
isPrimary: boolean;
|
@@ -8820,16 +8820,6 @@ export declare const mainChatContract: {
|
|
8820
8820
|
};
|
8821
8821
|
}[];
|
8822
8822
|
}[];
|
8823
|
-
notes: string | null;
|
8824
|
-
contactProfile: string | null;
|
8825
|
-
socialProfileUrl: string | null;
|
8826
|
-
tags: {
|
8827
|
-
id: string;
|
8828
|
-
name: string;
|
8829
|
-
createdAt: Date;
|
8830
|
-
updatedAt: Date;
|
8831
|
-
deletedAt: Date | null;
|
8832
|
-
}[];
|
8833
8823
|
company: {
|
8834
8824
|
id: string;
|
8835
8825
|
createdAt: Date;
|
@@ -8840,6 +8830,16 @@ export declare const mainChatContract: {
|
|
8840
8830
|
phone?: string | null | undefined;
|
8841
8831
|
industry?: string | null | undefined;
|
8842
8832
|
} | null;
|
8833
|
+
notes: string | null;
|
8834
|
+
contactProfile: string | null;
|
8835
|
+
socialProfileUrl: string | null;
|
8836
|
+
tags: {
|
8837
|
+
id: string;
|
8838
|
+
name: string;
|
8839
|
+
createdAt: Date;
|
8840
|
+
updatedAt: Date;
|
8841
|
+
deletedAt: Date | null;
|
8842
|
+
}[];
|
8843
8843
|
contactEmails: {
|
8844
8844
|
id: string;
|
8845
8845
|
isPrimary: boolean;
|
@@ -8926,16 +8926,6 @@ export declare const mainChatContract: {
|
|
8926
8926
|
};
|
8927
8927
|
}[];
|
8928
8928
|
}[];
|
8929
|
-
notes: string | null;
|
8930
|
-
contactProfile: string | null;
|
8931
|
-
socialProfileUrl: string | null;
|
8932
|
-
tags: {
|
8933
|
-
id: string;
|
8934
|
-
name: string;
|
8935
|
-
createdAt: Date;
|
8936
|
-
updatedAt: Date;
|
8937
|
-
deletedAt: Date | null;
|
8938
|
-
}[];
|
8939
8929
|
company: {
|
8940
8930
|
id: string;
|
8941
8931
|
createdAt: Date;
|
@@ -8946,6 +8936,16 @@ export declare const mainChatContract: {
|
|
8946
8936
|
phone?: string | null | undefined;
|
8947
8937
|
industry?: string | null | undefined;
|
8948
8938
|
} | null;
|
8939
|
+
notes: string | null;
|
8940
|
+
contactProfile: string | null;
|
8941
|
+
socialProfileUrl: string | null;
|
8942
|
+
tags: {
|
8943
|
+
id: string;
|
8944
|
+
name: string;
|
8945
|
+
createdAt: Date;
|
8946
|
+
updatedAt: Date;
|
8947
|
+
deletedAt: Date | null;
|
8948
|
+
}[];
|
8949
8949
|
contactEmails: {
|
8950
8950
|
id: string;
|
8951
8951
|
isPrimary: boolean;
|
@@ -9688,16 +9688,6 @@ export declare const mainChatContract: {
|
|
9688
9688
|
};
|
9689
9689
|
}[];
|
9690
9690
|
}[];
|
9691
|
-
notes: string | null;
|
9692
|
-
contactProfile: string | null;
|
9693
|
-
socialProfileUrl: string | null;
|
9694
|
-
tags: {
|
9695
|
-
id: string;
|
9696
|
-
name: string;
|
9697
|
-
createdAt: Date;
|
9698
|
-
updatedAt: Date;
|
9699
|
-
deletedAt: Date | null;
|
9700
|
-
}[];
|
9701
9691
|
company: {
|
9702
9692
|
id: string;
|
9703
9693
|
createdAt: Date;
|
@@ -9708,6 +9698,16 @@ export declare const mainChatContract: {
|
|
9708
9698
|
phone?: string | null | undefined;
|
9709
9699
|
industry?: string | null | undefined;
|
9710
9700
|
} | null;
|
9701
|
+
notes: string | null;
|
9702
|
+
contactProfile: string | null;
|
9703
|
+
socialProfileUrl: string | null;
|
9704
|
+
tags: {
|
9705
|
+
id: string;
|
9706
|
+
name: string;
|
9707
|
+
createdAt: Date;
|
9708
|
+
updatedAt: Date;
|
9709
|
+
deletedAt: Date | null;
|
9710
|
+
}[];
|
9711
9711
|
contactEmails: {
|
9712
9712
|
id: string;
|
9713
9713
|
isPrimary: boolean;
|
@@ -9791,16 +9791,6 @@ export declare const mainChatContract: {
|
|
9791
9791
|
};
|
9792
9792
|
}[];
|
9793
9793
|
}[];
|
9794
|
-
notes: string | null;
|
9795
|
-
contactProfile: string | null;
|
9796
|
-
socialProfileUrl: string | null;
|
9797
|
-
tags: {
|
9798
|
-
id: string;
|
9799
|
-
name: string;
|
9800
|
-
createdAt: Date;
|
9801
|
-
updatedAt: Date;
|
9802
|
-
deletedAt: Date | null;
|
9803
|
-
}[];
|
9804
9794
|
company: {
|
9805
9795
|
id: string;
|
9806
9796
|
createdAt: Date;
|
@@ -9811,6 +9801,16 @@ export declare const mainChatContract: {
|
|
9811
9801
|
phone?: string | null | undefined;
|
9812
9802
|
industry?: string | null | undefined;
|
9813
9803
|
} | null;
|
9804
|
+
notes: string | null;
|
9805
|
+
contactProfile: string | null;
|
9806
|
+
socialProfileUrl: string | null;
|
9807
|
+
tags: {
|
9808
|
+
id: string;
|
9809
|
+
name: string;
|
9810
|
+
createdAt: Date;
|
9811
|
+
updatedAt: Date;
|
9812
|
+
deletedAt: Date | null;
|
9813
|
+
}[];
|
9814
9814
|
contactEmails: {
|
9815
9815
|
id: string;
|
9816
9816
|
isPrimary: boolean;
|
@@ -9908,16 +9908,6 @@ export declare const mainChatContract: {
|
|
9908
9908
|
};
|
9909
9909
|
}[];
|
9910
9910
|
}[];
|
9911
|
-
notes: string | null;
|
9912
|
-
contactProfile: string | null;
|
9913
|
-
socialProfileUrl: string | null;
|
9914
|
-
tags: {
|
9915
|
-
id: string;
|
9916
|
-
name: string;
|
9917
|
-
createdAt: Date;
|
9918
|
-
updatedAt: Date;
|
9919
|
-
deletedAt: Date | null;
|
9920
|
-
}[];
|
9921
9911
|
company: {
|
9922
9912
|
id: string;
|
9923
9913
|
createdAt: Date;
|
@@ -9928,6 +9918,16 @@ export declare const mainChatContract: {
|
|
9928
9918
|
phone?: string | null | undefined;
|
9929
9919
|
industry?: string | null | undefined;
|
9930
9920
|
} | null;
|
9921
|
+
notes: string | null;
|
9922
|
+
contactProfile: string | null;
|
9923
|
+
socialProfileUrl: string | null;
|
9924
|
+
tags: {
|
9925
|
+
id: string;
|
9926
|
+
name: string;
|
9927
|
+
createdAt: Date;
|
9928
|
+
updatedAt: Date;
|
9929
|
+
deletedAt: Date | null;
|
9930
|
+
}[];
|
9931
9931
|
contactEmails: {
|
9932
9932
|
id: string;
|
9933
9933
|
isPrimary: boolean;
|
@@ -10026,16 +10026,6 @@ export declare const mainChatContract: {
|
|
10026
10026
|
};
|
10027
10027
|
}[];
|
10028
10028
|
}[];
|
10029
|
-
notes: string | null;
|
10030
|
-
contactProfile: string | null;
|
10031
|
-
socialProfileUrl: string | null;
|
10032
|
-
tags: {
|
10033
|
-
id: string;
|
10034
|
-
name: string;
|
10035
|
-
createdAt: Date;
|
10036
|
-
updatedAt: Date;
|
10037
|
-
deletedAt: Date | null;
|
10038
|
-
}[];
|
10039
10029
|
company: {
|
10040
10030
|
id: string;
|
10041
10031
|
createdAt: Date;
|
@@ -10046,6 +10036,16 @@ export declare const mainChatContract: {
|
|
10046
10036
|
phone?: string | null | undefined;
|
10047
10037
|
industry?: string | null | undefined;
|
10048
10038
|
} | null;
|
10039
|
+
notes: string | null;
|
10040
|
+
contactProfile: string | null;
|
10041
|
+
socialProfileUrl: string | null;
|
10042
|
+
tags: {
|
10043
|
+
id: string;
|
10044
|
+
name: string;
|
10045
|
+
createdAt: Date;
|
10046
|
+
updatedAt: Date;
|
10047
|
+
deletedAt: Date | null;
|
10048
|
+
}[];
|
10049
10049
|
contactEmails: {
|
10050
10050
|
id: string;
|
10051
10051
|
isPrimary: boolean;
|
@@ -11117,16 +11117,6 @@ export declare const mainChatContract: {
|
|
11117
11117
|
};
|
11118
11118
|
}[];
|
11119
11119
|
}[];
|
11120
|
-
notes: string | null;
|
11121
|
-
contactProfile: string | null;
|
11122
|
-
socialProfileUrl: string | null;
|
11123
|
-
tags: {
|
11124
|
-
id: string;
|
11125
|
-
name: string;
|
11126
|
-
createdAt: Date;
|
11127
|
-
updatedAt: Date;
|
11128
|
-
deletedAt: Date | null;
|
11129
|
-
}[];
|
11130
11120
|
company: {
|
11131
11121
|
id: string;
|
11132
11122
|
createdAt: Date;
|
@@ -11137,6 +11127,16 @@ export declare const mainChatContract: {
|
|
11137
11127
|
phone?: string | null | undefined;
|
11138
11128
|
industry?: string | null | undefined;
|
11139
11129
|
} | null;
|
11130
|
+
notes: string | null;
|
11131
|
+
contactProfile: string | null;
|
11132
|
+
socialProfileUrl: string | null;
|
11133
|
+
tags: {
|
11134
|
+
id: string;
|
11135
|
+
name: string;
|
11136
|
+
createdAt: Date;
|
11137
|
+
updatedAt: Date;
|
11138
|
+
deletedAt: Date | null;
|
11139
|
+
}[];
|
11140
11140
|
contactEmails: {
|
11141
11141
|
id: string;
|
11142
11142
|
isPrimary: boolean;
|
@@ -11436,16 +11436,6 @@ export declare const mainChatContract: {
|
|
11436
11436
|
};
|
11437
11437
|
}[];
|
11438
11438
|
}[];
|
11439
|
-
notes: string | null;
|
11440
|
-
contactProfile: string | null;
|
11441
|
-
socialProfileUrl: string | null;
|
11442
|
-
tags: {
|
11443
|
-
id: string;
|
11444
|
-
name: string;
|
11445
|
-
createdAt: Date;
|
11446
|
-
updatedAt: Date;
|
11447
|
-
deletedAt: Date | null;
|
11448
|
-
}[];
|
11449
11439
|
company: {
|
11450
11440
|
id: string;
|
11451
11441
|
createdAt: Date;
|
@@ -11456,6 +11446,16 @@ export declare const mainChatContract: {
|
|
11456
11446
|
phone?: string | null | undefined;
|
11457
11447
|
industry?: string | null | undefined;
|
11458
11448
|
} | null;
|
11449
|
+
notes: string | null;
|
11450
|
+
contactProfile: string | null;
|
11451
|
+
socialProfileUrl: string | null;
|
11452
|
+
tags: {
|
11453
|
+
id: string;
|
11454
|
+
name: string;
|
11455
|
+
createdAt: Date;
|
11456
|
+
updatedAt: Date;
|
11457
|
+
deletedAt: Date | null;
|
11458
|
+
}[];
|
11459
11459
|
contactEmails: {
|
11460
11460
|
id: string;
|
11461
11461
|
isPrimary: boolean;
|
@@ -11757,16 +11757,6 @@ export declare const mainChatContract: {
|
|
11757
11757
|
};
|
11758
11758
|
}[];
|
11759
11759
|
}[];
|
11760
|
-
notes: string | null;
|
11761
|
-
contactProfile: string | null;
|
11762
|
-
socialProfileUrl: string | null;
|
11763
|
-
tags: {
|
11764
|
-
id: string;
|
11765
|
-
name: string;
|
11766
|
-
createdAt: Date;
|
11767
|
-
updatedAt: Date;
|
11768
|
-
deletedAt: Date | null;
|
11769
|
-
}[];
|
11770
11760
|
company: {
|
11771
11761
|
id: string;
|
11772
11762
|
createdAt: Date;
|
@@ -11777,6 +11767,16 @@ export declare const mainChatContract: {
|
|
11777
11767
|
phone?: string | null | undefined;
|
11778
11768
|
industry?: string | null | undefined;
|
11779
11769
|
} | null;
|
11770
|
+
notes: string | null;
|
11771
|
+
contactProfile: string | null;
|
11772
|
+
socialProfileUrl: string | null;
|
11773
|
+
tags: {
|
11774
|
+
id: string;
|
11775
|
+
name: string;
|
11776
|
+
createdAt: Date;
|
11777
|
+
updatedAt: Date;
|
11778
|
+
deletedAt: Date | null;
|
11779
|
+
}[];
|
11780
11780
|
contactEmails: {
|
11781
11781
|
id: string;
|
11782
11782
|
isPrimary: boolean;
|
@@ -12079,16 +12079,6 @@ export declare const mainChatContract: {
|
|
12079
12079
|
};
|
12080
12080
|
}[];
|
12081
12081
|
}[];
|
12082
|
-
notes: string | null;
|
12083
|
-
contactProfile: string | null;
|
12084
|
-
socialProfileUrl: string | null;
|
12085
|
-
tags: {
|
12086
|
-
id: string;
|
12087
|
-
name: string;
|
12088
|
-
createdAt: Date;
|
12089
|
-
updatedAt: Date;
|
12090
|
-
deletedAt: Date | null;
|
12091
|
-
}[];
|
12092
12082
|
company: {
|
12093
12083
|
id: string;
|
12094
12084
|
createdAt: Date;
|
@@ -12099,6 +12089,16 @@ export declare const mainChatContract: {
|
|
12099
12089
|
phone?: string | null | undefined;
|
12100
12090
|
industry?: string | null | undefined;
|
12101
12091
|
} | null;
|
12092
|
+
notes: string | null;
|
12093
|
+
contactProfile: string | null;
|
12094
|
+
socialProfileUrl: string | null;
|
12095
|
+
tags: {
|
12096
|
+
id: string;
|
12097
|
+
name: string;
|
12098
|
+
createdAt: Date;
|
12099
|
+
updatedAt: Date;
|
12100
|
+
deletedAt: Date | null;
|
12101
|
+
}[];
|
12102
12102
|
contactEmails: {
|
12103
12103
|
id: string;
|
12104
12104
|
isPrimary: boolean;
|
@@ -13331,16 +13331,6 @@ export declare const mainChatContract: {
|
|
13331
13331
|
};
|
13332
13332
|
}[];
|
13333
13333
|
}[];
|
13334
|
-
notes: string | null;
|
13335
|
-
contactProfile: string | null;
|
13336
|
-
socialProfileUrl: string | null;
|
13337
|
-
tags: {
|
13338
|
-
id: string;
|
13339
|
-
name: string;
|
13340
|
-
createdAt: Date;
|
13341
|
-
updatedAt: Date;
|
13342
|
-
deletedAt: Date | null;
|
13343
|
-
}[];
|
13344
13334
|
company: {
|
13345
13335
|
id: string;
|
13346
13336
|
createdAt: Date;
|
@@ -13351,6 +13341,16 @@ export declare const mainChatContract: {
|
|
13351
13341
|
phone?: string | null | undefined;
|
13352
13342
|
industry?: string | null | undefined;
|
13353
13343
|
} | null;
|
13344
|
+
notes: string | null;
|
13345
|
+
contactProfile: string | null;
|
13346
|
+
socialProfileUrl: string | null;
|
13347
|
+
tags: {
|
13348
|
+
id: string;
|
13349
|
+
name: string;
|
13350
|
+
createdAt: Date;
|
13351
|
+
updatedAt: Date;
|
13352
|
+
deletedAt: Date | null;
|
13353
|
+
}[];
|
13354
13354
|
contactEmails: {
|
13355
13355
|
id: string;
|
13356
13356
|
isPrimary: boolean;
|
@@ -13434,16 +13434,6 @@ export declare const mainChatContract: {
|
|
13434
13434
|
};
|
13435
13435
|
}[];
|
13436
13436
|
}[];
|
13437
|
-
notes: string | null;
|
13438
|
-
contactProfile: string | null;
|
13439
|
-
socialProfileUrl: string | null;
|
13440
|
-
tags: {
|
13441
|
-
id: string;
|
13442
|
-
name: string;
|
13443
|
-
createdAt: Date;
|
13444
|
-
updatedAt: Date;
|
13445
|
-
deletedAt: Date | null;
|
13446
|
-
}[];
|
13447
13437
|
company: {
|
13448
13438
|
id: string;
|
13449
13439
|
createdAt: Date;
|
@@ -13454,6 +13444,16 @@ export declare const mainChatContract: {
|
|
13454
13444
|
phone?: string | null | undefined;
|
13455
13445
|
industry?: string | null | undefined;
|
13456
13446
|
} | null;
|
13447
|
+
notes: string | null;
|
13448
|
+
contactProfile: string | null;
|
13449
|
+
socialProfileUrl: string | null;
|
13450
|
+
tags: {
|
13451
|
+
id: string;
|
13452
|
+
name: string;
|
13453
|
+
createdAt: Date;
|
13454
|
+
updatedAt: Date;
|
13455
|
+
deletedAt: Date | null;
|
13456
|
+
}[];
|
13457
13457
|
contactEmails: {
|
13458
13458
|
id: string;
|
13459
13459
|
isPrimary: boolean;
|
@@ -13551,16 +13551,6 @@ export declare const mainChatContract: {
|
|
13551
13551
|
};
|
13552
13552
|
}[];
|
13553
13553
|
}[];
|
13554
|
-
notes: string | null;
|
13555
|
-
contactProfile: string | null;
|
13556
|
-
socialProfileUrl: string | null;
|
13557
|
-
tags: {
|
13558
|
-
id: string;
|
13559
|
-
name: string;
|
13560
|
-
createdAt: Date;
|
13561
|
-
updatedAt: Date;
|
13562
|
-
deletedAt: Date | null;
|
13563
|
-
}[];
|
13564
13554
|
company: {
|
13565
13555
|
id: string;
|
13566
13556
|
createdAt: Date;
|
@@ -13571,6 +13561,16 @@ export declare const mainChatContract: {
|
|
13571
13561
|
phone?: string | null | undefined;
|
13572
13562
|
industry?: string | null | undefined;
|
13573
13563
|
} | null;
|
13564
|
+
notes: string | null;
|
13565
|
+
contactProfile: string | null;
|
13566
|
+
socialProfileUrl: string | null;
|
13567
|
+
tags: {
|
13568
|
+
id: string;
|
13569
|
+
name: string;
|
13570
|
+
createdAt: Date;
|
13571
|
+
updatedAt: Date;
|
13572
|
+
deletedAt: Date | null;
|
13573
|
+
}[];
|
13574
13574
|
contactEmails: {
|
13575
13575
|
id: string;
|
13576
13576
|
isPrimary: boolean;
|
@@ -13669,16 +13669,6 @@ export declare const mainChatContract: {
|
|
13669
13669
|
};
|
13670
13670
|
}[];
|
13671
13671
|
}[];
|
13672
|
-
notes: string | null;
|
13673
|
-
contactProfile: string | null;
|
13674
|
-
socialProfileUrl: string | null;
|
13675
|
-
tags: {
|
13676
|
-
id: string;
|
13677
|
-
name: string;
|
13678
|
-
createdAt: Date;
|
13679
|
-
updatedAt: Date;
|
13680
|
-
deletedAt: Date | null;
|
13681
|
-
}[];
|
13682
13672
|
company: {
|
13683
13673
|
id: string;
|
13684
13674
|
createdAt: Date;
|
@@ -13689,6 +13679,16 @@ export declare const mainChatContract: {
|
|
13689
13679
|
phone?: string | null | undefined;
|
13690
13680
|
industry?: string | null | undefined;
|
13691
13681
|
} | null;
|
13682
|
+
notes: string | null;
|
13683
|
+
contactProfile: string | null;
|
13684
|
+
socialProfileUrl: string | null;
|
13685
|
+
tags: {
|
13686
|
+
id: string;
|
13687
|
+
name: string;
|
13688
|
+
createdAt: Date;
|
13689
|
+
updatedAt: Date;
|
13690
|
+
deletedAt: Date | null;
|
13691
|
+
}[];
|
13692
13692
|
contactEmails: {
|
13693
13693
|
id: string;
|
13694
13694
|
isPrimary: boolean;
|
@@ -14760,16 +14760,6 @@ export declare const mainChatContract: {
|
|
14760
14760
|
};
|
14761
14761
|
}[];
|
14762
14762
|
}[];
|
14763
|
-
notes: string | null;
|
14764
|
-
contactProfile: string | null;
|
14765
|
-
socialProfileUrl: string | null;
|
14766
|
-
tags: {
|
14767
|
-
id: string;
|
14768
|
-
name: string;
|
14769
|
-
createdAt: Date;
|
14770
|
-
updatedAt: Date;
|
14771
|
-
deletedAt: Date | null;
|
14772
|
-
}[];
|
14773
14763
|
company: {
|
14774
14764
|
id: string;
|
14775
14765
|
createdAt: Date;
|
@@ -14780,6 +14770,16 @@ export declare const mainChatContract: {
|
|
14780
14770
|
phone?: string | null | undefined;
|
14781
14771
|
industry?: string | null | undefined;
|
14782
14772
|
} | null;
|
14773
|
+
notes: string | null;
|
14774
|
+
contactProfile: string | null;
|
14775
|
+
socialProfileUrl: string | null;
|
14776
|
+
tags: {
|
14777
|
+
id: string;
|
14778
|
+
name: string;
|
14779
|
+
createdAt: Date;
|
14780
|
+
updatedAt: Date;
|
14781
|
+
deletedAt: Date | null;
|
14782
|
+
}[];
|
14783
14783
|
contactEmails: {
|
14784
14784
|
id: string;
|
14785
14785
|
isPrimary: boolean;
|
@@ -15079,16 +15079,6 @@ export declare const mainChatContract: {
|
|
15079
15079
|
};
|
15080
15080
|
}[];
|
15081
15081
|
}[];
|
15082
|
-
notes: string | null;
|
15083
|
-
contactProfile: string | null;
|
15084
|
-
socialProfileUrl: string | null;
|
15085
|
-
tags: {
|
15086
|
-
id: string;
|
15087
|
-
name: string;
|
15088
|
-
createdAt: Date;
|
15089
|
-
updatedAt: Date;
|
15090
|
-
deletedAt: Date | null;
|
15091
|
-
}[];
|
15092
15082
|
company: {
|
15093
15083
|
id: string;
|
15094
15084
|
createdAt: Date;
|
@@ -15099,6 +15089,16 @@ export declare const mainChatContract: {
|
|
15099
15089
|
phone?: string | null | undefined;
|
15100
15090
|
industry?: string | null | undefined;
|
15101
15091
|
} | null;
|
15092
|
+
notes: string | null;
|
15093
|
+
contactProfile: string | null;
|
15094
|
+
socialProfileUrl: string | null;
|
15095
|
+
tags: {
|
15096
|
+
id: string;
|
15097
|
+
name: string;
|
15098
|
+
createdAt: Date;
|
15099
|
+
updatedAt: Date;
|
15100
|
+
deletedAt: Date | null;
|
15101
|
+
}[];
|
15102
15102
|
contactEmails: {
|
15103
15103
|
id: string;
|
15104
15104
|
isPrimary: boolean;
|
@@ -16155,16 +16155,6 @@ export declare const mainChatContract: {
|
|
16155
16155
|
};
|
16156
16156
|
}[];
|
16157
16157
|
}[];
|
16158
|
-
notes: string | null;
|
16159
|
-
contactProfile: string | null;
|
16160
|
-
socialProfileUrl: string | null;
|
16161
|
-
tags: {
|
16162
|
-
id: string;
|
16163
|
-
name: string;
|
16164
|
-
createdAt: Date;
|
16165
|
-
updatedAt: Date;
|
16166
|
-
deletedAt: Date | null;
|
16167
|
-
}[];
|
16168
16158
|
company: {
|
16169
16159
|
id: string;
|
16170
16160
|
createdAt: Date;
|
@@ -16175,6 +16165,16 @@ export declare const mainChatContract: {
|
|
16175
16165
|
phone?: string | null | undefined;
|
16176
16166
|
industry?: string | null | undefined;
|
16177
16167
|
} | null;
|
16168
|
+
notes: string | null;
|
16169
|
+
contactProfile: string | null;
|
16170
|
+
socialProfileUrl: string | null;
|
16171
|
+
tags: {
|
16172
|
+
id: string;
|
16173
|
+
name: string;
|
16174
|
+
createdAt: Date;
|
16175
|
+
updatedAt: Date;
|
16176
|
+
deletedAt: Date | null;
|
16177
|
+
}[];
|
16178
16178
|
contactEmails: {
|
16179
16179
|
id: string;
|
16180
16180
|
isPrimary: boolean;
|
@@ -16637,16 +16637,6 @@ export declare const mainChatContract: {
|
|
16637
16637
|
};
|
16638
16638
|
}[];
|
16639
16639
|
}[];
|
16640
|
-
notes: string | null;
|
16641
|
-
contactProfile: string | null;
|
16642
|
-
socialProfileUrl: string | null;
|
16643
|
-
tags: {
|
16644
|
-
id: string;
|
16645
|
-
name: string;
|
16646
|
-
createdAt: Date;
|
16647
|
-
updatedAt: Date;
|
16648
|
-
deletedAt: Date | null;
|
16649
|
-
}[];
|
16650
16640
|
company: {
|
16651
16641
|
id: string;
|
16652
16642
|
createdAt: Date;
|
@@ -16657,6 +16647,16 @@ export declare const mainChatContract: {
|
|
16657
16647
|
phone?: string | null | undefined;
|
16658
16648
|
industry?: string | null | undefined;
|
16659
16649
|
} | null;
|
16650
|
+
notes: string | null;
|
16651
|
+
contactProfile: string | null;
|
16652
|
+
socialProfileUrl: string | null;
|
16653
|
+
tags: {
|
16654
|
+
id: string;
|
16655
|
+
name: string;
|
16656
|
+
createdAt: Date;
|
16657
|
+
updatedAt: Date;
|
16658
|
+
deletedAt: Date | null;
|
16659
|
+
}[];
|
16660
16660
|
contactEmails: {
|
16661
16661
|
id: string;
|
16662
16662
|
isPrimary: boolean;
|
@@ -17121,16 +17121,6 @@ export declare const mainChatContract: {
|
|
17121
17121
|
};
|
17122
17122
|
}[];
|
17123
17123
|
}[];
|
17124
|
-
notes: string | null;
|
17125
|
-
contactProfile: string | null;
|
17126
|
-
socialProfileUrl: string | null;
|
17127
|
-
tags: {
|
17128
|
-
id: string;
|
17129
|
-
name: string;
|
17130
|
-
createdAt: Date;
|
17131
|
-
updatedAt: Date;
|
17132
|
-
deletedAt: Date | null;
|
17133
|
-
}[];
|
17134
17124
|
company: {
|
17135
17125
|
id: string;
|
17136
17126
|
createdAt: Date;
|
@@ -17141,6 +17131,16 @@ export declare const mainChatContract: {
|
|
17141
17131
|
phone?: string | null | undefined;
|
17142
17132
|
industry?: string | null | undefined;
|
17143
17133
|
} | null;
|
17134
|
+
notes: string | null;
|
17135
|
+
contactProfile: string | null;
|
17136
|
+
socialProfileUrl: string | null;
|
17137
|
+
tags: {
|
17138
|
+
id: string;
|
17139
|
+
name: string;
|
17140
|
+
createdAt: Date;
|
17141
|
+
updatedAt: Date;
|
17142
|
+
deletedAt: Date | null;
|
17143
|
+
}[];
|
17144
17144
|
contactEmails: {
|
17145
17145
|
id: string;
|
17146
17146
|
isPrimary: boolean;
|
@@ -17606,16 +17606,6 @@ export declare const mainChatContract: {
|
|
17606
17606
|
};
|
17607
17607
|
}[];
|
17608
17608
|
}[];
|
17609
|
-
notes: string | null;
|
17610
|
-
contactProfile: string | null;
|
17611
|
-
socialProfileUrl: string | null;
|
17612
|
-
tags: {
|
17613
|
-
id: string;
|
17614
|
-
name: string;
|
17615
|
-
createdAt: Date;
|
17616
|
-
updatedAt: Date;
|
17617
|
-
deletedAt: Date | null;
|
17618
|
-
}[];
|
17619
17609
|
company: {
|
17620
17610
|
id: string;
|
17621
17611
|
createdAt: Date;
|
@@ -17626,6 +17616,16 @@ export declare const mainChatContract: {
|
|
17626
17616
|
phone?: string | null | undefined;
|
17627
17617
|
industry?: string | null | undefined;
|
17628
17618
|
} | null;
|
17619
|
+
notes: string | null;
|
17620
|
+
contactProfile: string | null;
|
17621
|
+
socialProfileUrl: string | null;
|
17622
|
+
tags: {
|
17623
|
+
id: string;
|
17624
|
+
name: string;
|
17625
|
+
createdAt: Date;
|
17626
|
+
updatedAt: Date;
|
17627
|
+
deletedAt: Date | null;
|
17628
|
+
}[];
|
17629
17629
|
contactEmails: {
|
17630
17630
|
id: string;
|
17631
17631
|
isPrimary: boolean;
|
@@ -18634,16 +18634,6 @@ export declare const mainChatContract: {
|
|
18634
18634
|
};
|
18635
18635
|
}[];
|
18636
18636
|
}[];
|
18637
|
-
notes: string | null;
|
18638
|
-
contactProfile: string | null;
|
18639
|
-
socialProfileUrl: string | null;
|
18640
|
-
tags: {
|
18641
|
-
id: string;
|
18642
|
-
name: string;
|
18643
|
-
createdAt: Date;
|
18644
|
-
updatedAt: Date;
|
18645
|
-
deletedAt: Date | null;
|
18646
|
-
}[];
|
18647
18637
|
company: {
|
18648
18638
|
id: string;
|
18649
18639
|
createdAt: Date;
|
@@ -18654,6 +18644,16 @@ export declare const mainChatContract: {
|
|
18654
18644
|
phone?: string | null | undefined;
|
18655
18645
|
industry?: string | null | undefined;
|
18656
18646
|
} | null;
|
18647
|
+
notes: string | null;
|
18648
|
+
contactProfile: string | null;
|
18649
|
+
socialProfileUrl: string | null;
|
18650
|
+
tags: {
|
18651
|
+
id: string;
|
18652
|
+
name: string;
|
18653
|
+
createdAt: Date;
|
18654
|
+
updatedAt: Date;
|
18655
|
+
deletedAt: Date | null;
|
18656
|
+
}[];
|
18657
18657
|
contactEmails: {
|
18658
18658
|
id: string;
|
18659
18659
|
isPrimary: boolean;
|
@@ -18737,16 +18737,6 @@ export declare const mainChatContract: {
|
|
18737
18737
|
};
|
18738
18738
|
}[];
|
18739
18739
|
}[];
|
18740
|
-
notes: string | null;
|
18741
|
-
contactProfile: string | null;
|
18742
|
-
socialProfileUrl: string | null;
|
18743
|
-
tags: {
|
18744
|
-
id: string;
|
18745
|
-
name: string;
|
18746
|
-
createdAt: Date;
|
18747
|
-
updatedAt: Date;
|
18748
|
-
deletedAt: Date | null;
|
18749
|
-
}[];
|
18750
18740
|
company: {
|
18751
18741
|
id: string;
|
18752
18742
|
createdAt: Date;
|
@@ -18757,6 +18747,16 @@ export declare const mainChatContract: {
|
|
18757
18747
|
phone?: string | null | undefined;
|
18758
18748
|
industry?: string | null | undefined;
|
18759
18749
|
} | null;
|
18750
|
+
notes: string | null;
|
18751
|
+
contactProfile: string | null;
|
18752
|
+
socialProfileUrl: string | null;
|
18753
|
+
tags: {
|
18754
|
+
id: string;
|
18755
|
+
name: string;
|
18756
|
+
createdAt: Date;
|
18757
|
+
updatedAt: Date;
|
18758
|
+
deletedAt: Date | null;
|
18759
|
+
}[];
|
18760
18760
|
contactEmails: {
|
18761
18761
|
id: string;
|
18762
18762
|
isPrimary: boolean;
|
@@ -18854,16 +18854,6 @@ export declare const mainChatContract: {
|
|
18854
18854
|
};
|
18855
18855
|
}[];
|
18856
18856
|
}[];
|
18857
|
-
notes: string | null;
|
18858
|
-
contactProfile: string | null;
|
18859
|
-
socialProfileUrl: string | null;
|
18860
|
-
tags: {
|
18861
|
-
id: string;
|
18862
|
-
name: string;
|
18863
|
-
createdAt: Date;
|
18864
|
-
updatedAt: Date;
|
18865
|
-
deletedAt: Date | null;
|
18866
|
-
}[];
|
18867
18857
|
company: {
|
18868
18858
|
id: string;
|
18869
18859
|
createdAt: Date;
|
@@ -18874,6 +18864,16 @@ export declare const mainChatContract: {
|
|
18874
18864
|
phone?: string | null | undefined;
|
18875
18865
|
industry?: string | null | undefined;
|
18876
18866
|
} | null;
|
18867
|
+
notes: string | null;
|
18868
|
+
contactProfile: string | null;
|
18869
|
+
socialProfileUrl: string | null;
|
18870
|
+
tags: {
|
18871
|
+
id: string;
|
18872
|
+
name: string;
|
18873
|
+
createdAt: Date;
|
18874
|
+
updatedAt: Date;
|
18875
|
+
deletedAt: Date | null;
|
18876
|
+
}[];
|
18877
18877
|
contactEmails: {
|
18878
18878
|
id: string;
|
18879
18879
|
isPrimary: boolean;
|
@@ -18972,16 +18972,6 @@ export declare const mainChatContract: {
|
|
18972
18972
|
};
|
18973
18973
|
}[];
|
18974
18974
|
}[];
|
18975
|
-
notes: string | null;
|
18976
|
-
contactProfile: string | null;
|
18977
|
-
socialProfileUrl: string | null;
|
18978
|
-
tags: {
|
18979
|
-
id: string;
|
18980
|
-
name: string;
|
18981
|
-
createdAt: Date;
|
18982
|
-
updatedAt: Date;
|
18983
|
-
deletedAt: Date | null;
|
18984
|
-
}[];
|
18985
18975
|
company: {
|
18986
18976
|
id: string;
|
18987
18977
|
createdAt: Date;
|
@@ -18992,6 +18982,16 @@ export declare const mainChatContract: {
|
|
18992
18982
|
phone?: string | null | undefined;
|
18993
18983
|
industry?: string | null | undefined;
|
18994
18984
|
} | null;
|
18985
|
+
notes: string | null;
|
18986
|
+
contactProfile: string | null;
|
18987
|
+
socialProfileUrl: string | null;
|
18988
|
+
tags: {
|
18989
|
+
id: string;
|
18990
|
+
name: string;
|
18991
|
+
createdAt: Date;
|
18992
|
+
updatedAt: Date;
|
18993
|
+
deletedAt: Date | null;
|
18994
|
+
}[];
|
18995
18995
|
contactEmails: {
|
18996
18996
|
id: string;
|
18997
18997
|
isPrimary: boolean;
|
@@ -20063,16 +20063,6 @@ export declare const mainChatContract: {
|
|
20063
20063
|
};
|
20064
20064
|
}[];
|
20065
20065
|
}[];
|
20066
|
-
notes: string | null;
|
20067
|
-
contactProfile: string | null;
|
20068
|
-
socialProfileUrl: string | null;
|
20069
|
-
tags: {
|
20070
|
-
id: string;
|
20071
|
-
name: string;
|
20072
|
-
createdAt: Date;
|
20073
|
-
updatedAt: Date;
|
20074
|
-
deletedAt: Date | null;
|
20075
|
-
}[];
|
20076
20066
|
company: {
|
20077
20067
|
id: string;
|
20078
20068
|
createdAt: Date;
|
@@ -20083,6 +20073,16 @@ export declare const mainChatContract: {
|
|
20083
20073
|
phone?: string | null | undefined;
|
20084
20074
|
industry?: string | null | undefined;
|
20085
20075
|
} | null;
|
20076
|
+
notes: string | null;
|
20077
|
+
contactProfile: string | null;
|
20078
|
+
socialProfileUrl: string | null;
|
20079
|
+
tags: {
|
20080
|
+
id: string;
|
20081
|
+
name: string;
|
20082
|
+
createdAt: Date;
|
20083
|
+
updatedAt: Date;
|
20084
|
+
deletedAt: Date | null;
|
20085
|
+
}[];
|
20086
20086
|
contactEmails: {
|
20087
20087
|
id: string;
|
20088
20088
|
isPrimary: boolean;
|
@@ -20382,16 +20382,6 @@ export declare const mainChatContract: {
|
|
20382
20382
|
};
|
20383
20383
|
}[];
|
20384
20384
|
}[];
|
20385
|
-
notes: string | null;
|
20386
|
-
contactProfile: string | null;
|
20387
|
-
socialProfileUrl: string | null;
|
20388
|
-
tags: {
|
20389
|
-
id: string;
|
20390
|
-
name: string;
|
20391
|
-
createdAt: Date;
|
20392
|
-
updatedAt: Date;
|
20393
|
-
deletedAt: Date | null;
|
20394
|
-
}[];
|
20395
20385
|
company: {
|
20396
20386
|
id: string;
|
20397
20387
|
createdAt: Date;
|
@@ -20402,6 +20392,16 @@ export declare const mainChatContract: {
|
|
20402
20392
|
phone?: string | null | undefined;
|
20403
20393
|
industry?: string | null | undefined;
|
20404
20394
|
} | null;
|
20395
|
+
notes: string | null;
|
20396
|
+
contactProfile: string | null;
|
20397
|
+
socialProfileUrl: string | null;
|
20398
|
+
tags: {
|
20399
|
+
id: string;
|
20400
|
+
name: string;
|
20401
|
+
createdAt: Date;
|
20402
|
+
updatedAt: Date;
|
20403
|
+
deletedAt: Date | null;
|
20404
|
+
}[];
|
20405
20405
|
contactEmails: {
|
20406
20406
|
id: string;
|
20407
20407
|
isPrimary: boolean;
|
@@ -21458,16 +21458,6 @@ export declare const mainChatContract: {
|
|
21458
21458
|
};
|
21459
21459
|
}[];
|
21460
21460
|
}[];
|
21461
|
-
notes: string | null;
|
21462
|
-
contactProfile: string | null;
|
21463
|
-
socialProfileUrl: string | null;
|
21464
|
-
tags: {
|
21465
|
-
id: string;
|
21466
|
-
name: string;
|
21467
|
-
createdAt: Date;
|
21468
|
-
updatedAt: Date;
|
21469
|
-
deletedAt: Date | null;
|
21470
|
-
}[];
|
21471
21461
|
company: {
|
21472
21462
|
id: string;
|
21473
21463
|
createdAt: Date;
|
@@ -21478,6 +21468,16 @@ export declare const mainChatContract: {
|
|
21478
21468
|
phone?: string | null | undefined;
|
21479
21469
|
industry?: string | null | undefined;
|
21480
21470
|
} | null;
|
21471
|
+
notes: string | null;
|
21472
|
+
contactProfile: string | null;
|
21473
|
+
socialProfileUrl: string | null;
|
21474
|
+
tags: {
|
21475
|
+
id: string;
|
21476
|
+
name: string;
|
21477
|
+
createdAt: Date;
|
21478
|
+
updatedAt: Date;
|
21479
|
+
deletedAt: Date | null;
|
21480
|
+
}[];
|
21481
21481
|
contactEmails: {
|
21482
21482
|
id: string;
|
21483
21483
|
isPrimary: boolean;
|
@@ -21940,16 +21940,6 @@ export declare const mainChatContract: {
|
|
21940
21940
|
};
|
21941
21941
|
}[];
|
21942
21942
|
}[];
|
21943
|
-
notes: string | null;
|
21944
|
-
contactProfile: string | null;
|
21945
|
-
socialProfileUrl: string | null;
|
21946
|
-
tags: {
|
21947
|
-
id: string;
|
21948
|
-
name: string;
|
21949
|
-
createdAt: Date;
|
21950
|
-
updatedAt: Date;
|
21951
|
-
deletedAt: Date | null;
|
21952
|
-
}[];
|
21953
21943
|
company: {
|
21954
21944
|
id: string;
|
21955
21945
|
createdAt: Date;
|
@@ -21960,6 +21950,16 @@ export declare const mainChatContract: {
|
|
21960
21950
|
phone?: string | null | undefined;
|
21961
21951
|
industry?: string | null | undefined;
|
21962
21952
|
} | null;
|
21953
|
+
notes: string | null;
|
21954
|
+
contactProfile: string | null;
|
21955
|
+
socialProfileUrl: string | null;
|
21956
|
+
tags: {
|
21957
|
+
id: string;
|
21958
|
+
name: string;
|
21959
|
+
createdAt: Date;
|
21960
|
+
updatedAt: Date;
|
21961
|
+
deletedAt: Date | null;
|
21962
|
+
}[];
|
21963
21963
|
contactEmails: {
|
21964
21964
|
id: string;
|
21965
21965
|
isPrimary: boolean;
|
@@ -22424,16 +22424,6 @@ export declare const mainChatContract: {
|
|
22424
22424
|
};
|
22425
22425
|
}[];
|
22426
22426
|
}[];
|
22427
|
-
notes: string | null;
|
22428
|
-
contactProfile: string | null;
|
22429
|
-
socialProfileUrl: string | null;
|
22430
|
-
tags: {
|
22431
|
-
id: string;
|
22432
|
-
name: string;
|
22433
|
-
createdAt: Date;
|
22434
|
-
updatedAt: Date;
|
22435
|
-
deletedAt: Date | null;
|
22436
|
-
}[];
|
22437
22427
|
company: {
|
22438
22428
|
id: string;
|
22439
22429
|
createdAt: Date;
|
@@ -22444,6 +22434,16 @@ export declare const mainChatContract: {
|
|
22444
22434
|
phone?: string | null | undefined;
|
22445
22435
|
industry?: string | null | undefined;
|
22446
22436
|
} | null;
|
22437
|
+
notes: string | null;
|
22438
|
+
contactProfile: string | null;
|
22439
|
+
socialProfileUrl: string | null;
|
22440
|
+
tags: {
|
22441
|
+
id: string;
|
22442
|
+
name: string;
|
22443
|
+
createdAt: Date;
|
22444
|
+
updatedAt: Date;
|
22445
|
+
deletedAt: Date | null;
|
22446
|
+
}[];
|
22447
22447
|
contactEmails: {
|
22448
22448
|
id: string;
|
22449
22449
|
isPrimary: boolean;
|
@@ -22912,16 +22912,6 @@ export declare const mainChatContract: {
|
|
22912
22912
|
};
|
22913
22913
|
}[];
|
22914
22914
|
}[];
|
22915
|
-
notes: string | null;
|
22916
|
-
contactProfile: string | null;
|
22917
|
-
socialProfileUrl: string | null;
|
22918
|
-
tags: {
|
22919
|
-
id: string;
|
22920
|
-
name: string;
|
22921
|
-
createdAt: Date;
|
22922
|
-
updatedAt: Date;
|
22923
|
-
deletedAt: Date | null;
|
22924
|
-
}[];
|
22925
22915
|
company: {
|
22926
22916
|
id: string;
|
22927
22917
|
createdAt: Date;
|
@@ -22932,6 +22922,16 @@ export declare const mainChatContract: {
|
|
22932
22922
|
phone?: string | null | undefined;
|
22933
22923
|
industry?: string | null | undefined;
|
22934
22924
|
} | null;
|
22925
|
+
notes: string | null;
|
22926
|
+
contactProfile: string | null;
|
22927
|
+
socialProfileUrl: string | null;
|
22928
|
+
tags: {
|
22929
|
+
id: string;
|
22930
|
+
name: string;
|
22931
|
+
createdAt: Date;
|
22932
|
+
updatedAt: Date;
|
22933
|
+
deletedAt: Date | null;
|
22934
|
+
}[];
|
22935
22935
|
contactEmails: {
|
22936
22936
|
id: string;
|
22937
22937
|
isPrimary: boolean;
|
@@ -24407,16 +24407,6 @@ export declare const mainChatContract: {
|
|
24407
24407
|
};
|
24408
24408
|
}[];
|
24409
24409
|
}[];
|
24410
|
-
notes: string | null;
|
24411
|
-
contactProfile: string | null;
|
24412
|
-
socialProfileUrl: string | null;
|
24413
|
-
tags: {
|
24414
|
-
id: string;
|
24415
|
-
name: string;
|
24416
|
-
createdAt: Date;
|
24417
|
-
updatedAt: Date;
|
24418
|
-
deletedAt: Date | null;
|
24419
|
-
}[];
|
24420
24410
|
company: {
|
24421
24411
|
id: string;
|
24422
24412
|
createdAt: Date;
|
@@ -24427,6 +24417,16 @@ export declare const mainChatContract: {
|
|
24427
24417
|
phone?: string | null | undefined;
|
24428
24418
|
industry?: string | null | undefined;
|
24429
24419
|
} | null;
|
24420
|
+
notes: string | null;
|
24421
|
+
contactProfile: string | null;
|
24422
|
+
socialProfileUrl: string | null;
|
24423
|
+
tags: {
|
24424
|
+
id: string;
|
24425
|
+
name: string;
|
24426
|
+
createdAt: Date;
|
24427
|
+
updatedAt: Date;
|
24428
|
+
deletedAt: Date | null;
|
24429
|
+
}[];
|
24430
24430
|
contactEmails: {
|
24431
24431
|
id: string;
|
24432
24432
|
isPrimary: boolean;
|
@@ -24510,16 +24510,6 @@ export declare const mainChatContract: {
|
|
24510
24510
|
};
|
24511
24511
|
}[];
|
24512
24512
|
}[];
|
24513
|
-
notes: string | null;
|
24514
|
-
contactProfile: string | null;
|
24515
|
-
socialProfileUrl: string | null;
|
24516
|
-
tags: {
|
24517
|
-
id: string;
|
24518
|
-
name: string;
|
24519
|
-
createdAt: Date;
|
24520
|
-
updatedAt: Date;
|
24521
|
-
deletedAt: Date | null;
|
24522
|
-
}[];
|
24523
24513
|
company: {
|
24524
24514
|
id: string;
|
24525
24515
|
createdAt: Date;
|
@@ -24530,6 +24520,16 @@ export declare const mainChatContract: {
|
|
24530
24520
|
phone?: string | null | undefined;
|
24531
24521
|
industry?: string | null | undefined;
|
24532
24522
|
} | null;
|
24523
|
+
notes: string | null;
|
24524
|
+
contactProfile: string | null;
|
24525
|
+
socialProfileUrl: string | null;
|
24526
|
+
tags: {
|
24527
|
+
id: string;
|
24528
|
+
name: string;
|
24529
|
+
createdAt: Date;
|
24530
|
+
updatedAt: Date;
|
24531
|
+
deletedAt: Date | null;
|
24532
|
+
}[];
|
24533
24533
|
contactEmails: {
|
24534
24534
|
id: string;
|
24535
24535
|
isPrimary: boolean;
|
@@ -24627,16 +24627,6 @@ export declare const mainChatContract: {
|
|
24627
24627
|
};
|
24628
24628
|
}[];
|
24629
24629
|
}[];
|
24630
|
-
notes: string | null;
|
24631
|
-
contactProfile: string | null;
|
24632
|
-
socialProfileUrl: string | null;
|
24633
|
-
tags: {
|
24634
|
-
id: string;
|
24635
|
-
name: string;
|
24636
|
-
createdAt: Date;
|
24637
|
-
updatedAt: Date;
|
24638
|
-
deletedAt: Date | null;
|
24639
|
-
}[];
|
24640
24630
|
company: {
|
24641
24631
|
id: string;
|
24642
24632
|
createdAt: Date;
|
@@ -24647,6 +24637,16 @@ export declare const mainChatContract: {
|
|
24647
24637
|
phone?: string | null | undefined;
|
24648
24638
|
industry?: string | null | undefined;
|
24649
24639
|
} | null;
|
24640
|
+
notes: string | null;
|
24641
|
+
contactProfile: string | null;
|
24642
|
+
socialProfileUrl: string | null;
|
24643
|
+
tags: {
|
24644
|
+
id: string;
|
24645
|
+
name: string;
|
24646
|
+
createdAt: Date;
|
24647
|
+
updatedAt: Date;
|
24648
|
+
deletedAt: Date | null;
|
24649
|
+
}[];
|
24650
24650
|
contactEmails: {
|
24651
24651
|
id: string;
|
24652
24652
|
isPrimary: boolean;
|
@@ -24745,16 +24745,6 @@ export declare const mainChatContract: {
|
|
24745
24745
|
};
|
24746
24746
|
}[];
|
24747
24747
|
}[];
|
24748
|
-
notes: string | null;
|
24749
|
-
contactProfile: string | null;
|
24750
|
-
socialProfileUrl: string | null;
|
24751
|
-
tags: {
|
24752
|
-
id: string;
|
24753
|
-
name: string;
|
24754
|
-
createdAt: Date;
|
24755
|
-
updatedAt: Date;
|
24756
|
-
deletedAt: Date | null;
|
24757
|
-
}[];
|
24758
24748
|
company: {
|
24759
24749
|
id: string;
|
24760
24750
|
createdAt: Date;
|
@@ -24765,6 +24755,16 @@ export declare const mainChatContract: {
|
|
24765
24755
|
phone?: string | null | undefined;
|
24766
24756
|
industry?: string | null | undefined;
|
24767
24757
|
} | null;
|
24758
|
+
notes: string | null;
|
24759
|
+
contactProfile: string | null;
|
24760
|
+
socialProfileUrl: string | null;
|
24761
|
+
tags: {
|
24762
|
+
id: string;
|
24763
|
+
name: string;
|
24764
|
+
createdAt: Date;
|
24765
|
+
updatedAt: Date;
|
24766
|
+
deletedAt: Date | null;
|
24767
|
+
}[];
|
24768
24768
|
contactEmails: {
|
24769
24769
|
id: string;
|
24770
24770
|
isPrimary: boolean;
|
@@ -25273,16 +25273,6 @@ export declare const mainChatContract: {
|
|
25273
25273
|
};
|
25274
25274
|
}[];
|
25275
25275
|
}[];
|
25276
|
-
notes: string | null;
|
25277
|
-
contactProfile: string | null;
|
25278
|
-
socialProfileUrl: string | null;
|
25279
|
-
tags: {
|
25280
|
-
id: string;
|
25281
|
-
name: string;
|
25282
|
-
createdAt: Date;
|
25283
|
-
updatedAt: Date;
|
25284
|
-
deletedAt: Date | null;
|
25285
|
-
}[];
|
25286
25276
|
company: {
|
25287
25277
|
id: string;
|
25288
25278
|
createdAt: Date;
|
@@ -25293,6 +25283,16 @@ export declare const mainChatContract: {
|
|
25293
25283
|
phone?: string | null | undefined;
|
25294
25284
|
industry?: string | null | undefined;
|
25295
25285
|
} | null;
|
25286
|
+
notes: string | null;
|
25287
|
+
contactProfile: string | null;
|
25288
|
+
socialProfileUrl: string | null;
|
25289
|
+
tags: {
|
25290
|
+
id: string;
|
25291
|
+
name: string;
|
25292
|
+
createdAt: Date;
|
25293
|
+
updatedAt: Date;
|
25294
|
+
deletedAt: Date | null;
|
25295
|
+
}[];
|
25296
25296
|
contactEmails: {
|
25297
25297
|
id: string;
|
25298
25298
|
isPrimary: boolean;
|
@@ -25593,16 +25593,6 @@ export declare const mainChatContract: {
|
|
25593
25593
|
};
|
25594
25594
|
}[];
|
25595
25595
|
}[];
|
25596
|
-
notes: string | null;
|
25597
|
-
contactProfile: string | null;
|
25598
|
-
socialProfileUrl: string | null;
|
25599
|
-
tags: {
|
25600
|
-
id: string;
|
25601
|
-
name: string;
|
25602
|
-
createdAt: Date;
|
25603
|
-
updatedAt: Date;
|
25604
|
-
deletedAt: Date | null;
|
25605
|
-
}[];
|
25606
25596
|
company: {
|
25607
25597
|
id: string;
|
25608
25598
|
createdAt: Date;
|
@@ -25613,6 +25603,16 @@ export declare const mainChatContract: {
|
|
25613
25603
|
phone?: string | null | undefined;
|
25614
25604
|
industry?: string | null | undefined;
|
25615
25605
|
} | null;
|
25606
|
+
notes: string | null;
|
25607
|
+
contactProfile: string | null;
|
25608
|
+
socialProfileUrl: string | null;
|
25609
|
+
tags: {
|
25610
|
+
id: string;
|
25611
|
+
name: string;
|
25612
|
+
createdAt: Date;
|
25613
|
+
updatedAt: Date;
|
25614
|
+
deletedAt: Date | null;
|
25615
|
+
}[];
|
25616
25616
|
contactEmails: {
|
25617
25617
|
id: string;
|
25618
25618
|
isPrimary: boolean;
|
@@ -25915,16 +25915,6 @@ export declare const mainChatContract: {
|
|
25915
25915
|
};
|
25916
25916
|
}[];
|
25917
25917
|
}[];
|
25918
|
-
notes: string | null;
|
25919
|
-
contactProfile: string | null;
|
25920
|
-
socialProfileUrl: string | null;
|
25921
|
-
tags: {
|
25922
|
-
id: string;
|
25923
|
-
name: string;
|
25924
|
-
createdAt: Date;
|
25925
|
-
updatedAt: Date;
|
25926
|
-
deletedAt: Date | null;
|
25927
|
-
}[];
|
25928
25918
|
company: {
|
25929
25919
|
id: string;
|
25930
25920
|
createdAt: Date;
|
@@ -25935,6 +25925,16 @@ export declare const mainChatContract: {
|
|
25935
25925
|
phone?: string | null | undefined;
|
25936
25926
|
industry?: string | null | undefined;
|
25937
25927
|
} | null;
|
25928
|
+
notes: string | null;
|
25929
|
+
contactProfile: string | null;
|
25930
|
+
socialProfileUrl: string | null;
|
25931
|
+
tags: {
|
25932
|
+
id: string;
|
25933
|
+
name: string;
|
25934
|
+
createdAt: Date;
|
25935
|
+
updatedAt: Date;
|
25936
|
+
deletedAt: Date | null;
|
25937
|
+
}[];
|
25938
25938
|
contactEmails: {
|
25939
25939
|
id: string;
|
25940
25940
|
isPrimary: boolean;
|
@@ -26238,16 +26238,6 @@ export declare const mainChatContract: {
|
|
26238
26238
|
};
|
26239
26239
|
}[];
|
26240
26240
|
}[];
|
26241
|
-
notes: string | null;
|
26242
|
-
contactProfile: string | null;
|
26243
|
-
socialProfileUrl: string | null;
|
26244
|
-
tags: {
|
26245
|
-
id: string;
|
26246
|
-
name: string;
|
26247
|
-
createdAt: Date;
|
26248
|
-
updatedAt: Date;
|
26249
|
-
deletedAt: Date | null;
|
26250
|
-
}[];
|
26251
26241
|
company: {
|
26252
26242
|
id: string;
|
26253
26243
|
createdAt: Date;
|
@@ -26258,6 +26248,16 @@ export declare const mainChatContract: {
|
|
26258
26248
|
phone?: string | null | undefined;
|
26259
26249
|
industry?: string | null | undefined;
|
26260
26250
|
} | null;
|
26251
|
+
notes: string | null;
|
26252
|
+
contactProfile: string | null;
|
26253
|
+
socialProfileUrl: string | null;
|
26254
|
+
tags: {
|
26255
|
+
id: string;
|
26256
|
+
name: string;
|
26257
|
+
createdAt: Date;
|
26258
|
+
updatedAt: Date;
|
26259
|
+
deletedAt: Date | null;
|
26260
|
+
}[];
|
26261
26261
|
contactEmails: {
|
26262
26262
|
id: string;
|
26263
26263
|
isPrimary: boolean;
|
@@ -27124,16 +27124,6 @@ export declare const mainChatContract: {
|
|
27124
27124
|
};
|
27125
27125
|
}[];
|
27126
27126
|
}[];
|
27127
|
-
notes: string | null;
|
27128
|
-
contactProfile: string | null;
|
27129
|
-
socialProfileUrl: string | null;
|
27130
|
-
tags: {
|
27131
|
-
id: string;
|
27132
|
-
name: string;
|
27133
|
-
createdAt: Date;
|
27134
|
-
updatedAt: Date;
|
27135
|
-
deletedAt: Date | null;
|
27136
|
-
}[];
|
27137
27127
|
company: {
|
27138
27128
|
id: string;
|
27139
27129
|
createdAt: Date;
|
@@ -27144,6 +27134,16 @@ export declare const mainChatContract: {
|
|
27144
27134
|
phone?: string | null | undefined;
|
27145
27135
|
industry?: string | null | undefined;
|
27146
27136
|
} | null;
|
27137
|
+
notes: string | null;
|
27138
|
+
contactProfile: string | null;
|
27139
|
+
socialProfileUrl: string | null;
|
27140
|
+
tags: {
|
27141
|
+
id: string;
|
27142
|
+
name: string;
|
27143
|
+
createdAt: Date;
|
27144
|
+
updatedAt: Date;
|
27145
|
+
deletedAt: Date | null;
|
27146
|
+
}[];
|
27147
27147
|
contactEmails: {
|
27148
27148
|
id: string;
|
27149
27149
|
isPrimary: boolean;
|
@@ -27227,16 +27227,6 @@ export declare const mainChatContract: {
|
|
27227
27227
|
};
|
27228
27228
|
}[];
|
27229
27229
|
}[];
|
27230
|
-
notes: string | null;
|
27231
|
-
contactProfile: string | null;
|
27232
|
-
socialProfileUrl: string | null;
|
27233
|
-
tags: {
|
27234
|
-
id: string;
|
27235
|
-
name: string;
|
27236
|
-
createdAt: Date;
|
27237
|
-
updatedAt: Date;
|
27238
|
-
deletedAt: Date | null;
|
27239
|
-
}[];
|
27240
27230
|
company: {
|
27241
27231
|
id: string;
|
27242
27232
|
createdAt: Date;
|
@@ -27247,6 +27237,16 @@ export declare const mainChatContract: {
|
|
27247
27237
|
phone?: string | null | undefined;
|
27248
27238
|
industry?: string | null | undefined;
|
27249
27239
|
} | null;
|
27240
|
+
notes: string | null;
|
27241
|
+
contactProfile: string | null;
|
27242
|
+
socialProfileUrl: string | null;
|
27243
|
+
tags: {
|
27244
|
+
id: string;
|
27245
|
+
name: string;
|
27246
|
+
createdAt: Date;
|
27247
|
+
updatedAt: Date;
|
27248
|
+
deletedAt: Date | null;
|
27249
|
+
}[];
|
27250
27250
|
contactEmails: {
|
27251
27251
|
id: string;
|
27252
27252
|
isPrimary: boolean;
|
@@ -27344,16 +27344,6 @@ export declare const mainChatContract: {
|
|
27344
27344
|
};
|
27345
27345
|
}[];
|
27346
27346
|
}[];
|
27347
|
-
notes: string | null;
|
27348
|
-
contactProfile: string | null;
|
27349
|
-
socialProfileUrl: string | null;
|
27350
|
-
tags: {
|
27351
|
-
id: string;
|
27352
|
-
name: string;
|
27353
|
-
createdAt: Date;
|
27354
|
-
updatedAt: Date;
|
27355
|
-
deletedAt: Date | null;
|
27356
|
-
}[];
|
27357
27347
|
company: {
|
27358
27348
|
id: string;
|
27359
27349
|
createdAt: Date;
|
@@ -27364,6 +27354,16 @@ export declare const mainChatContract: {
|
|
27364
27354
|
phone?: string | null | undefined;
|
27365
27355
|
industry?: string | null | undefined;
|
27366
27356
|
} | null;
|
27357
|
+
notes: string | null;
|
27358
|
+
contactProfile: string | null;
|
27359
|
+
socialProfileUrl: string | null;
|
27360
|
+
tags: {
|
27361
|
+
id: string;
|
27362
|
+
name: string;
|
27363
|
+
createdAt: Date;
|
27364
|
+
updatedAt: Date;
|
27365
|
+
deletedAt: Date | null;
|
27366
|
+
}[];
|
27367
27367
|
contactEmails: {
|
27368
27368
|
id: string;
|
27369
27369
|
isPrimary: boolean;
|
@@ -27462,16 +27462,6 @@ export declare const mainChatContract: {
|
|
27462
27462
|
};
|
27463
27463
|
}[];
|
27464
27464
|
}[];
|
27465
|
-
notes: string | null;
|
27466
|
-
contactProfile: string | null;
|
27467
|
-
socialProfileUrl: string | null;
|
27468
|
-
tags: {
|
27469
|
-
id: string;
|
27470
|
-
name: string;
|
27471
|
-
createdAt: Date;
|
27472
|
-
updatedAt: Date;
|
27473
|
-
deletedAt: Date | null;
|
27474
|
-
}[];
|
27475
27465
|
company: {
|
27476
27466
|
id: string;
|
27477
27467
|
createdAt: Date;
|
@@ -27482,6 +27472,16 @@ export declare const mainChatContract: {
|
|
27482
27472
|
phone?: string | null | undefined;
|
27483
27473
|
industry?: string | null | undefined;
|
27484
27474
|
} | null;
|
27475
|
+
notes: string | null;
|
27476
|
+
contactProfile: string | null;
|
27477
|
+
socialProfileUrl: string | null;
|
27478
|
+
tags: {
|
27479
|
+
id: string;
|
27480
|
+
name: string;
|
27481
|
+
createdAt: Date;
|
27482
|
+
updatedAt: Date;
|
27483
|
+
deletedAt: Date | null;
|
27484
|
+
}[];
|
27485
27485
|
contactEmails: {
|
27486
27486
|
id: string;
|
27487
27487
|
isPrimary: boolean;
|
@@ -28553,16 +28553,6 @@ export declare const mainChatContract: {
|
|
28553
28553
|
};
|
28554
28554
|
}[];
|
28555
28555
|
}[];
|
28556
|
-
notes: string | null;
|
28557
|
-
contactProfile: string | null;
|
28558
|
-
socialProfileUrl: string | null;
|
28559
|
-
tags: {
|
28560
|
-
id: string;
|
28561
|
-
name: string;
|
28562
|
-
createdAt: Date;
|
28563
|
-
updatedAt: Date;
|
28564
|
-
deletedAt: Date | null;
|
28565
|
-
}[];
|
28566
28556
|
company: {
|
28567
28557
|
id: string;
|
28568
28558
|
createdAt: Date;
|
@@ -28573,6 +28563,16 @@ export declare const mainChatContract: {
|
|
28573
28563
|
phone?: string | null | undefined;
|
28574
28564
|
industry?: string | null | undefined;
|
28575
28565
|
} | null;
|
28566
|
+
notes: string | null;
|
28567
|
+
contactProfile: string | null;
|
28568
|
+
socialProfileUrl: string | null;
|
28569
|
+
tags: {
|
28570
|
+
id: string;
|
28571
|
+
name: string;
|
28572
|
+
createdAt: Date;
|
28573
|
+
updatedAt: Date;
|
28574
|
+
deletedAt: Date | null;
|
28575
|
+
}[];
|
28576
28576
|
contactEmails: {
|
28577
28577
|
id: string;
|
28578
28578
|
isPrimary: boolean;
|
@@ -28872,16 +28872,6 @@ export declare const mainChatContract: {
|
|
28872
28872
|
};
|
28873
28873
|
}[];
|
28874
28874
|
}[];
|
28875
|
-
notes: string | null;
|
28876
|
-
contactProfile: string | null;
|
28877
|
-
socialProfileUrl: string | null;
|
28878
|
-
tags: {
|
28879
|
-
id: string;
|
28880
|
-
name: string;
|
28881
|
-
createdAt: Date;
|
28882
|
-
updatedAt: Date;
|
28883
|
-
deletedAt: Date | null;
|
28884
|
-
}[];
|
28885
28875
|
company: {
|
28886
28876
|
id: string;
|
28887
28877
|
createdAt: Date;
|
@@ -28892,6 +28882,16 @@ export declare const mainChatContract: {
|
|
28892
28882
|
phone?: string | null | undefined;
|
28893
28883
|
industry?: string | null | undefined;
|
28894
28884
|
} | null;
|
28885
|
+
notes: string | null;
|
28886
|
+
contactProfile: string | null;
|
28887
|
+
socialProfileUrl: string | null;
|
28888
|
+
tags: {
|
28889
|
+
id: string;
|
28890
|
+
name: string;
|
28891
|
+
createdAt: Date;
|
28892
|
+
updatedAt: Date;
|
28893
|
+
deletedAt: Date | null;
|
28894
|
+
}[];
|
28895
28895
|
contactEmails: {
|
28896
28896
|
id: string;
|
28897
28897
|
isPrimary: boolean;
|
@@ -29193,16 +29193,6 @@ export declare const mainChatContract: {
|
|
29193
29193
|
};
|
29194
29194
|
}[];
|
29195
29195
|
}[];
|
29196
|
-
notes: string | null;
|
29197
|
-
contactProfile: string | null;
|
29198
|
-
socialProfileUrl: string | null;
|
29199
|
-
tags: {
|
29200
|
-
id: string;
|
29201
|
-
name: string;
|
29202
|
-
createdAt: Date;
|
29203
|
-
updatedAt: Date;
|
29204
|
-
deletedAt: Date | null;
|
29205
|
-
}[];
|
29206
29196
|
company: {
|
29207
29197
|
id: string;
|
29208
29198
|
createdAt: Date;
|
@@ -29213,6 +29203,16 @@ export declare const mainChatContract: {
|
|
29213
29203
|
phone?: string | null | undefined;
|
29214
29204
|
industry?: string | null | undefined;
|
29215
29205
|
} | null;
|
29206
|
+
notes: string | null;
|
29207
|
+
contactProfile: string | null;
|
29208
|
+
socialProfileUrl: string | null;
|
29209
|
+
tags: {
|
29210
|
+
id: string;
|
29211
|
+
name: string;
|
29212
|
+
createdAt: Date;
|
29213
|
+
updatedAt: Date;
|
29214
|
+
deletedAt: Date | null;
|
29215
|
+
}[];
|
29216
29216
|
contactEmails: {
|
29217
29217
|
id: string;
|
29218
29218
|
isPrimary: boolean;
|
@@ -29515,16 +29515,6 @@ export declare const mainChatContract: {
|
|
29515
29515
|
};
|
29516
29516
|
}[];
|
29517
29517
|
}[];
|
29518
|
-
notes: string | null;
|
29519
|
-
contactProfile: string | null;
|
29520
|
-
socialProfileUrl: string | null;
|
29521
|
-
tags: {
|
29522
|
-
id: string;
|
29523
|
-
name: string;
|
29524
|
-
createdAt: Date;
|
29525
|
-
updatedAt: Date;
|
29526
|
-
deletedAt: Date | null;
|
29527
|
-
}[];
|
29528
29518
|
company: {
|
29529
29519
|
id: string;
|
29530
29520
|
createdAt: Date;
|
@@ -29535,6 +29525,16 @@ export declare const mainChatContract: {
|
|
29535
29525
|
phone?: string | null | undefined;
|
29536
29526
|
industry?: string | null | undefined;
|
29537
29527
|
} | null;
|
29528
|
+
notes: string | null;
|
29529
|
+
contactProfile: string | null;
|
29530
|
+
socialProfileUrl: string | null;
|
29531
|
+
tags: {
|
29532
|
+
id: string;
|
29533
|
+
name: string;
|
29534
|
+
createdAt: Date;
|
29535
|
+
updatedAt: Date;
|
29536
|
+
deletedAt: Date | null;
|
29537
|
+
}[];
|
29538
29538
|
contactEmails: {
|
29539
29539
|
id: string;
|
29540
29540
|
isPrimary: boolean;
|
@@ -30387,16 +30387,6 @@ export declare const mainChatContract: {
|
|
30387
30387
|
};
|
30388
30388
|
}[];
|
30389
30389
|
}[];
|
30390
|
-
notes: string | null;
|
30391
|
-
contactProfile: string | null;
|
30392
|
-
socialProfileUrl: string | null;
|
30393
|
-
tags: {
|
30394
|
-
id: string;
|
30395
|
-
name: string;
|
30396
|
-
createdAt: Date;
|
30397
|
-
updatedAt: Date;
|
30398
|
-
deletedAt: Date | null;
|
30399
|
-
}[];
|
30400
30390
|
company: {
|
30401
30391
|
id: string;
|
30402
30392
|
createdAt: Date;
|
@@ -30407,6 +30397,16 @@ export declare const mainChatContract: {
|
|
30407
30397
|
phone?: string | null | undefined;
|
30408
30398
|
industry?: string | null | undefined;
|
30409
30399
|
} | null;
|
30400
|
+
notes: string | null;
|
30401
|
+
contactProfile: string | null;
|
30402
|
+
socialProfileUrl: string | null;
|
30403
|
+
tags: {
|
30404
|
+
id: string;
|
30405
|
+
name: string;
|
30406
|
+
createdAt: Date;
|
30407
|
+
updatedAt: Date;
|
30408
|
+
deletedAt: Date | null;
|
30409
|
+
}[];
|
30410
30410
|
contactEmails: {
|
30411
30411
|
id: string;
|
30412
30412
|
isPrimary: boolean;
|
@@ -30490,16 +30490,6 @@ export declare const mainChatContract: {
|
|
30490
30490
|
};
|
30491
30491
|
}[];
|
30492
30492
|
}[];
|
30493
|
-
notes: string | null;
|
30494
|
-
contactProfile: string | null;
|
30495
|
-
socialProfileUrl: string | null;
|
30496
|
-
tags: {
|
30497
|
-
id: string;
|
30498
|
-
name: string;
|
30499
|
-
createdAt: Date;
|
30500
|
-
updatedAt: Date;
|
30501
|
-
deletedAt: Date | null;
|
30502
|
-
}[];
|
30503
30493
|
company: {
|
30504
30494
|
id: string;
|
30505
30495
|
createdAt: Date;
|
@@ -30510,6 +30500,16 @@ export declare const mainChatContract: {
|
|
30510
30500
|
phone?: string | null | undefined;
|
30511
30501
|
industry?: string | null | undefined;
|
30512
30502
|
} | null;
|
30503
|
+
notes: string | null;
|
30504
|
+
contactProfile: string | null;
|
30505
|
+
socialProfileUrl: string | null;
|
30506
|
+
tags: {
|
30507
|
+
id: string;
|
30508
|
+
name: string;
|
30509
|
+
createdAt: Date;
|
30510
|
+
updatedAt: Date;
|
30511
|
+
deletedAt: Date | null;
|
30512
|
+
}[];
|
30513
30513
|
contactEmails: {
|
30514
30514
|
id: string;
|
30515
30515
|
isPrimary: boolean;
|
@@ -30607,16 +30607,6 @@ export declare const mainChatContract: {
|
|
30607
30607
|
};
|
30608
30608
|
}[];
|
30609
30609
|
}[];
|
30610
|
-
notes: string | null;
|
30611
|
-
contactProfile: string | null;
|
30612
|
-
socialProfileUrl: string | null;
|
30613
|
-
tags: {
|
30614
|
-
id: string;
|
30615
|
-
name: string;
|
30616
|
-
createdAt: Date;
|
30617
|
-
updatedAt: Date;
|
30618
|
-
deletedAt: Date | null;
|
30619
|
-
}[];
|
30620
30610
|
company: {
|
30621
30611
|
id: string;
|
30622
30612
|
createdAt: Date;
|
@@ -30627,6 +30617,16 @@ export declare const mainChatContract: {
|
|
30627
30617
|
phone?: string | null | undefined;
|
30628
30618
|
industry?: string | null | undefined;
|
30629
30619
|
} | null;
|
30620
|
+
notes: string | null;
|
30621
|
+
contactProfile: string | null;
|
30622
|
+
socialProfileUrl: string | null;
|
30623
|
+
tags: {
|
30624
|
+
id: string;
|
30625
|
+
name: string;
|
30626
|
+
createdAt: Date;
|
30627
|
+
updatedAt: Date;
|
30628
|
+
deletedAt: Date | null;
|
30629
|
+
}[];
|
30630
30630
|
contactEmails: {
|
30631
30631
|
id: string;
|
30632
30632
|
isPrimary: boolean;
|
@@ -30725,16 +30725,6 @@ export declare const mainChatContract: {
|
|
30725
30725
|
};
|
30726
30726
|
}[];
|
30727
30727
|
}[];
|
30728
|
-
notes: string | null;
|
30729
|
-
contactProfile: string | null;
|
30730
|
-
socialProfileUrl: string | null;
|
30731
|
-
tags: {
|
30732
|
-
id: string;
|
30733
|
-
name: string;
|
30734
|
-
createdAt: Date;
|
30735
|
-
updatedAt: Date;
|
30736
|
-
deletedAt: Date | null;
|
30737
|
-
}[];
|
30738
30728
|
company: {
|
30739
30729
|
id: string;
|
30740
30730
|
createdAt: Date;
|
@@ -30745,6 +30735,16 @@ export declare const mainChatContract: {
|
|
30745
30735
|
phone?: string | null | undefined;
|
30746
30736
|
industry?: string | null | undefined;
|
30747
30737
|
} | null;
|
30738
|
+
notes: string | null;
|
30739
|
+
contactProfile: string | null;
|
30740
|
+
socialProfileUrl: string | null;
|
30741
|
+
tags: {
|
30742
|
+
id: string;
|
30743
|
+
name: string;
|
30744
|
+
createdAt: Date;
|
30745
|
+
updatedAt: Date;
|
30746
|
+
deletedAt: Date | null;
|
30747
|
+
}[];
|
30748
30748
|
contactEmails: {
|
30749
30749
|
id: string;
|
30750
30750
|
isPrimary: boolean;
|
@@ -31816,16 +31816,6 @@ export declare const mainChatContract: {
|
|
31816
31816
|
};
|
31817
31817
|
}[];
|
31818
31818
|
}[];
|
31819
|
-
notes: string | null;
|
31820
|
-
contactProfile: string | null;
|
31821
|
-
socialProfileUrl: string | null;
|
31822
|
-
tags: {
|
31823
|
-
id: string;
|
31824
|
-
name: string;
|
31825
|
-
createdAt: Date;
|
31826
|
-
updatedAt: Date;
|
31827
|
-
deletedAt: Date | null;
|
31828
|
-
}[];
|
31829
31819
|
company: {
|
31830
31820
|
id: string;
|
31831
31821
|
createdAt: Date;
|
@@ -31836,6 +31826,16 @@ export declare const mainChatContract: {
|
|
31836
31826
|
phone?: string | null | undefined;
|
31837
31827
|
industry?: string | null | undefined;
|
31838
31828
|
} | null;
|
31829
|
+
notes: string | null;
|
31830
|
+
contactProfile: string | null;
|
31831
|
+
socialProfileUrl: string | null;
|
31832
|
+
tags: {
|
31833
|
+
id: string;
|
31834
|
+
name: string;
|
31835
|
+
createdAt: Date;
|
31836
|
+
updatedAt: Date;
|
31837
|
+
deletedAt: Date | null;
|
31838
|
+
}[];
|
31839
31839
|
contactEmails: {
|
31840
31840
|
id: string;
|
31841
31841
|
isPrimary: boolean;
|
@@ -32135,16 +32135,6 @@ export declare const mainChatContract: {
|
|
32135
32135
|
};
|
32136
32136
|
}[];
|
32137
32137
|
}[];
|
32138
|
-
notes: string | null;
|
32139
|
-
contactProfile: string | null;
|
32140
|
-
socialProfileUrl: string | null;
|
32141
|
-
tags: {
|
32142
|
-
id: string;
|
32143
|
-
name: string;
|
32144
|
-
createdAt: Date;
|
32145
|
-
updatedAt: Date;
|
32146
|
-
deletedAt: Date | null;
|
32147
|
-
}[];
|
32148
32138
|
company: {
|
32149
32139
|
id: string;
|
32150
32140
|
createdAt: Date;
|
@@ -32155,6 +32145,16 @@ export declare const mainChatContract: {
|
|
32155
32145
|
phone?: string | null | undefined;
|
32156
32146
|
industry?: string | null | undefined;
|
32157
32147
|
} | null;
|
32148
|
+
notes: string | null;
|
32149
|
+
contactProfile: string | null;
|
32150
|
+
socialProfileUrl: string | null;
|
32151
|
+
tags: {
|
32152
|
+
id: string;
|
32153
|
+
name: string;
|
32154
|
+
createdAt: Date;
|
32155
|
+
updatedAt: Date;
|
32156
|
+
deletedAt: Date | null;
|
32157
|
+
}[];
|
32158
32158
|
contactEmails: {
|
32159
32159
|
id: string;
|
32160
32160
|
isPrimary: boolean;
|
@@ -32456,16 +32456,6 @@ export declare const mainChatContract: {
|
|
32456
32456
|
};
|
32457
32457
|
}[];
|
32458
32458
|
}[];
|
32459
|
-
notes: string | null;
|
32460
|
-
contactProfile: string | null;
|
32461
|
-
socialProfileUrl: string | null;
|
32462
|
-
tags: {
|
32463
|
-
id: string;
|
32464
|
-
name: string;
|
32465
|
-
createdAt: Date;
|
32466
|
-
updatedAt: Date;
|
32467
|
-
deletedAt: Date | null;
|
32468
|
-
}[];
|
32469
32459
|
company: {
|
32470
32460
|
id: string;
|
32471
32461
|
createdAt: Date;
|
@@ -32476,6 +32466,16 @@ export declare const mainChatContract: {
|
|
32476
32466
|
phone?: string | null | undefined;
|
32477
32467
|
industry?: string | null | undefined;
|
32478
32468
|
} | null;
|
32469
|
+
notes: string | null;
|
32470
|
+
contactProfile: string | null;
|
32471
|
+
socialProfileUrl: string | null;
|
32472
|
+
tags: {
|
32473
|
+
id: string;
|
32474
|
+
name: string;
|
32475
|
+
createdAt: Date;
|
32476
|
+
updatedAt: Date;
|
32477
|
+
deletedAt: Date | null;
|
32478
|
+
}[];
|
32479
32479
|
contactEmails: {
|
32480
32480
|
id: string;
|
32481
32481
|
isPrimary: boolean;
|
@@ -32778,16 +32778,6 @@ export declare const mainChatContract: {
|
|
32778
32778
|
};
|
32779
32779
|
}[];
|
32780
32780
|
}[];
|
32781
|
-
notes: string | null;
|
32782
|
-
contactProfile: string | null;
|
32783
|
-
socialProfileUrl: string | null;
|
32784
|
-
tags: {
|
32785
|
-
id: string;
|
32786
|
-
name: string;
|
32787
|
-
createdAt: Date;
|
32788
|
-
updatedAt: Date;
|
32789
|
-
deletedAt: Date | null;
|
32790
|
-
}[];
|
32791
32781
|
company: {
|
32792
32782
|
id: string;
|
32793
32783
|
createdAt: Date;
|
@@ -32798,6 +32788,16 @@ export declare const mainChatContract: {
|
|
32798
32788
|
phone?: string | null | undefined;
|
32799
32789
|
industry?: string | null | undefined;
|
32800
32790
|
} | null;
|
32791
|
+
notes: string | null;
|
32792
|
+
contactProfile: string | null;
|
32793
|
+
socialProfileUrl: string | null;
|
32794
|
+
tags: {
|
32795
|
+
id: string;
|
32796
|
+
name: string;
|
32797
|
+
createdAt: Date;
|
32798
|
+
updatedAt: Date;
|
32799
|
+
deletedAt: Date | null;
|
32800
|
+
}[];
|
32801
32801
|
contactEmails: {
|
32802
32802
|
id: string;
|
32803
32803
|
isPrimary: boolean;
|
@@ -34225,16 +34225,6 @@ export declare const mainChatContract: {
|
|
34225
34225
|
};
|
34226
34226
|
}[];
|
34227
34227
|
}[];
|
34228
|
-
notes: string | null;
|
34229
|
-
contactProfile: string | null;
|
34230
|
-
socialProfileUrl: string | null;
|
34231
|
-
tags: {
|
34232
|
-
id: string;
|
34233
|
-
name: string;
|
34234
|
-
createdAt: Date;
|
34235
|
-
updatedAt: Date;
|
34236
|
-
deletedAt: Date | null;
|
34237
|
-
}[];
|
34238
34228
|
company: {
|
34239
34229
|
id: string;
|
34240
34230
|
createdAt: Date;
|
@@ -34245,6 +34235,16 @@ export declare const mainChatContract: {
|
|
34245
34235
|
phone?: string | null | undefined;
|
34246
34236
|
industry?: string | null | undefined;
|
34247
34237
|
} | null;
|
34238
|
+
notes: string | null;
|
34239
|
+
contactProfile: string | null;
|
34240
|
+
socialProfileUrl: string | null;
|
34241
|
+
tags: {
|
34242
|
+
id: string;
|
34243
|
+
name: string;
|
34244
|
+
createdAt: Date;
|
34245
|
+
updatedAt: Date;
|
34246
|
+
deletedAt: Date | null;
|
34247
|
+
}[];
|
34248
34248
|
contactEmails: {
|
34249
34249
|
id: string;
|
34250
34250
|
isPrimary: boolean;
|
@@ -34328,16 +34328,6 @@ export declare const mainChatContract: {
|
|
34328
34328
|
};
|
34329
34329
|
}[];
|
34330
34330
|
}[];
|
34331
|
-
notes: string | null;
|
34332
|
-
contactProfile: string | null;
|
34333
|
-
socialProfileUrl: string | null;
|
34334
|
-
tags: {
|
34335
|
-
id: string;
|
34336
|
-
name: string;
|
34337
|
-
createdAt: Date;
|
34338
|
-
updatedAt: Date;
|
34339
|
-
deletedAt: Date | null;
|
34340
|
-
}[];
|
34341
34331
|
company: {
|
34342
34332
|
id: string;
|
34343
34333
|
createdAt: Date;
|
@@ -34348,6 +34338,16 @@ export declare const mainChatContract: {
|
|
34348
34338
|
phone?: string | null | undefined;
|
34349
34339
|
industry?: string | null | undefined;
|
34350
34340
|
} | null;
|
34341
|
+
notes: string | null;
|
34342
|
+
contactProfile: string | null;
|
34343
|
+
socialProfileUrl: string | null;
|
34344
|
+
tags: {
|
34345
|
+
id: string;
|
34346
|
+
name: string;
|
34347
|
+
createdAt: Date;
|
34348
|
+
updatedAt: Date;
|
34349
|
+
deletedAt: Date | null;
|
34350
|
+
}[];
|
34351
34351
|
contactEmails: {
|
34352
34352
|
id: string;
|
34353
34353
|
isPrimary: boolean;
|
@@ -34445,16 +34445,6 @@ export declare const mainChatContract: {
|
|
34445
34445
|
};
|
34446
34446
|
}[];
|
34447
34447
|
}[];
|
34448
|
-
notes: string | null;
|
34449
|
-
contactProfile: string | null;
|
34450
|
-
socialProfileUrl: string | null;
|
34451
|
-
tags: {
|
34452
|
-
id: string;
|
34453
|
-
name: string;
|
34454
|
-
createdAt: Date;
|
34455
|
-
updatedAt: Date;
|
34456
|
-
deletedAt: Date | null;
|
34457
|
-
}[];
|
34458
34448
|
company: {
|
34459
34449
|
id: string;
|
34460
34450
|
createdAt: Date;
|
@@ -34465,6 +34455,16 @@ export declare const mainChatContract: {
|
|
34465
34455
|
phone?: string | null | undefined;
|
34466
34456
|
industry?: string | null | undefined;
|
34467
34457
|
} | null;
|
34458
|
+
notes: string | null;
|
34459
|
+
contactProfile: string | null;
|
34460
|
+
socialProfileUrl: string | null;
|
34461
|
+
tags: {
|
34462
|
+
id: string;
|
34463
|
+
name: string;
|
34464
|
+
createdAt: Date;
|
34465
|
+
updatedAt: Date;
|
34466
|
+
deletedAt: Date | null;
|
34467
|
+
}[];
|
34468
34468
|
contactEmails: {
|
34469
34469
|
id: string;
|
34470
34470
|
isPrimary: boolean;
|
@@ -34563,16 +34563,6 @@ export declare const mainChatContract: {
|
|
34563
34563
|
};
|
34564
34564
|
}[];
|
34565
34565
|
}[];
|
34566
|
-
notes: string | null;
|
34567
|
-
contactProfile: string | null;
|
34568
|
-
socialProfileUrl: string | null;
|
34569
|
-
tags: {
|
34570
|
-
id: string;
|
34571
|
-
name: string;
|
34572
|
-
createdAt: Date;
|
34573
|
-
updatedAt: Date;
|
34574
|
-
deletedAt: Date | null;
|
34575
|
-
}[];
|
34576
34566
|
company: {
|
34577
34567
|
id: string;
|
34578
34568
|
createdAt: Date;
|
@@ -34583,6 +34573,16 @@ export declare const mainChatContract: {
|
|
34583
34573
|
phone?: string | null | undefined;
|
34584
34574
|
industry?: string | null | undefined;
|
34585
34575
|
} | null;
|
34576
|
+
notes: string | null;
|
34577
|
+
contactProfile: string | null;
|
34578
|
+
socialProfileUrl: string | null;
|
34579
|
+
tags: {
|
34580
|
+
id: string;
|
34581
|
+
name: string;
|
34582
|
+
createdAt: Date;
|
34583
|
+
updatedAt: Date;
|
34584
|
+
deletedAt: Date | null;
|
34585
|
+
}[];
|
34586
34586
|
contactEmails: {
|
34587
34587
|
id: string;
|
34588
34588
|
isPrimary: boolean;
|
@@ -35571,16 +35571,6 @@ export declare const mainChatContract: {
|
|
35571
35571
|
};
|
35572
35572
|
}[];
|
35573
35573
|
}[];
|
35574
|
-
notes: string | null;
|
35575
|
-
contactProfile: string | null;
|
35576
|
-
socialProfileUrl: string | null;
|
35577
|
-
tags: {
|
35578
|
-
id: string;
|
35579
|
-
name: string;
|
35580
|
-
createdAt: Date;
|
35581
|
-
updatedAt: Date;
|
35582
|
-
deletedAt: Date | null;
|
35583
|
-
}[];
|
35584
35574
|
company: {
|
35585
35575
|
id: string;
|
35586
35576
|
createdAt: Date;
|
@@ -35591,6 +35581,16 @@ export declare const mainChatContract: {
|
|
35591
35581
|
phone?: string | null | undefined;
|
35592
35582
|
industry?: string | null | undefined;
|
35593
35583
|
} | null;
|
35584
|
+
notes: string | null;
|
35585
|
+
contactProfile: string | null;
|
35586
|
+
socialProfileUrl: string | null;
|
35587
|
+
tags: {
|
35588
|
+
id: string;
|
35589
|
+
name: string;
|
35590
|
+
createdAt: Date;
|
35591
|
+
updatedAt: Date;
|
35592
|
+
deletedAt: Date | null;
|
35593
|
+
}[];
|
35594
35594
|
contactEmails: {
|
35595
35595
|
id: string;
|
35596
35596
|
isPrimary: boolean;
|
@@ -35674,16 +35674,6 @@ export declare const mainChatContract: {
|
|
35674
35674
|
};
|
35675
35675
|
}[];
|
35676
35676
|
}[];
|
35677
|
-
notes: string | null;
|
35678
|
-
contactProfile: string | null;
|
35679
|
-
socialProfileUrl: string | null;
|
35680
|
-
tags: {
|
35681
|
-
id: string;
|
35682
|
-
name: string;
|
35683
|
-
createdAt: Date;
|
35684
|
-
updatedAt: Date;
|
35685
|
-
deletedAt: Date | null;
|
35686
|
-
}[];
|
35687
35677
|
company: {
|
35688
35678
|
id: string;
|
35689
35679
|
createdAt: Date;
|
@@ -35694,6 +35684,16 @@ export declare const mainChatContract: {
|
|
35694
35684
|
phone?: string | null | undefined;
|
35695
35685
|
industry?: string | null | undefined;
|
35696
35686
|
} | null;
|
35687
|
+
notes: string | null;
|
35688
|
+
contactProfile: string | null;
|
35689
|
+
socialProfileUrl: string | null;
|
35690
|
+
tags: {
|
35691
|
+
id: string;
|
35692
|
+
name: string;
|
35693
|
+
createdAt: Date;
|
35694
|
+
updatedAt: Date;
|
35695
|
+
deletedAt: Date | null;
|
35696
|
+
}[];
|
35697
35697
|
contactEmails: {
|
35698
35698
|
id: string;
|
35699
35699
|
isPrimary: boolean;
|
@@ -35829,16 +35829,6 @@ export declare const mainChatContract: {
|
|
35829
35829
|
};
|
35830
35830
|
}[];
|
35831
35831
|
}[];
|
35832
|
-
notes: string | null;
|
35833
|
-
contactProfile: string | null;
|
35834
|
-
socialProfileUrl: string | null;
|
35835
|
-
tags: {
|
35836
|
-
id: string;
|
35837
|
-
name: string;
|
35838
|
-
createdAt: Date;
|
35839
|
-
updatedAt: Date;
|
35840
|
-
deletedAt: Date | null;
|
35841
|
-
}[];
|
35842
35832
|
company: {
|
35843
35833
|
id: string;
|
35844
35834
|
createdAt: Date;
|
@@ -35849,6 +35839,16 @@ export declare const mainChatContract: {
|
|
35849
35839
|
phone?: string | null | undefined;
|
35850
35840
|
industry?: string | null | undefined;
|
35851
35841
|
} | null;
|
35842
|
+
notes: string | null;
|
35843
|
+
contactProfile: string | null;
|
35844
|
+
socialProfileUrl: string | null;
|
35845
|
+
tags: {
|
35846
|
+
id: string;
|
35847
|
+
name: string;
|
35848
|
+
createdAt: Date;
|
35849
|
+
updatedAt: Date;
|
35850
|
+
deletedAt: Date | null;
|
35851
|
+
}[];
|
35852
35852
|
contactEmails: {
|
35853
35853
|
id: string;
|
35854
35854
|
isPrimary: boolean;
|
@@ -35953,16 +35953,6 @@ export declare const mainChatContract: {
|
|
35953
35953
|
};
|
35954
35954
|
}[];
|
35955
35955
|
}[];
|
35956
|
-
notes: string | null;
|
35957
|
-
contactProfile: string | null;
|
35958
|
-
socialProfileUrl: string | null;
|
35959
|
-
tags: {
|
35960
|
-
id: string;
|
35961
|
-
name: string;
|
35962
|
-
createdAt: Date;
|
35963
|
-
updatedAt: Date;
|
35964
|
-
deletedAt: Date | null;
|
35965
|
-
}[];
|
35966
35956
|
company: {
|
35967
35957
|
id: string;
|
35968
35958
|
createdAt: Date;
|
@@ -35973,6 +35963,16 @@ export declare const mainChatContract: {
|
|
35973
35963
|
phone?: string | null | undefined;
|
35974
35964
|
industry?: string | null | undefined;
|
35975
35965
|
} | null;
|
35966
|
+
notes: string | null;
|
35967
|
+
contactProfile: string | null;
|
35968
|
+
socialProfileUrl: string | null;
|
35969
|
+
tags: {
|
35970
|
+
id: string;
|
35971
|
+
name: string;
|
35972
|
+
createdAt: Date;
|
35973
|
+
updatedAt: Date;
|
35974
|
+
deletedAt: Date | null;
|
35975
|
+
}[];
|
35976
35976
|
contactEmails: {
|
35977
35977
|
id: string;
|
35978
35978
|
isPrimary: boolean;
|
@@ -36253,16 +36253,6 @@ export declare const mainChatContract: {
|
|
36253
36253
|
};
|
36254
36254
|
}[];
|
36255
36255
|
}[];
|
36256
|
-
notes: string | null;
|
36257
|
-
contactProfile: string | null;
|
36258
|
-
socialProfileUrl: string | null;
|
36259
|
-
tags: {
|
36260
|
-
id: string;
|
36261
|
-
name: string;
|
36262
|
-
createdAt: Date;
|
36263
|
-
updatedAt: Date;
|
36264
|
-
deletedAt: Date | null;
|
36265
|
-
}[];
|
36266
36256
|
company: {
|
36267
36257
|
id: string;
|
36268
36258
|
createdAt: Date;
|
@@ -36273,6 +36263,16 @@ export declare const mainChatContract: {
|
|
36273
36263
|
phone?: string | null | undefined;
|
36274
36264
|
industry?: string | null | undefined;
|
36275
36265
|
} | null;
|
36266
|
+
notes: string | null;
|
36267
|
+
contactProfile: string | null;
|
36268
|
+
socialProfileUrl: string | null;
|
36269
|
+
tags: {
|
36270
|
+
id: string;
|
36271
|
+
name: string;
|
36272
|
+
createdAt: Date;
|
36273
|
+
updatedAt: Date;
|
36274
|
+
deletedAt: Date | null;
|
36275
|
+
}[];
|
36276
36276
|
contactEmails: {
|
36277
36277
|
id: string;
|
36278
36278
|
isPrimary: boolean;
|
@@ -36377,16 +36377,6 @@ export declare const mainChatContract: {
|
|
36377
36377
|
};
|
36378
36378
|
}[];
|
36379
36379
|
}[];
|
36380
|
-
notes: string | null;
|
36381
|
-
contactProfile: string | null;
|
36382
|
-
socialProfileUrl: string | null;
|
36383
|
-
tags: {
|
36384
|
-
id: string;
|
36385
|
-
name: string;
|
36386
|
-
createdAt: Date;
|
36387
|
-
updatedAt: Date;
|
36388
|
-
deletedAt: Date | null;
|
36389
|
-
}[];
|
36390
36380
|
company: {
|
36391
36381
|
id: string;
|
36392
36382
|
createdAt: Date;
|
@@ -36397,6 +36387,16 @@ export declare const mainChatContract: {
|
|
36397
36387
|
phone?: string | null | undefined;
|
36398
36388
|
industry?: string | null | undefined;
|
36399
36389
|
} | null;
|
36390
|
+
notes: string | null;
|
36391
|
+
contactProfile: string | null;
|
36392
|
+
socialProfileUrl: string | null;
|
36393
|
+
tags: {
|
36394
|
+
id: string;
|
36395
|
+
name: string;
|
36396
|
+
createdAt: Date;
|
36397
|
+
updatedAt: Date;
|
36398
|
+
deletedAt: Date | null;
|
36399
|
+
}[];
|
36400
36400
|
contactEmails: {
|
36401
36401
|
id: string;
|
36402
36402
|
isPrimary: boolean;
|
@@ -36679,16 +36679,6 @@ export declare const mainChatContract: {
|
|
36679
36679
|
};
|
36680
36680
|
}[];
|
36681
36681
|
}[];
|
36682
|
-
notes: string | null;
|
36683
|
-
contactProfile: string | null;
|
36684
|
-
socialProfileUrl: string | null;
|
36685
|
-
tags: {
|
36686
|
-
id: string;
|
36687
|
-
name: string;
|
36688
|
-
createdAt: Date;
|
36689
|
-
updatedAt: Date;
|
36690
|
-
deletedAt: Date | null;
|
36691
|
-
}[];
|
36692
36682
|
company: {
|
36693
36683
|
id: string;
|
36694
36684
|
createdAt: Date;
|
@@ -36699,6 +36689,16 @@ export declare const mainChatContract: {
|
|
36699
36689
|
phone?: string | null | undefined;
|
36700
36690
|
industry?: string | null | undefined;
|
36701
36691
|
} | null;
|
36692
|
+
notes: string | null;
|
36693
|
+
contactProfile: string | null;
|
36694
|
+
socialProfileUrl: string | null;
|
36695
|
+
tags: {
|
36696
|
+
id: string;
|
36697
|
+
name: string;
|
36698
|
+
createdAt: Date;
|
36699
|
+
updatedAt: Date;
|
36700
|
+
deletedAt: Date | null;
|
36701
|
+
}[];
|
36702
36702
|
contactEmails: {
|
36703
36703
|
id: string;
|
36704
36704
|
isPrimary: boolean;
|
@@ -36803,16 +36803,6 @@ export declare const mainChatContract: {
|
|
36803
36803
|
};
|
36804
36804
|
}[];
|
36805
36805
|
}[];
|
36806
|
-
notes: string | null;
|
36807
|
-
contactProfile: string | null;
|
36808
|
-
socialProfileUrl: string | null;
|
36809
|
-
tags: {
|
36810
|
-
id: string;
|
36811
|
-
name: string;
|
36812
|
-
createdAt: Date;
|
36813
|
-
updatedAt: Date;
|
36814
|
-
deletedAt: Date | null;
|
36815
|
-
}[];
|
36816
36806
|
company: {
|
36817
36807
|
id: string;
|
36818
36808
|
createdAt: Date;
|
@@ -36823,6 +36813,16 @@ export declare const mainChatContract: {
|
|
36823
36813
|
phone?: string | null | undefined;
|
36824
36814
|
industry?: string | null | undefined;
|
36825
36815
|
} | null;
|
36816
|
+
notes: string | null;
|
36817
|
+
contactProfile: string | null;
|
36818
|
+
socialProfileUrl: string | null;
|
36819
|
+
tags: {
|
36820
|
+
id: string;
|
36821
|
+
name: string;
|
36822
|
+
createdAt: Date;
|
36823
|
+
updatedAt: Date;
|
36824
|
+
deletedAt: Date | null;
|
36825
|
+
}[];
|
36826
36826
|
contactEmails: {
|
36827
36827
|
id: string;
|
36828
36828
|
isPrimary: boolean;
|
@@ -37106,16 +37106,6 @@ export declare const mainChatContract: {
|
|
37106
37106
|
};
|
37107
37107
|
}[];
|
37108
37108
|
}[];
|
37109
|
-
notes: string | null;
|
37110
|
-
contactProfile: string | null;
|
37111
|
-
socialProfileUrl: string | null;
|
37112
|
-
tags: {
|
37113
|
-
id: string;
|
37114
|
-
name: string;
|
37115
|
-
createdAt: Date;
|
37116
|
-
updatedAt: Date;
|
37117
|
-
deletedAt: Date | null;
|
37118
|
-
}[];
|
37119
37109
|
company: {
|
37120
37110
|
id: string;
|
37121
37111
|
createdAt: Date;
|
@@ -37126,6 +37116,16 @@ export declare const mainChatContract: {
|
|
37126
37116
|
phone?: string | null | undefined;
|
37127
37117
|
industry?: string | null | undefined;
|
37128
37118
|
} | null;
|
37119
|
+
notes: string | null;
|
37120
|
+
contactProfile: string | null;
|
37121
|
+
socialProfileUrl: string | null;
|
37122
|
+
tags: {
|
37123
|
+
id: string;
|
37124
|
+
name: string;
|
37125
|
+
createdAt: Date;
|
37126
|
+
updatedAt: Date;
|
37127
|
+
deletedAt: Date | null;
|
37128
|
+
}[];
|
37129
37129
|
contactEmails: {
|
37130
37130
|
id: string;
|
37131
37131
|
isPrimary: boolean;
|
@@ -37230,16 +37230,6 @@ export declare const mainChatContract: {
|
|
37230
37230
|
};
|
37231
37231
|
}[];
|
37232
37232
|
}[];
|
37233
|
-
notes: string | null;
|
37234
|
-
contactProfile: string | null;
|
37235
|
-
socialProfileUrl: string | null;
|
37236
|
-
tags: {
|
37237
|
-
id: string;
|
37238
|
-
name: string;
|
37239
|
-
createdAt: Date;
|
37240
|
-
updatedAt: Date;
|
37241
|
-
deletedAt: Date | null;
|
37242
|
-
}[];
|
37243
37233
|
company: {
|
37244
37234
|
id: string;
|
37245
37235
|
createdAt: Date;
|
@@ -37250,6 +37240,16 @@ export declare const mainChatContract: {
|
|
37250
37240
|
phone?: string | null | undefined;
|
37251
37241
|
industry?: string | null | undefined;
|
37252
37242
|
} | null;
|
37243
|
+
notes: string | null;
|
37244
|
+
contactProfile: string | null;
|
37245
|
+
socialProfileUrl: string | null;
|
37246
|
+
tags: {
|
37247
|
+
id: string;
|
37248
|
+
name: string;
|
37249
|
+
createdAt: Date;
|
37250
|
+
updatedAt: Date;
|
37251
|
+
deletedAt: Date | null;
|
37252
|
+
}[];
|
37253
37253
|
contactEmails: {
|
37254
37254
|
id: string;
|
37255
37255
|
isPrimary: boolean;
|
@@ -38668,16 +38668,6 @@ export declare const mainChatContract: {
|
|
38668
38668
|
};
|
38669
38669
|
}[];
|
38670
38670
|
}[];
|
38671
|
-
notes: string | null;
|
38672
|
-
contactProfile: string | null;
|
38673
|
-
socialProfileUrl: string | null;
|
38674
|
-
tags: {
|
38675
|
-
id: string;
|
38676
|
-
name: string;
|
38677
|
-
createdAt: Date;
|
38678
|
-
updatedAt: Date;
|
38679
|
-
deletedAt: Date | null;
|
38680
|
-
}[];
|
38681
38671
|
company: {
|
38682
38672
|
id: string;
|
38683
38673
|
createdAt: Date;
|
@@ -38688,6 +38678,16 @@ export declare const mainChatContract: {
|
|
38688
38678
|
phone?: string | null | undefined;
|
38689
38679
|
industry?: string | null | undefined;
|
38690
38680
|
} | null;
|
38681
|
+
notes: string | null;
|
38682
|
+
contactProfile: string | null;
|
38683
|
+
socialProfileUrl: string | null;
|
38684
|
+
tags: {
|
38685
|
+
id: string;
|
38686
|
+
name: string;
|
38687
|
+
createdAt: Date;
|
38688
|
+
updatedAt: Date;
|
38689
|
+
deletedAt: Date | null;
|
38690
|
+
}[];
|
38691
38691
|
contactEmails: {
|
38692
38692
|
id: string;
|
38693
38693
|
isPrimary: boolean;
|
@@ -38771,16 +38771,6 @@ export declare const mainChatContract: {
|
|
38771
38771
|
};
|
38772
38772
|
}[];
|
38773
38773
|
}[];
|
38774
|
-
notes: string | null;
|
38775
|
-
contactProfile: string | null;
|
38776
|
-
socialProfileUrl: string | null;
|
38777
|
-
tags: {
|
38778
|
-
id: string;
|
38779
|
-
name: string;
|
38780
|
-
createdAt: Date;
|
38781
|
-
updatedAt: Date;
|
38782
|
-
deletedAt: Date | null;
|
38783
|
-
}[];
|
38784
38774
|
company: {
|
38785
38775
|
id: string;
|
38786
38776
|
createdAt: Date;
|
@@ -38791,6 +38781,16 @@ export declare const mainChatContract: {
|
|
38791
38781
|
phone?: string | null | undefined;
|
38792
38782
|
industry?: string | null | undefined;
|
38793
38783
|
} | null;
|
38784
|
+
notes: string | null;
|
38785
|
+
contactProfile: string | null;
|
38786
|
+
socialProfileUrl: string | null;
|
38787
|
+
tags: {
|
38788
|
+
id: string;
|
38789
|
+
name: string;
|
38790
|
+
createdAt: Date;
|
38791
|
+
updatedAt: Date;
|
38792
|
+
deletedAt: Date | null;
|
38793
|
+
}[];
|
38794
38794
|
contactEmails: {
|
38795
38795
|
id: string;
|
38796
38796
|
isPrimary: boolean;
|
@@ -38888,16 +38888,6 @@ export declare const mainChatContract: {
|
|
38888
38888
|
};
|
38889
38889
|
}[];
|
38890
38890
|
}[];
|
38891
|
-
notes: string | null;
|
38892
|
-
contactProfile: string | null;
|
38893
|
-
socialProfileUrl: string | null;
|
38894
|
-
tags: {
|
38895
|
-
id: string;
|
38896
|
-
name: string;
|
38897
|
-
createdAt: Date;
|
38898
|
-
updatedAt: Date;
|
38899
|
-
deletedAt: Date | null;
|
38900
|
-
}[];
|
38901
38891
|
company: {
|
38902
38892
|
id: string;
|
38903
38893
|
createdAt: Date;
|
@@ -38908,6 +38898,16 @@ export declare const mainChatContract: {
|
|
38908
38898
|
phone?: string | null | undefined;
|
38909
38899
|
industry?: string | null | undefined;
|
38910
38900
|
} | null;
|
38901
|
+
notes: string | null;
|
38902
|
+
contactProfile: string | null;
|
38903
|
+
socialProfileUrl: string | null;
|
38904
|
+
tags: {
|
38905
|
+
id: string;
|
38906
|
+
name: string;
|
38907
|
+
createdAt: Date;
|
38908
|
+
updatedAt: Date;
|
38909
|
+
deletedAt: Date | null;
|
38910
|
+
}[];
|
38911
38911
|
contactEmails: {
|
38912
38912
|
id: string;
|
38913
38913
|
isPrimary: boolean;
|
@@ -39006,16 +39006,6 @@ export declare const mainChatContract: {
|
|
39006
39006
|
};
|
39007
39007
|
}[];
|
39008
39008
|
}[];
|
39009
|
-
notes: string | null;
|
39010
|
-
contactProfile: string | null;
|
39011
|
-
socialProfileUrl: string | null;
|
39012
|
-
tags: {
|
39013
|
-
id: string;
|
39014
|
-
name: string;
|
39015
|
-
createdAt: Date;
|
39016
|
-
updatedAt: Date;
|
39017
|
-
deletedAt: Date | null;
|
39018
|
-
}[];
|
39019
39009
|
company: {
|
39020
39010
|
id: string;
|
39021
39011
|
createdAt: Date;
|
@@ -39026,6 +39016,16 @@ export declare const mainChatContract: {
|
|
39026
39016
|
phone?: string | null | undefined;
|
39027
39017
|
industry?: string | null | undefined;
|
39028
39018
|
} | null;
|
39019
|
+
notes: string | null;
|
39020
|
+
contactProfile: string | null;
|
39021
|
+
socialProfileUrl: string | null;
|
39022
|
+
tags: {
|
39023
|
+
id: string;
|
39024
|
+
name: string;
|
39025
|
+
createdAt: Date;
|
39026
|
+
updatedAt: Date;
|
39027
|
+
deletedAt: Date | null;
|
39028
|
+
}[];
|
39029
39029
|
contactEmails: {
|
39030
39030
|
id: string;
|
39031
39031
|
isPrimary: boolean;
|
@@ -39535,16 +39535,6 @@ export declare const mainChatContract: {
|
|
39535
39535
|
};
|
39536
39536
|
}[];
|
39537
39537
|
}[];
|
39538
|
-
notes: string | null;
|
39539
|
-
contactProfile: string | null;
|
39540
|
-
socialProfileUrl: string | null;
|
39541
|
-
tags: {
|
39542
|
-
id: string;
|
39543
|
-
name: string;
|
39544
|
-
createdAt: Date;
|
39545
|
-
updatedAt: Date;
|
39546
|
-
deletedAt: Date | null;
|
39547
|
-
}[];
|
39548
39538
|
company: {
|
39549
39539
|
id: string;
|
39550
39540
|
createdAt: Date;
|
@@ -39555,6 +39545,16 @@ export declare const mainChatContract: {
|
|
39555
39545
|
phone?: string | null | undefined;
|
39556
39546
|
industry?: string | null | undefined;
|
39557
39547
|
} | null;
|
39548
|
+
notes: string | null;
|
39549
|
+
contactProfile: string | null;
|
39550
|
+
socialProfileUrl: string | null;
|
39551
|
+
tags: {
|
39552
|
+
id: string;
|
39553
|
+
name: string;
|
39554
|
+
createdAt: Date;
|
39555
|
+
updatedAt: Date;
|
39556
|
+
deletedAt: Date | null;
|
39557
|
+
}[];
|
39558
39558
|
contactEmails: {
|
39559
39559
|
id: string;
|
39560
39560
|
isPrimary: boolean;
|
@@ -39855,16 +39855,6 @@ export declare const mainChatContract: {
|
|
39855
39855
|
};
|
39856
39856
|
}[];
|
39857
39857
|
}[];
|
39858
|
-
notes: string | null;
|
39859
|
-
contactProfile: string | null;
|
39860
|
-
socialProfileUrl: string | null;
|
39861
|
-
tags: {
|
39862
|
-
id: string;
|
39863
|
-
name: string;
|
39864
|
-
createdAt: Date;
|
39865
|
-
updatedAt: Date;
|
39866
|
-
deletedAt: Date | null;
|
39867
|
-
}[];
|
39868
39858
|
company: {
|
39869
39859
|
id: string;
|
39870
39860
|
createdAt: Date;
|
@@ -39875,6 +39865,16 @@ export declare const mainChatContract: {
|
|
39875
39865
|
phone?: string | null | undefined;
|
39876
39866
|
industry?: string | null | undefined;
|
39877
39867
|
} | null;
|
39868
|
+
notes: string | null;
|
39869
|
+
contactProfile: string | null;
|
39870
|
+
socialProfileUrl: string | null;
|
39871
|
+
tags: {
|
39872
|
+
id: string;
|
39873
|
+
name: string;
|
39874
|
+
createdAt: Date;
|
39875
|
+
updatedAt: Date;
|
39876
|
+
deletedAt: Date | null;
|
39877
|
+
}[];
|
39878
39878
|
contactEmails: {
|
39879
39879
|
id: string;
|
39880
39880
|
isPrimary: boolean;
|
@@ -40177,16 +40177,6 @@ export declare const mainChatContract: {
|
|
40177
40177
|
};
|
40178
40178
|
}[];
|
40179
40179
|
}[];
|
40180
|
-
notes: string | null;
|
40181
|
-
contactProfile: string | null;
|
40182
|
-
socialProfileUrl: string | null;
|
40183
|
-
tags: {
|
40184
|
-
id: string;
|
40185
|
-
name: string;
|
40186
|
-
createdAt: Date;
|
40187
|
-
updatedAt: Date;
|
40188
|
-
deletedAt: Date | null;
|
40189
|
-
}[];
|
40190
40180
|
company: {
|
40191
40181
|
id: string;
|
40192
40182
|
createdAt: Date;
|
@@ -40197,6 +40187,16 @@ export declare const mainChatContract: {
|
|
40197
40187
|
phone?: string | null | undefined;
|
40198
40188
|
industry?: string | null | undefined;
|
40199
40189
|
} | null;
|
40190
|
+
notes: string | null;
|
40191
|
+
contactProfile: string | null;
|
40192
|
+
socialProfileUrl: string | null;
|
40193
|
+
tags: {
|
40194
|
+
id: string;
|
40195
|
+
name: string;
|
40196
|
+
createdAt: Date;
|
40197
|
+
updatedAt: Date;
|
40198
|
+
deletedAt: Date | null;
|
40199
|
+
}[];
|
40200
40200
|
contactEmails: {
|
40201
40201
|
id: string;
|
40202
40202
|
isPrimary: boolean;
|
@@ -40500,16 +40500,6 @@ export declare const mainChatContract: {
|
|
40500
40500
|
};
|
40501
40501
|
}[];
|
40502
40502
|
}[];
|
40503
|
-
notes: string | null;
|
40504
|
-
contactProfile: string | null;
|
40505
|
-
socialProfileUrl: string | null;
|
40506
|
-
tags: {
|
40507
|
-
id: string;
|
40508
|
-
name: string;
|
40509
|
-
createdAt: Date;
|
40510
|
-
updatedAt: Date;
|
40511
|
-
deletedAt: Date | null;
|
40512
|
-
}[];
|
40513
40503
|
company: {
|
40514
40504
|
id: string;
|
40515
40505
|
createdAt: Date;
|
@@ -40520,6 +40510,16 @@ export declare const mainChatContract: {
|
|
40520
40510
|
phone?: string | null | undefined;
|
40521
40511
|
industry?: string | null | undefined;
|
40522
40512
|
} | null;
|
40513
|
+
notes: string | null;
|
40514
|
+
contactProfile: string | null;
|
40515
|
+
socialProfileUrl: string | null;
|
40516
|
+
tags: {
|
40517
|
+
id: string;
|
40518
|
+
name: string;
|
40519
|
+
createdAt: Date;
|
40520
|
+
updatedAt: Date;
|
40521
|
+
deletedAt: Date | null;
|
40522
|
+
}[];
|
40523
40523
|
contactEmails: {
|
40524
40524
|
id: string;
|
40525
40525
|
isPrimary: boolean;
|
@@ -40702,7 +40702,7 @@ export declare const mainChatContract: {
|
|
40702
40702
|
requestId: string;
|
40703
40703
|
}>;
|
40704
40704
|
};
|
40705
|
-
path: "chat/room/:roomid
|
40705
|
+
path: "chat/room/read/:roomid";
|
40706
40706
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
40707
40707
|
'x-tenant': z.ZodString;
|
40708
40708
|
authorization: z.ZodString;
|
@@ -41381,16 +41381,6 @@ export declare const mainChatContract: {
|
|
41381
41381
|
};
|
41382
41382
|
}[];
|
41383
41383
|
}[];
|
41384
|
-
notes: string | null;
|
41385
|
-
contactProfile: string | null;
|
41386
|
-
socialProfileUrl: string | null;
|
41387
|
-
tags: {
|
41388
|
-
id: string;
|
41389
|
-
name: string;
|
41390
|
-
createdAt: Date;
|
41391
|
-
updatedAt: Date;
|
41392
|
-
deletedAt: Date | null;
|
41393
|
-
}[];
|
41394
41384
|
company: {
|
41395
41385
|
id: string;
|
41396
41386
|
createdAt: Date;
|
@@ -41401,6 +41391,16 @@ export declare const mainChatContract: {
|
|
41401
41391
|
phone?: string | null | undefined;
|
41402
41392
|
industry?: string | null | undefined;
|
41403
41393
|
} | null;
|
41394
|
+
notes: string | null;
|
41395
|
+
contactProfile: string | null;
|
41396
|
+
socialProfileUrl: string | null;
|
41397
|
+
tags: {
|
41398
|
+
id: string;
|
41399
|
+
name: string;
|
41400
|
+
createdAt: Date;
|
41401
|
+
updatedAt: Date;
|
41402
|
+
deletedAt: Date | null;
|
41403
|
+
}[];
|
41404
41404
|
contactEmails: {
|
41405
41405
|
id: string;
|
41406
41406
|
isPrimary: boolean;
|
@@ -41484,16 +41484,6 @@ export declare const mainChatContract: {
|
|
41484
41484
|
};
|
41485
41485
|
}[];
|
41486
41486
|
}[];
|
41487
|
-
notes: string | null;
|
41488
|
-
contactProfile: string | null;
|
41489
|
-
socialProfileUrl: string | null;
|
41490
|
-
tags: {
|
41491
|
-
id: string;
|
41492
|
-
name: string;
|
41493
|
-
createdAt: Date;
|
41494
|
-
updatedAt: Date;
|
41495
|
-
deletedAt: Date | null;
|
41496
|
-
}[];
|
41497
41487
|
company: {
|
41498
41488
|
id: string;
|
41499
41489
|
createdAt: Date;
|
@@ -41504,6 +41494,16 @@ export declare const mainChatContract: {
|
|
41504
41494
|
phone?: string | null | undefined;
|
41505
41495
|
industry?: string | null | undefined;
|
41506
41496
|
} | null;
|
41497
|
+
notes: string | null;
|
41498
|
+
contactProfile: string | null;
|
41499
|
+
socialProfileUrl: string | null;
|
41500
|
+
tags: {
|
41501
|
+
id: string;
|
41502
|
+
name: string;
|
41503
|
+
createdAt: Date;
|
41504
|
+
updatedAt: Date;
|
41505
|
+
deletedAt: Date | null;
|
41506
|
+
}[];
|
41507
41507
|
contactEmails: {
|
41508
41508
|
id: string;
|
41509
41509
|
isPrimary: boolean;
|
@@ -41601,16 +41601,6 @@ export declare const mainChatContract: {
|
|
41601
41601
|
};
|
41602
41602
|
}[];
|
41603
41603
|
}[];
|
41604
|
-
notes: string | null;
|
41605
|
-
contactProfile: string | null;
|
41606
|
-
socialProfileUrl: string | null;
|
41607
|
-
tags: {
|
41608
|
-
id: string;
|
41609
|
-
name: string;
|
41610
|
-
createdAt: Date;
|
41611
|
-
updatedAt: Date;
|
41612
|
-
deletedAt: Date | null;
|
41613
|
-
}[];
|
41614
41604
|
company: {
|
41615
41605
|
id: string;
|
41616
41606
|
createdAt: Date;
|
@@ -41621,6 +41611,16 @@ export declare const mainChatContract: {
|
|
41621
41611
|
phone?: string | null | undefined;
|
41622
41612
|
industry?: string | null | undefined;
|
41623
41613
|
} | null;
|
41614
|
+
notes: string | null;
|
41615
|
+
contactProfile: string | null;
|
41616
|
+
socialProfileUrl: string | null;
|
41617
|
+
tags: {
|
41618
|
+
id: string;
|
41619
|
+
name: string;
|
41620
|
+
createdAt: Date;
|
41621
|
+
updatedAt: Date;
|
41622
|
+
deletedAt: Date | null;
|
41623
|
+
}[];
|
41624
41624
|
contactEmails: {
|
41625
41625
|
id: string;
|
41626
41626
|
isPrimary: boolean;
|
@@ -41719,16 +41719,6 @@ export declare const mainChatContract: {
|
|
41719
41719
|
};
|
41720
41720
|
}[];
|
41721
41721
|
}[];
|
41722
|
-
notes: string | null;
|
41723
|
-
contactProfile: string | null;
|
41724
|
-
socialProfileUrl: string | null;
|
41725
|
-
tags: {
|
41726
|
-
id: string;
|
41727
|
-
name: string;
|
41728
|
-
createdAt: Date;
|
41729
|
-
updatedAt: Date;
|
41730
|
-
deletedAt: Date | null;
|
41731
|
-
}[];
|
41732
41722
|
company: {
|
41733
41723
|
id: string;
|
41734
41724
|
createdAt: Date;
|
@@ -41739,6 +41729,16 @@ export declare const mainChatContract: {
|
|
41739
41729
|
phone?: string | null | undefined;
|
41740
41730
|
industry?: string | null | undefined;
|
41741
41731
|
} | null;
|
41732
|
+
notes: string | null;
|
41733
|
+
contactProfile: string | null;
|
41734
|
+
socialProfileUrl: string | null;
|
41735
|
+
tags: {
|
41736
|
+
id: string;
|
41737
|
+
name: string;
|
41738
|
+
createdAt: Date;
|
41739
|
+
updatedAt: Date;
|
41740
|
+
deletedAt: Date | null;
|
41741
|
+
}[];
|
41742
41742
|
contactEmails: {
|
41743
41743
|
id: string;
|
41744
41744
|
isPrimary: boolean;
|
@@ -42810,16 +42810,6 @@ export declare const mainChatContract: {
|
|
42810
42810
|
};
|
42811
42811
|
}[];
|
42812
42812
|
}[];
|
42813
|
-
notes: string | null;
|
42814
|
-
contactProfile: string | null;
|
42815
|
-
socialProfileUrl: string | null;
|
42816
|
-
tags: {
|
42817
|
-
id: string;
|
42818
|
-
name: string;
|
42819
|
-
createdAt: Date;
|
42820
|
-
updatedAt: Date;
|
42821
|
-
deletedAt: Date | null;
|
42822
|
-
}[];
|
42823
42813
|
company: {
|
42824
42814
|
id: string;
|
42825
42815
|
createdAt: Date;
|
@@ -42830,6 +42820,16 @@ export declare const mainChatContract: {
|
|
42830
42820
|
phone?: string | null | undefined;
|
42831
42821
|
industry?: string | null | undefined;
|
42832
42822
|
} | null;
|
42823
|
+
notes: string | null;
|
42824
|
+
contactProfile: string | null;
|
42825
|
+
socialProfileUrl: string | null;
|
42826
|
+
tags: {
|
42827
|
+
id: string;
|
42828
|
+
name: string;
|
42829
|
+
createdAt: Date;
|
42830
|
+
updatedAt: Date;
|
42831
|
+
deletedAt: Date | null;
|
42832
|
+
}[];
|
42833
42833
|
contactEmails: {
|
42834
42834
|
id: string;
|
42835
42835
|
isPrimary: boolean;
|
@@ -43129,16 +43129,6 @@ export declare const mainChatContract: {
|
|
43129
43129
|
};
|
43130
43130
|
}[];
|
43131
43131
|
}[];
|
43132
|
-
notes: string | null;
|
43133
|
-
contactProfile: string | null;
|
43134
|
-
socialProfileUrl: string | null;
|
43135
|
-
tags: {
|
43136
|
-
id: string;
|
43137
|
-
name: string;
|
43138
|
-
createdAt: Date;
|
43139
|
-
updatedAt: Date;
|
43140
|
-
deletedAt: Date | null;
|
43141
|
-
}[];
|
43142
43132
|
company: {
|
43143
43133
|
id: string;
|
43144
43134
|
createdAt: Date;
|
@@ -43149,6 +43139,16 @@ export declare const mainChatContract: {
|
|
43149
43139
|
phone?: string | null | undefined;
|
43150
43140
|
industry?: string | null | undefined;
|
43151
43141
|
} | null;
|
43142
|
+
notes: string | null;
|
43143
|
+
contactProfile: string | null;
|
43144
|
+
socialProfileUrl: string | null;
|
43145
|
+
tags: {
|
43146
|
+
id: string;
|
43147
|
+
name: string;
|
43148
|
+
createdAt: Date;
|
43149
|
+
updatedAt: Date;
|
43150
|
+
deletedAt: Date | null;
|
43151
|
+
}[];
|
43152
43152
|
contactEmails: {
|
43153
43153
|
id: string;
|
43154
43154
|
isPrimary: boolean;
|
@@ -43450,16 +43450,6 @@ export declare const mainChatContract: {
|
|
43450
43450
|
};
|
43451
43451
|
}[];
|
43452
43452
|
}[];
|
43453
|
-
notes: string | null;
|
43454
|
-
contactProfile: string | null;
|
43455
|
-
socialProfileUrl: string | null;
|
43456
|
-
tags: {
|
43457
|
-
id: string;
|
43458
|
-
name: string;
|
43459
|
-
createdAt: Date;
|
43460
|
-
updatedAt: Date;
|
43461
|
-
deletedAt: Date | null;
|
43462
|
-
}[];
|
43463
43453
|
company: {
|
43464
43454
|
id: string;
|
43465
43455
|
createdAt: Date;
|
@@ -43470,6 +43460,16 @@ export declare const mainChatContract: {
|
|
43470
43460
|
phone?: string | null | undefined;
|
43471
43461
|
industry?: string | null | undefined;
|
43472
43462
|
} | null;
|
43463
|
+
notes: string | null;
|
43464
|
+
contactProfile: string | null;
|
43465
|
+
socialProfileUrl: string | null;
|
43466
|
+
tags: {
|
43467
|
+
id: string;
|
43468
|
+
name: string;
|
43469
|
+
createdAt: Date;
|
43470
|
+
updatedAt: Date;
|
43471
|
+
deletedAt: Date | null;
|
43472
|
+
}[];
|
43473
43473
|
contactEmails: {
|
43474
43474
|
id: string;
|
43475
43475
|
isPrimary: boolean;
|
@@ -43775,16 +43775,6 @@ export declare const mainChatContract: {
|
|
43775
43775
|
};
|
43776
43776
|
}[];
|
43777
43777
|
}[];
|
43778
|
-
notes: string | null;
|
43779
|
-
contactProfile: string | null;
|
43780
|
-
socialProfileUrl: string | null;
|
43781
|
-
tags: {
|
43782
|
-
id: string;
|
43783
|
-
name: string;
|
43784
|
-
createdAt: Date;
|
43785
|
-
updatedAt: Date;
|
43786
|
-
deletedAt: Date | null;
|
43787
|
-
}[];
|
43788
43778
|
company: {
|
43789
43779
|
id: string;
|
43790
43780
|
createdAt: Date;
|
@@ -43795,6 +43785,16 @@ export declare const mainChatContract: {
|
|
43795
43785
|
phone?: string | null | undefined;
|
43796
43786
|
industry?: string | null | undefined;
|
43797
43787
|
} | null;
|
43788
|
+
notes: string | null;
|
43789
|
+
contactProfile: string | null;
|
43790
|
+
socialProfileUrl: string | null;
|
43791
|
+
tags: {
|
43792
|
+
id: string;
|
43793
|
+
name: string;
|
43794
|
+
createdAt: Date;
|
43795
|
+
updatedAt: Date;
|
43796
|
+
deletedAt: Date | null;
|
43797
|
+
}[];
|
43798
43798
|
contactEmails: {
|
43799
43799
|
id: string;
|
43800
43800
|
isPrimary: boolean;
|