@kl1/contracts 1.0.70 → 1.0.72

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 (50) hide show
  1. package/dist/index.js +13 -19
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +13 -19
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/chat/index.d.ts +1110 -2579
  6. package/dist/src/chat/index.d.ts.map +1 -1
  7. package/dist/src/chat/schema.d.ts +222 -519
  8. package/dist/src/chat/schema.d.ts.map +1 -1
  9. package/dist/src/chat/validation.d.ts +228 -482
  10. package/dist/src/chat/validation.d.ts.map +1 -1
  11. package/dist/src/comment/index.d.ts +222 -547
  12. package/dist/src/comment/index.d.ts.map +1 -1
  13. package/dist/src/comment/schema.d.ts +66 -165
  14. package/dist/src/comment/schema.d.ts.map +1 -1
  15. package/dist/src/contact/index.d.ts +1496 -1003
  16. package/dist/src/contact/index.d.ts.map +1 -1
  17. package/dist/src/contact/schema.d.ts +72 -200
  18. package/dist/src/contact/schema.d.ts.map +1 -1
  19. package/dist/src/contact/validation.d.ts +317 -806
  20. package/dist/src/contact/validation.d.ts.map +1 -1
  21. package/dist/src/contract.d.ts +6029 -8827
  22. package/dist/src/contract.d.ts.map +1 -1
  23. package/dist/src/custom-field-upload/schema.d.ts +2 -2
  24. package/dist/src/cx-log/index.d.ts +234 -573
  25. package/dist/src/cx-log/index.d.ts.map +1 -1
  26. package/dist/src/cx-log/schema.d.ts +198 -495
  27. package/dist/src/cx-log/schema.d.ts.map +1 -1
  28. package/dist/src/instagram/index.d.ts +138 -265
  29. package/dist/src/instagram/index.d.ts.map +1 -1
  30. package/dist/src/line/index.d.ts +138 -265
  31. package/dist/src/line/index.d.ts.map +1 -1
  32. package/dist/src/mail/mail-contract.d.ts +1330 -1330
  33. package/dist/src/mail/message-contract.d.ts +56 -56
  34. package/dist/src/mail/room-contract.d.ts +1258 -1258
  35. package/dist/src/mail/schemas/message.schema.d.ts +33 -33
  36. package/dist/src/mail/schemas/room-validation.schema.d.ts +420 -420
  37. package/dist/src/mail/schemas/room.schema.d.ts +284 -284
  38. package/dist/src/messenger/index.d.ts +138 -265
  39. package/dist/src/messenger/index.d.ts.map +1 -1
  40. package/dist/src/telephony-cdr/index.d.ts +198 -495
  41. package/dist/src/telephony-cdr/index.d.ts.map +1 -1
  42. package/dist/src/telephony-cdr/schema.d.ts +54 -139
  43. package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
  44. package/dist/src/ticket/index.d.ts +338 -818
  45. package/dist/src/ticket/index.d.ts.map +1 -1
  46. package/dist/src/ticket/schema.d.ts +54 -139
  47. package/dist/src/ticket/schema.d.ts.map +1 -1
  48. package/dist/src/viber/index.d.ts +138 -265
  49. package/dist/src/viber/index.d.ts.map +1 -1
  50. package/package.json +1 -1
