@kl1/contracts 1.0.52 → 1.0.54

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.
Files changed (50) hide show
  1. package/dist/index.js +1298 -1133
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +1296 -1133
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/channel/index.d.ts +2273 -1438
  6. package/dist/src/channel/index.d.ts.map +1 -1
  7. package/dist/src/chat/index.d.ts +6678 -1560
  8. package/dist/src/chat/index.d.ts.map +1 -1
  9. package/dist/src/chat/schema.d.ts +180 -180
  10. package/dist/src/chat/validation.d.ts +371 -440
  11. package/dist/src/chat/validation.d.ts.map +1 -1
  12. package/dist/src/comment/index.d.ts +3026 -1010
  13. package/dist/src/comment/index.d.ts.map +1 -1
  14. package/dist/src/comment/schema.d.ts +780 -188
  15. package/dist/src/comment/schema.d.ts.map +1 -1
  16. package/dist/src/contact/index.d.ts +296 -296
  17. package/dist/src/contact/schema.d.ts +20 -20
  18. package/dist/src/contact/validation.d.ts +150 -150
  19. package/dist/src/contract.d.ts +20591 -8915
  20. package/dist/src/contract.d.ts.map +1 -1
  21. package/dist/src/cx-log/index.d.ts +240 -240
  22. package/dist/src/cx-log/schema.d.ts +180 -180
  23. package/dist/src/index.d.ts +2 -0
  24. package/dist/src/index.d.ts.map +1 -1
  25. package/dist/src/instagram/index.d.ts +100 -100
  26. package/dist/src/line/index.d.ts +301 -6
  27. package/dist/src/line/index.d.ts.map +1 -1
  28. package/dist/src/line/schema.d.ts +301 -6
  29. package/dist/src/line/schema.d.ts.map +1 -1
  30. package/dist/src/messenger/index.d.ts +100 -100
  31. package/dist/src/telephony-cdr/index.d.ts +180 -180
  32. package/dist/src/telephony-cdr/schema.d.ts +40 -40
  33. package/dist/src/ticket/index.d.ts +4128 -1040
  34. package/dist/src/ticket/index.d.ts.map +1 -1
  35. package/dist/src/ticket/schema.d.ts +512 -40
  36. package/dist/src/ticket/schema.d.ts.map +1 -1
  37. package/dist/src/{mail/mail-server.d.ts → upload/index.d.ts} +72 -91
  38. package/dist/src/upload/index.d.ts.map +1 -0
  39. package/dist/src/upload/schema.d.ts +14 -0
  40. package/dist/src/upload/schema.d.ts.map +1 -1
  41. package/dist/src/upload/validation.d.ts +2 -0
  42. package/dist/src/upload/validation.d.ts.map +1 -0
  43. package/dist/src/user-presence-status-log/index.d.ts +63 -0
  44. package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
  45. package/package.json +1 -1
  46. package/dist/src/app/index.d.ts +0 -17
  47. package/dist/src/app/index.d.ts.map +0 -1
  48. package/dist/src/mail/mail-server.d.ts.map +0 -1
  49. package/dist/src/platform-contact/schema.d.ts +0 -30
  50. package/dist/src/platform-contact/schema.d.ts.map +0 -1
@@ -1224,16 +1224,6 @@ export declare const instagramContract: {
1224
1224
  };
1225
1225
  }[];
1226
1226
  }[];
