@kl1/contracts 1.1.61-uat → 1.1.63-uat

Sign up to get free protection for your applications and to get access to all the features.
@@ -1571,7 +1571,7 @@ export declare const cxLogContract: {
1571
1571
  telephonySignature: string | null;
1572
1572
  };
1573
1573
  }>;
1574
- assignee: z.ZodObject<{
1574
+ firstAssignee: z.ZodNullable<z.ZodObject<{
1575
1575
  id: z.ZodString;
1576
1576
  createdAt: z.ZodDate;
1577
1577
  updatedAt: z.ZodDate;
@@ -1774,7 +1774,415 @@ export declare const cxLogContract: {
1774
1774
  extensionName: string;
1775
1775
  telephonySignature: string | null;
1776
1776
  };
1777
- }>;
1777
+ }>>;
1778
+ assignee: z.ZodNullable<z.ZodObject<{
1779
+ id: z.ZodString;
1780
+ createdAt: z.ZodDate;
1781
+ updatedAt: z.ZodDate;
1782
+ deletedAt: z.ZodNullable<z.ZodDate>;
1783
+ name: z.ZodString;
1784
+ email: z.ZodString;
1785
+ emailVerifiedAt: z.ZodNullable<z.ZodDate>;
1786
+ password: z.ZodString;
1787
+ address: z.ZodNullable<z.ZodString>;
1788
+ phone: z.ZodNullable<z.ZodString>;
1789
+ notificationCount: z.ZodNullable<z.ZodNumber>;
1790
+ roles: z.ZodArray<z.ZodObject<{
1791
+ id: z.ZodString;
1792
+ createdAt: z.ZodDate;
1793
+ updatedAt: z.ZodDate;
1794
+ deletedAt: z.ZodNullable<z.ZodDate>;
1795
+ systemName: z.ZodString;
1796
+ displayName: z.ZodString;
1797
+ description: z.ZodNullable<z.ZodString>;
1798
+ permissions: z.ZodArray<z.ZodObject<{
1799
+ id: z.ZodString;
1800
+ createdAt: z.ZodDate;
1801
+ updatedAt: z.ZodDate;
1802
+ deletedAt: z.ZodNullable<z.ZodDate>;
1803
+ systemName: z.ZodString;
1804
+ displayName: z.ZodString;
1805
+ description: z.ZodNullable<z.ZodString>;
1806
+ }, "strip", z.ZodTypeAny, {
1807
+ id: string;
1808
+ description: string | null;
1809
+ createdAt: Date;
1810
+ updatedAt: Date;
1811
+ deletedAt: Date | null;
1812
+ systemName: string;
1813
+ displayName: string;
1814
+ }, {
1815
+ id: string;
1816
+ description: string | null;
1817
+ createdAt: Date;
1818
+ updatedAt: Date;
1819
+ deletedAt: Date | null;
1820
+ systemName: string;
1821
+ displayName: string;
1822
+ }>, "many">;
1823
+ }, "strip", z.ZodTypeAny, {
1824
+ id: string;
1825
+ description: string | null;
1826
+ createdAt: Date;
1827
+ updatedAt: Date;
1828
+ deletedAt: Date | null;
1829
+ systemName: string;
1830
+ displayName: string;
1831
+ permissions: {
1832
+ id: string;
1833
+ description: string | null;
1834
+ createdAt: Date;
1835
+ updatedAt: Date;
1836
+ deletedAt: Date | null;
1837
+ systemName: string;
1838
+ displayName: string;
1839
+ }[];
1840
+ }, {
1841
+ id: string;
1842
+ description: string | null;
1843
+ createdAt: Date;
1844
+ updatedAt: Date;
1845
+ deletedAt: Date | null;
1846
+ systemName: string;
1847
+ displayName: string;
1848
+ permissions: {
1849
+ id: string;
1850
+ description: string | null;
1851
+ createdAt: Date;
1852
+ updatedAt: Date;
1853
+ deletedAt: Date | null;
1854
+ systemName: string;
1855
+ displayName: string;
1856
+ }[];
1857
+ }>, "many">;
1858
+ extension: z.ZodObject<{
1859
+ id: z.ZodString;
1860
+ createdAt: z.ZodDate;
1861
+ updatedAt: z.ZodDate;
1862
+ deletedAt: z.ZodNullable<z.ZodDate>;
1863
+ userId: z.ZodNullable<z.ZodString>;
1864
+ sipServerUrl: z.ZodString;
1865
+ sipUserName: z.ZodString;
1866
+ webphoneLoginUser: z.ZodString;
1867
+ extensionId: z.ZodNullable<z.ZodString>;
1868
+ extensionName: z.ZodString;
1869
+ telephonySignature: z.ZodNullable<z.ZodString>;
1870
+ }, "strip", z.ZodTypeAny, {
1871
+ id: string;
1872
+ createdAt: Date;
1873
+ updatedAt: Date;
1874
+ deletedAt: Date | null;
1875
+ userId: string | null;
1876
+ sipServerUrl: string;
1877
+ sipUserName: string;
1878
+ webphoneLoginUser: string;
1879
+ extensionId: string | null;
1880
+ extensionName: string;
1881
+ telephonySignature: string | null;
1882
+ }, {
1883
+ id: string;
1884
+ createdAt: Date;
1885
+ updatedAt: Date;
1886
+ deletedAt: Date | null;
1887
+ userId: string | null;
1888
+ sipServerUrl: string;
1889
+ sipUserName: string;
1890
+ webphoneLoginUser: string;
1891
+ extensionId: string | null;
1892
+ extensionName: string;
1893
+ telephonySignature: string | null;
1894
+ }>;
1895
+ }, "strip", z.ZodTypeAny, {
1896
+ id: string;
1897
+ address: string | null;
1898
+ name: string;
1899
+ email: string;
1900
+ createdAt: Date;
1901
+ updatedAt: Date;
1902
+ deletedAt: Date | null;
1903
+ emailVerifiedAt: Date | null;
1904
+ password: string;
1905
+ phone: string | null;
1906
+ notificationCount: number | null;
1907
+ roles: {
1908
+ id: string;
1909
+ description: string | null;
1910
+ createdAt: Date;
1911
+ updatedAt: Date;
1912
+ deletedAt: Date | null;
1913
+ systemName: string;
1914
+ displayName: string;
1915
+ permissions: {
1916
+ id: string;
1917
+ description: string | null;
1918
+ createdAt: Date;
1919
+ updatedAt: Date;
1920
+ deletedAt: Date | null;
1921
+ systemName: string;
1922
+ displayName: string;
1923
+ }[];
1924
+ }[];
1925
+ extension: {
1926
+ id: string;
1927
+ createdAt: Date;
1928
+ updatedAt: Date;
1929
+ deletedAt: Date | null;
1930
+ userId: string | null;
1931
+ sipServerUrl: string;
1932
+ sipUserName: string;
1933
+ webphoneLoginUser: string;
1934
+ extensionId: string | null;
1935
+ extensionName: string;
1936
+ telephonySignature: string | null;
1937
+ };
1938
+ }, {
1939
+ id: string;
1940
+ address: string | null;
1941
+ name: string;
1942
+ email: string;
1943
+ createdAt: Date;
1944
+ updatedAt: Date;
1945
+ deletedAt: Date | null;
1946
+ emailVerifiedAt: Date | null;
1947
+ password: string;
1948
+ phone: string | null;
1949
+ notificationCount: number | null;
1950
+ roles: {
1951
+ id: string;
1952
+ description: string | null;
1953
+ createdAt: Date;
1954
+ updatedAt: Date;
1955
+ deletedAt: Date | null;
1956
+ systemName: string;
1957
+ displayName: string;
1958
+ permissions: {
1959
+ id: string;
1960
+ description: string | null;
1961
+ createdAt: Date;
1962
+ updatedAt: Date;
1963
+ deletedAt: Date | null;
1964
+ systemName: string;
1965
+ displayName: string;
1966
+ }[];
1967
+ }[];
1968
+ extension: {
1969
+ id: string;
1970
+ createdAt: Date;
1971
+ updatedAt: Date;
1972
+ deletedAt: Date | null;
1973
+ userId: string | null;
1974
+ sipServerUrl: string;
1975
+ sipUserName: string;
1976
+ webphoneLoginUser: string;
1977
+ extensionId: string | null;
1978
+ extensionName: string;
1979
+ telephonySignature: string | null;
1980
+ };
1981
+ }>>;
1982
+ closedAssignee: z.ZodNullable<z.ZodObject<{
1983
+ id: z.ZodString;
1984
+ createdAt: z.ZodDate;
1985
+ updatedAt: z.ZodDate;
1986
+ deletedAt: z.ZodNullable<z.ZodDate>;
1987
+ name: z.ZodString;
1988
+ email: z.ZodString;
1989
+ emailVerifiedAt: z.ZodNullable<z.ZodDate>;
1990
+ password: z.ZodString;
1991
+ address: z.ZodNullable<z.ZodString>;
1992
+ phone: z.ZodNullable<z.ZodString>;
1993
+ notificationCount: z.ZodNullable<z.ZodNumber>;
1994
+ roles: z.ZodArray<z.ZodObject<{
1995
+ id: z.ZodString;
1996
+ createdAt: z.ZodDate;
1997
+ updatedAt: z.ZodDate;
1998
+ deletedAt: z.ZodNullable<z.ZodDate>;
1999
+ systemName: z.ZodString;
2000
+ displayName: z.ZodString;
2001
+ description: z.ZodNullable<z.ZodString>;
2002
+ permissions: z.ZodArray<z.ZodObject<{
2003
+ id: z.ZodString;
2004
+ createdAt: z.ZodDate;
2005
+ updatedAt: z.ZodDate;
2006
+ deletedAt: z.ZodNullable<z.ZodDate>;
2007
+ systemName: z.ZodString;
2008
+ displayName: z.ZodString;
2009
+ description: z.ZodNullable<z.ZodString>;
2010
+ }, "strip", z.ZodTypeAny, {
2011
+ id: string;
2012
+ description: string | null;
2013
+ createdAt: Date;
2014
+ updatedAt: Date;
2015
+ deletedAt: Date | null;
2016
+ systemName: string;
2017
+ displayName: string;
2018
+ }, {
2019
+ id: string;
2020
+ description: string | null;
2021
+ createdAt: Date;
2022
+ updatedAt: Date;
2023
+ deletedAt: Date | null;
2024
+ systemName: string;
2025
+ displayName: string;
2026
+ }>, "many">;
2027
+ }, "strip", z.ZodTypeAny, {
2028
+ id: string;
2029
+ description: string | null;
2030
+ createdAt: Date;
2031
+ updatedAt: Date;
2032
+ deletedAt: Date | null;
2033
+ systemName: string;
2034
+ displayName: string;
2035
+ permissions: {
2036
+ id: string;
2037
+ description: string | null;
2038
+ createdAt: Date;
2039
+ updatedAt: Date;
2040
+ deletedAt: Date | null;
2041
+ systemName: string;
2042
+ displayName: string;
2043
+ }[];
2044
+ }, {
2045
+ id: string;
2046
+ description: string | null;
2047
+ createdAt: Date;
2048
+ updatedAt: Date;
2049
+ deletedAt: Date | null;
2050
+ systemName: string;
2051
+ displayName: string;
2052
+ permissions: {
2053
+ id: string;
2054
+ description: string | null;
2055
+ createdAt: Date;
2056
+ updatedAt: Date;
2057
+ deletedAt: Date | null;
2058
+ systemName: string;
2059
+ displayName: string;
2060
+ }[];
2061
+ }>, "many">;
2062
+ extension: z.ZodObject<{
2063
+ id: z.ZodString;
2064
+ createdAt: z.ZodDate;
2065
+ updatedAt: z.ZodDate;
2066
+ deletedAt: z.ZodNullable<z.ZodDate>;
2067
+ userId: z.ZodNullable<z.ZodString>;
2068
+ sipServerUrl: z.ZodString;
2069
+ sipUserName: z.ZodString;
2070
+ webphoneLoginUser: z.ZodString;
2071
+ extensionId: z.ZodNullable<z.ZodString>;
2072
+ extensionName: z.ZodString;
2073
+ telephonySignature: z.ZodNullable<z.ZodString>;
2074
+ }, "strip", z.ZodTypeAny, {
2075
+ id: string;
2076
+ createdAt: Date;
2077
+ updatedAt: Date;
2078
+ deletedAt: Date | null;
2079
+ userId: string | null;
2080
+ sipServerUrl: string;
2081
+ sipUserName: string;
2082
+ webphoneLoginUser: string;
2083
+ extensionId: string | null;
2084
+ extensionName: string;
2085
+ telephonySignature: string | null;
2086
+ }, {
2087
+ id: string;
2088
+ createdAt: Date;
2089
+ updatedAt: Date;
2090
+ deletedAt: Date | null;
2091
+ userId: string | null;
2092
+ sipServerUrl: string;
2093
+ sipUserName: string;
2094
+ webphoneLoginUser: string;
2095
+ extensionId: string | null;
2096
+ extensionName: string;
2097
+ telephonySignature: string | null;
2098
+ }>;
2099
+ }, "strip", z.ZodTypeAny, {
2100
+ id: string;
2101
+ address: string | null;
2102
+ name: string;
2103
+ email: string;
2104
+ createdAt: Date;
2105
+ updatedAt: Date;
2106
+ deletedAt: Date | null;
2107
+ emailVerifiedAt: Date | null;
2108
+ password: string;
2109
+ phone: string | null;
2110
+ notificationCount: number | null;
2111
+ roles: {
2112
+ id: string;
2113
+ description: string | null;
2114
+ createdAt: Date;
2115
+ updatedAt: Date;
2116
+ deletedAt: Date | null;
2117
+ systemName: string;
2118
+ displayName: string;
2119
+ permissions: {
2120
+ id: string;
2121
+ description: string | null;
2122
+ createdAt: Date;
2123
+ updatedAt: Date;
2124
+ deletedAt: Date | null;
2125
+ systemName: string;
2126
+ displayName: string;
2127
+ }[];
2128
+ }[];
2129
+ extension: {
2130
+ id: string;
2131
+ createdAt: Date;
2132
+ updatedAt: Date;
2133
+ deletedAt: Date | null;
2134
+ userId: string | null;
2135
+ sipServerUrl: string;
2136
+ sipUserName: string;
2137
+ webphoneLoginUser: string;
2138
+ extensionId: string | null;
2139
+ extensionName: string;
2140
+ telephonySignature: string | null;
2141
+ };
2142
+ }, {
2143
+ id: string;
2144
+ address: string | null;
2145
+ name: string;
2146
+ email: string;
2147
+ createdAt: Date;
2148
+ updatedAt: Date;
2149
+ deletedAt: Date | null;
2150
+ emailVerifiedAt: Date | null;
2151
+ password: string;
2152
+ phone: string | null;
2153
+ notificationCount: number | null;
2154
+ roles: {
2155
+ id: string;
2156
+ description: string | null;
2157
+ createdAt: Date;
2158
+ updatedAt: Date;
2159
+ deletedAt: Date | null;
2160
+ systemName: string;
2161
+ displayName: string;
2162
+ permissions: {
2163
+ id: string;
2164
+ description: string | null;
2165
+ createdAt: Date;
2166
+ updatedAt: Date;
2167
+ deletedAt: Date | null;
2168
+ systemName: string;
2169
+ displayName: string;
2170
+ }[];
2171
+ }[];
2172
+ extension: {
2173
+ id: string;
2174
+ createdAt: Date;
2175
+ updatedAt: Date;
2176
+ deletedAt: Date | null;
2177
+ userId: string | null;
2178
+ sipServerUrl: string;
2179
+ sipUserName: string;
2180
+ webphoneLoginUser: string;
2181
+ extensionId: string | null;
2182
+ extensionName: string;
2183
+ telephonySignature: string | null;
2184
+ };
2185
+ }>>;
1778
2186
  channel: z.ZodObject<{
1779
2187
  id: z.ZodString;
1780
2188
  createdAt: z.ZodDate;
@@ -2402,25 +2810,113 @@ export declare const cxLogContract: {
2402
2810
  }[];
2403
2811
  activityLogs?: {
2404
2812
  id: string;
2405
- description: string;
2813
+ description: string;
2814
+ createdAt: Date;
2815
+ updatedAt: Date;
2816
+ deletedAt: Date | null;
2817
+ entityId: string;
2818
+ entityType: {
2819
+ id: string;
2820
+ description: string | null;
2821
+ createdAt: Date;
2822
+ updatedAt: Date;
2823
+ deletedAt: Date | null;
2824
+ entity: string;
2825
+ };
2826
+ }[] | undefined;
2827
+ };
2828
+ channelId: string;
2829
+ socialPlatformId: string;
2830
+ };
2831
+ firstAssignee: {
2832
+ id: string;
2833
+ address: string | null;
2834
+ name: string;
2835
+ email: string;
2836
+ createdAt: Date;
2837
+ updatedAt: Date;
2838
+ deletedAt: Date | null;
2839
+ emailVerifiedAt: Date | null;
2840
+ password: string;
2841
+ phone: string | null;
2842
+ notificationCount: number | null;
2843
+ roles: {
2844
+ id: string;
2845
+ description: string | null;
2846
+ createdAt: Date;
2847
+ updatedAt: Date;
2848
+ deletedAt: Date | null;
2849
+ systemName: string;
2850
+ displayName: string;
2851
+ permissions: {
2852
+ id: string;
2853
+ description: string | null;
2854
+ createdAt: Date;
2855
+ updatedAt: Date;
2856
+ deletedAt: Date | null;
2857
+ systemName: string;
2858
+ displayName: string;
2859
+ }[];
2860
+ }[];
2861
+ extension: {
2862
+ id: string;
2863
+ createdAt: Date;
2864
+ updatedAt: Date;
2865
+ deletedAt: Date | null;
2866
+ userId: string | null;
2867
+ sipServerUrl: string;
2868
+ sipUserName: string;
2869
+ webphoneLoginUser: string;
2870
+ extensionId: string | null;
2871
+ extensionName: string;
2872
+ telephonySignature: string | null;
2873
+ };
2874
+ } | null;
2875
+ assignee: {
2876
+ id: string;
2877
+ address: string | null;
2878
+ name: string;
2879
+ email: string;
2880
+ createdAt: Date;
2881
+ updatedAt: Date;
2882
+ deletedAt: Date | null;
2883
+ emailVerifiedAt: Date | null;
2884
+ password: string;
2885
+ phone: string | null;
2886
+ notificationCount: number | null;
2887
+ roles: {
2888
+ id: string;
2889
+ description: string | null;
2890
+ createdAt: Date;
2891
+ updatedAt: Date;
2892
+ deletedAt: Date | null;
2893
+ systemName: string;
2894
+ displayName: string;
2895
+ permissions: {
2896
+ id: string;
2897
+ description: string | null;
2406
2898
  createdAt: Date;
2407
2899
  updatedAt: Date;
2408
2900
  deletedAt: Date | null;
2409
- entityId: string;
2410
- entityType: {
2411
- id: string;
2412
- description: string | null;
2413
- createdAt: Date;
2414
- updatedAt: Date;
2415
- deletedAt: Date | null;
2416
- entity: string;
2417
- };
2418
- }[] | undefined;
2901
+ systemName: string;
2902
+ displayName: string;
2903
+ }[];
2904
+ }[];
2905
+ extension: {
2906
+ id: string;
2907
+ createdAt: Date;
2908
+ updatedAt: Date;
2909
+ deletedAt: Date | null;
2910
+ userId: string | null;
2911
+ sipServerUrl: string;
2912
+ sipUserName: string;
2913
+ webphoneLoginUser: string;
2914
+ extensionId: string | null;
2915
+ extensionName: string;
2916
+ telephonySignature: string | null;
2419
2917
  };