@@ -2008,77 +2008,34 @@ export declare const viberContract: {
2008
2008
  createdAt: z.ZodDate;
2009
2009
  updatedAt: z.ZodDate;
2010
2010
  deletedAt: z.ZodNullable<z.ZodDate>;
2011
- customFieldId: z.ZodString;
2012
- upload: z.ZodObject<{
2013
- id: z.ZodString;
2014
- createdAt: z.ZodDate;
2015
- updatedAt: z.ZodDate;
2016
- deletedAt: z.ZodNullable<z.ZodDate>;
2017
- bucketName: z.ZodString;
2018
- fileName: z.ZodString;
2019
- fileSize: z.ZodNumber;
2020
- fileKey: z.ZodString;
2021
- fileUrl: z.ZodNullable<z.ZodString>;
2022
- status: z.ZodOptional<z.ZodString>;
2023
- }, "strip", z.ZodTypeAny, {
2024
- id: string;
2025
- createdAt: Date;
2026
- updatedAt: Date;
2027
- deletedAt: Date | null;
2028
- fileName: string;
2029
- fileKey: string;
2030
- bucketName: string;
2031
- fileSize: number;
2032
- fileUrl: string | null;
2033
- status?: string | undefined;
2034
- }, {
2035
- id: string;
2036
- createdAt: Date;
2037
- updatedAt: Date;
2038
- deletedAt: Date | null;
2039
- fileName: string;
2040
- fileKey: string;
2041
- bucketName: string;
2042
- fileSize: number;
2043
- fileUrl: string | null;
2044
- status?: string | undefined;
2045
- }>;
2011
+ bucketName: z.ZodString;
2012
+ fileName: z.ZodString;
2013
+ fileSize: z.ZodNumber;
2014
+ fileKey: z.ZodString;
2015
+ fileUrl: z.ZodNullable<z.ZodString>;
2016
+ status: z.ZodOptional<z.ZodString>;
2046
2017
  }, "strip", z.ZodTypeAny, {
2047
2018
  id: string;
2048
2019
  createdAt: Date;
2049
2020
  updatedAt: Date;
2050
2021
  deletedAt: Date | null;
2051
- customFieldId: string;
2052
- upload: {
2053
- id: string;
2054
- createdAt: Date;
2055
- updatedAt: Date;
2056
- deletedAt: Date | null;
2057
- fileName: string;
2058
- fileKey: string;
2059
- bucketName: string;
2060
- fileSize: number;
2061
- fileUrl: string | null;
2062
- status?: string | undefined;
2063
- };
2022
+ fileName: string;
2023
+ fileKey: string;
2024
+ bucketName: string;
2025
+ fileSize: number;
2026
+ fileUrl: string | null;
2027
+ status?: string | undefined;
2064
2028
  }, {
2065
2029
  id: string;
2066
2030
  createdAt: Date;
2067
2031
  updatedAt: Date;
2068
2032
  deletedAt: Date | null;
2069
- customFieldId: string;
2070
- upload: {
2071
- id: string;
2072
- createdAt: Date;
2073
- updatedAt: Date;
2074
- deletedAt: Date | null;
2075
- fileName: string;
2076
- fileKey: string;
2077
- bucketName: string;
2078
- fileSize: number;
2079
- fileUrl: string | null;
2080
- status?: string | undefined;
2081
- };
2033
+ fileName: string;
2034
+ fileKey: string;
2035
+ bucketName: string;
2036
+ fileSize: number;
2037
+ fileUrl: string | null;
2038
+ status?: string | undefined;
2082
2039
  }>, "many">;
2083
2040
  }, "strip", z.ZodTypeAny, {
2084
2041
  id: string;
@@ -2108,19 +2065,12 @@ export declare const viberContract: {
2108
2065
  createdAt: Date;
2109
2066
  updatedAt: Date;
2110
2067
  deletedAt: Date | null;
2111
- customFieldId: string;
2112
- upload: {
2113
- id: string;
2114
- createdAt: Date;
2115
- updatedAt: Date;
2116
- deletedAt: Date | null;
2117
- fileName: string;
2118
- fileKey: string;
2119
- bucketName: string;
2120
- fileSize: number;
2121
- fileUrl: string | null;
2122
- status?: string | undefined;
2123
- };
2068
+ fileName: string;
2069
+ fileKey: string;
2070
+ bucketName: string;
2071
+ fileSize: number;
2072
+ fileUrl: string | null;
2073
+ status?: string | undefined;
2124
2074
  }[];
2125
2075
  }, {
2126
2076
  id: string;
@@ -2150,19 +2100,12 @@ export declare const viberContract: {
2150
2100
  createdAt: Date;
2151
2101
  updatedAt: Date;
2152
2102
  deletedAt: Date | null;
2153
- customFieldId: string;
2154
- upload: {
2155
- id: string;
2156
- createdAt: Date;
2157
- updatedAt: Date;
2158
- deletedAt: Date | null;
2159
- fileName: string;
2160
- fileKey: string;
2161
- bucketName: string;
2162
- fileSize: number;
2163
- fileUrl: string | null;
2164
- status?: string | undefined;
2165
- };
2103
+ fileName: string;
2104
+ fileKey: string;
2105
+ bucketName: string;
2106
+ fileSize: number;
2107
+ fileUrl: string | null;
2108
+ status?: string | undefined;
2166
2109
  }[];
2167
2110
  }>, "many">;
2168
2111
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -2305,19 +2248,12 @@ export declare const viberContract: {
2305
2248
  createdAt: Date;
2306
2249
  updatedAt: Date;
2307
2250
  deletedAt: Date | null;
2308
- customFieldId: string;
2309
- upload: {
2310
- id: string;
2311
- createdAt: Date;
2312
- updatedAt: Date;
2313
- deletedAt: Date | null;
2314
- fileName: string;
2315
- fileKey: string;
2316
- bucketName: string;
2317
- fileSize: number;
2318
- fileUrl: string | null;
2319
- status?: string | undefined;
2320
- };
2251
+ fileName: string;
2252
+ fileKey: string;
2253
+ bucketName: string;
2254
+ fileSize: number;
2255
+ fileUrl: string | null;
2256
+ status?: string | undefined;
2321
2257
  }[];
