@kl1/contracts 1.1.34-uat → 1.1.36-uat

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.
@@ -282,7 +282,7 @@ export declare const cxLogContract: {
282
282
  }>, "many">;
283
283
  callFrom: z.ZodNullable<z.ZodString>;
284
284
  callTo: z.ZodNullable<z.ZodString>;
285
- customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
285
+ customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
286
286
  id: z.ZodString;
287
287
  createdAt: z.ZodDate;
288
288
  updatedAt: z.ZodDate;
@@ -315,7 +315,7 @@ export declare const cxLogContract: {
315
315
  booleanValue: boolean | null;
316
316
  numberValue: number | null;
317
317
  dateValue: Date | null;
318
- }>, "many">>;
318
+ }>, "many">>>;
319
319
  }, "strip", z.ZodTypeAny, {
320
320
  type: string;
321
321
  id: string;
@@ -366,7 +366,7 @@ export declare const cxLogContract: {
366
366
  booleanValue: boolean | null;
367
367
  numberValue: number | null;
368
368
  dateValue: Date | null;
369
- }[] | undefined;
369
+ }[] | null | undefined;
370
370
  }, {
371
371
  type: string;
372
372
  id: string;
@@ -417,7 +417,7 @@ export declare const cxLogContract: {
417
417
  booleanValue: boolean | null;
418
418
  numberValue: number | null;
419
419
  dateValue: Date | null;
420
- }[] | undefined;
420
+ }[] | null | undefined;
421
421
  }>>;
422
422
  room: z.ZodNullable<z.ZodObject<{
423
423
  id: z.ZodString;
@@ -5887,7 +5887,7 @@ export declare const cxLogContract: {
5887
5887
  booleanValue: boolean | null;
5888
5888
  numberValue: number | null;
5889
5889
  dateValue: Date | null;
5890
- }[] | undefined;
5890
+ }[] | null | undefined;
5891
5891
  } | null;
5892
5892
  customerPhone: string | null;
5893
5893
  channelType: string | null;
@@ -6647,7 +6647,7 @@ export declare const cxLogContract: {
6647
6647
  booleanValue: boolean | null;
6648
6648
  numberValue: number | null;
6649
6649
  dateValue: Date | null;
6650
- }[] | undefined;
6650
+ }[] | null | undefined;
6651
6651
  } | null;
6652
6652
  customerPhone: string | null;
6653
6653
  channelType: string | null;
@@ -7413,7 +7413,7 @@ export declare const cxLogContract: {
7413
7413
  booleanValue: boolean | null;
7414
7414
  numberValue: number | null;
7415
7415
  dateValue: Date | null;
7416
- }[] | undefined;
7416
+ }[] | null | undefined;
7417
7417
  } | null;
7418
7418
  customerPhone: string | null;
7419
7419
  channelType: string | null;
@@ -8179,7 +8179,7 @@ export declare const cxLogContract: {
8179
8179
  booleanValue: boolean | null;
8180
8180
  numberValue: number | null;
8181
8181
  dateValue: Date | null;
8182
- }[] | undefined;
8182
+ }[] | null | undefined;
8183
8183
  } | null;
8184
8184
  customerPhone: string | null;
8185
8185
  channelType: string | null;
@@ -144,7 +144,7 @@ export declare const CxLogSchema: z.ZodObject<{
144
144
  }>, "many">;
145
145
  callFrom: z.ZodNullable<z.ZodString>;
146
146
  callTo: z.ZodNullable<z.ZodString>;
147
- customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
147
+ customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
148
148
  id: z.ZodString;
149
149
  createdAt: z.ZodDate;
150
150
  updatedAt: z.ZodDate;