2420
- channelId: string;
2421
- socialPlatformId: string;
2422
- };
2423
- assignee: {
2918
+ } | null;
2919
+ closedAssignee: {
2424
2920
  id: string;
2425
2921
  address: string | null;
2426
2922
  name: string;
@@ -2463,7 +2959,7 @@ export declare const cxLogContract: {
2463
2959
  extensionName: string;
2464
2960
  telephonySignature: string | null;
2465
2961
  };
2466
- };
2962
+ } | null;
2467
2963
  }, {
2468
2964
  id: string;
2469
2965
  channel: {
@@ -2706,6 +3202,50 @@ export declare const cxLogContract: {
2706
3202
  channelId: string;
2707
3203
  socialPlatformId: string;
2708
3204
  };
3205
+ firstAssignee: {
3206
+ id: string;
3207
+ address: string | null;
3208
+ name: string;
3209
+ email: string;
3210
+ createdAt: Date;
3211
+ updatedAt: Date;
3212
+ deletedAt: Date | null;
3213
+ emailVerifiedAt: Date | null;
3214
+ password: string;
3215
+ phone: string | null;
3216
+ notificationCount: number | null;
3217
+ roles: {
3218
+ id: string;
3219
+ description: string | null;
3220
+ createdAt: Date;
3221
+ updatedAt: Date;
3222
+ deletedAt: Date | null;
3223
+ systemName: string;
3224
+ displayName: string;
3225
+ permissions: {
3226
+ id: string;
3227
+ description: string | null;
3228
+ createdAt: Date;
3229
+ updatedAt: Date;
3230
+ deletedAt: Date | null;
3231
+ systemName: string;
3232
+ displayName: string;
3233
+ }[];
3234
+ }[];
3235
+ extension: {
3236
+ id: string;
3237
+ createdAt: Date;
3238
+ updatedAt: Date;
3239
+ deletedAt: Date | null;
3240
+ userId: string | null;
3241
+ sipServerUrl: string;
3242
+ sipUserName: string;
3243
+ webphoneLoginUser: string;
3244
+ extensionId: string | null;
3245
+ extensionName: string;
3246
+ telephonySignature: string | null;
3247
+ };
3248
+ } | null;
2709
3249
  assignee: {
2710
3250
  id: string;
2711
3251
  address: string | null;
@@ -2749,7 +3289,51 @@ export declare const cxLogContract: {
2749
3289
  extensionName: string;
2750
3290
  telephonySignature: string | null;
2751
3291
  };
2752
- };
3292
+ } | null;
3293
+ closedAssignee: {
3294
+ id: string;
3295
+ address: string | null;
3296
+ name: string;
3297
+ email: string;
3298
+ createdAt: Date;
3299
+ updatedAt: Date;
3300
+ deletedAt: Date | null;
3301
+ emailVerifiedAt: Date | null;
3302
+ password: string;
3303
+ phone: string | null;
3304
+ notificationCount: number | null;
3305
+ roles: {
3306
+ id: string;
3307
+ description: string | null;
3308
+ createdAt: Date;
3309
+ updatedAt: Date;
3310
+ deletedAt: Date | null;
3311
+ systemName: string;
3312
+ displayName: string;
3313
+ permissions: {
3314
+ id: string;
3315
+ description: string | null;
3316
+ createdAt: Date;
3317
+ updatedAt: Date;
3318
+ deletedAt: Date | null;
3319
+ systemName: string;
3320
+ displayName: string;
3321
+ }[];
3322
+ }[];
3323
+ extension: {
3324
+ id: string;
3325
+ createdAt: Date;
3326
+ updatedAt: Date;
3327
+ deletedAt: Date | null;
3328
+ userId: string | null;
3329
+ sipServerUrl: string;
3330
+ sipUserName: string;
3331
+ webphoneLoginUser: string;
3332
+ extensionId: string | null;
3333
+ extensionName: string;
3334
+ telephonySignature: string | null;
3335
+ };
3336
+ } | null;
2753
3337
  }>>;
