@kl1/contracts 1.0.69 → 1.0.71

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 +18 -19
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +18 -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 +614 -999
  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 +4727 -8439
  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 +203 -500
  41. package/dist/src/telephony-cdr/index.d.ts.map +1 -1
  42. package/dist/src/telephony-cdr/schema.d.ts +60 -145
  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 +141 -304
  49. package/dist/src/viber/index.d.ts.map +1 -1
  50. package/package.json +1 -1
@@ -566,47 +566,11 @@ export declare const viberContract: {
566
566
  };
567
567
  disconnect: {
568
568
  body: z.ZodObject<{
569
- name: z.ZodString;
570
- accessToken: z.ZodString;
571
- actor: z.ZodOptional<z.ZodObject<{
572
- id: z.ZodString;
573
- name: z.ZodString;
574
- email: z.ZodString;
575
- address: z.ZodNullable<z.ZodString>;
576
- phone: z.ZodNullable<z.ZodString>;
577
- }, "strip", z.ZodTypeAny, {
578
- id: string;
579
- address: string | null;
580
- name: string;
581
- email: string;
582
- phone: string | null;
583
- }, {
584
- id: string;
585
- address: string | null;
586
- name: string;
587
- email: string;
588
- phone: string | null;
589
- }>>;
569
+ id: z.ZodString;
590
570
  }, "strip", z.ZodTypeAny, {
591
- name: string;
592
- accessToken: string;
593
- actor?: {
594
- id: string;
595
- address: string | null;
596
- name: string;
597
- email: string;
598
- phone: string | null;
599
- } | undefined;
571
+ id: string;
600
572
  }, {
601
- name: string;
602
- accessToken: string;
603
- actor?: {
604
- id: string;
605
- address: string | null;
606
- name: string;
607
- email: string;
608
- phone: string | null;
609
- } | undefined;
573
+ id: string;
610
574
  }>;
611
575
  summary: "Connect message channel";
612
576
  method: "POST";
@@ -2044,77 +2008,34 @@ export declare const viberContract: {
2044
2008
  createdAt: z.ZodDate;
2045
2009
  updatedAt: z.ZodDate;
2046
2010
  deletedAt: z.ZodNullable<z.ZodDate>;
2047
- customFieldId: z.ZodString;
2048
- upload: z.ZodObject<{
2049
- id: z.ZodString;
2050
- createdAt: z.ZodDate;
2051
- updatedAt: z.ZodDate;
2052
- deletedAt: z.ZodNullable<z.ZodDate>;
2053
- bucketName: z.ZodString;
2054
- fileName: z.ZodString;
2055
- fileSize: z.ZodNumber;
2056
- fileKey: z.ZodString;
2057
- fileUrl: z.ZodNullable<z.ZodString>;
2058
- status: z.ZodOptional<z.ZodString>;
2059
- }, "strip", z.ZodTypeAny, {
2060
- id: string;
2061
- createdAt: Date;
2062
- updatedAt: Date;
2063
- deletedAt: Date | null;
2064
- fileName: string;
2065
- fileKey: string;
2066
- bucketName: string;
2067
- fileSize: number;
2068
- fileUrl: string | null;
2069
- status?: string | undefined;
2070
- }, {
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
- }>;
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>;
2082
2017
  }, "strip", z.ZodTypeAny, {
2083
2018
  id: string;
2084
2019
  createdAt: Date;
2085
2020
  updatedAt: Date;
2086
2021
  deletedAt: Date | null;
2087
- customFieldId: string;
2088
- upload: {
2089
- id: string;
2090
- createdAt: Date;
2091
- updatedAt: Date;
2092
- deletedAt: Date | null;
2093
- fileName: string;
2094
- fileKey: string;
2095
- bucketName: string;
2096
- fileSize: number;
2097
- fileUrl: string | null;
2098
- status?: string | undefined;
2099
- };
2022
+ fileName: string;
2023
+ fileKey: string;
2024
+ bucketName: string;
2025
+ fileSize: number;
2026
+ fileUrl: string | null;
2027
+ status?: string | undefined;
2100
2028
  }, {
2101
2029
  id: string;
2102
2030
  createdAt: Date;
2103
2031
  updatedAt: Date;
2104
2032
  deletedAt: Date | null;
2105
- customFieldId: string;
2106
- upload: {
2107
- id: string;
2108
- createdAt: Date;
2109
- updatedAt: Date;
2110
- deletedAt: Date | null;
2111
- fileName: string;
2112
- fileKey: string;
2113
- bucketName: string;
2114
- fileSize: number;
2115
- fileUrl: string | null;
2116
- status?: string | undefined;
2117
- };
2033
+ fileName: string;
2034
+ fileKey: string;
2035
+ bucketName: string;
2036
+ fileSize: number;
2037
+ fileUrl: string | null;
2038
+ status?: string | undefined;
2118
2039
  }>, "many">;
2119
2040
  }, "strip", z.ZodTypeAny, {
2120
2041
  id: string;
@@ -2144,19 +2065,12 @@ export declare const viberContract: {
2144
2065
  createdAt: Date;
2145
2066
  updatedAt: Date;
2146
2067
  deletedAt: Date | null;
2147
- customFieldId: string;
2148
- upload: {
2149
- id: string;
2150
- createdAt: Date;
2151
- updatedAt: Date;
2152
- deletedAt: Date | null;
2153
- fileName: string;
2154
- fileKey: string;
2155
- bucketName: string;
2156
- fileSize: number;
2157
- fileUrl: string | null;
2158
- status?: string | undefined;
2159
- };
2068
+ fileName: string;
2069
+ fileKey: string;
2070
+ bucketName: string;
2071
+ fileSize: number;
2072
+ fileUrl: string | null;
2073
+ status?: string | undefined;
2160
2074
  }[];
2161
2075
  }, {
2162
2076
  id: string;
@@ -2186,19 +2100,12 @@ export declare const viberContract: {
2186
2100
  createdAt: Date;
2187
2101
  updatedAt: Date;
2188
2102
  deletedAt: Date | null;
2189
- customFieldId: string;
2190
- upload: {
2191
- id: string;
2192
- createdAt: Date;
2193
- updatedAt: Date;
2194
- deletedAt: Date | null;
2195
- fileName: string;
2196
- fileKey: string;
2197
- bucketName: string;
2198
- fileSize: number;
2199
- fileUrl: string | null;
2200
- status?: string | undefined;
2201
- };
2103
+ fileName: string;
2104
+ fileKey: string;
2105
+ bucketName: string;
2106
+ fileSize: number;
2107
+ fileUrl: string | null;
2108
+ status?: string | undefined;
2202
2109
  }[];
2203
2110
  }>, "many">;