2322
2258
  }[];
2323
2259
  company: {
@@ -2408,19 +2344,12 @@ export declare const viberContract: {
2408
2344
  createdAt: Date;
2409
2345
  updatedAt: Date;
2410
2346
  deletedAt: Date | null;
2411
- customFieldId: string;
2412
- upload: {
2413
- id: string;
2414
- createdAt: Date;
2415
- updatedAt: Date;
2416
- deletedAt: Date | null;
2417
- fileName: string;
2418
- fileKey: string;
2419
- bucketName: string;
2420
- fileSize: number;
2421
- fileUrl: string | null;
2422
- status?: string | undefined;
2423
- };
2347
+ fileName: string;
2348
+ fileKey: string;
2349
+ bucketName: string;
2350
+ fileSize: number;
2351
+ fileUrl: string | null;
2352
+ status?: string | undefined;
2424
2353
  }[];
2425
2354
  }[];
2426
2355
  company: {
@@ -2524,19 +2453,12 @@ export declare const viberContract: {
2524
2453
  createdAt: Date;
2525
2454
  updatedAt: Date;
2526
2455
  deletedAt: Date | null;
2527
- customFieldId: string;
2528
- upload: {
2529
- id: string;
2530
- createdAt: Date;
2531
- updatedAt: Date;
2532
- deletedAt: Date | null;
2533
- fileName: string;
2534
- fileKey: string;
2535
- bucketName: string;
2536
- fileSize: number;
2537
- fileUrl: string | null;
2538
- status?: string | undefined;
2539
- };
2456
+ fileName: string;
2457
+ fileKey: string;
2458
+ bucketName: string;
2459
+ fileSize: number;
2460
+ fileUrl: string | null;
2461
+ status?: string | undefined;
2540
2462
  }[];
2541
2463
  }[];
2542
2464
  company: {
@@ -2642,19 +2564,12 @@ export declare const viberContract: {
2642
2564
  createdAt: Date;
2643
2565
  updatedAt: Date;
2644
2566
  deletedAt: Date | null;
2645
- customFieldId: string;
2646
- upload: {
2647
- id: string;
2648
- createdAt: Date;
2649
- updatedAt: Date;
2650
- deletedAt: Date | null;
2651
- fileName: string;
2652
- fileKey: string;
2653
- bucketName: string;
2654
- fileSize: number;
2655
- fileUrl: string | null;
2656
- status?: string | undefined;
2657
- };
2567
+ fileName: string;
2568
+ fileKey: string;
2569
+ bucketName: string;
2570
+ fileSize: number;
2571
+ fileUrl: string | null;
2572
+ status?: string | undefined;
2658
2573
  }[];
2659
2574
  }[];
2660
2575
  company: {
@@ -3738,19 +3653,12 @@ export declare const viberContract: {
3738
3653
  createdAt: Date;
3739
3654
  updatedAt: Date;
3740
3655
  deletedAt: Date | null;
3741
- customFieldId: string;
3742
- upload: {
3743
- id: string;
3744
- createdAt: Date;
3745
- updatedAt: Date;
3746
- deletedAt: Date | null;
3747
- fileName: string;
3748
- fileKey: string;
3749
- bucketName: string;
3750
- fileSize: number;
3751
- fileUrl: string | null;
3752
- status?: string | undefined;
3753
- };
3656
+ fileName: string;
3657
+ fileKey: string;
3658
+ bucketName: string;
3659
+ fileSize: number;
3660
+ fileUrl: string | null;
3661
+ status?: string | undefined;
3754
3662
  }[];
3755
3663
  }[];
3756
3664
  company: {
@@ -4058,19 +3966,12 @@ export declare const viberContract: {
4058
3966
  createdAt: Date;
4059
3967
  updatedAt: Date;
4060
3968
  deletedAt: Date | null;
4061
- customFieldId: string;
4062
- upload: {
4063
- id: string;
4064
- createdAt: Date;
4065
- updatedAt: Date;
4066
- deletedAt: Date | null;
4067
- fileName: string;
4068
- fileKey: string;
4069
- bucketName: string;
4070
- fileSize: number;
4071
- fileUrl: string | null;
4072
- status?: string | undefined;
4073
- };
3969
+ fileName: string;
3970
+ fileKey: string;
3971
+ bucketName: string;
3972
+ fileSize: number;
3973
+ fileUrl: string | null;
3974
+ status?: string | undefined;
4074
3975
  }[];
4075
3976
  }[];