2754
3338
  telephonyCdr: z.ZodNullable<z.ZodObject<{
2755
3339
  id: z.ZodString;
@@ -6202,6 +6786,50 @@ export declare const cxLogContract: {
6202
6786
  channelId: string;
6203
6787
  socialPlatformId: string;
6204
6788
  };
6789
+ firstAssignee: {
6790
+ id: string;
6791
+ address: string | null;
6792
+ name: string;
6793
+ email: string;
6794
+ createdAt: Date;
6795
+ updatedAt: Date;
6796
+ deletedAt: Date | null;
6797
+ emailVerifiedAt: Date | null;
6798
+ password: string;
6799
+ phone: string | null;
6800
+ notificationCount: number | null;
6801
+ roles: {
6802
+ id: string;
6803
+ description: string | null;
6804
+ createdAt: Date;
6805
+ updatedAt: Date;
6806
+ deletedAt: Date | null;
6807
+ systemName: string;
6808
+ displayName: string;
6809
+ permissions: {
6810
+ id: string;
6811
+ description: string | null;
6812
+ createdAt: Date;
6813
+ updatedAt: Date;
6814
+ deletedAt: Date | null;
6815
+ systemName: string;
6816
+ displayName: string;
6817
+ }[];
6818
+ }[];
6819
+ extension: {
6820
+ id: string;
6821
+ createdAt: Date;
6822
+ updatedAt: Date;
6823
+ deletedAt: Date | null;
6824
+ userId: string | null;
6825
+ sipServerUrl: string;
6826
+ sipUserName: string;
6827
+ webphoneLoginUser: string;
6828
+ extensionId: string | null;
6829
+ extensionName: string;
6830
+ telephonySignature: string | null;
6831
+ };
6832
+ } | null;
6205
6833
  assignee: {
6206
6834
  id: string;
6207
6835
  address: string | null;
@@ -6245,7 +6873,51 @@ export declare const cxLogContract: {
6245
6873
  extensionName: string;
6246
6874
  telephonySignature: string | null;
6247
6875
  };
6248
- };
6876
+ } | null;
6877
+ closedAssignee: {
6878
+ id: string;
6879
+ address: string | null;
6880
+ name: string;
6881
+ email: string;
6882
+ createdAt: Date;
6883
+ updatedAt: Date;
6884
+ deletedAt: Date | null;
6885
+ emailVerifiedAt: Date | null;
6886
+ password: string;
6887
+ phone: string | null;
6888
+ notificationCount: number | null;
6889
+ roles: {
6890
+ id: string;
6891
+ description: string | null;
6892
+ createdAt: Date;
6893
+ updatedAt: Date;
6894
+ deletedAt: Date | null;
6895
+ systemName: string;
6896
+ displayName: string;
6897
+ permissions: {
6898
+ id: string;
6899
+ description: string | null;
6900
+ createdAt: Date;
6901
+ updatedAt: Date;
6902
+ deletedAt: Date | null;
6903
+ systemName: string;
6904
+ displayName: string;
6905
+ }[];
6906
+ }[];
6907
+ extension: {
6908
+ id: string;
6909
+ createdAt: Date;
6910
+ updatedAt: Date;
6911
+ deletedAt: Date | null;
6912
+ userId: string | null;
6913
+ sipServerUrl: string;
6914
+ sipUserName: string;
6915
+ webphoneLoginUser: string;
6916
+ extensionId: string | null;
6917
+ extensionName: string;
6918
+ telephonySignature: string | null;
6919
+ };
6920
+ } | null;
6249
6921
  } | null;