2204
2111
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -2341,19 +2248,12 @@ export declare const viberContract: {
2341
2248
  createdAt: Date;
2342
2249
  updatedAt: Date;
2343
2250
  deletedAt: Date | null;
2344
- customFieldId: string;
2345
- upload: {
2346
- id: string;
2347
- createdAt: Date;
2348
- updatedAt: Date;
2349
- deletedAt: Date | null;
2350
- fileName: string;
2351
- fileKey: string;
2352
- bucketName: string;
2353
- fileSize: number;
2354
- fileUrl: string | null;
2355
- status?: string | undefined;
2356
- };
2251
+ fileName: string;
2252
+ fileKey: string;
2253
+ bucketName: string;
2254
+ fileSize: number;
2255
+ fileUrl: string | null;
2256
+ status?: string | undefined;
2357
2257
  }[];
2358
2258
  }[];
2359
2259
  company: {
@@ -2444,19 +2344,12 @@ export declare const viberContract: {
2444
2344
  createdAt: Date;
2445
2345
  updatedAt: Date;
2446
2346
  deletedAt: Date | null;
2447
- customFieldId: string;
2448
- upload: {
2449
- id: string;
2450
- createdAt: Date;
2451
- updatedAt: Date;
2452
- deletedAt: Date | null;
2453
- fileName: string;
2454
- fileKey: string;
2455
- bucketName: string;
2456
- fileSize: number;
2457
- fileUrl: string | null;
2458
- status?: string | undefined;
2459
- };
2347
+ fileName: string;
2348
+ fileKey: string;
2349
+ bucketName: string;
2350
+ fileSize: number;
2351
+ fileUrl: string | null;
2352
+ status?: string | undefined;
2460
2353
  }[];
2461
2354
  }[];
2462
2355
  company: {
@@ -2560,19 +2453,12 @@ export declare const viberContract: {
2560
2453
  createdAt: Date;
2561
2454
  updatedAt: Date;
2562
2455
  deletedAt: Date | null;
2563
- customFieldId: string;
2564
- upload: {
2565
- id: string;
2566
- createdAt: Date;
2567
- updatedAt: Date;
2568
- deletedAt: Date | null;
2569
- fileName: string;
2570
- fileKey: string;
2571
- bucketName: string;
2572
- fileSize: number;
2573
- fileUrl: string | null;
2574
- status?: string | undefined;
2575
- };
2456
+ fileName: string;
2457
+ fileKey: string;
2458
+ bucketName: string;
2459
+ fileSize: number;
2460
+ fileUrl: string | null;
2461
+ status?: string | undefined;
2576
2462
  }[];
2577
2463
  }[];
