@kl1/contracts 1.2.39-uat → 1.2.40-uat
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/api-contracts/src/channel/index.d.ts +1253 -1074
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +84 -72
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +98 -84
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +1918 -1644
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +462 -396
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +679 -582
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +7294 -6252
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +91 -78
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +77 -66
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +938 -804
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +63 -54
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +49 -42
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +735 -630
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +651 -558
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +77 -66
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +735 -630
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +49 -42
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +140 -120
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +525 -450
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +525 -450
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +525 -450
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +623 -534
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +154 -132
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +8 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -7
- package/dist/index.mjs.map +1 -1
- 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
|
-
|
1920
|
-
wabaExternalId
|
1921
|
-
phoneNumberId
|
1922
|
-
|
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
|
-
|
1930
|
-
wabaExternalId
|
1931
|
-
phoneNumberId
|
1932
|
-
|
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
|
-
|
1963
|
-
wabaExternalId
|
1964
|
-
phoneNumberId
|
1965
|
-
|
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
|
-
|
1988
|
-
wabaExternalId
|
1989
|
-
phoneNumberId
|
1990
|
-
|
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
|
-
|
2247
|
-
wabaExternalId
|
2248
|
-
phoneNumberId
|
2249
|
-
|
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
|
-
|
2337
|
-
wabaExternalId
|
2338
|
-
phoneNumberId
|
2339
|
-
|
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
|
-
|
2430
|
-
wabaExternalId
|
2431
|
-
phoneNumberId
|
2432
|
-
|
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
|
-
|
2749
|
-
wabaExternalId
|
2750
|
-
phoneNumberId
|
2751
|
-
|
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
|
-
|
6900
|
-
wabaExternalId
|
6901
|
-
phoneNumberId
|
6902
|
-
|
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
|
-
|
7823
|
-
wabaExternalId
|
7824
|
-
phoneNumberId
|
7825
|
-
|
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
|
-
|
8752
|
-
wabaExternalId
|
8753
|
-
phoneNumberId
|
8754
|
-
|
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
|
-
|
9681
|
-
wabaExternalId
|
9682
|
-
phoneNumberId
|
9683
|
-
|
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
|
-
|
2345
|
-
wabaExternalId
|
2346
|
-
phoneNumberId
|
2347
|
-
|
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
|
-
|
2355
|
-
wabaExternalId
|
2356
|
-
phoneNumberId
|
2357
|
-
|
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
|
-
|
2388
|
-
wabaExternalId
|
2389
|
-
phoneNumberId
|
2390
|
-
|
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
|
-
|
2413
|
-
wabaExternalId
|
2414
|
-
phoneNumberId
|
2415
|
-
|
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
|
-
|
2672
|
-
wabaExternalId
|
2673
|
-
phoneNumberId
|
2674
|
-
|
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
|
-
|
2762
|
-
wabaExternalId
|
2763
|
-
phoneNumberId
|
2764
|
-
|
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
|
-
|
2855
|
-
wabaExternalId
|
2856
|
-
phoneNumberId
|
2857
|
-
|
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
|
-
|
3174
|
-
wabaExternalId
|
3175
|
-
phoneNumberId
|
3176
|
-
|
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
|
-
|
7325
|
-
wabaExternalId
|
7326
|
-
phoneNumberId
|
7327
|
-
|
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
|
-
|
8248
|
-
wabaExternalId
|
8249
|
-
phoneNumberId
|
8250
|
-
|
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;
|