6250
6922
  telephonyCdr: {
6251
6923
  type: string;
@@ -6945,33 +7617,121 @@ export declare const cxLogContract: {
6945
7617
  }[];
6946
7618
  contactPhones: {
6947
7619
  id: string;
6948
- isPrimary: boolean;
7620
+ isPrimary: boolean;
7621
+ createdAt: Date;
7622
+ updatedAt: Date;
7623
+ deletedAt: Date | null;
7624
+ phone: string;
7625
+ }[];
7626
+ activityLogs?: {
7627
+ id: string;
7628
+ description: string;
7629
+ createdAt: Date;
7630
+ updatedAt: Date;
7631
+ deletedAt: Date | null;
7632
+ entityId: string;
7633
+ entityType: {
7634
+ id: string;
7635
+ description: string | null;
7636
+ createdAt: Date;
7637
+ updatedAt: Date;
7638
+ deletedAt: Date | null;
7639
+ entity: string;
7640
+ };
7641
+ }[] | undefined;
7642
+ };
7643
+ channelId: string;
7644
+ socialPlatformId: string;
7645
+ };
7646
+ firstAssignee: {
7647
+ id: string;
7648
+ address: string | null;
7649
+ name: string;
7650
+ email: string;
7651
+ createdAt: Date;
7652
+ updatedAt: Date;
7653
+ deletedAt: Date | null;
7654
+ emailVerifiedAt: Date | null;
7655
+ password: string;
7656
+ phone: string | null;
7657
+ notificationCount: number | null;
7658
+ roles: {
7659
+ id: string;
7660
+ description: string | null;
7661
+ createdAt: Date;
7662
+ updatedAt: Date;
7663
+ deletedAt: Date | null;
7664
+ systemName: string;
7665
+ displayName: string;
7666
+ permissions: {
7667
+ id: string;
7668
+ description: string | null;
6949
7669
  createdAt: Date;
6950
7670
  updatedAt: Date;
6951
7671
  deletedAt: Date | null;
6952
- phone: string;
7672
+ systemName: string;
7673
+ displayName: string;
6953
7674
  }[];
6954
- activityLogs?: {
7675
+ }[];
7676
+ extension: {
7677
+ id: string;
7678
+ createdAt: Date;
7679
+ updatedAt: Date;
7680
+ deletedAt: Date | null;
7681
+ userId: string | null;
7682
+ sipServerUrl: string;
7683
+ sipUserName: string;
7684
+ webphoneLoginUser: string;
7685
+ extensionId: string | null;
7686
+ extensionName: string;
7687
+ telephonySignature: string | null;
7688
+ };
7689
+ } | null;
7690
+ assignee: {
7691
+ id: string;
7692
+ address: string | null;
7693
+ name: string;
7694
+ email: string;
7695
+ createdAt: Date;
7696
+ updatedAt: Date;
7697
+ deletedAt: Date | null;
7698
+ emailVerifiedAt: Date | null;
7699
+ password: string;
7700
+ phone: string | null;
7701
+ notificationCount: number | null;
7702
+ roles: {
7703
+ id: string;
7704
+ description: string | null;
7705
+ createdAt: Date;
7706
+ updatedAt: Date;
7707
+ deletedAt: Date | null;
7708
+ systemName: string;
7709
+ displayName: string;
7710
+ permissions: {
6955
7711
  id: string;
6956
- description: string;
7712
+ description: string | null;
6957
7713
  createdAt: Date;
6958
7714
  updatedAt: Date;
6959
7715
  deletedAt: Date | null;
6960
- entityId: string;
6961
- entityType: {
6962
- id: string;
6963
- description: string | null;
6964
- createdAt: Date;
6965
- updatedAt: Date;
6966
- deletedAt: Date | null;
6967
- entity: string;
6968
- };
6969
- }[] | undefined;
7716
+ systemName: string;
7717
+ displayName: string;
7718
+ }[];
7719
+ }[];
7720
+ extension: {
7721
+ id: string;
7722
+ createdAt: Date;
7723
+ updatedAt: Date;
7724
+ deletedAt: Date | null;
7725
+ userId: string | null;
7726
+ sipServerUrl: string;
7727
+ sipUserName: string;
7728
+ webphoneLoginUser: string;
7729
+ extensionId: string | null;
7730
+ extensionName: string;
7731
+ telephonySignature: string | null;
6970
7732
  };
6971
- channelId: string;
6972
- socialPlatformId: string;
6973
- };
6974
- assignee: {
7733
+ } | null;
7734
+ closedAssignee: {
6975
7735
  id: string;
6976
7736
  address: string | null;
6977
7737
  name: string;
@@ -7014,7 +7774,7 @@ export declare const cxLogContract: {
7014
7774
  extensionName: string;
7015
7775
  telephonySignature: string | null;
7016
7776
  };
7017
- };
7777
+ } | null;
7018
7778
  } | null;
