@kl1/contracts 1.0.33 → 1.0.35

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.
Files changed (49) hide show
  1. package/dist/index.js +101 -26
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +101 -26
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/channel/index.d.ts +564 -1
  6. package/dist/src/channel/index.d.ts.map +1 -1
  7. package/dist/src/chat/index.d.ts +11644 -11982
  8. package/dist/src/chat/index.d.ts.map +1 -1
  9. package/dist/src/chat/schema.d.ts +44 -0
  10. package/dist/src/chat/schema.d.ts.map +1 -1
  11. package/dist/src/chat/validation.d.ts +896 -1401
  12. package/dist/src/chat/validation.d.ts.map +1 -1
  13. package/dist/src/comment/index.d.ts +155 -395
  14. package/dist/src/comment/index.d.ts.map +1 -1
  15. package/dist/src/comment/schema.d.ts +45 -117
  16. package/dist/src/comment/schema.d.ts.map +1 -1
  17. package/dist/src/contact/index.d.ts +77 -0
  18. package/dist/src/contact/index.d.ts.map +1 -1
  19. package/dist/src/contact/schema.d.ts +16 -0
  20. package/dist/src/contact/schema.d.ts.map +1 -1
  21. package/dist/src/contact/validation.d.ts +63 -0
  22. package/dist/src/contact/validation.d.ts.map +1 -1
  23. package/dist/src/contract.d.ts +1887 -6248
  24. package/dist/src/contract.d.ts.map +1 -1
  25. package/dist/src/cx-log/index.d.ts +127 -0
  26. package/dist/src/cx-log/index.d.ts.map +1 -1
  27. package/dist/src/cx-log/schema.d.ts +101 -0
  28. package/dist/src/cx-log/schema.d.ts.map +1 -1
  29. package/dist/src/mail/mail-contract.d.ts +7 -0
  30. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  31. package/dist/src/mail/room-contract.d.ts +7 -0
  32. package/dist/src/mail/room-contract.d.ts.map +1 -1
  33. package/dist/src/mail/schemas/room.schema.d.ts +5 -0
  34. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  35. package/dist/src/messenger/index.d.ts +280 -0
  36. package/dist/src/messenger/index.d.ts.map +1 -1
  37. package/dist/src/telephony-cdr/index.d.ts +112 -1
  38. package/dist/src/telephony-cdr/index.d.ts.map +1 -1
  39. package/dist/src/telephony-cdr/schema.d.ts +53 -0
  40. package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
  41. package/dist/src/telephony-cdr/validation.d.ts +46 -0
  42. package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
  43. package/dist/src/ticket/index.d.ts +245 -629
  44. package/dist/src/ticket/index.d.ts.map +1 -1
  45. package/dist/src/ticket/schema.d.ts +60 -168
  46. package/dist/src/ticket/schema.d.ts.map +1 -1
  47. package/dist/src/upload/schema.d.ts +3 -0
  48. package/dist/src/upload/schema.d.ts.map +1 -1
  49. package/package.json +46 -47
@@ -545,6 +545,7 @@ export declare const cxLogContract: {
545
545
  fileName: z.ZodString;
546
546
  fileSize: z.ZodNumber;
547
547
  fileKey: z.ZodString;
548
+ fileUrl: z.ZodNullable<z.ZodString>;
548
549
  }, "strip", z.ZodTypeAny, {
549
550
  id: string;
550
551
  createdAt: Date;
@@ -554,6 +555,7 @@ export declare const cxLogContract: {
554
555
  fileKey: string;
555
556
  bucketName: string;
556
557
  fileSize: number;
558
+ fileUrl: string | null;
557
559
  }, {
558
560
  id: string;
559
561
  createdAt: Date;
@@ -563,6 +565,7 @@ export declare const cxLogContract: {
563
565
  fileKey: string;
564
566
  bucketName: string;
565
567
  fileSize: number;
568
+ fileUrl: string | null;
566
569
  }>;
567
570
  }, "strip", z.ZodTypeAny, {
568
571
  id: string;
@@ -579,6 +582,7 @@ export declare const cxLogContract: {
579
582
  fileKey: string;
580
583
  bucketName: string;
581
584
  fileSize: number;
585
+ fileUrl: string | null;
582
586
  };
583
587
  }, {
584
588
  id: string;
@@ -595,6 +599,7 @@ export declare const cxLogContract: {
595
599
  fileKey: string;
596
600
  bucketName: string;
597
601
  fileSize: number;
602
+ fileUrl: string | null;
598
603
  };
599
604
  }>, "many">;
600
605
  }, "strip", z.ZodTypeAny, {
@@ -635,6 +640,7 @@ export declare const cxLogContract: {
635
640
  fileKey: string;
636
641
  bucketName: string;
637
642
  fileSize: number;
643
+ fileUrl: string | null;
638
644
  };
639
645
  }[];