@@ -177,7 +177,7 @@ export declare const CxLogSchema: z.ZodObject<{
177
177
  booleanValue: boolean | null;
178
178
  numberValue: number | null;
179
179
  dateValue: Date | null;
180
- }>, "many">>;
180
+ }>, "many">>>;
181
181
  }, "strip", z.ZodTypeAny, {
182
182
  type: string;
183
183
  id: string;
@@ -228,7 +228,7 @@ export declare const CxLogSchema: z.ZodObject<{
228
228
  booleanValue: boolean | null;
229
229
  numberValue: number | null;
230
230
  dateValue: Date | null;
231
- }[] | undefined;
231
+ }[] | null | undefined;
232
232
  }, {
233
233
  type: string;
234
234
  id: string;
@@ -279,7 +279,7 @@ export declare const CxLogSchema: z.ZodObject<{
279
279
  booleanValue: boolean | null;
280
280
  numberValue: number | null;
281
281
  dateValue: Date | null;
282
- }[] | undefined;
282
+ }[] | null | undefined;
283
283
  }>>;
284
284
  }, "strip", z.ZodTypeAny, {
285
285
  id: string;
@@ -347,7 +347,7 @@ export declare const CxLogSchema: z.ZodObject<{
347
347
  booleanValue: boolean | null;
348
348
  numberValue: number | null;
349
349
  dateValue: Date | null;
350
- }[] | undefined;
350
+ }[] | null | undefined;
351
351
  } | null;
352
352
  }, {
353
353
  id: string;
@@ -415,7 +415,7 @@ export declare const CxLogSchema: z.ZodObject<{
415
415
  booleanValue: boolean | null;
416
416
  numberValue: number | null;
417
417
  dateValue: Date | null;
418
- }[] | undefined;
418
+ }[] | null | undefined;
419
419
  } | null;
420
420
  }>;
421
421
  export declare const CxLogSchemaWithRelations: z.ZodObject<{
@@ -591,7 +591,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
591
591
  }>, "many">;
592
592
  callFrom: z.ZodNullable<z.ZodString>;
593
593
  callTo: z.ZodNullable<z.ZodString>;
594
- customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
594
+ customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
595
595
  id: z.ZodString;
596
596
  createdAt: z.ZodDate;
597
597
  updatedAt: z.ZodDate;
@@ -624,7 +624,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
624
624
  booleanValue: boolean | null;
625
625
  numberValue: number | null;
626
626
  dateValue: Date | null;
627
- }>, "many">>;
627
+ }>, "many">>>;
628
628
  }, "strip", z.ZodTypeAny, {
629
629
  type: string;
630
630
  id: string;
@@ -675,7 +675,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
675
675
  booleanValue: boolean | null;
676
676
  numberValue: number | null;
677
677
  dateValue: Date | null;
678
- }[] | undefined;
678
+ }[] | null | undefined;
679
679
  }, {
680
680
  type: string;
681
681
  id: string;
@@ -726,7 +726,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
726
726
  booleanValue: boolean | null;
727
727
  numberValue: number | null;
728
728
  dateValue: Date | null;
729
- }[] | undefined;
729
+ }[] | null | undefined;
730
730
  }>>;
731
731
  room: z.ZodNullable<z.ZodObject<{
732
732
  id: z.ZodString;
@@ -6196,7 +6196,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
6196
6196
  booleanValue: boolean | null;
6197
6197
  numberValue: number | null;
6198
6198
  dateValue: Date | null;
6199
- }[] | undefined;
6199
+ }[] | null | undefined;
6200
6200
  } | null;
6201
6201
  customerPhone: string | null;
6202
6202
  channelType: string | null;
@@ -6956,7 +6956,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
6956
6956
  booleanValue: boolean | null;
6957
6957
  numberValue: number | null;
6958
6958
  dateValue: Date | null;
6959
- }[] | undefined;
6959
+ }[] | null | undefined;
6960
6960
  } | null;
6961
6961
  customerPhone: string | null;
6962
6962
  channelType: string | null;
@@ -2542,7 +2542,7 @@ export declare const instagramContract: {
2542
2542
  }>, "many">;
2543
2543
  callFrom: z.ZodNullable<z.ZodString>;
2544
2544
  callTo: z.ZodNullable<z.ZodString>;
2545
- customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
2545
+ customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
2546
2546
  id: z.ZodString;
2547
2547
  createdAt: z.ZodDate;
2548
2548
  updatedAt: z.ZodDate;