7019
7779
  telephonyCdr: {
7020
7780
  type: string;
@@ -7746,6 +8506,50 @@ export declare const cxLogContract: {
7746
8506
  channelId: string;
7747
8507
  socialPlatformId: string;
7748
8508
  };
8509
+ firstAssignee: {
8510
+ id: string;
8511
+ address: string | null;
8512
+ name: string;
8513
+ email: string;
8514
+ createdAt: Date;
8515
+ updatedAt: Date;
8516
+ deletedAt: Date | null;
8517
+ emailVerifiedAt: Date | null;
8518
+ password: string;
8519
+ phone: string | null;
8520
+ notificationCount: number | null;
8521
+ roles: {
8522
+ id: string;
8523
+ description: string | null;
8524
+ createdAt: Date;
8525
+ updatedAt: Date;
8526
+ deletedAt: Date | null;
8527
+ systemName: string;
8528
+ displayName: string;
8529
+ permissions: {
8530
+ id: string;
8531
+ description: string | null;
8532
+ createdAt: Date;
8533
+ updatedAt: Date;
8534
+ deletedAt: Date | null;
8535
+ systemName: string;
8536
+ displayName: string;
8537
+ }[];
8538
+ }[];
8539
+ extension: {
8540
+ id: string;
8541
+ createdAt: Date;
8542
+ updatedAt: Date;
8543
+ deletedAt: Date | null;
8544
+ userId: string | null;
8545
+ sipServerUrl: string;
8546
+ sipUserName: string;
8547
+ webphoneLoginUser: string;
8548
+ extensionId: string | null;
8549
+ extensionName: string;
8550
+ telephonySignature: string | null;
8551
+ };
8552
+ } | null;
7749
8553
  assignee: {
7750
8554
  id: string;
7751
8555
  address: string | null;
@@ -7789,7 +8593,51 @@ export declare const cxLogContract: {
7789
8593
  extensionName: string;
7790
8594
  telephonySignature: string | null;
7791
8595
  };
7792
- };
8596
+ } | null;
8597
+ closedAssignee: {
8598
+ id: string;
8599
+ address: string | null;
8600
+ name: string;
8601
+ email: string;
8602
+ createdAt: Date;
8603
+ updatedAt: Date;
8604
+ deletedAt: Date | null;
8605
+ emailVerifiedAt: Date | null;
8606
+ password: string;
8607
+ phone: string | null;
8608
+ notificationCount: number | null;
8609
+ roles: {
8610
+ id: string;
8611
+ description: string | null;
8612
+ createdAt: Date;
8613
+ updatedAt: Date;
8614
+ deletedAt: Date | null;
8615
+ systemName: string;
8616
+ displayName: string;
8617
+ permissions: {
8618
+ id: string;
8619
+ description: string | null;
8620
+ createdAt: Date;
8621
+ updatedAt: Date;
8622
+ deletedAt: Date | null;
8623
+ systemName: string;
8624
+ displayName: string;
8625
+ }[];
8626
+ }[];
8627
+ extension: {
8628
+ id: string;
8629
+ createdAt: Date;
8630
+ updatedAt: Date;
8631
+ deletedAt: Date | null;
8632
+ userId: string | null;
8633
+ sipServerUrl: string;
8634
+ sipUserName: string;
8635
+ webphoneLoginUser: string;
8636
+ extensionId: string | null;
8637
+ extensionName: string;
8638
+ telephonySignature: string | null;
8639
+ };
8640
+ } | null;
7793
8641
  } | null;
