@kl1/contracts 1.0.73 → 1.0.75

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.
@@ -124,7 +124,6 @@ export declare const cxLogContract: {
124
124
  startedDate: z.ZodNullable<z.ZodString>;
125
125
  handledTime: z.ZodNullable<z.ZodString>;
126
126
  firstResponseTime: z.ZodNullable<z.ZodString>;
127
- disposition: z.ZodNullable<z.ZodString>;
128
127
  slaMeet: z.ZodNullable<z.ZodString>;
129
128
  evaluateForm: z.ZodNullable<z.ZodObject<{
130
129
  id: z.ZodString;
@@ -1567,14 +1566,14 @@ export declare const cxLogContract: {
1567
1566
  telephonySignature: string | null;
1568
1567
  };
1569
1568
  }>;
1570
- channel: z.ZodOptional<z.ZodObject<{
1571
- id: z.ZodOptional<z.ZodString>;
1572
- createdAt: z.ZodOptional<z.ZodDate>;
1573
- updatedAt: z.ZodOptional<z.ZodDate>;
1574
- deletedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
1575
- name: z.ZodOptional<z.ZodString>;
1576
- type: z.ZodOptional<z.ZodEnum<["whatsapp", "messenger", "telegram", "line", "viber", "kakao", "shopee", "lazada", "instagram"]>>;
1577
- metadata: z.ZodOptional<z.ZodObject<{
1569
+ channel: z.ZodObject<{
1570
+ id: z.ZodString;
1571
+ createdAt: z.ZodDate;
1572
+ updatedAt: z.ZodDate;
1573
+ deletedAt: z.ZodNullable<z.ZodDate>;
1574
+ name: z.ZodString;
1575
+ type: z.ZodEnum<["whatsapp", "messenger", "telegram", "line", "viber", "kakao", "shopee", "lazada", "instagram"]>;
1576
+ metadata: z.ZodObject<{
1578
1577
  id: z.ZodString;
1579
1578
  name: z.ZodString;
1580
1579
  accessToken: z.ZodString;
@@ -1592,14 +1591,14 @@ export declare const cxLogContract: {
1592
1591
  accessToken: string;
1593
1592
  channelSecret?: string | undefined;
1594
1593
  additionalCredentials?: any;
1595
- }>>;
1596
- brandName: z.ZodOptional<z.ZodString>;
1597
- platformId: z.ZodOptional<z.ZodString>;
1598
- status: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>>;
1599
- isReloginRequired: z.ZodOptional<z.ZodBoolean>;
1600
- connectedUserName: z.ZodOptional<z.ZodString>;
1601
- connectedUserId: z.ZodOptional<z.ZodString>;
1602
- actor: z.ZodOptional<z.ZodObject<{
1594
+ }>;
1595
+ brandName: z.ZodString;
1596
+ platformId: z.ZodString;
1597
+ status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
1598
+ isReloginRequired: z.ZodBoolean;
1599
+ connectedUserName: z.ZodString;
1600
+ connectedUserId: z.ZodString;
1601
+ actor: z.ZodObject<{
1603
1602
  id: z.ZodString;
1604
1603
  createdAt: z.ZodDate;
1605
1604
  updatedAt: z.ZodDate;
@@ -1802,28 +1801,23 @@ export declare const cxLogContract: {
1802
1801
  extensionName: string;
1803
1802
  telephonySignature: string | null;
1804
1803
  };
1805
- }>>;
1804
+ }>;
1806
1805
  }, "strip", z.ZodTypeAny, {
1807
- id?: string | undefined;
1808
- createdAt?: Date | undefined;
1809
- updatedAt?: Date | undefined;
1810
- deletedAt?: Date | null | undefined;
1811
- name?: string | undefined;
1812
- type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
1813
- metadata?: {
1806
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
1807
+ id: string;
1808
+ name: string;
1809
+ metadata: {
1814
1810
  id: string;
1815
1811
  name: string;
1816
1812
  accessToken: string;
1817
1813
  channelSecret?: string | undefined;
1818
1814
  additionalCredentials?: any;
1819
- } | undefined;
1820
- brandName?: string | undefined;
1821
- platformId?: string | undefined;
1822
- status?: boolean | undefined;
1823
- isReloginRequired?: boolean | undefined;
1824
- connectedUserName?: string | undefined;
1825
- connectedUserId?: string | undefined;
1826
- actor?: {
1815
+ };
1816
+ status: boolean;
1817
+ createdAt: Date;
1818
+ updatedAt: Date;
1819
+ deletedAt: Date | null;
1820
+ actor: {
1827
1821
  id: string;
1828
1822
  address: string | null;
1829
1823
  name: string;
@@ -1866,28 +1860,28 @@ export declare const cxLogContract: {
1866
1860
  extensionName: string;
1867
1861
  telephonySignature: string | null;
1868
1862
  };
1869
- } | undefined;
1863
+ };
1864
+ brandName: string;
1865
+ platformId: string;
1866
+ isReloginRequired: boolean;
1867
+ connectedUserName: string;
1868
+ connectedUserId: string;
1870
1869
  }, {
1871
- id?: string | undefined;
1872
- createdAt?: Date | undefined;
1873
- updatedAt?: Date | undefined;
1874
- deletedAt?: Date | null | undefined;
1875
- name?: string | undefined;
1876
- type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
1877
- metadata?: {
1870
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
1871
+ id: string;
1872
+ name: string;
1873
+ metadata: {
1878
1874
  id: string;
1879
1875
  name: string;
1880
1876
  accessToken: string;
1881
1877
  channelSecret?: string | undefined;
1882
1878
  additionalCredentials?: any;
1883
- } | undefined;
1884
- brandName?: string | undefined;
1885
- platformId?: string | undefined;
1886
- status?: boolean | undefined;
1887
- isReloginRequired?: boolean | undefined;
1888
- connectedUserName?: string | undefined;
1889
- connectedUserId?: string | undefined;
1890
- actor?: {
1879
+ };
1880
+ status: boolean;
1881
+ createdAt: Date;
1882
+ updatedAt: Date;
1883
+ deletedAt: Date | null;
1884
+ actor: {
1891
1885
  id: string;
1892
1886
  address: string | null;
1893
1887
  name: string;
@@ -1930,10 +1924,80 @@ export declare const cxLogContract: {
1930
1924
  extensionName: string;
1931
1925
  telephonySignature: string | null;
1932
1926
  };
1933
- } | undefined;
1934
- }>>;
1927
+ };
1928
+ brandName: string;
1929
+ platformId: string;
1930
+ isReloginRequired: boolean;
1931
+ connectedUserName: string;
1932
+ connectedUserId: string;
1933
+ }>;
1935
1934
  }, "strip", z.ZodTypeAny, {
1936
1935
  id: string;
1936
+ channel: {
1937
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
1938
+ id: string;
1939
+ name: string;
1940
+ metadata: {
1941
+ id: string;
1942
+ name: string;
1943
+ accessToken: string;
1944
+ channelSecret?: string | undefined;
1945
+ additionalCredentials?: any;
1946
+ };
1947
+ status: boolean;
1948
+ createdAt: Date;
1949
+ updatedAt: Date;
1950
+ deletedAt: Date | null;
1951
+ actor: {
1952
+ id: string;
1953
+ address: string | null;
1954
+ name: string;
1955
+ email: string;
1956
+ createdAt: Date;
1957
+ updatedAt: Date;
1958
+ deletedAt: Date | null;
1959
+ emailVerifiedAt: Date | null;
1960
+ password: string;
1961
+ phone: string | null;
1962
+ notificationCount: number | null;
1963
+ roles: {
1964
+ id: string;
1965
+ description: string | null;
1966
+ createdAt: Date;
1967
+ updatedAt: Date;
1968
+ deletedAt: Date | null;
1969
+ systemName: string;
1970
+ displayName: string;
1971
+ permissions: {
1972
+ id: string;
1973
+ description: string | null;
1974
+ createdAt: Date;
1975
+ updatedAt: Date;
1976
+ deletedAt: Date | null;
1977
+ systemName: string;
1978
+ displayName: string;
1979
+ }[];
1980
+ }[];
1981
+ extension: {
1982
+ id: string;
1983
+ createdAt: Date;
1984
+ updatedAt: Date;
1985
+ deletedAt: Date | null;
1986
+ userId: string | null;
1987
+ sipServerUrl: string;
1988
+ sipUserName: string;
1989
+ webphoneLoginUser: string;
1990
+ extensionId: string | null;
1991
+ extensionName: string;
1992
+ telephonySignature: string | null;
1993
+ };
1994
+ };
1995
+ brandName: string;
1996
+ platformId: string;
1997
+ isReloginRequired: boolean;
1998
+ connectedUserName: string;
1999
+ connectedUserId: string;
2000
+ };
1937
2001
  direction: "incoming" | "outgoing" | "system";
1938
2002
  createdAt: Date;
1939
2003
  updatedAt: Date;
@@ -2145,27 +2209,24 @@ export declare const cxLogContract: {
2145
2209
  telephonySignature: string | null;
2146
2210
  };
2147
2211
  };
2148
- channel?: {
2149
- id?: string | undefined;
2150
- createdAt?: Date | undefined;
2151
- updatedAt?: Date | undefined;
2152
- deletedAt?: Date | null | undefined;
2153
- name?: string | undefined;
2154
- type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
2155
- metadata?: {
2212
+ }, {
2213
+ id: string;
2214
+ channel: {
2215
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
2216
+ id: string;
2217
+ name: string;
2218
+ metadata: {
2156
2219
  id: string;
2157
2220
  name: string;
2158
2221
  accessToken: string;
2159
2222
  channelSecret?: string | undefined;
2160
2223
  additionalCredentials?: any;
2161
- } | undefined;
2162
- brandName?: string | undefined;
2163
- platformId?: string | undefined;
2164
- status?: boolean | undefined;
2165
- isReloginRequired?: boolean | undefined;
2166
- connectedUserName?: string | undefined;
2167
- connectedUserId?: string | undefined;
2168
- actor?: {
2224
+ };
2225
+ status: boolean;
2226
+ createdAt: Date;
2227
+ updatedAt: Date;
2228
+ deletedAt: Date | null;
2229
+ actor: {
2169
2230
  id: string;
2170
2231
  address: string | null;
2171
2232
  name: string;
@@ -2208,10 +2269,13 @@ export declare const cxLogContract: {
2208
2269
  extensionName: string;
2209
2270
  telephonySignature: string | null;
2210
2271
  };
2211
- } | undefined;
2212
- } | undefined;
2213
- }, {
2214
- id: string;
2272
+ };
2273
+ brandName: string;
2274
+ platformId: string;
2275
+ isReloginRequired: boolean;
2276
+ connectedUserName: string;
2277
+ connectedUserId: string;
2278
+ };
2215
2279
  direction: "incoming" | "outgoing" | "system";
2216
2280
  createdAt: Date;
2217
2281
  updatedAt: Date;
@@ -2423,71 +2487,6 @@ export declare const cxLogContract: {
2423
2487
  telephonySignature: string | null;
2424
2488
  };
2425
2489
  };