@@ -2575,7 +2575,7 @@ export declare const instagramContract: {
2575
2575
  booleanValue: boolean | null;
2576
2576
  numberValue: number | null;
2577
2577
  dateValue: Date | null;
2578
- }>, "many">>;
2578
+ }>, "many">>>;
2579
2579
  }, "strip", z.ZodTypeAny, {
2580
2580
  type: string;
2581
2581
  id: string;
@@ -2626,7 +2626,7 @@ export declare const instagramContract: {
2626
2626
  booleanValue: boolean | null;
2627
2627
  numberValue: number | null;
2628
2628
  dateValue: Date | null;
2629
- }[] | undefined;
2629
+ }[] | null | undefined;
2630
2630
  }, {
2631
2631
  type: string;
2632
2632
  id: string;
@@ -2677,7 +2677,7 @@ export declare const instagramContract: {
2677
2677
  booleanValue: boolean | null;
2678
2678
  numberValue: number | null;
2679
2679
  dateValue: Date | null;
2680
- }[] | undefined;
2680
+ }[] | null | undefined;
2681
2681
  }>>;
2682
2682
  }, "strip", z.ZodTypeAny, {
2683
2683
  id: string;
@@ -2745,7 +2745,7 @@ export declare const instagramContract: {
2745
2745
  booleanValue: boolean | null;
2746
2746
  numberValue: number | null;
2747
2747
  dateValue: Date | null;
2748
- }[] | undefined;
2748
+ }[] | null | undefined;
2749
2749
  } | null;
2750
2750
  }, {
2751
2751
  id: string;
@@ -2813,7 +2813,7 @@ export declare const instagramContract: {
2813
2813
  booleanValue: boolean | null;
2814
2814
  numberValue: number | null;
2815
2815
  dateValue: Date | null;
2816
- }[] | undefined;
2816
+ }[] | null | undefined;
2817
2817
  } | null;
2818
2818
  }>;
2819
2819
  workflowRule: z.ZodObject<{
@@ -3187,7 +3187,7 @@ export declare const instagramContract: {
3187
3187
  booleanValue: boolean | null;
3188
3188
  numberValue: number | null;
3189
3189
  dateValue: Date | null;
3190
- }[] | undefined;
3190
+ }[] | null | undefined;
3191
3191
  } | null;
3192
3192
  };
3193
3193
  workflowRule: {
@@ -3545,7 +3545,7 @@ export declare const instagramContract: {
3545
3545
  booleanValue: boolean | null;
3546
3546
  numberValue: number | null;
3547
3547
  dateValue: Date | null;
3548
- }[] | undefined;
3548
+ }[] | null | undefined;
3549
3549
  } | null;
3550
3550
  };
3551
3551
  workflowRule: {
@@ -5674,7 +5674,7 @@ export declare const instagramContract: {
5674
5674
  booleanValue: boolean | null;
5675
5675
  numberValue: number | null;
5676
5676
  dateValue: Date | null;
5677
- }[] | undefined;
5677
+ }[] | null | undefined;
5678
5678
  } | null;
5679
5679
  };
5680
5680
  workflowRule: {
@@ -6367,7 +6367,7 @@ export declare const instagramContract: {
6367
6367
  booleanValue: boolean | null;
6368
6368
  numberValue: number | null;
6369
6369
  dateValue: Date | null;
6370
- }[] | undefined;
6370
+ }[] | null | undefined;
6371
6371
  } | null;
6372
6372
  };
6373
6373
  workflowRule: {
@@ -7062,7 +7062,7 @@ export declare const instagramContract: {
7062
7062
  booleanValue: boolean | null;
7063
7063
  numberValue: number | null;
7064
7064
  dateValue: Date | null;
7065
- }[] | undefined;
7065
+ }[] | null | undefined;
7066
7066
  } | null;
7067
7067
  };
7068
7068
  workflowRule: {
@@ -7758,7 +7758,7 @@ export declare const instagramContract: {
7758
7758
  booleanValue: boolean | null;
7759
7759
  numberValue: number | null;
7760
7760
  dateValue: Date | null;
7761
- }[] | undefined;
7761
+ }[] | null | undefined;
7762
7762
  } | null;
7763
7763
  };