7794
8642
  telephonyCdr: {
7795
8643
  type: string;
@@ -8521,6 +9369,50 @@ export declare const cxLogContract: {
8521
9369
  channelId: string;
8522
9370
  socialPlatformId: string;
8523
9371
  };
9372
+ firstAssignee: {
9373
+ id: string;
9374
+ address: string | null;
9375
+ name: string;
9376
+ email: string;
9377
+ createdAt: Date;
9378
+ updatedAt: Date;
9379
+ deletedAt: Date | null;
9380
+ emailVerifiedAt: Date | null;
9381
+ password: string;
9382
+ phone: string | null;
9383
+ notificationCount: number | null;
9384
+ roles: {
9385
+ id: string;
9386
+ description: string | null;
9387
+ createdAt: Date;
9388
+ updatedAt: Date;
9389
+ deletedAt: Date | null;
9390
+ systemName: string;
9391
+ displayName: string;
9392
+ permissions: {
9393
+ id: string;
9394
+ description: string | null;
9395
+ createdAt: Date;
9396
+ updatedAt: Date;
9397
+ deletedAt: Date | null;
9398
+ systemName: string;
9399
+ displayName: string;
9400
+ }[];
9401
+ }[];
9402
+ extension: {
9403
+ id: string;
9404
+ createdAt: Date;
9405
+ updatedAt: Date;
9406
+ deletedAt: Date | null;
9407
+ userId: string | null;
9408
+ sipServerUrl: string;
9409
+ sipUserName: string;
9410
+ webphoneLoginUser: string;
9411
+ extensionId: string | null;
9412
+ extensionName: string;
9413
+ telephonySignature: string | null;
9414
+ };
9415
+ } | null;
8524
9416
  assignee: {
8525
9417
  id: string;
8526
9418
  address: string | null;
@@ -8564,7 +9456,51 @@ export declare const cxLogContract: {
8564
9456
  extensionName: string;
8565
9457
  telephonySignature: string | null;
8566
9458
  };
8567
- };
9459
+ } | null;
9460
+ closedAssignee: {
9461
+ id: string;
9462
+ address: string | null;
9463
+ name: string;
9464
+ email: string;
9465
+ createdAt: Date;
9466
+ updatedAt: Date;
9467
+ deletedAt: Date | null;
9468
+ emailVerifiedAt: Date | null;
9469
+ password: string;
9470
+ phone: string | null;
9471
+ notificationCount: number | null;
9472
+ roles: {
9473
+ id: string;
9474
+ description: string | null;
9475
+ createdAt: Date;
9476
+ updatedAt: Date;
9477
+ deletedAt: Date | null;
9478
+ systemName: string;
9479
+ displayName: string;
9480
+ permissions: {
9481
+ id: string;
9482
+ description: string | null;
9483
+ createdAt: Date;
9484
+ updatedAt: Date;
9485
+ deletedAt: Date | null;
9486
+ systemName: string;
9487
+ displayName: string;
9488
+ }[];
9489
+ }[];
9490
+ extension: {
9491
+ id: string;
9492
+ createdAt: Date;
9493
+ updatedAt: Date;
9494
+ deletedAt: Date | null;
9495
+ userId: string | null;
9496
+ sipServerUrl: string;
9497
+ sipUserName: string;
9498
+ webphoneLoginUser: string;
9499
+ extensionId: string | null;
9500
+ extensionName: string;
9501
+ telephonySignature: string | null;
9502
+ };
9503
+ } | null;
8568
9504
  } | null;
8569
9505
  telephonyCdr: {
8570
9506
  type: string;