2426
- channel?: {
2427
- id?: string | undefined;
2428
- createdAt?: Date | undefined;
2429
- updatedAt?: Date | undefined;
2430
- deletedAt?: Date | null | undefined;
2431
- name?: string | undefined;
2432
- type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
2433
- metadata?: {
2434
- id: string;
2435
- name: string;
2436
- accessToken: string;
2437
- channelSecret?: string | undefined;
2438
- additionalCredentials?: any;
2439
- } | undefined;
2440
- brandName?: string | undefined;
2441
- platformId?: string | undefined;
2442
- status?: boolean | undefined;
2443
- isReloginRequired?: boolean | undefined;
2444
- connectedUserName?: string | undefined;
2445
- connectedUserId?: string | undefined;
2446
- actor?: {
2447
- id: string;
2448
- address: string | null;
2449
- name: string;
2450
- email: string;
2451
- createdAt: Date;
2452
- updatedAt: Date;
2453
- deletedAt: Date | null;
2454
- emailVerifiedAt: Date | null;
2455
- password: string;
2456
- phone: string | null;
2457
- notificationCount: number | null;
2458
- roles: {
2459
- id: string;
2460
- description: string | null;
2461
- createdAt: Date;
2462
- updatedAt: Date;
2463
- deletedAt: Date | null;
2464
- systemName: string;
2465
- displayName: string;
2466
- permissions: {
2467
- id: string;
2468
- description: string | null;
2469
- createdAt: Date;
2470
- updatedAt: Date;
2471
- deletedAt: Date | null;
2472
- systemName: string;
2473
- displayName: string;
2474
- }[];
2475
- }[];
2476
- extension: {
2477
- id: string;
2478
- createdAt: Date;
2479
- updatedAt: Date;
2480
- deletedAt: Date | null;
2481
- userId: string | null;
2482
- sipServerUrl: string;
2483
- sipUserName: string;
2484
- webphoneLoginUser: string;
2485
- extensionId: string | null;
2486
- extensionName: string;
2487
- telephonySignature: string | null;
2488
- };
2489
- } | undefined;
2490
- } | undefined;
2491
2490
  }>>;