1227
- notes: string | null;
1228
- contactProfile: string | null;
1229
- socialProfileUrl: string | null;
1230
- tags: {
1231
- id: string;
1232
- name: string;
1233
- createdAt: Date;
1234
- updatedAt: Date;
1235
- deletedAt: Date | null;
1236
- }[];
1237
1227
  company: {
1238
1228
  id: string;
1239
1229
  createdAt: Date;
@@ -1244,6 +1234,16 @@ export declare const instagramContract: {
1244
1234
  phone?: string | null | undefined;
1245
1235
  industry?: string | null | undefined;
1246
1236
  } | null;
1237
+ notes: string | null;
1238
+ contactProfile: string | null;
1239
+ socialProfileUrl: string | null;
1240
+ tags: {
1241
+ id: string;
1242
+ name: string;
1243
+ createdAt: Date;
1244
+ updatedAt: Date;
1245
+ deletedAt: Date | null;
1246
+ }[];
1247
1247
  contactEmails: {
1248
1248
  id: string;
1249
1249
  isPrimary: boolean;
@@ -1327,16 +1327,6 @@ export declare const instagramContract: {
1327
1327
  };
1328
1328
  }[];
1329
1329
  }[];
1330
- notes: string | null;
1331
- contactProfile: string | null;
1332
- socialProfileUrl: string | null;
1333
- tags: {
1334
- id: string;
1335
- name: string;
1336
- createdAt: Date;
1337
- updatedAt: Date;
1338
- deletedAt: Date | null;
1339
- }[];
1340
1330
  company: {
1341
1331
  id: string;
1342
1332
  createdAt: Date;
@@ -1347,6 +1337,16 @@ export declare const instagramContract: {
1347
1337
  phone?: string | null | undefined;
1348
1338
  industry?: string | null | undefined;
1349
1339
  } | null;
1340
+ notes: string | null;
1341
+ contactProfile: string | null;
1342
+ socialProfileUrl: string | null;
1343
+ tags: {
1344
+ id: string;
1345
+ name: string;
1346
+ createdAt: Date;
1347
+ updatedAt: Date;
1348
+ deletedAt: Date | null;
1349
+ }[];
1350
1350
  contactEmails: {
1351
1351
  id: string;
1352
1352
  isPrimary: boolean;
@@ -1444,16 +1444,6 @@ export declare const instagramContract: {
1444
1444
  };
1445
1445
  }[];
1446
1446
  }[];
1447
- notes: string | null;
1448
- contactProfile: string | null;
1449
- socialProfileUrl: string | null;
1450
- tags: {
1451
- id: string;
1452
- name: string;
1453
- createdAt: Date;
1454
- updatedAt: Date;
1455
- deletedAt: Date | null;
1456
- }[];
1457
1447
  company: {
1458
1448
  id: string;
1459
1449
  createdAt: Date;
@@ -1464,6 +1454,16 @@ export declare const instagramContract: {
1464
1454
  phone?: string | null | undefined;
1465
1455
  industry?: string | null | undefined;
1466
1456
  } | null;
1457
+ notes: string | null;
1458
+ contactProfile: string | null;
1459
+ socialProfileUrl: string | null;
1460
+ tags: {
1461
+ id: string;
1462
+ name: string;
1463
+ createdAt: Date;
1464
+ updatedAt: Date;
1465
+ deletedAt: Date | null;
1466
+ }[];
1467
1467
  contactEmails: {
1468
1468
  id: string;
1469
1469
  isPrimary: boolean;
@@ -1562,16 +1562,6 @@ export declare const instagramContract: {
1562
1562
  };
1563
1563
  }[];
1564
1564
  }[];
1565
- notes: string | null;
1566
- contactProfile: string | null;
1567
- socialProfileUrl: string | null;
1568
- tags: {
1569
- id: string;
1570
- name: string;
1571
- createdAt: Date;
1572
- updatedAt: Date;
1573
- deletedAt: Date | null;
1574
- }[];
1575
1565
  company: {
1576
1566
  id: string;
1577
1567
  createdAt: Date;
@@ -1582,6 +1572,16 @@ export declare const instagramContract: {
1582
1572
  phone?: string | null | undefined;
1583
1573
  industry?: string | null | undefined;
1584
1574
  } | null;
1575
+ notes: string | null;
1576
+ contactProfile: string | null;
1577
+ socialProfileUrl: string | null;
1578
+ tags: {
1579
+ id: string;
1580
+ name: string;
1581
+ createdAt: Date;
1582
+ updatedAt: Date;
1583
+ deletedAt: Date | null;
1584
+ }[];
1585
1585
  contactEmails: {
1586
1586
  id: string;
1587
1587
  isPrimary: boolean;
@@ -2653,16 +2653,6 @@ export declare const instagramContract: {
2653
2653
  };
2654
2654
  }[];
2655
2655
  }[];