7764
7764
  workflowRule: {
@@ -3377,7 +3377,7 @@ export declare const lineContract: {
3377
3377
  }>, "many">;
3378
3378
  callFrom: z.ZodNullable<z.ZodString>;
3379
3379
  callTo: z.ZodNullable<z.ZodString>;
3380
- customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
3380
+ customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
3381
3381
  id: z.ZodString;
3382
3382
  createdAt: z.ZodDate;
3383
3383
  updatedAt: z.ZodDate;
@@ -3410,7 +3410,7 @@ export declare const lineContract: {
3410
3410
  booleanValue: boolean | null;
3411
3411
  numberValue: number | null;
3412
3412
  dateValue: Date | null;
3413
- }>, "many">>;
3413
+ }>, "many">>>;
3414
3414
  }, "strip", z.ZodTypeAny, {
3415
3415
  type: string;
3416
3416
  id: string;
@@ -3461,7 +3461,7 @@ export declare const lineContract: {
3461
3461
  booleanValue: boolean | null;
3462
3462
  numberValue: number | null;
3463
3463
  dateValue: Date | null;
3464
- }[] | undefined;
3464
+ }[] | null | undefined;
3465
3465
  }, {
3466
3466
  type: string;
3467
3467
  id: string;
@@ -3512,7 +3512,7 @@ export declare const lineContract: {
3512
3512
  booleanValue: boolean | null;
3513
3513
  numberValue: number | null;
3514
3514
  dateValue: Date | null;
3515
- }[] | undefined;
3515
+ }[] | null | undefined;
3516
3516
  }>>;
3517
3517
  }, "strip", z.ZodTypeAny, {
3518
3518
  id: string;
@@ -3580,7 +3580,7 @@ export declare const lineContract: {
3580
3580
  booleanValue: boolean | null;
3581
3581
  numberValue: number | null;
3582
3582
  dateValue: Date | null;
3583
- }[] | undefined;
3583
+ }[] | null | undefined;
3584
3584
  } | null;
3585
3585
  }, {
3586
3586
  id: string;
@@ -3648,7 +3648,7 @@ export declare const lineContract: {
3648
3648
  booleanValue: boolean | null;
3649
3649
  numberValue: number | null;
3650
3650
  dateValue: Date | null;
3651
- }[] | undefined;
3651
+ }[] | null | undefined;
3652
3652
  } | null;
3653
3653
  }>;
3654
3654
  workflowRule: z.ZodObject<{
@@ -4022,7 +4022,7 @@ export declare const lineContract: {
4022
4022
  booleanValue: boolean | null;
4023
4023
  numberValue: number | null;
4024
4024
  dateValue: Date | null;
4025
- }[] | undefined;
4025
+ }[] | null | undefined;
4026
4026
  } | null;
4027
4027
  };
4028
4028
  workflowRule: {
@@ -4380,7 +4380,7 @@ export declare const lineContract: {
4380
4380
  booleanValue: boolean | null;
4381
4381
  numberValue: number | null;
4382
4382
  dateValue: Date | null;
4383
- }[] | undefined;
4383
+ }[] | null | undefined;
4384
4384
  } | null;
4385
4385
  };
4386
4386
  workflowRule: {
@@ -6509,7 +6509,7 @@ export declare const lineContract: {
6509
6509
  booleanValue: boolean | null;
6510
6510
  numberValue: number | null;
6511
6511
  dateValue: Date | null;
6512
- }[] | undefined;
6512
+ }[] | null | undefined;
6513
6513
  } | null;
6514
6514
  };
6515
6515
  workflowRule: {
@@ -7202,7 +7202,7 @@ export declare const lineContract: {
7202
7202
  booleanValue: boolean | null;
7203
7203
  numberValue: number | null;
7204
7204
  dateValue: Date | null;
7205
- }[] | undefined;
7205
+ }[] | null | undefined;
7206
7206
  } | null;
7207
7207
  };
7208
7208
  workflowRule: {
@@ -7897,7 +7897,7 @@ export declare const lineContract: {
7897
7897
  booleanValue: boolean | null;
7898
7898
  numberValue: number | null;
7899
7899
  dateValue: Date | null;
7900
- }[] | undefined;
7900
+ }[] | null | undefined;
7901
7901
  } | null;
7902
7902
  };
