@kl1/contracts 1.1.30-uat → 1.1.31-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +746 -889
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +746 -889
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +185 -746
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +184 -124
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/message-contract.d.ts +28 -28
- package/dist/src/mail/room-contract.d.ts +156 -96
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/message.schema.d.ts +4 -4
- package/dist/src/mail/schemas/room-validation.schema.d.ts +32 -32
- package/dist/src/mail/schemas/room.schema.d.ts +28 -28
- package/dist/src/telephony-cdr/index.d.ts +1 -622
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -172801,628 +172801,7 @@ export declare const telephonyContract: {
|
|
172801
172801
|
summary: "Get yeastar call report.";
|
172802
172802
|
method: "POST";
|
172803
172803
|
responses: {
|
172804
|
-
200: import("zod").ZodObject<{
|
172805
|
-
errcode: import("zod").ZodNumber;
|
172806
|
-
errmsg: import("zod").ZodString;
|
172807
|
-
total_number: import("zod").ZodNumber;
|
172808
|
-
is_12hour: import("zod").ZodOptional<import("zod").ZodNumber>;
|
172809
|
-
ext_call_statistics_list: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
172810
|
-
ext_num: import("zod").ZodString;
|
172811
|
-
ext_name: import("zod").ZodString;
|
172812
|
-
answered_calls: import("zod").ZodNumber;
|
172813
|
-
no_answer_calls: import("zod").ZodNumber;
|
172814
|
-
busy_calls: import("zod").ZodNumber;
|
172815
|
-
failed_calls: import("zod").ZodNumber;
|
172816
|
-
voicemail_calls: import("zod").ZodNumber;
|
172817
|
-
total_holding_time: import("zod").ZodNumber;
|
172818
|
-
total_talking_time: import("zod").ZodNumber;
|
172819
|
-
src_name: import("zod").ZodString;
|
172820
|
-
total_call_count: import("zod").ZodNumber;
|
172821
|
-
mobile: import("zod").ZodString;
|
172822
|
-
}, "strip", import("zod").ZodTypeAny, {
|
172823
|
-
mobile: string;
|
172824
|
-
ext_num: string;
|
172825
|
-
ext_name: string;
|
172826
|
-
answered_calls: number;
|
172827
|
-
no_answer_calls: number;
|
172828
|
-
busy_calls: number;
|
172829
|
-
failed_calls: number;
|
172830
|
-
voicemail_calls: number;
|
172831
|
-
total_holding_time: number;
|
172832
|
-
total_talking_time: number;
|
172833
|
-
src_name: string;
|
172834
|
-
total_call_count: number;
|
172835
|
-
}, {
|
172836
|
-
mobile: string;
|
172837
|
-
ext_num: string;
|
172838
|
-
ext_name: string;
|
172839
|
-
answered_calls: number;
|
172840
|
-
no_answer_calls: number;
|
172841
|
-
busy_calls: number;
|
172842
|
-
failed_calls: number;
|
172843
|
-
voicemail_calls: number;
|
172844
|
-
total_holding_time: number;
|
172845
|
-
total_talking_time: number;
|
172846
|
-
src_name: string;
|
172847
|
-
total_call_count: number;
|
172848
|
-
}>, "many">>;
|
172849
|
-
ext_call_activity_list: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
172850
|
-
time: import("zod").ZodNumber;
|
172851
|
-
answered_calls: import("zod").ZodNumber;
|
172852
|
-
no_answer_calls: import("zod").ZodNumber;
|
172853
|
-
busy_calls: import("zod").ZodNumber;
|
172854
|
-
failed_calls: import("zod").ZodNumber;
|
172855
|
-
voicemail_calls: import("zod").ZodNumber;
|
172856
|
-
total_holding_time: import("zod").ZodNumber;
|
172857
|
-
total_talking_time: import("zod").ZodNumber;
|
172858
|
-
ext_statistics: import("zod").ZodArray<import("zod").ZodObject<{
|
172859
|
-
ext_num: import("zod").ZodString;
|
172860
|
-
ext_name: import("zod").ZodString;
|
172861
|
-
answered_calls: import("zod").ZodNumber;
|
172862
|
-
no_answer_calls: import("zod").ZodNumber;
|
172863
|
-
busy_calls: import("zod").ZodNumber;
|
172864
|
-
failed_calls: import("zod").ZodNumber;
|
172865
|
-
voicemail_calls: import("zod").ZodNumber;
|
172866
|
-
total_holding_time: import("zod").ZodNumber;
|
172867
|
-
total_talking_time: import("zod").ZodNumber;
|
172868
|
-
time: import("zod").ZodNumber;
|
172869
|
-
mobile: import("zod").ZodString;
|
172870
|
-
}, "strip", import("zod").ZodTypeAny, {
|
172871
|
-
time: number;
|
172872
|
-
mobile: string;
|
172873
|
-
ext_num: string;
|
172874
|
-
ext_name: string;
|
172875
|
-
answered_calls: number;
|
172876
|
-
no_answer_calls: number;
|
172877
|
-
busy_calls: number;
|
172878
|
-
failed_calls: number;
|
172879
|
-
voicemail_calls: number;
|
172880
|
-
total_holding_time: number;
|
172881
|
-
total_talking_time: number;
|
172882
|
-
}, {
|
172883
|
-
time: number;
|
172884
|
-
mobile: string;
|
172885
|
-
ext_num: string;
|
172886
|
-
ext_name: string;
|
172887
|
-
answered_calls: number;
|
172888
|
-
no_answer_calls: number;
|
172889
|
-
busy_calls: number;
|
172890
|
-
failed_calls: number;
|
172891
|
-
voicemail_calls: number;
|
172892
|
-
total_holding_time: number;
|
172893
|
-
total_talking_time: number;
|
172894
|
-
}>, "many">;
|
172895
|
-
}, "strip", import("zod").ZodTypeAny, {
|
172896
|
-
time: number;
|
172897
|
-
answered_calls: number;
|
172898
|
-
no_answer_calls: number;
|
172899
|
-
busy_calls: number;
|
172900
|
-
failed_calls: number;
|
172901
|
-
voicemail_calls: number;
|
172902
|
-
total_holding_time: number;
|
172903
|
-
total_talking_time: number;
|
172904
|
-
ext_statistics: {
|
172905
|
-
time: number;
|
172906
|
-
mobile: string;
|
172907
|
-
ext_num: string;
|
172908
|
-
ext_name: string;
|
172909
|
-
answered_calls: number;
|
172910
|
-
no_answer_calls: number;
|
172911
|
-
busy_calls: number;
|
172912
|
-
failed_calls: number;
|
172913
|
-
voicemail_calls: number;
|
172914
|
-
total_holding_time: number;
|
172915
|
-
total_talking_time: number;
|
172916
|
-
}[];
|
172917
|
-
}, {
|
172918
|
-
time: number;
|
172919
|
-
answered_calls: number;
|
172920
|
-
no_answer_calls: number;
|
172921
|
-
busy_calls: number;
|
172922
|
-
failed_calls: number;
|
172923
|
-
voicemail_calls: number;
|
172924
|
-
total_holding_time: number;
|
172925
|
-
total_talking_time: number;
|
172926
|
-
ext_statistics: {
|
172927
|
-
time: number;
|
172928
|
-
mobile: string;
|
172929
|
-
ext_num: string;
|
172930
|
-
ext_name: string;
|
172931
|
-
answered_calls: number;
|
172932
|
-
no_answer_calls: number;
|
172933
|
-
busy_calls: number;
|
172934
|
-
failed_calls: number;
|
172935
|
-
voicemail_calls: number;
|
172936
|
-
total_holding_time: number;
|
172937
|
-
total_talking_time: number;
|
172938
|
-
}[];
|
172939
|
-
}>, "many">>;
|
172940
|
-
trunk_activity_list: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
172941
|
-
time: import("zod").ZodNumber;
|
172942
|
-
trunk_list: import("zod").ZodArray<import("zod").ZodObject<{
|
172943
|
-
trunk_name: import("zod").ZodString;
|
172944
|
-
total_calls: import("zod").ZodNumber;
|
172945
|
-
}, "strip", import("zod").ZodTypeAny, {
|
172946
|
-
trunk_name: string;
|
172947
|
-
total_calls: number;
|
172948
|
-
}, {
|
172949
|
-
trunk_name: string;
|
172950
|
-
total_calls: number;
|
172951
|
-
}>, "many">;
|
172952
|
-
}, "strip", import("zod").ZodTypeAny, {
|
172953
|
-
time: number;
|
172954
|
-
trunk_list: {
|
172955
|
-
trunk_name: string;
|
172956
|
-
total_calls: number;
|
172957
|
-
}[];
|
172958
|
-
}, {
|
172959
|
-
time: number;
|
172960
|
-
trunk_list: {
|
172961
|
-
trunk_name: string;
|
172962
|
-
total_calls: number;
|
172963
|
-
}[];
|
172964
|
-
}>, "many">>;
|
172965
|
-
queue_avg_wait_talk_time_list: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
172966
|
-
time: import("zod").ZodNumber;
|
172967
|
-
avg_wait_time: import("zod").ZodNumber;
|
172968
|
-
avg_talk_time: import("zod").ZodNumber;
|
172969
|
-
}, "strip", import("zod").ZodTypeAny, {
|
172970
|
-
time: number;
|
172971
|
-
avg_wait_time: number;
|
172972
|
-
avg_talk_time: number;
|
172973
|
-
}, {
|
172974
|
-
time: number;
|
172975
|
-
avg_wait_time: number;
|
172976
|
-
avg_talk_time: number;
|
172977
|
-
}>, "many">>;
|
172978
|
-
queue_satisfaction: import("zod").ZodOptional<import("zod").ZodObject<{
|
172979
|
-
queue_name: import("zod").ZodString;
|
172980
|
-
queue_num: import("zod").ZodString;
|
172981
|
-
satisfaction_list: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
172982
|
-
press_key: import("zod").ZodString;
|
172983
|
-
total: import("zod").ZodNumber;
|
172984
|
-
key_point: import("zod").ZodOptional<import("zod").ZodNumber>;
|
172985
|
-
}, "strip", import("zod").ZodTypeAny, {
|
172986
|
-
total: number;
|
172987
|
-
press_key: string;
|
172988
|
-
key_point?: number | undefined;
|
172989
|
-
}, {
|
172990
|
-
total: number;
|
172991
|
-
press_key: string;
|
172992
|
-
key_point?: number | undefined;
|
172993
|
-
}>, "many">>;
|
172994
|
-
agent_list: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
172995
|
-
agent_name: import("zod").ZodString;
|
172996
|
-
agent_num: import("zod").ZodString;
|
172997
|
-
satisfaction_list: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
172998
|
-
press_key: import("zod").ZodString;
|
172999
|
-
total: import("zod").ZodNumber;
|
173000
|
-
key_point: import("zod").ZodOptional<import("zod").ZodNumber>;
|
173001
|
-
}, "strip", import("zod").ZodTypeAny, {
|
173002
|
-
total: number;
|
173003
|
-
press_key: string;
|
173004
|
-
key_point?: number | undefined;
|
173005
|
-
}, {
|
173006
|
-
total: number;
|
173007
|
-
press_key: string;
|
173008
|
-
key_point?: number | undefined;
|
173009
|
-
}>, "many">>;
|
173010
|
-
total_key: import("zod").ZodOptional<import("zod").ZodNumber>;
|
173011
|
-
total_point: import("zod").ZodOptional<import("zod").ZodNumber>;
|
173012
|
-
average_point: import("zod").ZodOptional<import("zod").ZodNumber>;
|
173013
|
-
}, "strip", import("zod").ZodTypeAny, {
|
173014
|
-
agent_name: string;
|
173015
|
-
agent_num: string;
|
173016
|
-
satisfaction_list?: {
|
173017
|
-
total: number;
|
173018
|
-
press_key: string;
|
173019
|
-
key_point?: number | undefined;
|
173020
|
-
}[] | undefined;
|
173021
|
-
total_key?: number | undefined;
|
173022
|
-
total_point?: number | undefined;
|
173023
|
-
average_point?: number | undefined;
|
173024
|
-
}, {
|
173025
|
-
agent_name: string;
|
173026
|
-
agent_num: string;
|
173027
|
-
satisfaction_list?: {
|
173028
|
-
total: number;
|
173029
|
-
press_key: string;
|
173030
|
-
key_point?: number | undefined;
|
173031
|
-
}[] | undefined;
|
173032
|
-
total_key?: number | undefined;
|
173033
|
-
total_point?: number | undefined;
|
173034
|
-
average_point?: number | undefined;
|
173035
|
-
}>, "many">>;
|
173036
|
-
total_key: import("zod").ZodOptional<import("zod").ZodNumber>;
|
173037
|
-
total_point: import("zod").ZodOptional<import("zod").ZodNumber>;
|
173038
|
-
average_point: import("zod").ZodOptional<import("zod").ZodNumber>;
|
173039
|
-
}, "strip", import("zod").ZodTypeAny, {
|
173040
|
-
queue_name: string;
|
173041
|
-
queue_num: string;
|
173042
|
-
satisfaction_list?: {
|
173043
|
-
total: number;
|
173044
|
-
press_key: string;
|
173045
|
-
key_point?: number | undefined;
|
173046
|
-
}[] | undefined;
|
173047
|
-
agent_list?: {
|
173048
|
-
agent_name: string;
|
173049
|
-
agent_num: string;
|
173050
|
-
satisfaction_list?: {
|
173051
|
-
total: number;
|
173052
|
-
press_key: string;
|
173053
|
-
key_point?: number | undefined;
|
173054
|
-
}[] | undefined;
|
173055
|
-
total_key?: number | undefined;
|
173056
|
-
total_point?: number | undefined;
|
173057
|
-
average_point?: number | undefined;
|
173058
|
-
}[] | undefined;
|
173059
|
-
total_key?: number | undefined;
|
173060
|
-
total_point?: number | undefined;
|
173061
|
-
average_point?: number | undefined;
|
173062
|
-
}, {
|
173063
|
-
queue_name: string;
|
173064
|
-
queue_num: string;
|
173065
|
-
satisfaction_list?: {
|
173066
|
-
total: number;
|
173067
|
-
press_key: string;
|
173068
|
-
key_point?: number | undefined;
|
173069
|
-
}[] | undefined;
|
173070
|
-
agent_list?: {
|
173071
|
-
agent_name: string;
|
173072
|
-
agent_num: string;
|
173073
|
-
satisfaction_list?: {
|
173074
|
-
total: number;
|
173075
|
-
press_key: string;
|
173076
|
-
key_point?: number | undefined;
|
173077
|
-
}[] | undefined;
|
173078
|
-
total_key?: number | undefined;
|
173079
|
-
total_point?: number | undefined;
|
173080
|
-
average_point?: number | undefined;
|
173081
|
-
}[] | undefined;
|
173082
|
-
total_key?: number | undefined;
|
173083
|
-
total_point?: number | undefined;
|
173084
|
-
average_point?: number | undefined;
|
173085
|
-
}>>;
|
173086
|
-
queue_performance_list: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
173087
|
-
queue: import("zod").ZodString;
|
173088
|
-
total_calls: import("zod").ZodNumber;
|
173089
|
-
answered_calls: import("zod").ZodNumber;
|
173090
|
-
missed_calls: import("zod").ZodNumber;
|
173091
|
-
abandoned_calls: import("zod").ZodNumber;
|
173092
|
-
average_waiting_time: import("zod").ZodNumber;
|
173093
|
-
average_talking_time: import("zod").ZodNumber;
|
173094
|
-
max_waiting_time: import("zod").ZodNumber;
|
173095
|
-
answered_rate: import("zod").ZodNumber;
|
173096
|
-
missed_rate: import("zod").ZodNumber;
|
173097
|
-
abandoned_rate: import("zod").ZodNumber;
|
173098
|
-
sla: import("zod").ZodNumber;
|
173099
|
-
}, "strip", import("zod").ZodTypeAny, {
|
173100
|
-
queue: string;
|
173101
|
-
sla: number;
|
173102
|
-
answered_calls: number;
|
173103
|
-
total_calls: number;
|
173104
|
-
missed_calls: number;
|
173105
|
-
abandoned_calls: number;
|
173106
|
-
average_waiting_time: number;
|
173107
|
-
average_talking_time: number;
|
173108
|
-
max_waiting_time: number;
|
173109
|
-
answered_rate: number;
|
173110
|
-
missed_rate: number;
|
173111
|
-
abandoned_rate: number;
|
173112
|
-
}, {
|
173113
|
-
queue: string;
|
173114
|
-
sla: number;
|
173115
|
-
answered_calls: number;
|
173116
|
-
total_calls: number;
|
173117
|
-
missed_calls: number;
|
173118
|
-
abandoned_calls: number;
|
173119
|
-
average_waiting_time: number;
|
173120
|
-
average_talking_time: number;
|
173121
|
-
max_waiting_time: number;
|
173122
|
-
answered_rate: number;
|
173123
|
-
missed_rate: number;
|
173124
|
-
abandoned_rate: number;
|
173125
|
-
}>, "many">>;
|
173126
|
-
queue_agent_miss_calls_list: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
173127
|
-
agent_name: import("zod").ZodString;
|
173128
|
-
agent_num: import("zod").ZodString;
|
173129
|
-
time: import("zod").ZodString;
|
173130
|
-
total_wait_time: import("zod").ZodNumber;
|
173131
|
-
src_name: import("zod").ZodString;
|
173132
|
-
src_num: import("zod").ZodString;
|
173133
|
-
queue_status: import("zod").ZodString;
|
173134
|
-
polling_attempts: import("zod").ZodNumber;
|
173135
|
-
missed_reason: import("zod").ZodString;
|
173136
|
-
}, "strip", import("zod").ZodTypeAny, {
|
173137
|
-
time: string;
|
173138
|
-
src_name: string;
|
173139
|
-
agent_name: string;
|
173140
|
-
agent_num: string;
|
173141
|
-
total_wait_time: number;
|
173142
|
-
src_num: string;
|
173143
|
-
queue_status: string;
|
173144
|
-
polling_attempts: number;
|
173145
|
-
missed_reason: string;
|
173146
|
-
}, {
|
173147
|
-
time: string;
|
173148
|
-
src_name: string;
|
173149
|
-
agent_name: string;
|
173150
|
-
agent_num: string;
|
173151
|
-
total_wait_time: number;
|
173152
|
-
src_num: string;
|
173153
|
-
queue_status: string;
|
173154
|
-
polling_attempts: number;
|
173155
|
-
missed_reason: string;
|
173156
|
-
}>, "many">>;
|
173157
|
-
queue_agent_in_out_calls_list: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
173158
|
-
agent_name: import("zod").ZodString;
|
173159
|
-
agent_num: import("zod").ZodString;
|
173160
|
-
inbound_calls: import("zod").ZodNumber;
|
173161
|
-
inbound_duration: import("zod").ZodNumber;
|
173162
|
-
outbound_calls: import("zod").ZodNumber;
|
173163
|
-
outbound_duration: import("zod").ZodNumber;
|
173164
|
-
total_calls: import("zod").ZodNumber;
|
173165
|
-
total_duration: import("zod").ZodNumber;
|
173166
|
-
average_talk_duration: import("zod").ZodNumber;
|
173167
|
-
}, "strip", import("zod").ZodTypeAny, {
|
173168
|
-
total_calls: number;
|
173169
|
-
agent_name: string;
|
173170
|
-
agent_num: string;
|
173171
|
-
inbound_calls: number;
|
173172
|
-
inbound_duration: number;
|
173173
|
-
outbound_calls: number;
|
173174
|
-
outbound_duration: number;
|
173175
|
-
total_duration: number;
|
173176
|
-
average_talk_duration: number;
|
173177
|
-
}, {
|
173178
|
-
total_calls: number;
|
173179
|
-
agent_name: string;
|
173180
|
-
agent_num: string;
|
173181
|
-
inbound_calls: number;
|
173182
|
-
inbound_duration: number;
|
173183
|
-
outbound_calls: number;
|
173184
|
-
outbound_duration: number;
|
173185
|
-
total_duration: number;
|
173186
|
-
average_talk_duration: number;
|
173187
|
-
}>, "many">>;
|
173188
|
-
callback_result: import("zod").ZodString;
|
173189
|
-
page: import("zod").ZodOptional<import("zod").ZodNumber>;
|
173190
|
-
pageSize: import("zod").ZodOptional<import("zod").ZodNumber>;
|
173191
|
-
}, "strip", import("zod").ZodTypeAny, {
|
173192
|
-
errcode: number;
|
173193
|
-
errmsg: string;
|
173194
|
-
total_number: number;
|
173195
|
-
callback_result: string;
|
173196
|
-
is_12hour?: number | undefined;
|
173197
|
-
ext_call_statistics_list?: {
|
173198
|
-
mobile: string;
|
173199
|
-
ext_num: string;
|
173200
|
-
ext_name: string;
|
173201
|
-
answered_calls: number;
|
173202
|
-
no_answer_calls: number;
|
173203
|
-
busy_calls: number;
|
173204
|
-
failed_calls: number;
|
173205
|
-
voicemail_calls: number;
|
173206
|
-
total_holding_time: number;
|
173207
|
-
total_talking_time: number;
|
173208
|
-
src_name: string;
|
173209
|
-
total_call_count: number;
|
173210
|
-
}[] | undefined;
|
173211
|
-
ext_call_activity_list?: {
|
173212
|
-
time: number;
|
173213
|
-
answered_calls: number;
|
173214
|
-
no_answer_calls: number;
|
173215
|
-
busy_calls: number;
|
173216
|
-
failed_calls: number;
|
173217
|
-
voicemail_calls: number;
|
173218
|
-
total_holding_time: number;
|
173219
|
-
total_talking_time: number;
|
173220
|
-
ext_statistics: {
|
173221
|
-
time: number;
|
173222
|
-
mobile: string;
|
173223
|
-
ext_num: string;
|
173224
|
-
ext_name: string;
|
173225
|
-
answered_calls: number;
|
173226
|
-
no_answer_calls: number;
|
173227
|
-
busy_calls: number;
|
173228
|
-
failed_calls: number;
|
173229
|
-
voicemail_calls: number;
|
173230
|
-
total_holding_time: number;
|
173231
|
-
total_talking_time: number;
|
173232
|
-
}[];
|
173233
|
-
}[] | undefined;
|
173234
|
-
trunk_activity_list?: {
|
173235
|
-
time: number;
|
173236
|
-
trunk_list: {
|
173237
|
-
trunk_name: string;
|
173238
|
-
total_calls: number;
|
173239
|
-
}[];
|
173240
|
-
}[] | undefined;
|
173241
|
-
queue_avg_wait_talk_time_list?: {
|
173242
|
-
time: number;
|
173243
|
-
avg_wait_time: number;
|
173244
|
-
avg_talk_time: number;
|
173245
|
-
}[] | undefined;
|
173246
|
-
queue_satisfaction?: {
|
173247
|
-
queue_name: string;
|
173248
|
-
queue_num: string;
|
173249
|
-
satisfaction_list?: {
|
173250
|
-
total: number;
|
173251
|
-
press_key: string;
|
173252
|
-
key_point?: number | undefined;
|
173253
|
-
}[] | undefined;
|
173254
|
-
agent_list?: {
|
173255
|
-
agent_name: string;
|
173256
|
-
agent_num: string;
|
173257
|
-
satisfaction_list?: {
|
173258
|
-
total: number;
|
173259
|
-
press_key: string;
|
173260
|
-
key_point?: number | undefined;
|
173261
|
-
}[] | undefined;
|
173262
|
-
total_key?: number | undefined;
|
173263
|
-
total_point?: number | undefined;
|
173264
|
-
average_point?: number | undefined;
|
173265
|
-
}[] | undefined;
|
173266
|
-
total_key?: number | undefined;
|
173267
|
-
total_point?: number | undefined;
|
173268
|
-
average_point?: number | undefined;
|
173269
|
-
} | undefined;
|
173270
|
-
queue_performance_list?: {
|
173271
|
-
queue: string;
|
173272
|
-
sla: number;
|
173273
|
-
answered_calls: number;
|
173274
|
-
total_calls: number;
|
173275
|
-
missed_calls: number;
|
173276
|
-
abandoned_calls: number;
|
173277
|
-
average_waiting_time: number;
|
173278
|
-
average_talking_time: number;
|
173279
|
-
max_waiting_time: number;
|
173280
|
-
answered_rate: number;
|
173281
|
-
missed_rate: number;
|
173282
|
-
abandoned_rate: number;
|
173283
|
-
}[] | undefined;
|
173284
|
-
queue_agent_miss_calls_list?: {
|
173285
|
-
time: string;
|
173286
|
-
src_name: string;
|
173287
|
-
agent_name: string;
|
173288
|
-
agent_num: string;
|
173289
|
-
total_wait_time: number;
|
173290
|
-
src_num: string;
|
173291
|
-
queue_status: string;
|
173292
|
-
polling_attempts: number;
|
173293
|
-
missed_reason: string;
|
173294
|
-
}[] | undefined;
|
173295
|
-
queue_agent_in_out_calls_list?: {
|
173296
|
-
total_calls: number;
|
173297
|
-
agent_name: string;
|
173298
|
-
agent_num: string;
|
173299
|
-
inbound_calls: number;
|
173300
|
-
inbound_duration: number;
|
173301
|
-
outbound_calls: number;
|
173302
|
-
outbound_duration: number;
|
173303
|
-
total_duration: number;
|
173304
|
-
average_talk_duration: number;
|
173305
|
-
}[] | undefined;
|
173306
|
-
page?: number | undefined;
|
173307
|
-
pageSize?: number | undefined;
|
173308
|
-
}, {
|
173309
|
-
errcode: number;
|
173310
|
-
errmsg: string;
|
173311
|
-
total_number: number;
|
173312
|
-
callback_result: string;
|
173313
|
-
is_12hour?: number | undefined;
|
173314
|
-
ext_call_statistics_list?: {
|
173315
|
-
mobile: string;
|
173316
|
-
ext_num: string;
|
173317
|
-
ext_name: string;
|
173318
|
-
answered_calls: number;
|
173319
|
-
no_answer_calls: number;
|
173320
|
-
busy_calls: number;
|
173321
|
-
failed_calls: number;
|
173322
|
-
voicemail_calls: number;
|
173323
|
-
total_holding_time: number;
|
173324
|
-
total_talking_time: number;
|
173325
|
-
src_name: string;
|
173326
|
-
total_call_count: number;
|
173327
|
-
}[] | undefined;
|
173328
|
-
ext_call_activity_list?: {
|
173329
|
-
time: number;
|
173330
|
-
answered_calls: number;
|
173331
|
-
no_answer_calls: number;
|
173332
|
-
busy_calls: number;
|
173333
|
-
failed_calls: number;
|
173334
|
-
voicemail_calls: number;
|
173335
|
-
total_holding_time: number;
|
173336
|
-
total_talking_time: number;
|
173337
|
-
ext_statistics: {
|
173338
|
-
time: number;
|
173339
|
-
mobile: string;
|
173340
|
-
ext_num: string;
|
173341
|
-
ext_name: string;
|
173342
|
-
answered_calls: number;
|
173343
|
-
no_answer_calls: number;
|
173344
|
-
busy_calls: number;
|
173345
|
-
failed_calls: number;
|
173346
|
-
voicemail_calls: number;
|
173347
|
-
total_holding_time: number;
|
173348
|
-
total_talking_time: number;
|
173349
|
-
}[];
|
173350
|
-
}[] | undefined;
|
173351
|
-
trunk_activity_list?: {
|
173352
|
-
time: number;
|
173353
|
-
trunk_list: {
|
173354
|
-
trunk_name: string;
|
173355
|
-
total_calls: number;
|
173356
|
-
}[];
|
173357
|
-
}[] | undefined;
|
173358
|
-
queue_avg_wait_talk_time_list?: {
|
173359
|
-
time: number;
|
173360
|
-
avg_wait_time: number;
|
173361
|
-
avg_talk_time: number;
|
173362
|
-
}[] | undefined;
|
173363
|
-
queue_satisfaction?: {
|
173364
|
-
queue_name: string;
|
173365
|
-
queue_num: string;
|
173366
|
-
satisfaction_list?: {
|
173367
|
-
total: number;
|
173368
|
-
press_key: string;
|
173369
|
-
key_point?: number | undefined;
|
173370
|
-
}[] | undefined;
|
173371
|
-
agent_list?: {
|
173372
|
-
agent_name: string;
|
173373
|
-
agent_num: string;
|
173374
|
-
satisfaction_list?: {
|
173375
|
-
total: number;
|
173376
|
-
press_key: string;
|
173377
|
-
key_point?: number | undefined;
|
173378
|
-
}[] | undefined;
|
173379
|
-
total_key?: number | undefined;
|
173380
|
-
total_point?: number | undefined;
|
173381
|
-
average_point?: number | undefined;
|
173382
|
-
}[] | undefined;
|
173383
|
-
total_key?: number | undefined;
|
173384
|
-
total_point?: number | undefined;
|
173385
|
-
average_point?: number | undefined;
|
173386
|
-
} | undefined;
|
173387
|
-
queue_performance_list?: {
|
173388
|
-
queue: string;
|
173389
|
-
sla: number;
|
173390
|
-
answered_calls: number;
|
173391
|
-
total_calls: number;
|
173392
|
-
missed_calls: number;
|
173393
|
-
abandoned_calls: number;
|
173394
|
-
average_waiting_time: number;
|
173395
|
-
average_talking_time: number;
|
173396
|
-
max_waiting_time: number;
|
173397
|
-
answered_rate: number;
|
173398
|
-
missed_rate: number;
|
173399
|
-
abandoned_rate: number;
|
173400
|
-
}[] | undefined;
|
173401
|
-
queue_agent_miss_calls_list?: {
|
173402
|
-
time: string;
|
173403
|
-
src_name: string;
|
173404
|
-
agent_name: string;
|
173405
|
-
agent_num: string;
|
173406
|
-
total_wait_time: number;
|
173407
|
-
src_num: string;
|
173408
|
-
queue_status: string;
|
173409
|
-
polling_attempts: number;
|
173410
|
-
missed_reason: string;
|
173411
|
-
}[] | undefined;
|
173412
|
-
queue_agent_in_out_calls_list?: {
|
173413
|
-
total_calls: number;
|
173414
|
-
agent_name: string;
|
173415
|
-
agent_num: string;
|
173416
|
-
inbound_calls: number;
|
173417
|
-
inbound_duration: number;
|
173418
|
-
outbound_calls: number;
|
173419
|
-
outbound_duration: number;
|
173420
|
-
total_duration: number;
|
173421
|
-
average_talk_duration: number;
|
173422
|
-
}[] | undefined;
|
173423
|
-
page?: number | undefined;
|
173424
|
-
pageSize?: number | undefined;
|
173425
|
-
}>;
|
172804
|
+
200: import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>;
|
173426
172805
|
401: import("zod").ZodObject<{
|
173427
172806
|
message: import("zod").ZodString;
|
173428
172807
|
error: import("zod").ZodAny;
|
@@ -183788,7 +183167,7 @@ export declare const mailApiContract: {
|
|
183788
183167
|
sendAt: import("zod").ZodDate;
|
183789
183168
|
starred: import("zod").ZodBoolean;
|
183790
183169
|
seemsLikeNew: import("zod").ZodBoolean;
|
183791
|
-
from: import("zod").
|
183170
|
+
from: import("zod").ZodObject<{
|
183792
183171
|
id: import("zod").ZodString;
|
183793
183172
|
createdAt: import("zod").ZodDate;
|
183794
183173
|
updatedAt: import("zod").ZodDate;
|
@@ -183942,7 +183321,7 @@ export declare const mailApiContract: {
|
|
183942
183321
|
contactId: string;
|
183943
183322
|
isNewContact: boolean;
|
183944
183323
|
};
|
183945
|
-
}
|
183324
|
+
}>;
|
183946
183325
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
183947
183326
|
id: import("zod").ZodString;
|
183948
183327
|
createdAt: import("zod").ZodDate;
|
@@ -184550,7 +183929,7 @@ export declare const mailApiContract: {
|
|
184550
183929
|
contactId: string;
|
184551
183930
|
isNewContact: boolean;
|
184552
183931
|
};
|
184553
|
-
}
|
183932
|
+
};
|
184554
183933
|
to: {
|
184555
183934
|
id: string;
|
184556
183935
|
createdAt: Date;
|
@@ -184718,7 +184097,7 @@ export declare const mailApiContract: {
|
|
184718
184097
|
contactId: string;
|
184719
184098
|
isNewContact: boolean;
|
184720
184099
|
};
|
184721
|
-
}
|
184100
|
+
};
|
184722
184101
|
to: {
|
184723
184102
|
id: string;
|
184724
184103
|
createdAt: Date;
|
@@ -184857,7 +184236,7 @@ export declare const mailApiContract: {
|
|
184857
184236
|
sendAt: import("zod").ZodDate;
|
184858
184237
|
starred: import("zod").ZodBoolean;
|
184859
184238
|
seemsLikeNew: import("zod").ZodBoolean;
|
184860
|
-
from: import("zod").
|
184239
|
+
from: import("zod").ZodObject<{
|
184861
184240
|
id: import("zod").ZodString;
|
184862
184241
|
createdAt: import("zod").ZodDate;
|
184863
184242
|
updatedAt: import("zod").ZodDate;
|
@@ -185011,7 +184390,7 @@ export declare const mailApiContract: {
|
|
185011
184390
|
contactId: string;
|
185012
184391
|
isNewContact: boolean;
|
185013
184392
|
};
|
185014
|
-
}
|
184393
|
+
}>;
|
185015
184394
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
185016
184395
|
id: import("zod").ZodString;
|
185017
184396
|
createdAt: import("zod").ZodDate;
|
@@ -185619,7 +184998,7 @@ export declare const mailApiContract: {
|
|
185619
184998
|
contactId: string;
|
185620
184999
|
isNewContact: boolean;
|
185621
185000
|
};
|
185622
|
-
}
|
185001
|
+
};
|
185623
185002
|
to: {
|
185624
185003
|
id: string;
|
185625
185004
|
createdAt: Date;
|
@@ -185787,7 +185166,7 @@ export declare const mailApiContract: {
|
|
185787
185166
|
contactId: string;
|
185788
185167
|
isNewContact: boolean;
|
185789
185168
|
};
|
185790
|
-
}
|
185169
|
+
};
|
185791
185170
|
to: {
|
185792
185171
|
id: string;
|
185793
185172
|
createdAt: Date;
|
@@ -185979,7 +185358,7 @@ export declare const mailApiContract: {
|
|
185979
185358
|
sendAt: import("zod").ZodDate;
|
185980
185359
|
starred: import("zod").ZodBoolean;
|
185981
185360
|
seemsLikeNew: import("zod").ZodBoolean;
|
185982
|
-
from: import("zod").
|
185361
|
+
from: import("zod").ZodObject<{
|
185983
185362
|
id: import("zod").ZodString;
|
185984
185363
|
createdAt: import("zod").ZodDate;
|
185985
185364
|
updatedAt: import("zod").ZodDate;
|
@@ -186133,7 +185512,7 @@ export declare const mailApiContract: {
|
|
186133
185512
|
contactId: string;
|
186134
185513
|
isNewContact: boolean;
|
186135
185514
|
};
|
186136
|
-
}
|
185515
|
+
}>;
|
186137
185516
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
186138
185517
|
id: import("zod").ZodString;
|
186139
185518
|
createdAt: import("zod").ZodDate;
|
@@ -186741,7 +186120,7 @@ export declare const mailApiContract: {
|
|
186741
186120
|
contactId: string;
|
186742
186121
|
isNewContact: boolean;
|
186743
186122
|
};
|
186744
|
-
}
|
186123
|
+
};
|
186745
186124
|
to: {
|
186746
186125
|
id: string;
|
186747
186126
|
createdAt: Date;
|
@@ -186909,7 +186288,7 @@ export declare const mailApiContract: {
|
|
186909
186288
|
contactId: string;
|
186910
186289
|
isNewContact: boolean;
|
186911
186290
|
};
|
186912
|
-
}
|
186291
|
+
};
|
186913
186292
|
to: {
|
186914
186293
|
id: string;
|
186915
186294
|
createdAt: Date;
|
@@ -187048,7 +186427,7 @@ export declare const mailApiContract: {
|
|
187048
186427
|
sendAt: import("zod").ZodDate;
|
187049
186428
|
starred: import("zod").ZodBoolean;
|
187050
186429
|
seemsLikeNew: import("zod").ZodBoolean;
|
187051
|
-
from: import("zod").
|
186430
|
+
from: import("zod").ZodObject<{
|
187052
186431
|
id: import("zod").ZodString;
|
187053
186432
|
createdAt: import("zod").ZodDate;
|
187054
186433
|
updatedAt: import("zod").ZodDate;
|
@@ -187202,7 +186581,7 @@ export declare const mailApiContract: {
|
|
187202
186581
|
contactId: string;
|
187203
186582
|
isNewContact: boolean;
|
187204
186583
|
};
|
187205
|
-
}
|
186584
|
+
}>;
|
187206
186585
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
187207
186586
|
id: import("zod").ZodString;
|
187208
186587
|
createdAt: import("zod").ZodDate;
|
@@ -187810,7 +187189,7 @@ export declare const mailApiContract: {
|
|
187810
187189
|
contactId: string;
|
187811
187190
|
isNewContact: boolean;
|
187812
187191
|
};
|
187813
|
-
}
|
187192
|
+
};
|
187814
187193
|
to: {
|
187815
187194
|
id: string;
|
187816
187195
|
createdAt: Date;
|
@@ -187978,7 +187357,7 @@ export declare const mailApiContract: {
|
|
187978
187357
|
contactId: string;
|
187979
187358
|
isNewContact: boolean;
|
187980
187359
|
};
|
187981
|
-
}
|
187360
|
+
};
|
187982
187361
|
to: {
|
187983
187362
|
id: string;
|
187984
187363
|
createdAt: Date;
|
@@ -188763,7 +188142,7 @@ export declare const mailApiContract: {
|
|
188763
188142
|
contactId: string;
|
188764
188143
|
isNewContact: boolean;
|
188765
188144
|
};
|
188766
|
-
}
|
188145
|
+
};
|
188767
188146
|
to: {
|
188768
188147
|
id: string;
|
188769
188148
|
createdAt: Date;
|
@@ -189142,7 +188521,7 @@ export declare const mailApiContract: {
|
|
189142
188521
|
contactId: string;
|
189143
188522
|
isNewContact: boolean;
|
189144
188523
|
};
|
189145
|
-
}
|
188524
|
+
};
|
189146
188525
|
to: {
|
189147
188526
|
id: string;
|
189148
188527
|
createdAt: Date;
|
@@ -189311,7 +188690,7 @@ export declare const mailApiContract: {
|
|
189311
188690
|
contactId: string;
|
189312
188691
|
isNewContact: boolean;
|
189313
188692
|
};
|
189314
|
-
}
|
188693
|
+
};
|
189315
188694
|
to: {
|
189316
188695
|
id: string;
|
189317
188696
|
createdAt: Date;
|
@@ -189480,7 +188859,7 @@ export declare const mailApiContract: {
|
|
189480
188859
|
contactId: string;
|
189481
188860
|
isNewContact: boolean;
|
189482
188861
|
};
|
189483
|
-
}
|
188862
|
+
};
|
189484
188863
|
to: {
|
189485
188864
|
id: string;
|
189486
188865
|
createdAt: Date;
|
@@ -189710,7 +189089,7 @@ export declare const mailApiContract: {
|
|
189710
189089
|
contactId: string;
|
189711
189090
|
isNewContact: boolean;
|
189712
189091
|
};
|
189713
|
-
}
|
189092
|
+
};
|
189714
189093
|
to: {
|
189715
189094
|
id: string;
|
189716
189095
|
createdAt: Date;
|
@@ -190089,7 +189468,7 @@ export declare const mailApiContract: {
|
|
190089
189468
|
contactId: string;
|
190090
189469
|
isNewContact: boolean;
|
190091
189470
|
};
|
190092
|
-
}
|
189471
|
+
};
|
190093
189472
|
to: {
|
190094
189473
|
id: string;
|
190095
189474
|
createdAt: Date;
|
@@ -190258,7 +189637,7 @@ export declare const mailApiContract: {
|
|
190258
189637
|
contactId: string;
|
190259
189638
|
isNewContact: boolean;
|
190260
189639
|
};
|
190261
|
-
}
|
189640
|
+
};
|
190262
189641
|
to: {
|
190263
189642
|
id: string;
|
190264
189643
|
createdAt: Date;
|
@@ -190427,7 +189806,7 @@ export declare const mailApiContract: {
|
|
190427
189806
|
contactId: string;
|
190428
189807
|
isNewContact: boolean;
|
190429
189808
|
};
|
190430
|
-
}
|
189809
|
+
};
|
190431
189810
|
to: {
|
190432
189811
|
id: string;
|
190433
189812
|
createdAt: Date;
|
@@ -190662,7 +190041,7 @@ export declare const mailApiContract: {
|
|
190662
190041
|
contactId: string;
|
190663
190042
|
isNewContact: boolean;
|
190664
190043
|
};
|
190665
|
-
}
|
190044
|
+
};
|
190666
190045
|
to: {
|
190667
190046
|
id: string;
|
190668
190047
|
createdAt: Date;
|
@@ -191041,7 +190420,7 @@ export declare const mailApiContract: {
|
|
191041
190420
|
contactId: string;
|
191042
190421
|
isNewContact: boolean;
|
191043
190422
|
};
|
191044
|
-
}
|
190423
|
+
};
|
191045
190424
|
to: {
|
191046
190425
|
id: string;
|
191047
190426
|
createdAt: Date;
|
@@ -191210,7 +190589,7 @@ export declare const mailApiContract: {
|
|
191210
190589
|
contactId: string;
|
191211
190590
|
isNewContact: boolean;
|
191212
190591
|
};
|
191213
|
-
}
|
190592
|
+
};
|
191214
190593
|
to: {
|
191215
190594
|
id: string;
|
191216
190595
|
createdAt: Date;
|
@@ -191379,7 +190758,7 @@ export declare const mailApiContract: {
|
|
191379
190758
|
contactId: string;
|
191380
190759
|
isNewContact: boolean;
|
191381
190760
|
};
|
191382
|
-
}
|
190761
|
+
};
|
191383
190762
|
to: {
|
191384
190763
|
id: string;
|
191385
190764
|
createdAt: Date;
|
@@ -191615,7 +190994,7 @@ export declare const mailApiContract: {
|
|
191615
190994
|
contactId: string;
|
191616
190995
|
isNewContact: boolean;
|
191617
190996
|
};
|
191618
|
-
}
|
190997
|
+
};
|
191619
190998
|
to: {
|
191620
190999
|
id: string;
|
191621
191000
|
createdAt: Date;
|
@@ -191994,7 +191373,7 @@ export declare const mailApiContract: {
|
|
191994
191373
|
contactId: string;
|
191995
191374
|
isNewContact: boolean;
|
191996
191375
|
};
|
191997
|
-
}
|
191376
|
+
};
|
191998
191377
|
to: {
|
191999
191378
|
id: string;
|
192000
191379
|
createdAt: Date;
|
@@ -192163,7 +191542,7 @@ export declare const mailApiContract: {
|
|
192163
191542
|
contactId: string;
|
192164
191543
|
isNewContact: boolean;
|
192165
191544
|
};
|
192166
|
-
}
|
191545
|
+
};
|
192167
191546
|
to: {
|
192168
191547
|
id: string;
|
192169
191548
|
createdAt: Date;
|
@@ -192332,7 +191711,7 @@ export declare const mailApiContract: {
|
|
192332
191711
|
contactId: string;
|
192333
191712
|
isNewContact: boolean;
|
192334
191713
|
};
|
192335
|
-
}
|
191714
|
+
};
|
192336
191715
|
to: {
|
192337
191716
|
id: string;
|
192338
191717
|
createdAt: Date;
|
@@ -193389,6 +192768,66 @@ export declare const mailApiContract: {
|
|
193389
192768
|
};
|
193390
192769
|
path: "mail/room/:id/participants";
|
193391
192770
|
};
|
192771
|
+
addNewEmailToContact: {
|
192772
|
+
body: import("zod").ZodObject<{
|
192773
|
+
email: import("zod").ZodString;
|
192774
|
+
contactId: import("zod").ZodString;
|
192775
|
+
mailUserId: import("zod").ZodString;
|
192776
|
+
}, "strip", import("zod").ZodTypeAny, {
|
192777
|
+
email: string;
|
192778
|
+
contactId: string;
|
192779
|
+
mailUserId: string;
|
192780
|
+
}, {
|
192781
|
+
email: string;
|
192782
|
+
contactId: string;
|
192783
|
+
mailUserId: string;
|
192784
|
+
}>;
|
192785
|
+
summary: "Add a new email of a mail room participant to an existing contact";
|
192786
|
+
method: "POST";
|
192787
|
+
responses: {
|
192788
|
+
401: import("zod").ZodObject<{
|
192789
|
+
message: import("zod").ZodString;
|
192790
|
+
error: import("zod").ZodAny;
|
192791
|
+
}, "strip", import("zod").ZodTypeAny, {
|
192792
|
+
message: string;
|
192793
|
+
error?: any;
|
192794
|
+
}, {
|
192795
|
+
message: string;
|
192796
|
+
error?: any;
|
192797
|
+
}>;
|
192798
|
+
404: import("zod").ZodObject<{
|
192799
|
+
message: import("zod").ZodString;
|
192800
|
+
error: import("zod").ZodAny;
|
192801
|
+
}, "strip", import("zod").ZodTypeAny, {
|
192802
|
+
message: string;
|
192803
|
+
error?: any;
|
192804
|
+
}, {
|
192805
|
+
message: string;
|
192806
|
+
error?: any;
|
192807
|
+
}>;
|
192808
|
+
422: import("zod").ZodObject<{
|
192809
|
+
message: import("zod").ZodString;
|
192810
|
+
error: import("zod").ZodAny;
|
192811
|
+
}, "strip", import("zod").ZodTypeAny, {
|
192812
|
+
message: string;
|
192813
|
+
error?: any;
|
192814
|
+
}, {
|
192815
|
+
message: string;
|
192816
|
+
error?: any;
|
192817
|
+
}>;
|
192818
|
+
200: import("zod").ZodObject<{
|
192819
|
+
requestId: import("zod").ZodString;
|
192820
|
+
data: import("zod").ZodString;
|
192821
|
+
}, "strip", import("zod").ZodTypeAny, {
|
192822
|
+
data: string;
|
192823
|
+
requestId: string;
|
192824
|
+
}, {
|
192825
|
+
data: string;
|
192826
|
+
requestId: string;
|
192827
|
+
}>;
|
192828
|
+
};
|
192829
|
+
path: "mail/room/add_email_to_contact";
|
192830
|
+
};
|
193392
192831
|
update: {
|
193393
192832
|
body: import("zod").ZodObject<{
|
193394
192833
|
disposition: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"resolved">, import("zod").ZodLiteral<"follow up">, import("zod").ZodLiteral<"escalated">, import("zod").ZodLiteral<"dropped">, import("zod").ZodLiteral<"prank">, import("zod").ZodLiteral<"blank">]>>>;
|
@@ -194107,7 +193546,7 @@ export declare const mailApiContract: {
|
|
194107
193546
|
sendAt: import("zod").ZodDate;
|
194108
193547
|
starred: import("zod").ZodBoolean;
|
194109
193548
|
seemsLikeNew: import("zod").ZodBoolean;
|
194110
|
-
from: import("zod").
|
193549
|
+
from: import("zod").ZodObject<{
|
194111
193550
|
id: import("zod").ZodString;
|
194112
193551
|
createdAt: import("zod").ZodDate;
|
194113
193552
|
updatedAt: import("zod").ZodDate;
|
@@ -194261,7 +193700,7 @@ export declare const mailApiContract: {
|
|
194261
193700
|
contactId: string;
|
194262
193701
|
isNewContact: boolean;
|
194263
193702
|
};
|
194264
|
-
}
|
193703
|
+
}>;
|
194265
193704
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
194266
193705
|
id: import("zod").ZodString;
|
194267
193706
|
createdAt: import("zod").ZodDate;
|
@@ -194869,7 +194308,7 @@ export declare const mailApiContract: {
|
|
194869
194308
|
contactId: string;
|
194870
194309
|
isNewContact: boolean;
|
194871
194310
|
};
|
194872
|
-
}
|
194311
|
+
};
|
194873
194312
|
to: {
|
194874
194313
|
id: string;
|
194875
194314
|
createdAt: Date;
|
@@ -195037,7 +194476,7 @@ export declare const mailApiContract: {
|
|
195037
194476
|
contactId: string;
|
195038
194477
|
isNewContact: boolean;
|
195039
194478
|
};
|
195040
|
-
}
|
194479
|
+
};
|
195041
194480
|
to: {
|
195042
194481
|
id: string;
|
195043
194482
|
createdAt: Date;
|
@@ -195176,7 +194615,7 @@ export declare const mailApiContract: {
|
|
195176
194615
|
sendAt: import("zod").ZodDate;
|
195177
194616
|
starred: import("zod").ZodBoolean;
|
195178
194617
|
seemsLikeNew: import("zod").ZodBoolean;
|
195179
|
-
from: import("zod").
|
194618
|
+
from: import("zod").ZodObject<{
|
195180
194619
|
id: import("zod").ZodString;
|
195181
194620
|
createdAt: import("zod").ZodDate;
|
195182
194621
|
updatedAt: import("zod").ZodDate;
|
@@ -195330,7 +194769,7 @@ export declare const mailApiContract: {
|
|
195330
194769
|
contactId: string;
|
195331
194770
|
isNewContact: boolean;
|
195332
194771
|
};
|
195333
|
-
}
|
194772
|
+
}>;
|
195334
194773
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
195335
194774
|
id: import("zod").ZodString;
|
195336
194775
|
createdAt: import("zod").ZodDate;
|
@@ -195938,7 +195377,7 @@ export declare const mailApiContract: {
|
|
195938
195377
|
contactId: string;
|
195939
195378
|
isNewContact: boolean;
|
195940
195379
|
};
|
195941
|
-
}
|
195380
|
+
};
|
195942
195381
|
to: {
|
195943
195382
|
id: string;
|
195944
195383
|
createdAt: Date;
|
@@ -196106,7 +195545,7 @@ export declare const mailApiContract: {
|
|
196106
195545
|
contactId: string;
|
196107
195546
|
isNewContact: boolean;
|
196108
195547
|
};
|
196109
|
-
}
|
195548
|
+
};
|
196110
195549
|
to: {
|
196111
195550
|
id: string;
|
196112
195551
|
createdAt: Date;
|
@@ -196298,7 +195737,7 @@ export declare const mailApiContract: {
|
|
196298
195737
|
sendAt: import("zod").ZodDate;
|
196299
195738
|
starred: import("zod").ZodBoolean;
|
196300
195739
|
seemsLikeNew: import("zod").ZodBoolean;
|
196301
|
-
from: import("zod").
|
195740
|
+
from: import("zod").ZodObject<{
|
196302
195741
|
id: import("zod").ZodString;
|
196303
195742
|
createdAt: import("zod").ZodDate;
|
196304
195743
|
updatedAt: import("zod").ZodDate;
|
@@ -196452,7 +195891,7 @@ export declare const mailApiContract: {
|
|
196452
195891
|
contactId: string;
|
196453
195892
|
isNewContact: boolean;
|
196454
195893
|
};
|
196455
|
-
}
|
195894
|
+
}>;
|
196456
195895
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
196457
195896
|
id: import("zod").ZodString;
|
196458
195897
|
createdAt: import("zod").ZodDate;
|
@@ -197060,7 +196499,7 @@ export declare const mailApiContract: {
|
|
197060
196499
|
contactId: string;
|
197061
196500
|
isNewContact: boolean;
|
197062
196501
|
};
|
197063
|
-
}
|
196502
|
+
};
|
197064
196503
|
to: {
|
197065
196504
|
id: string;
|
197066
196505
|
createdAt: Date;
|
@@ -197228,7 +196667,7 @@ export declare const mailApiContract: {
|
|
197228
196667
|
contactId: string;
|
197229
196668
|
isNewContact: boolean;
|
197230
196669
|
};
|
197231
|
-
}
|
196670
|
+
};
|
197232
196671
|
to: {
|
197233
196672
|
id: string;
|
197234
196673
|
createdAt: Date;
|
@@ -197367,7 +196806,7 @@ export declare const mailApiContract: {
|
|
197367
196806
|
sendAt: import("zod").ZodDate;
|
197368
196807
|
starred: import("zod").ZodBoolean;
|
197369
196808
|
seemsLikeNew: import("zod").ZodBoolean;
|
197370
|
-
from: import("zod").
|
196809
|
+
from: import("zod").ZodObject<{
|
197371
196810
|
id: import("zod").ZodString;
|
197372
196811
|
createdAt: import("zod").ZodDate;
|
197373
196812
|
updatedAt: import("zod").ZodDate;
|
@@ -197521,7 +196960,7 @@ export declare const mailApiContract: {
|
|
197521
196960
|
contactId: string;
|
197522
196961
|
isNewContact: boolean;
|
197523
196962
|
};
|
197524
|
-
}
|
196963
|
+
}>;
|
197525
196964
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
197526
196965
|
id: import("zod").ZodString;
|
197527
196966
|
createdAt: import("zod").ZodDate;
|
@@ -198129,7 +197568,7 @@ export declare const mailApiContract: {
|
|
198129
197568
|
contactId: string;
|
198130
197569
|
isNewContact: boolean;
|
198131
197570
|
};
|
198132
|
-
}
|
197571
|
+
};
|
198133
197572
|
to: {
|
198134
197573
|
id: string;
|
198135
197574
|
createdAt: Date;
|
@@ -198297,7 +197736,7 @@ export declare const mailApiContract: {
|
|
198297
197736
|
contactId: string;
|
198298
197737
|
isNewContact: boolean;
|
198299
197738
|
};
|
198300
|
-
}
|
197739
|
+
};
|
198301
197740
|
to: {
|
198302
197741
|
id: string;
|
198303
197742
|
createdAt: Date;
|
@@ -199082,7 +198521,7 @@ export declare const mailApiContract: {
|
|
199082
198521
|
contactId: string;
|
199083
198522
|
isNewContact: boolean;
|
199084
198523
|
};
|
199085
|
-
}
|
198524
|
+
};
|
199086
198525
|
to: {
|
199087
198526
|
id: string;
|
199088
198527
|
createdAt: Date;
|
@@ -199461,7 +198900,7 @@ export declare const mailApiContract: {
|
|
199461
198900
|
contactId: string;
|
199462
198901
|
isNewContact: boolean;
|
199463
198902
|
};
|
199464
|
-
}
|
198903
|
+
};
|
199465
198904
|
to: {
|
199466
198905
|
id: string;
|
199467
198906
|
createdAt: Date;
|
@@ -199630,7 +199069,7 @@ export declare const mailApiContract: {
|
|
199630
199069
|
contactId: string;
|
199631
199070
|
isNewContact: boolean;
|
199632
199071
|
};
|
199633
|
-
}
|
199072
|
+
};
|
199634
199073
|
to: {
|
199635
199074
|
id: string;
|
199636
199075
|
createdAt: Date;
|
@@ -199799,7 +199238,7 @@ export declare const mailApiContract: {
|
|
199799
199238
|
contactId: string;
|
199800
199239
|
isNewContact: boolean;
|
199801
199240
|
};
|
199802
|
-
}
|
199241
|
+
};
|
199803
199242
|
to: {
|
199804
199243
|
id: string;
|
199805
199244
|
createdAt: Date;
|
@@ -200029,7 +199468,7 @@ export declare const mailApiContract: {
|
|
200029
199468
|
contactId: string;
|
200030
199469
|
isNewContact: boolean;
|
200031
199470
|
};
|
200032
|
-
}
|
199471
|
+
};
|
200033
199472
|
to: {
|
200034
199473
|
id: string;
|
200035
199474
|
createdAt: Date;
|
@@ -200408,7 +199847,7 @@ export declare const mailApiContract: {
|
|
200408
199847
|
contactId: string;
|
200409
199848
|
isNewContact: boolean;
|
200410
199849
|
};
|
200411
|
-
}
|
199850
|
+
};
|
200412
199851
|
to: {
|
200413
199852
|
id: string;
|
200414
199853
|
createdAt: Date;
|
@@ -200577,7 +200016,7 @@ export declare const mailApiContract: {
|
|
200577
200016
|
contactId: string;
|
200578
200017
|
isNewContact: boolean;
|
200579
200018
|
};
|
200580
|
-
}
|
200019
|
+
};
|
200581
200020
|
to: {
|
200582
200021
|
id: string;
|
200583
200022
|
createdAt: Date;
|
@@ -200746,7 +200185,7 @@ export declare const mailApiContract: {
|
|
200746
200185
|
contactId: string;
|
200747
200186
|
isNewContact: boolean;
|
200748
200187
|
};
|
200749
|
-
}
|
200188
|
+
};
|
200750
200189
|
to: {
|
200751
200190
|
id: string;
|
200752
200191
|
createdAt: Date;
|
@@ -200978,7 +200417,7 @@ export declare const mailApiContract: {
|
|
200978
200417
|
contactId: string;
|
200979
200418
|
isNewContact: boolean;
|
200980
200419
|
};
|
200981
|
-
}
|
200420
|
+
};
|
200982
200421
|
to: {
|
200983
200422
|
id: string;
|
200984
200423
|
createdAt: Date;
|
@@ -201357,7 +200796,7 @@ export declare const mailApiContract: {
|
|
201357
200796
|
contactId: string;
|
201358
200797
|
isNewContact: boolean;
|
201359
200798
|
};
|
201360
|
-
}
|
200799
|
+
};
|
201361
200800
|
to: {
|
201362
200801
|
id: string;
|
201363
200802
|
createdAt: Date;
|
@@ -201526,7 +200965,7 @@ export declare const mailApiContract: {
|
|
201526
200965
|
contactId: string;
|
201527
200966
|
isNewContact: boolean;
|
201528
200967
|
};
|
201529
|
-
}
|
200968
|
+
};
|
201530
200969
|
to: {
|
201531
200970
|
id: string;
|
201532
200971
|
createdAt: Date;
|
@@ -201695,7 +201134,7 @@ export declare const mailApiContract: {
|
|
201695
201134
|
contactId: string;
|
201696
201135
|
isNewContact: boolean;
|
201697
201136
|
};
|
201698
|
-
}
|
201137
|
+
};
|
201699
201138
|
to: {
|
201700
201139
|
id: string;
|
201701
201140
|
createdAt: Date;
|
@@ -201928,7 +201367,7 @@ export declare const mailApiContract: {
|
|
201928
201367
|
contactId: string;
|
201929
201368
|
isNewContact: boolean;
|
201930
201369
|
};
|
201931
|
-
}
|
201370
|
+
};
|
201932
201371
|
to: {
|
201933
201372
|
id: string;
|
201934
201373
|
createdAt: Date;
|
@@ -202307,7 +201746,7 @@ export declare const mailApiContract: {
|
|
202307
201746
|
contactId: string;
|
202308
201747
|
isNewContact: boolean;
|
202309
201748
|
};
|
202310
|
-
}
|
201749
|
+
};
|
202311
201750
|
to: {
|
202312
201751
|
id: string;
|
202313
201752
|
createdAt: Date;
|
@@ -202476,7 +201915,7 @@ export declare const mailApiContract: {
|
|
202476
201915
|
contactId: string;
|
202477
201916
|
isNewContact: boolean;
|
202478
201917
|
};
|
202479
|
-
}
|
201918
|
+
};
|
202480
201919
|
to: {
|
202481
201920
|
id: string;
|
202482
201921
|
createdAt: Date;
|
@@ -202645,7 +202084,7 @@ export declare const mailApiContract: {
|
|
202645
202084
|
contactId: string;
|
202646
202085
|
isNewContact: boolean;
|
202647
202086
|
};
|
202648
|
-
}
|
202087
|
+
};
|
202649
202088
|
to: {
|
202650
202089
|
id: string;
|
202651
202090
|
createdAt: Date;
|
@@ -203566,7 +203005,7 @@ export declare const mailApiContract: {
|
|
203566
203005
|
sendAt: import("zod").ZodDate;
|
203567
203006
|
starred: import("zod").ZodBoolean;
|
203568
203007
|
seemsLikeNew: import("zod").ZodBoolean;
|
203569
|
-
from: import("zod").
|
203008
|
+
from: import("zod").ZodObject<{
|
203570
203009
|
id: import("zod").ZodString;
|
203571
203010
|
createdAt: import("zod").ZodDate;
|
203572
203011
|
updatedAt: import("zod").ZodDate;
|
@@ -203720,7 +203159,7 @@ export declare const mailApiContract: {
|
|
203720
203159
|
contactId: string;
|
203721
203160
|
isNewContact: boolean;
|
203722
203161
|
};
|
203723
|
-
}
|
203162
|
+
}>;
|
203724
203163
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
203725
203164
|
id: import("zod").ZodString;
|
203726
203165
|
createdAt: import("zod").ZodDate;
|
@@ -204328,7 +203767,7 @@ export declare const mailApiContract: {
|
|
204328
203767
|
contactId: string;
|
204329
203768
|
isNewContact: boolean;
|
204330
203769
|
};
|
204331
|
-
}
|
203770
|
+
};
|
204332
203771
|
to: {
|
204333
203772
|
id: string;
|
204334
203773
|
createdAt: Date;
|
@@ -204496,7 +203935,7 @@ export declare const mailApiContract: {
|
|
204496
203935
|
contactId: string;
|
204497
203936
|
isNewContact: boolean;
|
204498
203937
|
};
|
204499
|
-
}
|
203938
|
+
};
|
204500
203939
|
to: {
|
204501
203940
|
id: string;
|
204502
203941
|
createdAt: Date;
|
@@ -204635,7 +204074,7 @@ export declare const mailApiContract: {
|
|
204635
204074
|
sendAt: import("zod").ZodDate;
|
204636
204075
|
starred: import("zod").ZodBoolean;
|
204637
204076
|
seemsLikeNew: import("zod").ZodBoolean;
|
204638
|
-
from: import("zod").
|
204077
|
+
from: import("zod").ZodObject<{
|
204639
204078
|
id: import("zod").ZodString;
|
204640
204079
|
createdAt: import("zod").ZodDate;
|
204641
204080
|
updatedAt: import("zod").ZodDate;
|
@@ -204789,7 +204228,7 @@ export declare const mailApiContract: {
|
|
204789
204228
|
contactId: string;
|
204790
204229
|
isNewContact: boolean;
|
204791
204230
|
};
|
204792
|
-
}
|
204231
|
+
}>;
|
204793
204232
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
204794
204233
|
id: import("zod").ZodString;
|
204795
204234
|
createdAt: import("zod").ZodDate;
|
@@ -205397,7 +204836,7 @@ export declare const mailApiContract: {
|
|
205397
204836
|
contactId: string;
|
205398
204837
|
isNewContact: boolean;
|
205399
204838
|
};
|
205400
|
-
}
|
204839
|
+
};
|
205401
204840
|
to: {
|
205402
204841
|
id: string;
|
205403
204842
|
createdAt: Date;
|
@@ -205565,7 +205004,7 @@ export declare const mailApiContract: {
|
|
205565
205004
|
contactId: string;
|
205566
205005
|
isNewContact: boolean;
|
205567
205006
|
};
|
205568
|
-
}
|
205007
|
+
};
|
205569
205008
|
to: {
|
205570
205009
|
id: string;
|
205571
205010
|
createdAt: Date;
|
@@ -205757,7 +205196,7 @@ export declare const mailApiContract: {
|
|
205757
205196
|
sendAt: import("zod").ZodDate;
|
205758
205197
|
starred: import("zod").ZodBoolean;
|
205759
205198
|
seemsLikeNew: import("zod").ZodBoolean;
|
205760
|
-
from: import("zod").
|
205199
|
+
from: import("zod").ZodObject<{
|
205761
205200
|
id: import("zod").ZodString;
|
205762
205201
|
createdAt: import("zod").ZodDate;
|
205763
205202
|
updatedAt: import("zod").ZodDate;
|
@@ -205911,7 +205350,7 @@ export declare const mailApiContract: {
|
|
205911
205350
|
contactId: string;
|
205912
205351
|
isNewContact: boolean;
|
205913
205352
|
};
|
205914
|
-
}
|
205353
|
+
}>;
|
205915
205354
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
205916
205355
|
id: import("zod").ZodString;
|
205917
205356
|
createdAt: import("zod").ZodDate;
|
@@ -206519,7 +205958,7 @@ export declare const mailApiContract: {
|
|
206519
205958
|
contactId: string;
|
206520
205959
|
isNewContact: boolean;
|
206521
205960
|
};
|
206522
|
-
}
|
205961
|
+
};
|
206523
205962
|
to: {
|
206524
205963
|
id: string;
|
206525
205964
|
createdAt: Date;
|
@@ -206687,7 +206126,7 @@ export declare const mailApiContract: {
|
|
206687
206126
|
contactId: string;
|
206688
206127
|
isNewContact: boolean;
|
206689
206128
|
};
|
206690
|
-
}
|
206129
|
+
};
|
206691
206130
|
to: {
|
206692
206131
|
id: string;
|
206693
206132
|
createdAt: Date;
|
@@ -206826,7 +206265,7 @@ export declare const mailApiContract: {
|
|
206826
206265
|
sendAt: import("zod").ZodDate;
|
206827
206266
|
starred: import("zod").ZodBoolean;
|
206828
206267
|
seemsLikeNew: import("zod").ZodBoolean;
|
206829
|
-
from: import("zod").
|
206268
|
+
from: import("zod").ZodObject<{
|
206830
206269
|
id: import("zod").ZodString;
|
206831
206270
|
createdAt: import("zod").ZodDate;
|
206832
206271
|
updatedAt: import("zod").ZodDate;
|
@@ -206980,7 +206419,7 @@ export declare const mailApiContract: {
|
|
206980
206419
|
contactId: string;
|
206981
206420
|
isNewContact: boolean;
|
206982
206421
|
};
|
206983
|
-
}
|
206422
|
+
}>;
|
206984
206423
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
206985
206424
|
id: import("zod").ZodString;
|
206986
206425
|
createdAt: import("zod").ZodDate;
|
@@ -207588,7 +207027,7 @@ export declare const mailApiContract: {
|
|
207588
207027
|
contactId: string;
|
207589
207028
|
isNewContact: boolean;
|
207590
207029
|
};
|
207591
|
-
}
|
207030
|
+
};
|
207592
207031
|
to: {
|
207593
207032
|
id: string;
|
207594
207033
|
createdAt: Date;
|
@@ -207756,7 +207195,7 @@ export declare const mailApiContract: {
|
|
207756
207195
|
contactId: string;
|
207757
207196
|
isNewContact: boolean;
|
207758
207197
|
};
|
207759
|
-
}
|
207198
|
+
};
|
207760
207199
|
to: {
|
207761
207200
|
id: string;
|
207762
207201
|
createdAt: Date;
|
@@ -208541,7 +207980,7 @@ export declare const mailApiContract: {
|
|
208541
207980
|
contactId: string;
|
208542
207981
|
isNewContact: boolean;
|
208543
207982
|
};
|
208544
|
-
}
|
207983
|
+
};
|
208545
207984
|
to: {
|
208546
207985
|
id: string;
|
208547
207986
|
createdAt: Date;
|
@@ -208920,7 +208359,7 @@ export declare const mailApiContract: {
|
|
208920
208359
|
contactId: string;
|
208921
208360
|
isNewContact: boolean;
|
208922
208361
|
};
|
208923
|
-
}
|
208362
|
+
};
|
208924
208363
|
to: {
|
208925
208364
|
id: string;
|
208926
208365
|
createdAt: Date;
|
@@ -209089,7 +208528,7 @@ export declare const mailApiContract: {
|
|
209089
208528
|
contactId: string;
|
209090
208529
|
isNewContact: boolean;
|
209091
208530
|
};
|
209092
|
-
}
|
208531
|
+
};
|
209093
208532
|
to: {
|
209094
208533
|
id: string;
|
209095
208534
|
createdAt: Date;
|
@@ -209258,7 +208697,7 @@ export declare const mailApiContract: {
|
|
209258
208697
|
contactId: string;
|
209259
208698
|
isNewContact: boolean;
|
209260
208699
|
};
|
209261
|
-
}
|
208700
|
+
};
|
209262
208701
|
to: {
|
209263
208702
|
id: string;
|
209264
208703
|
createdAt: Date;
|
@@ -209488,7 +208927,7 @@ export declare const mailApiContract: {
|
|
209488
208927
|
contactId: string;
|
209489
208928
|
isNewContact: boolean;
|
209490
208929
|
};
|
209491
|
-
}
|
208930
|
+
};
|
209492
208931
|
to: {
|
209493
208932
|
id: string;
|
209494
208933
|
createdAt: Date;
|
@@ -209867,7 +209306,7 @@ export declare const mailApiContract: {
|
|
209867
209306
|
contactId: string;
|
209868
209307
|
isNewContact: boolean;
|
209869
209308
|
};
|
209870
|
-
}
|
209309
|
+
};
|
209871
209310
|
to: {
|
209872
209311
|
id: string;
|
209873
209312
|
createdAt: Date;
|
@@ -210036,7 +209475,7 @@ export declare const mailApiContract: {
|
|
210036
209475
|
contactId: string;
|
210037
209476
|
isNewContact: boolean;
|
210038
209477
|
};
|
210039
|
-
}
|
209478
|
+
};
|
210040
209479
|
to: {
|
210041
209480
|
id: string;
|
210042
209481
|
createdAt: Date;
|
@@ -210205,7 +209644,7 @@ export declare const mailApiContract: {
|
|
210205
209644
|
contactId: string;
|
210206
209645
|
isNewContact: boolean;
|
210207
209646
|
};
|
210208
|
-
}
|
209647
|
+
};
|
210209
209648
|
to: {
|
210210
209649
|
id: string;
|
210211
209650
|
createdAt: Date;
|
@@ -210437,7 +209876,7 @@ export declare const mailApiContract: {
|
|
210437
209876
|
contactId: string;
|
210438
209877
|
isNewContact: boolean;
|
210439
209878
|
};
|
210440
|
-
}
|
209879
|
+
};
|
210441
209880
|
to: {
|
210442
209881
|
id: string;
|
210443
209882
|
createdAt: Date;
|
@@ -210816,7 +210255,7 @@ export declare const mailApiContract: {
|
|
210816
210255
|
contactId: string;
|
210817
210256
|
isNewContact: boolean;
|
210818
210257
|
};
|
210819
|
-
}
|
210258
|
+
};
|
210820
210259
|
to: {
|
210821
210260
|
id: string;
|
210822
210261
|
createdAt: Date;
|
@@ -210985,7 +210424,7 @@ export declare const mailApiContract: {
|
|
210985
210424
|
contactId: string;
|
210986
210425
|
isNewContact: boolean;
|
210987
210426
|
};
|
210988
|
-
}
|
210427
|
+
};
|
210989
210428
|
to: {
|
210990
210429
|
id: string;
|
210991
210430
|
createdAt: Date;
|
@@ -211154,7 +210593,7 @@ export declare const mailApiContract: {
|
|
211154
210593
|
contactId: string;
|
211155
210594
|
isNewContact: boolean;
|
211156
210595
|
};
|
211157
|
-
}
|
210596
|
+
};
|
211158
210597
|
to: {
|
211159
210598
|
id: string;
|
211160
210599
|
createdAt: Date;
|
@@ -211387,7 +210826,7 @@ export declare const mailApiContract: {
|
|
211387
210826
|
contactId: string;
|
211388
210827
|
isNewContact: boolean;
|
211389
210828
|
};
|
211390
|
-
}
|
210829
|
+
};
|
211391
210830
|
to: {
|
211392
210831
|
id: string;
|
211393
210832
|
createdAt: Date;
|
@@ -211766,7 +211205,7 @@ export declare const mailApiContract: {
|
|
211766
211205
|
contactId: string;
|
211767
211206
|
isNewContact: boolean;
|
211768
211207
|
};
|
211769
|
-
}
|
211208
|
+
};
|
211770
211209
|
to: {
|
211771
211210
|
id: string;
|
211772
211211
|
createdAt: Date;
|
@@ -211935,7 +211374,7 @@ export declare const mailApiContract: {
|
|
211935
211374
|
contactId: string;
|
211936
211375
|
isNewContact: boolean;
|
211937
211376
|
};
|
211938
|
-
}
|
211377
|
+
};
|
211939
211378
|
to: {
|
211940
211379
|
id: string;
|
211941
211380
|
createdAt: Date;
|
@@ -212104,7 +211543,7 @@ export declare const mailApiContract: {
|
|
212104
211543
|
contactId: string;
|
212105
211544
|
isNewContact: boolean;
|
212106
211545
|
};
|
212107
|
-
}
|
211546
|
+
};
|
212108
211547
|
to: {
|
212109
211548
|
id: string;
|
212110
211549
|
createdAt: Date;
|
@@ -212623,7 +212062,7 @@ export declare const mailApiContract: {
|
|
212623
212062
|
sendAt: import("zod").ZodDate;
|
212624
212063
|
starred: import("zod").ZodBoolean;
|
212625
212064
|
seemsLikeNew: import("zod").ZodBoolean;
|
212626
|
-
from: import("zod").
|
212065
|
+
from: import("zod").ZodObject<{
|
212627
212066
|
id: import("zod").ZodString;
|
212628
212067
|
createdAt: import("zod").ZodDate;
|
212629
212068
|
updatedAt: import("zod").ZodDate;
|
@@ -212777,7 +212216,7 @@ export declare const mailApiContract: {
|
|
212777
212216
|
contactId: string;
|
212778
212217
|
isNewContact: boolean;
|
212779
212218
|
};
|
212780
|
-
}
|
212219
|
+
}>;
|
212781
212220
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
212782
212221
|
id: import("zod").ZodString;
|
212783
212222
|
createdAt: import("zod").ZodDate;
|
@@ -213385,7 +212824,7 @@ export declare const mailApiContract: {
|
|
213385
212824
|
contactId: string;
|
213386
212825
|
isNewContact: boolean;
|
213387
212826
|
};
|
213388
|
-
}
|
212827
|
+
};
|
213389
212828
|
to: {
|
213390
212829
|
id: string;
|
213391
212830
|
createdAt: Date;
|
@@ -213553,7 +212992,7 @@ export declare const mailApiContract: {
|
|
213553
212992
|
contactId: string;
|
213554
212993
|
isNewContact: boolean;
|
213555
212994
|
};
|
213556
|
-
}
|
212995
|
+
};
|
213557
212996
|
to: {
|
213558
212997
|
id: string;
|
213559
212998
|
createdAt: Date;
|
@@ -213723,7 +213162,7 @@ export declare const mailApiContract: {
|
|
213723
213162
|
contactId: string;
|
213724
213163
|
isNewContact: boolean;
|
213725
213164
|
};
|
213726
|
-
}
|
213165
|
+
};
|
213727
213166
|
to: {
|
213728
213167
|
id: string;
|
213729
213168
|
createdAt: Date;
|
@@ -213894,7 +213333,7 @@ export declare const mailApiContract: {
|
|
213894
213333
|
contactId: string;
|
213895
213334
|
isNewContact: boolean;
|
213896
213335
|
};
|
213897
|
-
}
|
213336
|
+
};
|
213898
213337
|
to: {
|
213899
213338
|
id: string;
|
213900
213339
|
createdAt: Date;
|
@@ -214039,7 +213478,7 @@ export declare const mailApiContract: {
|
|
214039
213478
|
sendAt: import("zod").ZodOptional<import("zod").ZodDate>;
|
214040
213479
|
starred: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
214041
213480
|
seemsLikeNew: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
214042
|
-
from: import("zod").ZodOptional<import("zod").
|
213481
|
+
from: import("zod").ZodOptional<import("zod").ZodObject<{
|
214043
213482
|
id: import("zod").ZodString;
|
214044
213483
|
createdAt: import("zod").ZodDate;
|
214045
213484
|
updatedAt: import("zod").ZodDate;
|
@@ -214193,7 +213632,7 @@ export declare const mailApiContract: {
|
|
214193
213632
|
contactId: string;
|
214194
213633
|
isNewContact: boolean;
|
214195
213634
|
};
|
214196
|
-
}
|
213635
|
+
}>>;
|
214197
213636
|
to: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
214198
213637
|
id: import("zod").ZodString;
|
214199
213638
|
createdAt: import("zod").ZodDate;
|
@@ -214801,7 +214240,7 @@ export declare const mailApiContract: {
|
|
214801
214240
|
contactId: string;
|
214802
214241
|
isNewContact: boolean;
|
214803
214242
|
};
|
214804
|
-
}
|
214243
|
+
} | undefined;
|
214805
214244
|
to?: {
|
214806
214245
|
id: string;
|
214807
214246
|
createdAt: Date;
|
@@ -214969,7 +214408,7 @@ export declare const mailApiContract: {
|
|
214969
214408
|
contactId: string;
|
214970
214409
|
isNewContact: boolean;
|
214971
214410
|
};
|
214972
|
-
}
|
214411
|
+
} | undefined;
|
214973
214412
|
to?: {
|
214974
214413
|
id: string;
|
214975
214414
|
createdAt: Date;
|
@@ -215150,7 +214589,7 @@ export declare const mailApiContract: {
|
|
215150
214589
|
sendAt: import("zod").ZodDate;
|
215151
214590
|
starred: import("zod").ZodBoolean;
|
215152
214591
|
seemsLikeNew: import("zod").ZodBoolean;
|
215153
|
-
from: import("zod").
|
214592
|
+
from: import("zod").ZodObject<{
|
215154
214593
|
id: import("zod").ZodString;
|
215155
214594
|
createdAt: import("zod").ZodDate;
|
215156
214595
|
updatedAt: import("zod").ZodDate;
|
@@ -215304,7 +214743,7 @@ export declare const mailApiContract: {
|
|
215304
214743
|
contactId: string;
|
215305
214744
|
isNewContact: boolean;
|
215306
214745
|
};
|
215307
|
-
}
|
214746
|
+
}>;
|
215308
214747
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
215309
214748
|
id: import("zod").ZodString;
|
215310
214749
|
createdAt: import("zod").ZodDate;
|
@@ -215912,7 +215351,7 @@ export declare const mailApiContract: {
|
|
215912
215351
|
contactId: string;
|
215913
215352
|
isNewContact: boolean;
|
215914
215353
|
};
|
215915
|
-
}
|
215354
|
+
};
|
215916
215355
|
to: {
|
215917
215356
|
id: string;
|
215918
215357
|
createdAt: Date;
|
@@ -216080,7 +215519,7 @@ export declare const mailApiContract: {
|
|
216080
215519
|
contactId: string;
|
216081
215520
|
isNewContact: boolean;
|
216082
215521
|
};
|
216083
|
-
}
|
215522
|
+
};
|
216084
215523
|
to: {
|
216085
215524
|
id: string;
|
216086
215525
|
createdAt: Date;
|
@@ -216250,7 +215689,7 @@ export declare const mailApiContract: {
|
|
216250
215689
|
contactId: string;
|
216251
215690
|
isNewContact: boolean;
|
216252
215691
|
};
|
216253
|
-
}
|
215692
|
+
};
|
216254
215693
|
to: {
|
216255
215694
|
id: string;
|
216256
215695
|
createdAt: Date;
|
@@ -216421,7 +215860,7 @@ export declare const mailApiContract: {
|
|
216421
215860
|
contactId: string;
|
216422
215861
|
isNewContact: boolean;
|
216423
215862
|
};
|
216424
|
-
}
|
215863
|
+
};
|
216425
215864
|
to: {
|
216426
215865
|
id: string;
|
216427
215866
|
createdAt: Date;
|
@@ -216609,7 +216048,7 @@ export declare const mailApiContract: {
|
|
216609
216048
|
sendAt: import("zod").ZodDate;
|
216610
216049
|
starred: import("zod").ZodBoolean;
|
216611
216050
|
seemsLikeNew: import("zod").ZodBoolean;
|
216612
|
-
from: import("zod").
|
216051
|
+
from: import("zod").ZodObject<{
|
216613
216052
|
id: import("zod").ZodString;
|
216614
216053
|
createdAt: import("zod").ZodDate;
|
216615
216054
|
updatedAt: import("zod").ZodDate;
|
@@ -216763,7 +216202,7 @@ export declare const mailApiContract: {
|
|
216763
216202
|
contactId: string;
|
216764
216203
|
isNewContact: boolean;
|
216765
216204
|
};
|
216766
|
-
}
|
216205
|
+
}>;
|
216767
216206
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
216768
216207
|
id: import("zod").ZodString;
|
216769
216208
|
createdAt: import("zod").ZodDate;
|
@@ -217371,7 +216810,7 @@ export declare const mailApiContract: {
|
|
217371
216810
|
contactId: string;
|
217372
216811
|
isNewContact: boolean;
|
217373
216812
|
};
|
217374
|
-
}
|
216813
|
+
};
|
217375
216814
|
to: {
|
217376
216815
|
id: string;
|
217377
216816
|
createdAt: Date;
|
@@ -217539,7 +216978,7 @@ export declare const mailApiContract: {
|
|
217539
216978
|
contactId: string;
|
217540
216979
|
isNewContact: boolean;
|
217541
216980
|
};
|
217542
|
-
}
|
216981
|
+
};
|
217543
216982
|
to: {
|
217544
216983
|
id: string;
|
217545
216984
|
createdAt: Date;
|
@@ -217709,7 +217148,7 @@ export declare const mailApiContract: {
|
|
217709
217148
|
contactId: string;
|
217710
217149
|
isNewContact: boolean;
|
217711
217150
|
};
|
217712
|
-
}
|
217151
|
+
};
|
217713
217152
|
to: {
|
217714
217153
|
id: string;
|
217715
217154
|
createdAt: Date;
|
@@ -217880,7 +217319,7 @@ export declare const mailApiContract: {
|
|
217880
217319
|
contactId: string;
|
217881
217320
|
isNewContact: boolean;
|
217882
217321
|
};
|
217883
|
-
}
|
217322
|
+
};
|
217884
217323
|
to: {
|
217885
217324
|
id: string;
|
217886
217325
|
createdAt: Date;
|
@@ -218068,7 +217507,7 @@ export declare const mailApiContract: {
|
|
218068
217507
|
sendAt: import("zod").ZodDate;
|
218069
217508
|
starred: import("zod").ZodBoolean;
|
218070
217509
|
seemsLikeNew: import("zod").ZodBoolean;
|
218071
|
-
from: import("zod").
|
217510
|
+
from: import("zod").ZodObject<{
|
218072
217511
|
id: import("zod").ZodString;
|
218073
217512
|
createdAt: import("zod").ZodDate;
|
218074
217513
|
updatedAt: import("zod").ZodDate;
|
@@ -218222,7 +217661,7 @@ export declare const mailApiContract: {
|
|
218222
217661
|
contactId: string;
|
218223
217662
|
isNewContact: boolean;
|
218224
217663
|
};
|
218225
|
-
}
|
217664
|
+
}>;
|
218226
217665
|
to: import("zod").ZodArray<import("zod").ZodObject<{
|
218227
217666
|
id: import("zod").ZodString;
|
218228
217667
|
createdAt: import("zod").ZodDate;
|
@@ -218830,7 +218269,7 @@ export declare const mailApiContract: {
|
|
218830
218269
|
contactId: string;
|
218831
218270
|
isNewContact: boolean;
|
218832
218271
|
};
|
218833
|
-
}
|
218272
|
+
};
|
218834
218273
|
to: {
|
218835
218274
|
id: string;
|
218836
218275
|
createdAt: Date;
|
@@ -218998,7 +218437,7 @@ export declare const mailApiContract: {
|
|
218998
218437
|
contactId: string;
|
218999
218438
|
isNewContact: boolean;
|
219000
218439
|
};
|
219001
|
-
}
|
218440
|
+
};
|
219002
218441
|
to: {
|
219003
218442
|
id: string;
|
219004
218443
|
createdAt: Date;
|
@@ -219168,7 +218607,7 @@ export declare const mailApiContract: {
|
|
219168
218607
|
contactId: string;
|
219169
218608
|
isNewContact: boolean;
|
219170
218609
|
};
|
219171
|
-
}
|
218610
|
+
};
|
219172
218611
|
to: {
|
219173
218612
|
id: string;
|
219174
218613
|
createdAt: Date;
|
@@ -219339,7 +218778,7 @@ export declare const mailApiContract: {
|
|
219339
218778
|
contactId: string;
|
219340
218779
|
isNewContact: boolean;
|
219341
218780
|
};
|
219342
|
-
}
|
218781
|
+
};
|
219343
218782
|
to: {
|
219344
218783
|
id: string;
|
219345
218784
|
createdAt: Date;
|