2578
2464
  company: {
@@ -2678,19 +2564,12 @@ export declare const viberContract: {
2678
2564
  createdAt: Date;
2679
2565
  updatedAt: Date;
2680
2566
  deletedAt: Date | null;
2681
- customFieldId: string;
2682
- upload: {
2683
- id: string;
2684
- createdAt: Date;
2685
- updatedAt: Date;
2686
- deletedAt: Date | null;
2687
- fileName: string;
2688
- fileKey: string;
2689
- bucketName: string;
2690
- fileSize: number;
2691
- fileUrl: string | null;
2692
- status?: string | undefined;
2693
- };
2567
+ fileName: string;
2568
+ fileKey: string;
2569
+ bucketName: string;
2570
+ fileSize: number;
2571
+ fileUrl: string | null;
2572
+ status?: string | undefined;
2694
2573
  }[];
2695
2574
  }[];
2696
2575
  company: {
@@ -3774,19 +3653,12 @@ export declare const viberContract: {
3774
3653
  createdAt: Date;
3775
3654
  updatedAt: Date;
3776
3655
  deletedAt: Date | null;
3777
- customFieldId: string;
3778
- upload: {
3779
- id: string;
3780
- createdAt: Date;
3781
- updatedAt: Date;
3782
- deletedAt: Date | null;
3783
- fileName: string;
3784
- fileKey: string;
3785
- bucketName: string;
3786
- fileSize: number;
3787
- fileUrl: string | null;
3788
- status?: string | undefined;
3789
- };
3656
+ fileName: string;
3657
+ fileKey: string;
3658
+ bucketName: string;
3659
+ fileSize: number;
3660
+ fileUrl: string | null;
3661
+ status?: string | undefined;
3790
3662
  }[];
3791
3663
  }[];
3792
3664
  company: {
@@ -4094,19 +3966,12 @@ export declare const viberContract: {
4094
3966
  createdAt: Date;
4095
3967
  updatedAt: Date;
4096
3968
  deletedAt: Date | null;
4097
- customFieldId: string;
4098
- upload: {
4099
- id: string;
4100
- createdAt: Date;
4101
- updatedAt: Date;
4102
- deletedAt: Date | null;
4103
- fileName: string;
4104
- fileKey: string;
4105
- bucketName: string;
4106
- fileSize: number;
4107
- fileUrl: string | null;
4108
- status?: string | undefined;
4109
- };
3969
+ fileName: string;
3970
+ fileKey: string;
3971
+ bucketName: string;
3972
+ fileSize: number;
3973
+ fileUrl: string | null;
3974
+ status?: string | undefined;
4110
3975
  }[];
4111
3976
  }[];
4112
3977
  company: {
@@ -5010,18 +4875,6 @@ export declare const viberContract: {
5010
4875
  };
5011
4876
  };
5012
4877
  platformId: string;
5013
- upload: {
5014
- id: string;
5015
- createdAt: Date;
5016
- updatedAt: Date;
5017
- deletedAt: Date | null;
5018
- fileName: string;
5019
- fileKey: string;
5020
- bucketName: string;
5021
- fileSize: number;
5022
- fileUrl: string | null;
5023
- status?: string | undefined;
5024
- };
5025
4878
  assignee: {
5026
4879
  id: string;
5027
4880
  address: string | null;
@@ -5177,19 +5030,12 @@ export declare const viberContract: {
5177
5030
  createdAt: Date;
5178
5031
  updatedAt: Date;
5179
5032
  deletedAt: Date | null;
5180
- customFieldId: string;
5181
- upload: {
5182
- id: string;
5183
- createdAt: Date;
5184
- updatedAt: Date;
5185
- deletedAt: Date | null;
5186
- fileName: string;
5187
- fileKey: string;
5188
- bucketName: string;
5189
- fileSize: number;
5190
- fileUrl: string | null;
5191
- status?: string | undefined;
5192
- };
5033
+ fileName: string;
5034
+ fileKey: string;
5035
+ bucketName: string;
5036
+ fileSize: number;
5037
+ fileUrl: string | null;
5038
+ status?: string | undefined;
5193
5039
  }[];
5194
5040
  }[];
5195
5041
  company: {
@@ -5393,6 +5239,18 @@ export declare const viberContract: {
5393
5239
  } | undefined;
5394
5240
  } | undefined;
5395
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
+ };
5396
5254
  sender: {
5397
5255
  id: string;
5398
5256
  address: string | null;
@@ -5493,18 +5351,6 @@ export declare const viberContract: {
5493
5351
  };
5494
5352
  };
5495
5353
  platformId: string;
