@kl1/contracts 1.0.51 → 1.0.53
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 +1228 -1130
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1227 -1130
- 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/channel/index.d.ts +2273 -1438
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +5470 -352
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +268 -337
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +10003 -3533
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +301 -6
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/line/schema.d.ts +301 -6
- package/dist/src/line/schema.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/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- package/dist/src/telephony-cdr/index.d.ts +90 -0
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
- package/dist/src/user-presence-status-log/index.d.ts +63 -0
- package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/index.d.ts
CHANGED
package/dist/src/index.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC"}
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAE3B,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AACjD,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,OAAO,CAAC;AACtB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,WAAW,CAAC;AAC1B,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,aAAa,CAAC;AAC5B,cAAc,4BAA4B,CAAC;AAC3C,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC"}
|
package/dist/src/line/index.d.ts
CHANGED
@@ -47,14 +47,309 @@ export declare const lineContract: {
|
|
47
47
|
};
|
48
48
|
connect: {
|
49
49
|
body: z.ZodObject<{
|
50
|
-
|
51
|
-
accessToken: z.ZodString
|
50
|
+
lineId: z.ZodOptional<z.ZodString>;
|
51
|
+
accessToken: z.ZodOptional<z.ZodString>;
|
52
|
+
lineSecret: z.ZodOptional<z.ZodString>;
|
53
|
+
actor: z.ZodObject<{
|
54
|
+
id: z.ZodString;
|
55
|
+
createdAt: z.ZodDate;
|
56
|
+
updatedAt: z.ZodDate;
|
57
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
58
|
+
name: z.ZodString;
|
59
|
+
email: z.ZodString;
|
60
|
+
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
61
|
+
password: z.ZodString;
|
62
|
+
address: z.ZodNullable<z.ZodString>;
|
63
|
+
phone: z.ZodNullable<z.ZodString>;
|
64
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
65
|
+
roles: z.ZodArray<z.ZodObject<{
|
66
|
+
id: z.ZodString;
|
67
|
+
createdAt: z.ZodDate;
|
68
|
+
updatedAt: z.ZodDate;
|
69
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
70
|
+
systemName: z.ZodString;
|
71
|
+
displayName: z.ZodString;
|
72
|
+
description: z.ZodNullable<z.ZodString>;
|
73
|
+
permissions: z.ZodArray<z.ZodObject<{
|
74
|
+
id: z.ZodString;
|
75
|
+
createdAt: z.ZodDate;
|
76
|
+
updatedAt: z.ZodDate;
|
77
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
78
|
+
systemName: z.ZodString;
|
79
|
+
displayName: z.ZodString;
|
80
|
+
description: z.ZodNullable<z.ZodString>;
|
81
|
+
}, "strip", z.ZodTypeAny, {
|
82
|
+
id: string;
|
83
|
+
description: string | null;
|
84
|
+
createdAt: Date;
|
85
|
+
updatedAt: Date;
|
86
|
+
deletedAt: Date | null;
|
87
|
+
systemName: string;
|
88
|
+
displayName: string;
|
89
|
+
}, {
|
90
|
+
id: string;
|
91
|
+
description: string | null;
|
92
|
+
createdAt: Date;
|
93
|
+
updatedAt: Date;
|
94
|
+
deletedAt: Date | null;
|
95
|
+
systemName: string;
|
96
|
+
displayName: string;
|
97
|
+
}>, "many">;
|
98
|
+
}, "strip", z.ZodTypeAny, {
|
99
|
+
id: string;
|
100
|
+
description: string | null;
|
101
|
+
createdAt: Date;
|
102
|
+
updatedAt: Date;
|
103
|
+
deletedAt: Date | null;
|
104
|
+
systemName: string;
|
105
|
+
displayName: string;
|
106
|
+
permissions: {
|
107
|
+
id: string;
|
108
|
+
description: string | null;
|
109
|
+
createdAt: Date;
|
110
|
+
updatedAt: Date;
|
111
|
+
deletedAt: Date | null;
|
112
|
+
systemName: string;
|
113
|
+
displayName: string;
|
114
|
+
}[];
|
115
|
+
}, {
|
116
|
+
id: string;
|
117
|
+
description: string | null;
|
118
|
+
createdAt: Date;
|
119
|
+
updatedAt: Date;
|
120
|
+
deletedAt: Date | null;
|
121
|
+
systemName: string;
|
122
|
+
displayName: string;
|
123
|
+
permissions: {
|
124
|
+
id: string;
|
125
|
+
description: string | null;
|
126
|
+
createdAt: Date;
|
127
|
+
updatedAt: Date;
|
128
|
+
deletedAt: Date | null;
|
129
|
+
systemName: string;
|
130
|
+
displayName: string;
|
131
|
+
}[];
|
132
|
+
}>, "many">;
|
133
|
+
extension: z.ZodObject<{
|
134
|
+
id: z.ZodString;
|
135
|
+
createdAt: z.ZodDate;
|
136
|
+
updatedAt: z.ZodDate;
|
137
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
138
|
+
userId: z.ZodNullable<z.ZodString>;
|
139
|
+
sipServerUrl: z.ZodString;
|
140
|
+
sipUserName: z.ZodString;
|
141
|
+
webphoneLoginUser: z.ZodString;
|
142
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
143
|
+
extensionName: z.ZodString;
|
144
|
+
telephonySignature: z.ZodNullable<z.ZodString>;
|
145
|
+
}, "strip", z.ZodTypeAny, {
|
146
|
+
id: string;
|
147
|
+
createdAt: Date;
|
148
|
+
updatedAt: Date;
|
149
|
+
deletedAt: Date | null;
|
150
|
+
userId: string | null;
|
151
|
+
sipServerUrl: string;
|
152
|
+
sipUserName: string;
|
153
|
+
webphoneLoginUser: string;
|
154
|
+
extensionId: string | null;
|
155
|
+
extensionName: string;
|
156
|
+
telephonySignature: string | null;
|
157
|
+
}, {
|
158
|
+
id: string;
|
159
|
+
createdAt: Date;
|
160
|
+
updatedAt: Date;
|
161
|
+
deletedAt: Date | null;
|
162
|
+
userId: string | null;
|
163
|
+
sipServerUrl: string;
|
164
|
+
sipUserName: string;
|
165
|
+
webphoneLoginUser: string;
|
166
|
+
extensionId: string | null;
|
167
|
+
extensionName: string;
|
168
|
+
telephonySignature: string | null;
|
169
|
+
}>;
|
170
|
+
}, "strip", z.ZodTypeAny, {
|
171
|
+
id: string;
|
172
|
+
address: string | null;
|
173
|
+
name: string;
|
174
|
+
email: string;
|
175
|
+
createdAt: Date;
|
176
|
+
updatedAt: Date;
|
177
|
+
deletedAt: Date | null;
|
178
|
+
emailVerifiedAt: Date | null;
|
179
|
+
password: string;
|
180
|
+
phone: string | null;
|
181
|
+
notificationCount: number | null;
|
182
|
+
roles: {
|
183
|
+
id: string;
|
184
|
+
description: string | null;
|
185
|
+
createdAt: Date;
|
186
|
+
updatedAt: Date;
|
187
|
+
deletedAt: Date | null;
|
188
|
+
systemName: string;
|
189
|
+
displayName: string;
|
190
|
+
permissions: {
|
191
|
+
id: string;
|
192
|
+
description: string | null;
|
193
|
+
createdAt: Date;
|
194
|
+
updatedAt: Date;
|
195
|
+
deletedAt: Date | null;
|
196
|
+
systemName: string;
|
197
|
+
displayName: string;
|
198
|
+
}[];
|
199
|
+
}[];
|
200
|
+
extension: {
|
201
|
+
id: string;
|
202
|
+
createdAt: Date;
|
203
|
+
updatedAt: Date;
|
204
|
+
deletedAt: Date | null;
|
205
|
+
userId: string | null;
|
206
|
+
sipServerUrl: string;
|
207
|
+
sipUserName: string;
|
208
|
+
webphoneLoginUser: string;
|
209
|
+
extensionId: string | null;
|
210
|
+
extensionName: string;
|
211
|
+
telephonySignature: string | null;
|
212
|
+
};
|
213
|
+
}, {
|
214
|
+
id: string;
|
215
|
+
address: string | null;
|
216
|
+
name: string;
|
217
|
+
email: string;
|
218
|
+
createdAt: Date;
|
219
|
+
updatedAt: Date;
|
220
|
+
deletedAt: Date | null;
|
221
|
+
emailVerifiedAt: Date | null;
|
222
|
+
password: string;
|
223
|
+
phone: string | null;
|
224
|
+
notificationCount: number | null;
|
225
|
+
roles: {
|
226
|
+
id: string;
|
227
|
+
description: string | null;
|
228
|
+
createdAt: Date;
|
229
|
+
updatedAt: Date;
|
230
|
+
deletedAt: Date | null;
|
231
|
+
systemName: string;
|
232
|
+
displayName: string;
|
233
|
+
permissions: {
|
234
|
+
id: string;
|
235
|
+
description: string | null;
|
236
|
+
createdAt: Date;
|
237
|
+
updatedAt: Date;
|
238
|
+
deletedAt: Date | null;
|
239
|
+
systemName: string;
|
240
|
+
displayName: string;
|
241
|
+
}[];
|
242
|
+
}[];
|
243
|
+
extension: {
|
244
|
+
id: string;
|
245
|
+
createdAt: Date;
|
246
|
+
updatedAt: Date;
|
247
|
+
deletedAt: Date | null;
|
248
|
+
userId: string | null;
|
249
|
+
sipServerUrl: string;
|
250
|
+
sipUserName: string;
|
251
|
+
webphoneLoginUser: string;
|
252
|
+
extensionId: string | null;
|
253
|
+
extensionName: string;
|
254
|
+
telephonySignature: string | null;
|
255
|
+
};
|
256
|
+
}>;
|
52
257
|
}, "strip", z.ZodTypeAny, {
|
53
|
-
|
54
|
-
|
258
|
+
actor: {
|
259
|
+
id: string;
|
260
|
+
address: string | null;
|
261
|
+
name: string;
|
262
|
+
email: string;
|
263
|
+
createdAt: Date;
|
264
|
+
updatedAt: Date;
|
265
|
+
deletedAt: Date | null;
|
266
|
+
emailVerifiedAt: Date | null;
|
267
|
+
password: string;
|
268
|
+
phone: string | null;
|
269
|
+
notificationCount: number | null;
|
270
|
+
roles: {
|
271
|
+
id: string;
|
272
|
+
description: string | null;
|
273
|
+
createdAt: Date;
|
274
|
+
updatedAt: Date;
|
275
|
+
deletedAt: Date | null;
|
276
|
+
systemName: string;
|
277
|
+
displayName: string;
|
278
|
+
permissions: {
|
279
|
+
id: string;
|
280
|
+
description: string | null;
|
281
|
+
createdAt: Date;
|
282
|
+
updatedAt: Date;
|
283
|
+
deletedAt: Date | null;
|
284
|
+
systemName: string;
|
285
|
+
displayName: string;
|
286
|
+
}[];
|
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;
|
300
|
+
};
|
301
|
+
};
|
302
|
+
lineId?: string | undefined;
|
303
|
+
accessToken?: string | undefined;
|
304
|
+
lineSecret?: string | undefined;
|
55
305
|
}, {
|
56
|
-
|
57
|
-
|
306
|
+
actor: {
|
307
|
+
id: string;
|
308
|
+
address: string | null;
|
309
|
+
name: string;
|
310
|
+
email: string;
|
311
|
+
createdAt: Date;
|
312
|
+
updatedAt: Date;
|
313
|
+
deletedAt: Date | null;
|
314
|
+
emailVerifiedAt: Date | null;
|
315
|
+
password: string;
|
316
|
+
phone: string | null;
|
317
|
+
notificationCount: number | null;
|
318
|
+
roles: {
|
319
|
+
id: string;
|
320
|
+
description: string | null;
|
321
|
+
createdAt: Date;
|
322
|
+
updatedAt: Date;
|
323
|
+
deletedAt: Date | null;
|
324
|
+
systemName: string;
|
325
|
+
displayName: string;
|
326
|
+
permissions: {
|
327
|
+
id: string;
|
328
|
+
description: string | null;
|
329
|
+
createdAt: Date;
|
330
|
+
updatedAt: Date;
|
331
|
+
deletedAt: Date | null;
|
332
|
+
systemName: string;
|
333
|
+
displayName: string;
|
334
|
+
}[];
|
335
|
+
}[];
|
336
|
+
extension: {
|
337
|
+
id: string;
|
338
|
+
createdAt: Date;
|
339
|
+
updatedAt: Date;
|
340
|
+
deletedAt: Date | null;
|
341
|
+
userId: string | null;
|
342
|
+
sipServerUrl: string;
|
343
|
+
sipUserName: string;
|
344
|
+
webphoneLoginUser: string;
|
345
|
+
extensionId: string | null;
|
346
|
+
extensionName: string;
|
347
|
+
telephonySignature: string | null;
|
348
|
+
};
|
349
|
+
};
|
350
|
+
lineId?: string | undefined;
|
351
|
+
accessToken?: string | undefined;
|
352
|
+
lineSecret?: string | undefined;
|
58
353
|
}>;
|
59
354
|
summary: "Connect to LINE channel";
|
60
355
|
method: "POST";
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/line/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAErD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAE1E,eAAO,MAAM,YAAY
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/line/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAErD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAE1E,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0BvB,CAAA"}
|
@@ -1,12 +1,307 @@
|
|
1
1
|
import z from 'zod';
|
2
2
|
export declare const ConnectLineSchema: z.ZodObject<{
|
3
|
-
|
4
|
-
accessToken: z.ZodString
|
3
|
+
lineId: z.ZodOptional<z.ZodString>;
|
4
|
+
accessToken: z.ZodOptional<z.ZodString>;
|
5
|
+
lineSecret: z.ZodOptional<z.ZodString>;
|
6
|
+
actor: z.ZodObject<{
|
7
|
+
id: z.ZodString;
|
8
|
+
createdAt: z.ZodDate;
|
9
|
+
updatedAt: z.ZodDate;
|
10
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
11
|
+
name: z.ZodString;
|
12
|
+
email: z.ZodString;
|
13
|
+
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
14
|
+
password: z.ZodString;
|
15
|
+
address: z.ZodNullable<z.ZodString>;
|
16
|
+
phone: z.ZodNullable<z.ZodString>;
|
17
|
+
notificationCount: z.ZodNullable<z.ZodNumber>;
|
18
|
+
roles: z.ZodArray<z.ZodObject<{
|
19
|
+
id: z.ZodString;
|
20
|
+
createdAt: z.ZodDate;
|
21
|
+
updatedAt: z.ZodDate;
|
22
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
23
|
+
systemName: z.ZodString;
|
24
|
+
displayName: z.ZodString;
|
25
|
+
description: z.ZodNullable<z.ZodString>;
|
26
|
+
permissions: z.ZodArray<z.ZodObject<{
|
27
|
+
id: z.ZodString;
|
28
|
+
createdAt: z.ZodDate;
|
29
|
+
updatedAt: z.ZodDate;
|
30
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
31
|
+
systemName: z.ZodString;
|
32
|
+
displayName: z.ZodString;
|
33
|
+
description: z.ZodNullable<z.ZodString>;
|
34
|
+
}, "strip", z.ZodTypeAny, {
|
35
|
+
id: string;
|
36
|
+
description: string | null;
|
37
|
+
createdAt: Date;
|
38
|
+
updatedAt: Date;
|
39
|
+
deletedAt: Date | null;
|
40
|
+
systemName: string;
|
41
|
+
displayName: string;
|
42
|
+
}, {
|
43
|
+
id: string;
|
44
|
+
description: string | null;
|
45
|
+
createdAt: Date;
|
46
|
+
updatedAt: Date;
|
47
|
+
deletedAt: Date | null;
|
48
|
+
systemName: string;
|
49
|
+
displayName: string;
|
50
|
+
}>, "many">;
|
51
|
+
}, "strip", z.ZodTypeAny, {
|
52
|
+
id: string;
|
53
|
+
description: string | null;
|
54
|
+
createdAt: Date;
|
55
|
+
updatedAt: Date;
|
56
|
+
deletedAt: Date | null;
|
57
|
+
systemName: string;
|
58
|
+
displayName: string;
|
59
|
+
permissions: {
|
60
|
+
id: string;
|
61
|
+
description: string | null;
|
62
|
+
createdAt: Date;
|
63
|
+
updatedAt: Date;
|
64
|
+
deletedAt: Date | null;
|
65
|
+
systemName: string;
|
66
|
+
displayName: string;
|
67
|
+
}[];
|
68
|
+
}, {
|
69
|
+
id: string;
|
70
|
+
description: string | null;
|
71
|
+
createdAt: Date;
|
72
|
+
updatedAt: Date;
|
73
|
+
deletedAt: Date | null;
|
74
|
+
systemName: string;
|
75
|
+
displayName: string;
|
76
|
+
permissions: {
|
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
|
+
}>, "many">;
|
86
|
+
extension: z.ZodObject<{
|
87
|
+
id: z.ZodString;
|
88
|
+
createdAt: z.ZodDate;
|
89
|
+
updatedAt: z.ZodDate;
|
90
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
91
|
+
userId: z.ZodNullable<z.ZodString>;
|
92
|
+
sipServerUrl: z.ZodString;
|
93
|
+
sipUserName: z.ZodString;
|
94
|
+
webphoneLoginUser: z.ZodString;
|
95
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
96
|
+
extensionName: z.ZodString;
|
97
|
+
telephonySignature: z.ZodNullable<z.ZodString>;
|
98
|
+
}, "strip", z.ZodTypeAny, {
|
99
|
+
id: string;
|
100
|
+
createdAt: Date;
|
101
|
+
updatedAt: Date;
|
102
|
+
deletedAt: Date | null;
|
103
|
+
userId: string | null;
|
104
|
+
sipServerUrl: string;
|
105
|
+
sipUserName: string;
|
106
|
+
webphoneLoginUser: string;
|
107
|
+
extensionId: string | null;
|
108
|
+
extensionName: string;
|
109
|
+
telephonySignature: string | null;
|
110
|
+
}, {
|
111
|
+
id: string;
|
112
|
+
createdAt: Date;
|
113
|
+
updatedAt: Date;
|
114
|
+
deletedAt: Date | null;
|
115
|
+
userId: string | null;
|
116
|
+
sipServerUrl: string;
|
117
|
+
sipUserName: string;
|
118
|
+
webphoneLoginUser: string;
|
119
|
+
extensionId: string | null;
|
120
|
+
extensionName: string;
|
121
|
+
telephonySignature: string | null;
|
122
|
+
}>;
|
123
|
+
}, "strip", z.ZodTypeAny, {
|
124
|
+
id: string;
|
125
|
+
address: string | null;
|
126
|
+
name: string;
|
127
|
+
email: string;
|
128
|
+
createdAt: Date;
|
129
|
+
updatedAt: Date;
|
130
|
+
deletedAt: Date | null;
|
131
|
+
emailVerifiedAt: Date | null;
|
132
|
+
password: string;
|
133
|
+
phone: string | null;
|
134
|
+
notificationCount: number | null;
|
135
|
+
roles: {
|
136
|
+
id: string;
|
137
|
+
description: string | null;
|
138
|
+
createdAt: Date;
|
139
|
+
updatedAt: Date;
|
140
|
+
deletedAt: Date | null;
|
141
|
+
systemName: string;
|
142
|
+
displayName: string;
|
143
|
+
permissions: {
|
144
|
+
id: string;
|
145
|
+
description: string | null;
|
146
|
+
createdAt: Date;
|
147
|
+
updatedAt: Date;
|
148
|
+
deletedAt: Date | null;
|
149
|
+
systemName: string;
|
150
|
+
displayName: string;
|
151
|
+
}[];
|
152
|
+
}[];
|
153
|
+
extension: {
|
154
|
+
id: string;
|
155
|
+
createdAt: Date;
|
156
|
+
updatedAt: Date;
|
157
|
+
deletedAt: Date | null;
|
158
|
+
userId: string | null;
|
159
|
+
sipServerUrl: string;
|
160
|
+
sipUserName: string;
|
161
|
+
webphoneLoginUser: string;
|
162
|
+
extensionId: string | null;
|
163
|
+
extensionName: string;
|
164
|
+
telephonySignature: string | null;
|
165
|
+
};
|
166
|
+
}, {
|
167
|
+
id: string;
|
168
|
+
address: string | null;
|
169
|
+
name: string;
|
170
|
+
email: string;
|
171
|
+
createdAt: Date;
|
172
|
+
updatedAt: Date;
|
173
|
+
deletedAt: Date | null;
|
174
|
+
emailVerifiedAt: Date | null;
|
175
|
+
password: string;
|
176
|
+
phone: string | null;
|
177
|
+
notificationCount: number | null;
|
178
|
+
roles: {
|
179
|
+
id: string;
|
180
|
+
description: string | null;
|
181
|
+
createdAt: Date;
|
182
|
+
updatedAt: Date;
|
183
|
+
deletedAt: Date | null;
|
184
|
+
systemName: string;
|
185
|
+
displayName: string;
|
186
|
+
permissions: {
|
187
|
+
id: string;
|
188
|
+
description: string | null;
|
189
|
+
createdAt: Date;
|
190
|
+
updatedAt: Date;
|
191
|
+
deletedAt: Date | null;
|
192
|
+
systemName: string;
|
193
|
+
displayName: string;
|
194
|
+
}[];
|
195
|
+
}[];
|
196
|
+
extension: {
|
197
|
+
id: string;
|
198
|
+
createdAt: Date;
|
199
|
+
updatedAt: Date;
|
200
|
+
deletedAt: Date | null;
|
201
|
+
userId: string | null;
|
202
|
+
sipServerUrl: string;
|
203
|
+
sipUserName: string;
|
204
|
+
webphoneLoginUser: string;
|
205
|
+
extensionId: string | null;
|
206
|
+
extensionName: string;
|
207
|
+
telephonySignature: string | null;
|
208
|
+
};
|
209
|
+
}>;
|
5
210
|
}, "strip", z.ZodTypeAny, {
|
6
|
-
|
7
|
-
|
211
|
+
actor: {
|
212
|
+
id: string;
|
213
|
+
address: string | null;
|
214
|
+
name: string;
|
215
|
+
email: string;
|
216
|
+
createdAt: Date;
|
217
|
+
updatedAt: Date;
|
218
|
+
deletedAt: Date | null;
|
219
|
+
emailVerifiedAt: Date | null;
|
220
|
+
password: string;
|
221
|
+
phone: string | null;
|
222
|
+
notificationCount: number | null;
|
223
|
+
roles: {
|
224
|
+
id: string;
|
225
|
+
description: string | null;
|
226
|
+
createdAt: Date;
|
227
|
+
updatedAt: Date;
|
228
|
+
deletedAt: Date | null;
|
229
|
+
systemName: string;
|
230
|
+
displayName: string;
|
231
|
+
permissions: {
|
232
|
+
id: string;
|
233
|
+
description: string | null;
|
234
|
+
createdAt: Date;
|
235
|
+
updatedAt: Date;
|
236
|
+
deletedAt: Date | null;
|
237
|
+
systemName: string;
|
238
|
+
displayName: string;
|
239
|
+
}[];
|
240
|
+
}[];
|
241
|
+
extension: {
|
242
|
+
id: string;
|
243
|
+
createdAt: Date;
|
244
|
+
updatedAt: Date;
|
245
|
+
deletedAt: Date | null;
|
246
|
+
userId: string | null;
|
247
|
+
sipServerUrl: string;
|
248
|
+
sipUserName: string;
|
249
|
+
webphoneLoginUser: string;
|
250
|
+
extensionId: string | null;
|
251
|
+
extensionName: string;
|
252
|
+
telephonySignature: string | null;
|
253
|
+
};
|
254
|
+
};
|
255
|
+
lineId?: string | undefined;
|
256
|
+
accessToken?: string | undefined;
|
257
|
+
lineSecret?: string | undefined;
|
8
258
|
}, {
|
9
|
-
|
10
|
-
|
259
|
+
actor: {
|
260
|
+
id: string;
|
261
|
+
address: string | null;
|
262
|
+
name: string;
|
263
|
+
email: string;
|
264
|
+
createdAt: Date;
|
265
|
+
updatedAt: Date;
|
266
|
+
deletedAt: Date | null;
|
267
|
+
emailVerifiedAt: Date | null;
|
268
|
+
password: string;
|
269
|
+
phone: string | null;
|
270
|
+
notificationCount: number | null;
|
271
|
+
roles: {
|
272
|
+
id: string;
|
273
|
+
description: string | null;
|
274
|
+
createdAt: Date;
|
275
|
+
updatedAt: Date;
|
276
|
+
deletedAt: Date | null;
|
277
|
+
systemName: string;
|
278
|
+
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
|
+
}[];
|
289
|
+
extension: {
|
290
|
+
id: string;
|
291
|
+
createdAt: Date;
|
292
|
+
updatedAt: Date;
|
293
|
+
deletedAt: Date | null;
|
294
|
+
userId: string | null;
|
295
|
+
sipServerUrl: string;
|
296
|
+
sipUserName: string;
|
297
|
+
webphoneLoginUser: string;
|
298
|
+
extensionId: string | null;
|
299
|
+
extensionName: string;
|
300
|
+
telephonySignature: string | null;
|
301
|
+
};
|
302
|
+
};
|
303
|
+
lineId?: string | undefined;
|
304
|
+
accessToken?: string | undefined;
|
305
|
+
lineSecret?: string | undefined;
|
11
306
|
}>;
|
12
307
|
//# sourceMappingURL=schema.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/line/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/line/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAK5B,CAAC"}
|