7903
7903
  workflowRule: {
@@ -8593,7 +8593,7 @@ export declare const lineContract: {
8593
8593
  booleanValue: boolean | null;
8594
8594
  numberValue: number | null;
8595
8595
  dateValue: Date | null;
8596
- }[] | undefined;
8596
+ }[] | null | undefined;
8597
8597
  } | null;
8598
8598
  };
8599
8599
  workflowRule: {
@@ -5422,7 +5422,7 @@ export declare const mailContract: {
5422
5422
  }>, "many">;
5423
5423
  callFrom: import("zod").ZodNullable<import("zod").ZodString>;
5424
5424
  callTo: import("zod").ZodNullable<import("zod").ZodString>;
5425
- customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
5425
+ customFields: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
5426
5426
  id: import("zod").ZodString;
5427
5427
  createdAt: import("zod").ZodDate;
5428
5428
  updatedAt: import("zod").ZodDate;
@@ -5455,7 +5455,7 @@ export declare const mailContract: {
5455
5455
  booleanValue: boolean | null;
5456
5456
  numberValue: number | null;
5457
5457
  dateValue: Date | null;
5458
- }>, "many">>;
5458
+ }>, "many">>>;
5459
5459
  }, "strip", import("zod").ZodTypeAny, {
5460
5460
  type: string;
5461
5461
  id: string;
@@ -5506,7 +5506,7 @@ export declare const mailContract: {
5506
5506
  booleanValue: boolean | null;
5507
5507
  numberValue: number | null;
5508
5508
  dateValue: Date | null;
5509
- }[] | undefined;
5509
+ }[] | null | undefined;
5510
5510
  }, {
5511
5511
  type: string;
5512
5512
  id: string;
@@ -5557,7 +5557,7 @@ export declare const mailContract: {
5557
5557
  booleanValue: boolean | null;
5558
5558
  numberValue: number | null;
5559
5559
  dateValue: Date | null;
5560
- }[] | undefined;
5560
+ }[] | null | undefined;
5561
5561
  }>>;
5562
5562
  }, "strip", import("zod").ZodTypeAny, {
5563
5563
  id: string;
@@ -5625,7 +5625,7 @@ export declare const mailContract: {
5625
5625
  booleanValue: boolean | null;
5626
5626
  numberValue: number | null;
5627
5627
  dateValue: Date | null;
5628
- }[] | undefined;
5628
+ }[] | null | undefined;
5629
5629
  } | null;
5630
5630
  }, {
5631
5631
  id: string;
@@ -5693,7 +5693,7 @@ export declare const mailContract: {
5693
5693
  booleanValue: boolean | null;
5694
5694
  numberValue: number | null;
5695
5695
  dateValue: Date | null;
5696
- }[] | undefined;
5696
+ }[] | null | undefined;
5697
5697
  } | null;
5698
5698
  }>;
5699
5699
  }, "strip", import("zod").ZodTypeAny, {
@@ -5958,7 +5958,7 @@ export declare const mailContract: {
5958
5958
  booleanValue: boolean | null;
5959
5959
  numberValue: number | null;
5960
5960
  dateValue: Date | null;
5961
- }[] | undefined;
5961
+ }[] | null | undefined;
5962
5962
  } | null;
5963
5963
  };
5964
5964
  assigneeId: string | null;
@@ -6905,7 +6905,7 @@ export declare const mailContract: {
6905
6905
  booleanValue: boolean | null;
6906
6906
  numberValue: number | null;
6907
6907
  dateValue: Date | null;
6908
- }[] | undefined;
6908
+ }[] | null | undefined;
6909
6909
  } | null;
6910
6910
  };
6911
6911
  assigneeId: string | null;
@@ -7857,7 +7857,7 @@ export declare const mailContract: {
7857
7857
  booleanValue: boolean | null;
7858
7858
  numberValue: number | null;
7859
7859
  dateValue: Date | null;
7860
- }[] | undefined;
7860
+ }[] | null | undefined;
7861
7861
  } | null;
7862
7862
  };
7863
7863
  assigneeId: string | null;