2656
- notes: string | null;
2657
- contactProfile: string | null;
2658
- socialProfileUrl: string | null;
2659
- tags: {
2660
- id: string;
2661
- name: string;
2662
- createdAt: Date;
2663
- updatedAt: Date;
2664
- deletedAt: Date | null;
2665
- }[];
2666
2656
  company: {
2667
2657
  id: string;
2668
2658
  createdAt: Date;
@@ -2673,6 +2663,16 @@ export declare const instagramContract: {
2673
2663
  phone?: string | null | undefined;
2674
2664
  industry?: string | null | undefined;
2675
2665
  } | null;
2666
+ notes: string | null;
2667
+ contactProfile: string | null;
2668
+ socialProfileUrl: string | null;
2669
+ tags: {
2670
+ id: string;
2671
+ name: string;
2672
+ createdAt: Date;
2673
+ updatedAt: Date;
2674
+ deletedAt: Date | null;
2675
+ }[];
2676
2676
  contactEmails: {
2677
2677
  id: string;
2678
2678
  isPrimary: boolean;
@@ -2972,16 +2972,6 @@ export declare const instagramContract: {
2972
2972
  };
2973
2973
  }[];
2974
2974
  }[];
2975
- notes: string | null;
2976
- contactProfile: string | null;
2977
- socialProfileUrl: string | null;
2978
- tags: {
2979
- id: string;
2980
- name: string;
2981
- createdAt: Date;
2982
- updatedAt: Date;
2983
- deletedAt: Date | null;
2984
- }[];
2985
2975
  company: {
2986
2976
  id: string;
2987
2977
  createdAt: Date;
@@ -2992,6 +2982,16 @@ export declare const instagramContract: {
2992
2982
  phone?: string | null | undefined;
2993
2983
  industry?: string | null | undefined;
2994
2984
  } | null;
2985
+ notes: string | null;
2986
+ contactProfile: string | null;
2987
+ socialProfileUrl: string | null;
2988
+ tags: {
2989
+ id: string;
2990
+ name: string;
2991
+ createdAt: Date;
2992
+ updatedAt: Date;
2993
+ deletedAt: Date | null;
2994
+ }[];
2995
2995
  contactEmails: {
2996
2996
  id: string;
2997
2997
  isPrimary: boolean;
@@ -4048,16 +4048,6 @@ export declare const instagramContract: {
4048
4048
  };
4049
4049
  }[];
4050
4050
  }[];
4051
- notes: string | null;
4052
- contactProfile: string | null;
4053
- socialProfileUrl: string | null;
4054
- tags: {
4055
- id: string;
4056
- name: string;
4057
- createdAt: Date;
4058
- updatedAt: Date;
4059
- deletedAt: Date | null;
4060
- }[];
4061
4051
  company: {
4062
4052
  id: string;
4063
4053
  createdAt: Date;
@@ -4068,6 +4058,16 @@ export declare const instagramContract: {
4068
4058
  phone?: string | null | undefined;
4069
4059
  industry?: string | null | undefined;
4070
4060
  } | null;
4061
+ notes: string | null;
4062
+ contactProfile: string | null;
4063
+ socialProfileUrl: string | null;
4064
+ tags: {
4065
+ id: string;
4066
+ name: string;
4067
+ createdAt: Date;
4068
+ updatedAt: Date;
4069
+ deletedAt: Date | null;
4070
+ }[];
4071
4071
  contactEmails: {
4072
4072
  id: string;
4073
4073
  isPrimary: boolean;
@@ -4530,16 +4530,6 @@ export declare const instagramContract: {
4530
4530
  };
4531
4531
  }[];
4532
4532
  }[];
