@kl1/contracts 1.0.81 → 1.0.83
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 +131 -21
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +131 -21
- package/dist/index.mjs.map +1 -1
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- package/dist/src/chat/index.d.ts +64 -1
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +13 -0
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +2031 -812
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +5 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +3 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +269 -91
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +1527 -352
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/line/validation.d.ts +564 -6
- package/dist/src/line/validation.d.ts.map +1 -1
- package/dist/src/mail/mail-server.d.ts +216 -0
- package/dist/src/mail/mail-server.d.ts.map +1 -0
- package/dist/src/notification/index.d.ts +514 -715
- package/dist/src/notification/index.d.ts.map +1 -1
- package/dist/src/notification/validation.d.ts +421 -608
- package/dist/src/notification/validation.d.ts.map +1 -1
- package/dist/src/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- package/package.json +1 -1
@@ -21,43 +21,50 @@ export declare const userNotificationContract: {
|
|
21
21
|
pageSize?: number | undefined;
|
22
22
|
}>;
|
23
23
|
responses: {
|
24
|
-
|
24
|
+
200: z.ZodObject<{
|
25
25
|
requestId: z.ZodString;
|
26
26
|
data: z.ZodObject<{
|
27
27
|
notificationCount: z.ZodNumber;
|
28
|
-
notifications: z.ZodObject<{
|
29
|
-
|
28
|
+
notifications: z.ZodArray<z.ZodObject<{
|
29
|
+
id: z.ZodString;
|
30
|
+
createdAt: z.ZodDate;
|
31
|
+
updatedAt: z.ZodDate;
|
32
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
33
|
+
notificationObjectId: z.ZodString;
|
34
|
+
notifierId: z.ZodString;
|
35
|
+
notificationObject: z.ZodObject<{
|
30
36
|
id: z.ZodString;
|
31
37
|
createdAt: z.ZodDate;
|
32
38
|
updatedAt: z.ZodDate;
|
33
39
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
34
|
-
|
35
|
-
|
36
|
-
notificationObject: z.ZodObject<{
|
40
|
+
data: z.ZodString;
|
41
|
+
notificationChange: z.ZodObject<{
|
37
42
|
id: z.ZodString;
|
38
43
|
createdAt: z.ZodDate;
|
39
44
|
updatedAt: z.ZodDate;
|
40
45
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
41
|
-
|
42
|
-
|
46
|
+
actorId: z.ZodString;
|
47
|
+
actor: z.ZodObject<{
|
43
48
|
id: z.ZodString;
|
44
49
|
createdAt: z.ZodDate;
|
45
50
|
updatedAt: z.ZodDate;
|
46
51
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
47
|
-
|
48
|
-
|
52
|
+
name: z.ZodString;
|
53
|
+
email: z.ZodString;
|
54
|
+
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
55
|
+
password: z.ZodString;
|
56
|
+
address: z.ZodNullable<z.ZodString>;
|
57
|
+
phone: z.ZodNullable<z.ZodString>;
|
58
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
59
|
+
roles: z.ZodArray<z.ZodObject<{
|
49
60
|
id: z.ZodString;
|
50
61
|
createdAt: z.ZodDate;
|
51
62
|
updatedAt: z.ZodDate;
|
52
63
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
address: z.ZodNullable<z.ZodString>;
|
58
|
-
phone: z.ZodNullable<z.ZodString>;
|
59
|
-
notificationCount: z.ZodNullable<z.ZodNumber>;
|
60
|
-
roles: z.ZodArray<z.ZodObject<{
|
64
|
+
systemName: z.ZodString;
|
65
|
+
displayName: z.ZodString;
|
66
|
+
description: z.ZodNullable<z.ZodString>;
|
67
|
+
permissions: z.ZodArray<z.ZodObject<{
|
61
68
|
id: z.ZodString;
|
62
69
|
createdAt: z.ZodDate;
|
63
70
|
updatedAt: z.ZodDate;
|
@@ -65,31 +72,6 @@ export declare const userNotificationContract: {
|
|
65
72
|
systemName: z.ZodString;
|
66
73
|
displayName: z.ZodString;
|
67
74
|
description: z.ZodNullable<z.ZodString>;
|
68
|
-
permissions: z.ZodArray<z.ZodObject<{
|
69
|
-
id: z.ZodString;
|
70
|
-
createdAt: z.ZodDate;
|
71
|
-
updatedAt: z.ZodDate;
|
72
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
73
|
-
systemName: z.ZodString;
|
74
|
-
displayName: z.ZodString;
|
75
|
-
description: z.ZodNullable<z.ZodString>;
|
76
|
-
}, "strip", z.ZodTypeAny, {
|
77
|
-
id: string;
|
78
|
-
description: string | null;
|
79
|
-
createdAt: Date;
|
80
|
-
updatedAt: Date;
|
81
|
-
deletedAt: Date | null;
|
82
|
-
systemName: string;
|
83
|
-
displayName: string;
|
84
|
-
}, {
|
85
|
-
id: string;
|
86
|
-
description: string | null;
|
87
|
-
createdAt: Date;
|
88
|
-
updatedAt: Date;
|
89
|
-
deletedAt: Date | null;
|
90
|
-
systemName: string;
|
91
|
-
displayName: string;
|
92
|
-
}>, "many">;
|
93
75
|
}, "strip", z.ZodTypeAny, {
|
94
76
|
id: string;
|
95
77
|
description: string | null;
|
@@ -98,15 +80,6 @@ export declare const userNotificationContract: {
|
|
98
80
|
deletedAt: Date | null;
|
99
81
|
systemName: string;
|
100
82
|
displayName: string;
|
101
|
-
permissions: {
|
102
|
-
id: string;
|
103
|
-
description: string | null;
|
104
|
-
createdAt: Date;
|
105
|
-
updatedAt: Date;
|
106
|
-
deletedAt: Date | null;
|
107
|
-
systemName: string;
|
108
|
-
displayName: string;
|
109
|
-
}[];
|
110
83
|
}, {
|
111
84
|
id: string;
|
112
85
|
description: string | null;
|
@@ -115,66 +88,16 @@ export declare const userNotificationContract: {
|
|
115
88
|
deletedAt: Date | null;
|
116
89
|
systemName: string;
|
117
90
|
displayName: string;
|
118
|
-
permissions: {
|
119
|
-
id: string;
|
120
|
-
description: string | null;
|
121
|
-
createdAt: Date;
|
122
|
-
updatedAt: Date;
|
123
|
-
deletedAt: Date | null;
|
124
|
-
systemName: string;
|
125
|
-
displayName: string;
|
126
|
-
}[];
|
127
91
|
}>, "many">;
|
128
|
-
extension: z.ZodObject<{
|
129
|
-
id: z.ZodString;
|
130
|
-
createdAt: z.ZodDate;
|
131
|
-
updatedAt: z.ZodDate;
|
132
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
133
|
-
userId: z.ZodNullable<z.ZodString>;
|
134
|
-
sipServerUrl: z.ZodString;
|
135
|
-
sipUserName: z.ZodString;
|
136
|
-
webphoneLoginUser: z.ZodString;
|
137
|
-
extensionId: z.ZodNullable<z.ZodString>;
|
138
|
-
extensionName: z.ZodString;
|
139
|
-
telephonySignature: z.ZodNullable<z.ZodString>;
|
140
|
-
}, "strip", z.ZodTypeAny, {
|
141
|
-
id: string;
|
142
|
-
createdAt: Date;
|
143
|
-
updatedAt: Date;
|
144
|
-
deletedAt: Date | null;
|
145
|
-
userId: string | null;
|
146
|
-
sipServerUrl: string;
|
147
|
-
sipUserName: string;
|
148
|
-
webphoneLoginUser: string;
|
149
|
-
extensionId: string | null;
|
150
|
-
extensionName: string;
|
151
|
-
telephonySignature: string | null;
|
152
|
-
}, {
|
153
|
-
id: string;
|
154
|
-
createdAt: Date;
|
155
|
-
updatedAt: Date;
|
156
|
-
deletedAt: Date | null;
|
157
|
-
userId: string | null;
|
158
|
-
sipServerUrl: string;
|
159
|
-
sipUserName: string;
|
160
|
-
webphoneLoginUser: string;
|
161
|
-
extensionId: string | null;
|
162
|
-
extensionName: string;
|
163
|
-
telephonySignature: string | null;
|
164
|
-
}>;
|
165
92
|
}, "strip", z.ZodTypeAny, {
|
166
93
|
id: string;
|
167
|
-
|
168
|
-
name: string;
|
169
|
-
email: string;
|
94
|
+
description: string | null;
|
170
95
|
createdAt: Date;
|
171
96
|
updatedAt: Date;
|
172
97
|
deletedAt: Date | null;
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
notificationCount: number | null;
|
177
|
-
roles: {
|
98
|
+
systemName: string;
|
99
|
+
displayName: string;
|
100
|
+
permissions: {
|
178
101
|
id: string;
|
179
102
|
description: string | null;
|
180
103
|
createdAt: Date;
|
@@ -182,42 +105,16 @@ export declare const userNotificationContract: {
|
|
182
105
|
deletedAt: Date | null;
|
183
106
|
systemName: string;
|
184
107
|
displayName: string;
|
185
|
-
permissions: {
|
186
|
-
id: string;
|
187
|
-
description: string | null;
|
188
|
-
createdAt: Date;
|
189
|
-
updatedAt: Date;
|
190
|
-
deletedAt: Date | null;
|
191
|
-
systemName: string;
|
192
|
-
displayName: string;
|
193
|
-
}[];
|
194
108
|
}[];
|
195
|
-
extension: {
|
196
|
-
id: string;
|
197
|
-
createdAt: Date;
|
198
|
-
updatedAt: Date;
|
199
|
-
deletedAt: Date | null;
|
200
|
-
userId: string | null;
|
201
|
-
sipServerUrl: string;
|
202
|
-
sipUserName: string;
|
203
|
-
webphoneLoginUser: string;
|
204
|
-
extensionId: string | null;
|
205
|
-
extensionName: string;
|
206
|
-
telephonySignature: string | null;
|
207
|
-
};
|
208
109
|
}, {
|
209
110
|
id: string;
|
210
|
-
|
211
|
-
name: string;
|
212
|
-
email: string;
|
111
|
+
description: string | null;
|
213
112
|
createdAt: Date;
|
214
113
|
updatedAt: Date;
|
215
114
|
deletedAt: Date | null;
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
notificationCount: number | null;
|
220
|
-
roles: {
|
115
|
+
systemName: string;
|
116
|
+
displayName: string;
|
117
|
+
permissions: {
|
221
118
|
id: string;
|
222
119
|
description: string | null;
|
223
120
|
createdAt: Date;
|
@@ -225,50 +122,66 @@ export declare const userNotificationContract: {
|
|
225
122
|
deletedAt: Date | null;
|
226
123
|
systemName: string;
|
227
124
|
displayName: string;
|
228
|
-
permissions: {
|
229
|
-
id: string;
|
230
|
-
description: string | null;
|
231
|
-
createdAt: Date;
|
232
|
-
updatedAt: Date;
|
233
|
-
deletedAt: Date | null;
|
234
|
-
systemName: string;
|
235
|
-
displayName: string;
|
236
|
-
}[];
|
237
125
|
}[];
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
126
|
+
}>, "many">;
|
127
|
+
extension: z.ZodObject<{
|
128
|
+
id: z.ZodString;
|
129
|
+
createdAt: z.ZodDate;
|
130
|
+
updatedAt: z.ZodDate;
|
131
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
132
|
+
userId: z.ZodNullable<z.ZodString>;
|
133
|
+
sipServerUrl: z.ZodString;
|
134
|
+
sipUserName: z.ZodString;
|
135
|
+
webphoneLoginUser: z.ZodString;
|
136
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
137
|
+
extensionName: z.ZodString;
|
138
|
+
telephonySignature: z.ZodNullable<z.ZodString>;
|
139
|
+
}, "strip", z.ZodTypeAny, {
|
140
|
+
id: string;
|
141
|
+
createdAt: Date;
|
142
|
+
updatedAt: Date;
|
143
|
+
deletedAt: Date | null;
|
144
|
+
userId: string | null;
|
145
|
+
sipServerUrl: string;
|
146
|
+
sipUserName: string;
|
147
|
+
webphoneLoginUser: string;
|
148
|
+
extensionId: string | null;
|
149
|
+
extensionName: string;
|
150
|
+
telephonySignature: string | null;
|
151
|
+
}, {
|
152
|
+
id: string;
|
153
|
+
createdAt: Date;
|
154
|
+
updatedAt: Date;
|
155
|
+
deletedAt: Date | null;
|
156
|
+
userId: string | null;
|
157
|
+
sipServerUrl: string;
|
158
|
+
sipUserName: string;
|
159
|
+
webphoneLoginUser: string;
|
160
|
+
extensionId: string | null;
|
161
|
+
extensionName: string;
|
162
|
+
telephonySignature: string | null;
|
251
163
|
}>;
|
252
|
-
notificationObjectId: z.ZodString;
|
253
|
-
readAt: z.ZodDate;
|
254
164
|
}, "strip", z.ZodTypeAny, {
|
255
165
|
id: string;
|
166
|
+
address: string | null;
|
167
|
+
name: string;
|
168
|
+
email: string;
|
256
169
|
createdAt: Date;
|
257
170
|
updatedAt: Date;
|
258
171
|
deletedAt: Date | null;
|
259
|
-
|
172
|
+
emailVerifiedAt: Date | null;
|
173
|
+
password: string;
|
174
|
+
phone: string | null;
|
175
|
+
notificationCount: number | null;
|
176
|
+
roles: {
|
260
177
|
id: string;
|
261
|
-
|
262
|
-
name: string;
|
263
|
-
email: string;
|
178
|
+
description: string | null;
|
264
179
|
createdAt: Date;
|
265
180
|
updatedAt: Date;
|
266
181
|
deletedAt: Date | null;
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
notificationCount: number | null;
|
271
|
-
roles: {
|
182
|
+
systemName: string;
|
183
|
+
displayName: string;
|
184
|
+
permissions: {
|
272
185
|
id: string;
|
273
186
|
description: string | null;
|
274
187
|
createdAt: Date;
|
@@ -276,51 +189,42 @@ export declare const userNotificationContract: {
|
|
276
189
|
deletedAt: Date | null;
|
277
190
|
systemName: string;
|
278
191
|
displayName: string;
|
279
|
-
permissions: {
|
280
|
-
id: string;
|
281
|
-
description: string | null;
|
282
|
-
createdAt: Date;
|
283
|
-
updatedAt: Date;
|
284
|
-
deletedAt: Date | null;
|
285
|
-
systemName: string;
|
286
|
-
displayName: string;
|
287
|
-
}[];
|
288
192
|
}[];
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
193
|
+
}[];
|
194
|
+
extension: {
|
195
|
+
id: string;
|
196
|
+
createdAt: Date;
|
197
|
+
updatedAt: Date;
|
198
|
+
deletedAt: Date | null;
|
199
|
+
userId: string | null;
|
200
|
+
sipServerUrl: string;
|
201
|
+
sipUserName: string;
|
202
|
+
webphoneLoginUser: string;
|
203
|
+
extensionId: string | null;
|
204
|
+
extensionName: string;
|
205
|
+
telephonySignature: string | null;
|
302
206
|
};
|
303
|
-
readAt: Date;
|
304
|
-
actorId: string;
|
305
|
-
notificationObjectId: string;
|
306
207
|
}, {
|
307
208
|
id: string;
|
209
|
+
address: string | null;
|
210
|
+
name: string;
|
211
|
+
email: string;
|
308
212
|
createdAt: Date;
|
309
213
|
updatedAt: Date;
|
310
214
|
deletedAt: Date | null;
|
311
|
-
|
215
|
+
emailVerifiedAt: Date | null;
|
216
|
+
password: string;
|
217
|
+
phone: string | null;
|
218
|
+
notificationCount: number | null;
|
219
|
+
roles: {
|
312
220
|
id: string;
|
313
|
-
|
314
|
-
name: string;
|
315
|
-
email: string;
|
221
|
+
description: string | null;
|
316
222
|
createdAt: Date;
|
317
223
|
updatedAt: Date;
|
318
224
|
deletedAt: Date | null;
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
notificationCount: number | null;
|
323
|
-
roles: {
|
225
|
+
systemName: string;
|
226
|
+
displayName: string;
|
227
|
+
permissions: {
|
324
228
|
id: string;
|
325
229
|
description: string | null;
|
326
230
|
createdAt: Date;
|
@@ -328,58 +232,50 @@ export declare const userNotificationContract: {
|
|
328
232
|
deletedAt: Date | null;
|
329
233
|
systemName: string;
|
330
234
|
displayName: string;
|
331
|
-
permissions: {
|
332
|
-
id: string;
|
333
|
-
description: string | null;
|
334
|
-
createdAt: Date;
|
335
|
-
updatedAt: Date;
|
336
|
-
deletedAt: Date | null;
|
337
|
-
systemName: string;
|
338
|
-
displayName: string;
|
339
|
-
}[];
|
340
235
|
}[];
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
236
|
+
}[];
|
237
|
+
extension: {
|
238
|
+
id: string;
|
239
|
+
createdAt: Date;
|
240
|
+
updatedAt: Date;
|
241
|
+
deletedAt: Date | null;
|
242
|
+
userId: string | null;
|
243
|
+
sipServerUrl: string;
|
244
|
+
sipUserName: string;
|
245
|
+
webphoneLoginUser: string;
|
246
|
+
extensionId: string | null;
|
247
|
+
extensionName: string;
|
248
|
+
telephonySignature: string | null;
|
354
249
|
};
|
355
|
-
readAt: Date;
|
356
|
-
actorId: string;
|
357
|
-
notificationObjectId: string;
|
358
250
|
}>;
|
251
|
+
notificationObjectId: z.ZodString;
|
252
|
+
readAt: z.ZodDate;
|
359
253
|
}, "strip", z.ZodTypeAny, {
|
360
|
-
data: string;
|
361
254
|
id: string;
|
362
255
|
createdAt: Date;
|
363
256
|
updatedAt: Date;
|
364
257
|
deletedAt: Date | null;
|
365
|
-
|
258
|
+
actor: {
|
366
259
|
id: string;
|
260
|
+
address: string | null;
|
261
|
+
name: string;
|
262
|
+
email: string;
|
367
263
|
createdAt: Date;
|
368
264
|
updatedAt: Date;
|
369
265
|
deletedAt: Date | null;
|
370
|
-
|
266
|
+
emailVerifiedAt: Date | null;
|
267
|
+
password: string;
|
268
|
+
phone: string | null;
|
269
|
+
notificationCount: number | null;
|
270
|
+
roles: {
|
371
271
|
id: string;
|
372
|
-
|
373
|
-
name: string;
|
374
|
-
email: string;
|
272
|
+
description: string | null;
|
375
273
|
createdAt: Date;
|
376
274
|
updatedAt: Date;
|
377
275
|
deletedAt: Date | null;
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
notificationCount: number | null;
|
382
|
-
roles: {
|
276
|
+
systemName: string;
|
277
|
+
displayName: string;
|
278
|
+
permissions: {
|
383
279
|
id: string;
|
384
280
|
description: string | null;
|
385
281
|
createdAt: Date;
|
@@ -387,58 +283,51 @@ export declare const userNotificationContract: {
|
|
387
283
|
deletedAt: Date | null;
|
388
284
|
systemName: string;
|
389
285
|
displayName: string;
|
390
|
-
permissions: {
|
391
|
-
id: string;
|
392
|
-
description: string | null;
|
393
|
-
createdAt: Date;
|
394
|
-
updatedAt: Date;
|
395
|
-
deletedAt: Date | null;
|
396
|
-
systemName: string;
|
397
|
-
displayName: string;
|
398
|
-
}[];
|
399
286
|
}[];
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
287
|
+
}[];
|
288
|
+
extension: {
|
289
|
+
id: string;
|
290
|
+
createdAt: Date;
|
291
|
+
updatedAt: Date;
|
292
|
+
deletedAt: Date | null;
|
293
|
+
userId: string | null;
|
294
|
+
sipServerUrl: string;
|
295
|
+
sipUserName: string;
|
296
|
+
webphoneLoginUser: string;
|
297
|
+
extensionId: string | null;
|
298
|
+
extensionName: string;
|
299
|
+
telephonySignature: string | null;
|
413
300
|
};
|
414
|
-
readAt: Date;
|
415
|
-
actorId: string;
|
416
|
-
notificationObjectId: string;
|
417
301
|
};
|
302
|
+
readAt: Date;
|
303
|
+
actorId: string;
|
304
|
+
notificationObjectId: string;
|
418
305
|
}, {
|
419
|
-
data: string;
|
420
306
|
id: string;
|
421
307
|
createdAt: Date;
|
422
308
|
updatedAt: Date;
|
423
309
|
deletedAt: Date | null;
|
424
|
-
|
310
|
+
actor: {
|
425
311
|
id: string;
|
312
|
+
address: string | null;
|
313
|
+
name: string;
|
314
|
+
email: string;
|
426
315
|
createdAt: Date;
|
427
316
|
updatedAt: Date;
|
428
317
|
deletedAt: Date | null;
|
429
|
-
|
318
|
+
emailVerifiedAt: Date | null;
|
319
|
+
password: string;
|
320
|
+
phone: string | null;
|
321
|
+
notificationCount: number | null;
|
322
|
+
roles: {
|
430
323
|
id: string;
|
431
|
-
|
432
|
-
name: string;
|
433
|
-
email: string;
|
324
|
+
description: string | null;
|
434
325
|
createdAt: Date;
|
435
326
|
updatedAt: Date;
|
436
327
|
deletedAt: Date | null;
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
notificationCount: number | null;
|
441
|
-
roles: {
|
328
|
+
systemName: string;
|
329
|
+
displayName: string;
|
330
|
+
permissions: {
|
442
331
|
id: string;
|
443
332
|
description: string | null;
|
444
333
|
createdAt: Date;
|
@@ -446,68 +335,58 @@ export declare const userNotificationContract: {
|
|
446
335
|
deletedAt: Date | null;
|
447
336
|
systemName: string;
|
448
337
|
displayName: string;
|
449
|
-
permissions: {
|
450
|
-
id: string;
|
451
|
-
description: string | null;
|
452
|
-
createdAt: Date;
|
453
|
-
updatedAt: Date;
|
454
|
-
deletedAt: Date | null;
|
455
|
-
systemName: string;
|
456
|
-
displayName: string;
|
457
|
-
}[];
|
458
338
|
}[];
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
339
|
+
}[];
|
340
|
+
extension: {
|
341
|
+
id: string;
|
342
|
+
createdAt: Date;
|
343
|
+
updatedAt: Date;
|
344
|
+
deletedAt: Date | null;
|
345
|
+
userId: string | null;
|
346
|
+
sipServerUrl: string;
|
347
|
+
sipUserName: string;
|
348
|
+
webphoneLoginUser: string;
|
349
|
+
extensionId: string | null;
|
350
|
+
extensionName: string;
|
351
|
+
telephonySignature: string | null;
|
472
352
|
};
|
473
|
-
readAt: Date;
|
474
|
-
actorId: string;
|
475
|
-
notificationObjectId: string;
|
476
353
|
};
|
354
|
+
readAt: Date;
|
355
|
+
actorId: string;
|
356
|
+
notificationObjectId: string;
|
477
357
|
}>;
|
478
|
-
readAt: z.ZodDate;
|
479
358
|
}, "strip", z.ZodTypeAny, {
|
359
|
+
data: string;
|
480
360
|
id: string;
|
481
361
|
createdAt: Date;
|
482
362
|
updatedAt: Date;
|
483
363
|
deletedAt: Date | null;
|
484
|
-
|
485
|
-
notificationObjectId: string;
|
486
|
-
notifierId: string;
|
487
|
-
notificationObject: {
|
488
|
-
data: string;
|
364
|
+
notificationChange: {
|
489
365
|
id: string;
|
490
366
|
createdAt: Date;
|
491
367
|
updatedAt: Date;
|
492
368
|
deletedAt: Date | null;
|
493
|
-
|
369
|
+
actor: {
|
494
370
|
id: string;
|
371
|
+
address: string | null;
|
372
|
+
name: string;
|
373
|
+
email: string;
|
495
374
|
createdAt: Date;
|
496
375
|
updatedAt: Date;
|
497
376
|
deletedAt: Date | null;
|
498
|
-
|
377
|
+
emailVerifiedAt: Date | null;
|
378
|
+
password: string;
|
379
|
+
phone: string | null;
|
380
|
+
notificationCount: number | null;
|
381
|
+
roles: {
|
499
382
|
id: string;
|
500
|
-
|
501
|
-
name: string;
|
502
|
-
email: string;
|
383
|
+
description: string | null;
|
503
384
|
createdAt: Date;
|
504
385
|
updatedAt: Date;
|
505
386
|
deletedAt: Date | null;
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
notificationCount: number | null;
|
510
|
-
roles: {
|
387
|
+
systemName: string;
|
388
|
+
displayName: string;
|
389
|
+
permissions: {
|
511
390
|
id: string;
|
512
391
|
description: string | null;
|
513
392
|
createdAt: Date;
|
@@ -515,67 +394,58 @@ export declare const userNotificationContract: {
|
|
515
394
|
deletedAt: Date | null;
|
516
395
|
systemName: string;
|
517
396
|
displayName: string;
|
518
|
-
permissions: {
|
519
|
-
id: string;
|
520
|
-
description: string | null;
|
521
|
-
createdAt: Date;
|
522
|
-
updatedAt: Date;
|
523
|
-
deletedAt: Date | null;
|
524
|
-
systemName: string;
|
525
|
-
displayName: string;
|
526
|
-
}[];
|
527
397
|
}[];
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
398
|
+
}[];
|
399
|
+
extension: {
|
400
|
+
id: string;
|
401
|
+
createdAt: Date;
|
402
|
+
updatedAt: Date;
|
403
|
+
deletedAt: Date | null;
|
404
|
+
userId: string | null;
|
405
|
+
sipServerUrl: string;
|
406
|
+
sipUserName: string;
|
407
|
+
webphoneLoginUser: string;
|
408
|
+
extensionId: string | null;
|
409
|
+
extensionName: string;
|
410
|
+
telephonySignature: string | null;
|
541
411
|
};
|
542
|
-
readAt: Date;
|
543
|
-
actorId: string;
|
544
|
-
notificationObjectId: string;
|
545
412
|
};
|
413
|
+
readAt: Date;
|
414
|
+
actorId: string;
|
415
|
+
notificationObjectId: string;
|
546
416
|
};
|
547
417
|
}, {
|
418
|
+
data: string;
|
548
419
|
id: string;
|
549
420
|
createdAt: Date;
|
550
421
|
updatedAt: Date;
|
551
422
|
deletedAt: Date | null;
|
552
|
-
|
553
|
-
notificationObjectId: string;
|
554
|
-
notifierId: string;
|
555
|
-
notificationObject: {
|
556
|
-
data: string;
|
423
|
+
notificationChange: {
|
557
424
|
id: string;
|
558
425
|
createdAt: Date;
|
559
426
|
updatedAt: Date;
|
560
427
|
deletedAt: Date | null;
|
561
|
-
|
428
|
+
actor: {
|
562
429
|
id: string;
|
430
|
+
address: string | null;
|
431
|
+
name: string;
|
432
|
+
email: string;
|
563
433
|
createdAt: Date;
|
564
434
|
updatedAt: Date;
|
565
435
|
deletedAt: Date | null;
|
566
|
-
|
436
|
+
emailVerifiedAt: Date | null;
|
437
|
+
password: string;
|
438
|
+
phone: string | null;
|
439
|
+
notificationCount: number | null;
|
440
|
+
roles: {
|
567
441
|
id: string;
|
568
|
-
|
569
|
-
name: string;
|
570
|
-
email: string;
|
442
|
+
description: string | null;
|
571
443
|
createdAt: Date;
|
572
444
|
updatedAt: Date;
|
573
445
|
deletedAt: Date | null;
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
notificationCount: number | null;
|
578
|
-
roles: {
|
446
|
+
systemName: string;
|
447
|
+
displayName: string;
|
448
|
+
permissions: {
|
579
449
|
id: string;
|
580
450
|
description: string | null;
|
581
451
|
createdAt: Date;
|
@@ -583,85 +453,68 @@ export declare const userNotificationContract: {
|
|
583
453
|
deletedAt: Date | null;
|
584
454
|
systemName: string;
|
585
455
|
displayName: string;
|
586
|
-
permissions: {
|
587
|
-
id: string;
|
588
|
-
description: string | null;
|
589
|
-
createdAt: Date;
|
590
|
-
updatedAt: Date;
|
591
|
-
deletedAt: Date | null;
|
592
|
-
systemName: string;
|
593
|
-
displayName: string;
|
594
|
-
}[];
|
595
456
|
}[];
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
457
|
+
}[];
|
458
|
+
extension: {
|
459
|
+
id: string;
|
460
|
+
createdAt: Date;
|
461
|
+
updatedAt: Date;
|
462
|
+
deletedAt: Date | null;
|
463
|
+
userId: string | null;
|
464
|
+
sipServerUrl: string;
|
465
|
+
sipUserName: string;
|
466
|
+
webphoneLoginUser: string;
|
467
|
+
extensionId: string | null;
|
468
|
+
extensionName: string;
|
469
|
+
telephonySignature: string | null;
|
609
470
|
};
|
610
|
-
readAt: Date;
|
611
|
-
actorId: string;
|
612
|
-
notificationObjectId: string;
|
613
471
|
};
|
472
|
+
readAt: Date;
|
473
|
+
actorId: string;
|
474
|
+
notificationObjectId: string;
|
614
475
|
};
|
615
|
-
}
|
616
|
-
|
617
|
-
page: z.ZodNumber;
|
618
|
-
pageSize: z.ZodNumber;
|
619
|
-
lastPage: z.ZodNumber;
|
620
|
-
totalUnreadCount: z.ZodOptional<z.ZodNumber>;
|
621
|
-
unreadRoomCount: z.ZodOptional<z.ZodNumber>;
|
622
|
-
unreadCountsByAssigneeList: z.ZodArray<z.ZodObject<{
|
623
|
-
assigneeId: z.ZodOptional<z.ZodString>;
|
624
|
-
totalUnreadCount: z.ZodOptional<z.ZodString>;
|
625
|
-
}, "strip", z.ZodTypeAny, {
|
626
|
-
assigneeId?: string | undefined;
|
627
|
-
totalUnreadCount?: string | undefined;
|
628
|
-
}, {
|
629
|
-
assigneeId?: string | undefined;
|
630
|
-
totalUnreadCount?: string | undefined;
|
631
|
-
}>, "many">;
|
476
|
+
}>;
|
477
|
+
readAt: z.ZodDate;
|
632
478
|
}, "strip", z.ZodTypeAny, {
|
633
|
-
|
479
|
+
id: string;
|
480
|
+
createdAt: Date;
|
481
|
+
updatedAt: Date;
|
482
|
+
deletedAt: Date | null;
|
483
|
+
readAt: Date;
|
484
|
+
notificationObjectId: string;
|
485
|
+
notifierId: string;
|
486
|
+
notificationObject: {
|
487
|
+
data: string;
|
634
488
|
id: string;
|
635
489
|
createdAt: Date;
|
636
490
|
updatedAt: Date;
|
637
491
|
deletedAt: Date | null;
|
638
|
-
|
639
|
-
notificationObjectId: string;
|
640
|
-
notifierId: string;
|
641
|
-
notificationObject: {
|
642
|
-
data: string;
|
492
|
+
notificationChange: {
|
643
493
|
id: string;
|
644
494
|
createdAt: Date;
|
645
495
|
updatedAt: Date;
|
646
496
|
deletedAt: Date | null;
|
647
|
-
|
497
|
+
actor: {
|
648
498
|
id: string;
|
499
|
+
address: string | null;
|
500
|
+
name: string;
|
501
|
+
email: string;
|
649
502
|
createdAt: Date;
|
650
503
|
updatedAt: Date;
|
651
504
|
deletedAt: Date | null;
|
652
|
-
|
505
|
+
emailVerifiedAt: Date | null;
|
506
|
+
password: string;
|
507
|
+
phone: string | null;
|
508
|
+
notificationCount: number | null;
|
509
|
+
roles: {
|
653
510
|
id: string;
|
654
|
-
|
655
|
-
name: string;
|
656
|
-
email: string;
|
511
|
+
description: string | null;
|
657
512
|
createdAt: Date;
|
658
513
|
updatedAt: Date;
|
659
514
|
deletedAt: Date | null;
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
notificationCount: number | null;
|
664
|
-
roles: {
|
515
|
+
systemName: string;
|
516
|
+
displayName: string;
|
517
|
+
permissions: {
|
665
518
|
id: string;
|
666
519
|
description: string | null;
|
667
520
|
createdAt: Date;
|
@@ -669,79 +522,67 @@ export declare const userNotificationContract: {
|
|
669
522
|
deletedAt: Date | null;
|
670
523
|
systemName: string;
|
671
524
|
displayName: string;
|
672
|
-
permissions: {
|
673
|
-
id: string;
|
674
|
-
description: string | null;
|
675
|
-
createdAt: Date;
|
676
|
-
updatedAt: Date;
|
677
|
-
deletedAt: Date | null;
|
678
|
-
systemName: string;
|
679
|
-
displayName: string;
|
680
|
-
}[];
|
681
525
|
}[];
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
526
|
+
}[];
|
527
|
+
extension: {
|
528
|
+
id: string;
|
529
|
+
createdAt: Date;
|
530
|
+
updatedAt: Date;
|
531
|
+
deletedAt: Date | null;
|
532
|
+
userId: string | null;
|
533
|
+
sipServerUrl: string;
|
534
|
+
sipUserName: string;
|
535
|
+
webphoneLoginUser: string;
|
536
|
+
extensionId: string | null;
|
537
|
+
extensionName: string;
|
538
|
+
telephonySignature: string | null;
|
695
539
|
};
|
696
|
-
readAt: Date;
|
697
|
-
actorId: string;
|
698
|
-
notificationObjectId: string;
|
699
540
|
};
|
541
|
+
readAt: Date;
|
542
|
+
actorId: string;
|
543
|
+
notificationObjectId: string;
|
700
544
|
};
|
701
|
-
}
|
702
|
-
total: number;
|
703
|
-
page: number;
|
704
|
-
pageSize: number;
|
705
|
-
lastPage: number;
|
706
|
-
unreadCountsByAssigneeList: {
|
707
|
-
assigneeId?: string | undefined;
|
708
|
-
totalUnreadCount?: string | undefined;
|
709
|
-
}[];
|
710
|
-
totalUnreadCount?: number | undefined;
|
711
|
-
unreadRoomCount?: number | undefined;
|
545
|
+
};
|
712
546
|
}, {
|
713
|
-
|
547
|
+
id: string;
|
548
|
+
createdAt: Date;
|
549
|
+
updatedAt: Date;
|
550
|
+
deletedAt: Date | null;
|
551
|
+
readAt: Date;
|
552
|
+
notificationObjectId: string;
|
553
|
+
notifierId: string;
|
554
|
+
notificationObject: {
|
555
|
+
data: string;
|
714
556
|
id: string;
|
715
557
|
createdAt: Date;
|
716
558
|
updatedAt: Date;
|
717
559
|
deletedAt: Date | null;
|
718
|
-
|
719
|
-
notificationObjectId: string;
|
720
|
-
notifierId: string;
|
721
|
-
notificationObject: {
|
722
|
-
data: string;
|
560
|
+
notificationChange: {
|
723
561
|
id: string;
|
724
562
|
createdAt: Date;
|
725
563
|
updatedAt: Date;
|
726
564
|
deletedAt: Date | null;
|
727
|
-
|
565
|
+
actor: {
|
728
566
|
id: string;
|
567
|
+
address: string | null;
|
568
|
+
name: string;
|
569
|
+
email: string;
|
729
570
|
createdAt: Date;
|
730
571
|
updatedAt: Date;
|
731
572
|
deletedAt: Date | null;
|
732
|
-
|
573
|
+
emailVerifiedAt: Date | null;
|
574
|
+
password: string;
|
575
|
+
phone: string | null;
|
576
|
+
notificationCount: number | null;
|
577
|
+
roles: {
|
733
578
|
id: string;
|
734
|
-
|
735
|
-
name: string;
|
736
|
-
email: string;
|
579
|
+
description: string | null;
|
737
580
|
createdAt: Date;
|
738
581
|
updatedAt: Date;
|
739
582
|
deletedAt: Date | null;
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
notificationCount: number | null;
|
744
|
-
roles: {
|
583
|
+
systemName: string;
|
584
|
+
displayName: string;
|
585
|
+
permissions: {
|
745
586
|
id: string;
|
746
587
|
description: string | null;
|
747
588
|
createdAt: Date;
|
@@ -749,81 +590,75 @@ export declare const userNotificationContract: {
|
|
749
590
|
deletedAt: Date | null;
|
750
591
|
systemName: string;
|
751
592
|
displayName: string;
|
752
|
-
permissions: {
|
753
|
-
id: string;
|
754
|
-
description: string | null;
|
755
|
-
createdAt: Date;
|
756
|
-
updatedAt: Date;
|
757
|
-
deletedAt: Date | null;
|
758
|
-
systemName: string;
|
759
|
-
displayName: string;
|
760
|
-
}[];
|
761
593
|
}[];
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
594
|
+
}[];
|
595
|
+
extension: {
|
596
|
+
id: string;
|
597
|
+
createdAt: Date;
|
598
|
+
updatedAt: Date;
|
599
|
+
deletedAt: Date | null;
|
600
|
+
userId: string | null;
|
601
|
+
sipServerUrl: string;
|
602
|
+
sipUserName: string;
|
603
|
+
webphoneLoginUser: string;
|
604
|
+
extensionId: string | null;
|
605
|
+
extensionName: string;
|
606
|
+
telephonySignature: string | null;
|
775
607
|
};
|
776
|
-
readAt: Date;
|
777
|
-
actorId: string;
|
778
|
-
notificationObjectId: string;
|
779
608
|
};
|
609
|
+
readAt: Date;
|
610
|
+
actorId: string;
|
611
|
+
notificationObjectId: string;
|
780
612
|
};
|
781
|
-
}
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
totalUnreadCount?: string | undefined;
|
789
|
-
}[];
|
790
|
-
totalUnreadCount?: number | undefined;
|
791
|
-
unreadRoomCount?: number | undefined;
|
792
|
-
}>;
|
613
|
+
};
|
614
|
+
}>, "many">;
|
615
|
+
total: z.ZodNumber;
|
616
|
+
page: z.ZodNumber;
|
617
|
+
pageSize: z.ZodNumber;
|
618
|
+
lastPage: z.ZodNumber;
|
619
|
+
totalUnreadCount: z.ZodOptional<z.ZodNumber>;
|
793
620
|
}, "strip", z.ZodTypeAny, {
|
621
|
+
total: number;
|
794
622
|
notifications: {
|
795
|
-
|
623
|
+
id: string;
|
624
|
+
createdAt: Date;
|
625
|
+
updatedAt: Date;
|
626
|
+
deletedAt: Date | null;
|
627
|
+
readAt: Date;
|
628
|
+
notificationObjectId: string;
|
629
|
+
notifierId: string;
|
630
|
+
notificationObject: {
|
631
|
+
data: string;
|
796
632
|
id: string;
|
797
633
|
createdAt: Date;
|
798
634
|
updatedAt: Date;
|
799
635
|
deletedAt: Date | null;
|
800
|
-
|
801
|
-
notificationObjectId: string;
|
802
|
-
notifierId: string;
|
803
|
-
notificationObject: {
|
804
|
-
data: string;
|
636
|
+
notificationChange: {
|
805
637
|
id: string;
|
806
638
|
createdAt: Date;
|
807
639
|
updatedAt: Date;
|
808
640
|
deletedAt: Date | null;
|
809
|
-
|
641
|
+
actor: {
|
810
642
|
id: string;
|
643
|
+
address: string | null;
|
644
|
+
name: string;
|
645
|
+
email: string;
|
811
646
|
createdAt: Date;
|
812
647
|
updatedAt: Date;
|
813
648
|
deletedAt: Date | null;
|
814
|
-
|
649
|
+
emailVerifiedAt: Date | null;
|
650
|
+
password: string;
|
651
|
+
phone: string | null;
|
652
|
+
notificationCount: number | null;
|
653
|
+
roles: {
|
815
654
|
id: string;
|
816
|
-
|
817
|
-
name: string;
|
818
|
-
email: string;
|
655
|
+
description: string | null;
|
819
656
|
createdAt: Date;
|
820
657
|
updatedAt: Date;
|
821
658
|
deletedAt: Date | null;
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
notificationCount: number | null;
|
826
|
-
roles: {
|
659
|
+
systemName: string;
|
660
|
+
displayName: string;
|
661
|
+
permissions: {
|
827
662
|
id: string;
|
828
663
|
description: string | null;
|
829
664
|
createdAt: Date;
|
@@ -831,82 +666,75 @@ export declare const userNotificationContract: {
|
|
831
666
|
deletedAt: Date | null;
|
832
667
|
systemName: string;
|
833
668
|
displayName: string;
|
834
|
-
permissions: {
|
835
|
-
id: string;
|
836
|
-
description: string | null;
|
837
|
-
createdAt: Date;
|
838
|
-
updatedAt: Date;
|
839
|
-
deletedAt: Date | null;
|
840
|
-
systemName: string;
|
841
|
-
displayName: string;
|
842
|
-
}[];
|
843
669
|
}[];
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
670
|
+
}[];
|
671
|
+
extension: {
|
672
|
+
id: string;
|
673
|
+
createdAt: Date;
|
674
|
+
updatedAt: Date;
|
675
|
+
deletedAt: Date | null;
|
676
|
+
userId: string | null;
|
677
|
+
sipServerUrl: string;
|
678
|
+
sipUserName: string;
|
679
|
+
webphoneLoginUser: string;
|
680
|
+
extensionId: string | null;
|
681
|
+
extensionName: string;
|
682
|
+
telephonySignature: string | null;
|
857
683
|
};
|
858
|
-
readAt: Date;
|
859
|
-
actorId: string;
|
860
|
-
notificationObjectId: string;
|
861
684
|
};
|
685
|
+
readAt: Date;
|
686
|
+
actorId: string;
|
687
|
+
notificationObjectId: string;
|
862
688
|
};
|
863
|
-
}
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
unreadCountsByAssigneeList: {
|
869
|
-
assigneeId?: string | undefined;
|
870
|
-
totalUnreadCount?: string | undefined;
|
871
|
-
}[];
|
872
|
-
totalUnreadCount?: number | undefined;
|
873
|
-
unreadRoomCount?: number | undefined;
|
874
|
-
};
|
689
|
+
};
|
690
|
+
}[];
|
691
|
+
page: number;
|
692
|
+
pageSize: number;
|
693
|
+
lastPage: number;
|
875
694
|
notificationCount: number;
|
695
|
+
totalUnreadCount?: number | undefined;
|
876
696
|
}, {
|
697
|
+
total: number;
|
877
698
|
notifications: {
|
878
|
-
|
699
|
+
id: string;
|
700
|
+
createdAt: Date;
|
701
|
+
updatedAt: Date;
|
702
|
+
deletedAt: Date | null;
|
703
|
+
readAt: Date;
|
704
|
+
notificationObjectId: string;
|
705
|
+
notifierId: string;
|
706
|
+
notificationObject: {
|
707
|
+
data: string;
|
879
708
|
id: string;
|
880
709
|
createdAt: Date;
|
881
710
|
updatedAt: Date;
|
882
711
|
deletedAt: Date | null;
|
883
|
-
|
884
|
-
notificationObjectId: string;
|
885
|
-
notifierId: string;
|
886
|
-
notificationObject: {
|
887
|
-
data: string;
|
712
|
+
notificationChange: {
|
888
713
|
id: string;
|
889
714
|
createdAt: Date;
|
890
715
|
updatedAt: Date;
|
891
716
|
deletedAt: Date | null;
|
892
|
-
|
717
|
+
actor: {
|
893
718
|
id: string;
|
719
|
+
address: string | null;
|
720
|
+
name: string;
|
721
|
+
email: string;
|
894
722
|
createdAt: Date;
|
895
723
|
updatedAt: Date;
|
896
724
|
deletedAt: Date | null;
|
897
|
-
|
725
|
+
emailVerifiedAt: Date | null;
|
726
|
+
password: string;
|
727
|
+
phone: string | null;
|
728
|
+
notificationCount: number | null;
|
729
|
+
roles: {
|
898
730
|
id: string;
|
899
|
-
|
900
|
-
name: string;
|
901
|
-
email: string;
|
731
|
+
description: string | null;
|
902
732
|
createdAt: Date;
|
903
733
|
updatedAt: Date;
|
904
734
|
deletedAt: Date | null;
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
notificationCount: number | null;
|
909
|
-
roles: {
|
735
|
+
systemName: string;
|
736
|
+
displayName: string;
|
737
|
+
permissions: {
|
910
738
|
id: string;
|
911
739
|
description: string | null;
|
912
740
|
createdAt: Date;
|
@@ -914,84 +742,77 @@ export declare const userNotificationContract: {
|
|
914
742
|
deletedAt: Date | null;
|
915
743
|
systemName: string;
|
916
744
|
displayName: string;
|
917
|
-
permissions: {
|
918
|
-
id: string;
|
919
|
-
description: string | null;
|
920
|
-
createdAt: Date;
|
921
|
-
updatedAt: Date;
|
922
|
-
deletedAt: Date | null;
|
923
|
-
systemName: string;
|
924
|
-
displayName: string;
|
925
|
-
}[];
|
926
745
|
}[];
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
746
|
+
}[];
|
747
|
+
extension: {
|
748
|
+
id: string;
|
749
|
+
createdAt: Date;
|
750
|
+
updatedAt: Date;
|
751
|
+
deletedAt: Date | null;
|
752
|
+
userId: string | null;
|
753
|
+
sipServerUrl: string;
|
754
|
+
sipUserName: string;
|
755
|
+
webphoneLoginUser: string;
|
756
|
+
extensionId: string | null;
|
757
|
+
extensionName: string;
|
758
|
+
telephonySignature: string | null;
|
940
759
|
};
|
941
|
-
readAt: Date;
|
942
|
-
actorId: string;
|
943
|
-
notificationObjectId: string;
|
944
760
|
};
|
761
|
+
readAt: Date;
|
762
|
+
actorId: string;
|
763
|
+
notificationObjectId: string;
|
945
764
|
};
|
946
|
-
}
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
unreadCountsByAssigneeList: {
|
952
|
-
assigneeId?: string | undefined;
|
953
|
-
totalUnreadCount?: string | undefined;
|
954
|
-
}[];
|
955
|
-
totalUnreadCount?: number | undefined;
|
956
|
-
unreadRoomCount?: number | undefined;
|
957
|
-
};
|
765
|
+
};
|
766
|
+
}[];
|
767
|
+
page: number;
|
768
|
+
pageSize: number;
|
769
|
+
lastPage: number;
|
958
770
|
notificationCount: number;
|
771
|
+
totalUnreadCount?: number | undefined;
|
959
772
|
}>;
|
960
773
|
}, "strip", z.ZodTypeAny, {
|
961
774
|
data: {
|
775
|
+
total: number;
|
962
776
|
notifications: {
|
963
|
-
|
777
|
+
id: string;
|
778
|
+
createdAt: Date;
|
779
|
+
updatedAt: Date;
|
780
|
+
deletedAt: Date | null;
|
781
|
+
readAt: Date;
|
782
|
+
notificationObjectId: string;
|
783
|
+
notifierId: string;
|
784
|
+
notificationObject: {
|
785
|
+
data: string;
|
964
786
|
id: string;
|
965
787
|
createdAt: Date;
|
966
788
|
updatedAt: Date;
|
967
789
|
deletedAt: Date | null;
|
968
|
-
|
969
|
-
notificationObjectId: string;
|
970
|
-
notifierId: string;
|
971
|
-
notificationObject: {
|
972
|
-
data: string;
|
790
|
+
notificationChange: {
|
973
791
|
id: string;
|
974
792
|
createdAt: Date;
|
975
793
|
updatedAt: Date;
|
976
794
|
deletedAt: Date | null;
|
977
|
-
|
795
|
+
actor: {
|
978
796
|
id: string;
|
797
|
+
address: string | null;
|
798
|
+
name: string;
|
799
|
+
email: string;
|
979
800
|
createdAt: Date;
|
980
801
|
updatedAt: Date;
|
981
802
|
deletedAt: Date | null;
|
982
|
-
|
803
|
+
emailVerifiedAt: Date | null;
|
804
|
+
password: string;
|
805
|
+
phone: string | null;
|
806
|
+
notificationCount: number | null;
|
807
|
+
roles: {
|
983
808
|
id: string;
|
984
|
-
|
985
|
-
name: string;
|
986
|
-
email: string;
|
809
|
+
description: string | null;
|
987
810
|
createdAt: Date;
|
988
811
|
updatedAt: Date;
|
989
812
|
deletedAt: Date | null;
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
notificationCount: number | null;
|
994
|
-
roles: {
|
813
|
+
systemName: string;
|
814
|
+
displayName: string;
|
815
|
+
permissions: {
|
995
816
|
id: string;
|
996
817
|
description: string | null;
|
997
818
|
createdAt: Date;
|
@@ -999,85 +820,78 @@ export declare const userNotificationContract: {
|
|
999
820
|
deletedAt: Date | null;
|
1000
821
|
systemName: string;
|
1001
822
|
displayName: string;
|
1002
|
-
permissions: {
|
1003
|
-
id: string;
|
1004
|
-
description: string | null;
|
1005
|
-
createdAt: Date;
|
1006
|
-
updatedAt: Date;
|
1007
|
-
deletedAt: Date | null;
|
1008
|
-
systemName: string;
|
1009
|
-
displayName: string;
|
1010
|
-
}[];
|
1011
823
|
}[];
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
824
|
+
}[];
|
825
|
+
extension: {
|
826
|
+
id: string;
|
827
|
+
createdAt: Date;
|
828
|
+
updatedAt: Date;
|
829
|
+
deletedAt: Date | null;
|
830
|
+
userId: string | null;
|
831
|
+
sipServerUrl: string;
|
832
|
+
sipUserName: string;
|
833
|
+
webphoneLoginUser: string;
|
834
|
+
extensionId: string | null;
|
835
|
+
extensionName: string;
|
836
|
+
telephonySignature: string | null;
|
1025
837
|
};
|
1026
|
-
readAt: Date;
|
1027
|
-
actorId: string;
|
1028
|
-
notificationObjectId: string;
|
1029
838
|
};
|
839
|
+
readAt: Date;
|
840
|
+
actorId: string;
|
841
|
+
notificationObjectId: string;
|
1030
842
|
};
|
1031
|
-
}
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
unreadCountsByAssigneeList: {
|
1037
|
-
assigneeId?: string | undefined;
|
1038
|
-
totalUnreadCount?: string | undefined;
|
1039
|
-
}[];
|
1040
|
-
totalUnreadCount?: number | undefined;
|
1041
|
-
unreadRoomCount?: number | undefined;
|
1042
|
-
};
|
843
|
+
};
|
844
|
+
}[];
|
845
|
+
page: number;
|
846
|
+
pageSize: number;
|
847
|
+
lastPage: number;
|
1043
848
|
notificationCount: number;
|
849
|
+
totalUnreadCount?: number | undefined;
|
1044
850
|
};
|
1045
851
|
requestId: string;
|
1046
852
|
}, {
|
1047
853
|
data: {
|
854
|
+
total: number;
|
1048
855
|
notifications: {
|
1049
|
-
|
856
|
+
id: string;
|
857
|
+
createdAt: Date;
|
858
|
+
updatedAt: Date;
|
859
|
+
deletedAt: Date | null;
|
860
|
+
readAt: Date;
|
861
|
+
notificationObjectId: string;
|
862
|
+
notifierId: string;
|
863
|
+
notificationObject: {
|
864
|
+
data: string;
|
1050
865
|
id: string;
|
1051
866
|
createdAt: Date;
|
1052
867
|
updatedAt: Date;
|
1053
868
|
deletedAt: Date | null;
|
1054
|
-
|
1055
|
-
notificationObjectId: string;
|
1056
|
-
notifierId: string;
|
1057
|
-
notificationObject: {
|
1058
|
-
data: string;
|
869
|
+
notificationChange: {
|
1059
870
|
id: string;
|
1060
871
|
createdAt: Date;
|
1061
872
|
updatedAt: Date;
|
1062
873
|
deletedAt: Date | null;
|
1063
|
-
|
874
|
+
actor: {
|
1064
875
|
id: string;
|
876
|
+
address: string | null;
|
877
|
+
name: string;
|
878
|
+
email: string;
|
1065
879
|
createdAt: Date;
|
1066
880
|
updatedAt: Date;
|
1067
881
|
deletedAt: Date | null;
|
1068
|
-
|
882
|
+
emailVerifiedAt: Date | null;
|
883
|
+
password: string;
|
884
|
+
phone: string | null;
|
885
|
+
notificationCount: number | null;
|
886
|
+
roles: {
|
1069
887
|
id: string;
|
1070
|
-
|
1071
|
-
name: string;
|
1072
|
-
email: string;
|
888
|
+
description: string | null;
|
1073
889
|
createdAt: Date;
|
1074
890
|
updatedAt: Date;
|
1075
891
|
deletedAt: Date | null;
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
notificationCount: number | null;
|
1080
|
-
roles: {
|
892
|
+
systemName: string;
|
893
|
+
displayName: string;
|
894
|
+
permissions: {
|
1081
895
|
id: string;
|
1082
896
|
description: string | null;
|
1083
897
|
createdAt: Date;
|
@@ -1085,48 +899,33 @@ export declare const userNotificationContract: {
|
|
1085
899
|
deletedAt: Date | null;
|
1086
900
|
systemName: string;
|
1087
901
|
displayName: string;
|
1088
|
-
permissions: {
|
1089
|
-
id: string;
|
1090
|
-
description: string | null;
|
1091
|
-
createdAt: Date;
|
1092
|
-
updatedAt: Date;
|
1093
|
-
deletedAt: Date | null;
|
1094
|
-
systemName: string;
|
1095
|
-
displayName: string;
|
1096
|
-
}[];
|
1097
902
|
}[];
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
903
|
+
}[];
|
904
|
+
extension: {
|
905
|
+
id: string;
|
906
|
+
createdAt: Date;
|
907
|
+
updatedAt: Date;
|
908
|
+
deletedAt: Date | null;
|
909
|
+
userId: string | null;
|
910
|
+
sipServerUrl: string;
|
911
|
+
sipUserName: string;
|
912
|
+
webphoneLoginUser: string;
|
913
|
+
extensionId: string | null;
|
914
|
+
extensionName: string;
|
915
|
+
telephonySignature: string | null;
|
1111
916
|
};
|
1112
|
-
readAt: Date;
|
1113
|
-
actorId: string;
|
1114
|
-
notificationObjectId: string;
|
1115
917
|
};
|
918
|
+
readAt: Date;
|
919
|
+
actorId: string;
|
920
|
+
notificationObjectId: string;
|
1116
921
|
};
|
1117
|
-
}
|
1118
|
-
|
1119
|
-
|
1120
|
-
|
1121
|
-
|
1122
|
-
unreadCountsByAssigneeList: {
|
1123
|
-
assigneeId?: string | undefined;
|
1124
|
-
totalUnreadCount?: string | undefined;
|
1125
|
-
}[];
|
1126
|
-
totalUnreadCount?: number | undefined;
|
1127
|
-
unreadRoomCount?: number | undefined;
|
1128
|
-
};
|
922
|
+
};
|
923
|
+
}[];
|
924
|
+
page: number;
|
925
|
+
pageSize: number;
|
926
|
+
lastPage: number;
|
1129
927
|
notificationCount: number;
|
928
|
+
totalUnreadCount?: number | undefined;
|
1130
929
|
};
|
1131
930
|
requestId: string;
|
1132
931
|
}>;
|