@kl1/contracts 1.2.39-uat → 1.2.40-uat

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +1253 -1074
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +84 -72
  4. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +98 -84
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +1918 -1644
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +462 -396
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +679 -582
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +7294 -6252
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-log/index.d.ts +91 -78
  16. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-log/schema.d.ts +77 -66
  18. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  19. package/dist/api-contracts/src/facebook-feed/index.d.ts +938 -804
  20. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/facebook-feed/schema.d.ts +63 -54
  22. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/validation.d.ts +49 -42
  24. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  25. package/dist/api-contracts/src/instagram/index.d.ts +735 -630
  26. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/line/index.d.ts +651 -558
  28. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/line/validation.d.ts +77 -66
  30. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  31. package/dist/api-contracts/src/messenger/index.d.ts +735 -630
  32. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  33. package/dist/api-contracts/src/messenger/validation.d.ts +49 -42
  34. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  35. package/dist/api-contracts/src/sms/index.d.ts +140 -120
  36. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  37. package/dist/api-contracts/src/telegram/index.d.ts +525 -450
  38. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  39. package/dist/api-contracts/src/viber/index.d.ts +525 -450
  40. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  41. package/dist/api-contracts/src/webchat/index.d.ts +525 -450
  42. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  43. package/dist/api-contracts/src/whatsapp/index.d.ts +623 -534
  44. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  45. package/dist/api-contracts/src/workflow-rule/index.d.ts +154 -132
  46. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  47. package/dist/index.js +8 -7
  48. package/dist/index.js.map +1 -1
  49. package/dist/index.mjs +8 -7
  50. package/dist/index.mjs.map +1 -1
  51. package/package.json +1 -1