4533
- notes: string | null;
4534
- contactProfile: string | null;
4535
- socialProfileUrl: string | null;
4536
- tags: {
4537
- id: string;
4538
- name: string;
4539
- createdAt: Date;
4540
- updatedAt: Date;
4541
- deletedAt: Date | null;
4542
- }[];
4543
4533
  company: {
4544
4534
  id: string;
4545
4535
  createdAt: Date;
@@ -4550,6 +4540,16 @@ export declare const instagramContract: {
4550
4540
  phone?: string | null | undefined;
4551
4541
  industry?: string | null | undefined;
4552
4542
  } | null;
4543
+ notes: string | null;
4544
+ contactProfile: string | null;
4545
+ socialProfileUrl: string | null;
4546
+ tags: {
4547
+ id: string;
4548
+ name: string;
4549
+ createdAt: Date;
4550
+ updatedAt: Date;
4551
+ deletedAt: Date | null;
4552
+ }[];
4553
4553
  contactEmails: {
4554
4554
  id: string;
4555
4555
  isPrimary: boolean;
@@ -5014,16 +5014,6 @@ export declare const instagramContract: {
5014
5014
  };
5015
5015
  }[];
5016
5016
  }[];
5017
- notes: string | null;
5018
- contactProfile: string | null;
5019
- socialProfileUrl: string | null;
5020
- tags: {
5021
- id: string;
5022
- name: string;
5023
- createdAt: Date;
5024
- updatedAt: Date;
5025
- deletedAt: Date | null;
5026
- }[];
5027
5017
  company: {
5028
5018
  id: string;
5029
5019
  createdAt: Date;
@@ -5034,6 +5024,16 @@ export declare const instagramContract: {
5034
5024
  phone?: string | null | undefined;
5035
5025
  industry?: string | null | undefined;
5036
5026
  } | null;
5027
+ notes: string | null;
5028
+ contactProfile: string | null;
5029
+ socialProfileUrl: string | null;
5030
+ tags: {
5031
+ id: string;
5032
+ name: string;
5033
+ createdAt: Date;
5034
+ updatedAt: Date;
5035
+ deletedAt: Date | null;
5036
+ }[];
5037
5037
  contactEmails: {
5038
5038
  id: string;
5039
5039
  isPrimary: boolean;
@@ -5499,16 +5499,6 @@ export declare const instagramContract: {
5499
5499
  };
5500
5500
  }[];
5501
5501
  }[];
5502
- notes: string | null;
5503
- contactProfile: string | null;
5504
- socialProfileUrl: string | null;
5505
- tags: {
5506
- id: string;
5507
- name: string;
5508
- createdAt: Date;
5509
- updatedAt: Date;
5510
- deletedAt: Date | null;
5511
- }[];
5512
5502
  company: {
5513
5503
  id: string;
5514
5504
  createdAt: Date;
@@ -5519,6 +5509,16 @@ export declare const instagramContract: {
5519
5509
  phone?: string | null | undefined;
5520
5510
  industry?: string | null | undefined;
5521
5511
  } | null;
5512
+ notes: string | null;
5513
+ contactProfile: string | null;
5514
+ socialProfileUrl: string | null;
5515
+ tags: {
5516
+ id: string;
5517
+ name: string;
5518
+ createdAt: Date;
5519
+ updatedAt: Date;
5520
+ deletedAt: Date | null;
5521
+ }[];
5522
5522
  contactEmails: {
5523
5523
  id: string;
5524
5524
  isPrimary: boolean;
@@ -47,14 +47,309 @@ export declare const lineContract: {
47
47
  };
48
48
  connect: {
49
49
  body: z.ZodObject<{
50
- id: z.ZodString;
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
- id: string;
54
- accessToken: string;
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
- id: string;
57
- accessToken: string;
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0BvB,CAAA"}
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"}