@kl1/contracts 1.2.29-uat → 1.2.31-uat
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/api-contracts/src/chat/index.d.ts +683 -484
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +120 -120
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +259 -60
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +528 -528
- package/dist/api-contracts/src/cx-log/schema.d.ts +97 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +60 -60
- package/dist/api-contracts/src/hold-label/index.d.ts +108 -0
- package/dist/api-contracts/src/hold-label/index.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/schema.d.ts +38 -0
- package/dist/api-contracts/src/hold-label/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/index.d.ts +0 -1
- package/dist/api-contracts/src/index.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +60 -60
- package/dist/api-contracts/src/line/index.d.ts +60 -60
- package/dist/api-contracts/src/mail/mail-contract.d.ts +495 -0
- package/dist/api-contracts/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/room-contract.d.ts +495 -0
- package/dist/api-contracts/src/mail/room-contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts +165 -0
- package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/schemas/room.schema.d.ts +131 -0
- package/dist/api-contracts/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +60 -60
- package/dist/api-contracts/src/telegram/index.d.ts +60 -60
- package/dist/api-contracts/src/viber/index.d.ts +60 -60
- package/dist/api-contracts/src/webchat/index.d.ts +60 -60
- package/dist/api-contracts/src/whatsapp/index.d.ts +60 -60
- package/dist/api-contracts/src/workflow-rule/index.d.ts +48 -48
- package/dist/index.js +326 -352
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +326 -351
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -281,6 +281,69 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
281
281
|
dateValue: Date | null;
|
282
282
|
}[] | null | undefined;
|
283
283
|
}>>;
|
284
|
+
holdLogs: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
285
|
+
id: z.ZodString;
|
286
|
+
createdAt: z.ZodDate;
|
287
|
+
updatedAt: z.ZodDate;
|
288
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
289
|
+
startedAt: z.ZodString;
|
290
|
+
endedAt: z.ZodNullable<z.ZodString>;
|
291
|
+
duration: z.ZodNullable<z.ZodNumber>;
|
292
|
+
holdLabel: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
293
|
+
id: z.ZodString;
|
294
|
+
createdAt: z.ZodDate;
|
295
|
+
updatedAt: z.ZodDate;
|
296
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
297
|
+
name: z.ZodString;
|
298
|
+
position: z.ZodNumber;
|
299
|
+
}, "strip", z.ZodTypeAny, {
|
300
|
+
id: string;
|
301
|
+
name: string;
|
302
|
+
position: number;
|
303
|
+
createdAt: Date;
|
304
|
+
updatedAt: Date;
|
305
|
+
deletedAt: Date | null;
|
306
|
+
}, {
|
307
|
+
id: string;
|
308
|
+
name: string;
|
309
|
+
position: number;
|
310
|
+
createdAt: Date;
|
311
|
+
updatedAt: Date;
|
312
|
+
deletedAt: Date | null;
|
313
|
+
}>>>;
|
314
|
+
}, "strip", z.ZodTypeAny, {
|
315
|
+
id: string;
|
316
|
+
createdAt: Date;
|
317
|
+
updatedAt: Date;
|
318
|
+
deletedAt: Date | null;
|
319
|
+
startedAt: string;
|
320
|
+
endedAt: string | null;
|
321
|
+
duration: number | null;
|
322
|
+
holdLabel?: {
|
323
|
+
id: string;
|
324
|
+
name: string;
|
325
|
+
position: number;
|
326
|
+
createdAt: Date;
|
327
|
+
updatedAt: Date;
|
328
|
+
deletedAt: Date | null;
|
329
|
+
} | null | undefined;
|
330
|
+
}, {
|
331
|
+
id: string;
|
332
|
+
createdAt: Date;
|
333
|
+
updatedAt: Date;
|
334
|
+
deletedAt: Date | null;
|
335
|
+
startedAt: string;
|
336
|
+
endedAt: string | null;
|
337
|
+
duration: number | null;
|
338
|
+
holdLabel?: {
|
339
|
+
id: string;
|
340
|
+
name: string;
|
341
|
+
position: number;
|
342
|
+
createdAt: Date;
|
343
|
+
updatedAt: Date;
|
344
|
+
deletedAt: Date | null;
|
345
|
+
} | null | undefined;
|
346
|
+
}>, "many">>>;
|
284
347
|
}, "strip", z.ZodTypeAny, {
|
285
348
|
id: string;
|
286
349
|
channel: string | null;
|
@@ -349,6 +412,23 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
349
412
|
dateValue: Date | null;
|
350
413
|
}[] | null | undefined;
|
351
414
|
} | null;
|
415
|
+
holdLogs?: {
|
416
|
+
id: string;
|
417
|
+
createdAt: Date;
|
418
|
+
updatedAt: Date;
|
419
|
+
deletedAt: Date | null;
|
420
|
+
startedAt: string;
|
421
|
+
endedAt: string | null;
|
422
|
+
duration: number | null;
|
423
|
+
holdLabel?: {
|
424
|
+
id: string;
|
425
|
+
name: string;
|
426
|
+
position: number;
|
427
|
+
createdAt: Date;
|
428
|
+
updatedAt: Date;
|
429
|
+
deletedAt: Date | null;
|
430
|
+
} | null | undefined;
|
431
|
+
}[] | null | undefined;
|
352
432
|
}, {
|
353
433
|
id: string;
|
354
434
|
channel: string | null;
|
@@ -417,6 +497,23 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
417
497
|
dateValue: Date | null;
|
418
498
|
}[] | null | undefined;
|
419
499
|
} | null;
|
500
|
+
holdLogs?: {
|
501
|
+
id: string;
|
502
|
+
createdAt: Date;
|
503
|
+
updatedAt: Date;
|
504
|
+
deletedAt: Date | null;
|
505
|
+
startedAt: string;
|
506
|
+
endedAt: string | null;
|
507
|
+
duration: number | null;
|
508
|
+
holdLabel?: {
|
509
|
+
id: string;
|
510
|
+
name: string;
|
511
|
+
position: number;
|
512
|
+
createdAt: Date;
|
513
|
+
updatedAt: Date;
|
514
|
+
deletedAt: Date | null;
|
515
|
+
} | null | undefined;
|
516
|
+
}[] | null | undefined;
|
420
517
|
}>;
|
421
518
|
export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
422
519
|
id: z.ZodString;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/cx-log/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/cx-log/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAcpB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EActB,CAAC;AAGH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiDnC,CAAC"}
|
@@ -7717,17 +7717,17 @@ export declare const facebookFeedContract: {
|
|
7717
7717
|
}>;
|
7718
7718
|
cxlog: z.ZodObject<{
|
7719
7719
|
id: z.ZodString;
|
7720
|
-
channel: z.ZodNullable<z.ZodString>;
|
7721
|
-
direction: z.ZodNullable<z.ZodString>;
|
7722
7720
|
createdAt: z.ZodDate;
|
7723
7721
|
updatedAt: z.ZodDate;
|
7724
7722
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
7725
|
-
entityId: z.ZodString;
|
7726
|
-
queueId: z.ZodNullable<z.ZodString>;
|
7727
|
-
contactId: z.ZodNullable<z.ZodString>;
|
7728
7723
|
caseId: z.ZodNumber;
|
7724
|
+
entityId: z.ZodString;
|
7729
7725
|
entityName: z.ZodString;
|
7726
|
+
contactId: z.ZodNullable<z.ZodString>;
|
7727
|
+
channel: z.ZodNullable<z.ZodString>;
|
7728
|
+
queueId: z.ZodNullable<z.ZodString>;
|
7730
7729
|
agentId: z.ZodNullable<z.ZodString>;
|
7730
|
+
direction: z.ZodNullable<z.ZodString>;
|
7731
7731
|
startedDate: z.ZodNullable<z.ZodDate>;
|
7732
7732
|
handledTime: z.ZodNullable<z.ZodNumber>;
|
7733
7733
|
firstResponseTime: z.ZodNullable<z.ZodNumber>;
|
@@ -7997,7 +7997,7 @@ export declare const facebookFeedContract: {
|
|
7997
7997
|
dateValue: Date | null;
|
7998
7998
|
}[] | null | undefined;
|
7999
7999
|
}>>;
|
8000
|
-
holdLogs: z.
|
8000
|
+
holdLogs: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
8001
8001
|
id: z.ZodString;
|
8002
8002
|
createdAt: z.ZodDate;
|
8003
8003
|
updatedAt: z.ZodDate;
|
@@ -8005,7 +8005,7 @@ export declare const facebookFeedContract: {
|
|
8005
8005
|
startedAt: z.ZodString;
|
8006
8006
|
endedAt: z.ZodNullable<z.ZodString>;
|
8007
8007
|
duration: z.ZodNullable<z.ZodNumber>;
|
8008
|
-
holdLabel: z.ZodObject<{
|
8008
|
+
holdLabel: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
8009
8009
|
id: z.ZodString;
|
8010
8010
|
createdAt: z.ZodDate;
|
8011
8011
|
updatedAt: z.ZodDate;
|
@@ -8026,7 +8026,7 @@ export declare const facebookFeedContract: {
|
|
8026
8026
|
createdAt: Date;
|
8027
8027
|
updatedAt: Date;
|
8028
8028
|
deletedAt: Date | null;
|
8029
|
-
}
|
8029
|
+
}>>>;
|
8030
8030
|
}, "strip", z.ZodTypeAny, {
|
8031
8031
|
id: string;
|
8032
8032
|
createdAt: Date;
|
@@ -8035,14 +8035,14 @@ export declare const facebookFeedContract: {
|
|
8035
8035
|
startedAt: string;
|
8036
8036
|
endedAt: string | null;
|
8037
8037
|
duration: number | null;
|
8038
|
-
holdLabel
|
8038
|
+
holdLabel?: {
|
8039
8039
|
id: string;
|
8040
8040
|
name: string;
|
8041
8041
|
position: number;
|
8042
8042
|
createdAt: Date;
|
8043
8043
|
updatedAt: Date;
|
8044
8044
|
deletedAt: Date | null;
|
8045
|
-
};
|
8045
|
+
} | null | undefined;
|
8046
8046
|
}, {
|
8047
8047
|
id: string;
|
8048
8048
|
createdAt: Date;
|
@@ -8051,14 +8051,14 @@ export declare const facebookFeedContract: {
|
|
8051
8051
|
startedAt: string;
|
8052
8052
|
endedAt: string | null;
|
8053
8053
|
duration: number | null;
|
8054
|
-
holdLabel
|
8054
|
+
holdLabel?: {
|
8055
8055
|
id: string;
|
8056
8056
|
name: string;
|
8057
8057
|
position: number;
|
8058
8058
|
createdAt: Date;
|
8059
8059
|
updatedAt: Date;
|
8060
8060
|
deletedAt: Date | null;
|
8061
|
-
};
|
8061
|
+
} | null | undefined;
|
8062
8062
|
}>, "many">>>;
|
8063
8063
|
}, "strip", z.ZodTypeAny, {
|
8064
8064
|
id: string;
|
@@ -8136,14 +8136,14 @@ export declare const facebookFeedContract: {
|
|
8136
8136
|
startedAt: string;
|
8137
8137
|
endedAt: string | null;
|
8138
8138
|
duration: number | null;
|
8139
|
-
holdLabel
|
8139
|
+
holdLabel?: {
|
8140
8140
|
id: string;
|
8141
8141
|
name: string;
|
8142
8142
|
position: number;
|
8143
8143
|
createdAt: Date;
|
8144
8144
|
updatedAt: Date;
|
8145
8145
|
deletedAt: Date | null;
|
8146
|
-
};
|
8146
|
+
} | null | undefined;
|
8147
8147
|
}[] | null | undefined;
|
8148
8148
|
}, {
|
8149
8149
|
id: string;
|
@@ -8221,14 +8221,14 @@ export declare const facebookFeedContract: {
|
|
8221
8221
|
startedAt: string;
|
8222
8222
|
endedAt: string | null;
|
8223
8223
|
duration: number | null;
|
8224
|
-
holdLabel
|
8224
|
+
holdLabel?: {
|
8225
8225
|
id: string;
|
8226
8226
|
name: string;
|
8227
8227
|
position: number;
|
8228
8228
|
createdAt: Date;
|
8229
8229
|
updatedAt: Date;
|
8230
8230
|
deletedAt: Date | null;
|
8231
|
-
};
|
8231
|
+
} | null | undefined;
|
8232
8232
|
}[] | null | undefined;
|
8233
8233
|
}>;
|
8234
8234
|
workflowRule: z.ZodObject<{
|
@@ -8655,14 +8655,14 @@ export declare const facebookFeedContract: {
|
|
8655
8655
|
startedAt: string;
|
8656
8656
|
endedAt: string | null;
|
8657
8657
|
duration: number | null;
|
8658
|
-
holdLabel
|
8658
|
+
holdLabel?: {
|
8659
8659
|
id: string;
|
8660
8660
|
name: string;
|
8661
8661
|
position: number;
|
8662
8662
|
createdAt: Date;
|
8663
8663
|
updatedAt: Date;
|
8664
8664
|
deletedAt: Date | null;
|
8665
|
-
};
|
8665
|
+
} | null | undefined;
|
8666
8666
|
}[] | null | undefined;
|
8667
8667
|
};
|
8668
8668
|
workflowRule: {
|
@@ -9073,14 +9073,14 @@ export declare const facebookFeedContract: {
|
|
9073
9073
|
startedAt: string;
|
9074
9074
|
endedAt: string | null;
|
9075
9075
|
duration: number | null;
|
9076
|
-
holdLabel
|
9076
|
+
holdLabel?: {
|
9077
9077
|
id: string;
|
9078
9078
|
name: string;
|
9079
9079
|
position: number;
|
9080
9080
|
createdAt: Date;
|
9081
9081
|
updatedAt: Date;
|
9082
9082
|
deletedAt: Date | null;
|
9083
|
-
};
|
9083
|
+
} | null | undefined;
|
9084
9084
|
}[] | null | undefined;
|
9085
9085
|
};
|
9086
9086
|
workflowRule: {
|
@@ -12331,17 +12331,17 @@ export declare const facebookFeedContract: {
|
|
12331
12331
|
}>;
|
12332
12332
|
cxlog: z.ZodObject<{
|
12333
12333
|
id: z.ZodString;
|
12334
|
-
channel: z.ZodNullable<z.ZodString>;
|
12335
|
-
direction: z.ZodNullable<z.ZodString>;
|
12336
12334
|
createdAt: z.ZodDate;
|
12337
12335
|
updatedAt: z.ZodDate;
|
12338
12336
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
12339
|
-
entityId: z.ZodString;
|
12340
|
-
queueId: z.ZodNullable<z.ZodString>;
|
12341
|
-
contactId: z.ZodNullable<z.ZodString>;
|
12342
12337
|
caseId: z.ZodNumber;
|
12338
|
+
entityId: z.ZodString;
|
12343
12339
|
entityName: z.ZodString;
|
12340
|
+
contactId: z.ZodNullable<z.ZodString>;
|
12341
|
+
channel: z.ZodNullable<z.ZodString>;
|
12342
|
+
queueId: z.ZodNullable<z.ZodString>;
|
12344
12343
|
agentId: z.ZodNullable<z.ZodString>;
|
12344
|
+
direction: z.ZodNullable<z.ZodString>;
|
12345
12345
|
startedDate: z.ZodNullable<z.ZodDate>;
|
12346
12346
|
handledTime: z.ZodNullable<z.ZodNumber>;
|
12347
12347
|
firstResponseTime: z.ZodNullable<z.ZodNumber>;
|
@@ -12611,7 +12611,7 @@ export declare const facebookFeedContract: {
|
|
12611
12611
|
dateValue: Date | null;
|
12612
12612
|
}[] | null | undefined;
|
12613
12613
|
}>>;
|
12614
|
-
holdLogs: z.
|
12614
|
+
holdLogs: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
12615
12615
|
id: z.ZodString;
|
12616
12616
|
createdAt: z.ZodDate;
|
12617
12617
|
updatedAt: z.ZodDate;
|
@@ -12619,7 +12619,7 @@ export declare const facebookFeedContract: {
|
|
12619
12619
|
startedAt: z.ZodString;
|
12620
12620
|
endedAt: z.ZodNullable<z.ZodString>;
|
12621
12621
|
duration: z.ZodNullable<z.ZodNumber>;
|
12622
|
-
holdLabel: z.ZodObject<{
|
12622
|
+
holdLabel: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
12623
12623
|
id: z.ZodString;
|
12624
12624
|
createdAt: z.ZodDate;
|
12625
12625
|
updatedAt: z.ZodDate;
|
@@ -12640,7 +12640,7 @@ export declare const facebookFeedContract: {
|
|
12640
12640
|
createdAt: Date;
|
12641
12641
|
updatedAt: Date;
|
12642
12642
|
deletedAt: Date | null;
|
12643
|
-
}
|
12643
|
+
}>>>;
|
12644
12644
|
}, "strip", z.ZodTypeAny, {
|
12645
12645
|
id: string;
|
12646
12646
|
createdAt: Date;
|
@@ -12649,14 +12649,14 @@ export declare const facebookFeedContract: {
|
|
12649
12649
|
startedAt: string;
|
12650
12650
|
endedAt: string | null;
|
12651
12651
|
duration: number | null;
|
12652
|
-
holdLabel
|
12652
|
+
holdLabel?: {
|
12653
12653
|
id: string;
|
12654
12654
|
name: string;
|
12655
12655
|
position: number;
|
12656
12656
|
createdAt: Date;
|
12657
12657
|
updatedAt: Date;
|
12658
12658
|
deletedAt: Date | null;
|
12659
|
-
};
|
12659
|
+
} | null | undefined;
|
12660
12660
|
}, {
|
12661
12661
|
id: string;
|
12662
12662
|
createdAt: Date;
|
@@ -12665,14 +12665,14 @@ export declare const facebookFeedContract: {
|
|
12665
12665
|
startedAt: string;
|
12666
12666
|
endedAt: string | null;
|
12667
12667
|
duration: number | null;
|
12668
|
-
holdLabel
|
12668
|
+
holdLabel?: {
|
12669
12669
|
id: string;
|
12670
12670
|
name: string;
|
12671
12671
|
position: number;
|
12672
12672
|
createdAt: Date;
|
12673
12673
|
updatedAt: Date;
|
12674
12674
|
deletedAt: Date | null;
|
12675
|
-
};
|
12675
|
+
} | null | undefined;
|
12676
12676
|
}>, "many">>>;
|
12677
12677
|
}, "strip", z.ZodTypeAny, {
|
12678
12678
|
id: string;
|
@@ -12750,14 +12750,14 @@ export declare const facebookFeedContract: {
|
|
12750
12750
|
startedAt: string;
|
12751
12751
|
endedAt: string | null;
|
12752
12752
|
duration: number | null;
|
12753
|
-
holdLabel
|
12753
|
+
holdLabel?: {
|
12754
12754
|
id: string;
|
12755
12755
|
name: string;
|
12756
12756
|
position: number;
|
12757
12757
|
createdAt: Date;
|
12758
12758
|
updatedAt: Date;
|
12759
12759
|
deletedAt: Date | null;
|
12760
|
-
};
|
12760
|
+
} | null | undefined;
|
12761
12761
|
}[] | null | undefined;
|
12762
12762
|
}, {
|
12763
12763
|
id: string;
|
@@ -12835,14 +12835,14 @@ export declare const facebookFeedContract: {
|
|
12835
12835
|
startedAt: string;
|
12836
12836
|
endedAt: string | null;
|
12837
12837
|
duration: number | null;
|
12838
|
-
holdLabel
|
12838
|
+
holdLabel?: {
|
12839
12839
|
id: string;
|
12840
12840
|
name: string;
|
12841
12841
|
position: number;
|
12842
12842
|
createdAt: Date;
|
12843
12843
|
updatedAt: Date;
|
12844
12844
|
deletedAt: Date | null;
|
12845
|
-
};
|
12845
|
+
} | null | undefined;
|
12846
12846
|
}[] | null | undefined;
|
12847
12847
|
}>;
|
12848
12848
|
workflowRule: z.ZodObject<{
|
@@ -13269,14 +13269,14 @@ export declare const facebookFeedContract: {
|
|
13269
13269
|
startedAt: string;
|
13270
13270
|
endedAt: string | null;
|
13271
13271
|
duration: number | null;
|
13272
|
-
holdLabel
|
13272
|
+
holdLabel?: {
|
13273
13273
|
id: string;
|
13274
13274
|
name: string;
|
13275
13275
|
position: number;
|
13276
13276
|
createdAt: Date;
|
13277
13277
|
updatedAt: Date;
|
13278
13278
|
deletedAt: Date | null;
|
13279
|
-
};
|
13279
|
+
} | null | undefined;
|
13280
13280
|
}[] | null | undefined;
|
13281
13281
|
};
|
13282
13282
|
workflowRule: {
|
@@ -13687,14 +13687,14 @@ export declare const facebookFeedContract: {
|
|
13687
13687
|
startedAt: string;
|
13688
13688
|
endedAt: string | null;
|
13689
13689
|
duration: number | null;
|
13690
|
-
holdLabel
|
13690
|
+
holdLabel?: {
|
13691
13691
|
id: string;
|
13692
13692
|
name: string;
|
13693
13693
|
position: number;
|
13694
13694
|
createdAt: Date;
|
13695
13695
|
updatedAt: Date;
|
13696
13696
|
deletedAt: Date | null;
|
13697
|
-
};
|
13697
|
+
} | null | undefined;
|
13698
13698
|
}[] | null | undefined;
|
13699
13699
|
};
|
13700
13700
|
workflowRule: {
|
@@ -15878,14 +15878,14 @@ export declare const facebookFeedContract: {
|
|
15878
15878
|
startedAt: string;
|
15879
15879
|
endedAt: string | null;
|
15880
15880
|
duration: number | null;
|
15881
|
-
holdLabel
|
15881
|
+
holdLabel?: {
|
15882
15882
|
id: string;
|
15883
15883
|
name: string;
|
15884
15884
|
position: number;
|
15885
15885
|
createdAt: Date;
|
15886
15886
|
updatedAt: Date;
|
15887
15887
|
deletedAt: Date | null;
|
15888
|
-
};
|
15888
|
+
} | null | undefined;
|
15889
15889
|
}[] | null | undefined;
|
15890
15890
|
};
|
15891
15891
|
workflowRule: {
|
@@ -16633,14 +16633,14 @@ export declare const facebookFeedContract: {
|
|
16633
16633
|
startedAt: string;
|
16634
16634
|
endedAt: string | null;
|
16635
16635
|
duration: number | null;
|
16636
|
-
holdLabel
|
16636
|
+
holdLabel?: {
|
16637
16637
|
id: string;
|
16638
16638
|
name: string;
|
16639
16639
|
position: number;
|
16640
16640
|
createdAt: Date;
|
16641
16641
|
updatedAt: Date;
|
16642
16642
|
deletedAt: Date | null;
|
16643
|
-
};
|
16643
|
+
} | null | undefined;
|
16644
16644
|
}[] | null | undefined;
|
16645
16645
|
};
|
16646
16646
|
workflowRule: {
|
@@ -17389,14 +17389,14 @@ export declare const facebookFeedContract: {
|
|
17389
17389
|
startedAt: string;
|
17390
17390
|
endedAt: string | null;
|
17391
17391
|
duration: number | null;
|
17392
|
-
holdLabel
|
17392
|
+
holdLabel?: {
|
17393
17393
|
id: string;
|
17394
17394
|
name: string;
|
17395
17395
|
position: number;
|
17396
17396
|
createdAt: Date;
|
17397
17397
|
updatedAt: Date;
|
17398
17398
|
deletedAt: Date | null;
|
17399
|
-
};
|
17399
|
+
} | null | undefined;
|
17400
17400
|
}[] | null | undefined;
|
17401
17401
|
};
|
17402
17402
|
workflowRule: {
|
@@ -18144,14 +18144,14 @@ export declare const facebookFeedContract: {
|
|
18144
18144
|
startedAt: string;
|
18145
18145
|
endedAt: string | null;
|
18146
18146
|
duration: number | null;
|
18147
|
-
holdLabel
|
18147
|
+
holdLabel?: {
|
18148
18148
|
id: string;
|
18149
18149
|
name: string;
|
18150
18150
|
position: number;
|
18151
18151
|
createdAt: Date;
|
18152
18152
|
updatedAt: Date;
|
18153
18153
|
deletedAt: Date | null;
|
18154
|
-
};
|
18154
|
+
} | null | undefined;
|
18155
18155
|
}[] | null | undefined;
|
18156
18156
|
};
|
18157
18157
|
workflowRule: {
|
@@ -18900,14 +18900,14 @@ export declare const facebookFeedContract: {
|
|
18900
18900
|
startedAt: string;
|
18901
18901
|
endedAt: string | null;
|
18902
18902
|
duration: number | null;
|
18903
|
-
holdLabel
|
18903
|
+
holdLabel?: {
|
18904
18904
|
id: string;
|
18905
18905
|
name: string;
|
18906
18906
|
position: number;
|
18907
18907
|
createdAt: Date;
|
18908
18908
|
updatedAt: Date;
|
18909
18909
|
deletedAt: Date | null;
|
18910
|
-
};
|
18910
|
+
} | null | undefined;
|
18911
18911
|
}[] | null | undefined;
|
18912
18912
|
};
|
18913
18913
|
workflowRule: {
|
@@ -19655,14 +19655,14 @@ export declare const facebookFeedContract: {
|
|
19655
19655
|
startedAt: string;
|
19656
19656
|
endedAt: string | null;
|
19657
19657
|
duration: number | null;
|
19658
|
-
holdLabel
|
19658
|
+
holdLabel?: {
|
19659
19659
|
id: string;
|
19660
19660
|
name: string;
|
19661
19661
|
position: number;
|
19662
19662
|
createdAt: Date;
|
19663
19663
|
updatedAt: Date;
|
19664
19664
|
deletedAt: Date | null;
|
19665
|
-
};
|
19665
|
+
} | null | undefined;
|
19666
19666
|
}[] | null | undefined;
|
19667
19667
|
};
|
19668
19668
|
workflowRule: {
|
@@ -20413,14 +20413,14 @@ export declare const facebookFeedContract: {
|
|
20413
20413
|
startedAt: string;
|
20414
20414
|
endedAt: string | null;
|
20415
20415
|
duration: number | null;
|
20416
|
-
holdLabel
|
20416
|
+
holdLabel?: {
|
20417
20417
|
id: string;
|
20418
20418
|
name: string;
|
20419
20419
|
position: number;
|
20420
20420
|
createdAt: Date;
|
20421
20421
|
updatedAt: Date;
|
20422
20422
|
deletedAt: Date | null;
|
20423
|
-
};
|
20423
|
+
} | null | undefined;
|
20424
20424
|
}[] | null | undefined;
|
20425
20425
|
};
|
20426
20426
|
workflowRule: {
|
@@ -21168,14 +21168,14 @@ export declare const facebookFeedContract: {
|
|
21168
21168
|
startedAt: string;
|
21169
21169
|
endedAt: string | null;
|
21170
21170
|
duration: number | null;
|
21171
|
-
holdLabel
|
21171
|
+
holdLabel?: {
|
21172
21172
|
id: string;
|
21173
21173
|
name: string;
|
21174
21174
|
position: number;
|
21175
21175
|
createdAt: Date;
|
21176
21176
|
updatedAt: Date;
|
21177
21177
|
deletedAt: Date | null;
|
21178
|
-
};
|
21178
|
+
} | null | undefined;
|
21179
21179
|
}[] | null | undefined;
|
21180
21180
|
};
|
21181
21181
|
workflowRule: {
|
@@ -21927,14 +21927,14 @@ export declare const facebookFeedContract: {
|
|
21927
21927
|
startedAt: string;
|
21928
21928
|
endedAt: string | null;
|
21929
21929
|
duration: number | null;
|
21930
|
-
holdLabel
|
21930
|
+
holdLabel?: {
|
21931
21931
|
id: string;
|
21932
21932
|
name: string;
|
21933
21933
|
position: number;
|
21934
21934
|
createdAt: Date;
|
21935
21935
|
updatedAt: Date;
|
21936
21936
|
deletedAt: Date | null;
|
21937
|
-
};
|
21937
|
+
} | null | undefined;
|
21938
21938
|
}[] | null | undefined;
|
21939
21939
|
};
|
21940
21940
|
workflowRule: {
|
@@ -22682,14 +22682,14 @@ export declare const facebookFeedContract: {
|
|
22682
22682
|
startedAt: string;
|
22683
22683
|
endedAt: string | null;
|
22684
22684
|
duration: number | null;
|
22685
|
-
holdLabel
|
22685
|
+
holdLabel?: {
|
22686
22686
|
id: string;
|
22687
22687
|
name: string;
|
22688
22688
|
position: number;
|
22689
22689
|
createdAt: Date;
|
22690
22690
|
updatedAt: Date;
|
22691
22691
|
deletedAt: Date | null;
|
22692
|
-
};
|
22692
|
+
} | null | undefined;
|
22693
22693
|
}[] | null | undefined;
|
22694
22694
|
};
|
22695
22695
|
workflowRule: {
|