@@ -1906,35 +1906,38 @@ export declare const cxLogContract: {
1906
1906
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1907
1907
  senderId: z.ZodOptional<z.ZodString>;
1908
1908
  whatsapp: z.ZodOptional<z.ZodObject<{
1909
- wabaBusinessId: z.ZodOptional<z.ZodString>;
1910
- wabaExternalId: z.ZodString;
1911
- phoneNumberId: z.ZodString;
1912
- email: z.ZodString;
1913
- clientId: z.ZodOptional<z.ZodString>;
1914
- channelId: z.ZodOptional<z.ZodString>;
1909
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1910
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1911
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1912
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1913
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1914
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1915
1915
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1916
1916
  apiKey: z.ZodOptional<z.ZodString>;
1917
1917
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
1918
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
1918
1919
  }, "strip", z.ZodTypeAny, {
1919
- email: string;
1920
- wabaExternalId: string;
1921
- phoneNumberId: string;
1922
- wabaBusinessId?: string | undefined;
1923
- clientId?: string | undefined;
1924
- channelId?: string | undefined;
1920
+ wabaBusinessId?: string | null | undefined;
1921
+ wabaExternalId?: string | null | undefined;
1922
+ phoneNumberId?: string | null | undefined;
1923
+ email?: string | null | undefined;
1924
+ clientId?: string | null | undefined;
1925
+ channelId?: string | null | undefined;
1925
1926
  status?: "active" | "pending" | undefined;
1926
1927
  apiKey?: string | undefined;
1927
1928
  tier?: "basic" | "regular" | "premium" | undefined;
1929
+ integrationType?: "meta" | "360dialog" | undefined;
1928
1930
  }, {
1929
- email: string;
1930
- wabaExternalId: string;
1931
- phoneNumberId: string;
1932
- wabaBusinessId?: string | undefined;
1933
- clientId?: string | undefined;
1934
- channelId?: string | undefined;
1931
+ wabaBusinessId?: string | null | undefined;
1932
+ wabaExternalId?: string | null | undefined;
1933
+ phoneNumberId?: string | null | undefined;
1934
+ email?: string | null | undefined;
1935
+ clientId?: string | null | undefined;
1936
+ channelId?: string | null | undefined;
1935
1937
  status?: "active" | "pending" | undefined;
1936
1938
  apiKey?: string | undefined;
1937
1939
  tier?: "basic" | "regular" | "premium" | undefined;
1940
+ integrationType?: "meta" | "360dialog" | undefined;
1938
1941
  }>>;
1939
1942
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1940
1943
  mobileNumber: z.ZodString;
@@ -1959,15 +1962,16 @@ export declare const cxLogContract: {
1959
1962
  additionalCredentials?: any;
1960
1963
  senderId?: string | undefined;
1961
1964
  whatsapp?: {
1962
- email: string;
1963
- wabaExternalId: string;
1964
- phoneNumberId: string;
1965
- wabaBusinessId?: string | undefined;
1966
- clientId?: string | undefined;
1967
- channelId?: string | undefined;
1965
+ wabaBusinessId?: string | null | undefined;
1966
+ wabaExternalId?: string | null | undefined;
1967
+ phoneNumberId?: string | null | undefined;
1968
+ email?: string | null | undefined;
1969
+ clientId?: string | null | undefined;
1970
+ channelId?: string | null | undefined;
1968
1971
  status?: "active" | "pending" | undefined;
1969
1972
  apiKey?: string | undefined;
1970
1973
  tier?: "basic" | "regular" | "premium" | undefined;
1974
+ integrationType?: "meta" | "360dialog" | undefined;
1971
1975
  } | undefined;
1972
1976
  vonageCredentials?: {
1973
1977
  apiKey: string;
@@ -1984,15 +1988,16 @@ export declare const cxLogContract: {
1984
1988
  additionalCredentials?: any;
1985
1989
  senderId?: string | undefined;
1986
1990
  whatsapp?: {
1987
- email: string;
1988
- wabaExternalId: string;
1989
- phoneNumberId: string;
1990
- wabaBusinessId?: string | undefined;
1991
- clientId?: string | undefined;
1992
- channelId?: string | undefined;
1991
+ wabaBusinessId?: string | null | undefined;
1992
+ wabaExternalId?: string | null | undefined;
1993
+ phoneNumberId?: string | null | undefined;
1994
+ email?: string | null | undefined;
1995
+ clientId?: string | null | undefined;
1996
+ channelId?: string | null | undefined;
1993
1997
  status?: "active" | "pending" | undefined;
1994
1998
  apiKey?: string | undefined;
1995
1999
  tier?: "basic" | "regular" | "premium" | undefined;
2000
+ integrationType?: "meta" | "360dialog" | undefined;
1996
2001
  } | undefined;
1997
2002
  vonageCredentials?: {
1998
2003
  apiKey: string;
@@ -2243,15 +2248,16 @@ export declare const cxLogContract: {
2243
2248
  additionalCredentials?: any;
2244
2249
  senderId?: string | undefined;
2245
2250
  whatsapp?: {
2246
- email: string;
2247
- wabaExternalId: string;
2248
- phoneNumberId: string;
2249
- wabaBusinessId?: string | undefined;
2250
- clientId?: string | undefined;
2251
- channelId?: string | undefined;
2251
+ wabaBusinessId?: string | null | undefined;
2252
+ wabaExternalId?: string | null | undefined;
2253
+ phoneNumberId?: string | null | undefined;
2254
+ email?: string | null | undefined;
2255
+ clientId?: string | null | undefined;
2256
+ channelId?: string | null | undefined;
2252
2257
  status?: "active" | "pending" | undefined;
2253
2258
  apiKey?: string | undefined;
2254
2259
  tier?: "basic" | "regular" | "premium" | undefined;
2260
+ integrationType?: "meta" | "360dialog" | undefined;
2255
2261
  } | undefined;
2256
2262
  vonageCredentials?: {
2257
2263
  apiKey: string;
@@ -2333,15 +2339,16 @@ export declare const cxLogContract: {
2333
2339
  additionalCredentials?: any;
2334
2340
  senderId?: string | undefined;
2335
2341
  whatsapp?: {
2336
- email: string;
2337
- wabaExternalId: string;
2338
- phoneNumberId: string;
2339
- wabaBusinessId?: string | undefined;
2340
- clientId?: string | undefined;
2341
- channelId?: string | undefined;
2342
+ wabaBusinessId?: string | null | undefined;
2343
+ wabaExternalId?: string | null | undefined;
2344
+ phoneNumberId?: string | null | undefined;
2345
+ email?: string | null | undefined;
2346
+ clientId?: string | null | undefined;
2347
+ channelId?: string | null | undefined;
2342
2348
  status?: "active" | "pending" | undefined;
2343
2349
  apiKey?: string | undefined;
2344
2350
  tier?: "basic" | "regular" | "premium" | undefined;
2351
+ integrationType?: "meta" | "360dialog" | undefined;
2345
2352
  } | undefined;
2346
2353
  vonageCredentials?: {
2347
2354
  apiKey: string;
@@ -2426,15 +2433,16 @@ export declare const cxLogContract: {
2426
2433
  additionalCredentials?: any;
2427
2434
  senderId?: string | undefined;
2428
2435
  whatsapp?: {
2429
- email: string;
2430
- wabaExternalId: string;
2431
- phoneNumberId: string;
2432
- wabaBusinessId?: string | undefined;
2433
- clientId?: string | undefined;
2434
- channelId?: string | undefined;
2436
+ wabaBusinessId?: string | null | undefined;
2437
+ wabaExternalId?: string | null | undefined;
2438
+ phoneNumberId?: string | null | undefined;
2439
+ email?: string | null | undefined;
2440
+ clientId?: string | null | undefined;
2441
+ channelId?: string | null | undefined;
2435
2442
  status?: "active" | "pending" | undefined;
2436
2443
  apiKey?: string | undefined;
2437
2444
  tier?: "basic" | "regular" | "premium" | undefined;
2445
+ integrationType?: "meta" | "360dialog" | undefined;
2438
2446
  } | undefined;
2439
2447
  vonageCredentials?: {
2440
2448
  apiKey: string;
@@ -2745,15 +2753,16 @@ export declare const cxLogContract: {
2745
2753
  additionalCredentials?: any;
2746
2754
  senderId?: string | undefined;
2747
2755
  whatsapp?: {
2748
- email: string;
2749
- wabaExternalId: string;
2750
- phoneNumberId: string;
2751
- wabaBusinessId?: string | undefined;
2752
- clientId?: string | undefined;
2753
- channelId?: string | undefined;
2756
+ wabaBusinessId?: string | null | undefined;
2757
+ wabaExternalId?: string | null | undefined;
2758
+ phoneNumberId?: string | null | undefined;
2759
+ email?: string | null | undefined;
2760
+ clientId?: string | null | undefined;
2761
+ channelId?: string | null | undefined;
2754
2762
  status?: "active" | "pending" | undefined;
2755
2763
  apiKey?: string | undefined;
2756
2764
  tier?: "basic" | "regular" | "premium" | undefined;
2765
+ integrationType?: "meta" | "360dialog" | undefined;
2757
2766
  } | undefined;
2758
2767
  vonageCredentials?: {
2759
2768
  apiKey: string;
@@ -6896,15 +6905,16 @@ export declare const cxLogContract: {
6896
6905
  additionalCredentials?: any;
6897
6906
  senderId?: string | undefined;
6898
6907
  whatsapp?: {
6899
- email: string;
6900
- wabaExternalId: string;
6901
- phoneNumberId: string;
6902
- wabaBusinessId?: string | undefined;
6903
- clientId?: string | undefined;
6904
- channelId?: string | undefined;
6908
+ wabaBusinessId?: string | null | undefined;
6909
+ wabaExternalId?: string | null | undefined;
6910
+ phoneNumberId?: string | null | undefined;
6911
+ email?: string | null | undefined;
6912
+ clientId?: string | null | undefined;
6913
+ channelId?: string | null | undefined;
6905
6914
  status?: "active" | "pending" | undefined;
6906
6915
  apiKey?: string | undefined;
6907
6916
  tier?: "basic" | "regular" | "premium" | undefined;
6917
+ integrationType?: "meta" | "360dialog" | undefined;
6908
6918
  } | undefined;
6909
6919
  vonageCredentials?: {
6910
6920
  apiKey: string;
@@ -7819,15 +7829,16 @@ export declare const cxLogContract: {
7819
7829
  additionalCredentials?: any;
7820
7830
  senderId?: string | undefined;
7821
7831
  whatsapp?: {
7822
- email: string;
7823
- wabaExternalId: string;
7824
- phoneNumberId: string;
7825
- wabaBusinessId?: string | undefined;
7826
- clientId?: string | undefined;
7827
- channelId?: string | undefined;
7832
+ wabaBusinessId?: string | null | undefined;
7833
+ wabaExternalId?: string | null | undefined;
7834
+ phoneNumberId?: string | null | undefined;
7835
+ email?: string | null | undefined;
7836
+ clientId?: string | null | undefined;
7837
+ channelId?: string | null | undefined;
7828
7838
  status?: "active" | "pending" | undefined;
7829
7839
  apiKey?: string | undefined;
7830
7840
  tier?: "basic" | "regular" | "premium" | undefined;
7841
+ integrationType?: "meta" | "360dialog" | undefined;
7831
7842
  } | undefined;
7832
7843
  vonageCredentials?: {
7833
7844
  apiKey: string;
@@ -8748,15 +8759,16 @@ export declare const cxLogContract: {
8748
8759
  additionalCredentials?: any;
8749
8760
  senderId?: string | undefined;
8750
8761
  whatsapp?: {
8751
- email: string;
8752
- wabaExternalId: string;
8753
- phoneNumberId: string;
8754
- wabaBusinessId?: string | undefined;
8755
- clientId?: string | undefined;
8756
- channelId?: string | undefined;
8762
+ wabaBusinessId?: string | null | undefined;
8763
+ wabaExternalId?: string | null | undefined;
8764
+ phoneNumberId?: string | null | undefined;
8765
+ email?: string | null | undefined;
8766
+ clientId?: string | null | undefined;
8767
+ channelId?: string | null | undefined;
8757
8768
  status?: "active" | "pending" | undefined;
8758
8769
  apiKey?: string | undefined;
8759
8770
  tier?: "basic" | "regular" | "premium" | undefined;
8771
+ integrationType?: "meta" | "360dialog" | undefined;
8760
8772
  } | undefined;
8761
8773
  vonageCredentials?: {
8762
8774
  apiKey: string;
@@ -9677,15 +9689,16 @@ export declare const cxLogContract: {
9677
9689
  additionalCredentials?: any;
9678
9690
  senderId?: string | undefined;
9679
9691
  whatsapp?: {
9680
- email: string;
9681
- wabaExternalId: string;
9682
- phoneNumberId: string;
9683
- wabaBusinessId?: string | undefined;
9684
- clientId?: string | undefined;
9685
- channelId?: string | undefined;
9692
+ wabaBusinessId?: string | null | undefined;
9693
+ wabaExternalId?: string | null | undefined;
9694
+ phoneNumberId?: string | null | undefined;
9695
+ email?: string | null | undefined;
9696
+ clientId?: string | null | undefined;
9697
+ channelId?: string | null | undefined;
9686
9698
  status?: "active" | "pending" | undefined;
9687
9699
  apiKey?: string | undefined;
9688
9700
  tier?: "basic" | "regular" | "premium" | undefined;
9701
+ integrationType?: "meta" | "360dialog" | undefined;
9689
9702
  } | undefined;
9690
9703
  vonageCredentials?: {
9691
9704
  apiKey: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/cx-log/index.ts"],"names":[],"mappings":"AAEA,OAAO,CAAC,MAAM,KAAK,CAAC;AAQpB,OAAO,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAC;AACpD,OAAO,EAAE,4BAA4B,EAAE,MAAM,cAAc,CAAC;AAE5D,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8DxB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/cx-log/index.ts"],"names":[],"mappings":"AAEA,OAAO,CAAC,MAAM,KAAK,CAAC;AAQpB,OAAO,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAC;AACpD,OAAO,EAAE,4BAA4B,EAAE,MAAM,cAAc,CAAC;AAE5D,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8DxB,CAAC"}
@@ -2331,35 +2331,38 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2331
2331
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2332
2332
  senderId: z.ZodOptional<z.ZodString>;
2333
2333
  whatsapp: z.ZodOptional<z.ZodObject<{
2334
- wabaBusinessId: z.ZodOptional<z.ZodString>;
2335
- wabaExternalId: z.ZodString;
2336
- phoneNumberId: z.ZodString;
2337
- email: z.ZodString;
2338
- clientId: z.ZodOptional<z.ZodString>;
2339
- channelId: z.ZodOptional<z.ZodString>;
2334
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2335
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2336
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2337
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2338
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2339
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2340
2340
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2341
2341
  apiKey: z.ZodOptional<z.ZodString>;
2342
2342
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
2343
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
2343
2344
  }, "strip", z.ZodTypeAny, {
2344
- email: string;
2345
- wabaExternalId: string;
2346
- phoneNumberId: string;
2347
- wabaBusinessId?: string | undefined;
2348
- clientId?: string | undefined;
2349
- channelId?: string | undefined;
2345
+ wabaBusinessId?: string | null | undefined;
2346
+ wabaExternalId?: string | null | undefined;
2347
+ phoneNumberId?: string | null | undefined;
2348
+ email?: string | null | undefined;
2349
+ clientId?: string | null | undefined;
2350
+ channelId?: string | null | undefined;
2350
2351
  status?: "active" | "pending" | undefined;
2351
2352
  apiKey?: string | undefined;
2352
2353
  tier?: "basic" | "regular" | "premium" | undefined;
2354
+ integrationType?: "meta" | "360dialog" | undefined;
2353
2355
  }, {
2354
- email: string;
2355
- wabaExternalId: string;
2356
- phoneNumberId: string;
2357
- wabaBusinessId?: string | undefined;
2358
- clientId?: string | undefined;
2359
- channelId?: string | undefined;
2356
+ wabaBusinessId?: string | null | undefined;
2357
+ wabaExternalId?: string | null | undefined;
2358
+ phoneNumberId?: string | null | undefined;
2359
+ email?: string | null | undefined;
2360
+ clientId?: string | null | undefined;
2361
+ channelId?: string | null | undefined;
2360
2362
  status?: "active" | "pending" | undefined;
2361
2363
  apiKey?: string | undefined;
2362
2364
  tier?: "basic" | "regular" | "premium" | undefined;
2365
+ integrationType?: "meta" | "360dialog" | undefined;
2363
2366
  }>>;
2364
2367
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2365
2368
  mobileNumber: z.ZodString;
@@ -2384,15 +2387,16 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2384
2387
  additionalCredentials?: any;
2385
2388
  senderId?: string | undefined;
2386
2389
  whatsapp?: {
2387
- email: string;
2388
- wabaExternalId: string;
2389
- phoneNumberId: string;
2390
- wabaBusinessId?: string | undefined;
2391
- clientId?: string | undefined;
2392
- channelId?: string | undefined;
2390
+ wabaBusinessId?: string | null | undefined;
2391
+ wabaExternalId?: string | null | undefined;
2392
+ phoneNumberId?: string | null | undefined;
2393
+ email?: string | null | undefined;
2394
+ clientId?: string | null | undefined;
2395
+ channelId?: string | null | undefined;
2393
2396
  status?: "active" | "pending" | undefined;
2394
2397
  apiKey?: string | undefined;
2395
2398
  tier?: "basic" | "regular" | "premium" | undefined;
2399
+ integrationType?: "meta" | "360dialog" | undefined;
2396
2400
  } | undefined;
2397
2401
  vonageCredentials?: {
2398
2402
  apiKey: string;
@@ -2409,15 +2413,16 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2409
2413
  additionalCredentials?: any;
2410
2414
  senderId?: string | undefined;
2411
2415
  whatsapp?: {
2412
- email: string;
2413
- wabaExternalId: string;
2414
- phoneNumberId: string;
2415
- wabaBusinessId?: string | undefined;
2416
- clientId?: string | undefined;
2417
- channelId?: string | undefined;
2416
+ wabaBusinessId?: string | null | undefined;
2417
+ wabaExternalId?: string | null | undefined;
2418
+ phoneNumberId?: string | null | undefined;
2419
+ email?: string | null | undefined;
2420
+ clientId?: string | null | undefined;
2421
+ channelId?: string | null | undefined;
2418
2422
  status?: "active" | "pending" | undefined;
2419
2423
  apiKey?: string | undefined;
2420
2424
  tier?: "basic" | "regular" | "premium" | undefined;
2425
+ integrationType?: "meta" | "360dialog" | undefined;
2421
2426
  } | undefined;
2422
2427
  vonageCredentials?: {
2423
2428
  apiKey: string;
@@ -2668,15 +2673,16 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2668
2673
  additionalCredentials?: any;
2669
2674
  senderId?: string | undefined;
2670
2675
  whatsapp?: {
2671
- email: string;
2672
- wabaExternalId: string;
2673
- phoneNumberId: string;
2674
- wabaBusinessId?: string | undefined;
2675
- clientId?: string | undefined;
2676
- channelId?: string | undefined;
2676
+ wabaBusinessId?: string | null | undefined;
2677
+ wabaExternalId?: string | null | undefined;
2678
+ phoneNumberId?: string | null | undefined;
2679
+ email?: string | null | undefined;
2680
+ clientId?: string | null | undefined;
2681
+ channelId?: string | null | undefined;
2677
2682
  status?: "active" | "pending" | undefined;
2678
2683
  apiKey?: string | undefined;
2679
2684
  tier?: "basic" | "regular" | "premium" | undefined;
2685
+ integrationType?: "meta" | "360dialog" | undefined;
2680
2686
  } | undefined;
2681
2687
  vonageCredentials?: {
2682
2688
  apiKey: string;
@@ -2758,15 +2764,16 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2758
2764
  additionalCredentials?: any;
2759
2765
  senderId?: string | undefined;
2760
2766
  whatsapp?: {
2761
- email: string;
2762
- wabaExternalId: string;
2763
- phoneNumberId: string;
2764
- wabaBusinessId?: string | undefined;
2765
- clientId?: string | undefined;
2766
- channelId?: string | undefined;
2767
+ wabaBusinessId?: string | null | undefined;
2768
+ wabaExternalId?: string | null | undefined;
2769
+ phoneNumberId?: string | null | undefined;
2770
+ email?: string | null | undefined;
2771
+ clientId?: string | null | undefined;
2772
+ channelId?: string | null | undefined;
2767
2773
  status?: "active" | "pending" | undefined;
2768
2774
  apiKey?: string | undefined;
2769
2775
  tier?: "basic" | "regular" | "premium" | undefined;
2776
+ integrationType?: "meta" | "360dialog" | undefined;
2770
2777
  } | undefined;
2771
2778
  vonageCredentials?: {
2772
2779
  apiKey: string;
@@ -2851,15 +2858,16 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2851
2858
  additionalCredentials?: any;
2852
2859
  senderId?: string | undefined;
2853
2860
  whatsapp?: {
2854
- email: string;
2855
- wabaExternalId: string;
2856
- phoneNumberId: string;
2857
- wabaBusinessId?: string | undefined;
2858
- clientId?: string | undefined;
2859
- channelId?: string | undefined;
2861
+ wabaBusinessId?: string | null | undefined;
2862
+ wabaExternalId?: string | null | undefined;
2863
+ phoneNumberId?: string | null | undefined;
2864
+ email?: string | null | undefined;
2865
+ clientId?: string | null | undefined;
2866
+ channelId?: string | null | undefined;
2860
2867
  status?: "active" | "pending" | undefined;
2861
2868
  apiKey?: string | undefined;
2862
2869
  tier?: "basic" | "regular" | "premium" | undefined;
2870
+ integrationType?: "meta" | "360dialog" | undefined;
2863
2871
  } | undefined;
2864
2872
  vonageCredentials?: {
2865
2873
  apiKey: string;
@@ -3170,15 +3178,16 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3170
3178
  additionalCredentials?: any;
3171
3179
  senderId?: string | undefined;
3172
3180
  whatsapp?: {
3173
- email: string;
3174
- wabaExternalId: string;
3175
- phoneNumberId: string;
3176
- wabaBusinessId?: string | undefined;
3177
- clientId?: string | undefined;
3178
- channelId?: string | undefined;
3181
+ wabaBusinessId?: string | null | undefined;
3182
+ wabaExternalId?: string | null | undefined;
3183
+ phoneNumberId?: string | null | undefined;
3184
+ email?: string | null | undefined;
3185
+ clientId?: string | null | undefined;
3186
+ channelId?: string | null | undefined;
3179
3187
  status?: "active" | "pending" | undefined;
3180
3188
  apiKey?: string | undefined;
3181
3189
  tier?: "basic" | "regular" | "premium" | undefined;
3190
+ integrationType?: "meta" | "360dialog" | undefined;
3182
3191
  } | undefined;
3183
3192
  vonageCredentials?: {
3184
3193
  apiKey: string;
@@ -7321,15 +7330,16 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
7321
7330
  additionalCredentials?: any;
7322
7331
  senderId?: string | undefined;
7323
7332
  whatsapp?: {
7324
- email: string;
7325
- wabaExternalId: string;
7326
- phoneNumberId: string;
7327
- wabaBusinessId?: string | undefined;
7328
- clientId?: string | undefined;
7329
- channelId?: string | undefined;
7333
+ wabaBusinessId?: string | null | undefined;
7334
+ wabaExternalId?: string | null | undefined;
7335
+ phoneNumberId?: string | null | undefined;
7336
+ email?: string | null | undefined;
7337
+ clientId?: string | null | undefined;
7338
+ channelId?: string | null | undefined;
7330
7339
  status?: "active" | "pending" | undefined;
7331
7340
  apiKey?: string | undefined;
7332
7341
  tier?: "basic" | "regular" | "premium" | undefined;
7342
+ integrationType?: "meta" | "360dialog" | undefined;
7333
7343
  } | undefined;
7334
7344
  vonageCredentials?: {
7335
7345
  apiKey: string;
@@ -8244,15 +8254,16 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
8244
8254
  additionalCredentials?: any;
8245
8255
  senderId?: string | undefined;
8246
8256
  whatsapp?: {
8247
- email: string;
8248
- wabaExternalId: string;
8249
- phoneNumberId: string;
8250
- wabaBusinessId?: string | undefined;
8251
- clientId?: string | undefined;
8252
- channelId?: string | undefined;
8257
+ wabaBusinessId?: string | null | undefined;
8258
+ wabaExternalId?: string | null | undefined;
8259
+ phoneNumberId?: string | null | undefined;
8260
+ email?: string | null | undefined;
8261
+ clientId?: string | null | undefined;
8262
+ channelId?: string | null | undefined;
8253
8263
  status?: "active" | "pending" | undefined;
8254
8264
  apiKey?: string | undefined;
8255
8265
  tier?: "basic" | "regular" | "premium" | undefined;
8266
+ integrationType?: "meta" | "360dialog" | undefined;
8256
8267
  } | undefined;
8257
8268
  vonageCredentials?: {
8258
8269
  apiKey: string;