4076
3977
  company: {
@@ -4974,18 +4875,6 @@ export declare const viberContract: {
4974
4875
  };
4975
4876
  };
4976
4877
  platformId: string;
4977
- upload: {
4978
- id: string;
4979
- createdAt: Date;
4980
- updatedAt: Date;
4981
- deletedAt: Date | null;
4982
- fileName: string;
4983
- fileKey: string;
4984
- bucketName: string;
4985
- fileSize: number;
4986
- fileUrl: string | null;
4987
- status?: string | undefined;
4988
- };
4989
4878
  assignee: {
4990
4879
  id: string;
4991
4880
  address: string | null;
@@ -5141,19 +5030,12 @@ export declare const viberContract: {
5141
5030
  createdAt: Date;
5142
5031
  updatedAt: Date;
5143
5032
  deletedAt: Date | null;
5144
- customFieldId: string;
5145
- upload: {
5146
- id: string;
5147
- createdAt: Date;
5148
- updatedAt: Date;
5149
- deletedAt: Date | null;
5150
- fileName: string;
5151
- fileKey: string;
5152
- bucketName: string;
5153
- fileSize: number;
5154
- fileUrl: string | null;
5155
- status?: string | undefined;
5156
- };
5033
+ fileName: string;
5034
+ fileKey: string;
5035
+ bucketName: string;
5036
+ fileSize: number;
5037
+ fileUrl: string | null;
5038
+ status?: string | undefined;
5157
5039
  }[];
5158
5040
  }[];
5159
5041
  company: {
@@ -5357,6 +5239,18 @@ export declare const viberContract: {
5357
5239
  } | undefined;
5358
5240
  } | undefined;
5359
5241
  };
5242
+ upload: {
5243
+ id: string;
5244
+ createdAt: Date;
5245
+ updatedAt: Date;
5246
+ deletedAt: Date | null;
5247
+ fileName: string;
5248
+ fileKey: string;
5249
+ bucketName: string;
5250
+ fileSize: number;
5251
+ fileUrl: string | null;
5252
+ status?: string | undefined;
5253
+ };
5360
5254
  sender: {
5361
5255
  id: string;
5362
5256
  address: string | null;
@@ -5457,18 +5351,6 @@ export declare const viberContract: {
5457
5351
  };
5458
5352
  };
5459
5353
  platformId: string;
5460
- upload: {
5461
- id: string;
5462
- createdAt: Date;
5463
- updatedAt: Date;
5464
- deletedAt: Date | null;
5465
- fileName: string;
5466
- fileKey: string;
5467
- bucketName: string;
5468
- fileSize: number;
5469
- fileUrl: string | null;
5470
- status?: string | undefined;
5471
- };
5472
5354
  assignee: {
5473
5355
  id: string;
5474
5356
  address: string | null;
@@ -5624,19 +5506,12 @@ export declare const viberContract: {
5624
5506
  createdAt: Date;
5625
5507
  updatedAt: Date;
5626
5508
  deletedAt: Date | null;
5627
- customFieldId: string;
5628
- upload: {
5629
- id: string;
5630
- createdAt: Date;
5631
- updatedAt: Date;
5632
- deletedAt: Date | null;
5633
- fileName: string;
5634
- fileKey: string;
5635
- bucketName: string;
5636
- fileSize: number;
5637
- fileUrl: string | null;
5638
- status?: string | undefined;
5639
- };
5509
+ fileName: string;
5510
+ fileKey: string;
5511
+ bucketName: string;
5512
+ fileSize: number;
5513
+ fileUrl: string | null;
5514
+ status?: string | undefined;
5640
5515
  }[];
5641
5516
  }[];
5642
5517
  company: {
@@ -5840,6 +5715,18 @@ export declare const viberContract: {
5840
5715
  } | undefined;
5841
5716
  } | undefined;
5842
5717
  };
5718
+ upload: {
5719
+ id: string;
5720
+ createdAt: Date;
5721
+ updatedAt: Date;
5722
+ deletedAt: Date | null;
5723
+ fileName: string;
5724
+ fileKey: string;
5725
+ bucketName: string;
5726
+ fileSize: number;
5727
+ fileUrl: string | null;
5728
+ status?: string | undefined;
5729
+ };
5843
5730
  sender: {
5844
5731
  id: string;
5845
5732
  address: string | null;
@@ -5942,18 +5829,6 @@ export declare const viberContract: {
5942
5829
  };
5943
5830
  };