640
646
  }, {
@@ -675,6 +681,7 @@ export declare const cxLogContract: {
675
681
  fileKey: string;
676
682
  bucketName: string;
677
683
  fileSize: number;
684
+ fileUrl: string | null;
678
685
  };
679
686
  }[];
680
687
  }>, "many">;
@@ -828,6 +835,7 @@ export declare const cxLogContract: {
828
835
  fileKey: string;
829
836
  bucketName: string;
830
837
  fileSize: number;
838
+ fileUrl: string | null;
831
839
  };
832
840
  }[];
833
841
  }[];
@@ -929,6 +937,7 @@ export declare const cxLogContract: {
929
937
  fileKey: string;
930
938
  bucketName: string;
931
939
  fileSize: number;
940
+ fileUrl: string | null;
932
941
  };
933
942
  }[];
934
943
  }[];
@@ -1044,6 +1053,7 @@ export declare const cxLogContract: {
1044
1053
  fileKey: string;
1045
1054
  bucketName: string;
1046
1055
  fileSize: number;
1056
+ fileUrl: string | null;
1047
1057
  };
1048
1058
  }[];
1049
1059
  }[];
@@ -1160,6 +1170,7 @@ export declare const cxLogContract: {
1160
1170
  fileKey: string;
1161
1171
  bucketName: string;
1162
1172
  fileSize: number;
1173
+ fileUrl: string | null;
1163
1174
  };
1164
1175
  }[];
1165
1176
  }[];
@@ -2084,6 +2095,7 @@ export declare const cxLogContract: {
2084
2095
  fileKey: string;
2085
2096
  bucketName: string;
2086
2097
  fileSize: number;
2098
+ fileUrl: string | null;
2087
2099
  };
2088
2100
  }[];
2089
2101
  }[];
@@ -2363,6 +2375,7 @@ export declare const cxLogContract: {
2363
2375
  fileKey: string;
2364
2376
  bucketName: string;
2365
2377
  fileSize: number;
2378
+ fileUrl: string | null;
2366
2379
  };
2367
2380
  }[];
2368
2381
  }[];