@@ -8810,7 +8810,7 @@ export declare const mailContract: {
8810
8810
  booleanValue: boolean | null;
8811
8811
  numberValue: number | null;
8812
8812
  dateValue: Date | null;
8813
- }[] | undefined;
8813
+ }[] | null | undefined;
8814
8814
  } | null;
8815
8815
  };
8816
8816
  assigneeId: string | null;
@@ -15801,7 +15801,7 @@ export declare const mailContract: {
15801
15801
  }>, "many">;
15802
15802
  callFrom: import("zod").ZodNullable<import("zod").ZodString>;
15803
15803
  callTo: import("zod").ZodNullable<import("zod").ZodString>;
15804
- customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
15804
+ customFields: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
15805
15805
  id: import("zod").ZodString;
15806
15806
  createdAt: import("zod").ZodDate;
15807
15807
  updatedAt: import("zod").ZodDate;
@@ -15834,7 +15834,7 @@ export declare const mailContract: {
15834
15834
  booleanValue: boolean | null;
15835
15835
  numberValue: number | null;
15836
15836
  dateValue: Date | null;
15837
- }>, "many">>;
15837
+ }>, "many">>>;
15838
15838
  }, "strip", import("zod").ZodTypeAny, {
15839
15839
  type: string;
15840
15840
  id: string;
@@ -15885,7 +15885,7 @@ export declare const mailContract: {
15885
15885
  booleanValue: boolean | null;
15886
15886
  numberValue: number | null;
15887
15887
  dateValue: Date | null;
15888
- }[] | undefined;
15888
+ }[] | null | undefined;
15889
15889
  }, {
15890
15890
  type: string;
15891
15891
  id: string;
@@ -15936,7 +15936,7 @@ export declare const mailContract: {
15936
15936
  booleanValue: boolean | null;
15937
15937
  numberValue: number | null;
15938
15938
  dateValue: Date | null;
15939
- }[] | undefined;
15939
+ }[] | null | undefined;
15940
15940
  }>>;
15941
15941
  }, "strip", import("zod").ZodTypeAny, {
15942
15942
  id: string;
@@ -16004,7 +16004,7 @@ export declare const mailContract: {
16004
16004
  booleanValue: boolean | null;
16005
16005
  numberValue: number | null;
16006
16006
  dateValue: Date | null;
16007
- }[] | undefined;
16007
+ }[] | null | undefined;
16008
16008
  } | null;
16009
16009
  }, {
16010
16010
  id: string;
@@ -16072,7 +16072,7 @@ export declare const mailContract: {
16072
16072
  booleanValue: boolean | null;
16073
16073
  numberValue: number | null;
16074
16074
  dateValue: Date | null;
16075
- }[] | undefined;
16075
+ }[] | null | undefined;
16076
16076
  } | null;
16077
16077
  }>;
16078
16078
  }, "strip", import("zod").ZodTypeAny, {
@@ -16337,7 +16337,7 @@ export declare const mailContract: {
16337
16337
  booleanValue: boolean | null;
16338
16338
  numberValue: number | null;
16339
16339
  dateValue: Date | null;
16340
- }[] | undefined;
16340
+ }[] | null | undefined;
16341
16341
  } | null;
16342
16342
  };
16343
16343
  assigneeId: string | null;
@@ -17284,7 +17284,7 @@ export declare const mailContract: {
17284
17284
  booleanValue: boolean | null;
17285
17285
  numberValue: number | null;
17286
17286
  dateValue: Date | null;
17287
- }[] | undefined;
17287
+ }[] | null | undefined;
17288
17288
  } | null;
17289
17289
  };
17290
17290
  assigneeId: string | null;
@@ -18233,7 +18233,7 @@ export declare const mailContract: {
18233
18233
  booleanValue: boolean | null;
18234
18234
  numberValue: number | null;
18235
18235
  dateValue: Date | null;
18236
- }[] | undefined;
18236
+ }[] | null | undefined;
18237
18237
  } | null;
18238
18238
  };
18239
18239
  assigneeId: string | null;
@@ -19183,7 +19183,7 @@ export declare const mailContract: {
19183
19183
  booleanValue: boolean | null;
19184
19184
  numberValue: number | null;
19185
19185
  dateValue: Date | null;
19186
- }[] | undefined;
19186
+ }[] | null | undefined;
19187
19187
  } | null;