2492
2491
  telephonyCdr: z.ZodNullable<z.ZodObject<{
2493
2492
  id: z.ZodString;
@@ -4894,7 +4893,6 @@ export declare const cxLogContract: {
4894
4893
  }, "strip", z.ZodTypeAny, {
4895
4894
  id: string;
4896
4895
  channel: string | null;
4897
- disposition: string | null;
4898
4896
  direction: string | null;
4899
4897
  createdAt: Date;
4900
4898
  updatedAt: Date;
@@ -5021,6 +5019,71 @@ export declare const cxLogContract: {
5021
5019
  } | null;
5022
5020
  room: {
5023
5021
  id: string;
5022
+ channel: {
5023
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
5024
+ id: string;
5025
+ name: string;
5026
+ metadata: {
5027
+ id: string;
5028
+ name: string;
5029
+ accessToken: string;
5030
+ channelSecret?: string | undefined;
5031
+ additionalCredentials?: any;
5032
+ };
5033
+ status: boolean;
5034
+ createdAt: Date;
5035
+ updatedAt: Date;
5036
+ deletedAt: Date | null;
5037
+ actor: {
5038
+ id: string;
5039
+ address: string | null;
5040
+ name: string;
5041
+ email: string;
5042
+ createdAt: Date;
5043
+ updatedAt: Date;
5044
+ deletedAt: Date | null;
5045
+ emailVerifiedAt: Date | null;
5046
+ password: string;
5047
+ phone: string | null;
5048
+ notificationCount: number | null;
5049
+ roles: {
5050
+ id: string;
5051
+ description: string | null;
5052
+ createdAt: Date;
5053
+ updatedAt: Date;
5054
+ deletedAt: Date | null;
5055
+ systemName: string;
5056
+ displayName: string;
5057
+ permissions: {
5058
+ id: string;
5059
+ description: string | null;
5060
+ createdAt: Date;
5061
+ updatedAt: Date;
5062
+ deletedAt: Date | null;
5063
+ systemName: string;
5064
+ displayName: string;
5065
+ }[];
5066
+ }[];
5067
+ extension: {
5068
+ id: string;
5069
+ createdAt: Date;
5070
+ updatedAt: Date;
5071
+ deletedAt: Date | null;
5072
+ userId: string | null;
5073
+ sipServerUrl: string;
5074
+ sipUserName: string;
5075
+ webphoneLoginUser: string;
5076
+ extensionId: string | null;
5077
+ extensionName: string;
5078
+ telephonySignature: string | null;
5079
+ };
5080
+ };
5081
+ brandName: string;
5082
+ platformId: string;
5083
+ isReloginRequired: boolean;
5084
+ connectedUserName: string;
5085
+ connectedUserId: string;
5086
+ };
5024
5087
  direction: "incoming" | "outgoing" | "system";
5025
5088
  createdAt: Date;
5026
5089
  updatedAt: Date;
@@ -5232,71 +5295,6 @@ export declare const cxLogContract: {
5232
5295
  telephonySignature: string | null;
5233
5296
  };
5234
5297
  };
5235
- channel?: {
5236
- id?: string | undefined;
5237
- createdAt?: Date | undefined;
5238
- updatedAt?: Date | undefined;
5239
- deletedAt?: Date | null | undefined;
5240
- name?: string | undefined;
5241
- type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
5242
- metadata?: {
5243
- id: string;
5244
- name: string;
5245
- accessToken: string;
5246
- channelSecret?: string | undefined;
5247
- additionalCredentials?: any;
5248
- } | undefined;
5249
- brandName?: string | undefined;
5250
- platformId?: string | undefined;
5251
- status?: boolean | undefined;
5252
- isReloginRequired?: boolean | undefined;
5253
- connectedUserName?: string | undefined;
5254
- connectedUserId?: string | undefined;
5255
- actor?: {
5256
- id: string;
5257
- address: string | null;
5258
- name: string;
5259
- email: string;
5260
- createdAt: Date;
5261
- updatedAt: Date;
5262
- deletedAt: Date | null;
5263
- emailVerifiedAt: Date | null;
5264
- password: string;
5265
- phone: string | null;
5266
- notificationCount: number | null;
5267
- roles: {
5268
- id: string;
5269
- description: string | null;
5270
- createdAt: Date;
5271
- updatedAt: Date;
5272
- deletedAt: Date | null;
5273
- systemName: string;
5274
- displayName: string;
5275
- permissions: {
5276
- id: string;
5277
- description: string | null;
5278
- createdAt: Date;
5279
- updatedAt: Date;
5280
- deletedAt: Date | null;
5281
- systemName: string;
5282
- displayName: string;
5283
- }[];
5284
- }[];
5285
- extension: {
5286
- id: string;
5287
- createdAt: Date;
5288
- updatedAt: Date;
5289
- deletedAt: Date | null;
5290
- userId: string | null;
5291
- sipServerUrl: string;
5292
- sipUserName: string;
5293
- webphoneLoginUser: string;
5294
- extensionId: string | null;
5295
- extensionName: string;
5296
- telephonySignature: string | null;
5297
- };
5298
- } | undefined;
5299
- } | undefined;
5300
5298
  } | null;
5301
5299
  customerPhone: string | null;
5302
5300
  channelType: string | null;
@@ -5562,7 +5560,6 @@ export declare const cxLogContract: {
5562
5560
  }, {
5563
5561
  id: string;
5564
5562
  channel: string | null;
5565
- disposition: string | null;
5566
5563
  direction: string | null;
5567
5564
  createdAt: Date;
5568
5565
  updatedAt: Date;
@@ -5689,6 +5686,71 @@ export declare const cxLogContract: {
5689
5686
  } | null;
5690
5687
  room: {
5691
5688
  id: string;
5689
+ channel: {
5690
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
5691
+ id: string;
5692
+ name: string;
5693
+ metadata: {
5694
+ id: string;
5695
+ name: string;
5696
+ accessToken: string;
5697
+ channelSecret?: string | undefined;
5698
+ additionalCredentials?: any;
5699
+ };
5700
+ status: boolean;
5701
+ createdAt: Date;
5702
+ updatedAt: Date;
5703
+ deletedAt: Date | null;
5704
+ actor: {
5705
+ id: string;
5706
+ address: string | null;
5707
+ name: string;
5708
+ email: string;
5709
+ createdAt: Date;
5710
+ updatedAt: Date;
5711
+ deletedAt: Date | null;
5712
+ emailVerifiedAt: Date | null;
5713
+ password: string;
5714
+ phone: string | null;
5715
+ notificationCount: number | null;
5716
+ roles: {
5717
+ id: string;
5718
+ description: string | null;
5719
+ createdAt: Date;
5720
+ updatedAt: Date;
5721
+ deletedAt: Date | null;
5722
+ systemName: string;
5723
+ displayName: string;
5724
+ permissions: {
5725
+ id: string;
5726
+ description: string | null;
5727
+ createdAt: Date;
5728
+ updatedAt: Date;
5729
+ deletedAt: Date | null;
5730
+ systemName: string;
5731
+ displayName: string;
5732
+ }[];
5733
+ }[];
5734
+ extension: {
5735
+ id: string;
5736
+ createdAt: Date;
5737
+ updatedAt: Date;
5738
+ deletedAt: Date | null;
5739
+ userId: string | null;
5740
+ sipServerUrl: string;
5741
+ sipUserName: string;
5742
+ webphoneLoginUser: string;
5743
+ extensionId: string | null;
5744
+ extensionName: string;
5745
+ telephonySignature: string | null;
5746
+ };
5747
+ };
5748
+ brandName: string;
5749
+ platformId: string;
5750
+ isReloginRequired: boolean;
5751
+ connectedUserName: string;
5752
+ connectedUserId: string;
5753
+ };
5692
5754
  direction: "incoming" | "outgoing" | "system";
5693
5755
  createdAt: Date;
5694
5756
  updatedAt: Date;
@@ -5900,71 +5962,6 @@ export declare const cxLogContract: {
5900
5962
  telephonySignature: string | null;
5901
5963
  };
5902
5964
  };
5903
- channel?: {
5904
- id?: string | undefined;
5905
- createdAt?: Date | undefined;
5906
- updatedAt?: Date | undefined;
5907
- deletedAt?: Date | null | undefined;
5908
- name?: string | undefined;
5909
- type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
5910
- metadata?: {
5911
- id: string;
5912
- name: string;
5913
- accessToken: string;
5914
- channelSecret?: string | undefined;
5915
- additionalCredentials?: any;
5916
- } | undefined;
5917
- brandName?: string | undefined;
5918
- platformId?: string | undefined;
5919
- status?: boolean | undefined;
5920
- isReloginRequired?: boolean | undefined;
5921
- connectedUserName?: string | undefined;
5922
- connectedUserId?: string | undefined;
5923
- actor?: {
5924
- id: string;
5925
- address: string | null;
5926
- name: string;
5927
- email: string;
5928
- createdAt: Date;
5929
- updatedAt: Date;
5930
- deletedAt: Date | null;
5931
- emailVerifiedAt: Date | null;
5932
- password: string;
5933
- phone: string | null;
5934
- notificationCount: number | null;
5935
- roles: {
5936
- id: string;
5937
- description: string | null;
5938
- createdAt: Date;
5939
- updatedAt: Date;
5940
- deletedAt: Date | null;
5941
- systemName: string;
5942
- displayName: string;
5943
- permissions: {
5944
- id: string;
5945
- description: string | null;
5946
- createdAt: Date;
5947
- updatedAt: Date;
5948
- deletedAt: Date | null;
5949
- systemName: string;
5950
- displayName: string;
5951
- }[];
5952
- }[];
5953
- extension: {
5954
- id: string;
5955
- createdAt: Date;
5956
- updatedAt: Date;
5957
- deletedAt: Date | null;
5958
- userId: string | null;
5959
- sipServerUrl: string;
5960
- sipUserName: string;
5961
- webphoneLoginUser: string;
5962
- extensionId: string | null;
5963
- extensionName: string;
5964
- telephonySignature: string | null;
5965
- };
5966
- } | undefined;
5967
- } | undefined;
5968
5965
  } | null;
5969
5966
  customerPhone: string | null;
5970
5967
  channelType: string | null;
@@ -6236,7 +6233,6 @@ export declare const cxLogContract: {
6236
6233
  cxLogs: {
6237
6234
  id: string;
6238
6235
  channel: string | null;
6239
- disposition: string | null;
6240
6236
  direction: string | null;
6241
6237
  createdAt: Date;
6242
6238
  updatedAt: Date;
@@ -6363,6 +6359,71 @@ export declare const cxLogContract: {
6363
6359
  } | null;
6364
6360
  room: {
6365
6361
  id: string;
6362
+ channel: {
6363
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
6364
+ id: string;
6365
+ name: string;
6366
+ metadata: {
6367
+ id: string;
6368
+ name: string;
6369
+ accessToken: string;
6370
+ channelSecret?: string | undefined;
6371
+ additionalCredentials?: any;
6372
+ };
6373
+ status: boolean;
6374
+ createdAt: Date;
6375
+ updatedAt: Date;
6376
+ deletedAt: Date | null;
6377
+ actor: {
6378
+ id: string;
6379
+ address: string | null;
6380
+ name: string;
6381
+ email: string;
6382
+ createdAt: Date;
6383
+ updatedAt: Date;
6384
+ deletedAt: Date | null;
6385
+ emailVerifiedAt: Date | null;
6386
+ password: string;
6387
+ phone: string | null;
6388
+ notificationCount: number | null;
6389
+ roles: {
6390
+ id: string;
6391
+ description: string | null;
6392
+ createdAt: Date;
6393
+ updatedAt: Date;
6394
+ deletedAt: Date | null;
6395
+ systemName: string;
6396
+ displayName: string;
6397
+ permissions: {
6398
+ id: string;
6399
+ description: string | null;
6400
+ createdAt: Date;
6401
+ updatedAt: Date;
6402
+ deletedAt: Date | null;
6403
+ systemName: string;
6404
+ displayName: string;
6405
+ }[];
6406
+ }[];
6407
+ extension: {
6408
+ id: string;
6409
+ createdAt: Date;
6410
+ updatedAt: Date;
6411
+ deletedAt: Date | null;
6412
+ userId: string | null;
6413
+ sipServerUrl: string;
6414
+ sipUserName: string;
6415
+ webphoneLoginUser: string;
6416
+ extensionId: string | null;
6417
+ extensionName: string;
6418
+ telephonySignature: string | null;
6419
+ };
6420
+ };
6421
+ brandName: string;
6422
+ platformId: string;
6423
+ isReloginRequired: boolean;
6424
+ connectedUserName: string;
6425
+ connectedUserId: string;
6426
+ };
6366
6427
  direction: "incoming" | "outgoing" | "system";
6367
6428
  createdAt: Date;
6368
6429
  updatedAt: Date;
@@ -6574,71 +6635,6 @@ export declare const cxLogContract: {
6574
6635
  telephonySignature: string | null;
6575
6636
  };
6576
6637
  };
6577
- channel?: {
6578
- id?: string | undefined;
6579
- createdAt?: Date | undefined;
6580
- updatedAt?: Date | undefined;
6581
- deletedAt?: Date | null | undefined;
6582
- name?: string | undefined;
6583
- type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
6584
- metadata?: {
6585
- id: string;
6586
- name: string;
6587
- accessToken: string;
6588
- channelSecret?: string | undefined;
6589
- additionalCredentials?: any;
6590
- } | undefined;
6591
- brandName?: string | undefined;
6592
- platformId?: string | undefined;
6593
- status?: boolean | undefined;
6594
- isReloginRequired?: boolean | undefined;
6595
- connectedUserName?: string | undefined;
6596
- connectedUserId?: string | undefined;
6597
- actor?: {
6598
- id: string;
6599
- address: string | null;
6600
- name: string;
6601
- email: string;
6602
- createdAt: Date;
6603
- updatedAt: Date;
6604
- deletedAt: Date | null;
6605
- emailVerifiedAt: Date | null;
6606
- password: string;
6607
- phone: string | null;
6608
- notificationCount: number | null;
6609
- roles: {
6610
- id: string;
6611
- description: string | null;
6612
- createdAt: Date;
6613
- updatedAt: Date;
6614
- deletedAt: Date | null;
6615
- systemName: string;
6616
- displayName: string;
6617
- permissions: {
6618
- id: string;
6619
- description: string | null;
6620
- createdAt: Date;
6621
- updatedAt: Date;
6622
- deletedAt: Date | null;
6623
- systemName: string;
6624
- displayName: string;
6625
- }[];
6626
- }[];
6627
- extension: {
6628
- id: string;
6629
- createdAt: Date;
6630
- updatedAt: Date;
6631
- deletedAt: Date | null;
6632
- userId: string | null;
6633
- sipServerUrl: string;
6634
- sipUserName: string;
6635
- webphoneLoginUser: string;
6636
- extensionId: string | null;
6637
- extensionName: string;
6638
- telephonySignature: string | null;
6639
- };
6640
- } | undefined;
6641
- } | undefined;
6642
6638
  } | null;
6643
6639
  customerPhone: string | null;
6644
6640
  channelType: string | null;
@@ -6910,7 +6906,6 @@ export declare const cxLogContract: {
6910
6906
  cxLogs: {
6911
6907
  id: string;
6912
6908
  channel: string | null;
6913
- disposition: string | null;
6914
6909
  direction: string | null;
6915
6910
  createdAt: Date;
6916
6911
  updatedAt: Date;
@@ -7037,6 +7032,71 @@ export declare const cxLogContract: {
7037
7032
  } | null;
7038
7033
  room: {
7039
7034
  id: string;
7035
+ channel: {
7036
+ type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
7037
+ id: string;
7038
+ name: string;
7039
+ metadata: {
7040
+ id: string;
7041
+ name: string;
7042
+ accessToken: string;
7043
+ channelSecret?: string | undefined;
7044
+ additionalCredentials?: any;
7045
+ };
7046
+ status: boolean;
7047
+ createdAt: Date;
7048
+ updatedAt: Date;
7049
+ deletedAt: Date | null;
7050
+ actor: {
7051
+ id: string;
7052
+ address: string | null;
7053
+ name: string;
7054
+ email: string;
7055
+ createdAt: Date;
7056
+ updatedAt: Date;
7057
+ deletedAt: Date | null;
7058
+ emailVerifiedAt: Date | null;
7059
+ password: string;
7060
+ phone: string | null;
7061
+ notificationCount: number | null;
7062
+ roles: {
7063
+ id: string;
7064
+ description: string | null;
7065
+ createdAt: Date;
7066
+ updatedAt: Date;
7067
+ deletedAt: Date | null;
7068
+ systemName: string;
7069
+ displayName: string;
7070
+ permissions: {
7071
+ id: string;
7072
+ description: string | null;
7073
+ createdAt: Date;
7074
+ updatedAt: Date;
7075
+ deletedAt: Date | null;
7076
+ systemName: string;
7077
+ displayName: string;
7078
+ }[];
7079
+ }[];
7080
+ extension: {
7081
+ id: string;
7082
+ createdAt: Date;
7083
+ updatedAt: Date;
7084
+ deletedAt: Date | null;
7085
+ userId: string | null;
7086
+ sipServerUrl: string;
7087
+ sipUserName: string;
7088
+ webphoneLoginUser: string;
7089
+ extensionId: string | null;
7090
+ extensionName: string;
7091
+ telephonySignature: string | null;
7092
+ };
7093
+ };
7094
+ brandName: string;
7095
+ platformId: string;
7096
+ isReloginRequired: boolean;
7097
+ connectedUserName: string;
7098
+ connectedUserId: string;
7099
+ };
7040
7100
  direction: "incoming" | "outgoing" | "system";
7041
7101
  createdAt: Date;
7042
7102
  updatedAt: Date;
@@ -7248,71 +7308,6 @@ export declare const cxLogContract: {
7248
7308
  telephonySignature: string | null;
7249
7309
  };
7250
7310
  };
7251
- channel?: {
7252
- id?: string | undefined;
7253
- createdAt?: Date | undefined;
7254
- updatedAt?: Date | undefined;
7255
- deletedAt?: Date | null | undefined;
7256
- name?: string | undefined;
7257
- type?: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram" | undefined;
7258
- metadata?: {
7259
- id: string;
7260
- name: string;
7261
- accessToken: string;
7262
- channelSecret?: string | undefined;
7263
- additionalCredentials?: any;
7264
- } | undefined;
7265
- brandName?: string | undefined;
7266
- platformId?: string | undefined;
7267
- status?: boolean | undefined;
7268
- isReloginRequired?: boolean | undefined;
7269
- connectedUserName?: string | undefined;
7270
- connectedUserId?: string | undefined;
7271
- actor?: {
7272
- id: string;
7273
- address: string | null;
7274
- name: string;
7275
- email: string;
7276
- createdAt: Date;
7277
- updatedAt: Date;
7278
- deletedAt: Date | null;
7279
- emailVerifiedAt: Date | null;
7280
- password: string;
7281
- phone: string | null;
7282
- notificationCount: number | null;
7283
- roles: {
7284
- id: string;
7285
- description: string | null;
7286
- createdAt: Date;
7287
- updatedAt: Date;
7288
- deletedAt: Date | null;
7289
- systemName: string;
7290
- displayName: string;
7291
- permissions: {
7292
- id: string;
7293
- description: string | null;
7294
- createdAt: Date;
7295
- updatedAt: Date;
7296
- deletedAt: Date | null;
7297
- systemName: string;
7298
- displayName: string;
7299
- }[];
7300
- }[];
7301
- extension: {
7302
- id: string;
7303
- createdAt: Date;
7304
- updatedAt: Date;
7305
- deletedAt: Date | null;
7306
- userId: string | null;
7307
- sipServerUrl: string;
7308
- sipUserName: string;
7309
- webphoneLoginUser: string;
7310
- extensionId: string | null;
7311
- extensionName: string;
7312
- telephonySignature: string | null;
7313
- };
7314
- } | undefined;
7315
- } | undefined;
7316
7311
  } | null;
7317
7312
  customerPhone: string | null;
7318
7313
  channelType: string | null;