@@ -2548,6 +2561,37 @@ export declare const cxLogContract: {
2548
2561
  didNumber: z.ZodNullable<z.ZodString>;
2549
2562
  agentRingTime: z.ZodNullable<z.ZodNumber>;
2550
2563
  uploadId: z.ZodNullable<z.ZodString>;
2564
+ upload: z.ZodOptional<z.ZodObject<{
2565
+ id: z.ZodString;
2566
+ createdAt: z.ZodDate;
2567
+ updatedAt: z.ZodDate;
2568
+ deletedAt: z.ZodNullable<z.ZodDate>;
2569
+ bucketName: z.ZodString;
2570
+ fileName: z.ZodString;
2571
+ fileSize: z.ZodNumber;
2572
+ fileKey: z.ZodString;
2573
+ fileUrl: z.ZodNullable<z.ZodString>;
2574
+ }, "strip", z.ZodTypeAny, {
2575
+ id: string;
2576
+ createdAt: Date;
2577
+ updatedAt: Date;
2578
+ deletedAt: Date | null;
2579
+ fileName: string;
2580
+ fileKey: string;
2581
+ bucketName: string;
2582
+ fileSize: number;
2583
+ fileUrl: string | null;
2584
+ }, {
2585
+ id: string;
2586
+ createdAt: Date;
2587
+ updatedAt: Date;
2588
+ deletedAt: Date | null;
2589
+ fileName: string;
2590
+ fileKey: string;
2591
+ bucketName: string;
2592
+ fileSize: number;
2593
+ fileUrl: string | null;
2594
+ }>>;
2551
2595
  serialNumber: z.ZodNullable<z.ZodString>;
2552
2596
  extensionId: z.ZodNullable<z.ZodString>;
2553
2597
  telephonyQueueId: z.ZodNullable<z.ZodString>;
@@ -2576,6 +2620,17 @@ export declare const cxLogContract: {
2576
2620
  serialNumber: string | null;
2577
2621
  telephonyQueueId: string | null;
2578
2622
  contactId: string | null;
2623
+ upload?: {
2624
+ id: string;
2625
+ createdAt: Date;
2626
+ updatedAt: Date;
2627
+ deletedAt: Date | null;
2628
+ fileName: string;
2629
+ fileKey: string;
2630
+ bucketName: string;
2631
+ fileSize: number;
2632
+ fileUrl: string | null;
2633
+ } | undefined;
2579
2634
  }, {
2580
2635
  type: string;
2581
2636
  id: string;
@@ -2600,6 +2655,17 @@ export declare const cxLogContract: {
2600
2655
  serialNumber: string | null;
2601
2656
  telephonyQueueId: string | null;
2602
2657
  contactId: string | null;
2658
+ upload?: {
2659
+ id: string;
2660
+ createdAt: Date;
2661
+ updatedAt: Date;
2662
+ deletedAt: Date | null;
2663
+ fileName: string;
2664
+ fileKey: string;
2665
+ bucketName: string;
2666
+ fileSize: number;
2667
+ fileUrl: string | null;
2668
+ } | undefined;
2603
2669
  }>>;
2604
2670
  queue: z.ZodNullable<z.ZodObject<{
2605
2671
  queueName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2908,6 +2974,7 @@ export declare const cxLogContract: {
2908
2974
  fileName: z.ZodString;
2909
2975
  fileSize: z.ZodNumber;
2910
2976
  fileKey: z.ZodString;
2977
+ fileUrl: z.ZodNullable<z.ZodString>;
2911
2978
  }, "strip", z.ZodTypeAny, {
2912
2979
  id: string;
2913
2980
  createdAt: Date;
@@ -2917,6 +2984,7 @@ export declare const cxLogContract: {
2917
2984
  fileKey: string;
2918
2985
  bucketName: string;
2919
2986
  fileSize: number;
2987
+ fileUrl: string | null;
2920
2988
  }, {
2921
2989
  id: string;
2922
2990
  createdAt: Date;
@@ -2926,6 +2994,7 @@ export declare const cxLogContract: {
2926
2994
  fileKey: string;
2927
2995
  bucketName: string;
2928
2996
  fileSize: number;
2997
+ fileUrl: string | null;
2929
2998
  }>;
2930
2999
  }, "strip", z.ZodTypeAny, {
2931
3000
  id: string;
@@ -2942,6 +3011,7 @@ export declare const cxLogContract: {
2942
3011
  fileKey: string;
2943
3012
  bucketName: string;
2944
3013
  fileSize: number;
3014
+ fileUrl: string | null;
2945
3015
  };
2946
3016
  }, {
2947
3017
  id: string;
@@ -2958,6 +3028,7 @@ export declare const cxLogContract: {
2958
3028
  fileKey: string;
2959
3029
  bucketName: string;
2960
3030
  fileSize: number;
3031
+ fileUrl: string | null;
2961
3032
  };
2962
3033
  }>, "many">;
2963
3034
  }, "strip", z.ZodTypeAny, {
@@ -2998,6 +3069,7 @@ export declare const cxLogContract: {
2998
3069
  fileKey: string;
2999
3070
  bucketName: string;
3000
3071
  fileSize: number;
3072
+ fileUrl: string | null;
3001
3073
  };
3002
3074
  }[];
3003
3075
  }, {
@@ -3038,6 +3110,7 @@ export declare const cxLogContract: {
3038
3110
  fileKey: string;
3039
3111
  bucketName: string;
3040
3112
  fileSize: number;
3113
+ fileUrl: string | null;
3041
3114
  };
3042
3115
  }[];
3043
3116
  }>, "many">;
@@ -3191,6 +3264,7 @@ export declare const cxLogContract: {
3191
3264
  fileKey: string;
3192
3265
  bucketName: string;
3193
3266
  fileSize: number;
3267
+ fileUrl: string | null;
3194
3268
  };
3195
3269
  }[];
3196
3270
  }[];
@@ -3292,6 +3366,7 @@ export declare const cxLogContract: {
3292
3366
  fileKey: string;
3293
3367
  bucketName: string;
3294
3368
  fileSize: number;
3369
+ fileUrl: string | null;
3295
3370
  };
3296
3371
  }[];
3297
3372
  }[];
@@ -3601,6 +3676,7 @@ export declare const cxLogContract: {
3601
3676
  fileKey: string;
3602
3677
  bucketName: string;
3603
3678
  fileSize: number;
3679
+ fileUrl: string | null;
3604
3680
  };
3605
3681
  }[];
3606
3682
  }[];
@@ -3806,6 +3882,7 @@ export declare const cxLogContract: {
3806
3882
  fileKey: string;
3807
3883
  bucketName: string;
3808
3884
  fileSize: number;
3885
+ fileUrl: string | null;
3809
3886
  };
3810
3887
  }[];
3811
3888
  }[];
@@ -3995,6 +4072,17 @@ export declare const cxLogContract: {
3995
4072
  serialNumber: string | null;
3996
4073
  telephonyQueueId: string | null;
3997
4074
  contactId: string | null;
4075
+ upload?: {
4076
+ id: string;
4077
+ createdAt: Date;
4078
+ updatedAt: Date;
4079
+ deletedAt: Date | null;
4080
+ fileName: string;
4081
+ fileKey: string;
4082
+ bucketName: string;
4083
+ fileSize: number;
4084
+ fileUrl: string | null;
4085
+ } | undefined;
3998
4086
  } | null;
