@kl1/contracts 1.0.52 → 1.0.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1298 -1133
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1296 -1133
- package/dist/index.mjs.map +1 -1
- package/dist/src/channel/index.d.ts +2273 -1438
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +6678 -1560
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +180 -180
- package/dist/src/chat/validation.d.ts +371 -440
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +3026 -1010
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +780 -188
- package/dist/src/comment/schema.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +296 -296
- package/dist/src/contact/schema.d.ts +20 -20
- package/dist/src/contact/validation.d.ts +150 -150
- package/dist/src/contract.d.ts +20591 -8915
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +240 -240
- package/dist/src/cx-log/schema.d.ts +180 -180
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +100 -100
- package/dist/src/line/index.d.ts +301 -6
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/line/schema.d.ts +301 -6
- package/dist/src/line/schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +100 -100
- package/dist/src/telephony-cdr/index.d.ts +180 -180
- package/dist/src/telephony-cdr/schema.d.ts +40 -40
- package/dist/src/ticket/index.d.ts +4128 -1040
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +512 -40
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/{mail/mail-server.d.ts → upload/index.d.ts} +72 -91
- package/dist/src/upload/index.d.ts.map +1 -0
- package/dist/src/upload/schema.d.ts +14 -0
- package/dist/src/upload/schema.d.ts.map +1 -1
- package/dist/src/upload/validation.d.ts +2 -0
- package/dist/src/upload/validation.d.ts.map +1 -0
- package/dist/src/user-presence-status-log/index.d.ts +63 -0
- package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/src/app/index.d.ts +0 -17
- package/dist/src/app/index.d.ts.map +0 -1
- package/dist/src/mail/mail-server.d.ts.map +0 -1
- package/dist/src/platform-contact/schema.d.ts +0 -30
- package/dist/src/platform-contact/schema.d.ts.map +0 -1
@@ -1,12 +1,307 @@
|
|
1
1
|
import z from 'zod';
|
2
2
|
export declare const ConnectLineSchema: z.ZodObject<{
|
3
|
-
|
4
|
-
accessToken: z.ZodString
|
3
|
+
lineId: z.ZodOptional<z.ZodString>;
|
4
|
+
accessToken: z.ZodOptional<z.ZodString>;
|
5
|
+
lineSecret: z.ZodOptional<z.ZodString>;
|
6
|
+
actor: z.ZodObject<{
|
7
|
+
id: z.ZodString;
|
8
|
+
createdAt: z.ZodDate;
|
9
|
+
updatedAt: z.ZodDate;
|
10
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
11
|
+
name: z.ZodString;
|
12
|
+
email: z.ZodString;
|
13
|
+
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
14
|
+
password: z.ZodString;
|
15
|
+
address: z.ZodNullable<z.ZodString>;
|
16
|
+
phone: z.ZodNullable<z.ZodString>;
|
17
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
18
|
+
roles: z.ZodArray<z.ZodObject<{
|
19
|
+
id: z.ZodString;
|
20
|
+
createdAt: z.ZodDate;
|
21
|
+
updatedAt: z.ZodDate;
|
22
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
23
|
+
systemName: z.ZodString;
|
24
|
+
displayName: z.ZodString;
|
25
|
+
description: z.ZodNullable<z.ZodString>;
|
26
|
+
permissions: z.ZodArray<z.ZodObject<{
|
27
|
+
id: z.ZodString;
|
28
|
+
createdAt: z.ZodDate;
|
29
|
+
updatedAt: z.ZodDate;
|
30
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
31
|
+
systemName: z.ZodString;
|
32
|
+
displayName: z.ZodString;
|
33
|
+
description: z.ZodNullable<z.ZodString>;
|
34
|
+
}, "strip", z.ZodTypeAny, {
|
35
|
+
id: string;
|
36
|
+
description: string | null;
|
37
|
+
createdAt: Date;
|
38
|
+
updatedAt: Date;
|
39
|
+
deletedAt: Date | null;
|
40
|
+
systemName: string;
|
41
|
+
displayName: string;
|
42
|
+
}, {
|
43
|
+
id: string;
|
44
|
+
description: string | null;
|
45
|
+
createdAt: Date;
|
46
|
+
updatedAt: Date;
|
47
|
+
deletedAt: Date | null;
|
48
|
+
systemName: string;
|
49
|
+
displayName: string;
|
50
|
+
}>, "many">;
|
51
|
+
}, "strip", z.ZodTypeAny, {
|
52
|
+
id: string;
|
53
|
+
description: string | null;
|
54
|
+
createdAt: Date;
|
55
|
+
updatedAt: Date;
|
56
|
+
deletedAt: Date | null;
|
57
|
+
systemName: string;
|
58
|
+
displayName: string;
|
59
|
+
permissions: {
|
60
|
+
id: string;
|
61
|
+
description: string | null;
|
62
|
+
createdAt: Date;
|
63
|
+
updatedAt: Date;
|
64
|
+
deletedAt: Date | null;
|
65
|
+
systemName: string;
|
66
|
+
displayName: string;
|
67
|
+
}[];
|
68
|
+
}, {
|
69
|
+
id: string;
|
70
|
+
description: string | null;
|
71
|
+
createdAt: Date;
|
72
|
+
updatedAt: Date;
|
73
|
+
deletedAt: Date | null;
|
74
|
+
systemName: string;
|
75
|
+
displayName: string;
|
76
|
+
permissions: {
|
77
|
+
id: string;
|
78
|
+
description: string | null;
|
79
|
+
createdAt: Date;
|
80
|
+
updatedAt: Date;
|
81
|
+
deletedAt: Date | null;
|
82
|
+
systemName: string;
|
83
|
+
displayName: string;
|
84
|
+
}[];
|
85
|
+
}>, "many">;
|
86
|
+
extension: z.ZodObject<{
|
87
|
+
id: z.ZodString;
|
88
|
+
createdAt: z.ZodDate;
|
89
|
+
updatedAt: z.ZodDate;
|
90
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
91
|
+
userId: z.ZodNullable<z.ZodString>;
|
92
|
+
sipServerUrl: z.ZodString;
|
93
|
+
sipUserName: z.ZodString;
|
94
|
+
webphoneLoginUser: z.ZodString;
|
95
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
96
|
+
extensionName: z.ZodString;
|
97
|
+
telephonySignature: z.ZodNullable<z.ZodString>;
|
98
|
+
}, "strip", z.ZodTypeAny, {
|
99
|
+
id: string;
|
100
|
+
createdAt: Date;
|
101
|
+
updatedAt: Date;
|
102
|
+
deletedAt: Date | null;
|
103
|
+
userId: string | null;
|
104
|
+
sipServerUrl: string;
|
105
|
+
sipUserName: string;
|
106
|
+
webphoneLoginUser: string;
|
107
|
+
extensionId: string | null;
|
108
|
+
extensionName: string;
|
109
|
+
telephonySignature: string | null;
|
110
|
+
}, {
|
111
|
+
id: string;
|
112
|
+
createdAt: Date;
|
113
|
+
updatedAt: Date;
|
114
|
+
deletedAt: Date | null;
|
115
|
+
userId: string | null;
|
116
|
+
sipServerUrl: string;
|
117
|
+
sipUserName: string;
|
118
|
+
webphoneLoginUser: string;
|
119
|
+
extensionId: string | null;
|
120
|
+
extensionName: string;
|
121
|
+
telephonySignature: string | null;
|
122
|
+
}>;
|
123
|
+
}, "strip", z.ZodTypeAny, {
|
124
|
+
id: string;
|
125
|
+
address: string | null;
|
126
|
+
name: string;
|
127
|
+
email: string;
|
128
|
+
createdAt: Date;
|
129
|
+
updatedAt: Date;
|
130
|
+
deletedAt: Date | null;
|
131
|
+
emailVerifiedAt: Date | null;
|
132
|
+
password: string;
|
133
|
+
phone: string | null;
|
134
|
+
notificationCount: number | null;
|
135
|
+
roles: {
|
136
|
+
id: string;
|
137
|
+
description: string | null;
|
138
|
+
createdAt: Date;
|
139
|
+
updatedAt: Date;
|
140
|
+
deletedAt: Date | null;
|
141
|
+
systemName: string;
|
142
|
+
displayName: string;
|
143
|
+
permissions: {
|
144
|
+
id: string;
|
145
|
+
description: string | null;
|
146
|
+
createdAt: Date;
|
147
|
+
updatedAt: Date;
|
148
|
+
deletedAt: Date | null;
|
149
|
+
systemName: string;
|
150
|
+
displayName: string;
|
151
|
+
}[];
|
152
|
+
}[];
|
153
|
+
extension: {
|
154
|
+
id: string;
|
155
|
+
createdAt: Date;
|
156
|
+
updatedAt: Date;
|
157
|
+
deletedAt: Date | null;
|
158
|
+
userId: string | null;
|
159
|
+
sipServerUrl: string;
|
160
|
+
sipUserName: string;
|
161
|
+
webphoneLoginUser: string;
|
162
|
+
extensionId: string | null;
|
163
|
+
extensionName: string;
|
164
|
+
telephonySignature: string | null;
|
165
|
+
};
|
166
|
+
}, {
|
167
|
+
id: string;
|
168
|
+
address: string | null;
|
169
|
+
name: string;
|
170
|
+
email: string;
|
171
|
+
createdAt: Date;
|
172
|
+
updatedAt: Date;
|
173
|
+
deletedAt: Date | null;
|
174
|
+
emailVerifiedAt: Date | null;
|
175
|
+
password: string;
|
176
|
+
phone: string | null;
|
177
|
+
notificationCount: number | null;
|
178
|
+
roles: {
|
179
|
+
id: string;
|
180
|
+
description: string | null;
|
181
|
+
createdAt: Date;
|
182
|
+
updatedAt: Date;
|
183
|
+
deletedAt: Date | null;
|
184
|
+
systemName: string;
|
185
|
+
displayName: string;
|
186
|
+
permissions: {
|
187
|
+
id: string;
|
188
|
+
description: string | null;
|
189
|
+
createdAt: Date;
|
190
|
+
updatedAt: Date;
|
191
|
+
deletedAt: Date | null;
|
192
|
+
systemName: string;
|
193
|
+
displayName: string;
|
194
|
+
}[];
|
195
|
+
}[];
|
196
|
+
extension: {
|
197
|
+
id: string;
|
198
|
+
createdAt: Date;
|
199
|
+
updatedAt: Date;
|
200
|
+
deletedAt: Date | null;
|
201
|
+
userId: string | null;
|
202
|
+
sipServerUrl: string;
|
203
|
+
sipUserName: string;
|
204
|
+
webphoneLoginUser: string;
|
205
|
+
extensionId: string | null;
|
206
|
+
extensionName: string;
|
207
|
+
telephonySignature: string | null;
|
208
|
+
};
|
209
|
+
}>;
|
5
210
|
}, "strip", z.ZodTypeAny, {
|
6
|
-
|
7
|
-
|
211
|
+
actor: {
|
212
|
+
id: string;
|
213
|
+
address: string | null;
|
214
|
+
name: string;
|
215
|
+
email: string;
|
216
|
+
createdAt: Date;
|
217
|
+
updatedAt: Date;
|
218
|
+
deletedAt: Date | null;
|
219
|
+
emailVerifiedAt: Date | null;
|
220
|
+
password: string;
|
221
|
+
phone: string | null;
|
222
|
+
notificationCount: number | null;
|
223
|
+
roles: {
|
224
|
+
id: string;
|
225
|
+
description: string | null;
|
226
|
+
createdAt: Date;
|
227
|
+
updatedAt: Date;
|
228
|
+
deletedAt: Date | null;
|
229
|
+
systemName: string;
|
230
|
+
displayName: string;
|
231
|
+
permissions: {
|
232
|
+
id: string;
|
233
|
+
description: string | null;
|
234
|
+
createdAt: Date;
|
235
|
+
updatedAt: Date;
|
236
|
+
deletedAt: Date | null;
|
237
|
+
systemName: string;
|
238
|
+
displayName: string;
|
239
|
+
}[];
|
240
|
+
}[];
|
241
|
+
extension: {
|
242
|
+
id: string;
|
243
|
+
createdAt: Date;
|
244
|
+
updatedAt: Date;
|
245
|
+
deletedAt: Date | null;
|
246
|
+
userId: string | null;
|
247
|
+
sipServerUrl: string;
|
248
|
+
sipUserName: string;
|
249
|
+
webphoneLoginUser: string;
|
250
|
+
extensionId: string | null;
|
251
|
+
extensionName: string;
|
252
|
+
telephonySignature: string | null;
|
253
|
+
};
|
254
|
+
};
|
255
|
+
lineId?: string | undefined;
|
256
|
+
accessToken?: string | undefined;
|
257
|
+
lineSecret?: string | undefined;
|
8
258
|
}, {
|
9
|
-
|
10
|
-
|
259
|
+
actor: {
|
260
|
+
id: string;
|
261
|
+
address: string | null;
|
262
|
+
name: string;
|
263
|
+
email: string;
|
264
|
+
createdAt: Date;
|
265
|
+
updatedAt: Date;
|
266
|
+
deletedAt: Date | null;
|
267
|
+
emailVerifiedAt: Date | null;
|
268
|
+
password: string;
|
269
|
+
phone: string | null;
|
270
|
+
notificationCount: number | null;
|
271
|
+
roles: {
|
272
|
+
id: string;
|
273
|
+
description: string | null;
|
274
|
+
createdAt: Date;
|
275
|
+
updatedAt: Date;
|
276
|
+
deletedAt: Date | null;
|
277
|
+
systemName: string;
|
278
|
+
displayName: string;
|
279
|
+
permissions: {
|
280
|
+
id: string;
|
281
|
+
description: string | null;
|
282
|
+
createdAt: Date;
|
283
|
+
updatedAt: Date;
|
284
|
+
deletedAt: Date | null;
|
285
|
+
systemName: string;
|
286
|
+
displayName: string;
|
287
|
+
}[];
|
288
|
+
}[];
|
289
|
+
extension: {
|
290
|
+
id: string;
|
291
|
+
createdAt: Date;
|
292
|
+
updatedAt: Date;
|
293
|
+
deletedAt: Date | null;
|
294
|
+
userId: string | null;
|
295
|
+
sipServerUrl: string;
|
296
|
+
sipUserName: string;
|
297
|
+
webphoneLoginUser: string;
|
298
|
+
extensionId: string | null;
|
299
|
+
extensionName: string;
|
300
|
+
telephonySignature: string | null;
|
301
|
+
};
|
302
|
+
};
|
303
|
+
lineId?: string | undefined;
|
304
|
+
accessToken?: string | undefined;
|
305
|
+
lineSecret?: string | undefined;
|
11
306
|
}>;
|
12
307
|
//# sourceMappingURL=schema.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/line/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/line/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAK5B,CAAC"}
|
@@ -1224,16 +1224,6 @@ export declare const messengerContract: {
|
|
1224
1224
|
};
|
1225
1225
|
}[];
|
1226
1226
|
}[];
|
1227
|
-
notes: string | null;
|
1228
|
-
contactProfile: string | null;
|
1229
|
-
socialProfileUrl: string | null;
|
1230
|
-
tags: {
|
1231
|
-
id: string;
|
1232
|
-
name: string;
|
1233
|
-
createdAt: Date;
|
1234
|
-
updatedAt: Date;
|
1235
|
-
deletedAt: Date | null;
|
1236
|
-
}[];
|
1237
1227
|
company: {
|
1238
1228
|
id: string;
|
1239
1229
|
createdAt: Date;
|
@@ -1244,6 +1234,16 @@ export declare const messengerContract: {
|
|
1244
1234
|
phone?: string | null | undefined;
|
1245
1235
|
industry?: string | null | undefined;
|
1246
1236
|
} | null;
|
1237
|
+
notes: string | null;
|
1238
|
+
contactProfile: string | null;
|
1239
|
+
socialProfileUrl: string | null;
|
1240
|
+
tags: {
|
1241
|
+
id: string;
|
1242
|
+
name: string;
|
1243
|
+
createdAt: Date;
|
1244
|
+
updatedAt: Date;
|
1245
|
+
deletedAt: Date | null;
|
1246
|
+
}[];
|
1247
1247
|
contactEmails: {
|
1248
1248
|
id: string;
|
1249
1249
|
isPrimary: boolean;
|
@@ -1327,16 +1327,6 @@ export declare const messengerContract: {
|
|
1327
1327
|
};
|
1328
1328
|
}[];
|
1329
1329
|
}[];
|
1330
|
-
notes: string | null;
|
1331
|
-
contactProfile: string | null;
|
1332
|
-
socialProfileUrl: string | null;
|
1333
|
-
tags: {
|
1334
|
-
id: string;
|
1335
|
-
name: string;
|
1336
|
-
createdAt: Date;
|
1337
|
-
updatedAt: Date;
|
1338
|
-
deletedAt: Date | null;
|
1339
|
-
}[];
|
1340
1330
|
company: {
|
1341
1331
|
id: string;
|
1342
1332
|
createdAt: Date;
|
@@ -1347,6 +1337,16 @@ export declare const messengerContract: {
|
|
1347
1337
|
phone?: string | null | undefined;
|
1348
1338
|
industry?: string | null | undefined;
|
1349
1339
|
} | null;
|
1340
|
+
notes: string | null;
|
1341
|
+
contactProfile: string | null;
|
1342
|
+
socialProfileUrl: string | null;
|
1343
|
+
tags: {
|
1344
|
+
id: string;
|
1345
|
+
name: string;
|
1346
|
+
createdAt: Date;
|
1347
|
+
updatedAt: Date;
|
1348
|
+
deletedAt: Date | null;
|
1349
|
+
}[];
|
1350
1350
|
contactEmails: {
|
1351
1351
|
id: string;
|
1352
1352
|
isPrimary: boolean;
|
@@ -1444,16 +1444,6 @@ export declare const messengerContract: {
|
|
1444
1444
|
};
|
1445
1445
|
}[];
|
1446
1446
|
}[];
|
1447
|
-
notes: string | null;
|
1448
|
-
contactProfile: string | null;
|
1449
|
-
socialProfileUrl: string | null;
|
1450
|
-
tags: {
|
1451
|
-
id: string;
|
1452
|
-
name: string;
|
1453
|
-
createdAt: Date;
|
1454
|
-
updatedAt: Date;
|
1455
|
-
deletedAt: Date | null;
|
1456
|
-
}[];
|
1457
1447
|
company: {
|
1458
1448
|
id: string;
|
1459
1449
|
createdAt: Date;
|
@@ -1464,6 +1454,16 @@ export declare const messengerContract: {
|
|
1464
1454
|
phone?: string | null | undefined;
|
1465
1455
|
industry?: string | null | undefined;
|
1466
1456
|
} | null;
|
1457
|
+
notes: string | null;
|
1458
|
+
contactProfile: string | null;
|
1459
|
+
socialProfileUrl: string | null;
|
1460
|
+
tags: {
|
1461
|
+
id: string;
|
1462
|
+
name: string;
|
1463
|
+
createdAt: Date;
|
1464
|
+
updatedAt: Date;
|
1465
|
+
deletedAt: Date | null;
|
1466
|
+
}[];
|
1467
1467
|
contactEmails: {
|
1468
1468
|
id: string;
|
1469
1469
|
isPrimary: boolean;
|
@@ -1562,16 +1562,6 @@ export declare const messengerContract: {
|
|
1562
1562
|
};
|
1563
1563
|
}[];
|
1564
1564
|
}[];
|
1565
|
-
notes: string | null;
|
1566
|
-
contactProfile: string | null;
|
1567
|
-
socialProfileUrl: string | null;
|
1568
|
-
tags: {
|
1569
|
-
id: string;
|
1570
|
-
name: string;
|
1571
|
-
createdAt: Date;
|
1572
|
-
updatedAt: Date;
|
1573
|
-
deletedAt: Date | null;
|
1574
|
-
}[];
|
1575
1565
|
company: {
|
1576
1566
|
id: string;
|
1577
1567
|
createdAt: Date;
|
@@ -1582,6 +1572,16 @@ export declare const messengerContract: {
|
|
1582
1572
|
phone?: string | null | undefined;
|
1583
1573
|
industry?: string | null | undefined;
|
1584
1574
|
} | null;
|
1575
|
+
notes: string | null;
|
1576
|
+
contactProfile: string | null;
|
1577
|
+
socialProfileUrl: string | null;
|
1578
|
+
tags: {
|
1579
|
+
id: string;
|
1580
|
+
name: string;
|
1581
|
+
createdAt: Date;
|
1582
|
+
updatedAt: Date;
|
1583
|
+
deletedAt: Date | null;
|
1584
|
+
}[];
|
1585
1585
|
contactEmails: {
|
1586
1586
|
id: string;
|
1587
1587
|
isPrimary: boolean;
|
@@ -2653,16 +2653,6 @@ export declare const messengerContract: {
|
|
2653
2653
|
};
|
2654
2654
|
}[];
|
2655
2655
|
}[];
|
2656
|
-
notes: string | null;
|
2657
|
-
contactProfile: string | null;
|
2658
|
-
socialProfileUrl: string | null;
|
2659
|
-
tags: {
|
2660
|
-
id: string;
|
2661
|
-
name: string;
|
2662
|
-
createdAt: Date;
|
2663
|
-
updatedAt: Date;
|
2664
|
-
deletedAt: Date | null;
|
2665
|
-
}[];
|
2666
2656
|
company: {
|
2667
2657
|
id: string;
|
2668
2658
|
createdAt: Date;
|
@@ -2673,6 +2663,16 @@ export declare const messengerContract: {
|
|
2673
2663
|
phone?: string | null | undefined;
|
2674
2664
|
industry?: string | null | undefined;
|
2675
2665
|
} | null;
|
2666
|
+
notes: string | null;
|
2667
|
+
contactProfile: string | null;
|
2668
|
+
socialProfileUrl: string | null;
|
2669
|
+
tags: {
|
2670
|
+
id: string;
|
2671
|
+
name: string;
|
2672
|
+
createdAt: Date;
|
2673
|
+
updatedAt: Date;
|
2674
|
+
deletedAt: Date | null;
|
2675
|
+
}[];
|
2676
2676
|
contactEmails: {
|
2677
2677
|
id: string;
|
2678
2678
|
isPrimary: boolean;
|
@@ -2972,16 +2972,6 @@ export declare const messengerContract: {
|
|
2972
2972
|
};
|
2973
2973
|
}[];
|
2974
2974
|
}[];
|
2975
|
-
notes: string | null;
|
2976
|
-
contactProfile: string | null;
|
2977
|
-
socialProfileUrl: string | null;
|
2978
|
-
tags: {
|
2979
|
-
id: string;
|
2980
|
-
name: string;
|
2981
|
-
createdAt: Date;
|
2982
|
-
updatedAt: Date;
|
2983
|
-
deletedAt: Date | null;
|
2984
|
-
}[];
|
2985
2975
|
company: {
|
2986
2976
|
id: string;
|
2987
2977
|
createdAt: Date;
|
@@ -2992,6 +2982,16 @@ export declare const messengerContract: {
|
|
2992
2982
|
phone?: string | null | undefined;
|
2993
2983
|
industry?: string | null | undefined;
|
2994
2984
|
} | null;
|
2985
|
+
notes: string | null;
|
2986
|
+
contactProfile: string | null;
|
2987
|
+
socialProfileUrl: string | null;
|
2988
|
+
tags: {
|
2989
|
+
id: string;
|
2990
|
+
name: string;
|
2991
|
+
createdAt: Date;
|
2992
|
+
updatedAt: Date;
|
2993
|
+
deletedAt: Date | null;
|
2994
|
+
}[];
|
2995
2995
|
contactEmails: {
|
2996
2996
|
id: string;
|
2997
2997
|
isPrimary: boolean;
|
@@ -4048,16 +4048,6 @@ export declare const messengerContract: {
|
|
4048
4048
|
};
|
4049
4049
|
}[];
|
4050
4050
|
}[];
|
4051
|
-
notes: string | null;
|
4052
|
-
contactProfile: string | null;
|
4053
|
-
socialProfileUrl: string | null;
|
4054
|
-
tags: {
|
4055
|
-
id: string;
|
4056
|
-
name: string;
|
4057
|
-
createdAt: Date;
|
4058
|
-
updatedAt: Date;
|
4059
|
-
deletedAt: Date | null;
|
4060
|
-
}[];
|
4061
4051
|
company: {
|
4062
4052
|
id: string;
|
4063
4053
|
createdAt: Date;
|
@@ -4068,6 +4058,16 @@ export declare const messengerContract: {
|
|
4068
4058
|
phone?: string | null | undefined;
|
4069
4059
|
industry?: string | null | undefined;
|
4070
4060
|
} | null;
|
4061
|
+
notes: string | null;
|
4062
|
+
contactProfile: string | null;
|
4063
|
+
socialProfileUrl: string | null;
|
4064
|
+
tags: {
|
4065
|
+
id: string;
|
4066
|
+
name: string;
|
4067
|
+
createdAt: Date;
|
4068
|
+
updatedAt: Date;
|
4069
|
+
deletedAt: Date | null;
|
4070
|
+
}[];
|
4071
4071
|
contactEmails: {
|
4072
4072
|
id: string;
|
4073
4073
|
isPrimary: boolean;
|
@@ -4530,16 +4530,6 @@ export declare const messengerContract: {
|
|
4530
4530
|
};
|
4531
4531
|
}[];
|
4532
4532
|
}[];
|
4533
|
-
notes: string | null;
|
4534
|
-
contactProfile: string | null;
|
4535
|
-
socialProfileUrl: string | null;
|
4536
|
-
tags: {
|
4537
|
-
id: string;
|
4538
|
-
name: string;
|
4539
|
-
createdAt: Date;
|
4540
|
-
updatedAt: Date;
|
4541
|
-
deletedAt: Date | null;
|
4542
|
-
}[];
|
4543
4533
|
company: {
|
4544
4534
|
id: string;
|
4545
4535
|
createdAt: Date;
|
@@ -4550,6 +4540,16 @@ export declare const messengerContract: {
|
|
4550
4540
|
phone?: string | null | undefined;
|
4551
4541
|
industry?: string | null | undefined;
|
4552
4542
|
} | null;
|
4543
|
+
notes: string | null;
|
4544
|
+
contactProfile: string | null;
|
4545
|
+
socialProfileUrl: string | null;
|
4546
|
+
tags: {
|
4547
|
+
id: string;
|
4548
|
+
name: string;
|
4549
|
+
createdAt: Date;
|
4550
|
+
updatedAt: Date;
|
4551
|
+
deletedAt: Date | null;
|
4552
|
+
}[];
|
4553
4553
|
contactEmails: {
|
4554
4554
|
id: string;
|
4555
4555
|
isPrimary: boolean;
|
@@ -5014,16 +5014,6 @@ export declare const messengerContract: {
|
|
5014
5014
|
};
|
5015
5015
|
}[];
|
5016
5016
|
}[];
|
5017
|
-
notes: string | null;
|
5018
|
-
contactProfile: string | null;
|
5019
|
-
socialProfileUrl: string | null;
|
5020
|
-
tags: {
|
5021
|
-
id: string;
|
5022
|
-
name: string;
|
5023
|
-
createdAt: Date;
|
5024
|
-
updatedAt: Date;
|
5025
|
-
deletedAt: Date | null;
|
5026
|
-
}[];
|
5027
5017
|
company: {
|
5028
5018
|
id: string;
|
5029
5019
|
createdAt: Date;
|
@@ -5034,6 +5024,16 @@ export declare const messengerContract: {
|
|
5034
5024
|
phone?: string | null | undefined;
|
5035
5025
|
industry?: string | null | undefined;
|
5036
5026
|
} | null;
|
5027
|
+
notes: string | null;
|
5028
|
+
contactProfile: string | null;
|
5029
|
+
socialProfileUrl: string | null;
|
5030
|
+
tags: {
|
5031
|
+
id: string;
|
5032
|
+
name: string;
|
5033
|
+
createdAt: Date;
|
5034
|
+
updatedAt: Date;
|
5035
|
+
deletedAt: Date | null;
|
5036
|
+
}[];
|
5037
5037
|
contactEmails: {
|
5038
5038
|
id: string;
|
5039
5039
|
isPrimary: boolean;
|
@@ -5499,16 +5499,6 @@ export declare const messengerContract: {
|
|
5499
5499
|
};
|
5500
5500
|
}[];
|
5501
5501
|
}[];
|
5502
|
-
notes: string | null;
|
5503
|
-
contactProfile: string | null;
|
5504
|
-
socialProfileUrl: string | null;
|
5505
|
-
tags: {
|
5506
|
-
id: string;
|
5507
|
-
name: string;
|
5508
|
-
createdAt: Date;
|
5509
|
-
updatedAt: Date;
|
5510
|
-
deletedAt: Date | null;
|
5511
|
-
}[];
|
5512
5502
|
company: {
|
5513
5503
|
id: string;
|
5514
5504
|
createdAt: Date;
|
@@ -5519,6 +5509,16 @@ export declare const messengerContract: {
|
|
5519
5509
|
phone?: string | null | undefined;
|
5520
5510
|
industry?: string | null | undefined;
|
5521
5511
|
} | null;
|
5512
|
+
notes: string | null;
|
5513
|
+
contactProfile: string | null;
|
5514
|
+
socialProfileUrl: string | null;
|
5515
|
+
tags: {
|
5516
|
+
id: string;
|
5517
|
+
name: string;
|
5518
|
+
createdAt: Date;
|
5519
|
+
updatedAt: Date;
|
5520
|
+
deletedAt: Date | null;
|
5521
|
+
}[];
|
5522
5522
|
contactEmails: {
|
5523
5523
|
id: string;
|
5524
5524
|
isPrimary: boolean;
|