19188
19188
  };
19189
19189
  assigneeId: string | null;
@@ -25260,7 +25260,7 @@ export declare const mailContract: {
25260
25260
  }>, "many">;
25261
25261
  callFrom: import("zod").ZodNullable<import("zod").ZodString>;
25262
25262
  callTo: import("zod").ZodNullable<import("zod").ZodString>;
25263
- customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
25263
+ customFields: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
25264
25264
  id: import("zod").ZodString;
25265
25265
  createdAt: import("zod").ZodDate;
25266
25266
  updatedAt: import("zod").ZodDate;
@@ -25293,7 +25293,7 @@ export declare const mailContract: {
25293
25293
  booleanValue: boolean | null;
25294
25294
  numberValue: number | null;
25295
25295
  dateValue: Date | null;
25296
- }>, "many">>;
25296
+ }>, "many">>>;
25297
25297
  }, "strip", import("zod").ZodTypeAny, {
25298
25298
  type: string;
25299
25299
  id: string;
@@ -25344,7 +25344,7 @@ export declare const mailContract: {
25344
25344
  booleanValue: boolean | null;
25345
25345
  numberValue: number | null;
25346
25346
  dateValue: Date | null;
25347
- }[] | undefined;
25347
+ }[] | null | undefined;
25348
25348
  }, {
25349
25349
  type: string;
25350
25350
  id: string;
@@ -25395,7 +25395,7 @@ export declare const mailContract: {
25395
25395
  booleanValue: boolean | null;
25396
25396
  numberValue: number | null;
25397
25397
  dateValue: Date | null;
25398
- }[] | undefined;
25398
+ }[] | null | undefined;
25399
25399
  }>>;
25400
25400
  }, "strip", import("zod").ZodTypeAny, {
25401
25401
  id: string;
@@ -25463,7 +25463,7 @@ export declare const mailContract: {
25463
25463
  booleanValue: boolean | null;
25464
25464
  numberValue: number | null;
25465
25465
  dateValue: Date | null;
25466
- }[] | undefined;
25466
+ }[] | null | undefined;
25467
25467
  } | null;
25468
25468
  }, {
25469
25469
  id: string;
@@ -25531,7 +25531,7 @@ export declare const mailContract: {
25531
25531
  booleanValue: boolean | null;
25532
25532
  numberValue: number | null;
25533
25533
  dateValue: Date | null;
25534
- }[] | undefined;
25534
+ }[] | null | undefined;
25535
25535
  } | null;
25536
25536
  }>;
25537
25537
  }, "strip", import("zod").ZodTypeAny, {
@@ -25796,7 +25796,7 @@ export declare const mailContract: {
25796
25796
  booleanValue: boolean | null;
25797
25797
  numberValue: number | null;
25798
25798
  dateValue: Date | null;
25799
- }[] | undefined;
25799
+ }[] | null | undefined;
25800
25800
  } | null;
25801
25801
  };
25802
25802
  assigneeId: string | null;
@@ -26743,7 +26743,7 @@ export declare const mailContract: {
26743
26743
  booleanValue: boolean | null;
26744
26744
  numberValue: number | null;
26745
26745
  dateValue: Date | null;
26746
- }[] | undefined;
26746
+ }[] | null | undefined;
26747
26747
  } | null;
26748
26748
  };
26749
26749
  assigneeId: string | null;
@@ -27692,7 +27692,7 @@ export declare const mailContract: {
27692
27692
  booleanValue: boolean | null;
27693
27693
  numberValue: number | null;
27694
27694
  dateValue: Date | null;
27695
- }[] | undefined;
27695
+ }[] | null | undefined;
27696
27696
  } | null;
27697
27697
  };
27698
27698
  assigneeId: string | null;
@@ -28642,7 +28642,7 @@ export declare const mailContract: {
28642
28642
  booleanValue: boolean | null;
28643
28643
  numberValue: number | null;
28644
28644
  dateValue: Date | null;
28645
- }[] | undefined;
28645
+ }[] | null | undefined;
28646
28646
  } | null;
28647
28647
  };
28648
28648
  assigneeId: string | null;