3999
4087
  queue: {
4000
4088
  queueName?: string | null | undefined;
@@ -4096,6 +4184,7 @@ export declare const cxLogContract: {
4096
4184
  fileKey: string;
4097
4185
  bucketName: string;
4098
4186
  fileSize: number;
4187
+ fileUrl: string | null;
4099
4188
  };
4100
4189
  }[];
4101
4190
  }[];
@@ -4301,6 +4390,7 @@ export declare const cxLogContract: {
4301
4390
  fileKey: string;
4302
4391
  bucketName: string;
4303
4392
  fileSize: number;
4393
+ fileUrl: string | null;
4304
4394
  };
4305
4395
  }[];
4306
4396
  }[];
@@ -4490,6 +4580,17 @@ export declare const cxLogContract: {
4490
4580
  serialNumber: string | null;
4491
4581
  telephonyQueueId: string | null;
4492
4582
  contactId: string | null;
4583
+ upload?: {
4584
+ id: string;
4585
+ createdAt: Date;
4586
+ updatedAt: Date;
4587
+ deletedAt: Date | null;
4588
+ fileName: string;
4589
+ fileKey: string;
4590
+ bucketName: string;
4591
+ fileSize: number;
4592
+ fileUrl: string | null;
4593
+ } | undefined;
4493
4594
  } | null;
4494
4595
  queue: {
4495
4596
  queueName?: string | null | undefined;
@@ -4597,6 +4698,7 @@ export declare const cxLogContract: {
4597
4698
  fileKey: string;
4598
4699
  bucketName: string;
4599
4700
  fileSize: number;
4701
+ fileUrl: string | null;
4600
4702
  };
4601
4703
  }[];
4602
4704
  }[];
@@ -4802,6 +4904,7 @@ export declare const cxLogContract: {
4802
4904
  fileKey: string;
4803
4905
  bucketName: string;
4804
4906
  fileSize: number;
4907
+ fileUrl: string | null;
4805
4908
  };
4806
4909
  }[];
4807
4910
  }[];
@@ -4991,6 +5094,17 @@ export declare const cxLogContract: {
4991
5094
  serialNumber: string | null;
4992
5095
  telephonyQueueId: string | null;
4993
5096
  contactId: string | null;
5097
+ upload?: {
5098
+ id: string;
5099
+ createdAt: Date;
5100
+ updatedAt: Date;
5101
+ deletedAt: Date | null;
5102
+ fileName: string;
5103
+ fileKey: string;
5104
+ bucketName: string;
5105
+ fileSize: number;
5106
+ fileUrl: string | null;
5107
+ } | undefined;
4994
5108
  } | null;
4995
5109
  queue: {
4996
5110
  queueName?: string | null | undefined;
@@ -5098,6 +5212,7 @@ export declare const cxLogContract: {
5098
5212
  fileKey: string;
5099
5213
  bucketName: string;
5100
5214
  fileSize: number;
5215
+ fileUrl: string | null;
5101
5216
  };
5102
5217
  }[];
5103
5218
  }[];
@@ -5303,6 +5418,7 @@ export declare const cxLogContract: {
5303
5418
  fileKey: string;
5304
5419
  bucketName: string;
5305
5420
  fileSize: number;
5421
+ fileUrl: string | null;
5306
5422
  };
5307
5423
  }[];
5308
5424
  }[];
@@ -5492,6 +5608,17 @@ export declare const cxLogContract: {
5492
5608
  serialNumber: string | null;
5493
5609
  telephonyQueueId: string | null;
5494
5610
  contactId: string | null;
5611
+ upload?: {
5612
+ id: string;
5613
+ createdAt: Date;
5614
+ updatedAt: Date;
5615
+ deletedAt: Date | null;
5616
+ fileName: string;
5617
+ fileKey: string;
5618
+ bucketName: string;
5619
+ fileSize: number;
5620
+ fileUrl: string | null;
5621
+ } | undefined;
5495
5622
  } | null;
5496
5623
  queue: {
5497
5624
  queueName?: string | null | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cx-log/index.ts"],"names":[],"mappings":"AAMA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,4BAA4B,EAAE,MAAM,cAAc,CAAC;AAC5D,OAAO,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAC;AAEpD,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC7D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAE9E,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4BxB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cx-log/index.ts"],"names":[],"mappings":"AAMA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,4BAA4B,EAAE,MAAM,cAAc,CAAC;AAC5D,OAAO,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAC;AAEpD,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC7D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAE9E,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4BxB,CAAC"}