5944
5831
  platformId: string;
5945
- upload: {
5946
- id: string;
5947
- createdAt: Date;
5948
- updatedAt: Date;
5949
- deletedAt: Date | null;
5950
- fileName: string;
5951
- fileKey: string;
5952
- bucketName: string;
5953
- fileSize: number;
5954
- fileUrl: string | null;
5955
- status?: string | undefined;
5956
- };
5957
5832
  assignee: {
5958
5833
  id: string;
5959
5834
  address: string | null;
@@ -6109,19 +5984,12 @@ export declare const viberContract: {
6109
5984
  createdAt: Date;
6110
5985
  updatedAt: Date;
6111
5986
  deletedAt: Date | null;
6112
- customFieldId: string;
6113
- upload: {
6114
- id: string;
6115
- createdAt: Date;
6116
- updatedAt: Date;
6117
- deletedAt: Date | null;
6118
- fileName: string;
6119
- fileKey: string;
6120
- bucketName: string;
6121
- fileSize: number;
6122
- fileUrl: string | null;
6123
- status?: string | undefined;
6124
- };
5987
+ fileName: string;
5988
+ fileKey: string;
5989
+ bucketName: string;
5990
+ fileSize: number;
5991
+ fileUrl: string | null;
5992
+ status?: string | undefined;
6125
5993
  }[];
6126
5994
  }[];
6127
5995
  company: {
@@ -6325,6 +6193,18 @@ export declare const viberContract: {
6325
6193
  } | undefined;
6326
6194
  } | undefined;
6327
6195
  };
6196
+ upload: {
6197
+ id: string;
6198
+ createdAt: Date;
6199
+ updatedAt: Date;
6200
+ deletedAt: Date | null;
6201
+ fileName: string;
6202
+ fileKey: string;
6203
+ bucketName: string;
6204
+ fileSize: number;
6205
+ fileUrl: string | null;
6206
+ status?: string | undefined;
6207
+ };
6328
6208
  sender: {
6329
6209
  id: string;
6330
6210
  address: string | null;
@@ -6428,18 +6308,6 @@ export declare const viberContract: {
6428
6308
  };
6429
6309
  };
6430
6310
  platformId: string;
6431
- upload: {
6432
- id: string;
6433
- createdAt: Date;
6434
- updatedAt: Date;
6435
- deletedAt: Date | null;
6436
- fileName: string;
6437
- fileKey: string;
6438
- bucketName: string;
6439
- fileSize: number;
6440
- fileUrl: string | null;
6441
- status?: string | undefined;
6442
- };
6443
6311
  assignee: {
6444
6312
  id: string;
6445
6313
  address: string | null;
@@ -6595,19 +6463,12 @@ export declare const viberContract: {
6595
6463
  createdAt: Date;
6596
6464
  updatedAt: Date;
6597
6465
  deletedAt: Date | null;
6598
- customFieldId: string;
6599
- upload: {
6600
- id: string;
6601
- createdAt: Date;
6602
- updatedAt: Date;
6603
- deletedAt: Date | null;
6604
- fileName: string;
6605
- fileKey: string;
6606
- bucketName: string;
6607
- fileSize: number;
6608
- fileUrl: string | null;
6609
- status?: string | undefined;
6610
- };
6466
+ fileName: string;
6467
+ fileKey: string;
6468
+ bucketName: string;
6469
+ fileSize: number;
6470
+ fileUrl: string | null;
6471
+ status?: string | undefined;
6611
6472
  }[];
6612
6473
  }[];
6613
6474
  company: {
@@ -6811,6 +6672,18 @@ export declare const viberContract: {
6811
6672
  } | undefined;
6812
6673
  } | undefined;
6813
6674
  };
6675
+ upload: {
6676
+ id: string;
6677
+ createdAt: Date;
6678
+ updatedAt: Date;
6679
+ deletedAt: Date | null;
6680
+ fileName: string;
6681
+ fileKey: string;
6682
+ bucketName: string;
6683
+ fileSize: number;
6684
+ fileUrl: string | null;
6685
+ status?: string | undefined;
6686
+ };
6814
6687
  sender: {
6815
6688
  id: string;
6816
6689
  address: string | null;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/viber/index.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAYlD,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAErE,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoCxB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/viber/index.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAYlD,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAErE,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoCxB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kl1/contracts",
3
- "version": "1.0.70",
3
+ "version": "1.0.72",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/src/index.d.ts",