5496
- upload: {
5497
- id: string;
5498
- createdAt: Date;
5499
- updatedAt: Date;
5500
- deletedAt: Date | null;
5501
- fileName: string;
5502
- fileKey: string;
5503
- bucketName: string;
5504
- fileSize: number;
5505
- fileUrl: string | null;
5506
- status?: string | undefined;
5507
- };
5508
5354
  assignee: {
5509
5355
  id: string;
5510
5356
  address: string | null;
@@ -5660,19 +5506,12 @@ export declare const viberContract: {
5660
5506
  createdAt: Date;
5661
5507
  updatedAt: Date;
5662
5508
  deletedAt: Date | null;
5663
- customFieldId: string;
5664
- upload: {
5665
- id: string;
5666
- createdAt: Date;
5667
- updatedAt: Date;
5668
- deletedAt: Date | null;
5669
- fileName: string;
5670
- fileKey: string;
5671
- bucketName: string;
5672
- fileSize: number;
5673
- fileUrl: string | null;
5674
- status?: string | undefined;
5675
- };
5509
+ fileName: string;
5510
+ fileKey: string;
5511
+ bucketName: string;
5512
+ fileSize: number;
5513
+ fileUrl: string | null;
5514
+ status?: string | undefined;
5676
5515
  }[];
5677
5516
  }[];
5678
5517
  company: {
@@ -5876,6 +5715,18 @@ export declare const viberContract: {
5876
5715
  } | undefined;
5877
5716
  } | undefined;
5878
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
+ };
5879
5730
  sender: {
5880
5731
  id: string;
5881
5732
  address: string | null;
@@ -5978,18 +5829,6 @@ export declare const viberContract: {
5978
5829
  };
5979
5830
  };
5980
5831
  platformId: string;
5981
- upload: {
5982
- id: string;
5983
- createdAt: Date;
5984
- updatedAt: Date;
5985
- deletedAt: Date | null;
5986
- fileName: string;
5987
- fileKey: string;
5988
- bucketName: string;
5989
- fileSize: number;
5990
- fileUrl: string | null;
5991
- status?: string | undefined;
5992
- };
5993
5832
  assignee: {
5994
5833
  id: string;
5995
5834
  address: string | null;
@@ -6145,19 +5984,12 @@ export declare const viberContract: {
6145
5984
  createdAt: Date;
6146
5985
  updatedAt: Date;
6147
5986
  deletedAt: Date | null;
6148
- customFieldId: string;
6149
- upload: {
6150
- id: string;
6151
- createdAt: Date;
6152
- updatedAt: Date;
6153
- deletedAt: Date | null;
6154
- fileName: string;
6155
- fileKey: string;
6156
- bucketName: string;
6157
- fileSize: number;
6158
- fileUrl: string | null;
6159
- status?: string | undefined;
6160
- };
5987
+ fileName: string;
5988
+ fileKey: string;
5989
+ bucketName: string;
5990
+ fileSize: number;
5991
+ fileUrl: string | null;
5992
+ status?: string | undefined;
6161
5993
  }[];
6162
5994
  }[];
6163
5995
  company: {
@@ -6361,6 +6193,18 @@ export declare const viberContract: {
6361
6193
  } | undefined;
6362
6194
  } | undefined;
6363
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
+ };
6364
6208
  sender: {
6365
6209
  id: string;
6366
6210
  address: string | null;
@@ -6464,18 +6308,6 @@ export declare const viberContract: {
6464
6308
  };
6465
6309
  };
6466
6310
  platformId: string;
6467
- upload: {
6468
- id: string;
6469
- createdAt: Date;
6470
- updatedAt: Date;
6471
- deletedAt: Date | null;
6472
- fileName: string;
6473
- fileKey: string;
6474
- bucketName: string;
6475
- fileSize: number;
6476
- fileUrl: string | null;
6477
- status?: string | undefined;
6478
- };
6479
6311
  assignee: {
6480
6312
  id: string;
6481
6313
  address: string | null;
@@ -6631,19 +6463,12 @@ export declare const viberContract: {
6631
6463
  createdAt: Date;
6632
6464
  updatedAt: Date;
6633
6465
  deletedAt: Date | null;
6634
- customFieldId: string;
6635
- upload: {
6636
- id: string;
6637
- createdAt: Date;
6638
- updatedAt: Date;
6639
- deletedAt: Date | null;
6640
- fileName: string;
6641
- fileKey: string;
6642
- bucketName: string;
6643
- fileSize: number;
6644
- fileUrl: string | null;
6645
- status?: string | undefined;
6646
- };
6466
+ fileName: string;
6467
+ fileKey: string;
6468
+ bucketName: string;
6469
+ fileSize: number;
6470
+ fileUrl: string | null;
6471
+ status?: string | undefined;
6647
6472
  }[];
6648
6473
  }[];
6649
6474
  company: {
@@ -6847,6 +6672,18 @@ export declare const viberContract: {
6847
6672
  } | undefined;
6848
6673
  } | undefined;
6849
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
+ };
6850
6687
  sender: {
6851
6688
  id: string;
6852
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkCxB,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.69",
3
+ "version": "1.0.71",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/src/index.d.ts",