@tellescope/sdk 0.0.20 → 0.0.24

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.
@@ -1,378 +1,530 @@
1
1
  import { Session, SessionOptions } from "./session";
2
2
  import { APIQuery } from "./sdk";
3
3
  import { S3PresignedPost, UserIdentity } from "@tellescope/types-utilities";
4
- import { AttendeeInfo, Meeting } from "@tellescope/types-models";
5
- import { ClientModelForName_required, Enduser, File } from "@tellescope/types-client";
4
+ import { Attendee } from "@tellescope/types-models";
5
+ import { ClientModelForName_required, Enduser, File, Meeting, UserDisplayInfo } from "@tellescope/types-client";
6
6
  export interface EnduserSessionOptions extends SessionOptions {
7
7
  }
8
8
  declare type EnduserAccessibleModels = "chat_rooms" | 'chats' | 'files' | 'tickets';
9
9
  export declare const defaultQueries: <N extends keyof import("@tellescope/types-models").ModelForName>(s: EnduserSession, n: keyof ClientModelForName_required) => APIQuery<N, {
10
10
  endusers: import("@tellescope/types-models").Enduser & {
11
11
  id: string;
12
+ createdAt: Date;
12
13
  };
13
14
  engagement_events: import("@tellescope/types-models").EngagementEvent & {
14
15
  id: string;
16
+ createdAt: Date;
15
17
  };
16
18
  journeys: import("@tellescope/types-models").Journey & {
17
19
  id: string;
20
+ createdAt: Date;
18
21
  };
19
22
  api_keys: import("@tellescope/types-models").APIKey & {
20
23
  id: string;
24
+ createdAt: Date;
21
25
  };
22
26
  tasks: import("@tellescope/types-models").Task & {
23
27
  id: string;
28
+ createdAt: Date;
24
29
  };
25
30
  emails: import("@tellescope/types-models").Email & {
26
31
  id: string;
32
+ createdAt: Date;
27
33
  };
28
34
  sms_messages: import("@tellescope/types-models").SMSMessage & {
29
35
  id: string;
36
+ createdAt: Date;
30
37
  };
31
38
  chat_rooms: import("@tellescope/types-models").ChatRoom & {
32
39
  id: string;
40
+ createdAt: Date;
33
41
  };
34
42
  chats: import("@tellescope/types-models").ChatMessage & {
35
43
  id: string;
44
+ createdAt: Date;
36
45
  };
37
46
  users: import("@tellescope/types-models").User & {
38
47
  id: string;
48
+ createdAt: Date;
39
49
  };
40
50
  templates: import("@tellescope/types-models").MessageTemplate & {
41
51
  id: string;
52
+ createdAt: Date;
42
53
  };
43
54
  files: import("@tellescope/types-models").File & {
44
55
  id: string;
56
+ createdAt: Date;
45
57
  };
46
58
  tickets: import("@tellescope/types-models").Ticket & {
47
59
  id: string;
60
+ createdAt: Date;
48
61
  };
49
- meetings: Meeting & {
62
+ meetings: import("@tellescope/types-models").Meeting & {
50
63
  id: string;
64
+ createdAt: Date;
51
65
  };
52
66
  notes: import("@tellescope/types-models").Note & {
53
67
  id: string;
68
+ createdAt: Date;
69
+ };
70
+ webhooks: import("@tellescope/types-models").WebHook & {
71
+ id: string;
72
+ createdAt: Date;
54
73
  };
55
74
  }[N], {
56
75
  endusers: import("@tellescope/types-models").Enduser_required & {
57
76
  id: string;
77
+ createdAt: Date;
58
78
  };
59
79
  engagement_events: import("@tellescope/types-models").EngagementEvent_required & {
60
80
  id: string;
81
+ createdAt: Date;
61
82
  };
62
83
  journeys: import("@tellescope/types-models").Journey_required & {
63
84
  id: string;
85
+ createdAt: Date;
64
86
  };
65
87
  api_keys: import("@tellescope/types-models").APIKey_required & {
66
88
  id: string;
89
+ createdAt: Date;
67
90
  };
68
91
  tasks: import("@tellescope/types-models").Task_required & {
69
92
  id: string;
93
+ createdAt: Date;
70
94
  };
71
95
  emails: import("@tellescope/types-models").Email_required & {
72
96
  id: string;
97
+ createdAt: Date;
73
98
  };
74
99
  sms_messages: import("@tellescope/types-models").SMSMessage_required & {
75
100
  id: string;
101
+ createdAt: Date;
76
102
  };
77
103
  chat_rooms: import("@tellescope/types-models").ChatRoom_required & {
78
104
  id: string;
105
+ createdAt: Date;
79
106
  };
80
107
  chats: import("@tellescope/types-models").ChatMessage_required & {
81
108
  id: string;
109
+ createdAt: Date;
82
110
  };
83
111
  users: import("@tellescope/types-models").User_required & {
84
112
  id: string;
113
+ createdAt: Date;
85
114
  };
86
115
  templates: import("@tellescope/types-models").MessageTemplate_required & {
87
116
  id: string;
117
+ createdAt: Date;
88
118
  };
89
119
  files: import("@tellescope/types-models").File_required & {
90
120
  id: string;
121
+ createdAt: Date;
91
122
  };
92
123
  tickets: import("@tellescope/types-models").Ticket_required & {
93
124
  id: string;
125
+ createdAt: Date;
94
126
  };
95
127
  meetings: import("@tellescope/types-models").Meeting_required & {
96
128
  id: string;
129
+ createdAt: Date;
97
130
  };
98
131
  notes: import("@tellescope/types-models").Note_required & {
99
132
  id: string;
133
+ createdAt: Date;
134
+ };
135
+ webhooks: import("@tellescope/types-models").WebHook_required & {
136
+ id: string;
137
+ createdAt: Date;
100
138
  };
101
139
  }[N], Omit<{
102
140
  endusers: import("@tellescope/types-models").Enduser_required & {
103
141
  id: string;
142
+ createdAt: Date;
104
143
  };
105
144
  engagement_events: import("@tellescope/types-models").EngagementEvent_required & {
106
145
  id: string;
146
+ createdAt: Date;
107
147
  };
108
148
  journeys: import("@tellescope/types-models").Journey_required & {
109
149
  id: string;
150
+ createdAt: Date;
110
151
  };
111
152
  api_keys: import("@tellescope/types-models").APIKey_required & {
112
153
  id: string;
154
+ createdAt: Date;
113
155
  };
114
156
  tasks: import("@tellescope/types-models").Task_required & {
115
157
  id: string;
158
+ createdAt: Date;
116
159
  };
117
160
  emails: import("@tellescope/types-models").Email_required & {
118
161
  id: string;
162
+ createdAt: Date;
119
163
  };
120
164
  sms_messages: import("@tellescope/types-models").SMSMessage_required & {
121
165
  id: string;
166
+ createdAt: Date;
122
167
  };
123
168
  chat_rooms: import("@tellescope/types-models").ChatRoom_required & {
124
169
  id: string;
170
+ createdAt: Date;
125
171
  };
126
172
  chats: import("@tellescope/types-models").ChatMessage_required & {
127
173
  id: string;
174
+ createdAt: Date;
128
175
  };
129
176
  users: import("@tellescope/types-models").User_required & {
130
177
  id: string;
178
+ createdAt: Date;
131
179
  };
132
180
  templates: import("@tellescope/types-models").MessageTemplate_required & {
133
181
  id: string;
182
+ createdAt: Date;
134
183
  };
135
184
  files: import("@tellescope/types-models").File_required & {
136
185
  id: string;
186
+ createdAt: Date;
137
187
  };
138
188
  tickets: import("@tellescope/types-models").Ticket_required & {
139
189
  id: string;
190
+ createdAt: Date;
140
191
  };
141
192
  meetings: import("@tellescope/types-models").Meeting_required & {
142
193
  id: string;
194
+ createdAt: Date;
143
195
  };
144
196
  notes: import("@tellescope/types-models").Note_required & {
145
197
  id: string;
198
+ createdAt: Date;
199
+ };
200
+ webhooks: import("@tellescope/types-models").WebHook_required & {
201
+ id: string;
202
+ createdAt: Date;
146
203
  };
147
204
  }[N] & Partial<{
148
205
  endusers: import("@tellescope/types-models").Enduser & {
149
206
  id: string;
207
+ createdAt: Date;
150
208
  };
151
209
  engagement_events: import("@tellescope/types-models").EngagementEvent & {
152
210
  id: string;
211
+ createdAt: Date;
153
212
  };
154
213
  journeys: import("@tellescope/types-models").Journey & {
155
214
  id: string;
215
+ createdAt: Date;
156
216
  };
157
217
  api_keys: import("@tellescope/types-models").APIKey & {
158
218
  id: string;
219
+ createdAt: Date;
159
220
  };
160
221
  tasks: import("@tellescope/types-models").Task & {
161
222
  id: string;
223
+ createdAt: Date;
162
224
  };
163
225
  emails: import("@tellescope/types-models").Email & {
164
226
  id: string;
227
+ createdAt: Date;
165
228
  };
166
229
  sms_messages: import("@tellescope/types-models").SMSMessage & {
167
230
  id: string;
231
+ createdAt: Date;
168
232
  };
169
233
  chat_rooms: import("@tellescope/types-models").ChatRoom & {
170
234
  id: string;
235
+ createdAt: Date;
171
236
  };
172
237
  chats: import("@tellescope/types-models").ChatMessage & {
173
238
  id: string;
239
+ createdAt: Date;
174
240
  };
175
241
  users: import("@tellescope/types-models").User & {
176
242
  id: string;
243
+ createdAt: Date;
177
244
  };
178
245
  templates: import("@tellescope/types-models").MessageTemplate & {
179
246
  id: string;
247
+ createdAt: Date;
180
248
  };
181
249
  files: import("@tellescope/types-models").File & {
182
250
  id: string;
251
+ createdAt: Date;
183
252
  };
184
253
  tickets: import("@tellescope/types-models").Ticket & {
185
254
  id: string;
255
+ createdAt: Date;
186
256
  };
187
- meetings: Meeting & {
257
+ meetings: import("@tellescope/types-models").Meeting & {
188
258
  id: string;
259
+ createdAt: Date;
189
260
  };
190
261
  notes: import("@tellescope/types-models").Note & {
191
262
  id: string;
263
+ createdAt: Date;
264
+ };
265
+ webhooks: import("@tellescope/types-models").WebHook & {
266
+ id: string;
267
+ createdAt: Date;
192
268
  };
193
269
  }[N]>, keyof {
194
270
  endusers: import("@tellescope/types-models").Enduser_readonly & {
195
271
  id: string;
272
+ createdAt: Date;
196
273
  };
197
274
  engagement_events: import("@tellescope/types-models").EngagementEvent_readonly & {
198
275
  id: string;
276
+ createdAt: Date;
199
277
  };
200
278
  journeys: import("@tellescope/types-models").Journey_readonly & {
201
279
  id: string;
280
+ createdAt: Date;
202
281
  };
203
282
  api_keys: import("@tellescope/types-models").APIKey_readonly & {
204
283
  id: string;
284
+ createdAt: Date;
205
285
  };
206
286
  tasks: import("@tellescope/types-models").Task_readonly & {
207
287
  id: string;
288
+ createdAt: Date;
208
289
  };
209
290
  emails: import("@tellescope/types-models").Email_readonly & {
210
291
  id: string;
292
+ createdAt: Date;
211
293
  };
212
294
  sms_messages: import("@tellescope/types-models").SMSMessage_readonly & {
213
295
  id: string;
296
+ createdAt: Date;
214
297
  };
215
298
  chat_rooms: import("@tellescope/types-models").ChatRoom_readonly & {
216
299
  id: string;
300
+ createdAt: Date;
217
301
  };
218
302
  chats: import("@tellescope/types-models").ChatMessage_readonly & {
219
303
  id: string;
304
+ createdAt: Date;
220
305
  };
221
306
  users: import("@tellescope/types-models").User_readonly & {
222
307
  id: string;
308
+ createdAt: Date;
223
309
  };
224
310
  templates: import("@tellescope/types-models").MessageTemplate_readonly & {
225
311
  id: string;
312
+ createdAt: Date;
226
313
  };
227
314
  files: import("@tellescope/types-models").File_readonly & {
228
315
  id: string;
316
+ createdAt: Date;
229
317
  };
230
318
  tickets: import("@tellescope/types-models").Ticket_readonly & {
231
319
  id: string;
320
+ createdAt: Date;
232
321
  };
233
322
  meetings: import("@tellescope/types-models").Meeting_readonly & {
234
323
  id: string;
324
+ createdAt: Date;
235
325
  };
236
326
  notes: import("@tellescope/types-models").Note_readonly & {
237
327
  id: string;
328
+ createdAt: Date;
329
+ };
330
+ webhooks: import("@tellescope/types-models").WebHook_readonly & {
331
+ id: string;
332
+ createdAt: Date;
238
333
  };
239
334
  }[N]>, Omit<Partial<{
240
335
  endusers: import("@tellescope/types-models").Enduser & {
241
336
  id: string;
337
+ createdAt: Date;
242
338
  };
243
339
  engagement_events: import("@tellescope/types-models").EngagementEvent & {
244
340
  id: string;
341
+ createdAt: Date;
245
342
  };
246
343
  journeys: import("@tellescope/types-models").Journey & {
247
344
  id: string;
345
+ createdAt: Date;
248
346
  };
249
347
  api_keys: import("@tellescope/types-models").APIKey & {
250
348
  id: string;
349
+ createdAt: Date;
251
350
  };
252
351
  tasks: import("@tellescope/types-models").Task & {
253
352
  id: string;
353
+ createdAt: Date;
254
354
  };
255
355
  emails: import("@tellescope/types-models").Email & {
256
356
  id: string;
357
+ createdAt: Date;
257
358
  };
258
359
  sms_messages: import("@tellescope/types-models").SMSMessage & {
259
360
  id: string;
361
+ createdAt: Date;
260
362
  };
261
363
  chat_rooms: import("@tellescope/types-models").ChatRoom & {
262
364
  id: string;
365
+ createdAt: Date;
263
366
  };
264
367
  chats: import("@tellescope/types-models").ChatMessage & {
265
368
  id: string;
369
+ createdAt: Date;
266
370
  };
267
371
  users: import("@tellescope/types-models").User & {
268
372
  id: string;
373
+ createdAt: Date;
269
374
  };
270
375
  templates: import("@tellescope/types-models").MessageTemplate & {
271
376
  id: string;
377
+ createdAt: Date;
272
378
  };
273
379
  files: import("@tellescope/types-models").File & {
274
380
  id: string;
381
+ createdAt: Date;
275
382
  };
276
383
  tickets: import("@tellescope/types-models").Ticket & {
277
384
  id: string;
385
+ createdAt: Date;
278
386
  };
279
- meetings: Meeting & {
387
+ meetings: import("@tellescope/types-models").Meeting & {
280
388
  id: string;
389
+ createdAt: Date;
281
390
  };
282
391
  notes: import("@tellescope/types-models").Note & {
283
392
  id: string;
393
+ createdAt: Date;
394
+ };
395
+ webhooks: import("@tellescope/types-models").WebHook & {
396
+ id: string;
397
+ createdAt: Date;
284
398
  };
285
399
  }[N]>, keyof {
286
400
  endusers: import("@tellescope/types-models").Enduser_readonly & {
287
401
  id: string;
402
+ createdAt: Date;
288
403
  };
289
404
  engagement_events: import("@tellescope/types-models").EngagementEvent_readonly & {
290
405
  id: string;
406
+ createdAt: Date;
291
407
  };
292
408
  journeys: import("@tellescope/types-models").Journey_readonly & {
293
409
  id: string;
410
+ createdAt: Date;
294
411
  };
295
412
  api_keys: import("@tellescope/types-models").APIKey_readonly & {
296
413
  id: string;
414
+ createdAt: Date;
297
415
  };
298
416
  tasks: import("@tellescope/types-models").Task_readonly & {
299
417
  id: string;
418
+ createdAt: Date;
300
419
  };
301
420
  emails: import("@tellescope/types-models").Email_readonly & {
302
421
  id: string;
422
+ createdAt: Date;
303
423
  };
304
424
  sms_messages: import("@tellescope/types-models").SMSMessage_readonly & {
305
425
  id: string;
426
+ createdAt: Date;
306
427
  };
307
428
  chat_rooms: import("@tellescope/types-models").ChatRoom_readonly & {
308
429
  id: string;
430
+ createdAt: Date;
309
431
  };
310
432
  chats: import("@tellescope/types-models").ChatMessage_readonly & {
311
433
  id: string;
434
+ createdAt: Date;
312
435
  };
313
436
  users: import("@tellescope/types-models").User_readonly & {
314
437
  id: string;
438
+ createdAt: Date;
315
439
  };
316
440
  templates: import("@tellescope/types-models").MessageTemplate_readonly & {
317
441
  id: string;
442
+ createdAt: Date;
318
443
  };
319
444
  files: import("@tellescope/types-models").File_readonly & {
320
445
  id: string;
446
+ createdAt: Date;
321
447
  };
322
448
  tickets: import("@tellescope/types-models").Ticket_readonly & {
323
449
  id: string;
450
+ createdAt: Date;
324
451
  };
325
452
  meetings: import("@tellescope/types-models").Meeting_readonly & {
326
453
  id: string;
454
+ createdAt: Date;
327
455
  };
328
456
  notes: import("@tellescope/types-models").Note_readonly & {
329
457
  id: string;
458
+ createdAt: Date;
459
+ };
460
+ webhooks: import("@tellescope/types-models").WebHook_readonly & {
461
+ id: string;
462
+ createdAt: Date;
330
463
  };
331
464
  }[N] | keyof {
332
465
  endusers: import("@tellescope/types-models").Enduser_updatesDisabled & {
333
466
  id: string;
467
+ createdAt: Date;
334
468
  };
335
469
  engagement_events: import("@tellescope/types-models").EngagementEvent_updatesDisabled & {
336
470
  id: string;
471
+ createdAt: Date;
337
472
  };
338
473
  journeys: import("@tellescope/types-models").Journey_updatesDisabled & {
339
474
  id: string;
475
+ createdAt: Date;
340
476
  };
341
477
  api_keys: import("@tellescope/types-models").APIKey_updatesDisabled & {
342
478
  id: string;
479
+ createdAt: Date;
343
480
  };
344
481
  tasks: import("@tellescope/types-models").Task_updatesDisabled & {
345
482
  id: string;
483
+ createdAt: Date;
346
484
  };
347
485
  emails: import("@tellescope/types-models").Email_updatesDisabled & {
348
486
  id: string;
487
+ createdAt: Date;
349
488
  };
350
489
  sms_messages: import("@tellescope/types-models").SMSMessage_updatesDisabled & {
351
490
  id: string;
491
+ createdAt: Date;
352
492
  };
353
493
  chat_rooms: import("@tellescope/types-models").ChatRoom_updatesDisabled & {
354
494
  id: string;
495
+ createdAt: Date;
355
496
  };
356
497
  chats: import("@tellescope/types-models").ChatMessage_updatesDisabled & {
357
498
  id: string;
499
+ createdAt: Date;
358
500
  };
359
501
  users: import("@tellescope/types-models").User_updatesDisabled & {
360
502
  id: string;
503
+ createdAt: Date;
361
504
  };
362
505
  templates: import("@tellescope/types-models").MessageTemplate_updatesDisabled & {
363
506
  id: string;
507
+ createdAt: Date;
364
508
  };
365
509
  files: import("@tellescope/types-models").File_updatesDisabled & {
366
510
  id: string;
511
+ createdAt: Date;
367
512
  };
368
513
  tickets: import("@tellescope/types-models").Ticket_updatesDisabled & {
369
514
  id: string;
515
+ createdAt: Date;
370
516
  };
371
517
  meetings: import("@tellescope/types-models").Meeting_updatesDisabled & {
372
518
  id: string;
519
+ createdAt: Date;
373
520
  };
374
521
  notes: import("@tellescope/types-models").Note_updatesDisabled & {
375
522
  id: string;
523
+ createdAt: Date;
524
+ };
525
+ webhooks: import("@tellescope/types-models").WebHook_updatesDisabled & {
526
+ id: string;
527
+ createdAt: Date;
376
528
  };
377
529
  }[N]>>;
378
530
  declare type EnduserQueries = {
@@ -382,13 +534,7 @@ declare type EnduserQueries = {
382
534
  logout: () => Promise<void>;
383
535
  };
384
536
  users: {
385
- display_info: () => Promise<{
386
- fname?: string;
387
- lname?: string;
388
- id: string;
389
- lastActive?: Date;
390
- lastLogout?: Date;
391
- }[]>;
537
+ display_info: () => Promise<UserDisplayInfo[]>;
392
538
  };
393
539
  files: {
394
540
  prepare_file_upload: (args: {
@@ -409,7 +555,7 @@ declare type EnduserQueries = {
409
555
  attendee_info: (args: {
410
556
  id: string;
411
557
  }) => Promise<{
412
- attendee: AttendeeInfo;
558
+ attendee: Attendee;
413
559
  others: UserIdentity[];
414
560
  }>;
415
561
  my_meetings: () => Promise<Meeting[]>;
@@ -432,6 +578,7 @@ export declare class EnduserSession extends Session {
432
578
  authToken: string;
433
579
  enduser: import("@tellescope/types-models").Enduser & {
434
580
  id: string;
581
+ createdAt: Date;
435
582
  };
436
583
  }>;
437
584
  authenticate: (email: string, password: string, o?: {
@@ -440,18 +587,21 @@ export declare class EnduserSession extends Session {
440
587
  authToken: string;
441
588
  enduser: import("@tellescope/types-models").Enduser & {
442
589
  id: string;
590
+ createdAt: Date;
443
591
  };
444
592
  }>;
445
593
  refresh_session: () => Promise<{
446
594
  authToken: string;
447
595
  enduser: import("@tellescope/types-models").Enduser & {
448
596
  id: string;
597
+ createdAt: Date;
449
598
  };
450
599
  }>;
451
600
  refresh_session_if_expiring_soon: () => Promise<{
452
601
  authToken: string;
453
602
  enduser: import("@tellescope/types-models").Enduser & {
454
603
  id: string;
604
+ createdAt: Date;
455
605
  };
456
606
  } | undefined>;
457
607
  logout: () => Promise<void>;
@@ -1 +1 @@
1
- {"version":3,"file":"enduser.d.ts","sourceRoot":"","sources":["../../src/enduser.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"enduser.d.ts","sourceRoot":"","sources":["../../src/enduser.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"enduser.js","sourceRoot":"","sources":["../../src/enduser.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,qDAAqC;AAErC,qCAAmD;AAEnD,mDAAqD;AAkB9C,IAAM,cAAc,GAAG,UAC5B,CAAiB,EAAE,CAAoC;IAGvD,IAAM,QAAQ,GAAG,IAAA,yBAAa,EAAC,CAAC,CAAC,CAAA;IACjC,IAAM,YAAY,GAAG,CAAC,QAAQ,CAAC,CAAC,SAAS,CAAC,CAAC,EAAE,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;IAEjE,OAAO;QACL,SAAS,EAAE,UAAA,CAAC,IAAI,OAAA,CAAC,CAAC,KAAK,CAAC,cAAO,YAAY,CAAE,EAAE,CAAC,CAAC,EAAjC,CAAiC;QACjD,UAAU,EAAE,UAAA,EAAE,IAAI,OAAA,CAAC,CAAC,KAAK,CAAC,cAAO,QAAQ,CAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC,EAA1C,CAA0C;QAC5D,MAAM,EAAE,UAAC,QAAQ,IAAK,OAAA,OAAO,QAAQ,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,cAAO,YAAY,cAAI,QAAQ,CAAE,CAAC;YAC3C,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,cAAO,YAAY,CAAE,EAAE,EAAE,MAAM,EAAE,QAAQ,EAAC,CAAC,EADjF,CACiF;QACvG,OAAO,EAAE,UAAA,CAAC,IAAI,OAAA,CAAC,CAAC,IAAI,CAAC,cAAO,QAAQ,CAAE,EAAE,CAAC,CAAC,EAA5B,CAA4B;QAC1C,SAAS,EAAE,UAAC,EAAE,EAAE,OAAO,EAAE,OAAO,IAAK,OAAA,CAAC,CAAC,MAAM,CAAC,cAAO,YAAY,cAAI,EAAE,CAAE,EAAE,EAAE,OAAO,SAAA,EAAE,OAAO,SAAA,EAAE,CAAC,EAA3D,CAA2D;QAChG,SAAS,EAAE,UAAA,EAAE,IAAI,OAAA,CAAC,CAAC,OAAO,CAAC,cAAO,YAAY,cAAI,EAAE,CAAE,CAAC,EAAtC,CAAsC;KACxD,CAAA;AACH,CAAC,CAAA;AAhBY,QAAA,cAAc,kBAgB1B;AAoBD,IAAM,kBAAkB,GAAG,UAAC,CAAiB,IAAuD,OAAA,CAAC;IACnG,UAAU,EAAE,IAAA,sBAAc,EAAC,CAAC,EAAE,YAAY,CAAC;IAC3C,KAAK,EAAE,IAAA,sBAAc,EAAC,CAAC,EAAE,OAAO,CAAC;IACjC,KAAK,EAAE,IAAA,sBAAc,EAAC,CAAC,EAAE,OAAO,CAAC;IACjC,OAAO,EAAE,IAAA,sBAAc,EAAC,CAAC,EAAE,SAAS,CAAC;CACtC,CAAC,EALkG,CAKlG,CAAA;AAGF;IAAoC,kCAAO;IAIzC,wBAAY,CAAiD;QAA7D,YACE,wCAAW,CAAC,KAAE,QAAQ,EAAE,CAAA,CAAC,aAAD,CAAC,uBAAD,CAAC,CAAE,QAAQ,KAAI,oBAAoB,IAAG,SAqB/D;QAED,WAAK,GAAG,UAAiB,QAAgB,EAAE,IAAQ,EAAE,aAAkB;YAAlB,8BAAA,EAAA,oBAAkB;;;;gCACrE,qBAAM,IAAI,CAAC,gCAAgC,EAAE,EAAA;;4BAA7C,SAA6C,CAAA;4BACtC,qBAAM,IAAI,CAAC,IAAI,CAAM,QAAQ,EAAE,IAAI,EAAE,aAAa,CAAC,EAAA;gCAA1D,sBAAO,SAAmD,EAAA;;;;SAC3D,CAAA;QAED,UAAI,GAAG,UAAiB,QAAgB,EAAE,MAAU,EAAE,aAAkB;YAAlB,8BAAA,EAAA,oBAAkB;;;;gCACtE,qBAAM,IAAI,CAAC,gCAAgC,EAAE,EAAA;;4BAA7C,SAA6C,CAAA;4BACtC,qBAAM,IAAI,CAAC,GAAG,CAAM,QAAQ,EAAE,MAAM,EAAE,aAAa,CAAC,EAAA;gCAA3D,sBAAO,SAAoD,EAAA;;;;SAC5D,CAAA;QAED,YAAM,GAAG,UAAiB,QAAgB,EAAE,MAAU,EAAE,aAAkB;YAAlB,8BAAA,EAAA,oBAAkB;;;;gCACxE,qBAAM,IAAI,CAAC,gCAAgC,EAAE,EAAA;;4BAA7C,SAA6C,CAAA;4BACtC,qBAAM,IAAI,CAAC,KAAK,CAAM,QAAQ,EAAE,MAAM,EAAE,aAAa,CAAC,EAAA;gCAA7D,sBAAO,SAAsD,EAAA;;;;SAC9D,CAAA;QAED,aAAO,GAAG,UAAiB,QAAgB,EAAE,IAAQ,EAAE,aAAkB;YAAlB,8BAAA,EAAA,oBAAkB;;;;gCACvE,qBAAM,IAAI,CAAC,gCAAgC,EAAE,EAAA;;4BAA7C,SAA6C,CAAA;4BACtC,qBAAM,IAAI,CAAC,MAAM,CAAM,QAAQ,EAAE,IAAI,EAAE,aAAa,CAAC,EAAA;gCAA5D,sBAAO,SAAqD,EAAA;;;;SAC7D,CAAA;QAED,wBAAkB,GAAG,UAAO,EAA+D;gBAA7D,SAAS,eAAA,EAAE,OAAO,aAAA;;;;oBAC9C,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,GAAG,EAAE,CAAA;oBAC9B,IAAI,CAAC,YAAY,CAAC,SAAS,CAAC,CAAA;oBAC5B,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAA;oBAEzB,IAAI,CAAC,MAAM,GAAG,IAAA,qBAAE,EAAC,UAAG,IAAI,CAAC,IAAI,cAAI,OAAO,CAAC,UAAU,CAAE,EAAE,EAAE,UAAU,EAAE,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC,CAAC,8DAA8D;oBACrJ,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,YAAY,EAAE,cAAQ,KAAI,CAAC,mBAAmB,GAAG,KAAK,CAAA,CAAC,CAAC,CAAC,CAAA;oBACxE,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,eAAe,EAAE,cAAQ,KAAI,CAAC,mBAAmB,GAAG,IAAI,CAAA,CAAC,CAAC,CAAC,CAAA;oBAE1E,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,cAAc,EAAE,SAAS,CAAC,CAAA;oBAE3C,sBAAO,EAAE,SAAS,WAAA,EAAE,OAAO,SAAA,EAAE,EAAA;;;SAC9B,CAAA;QAED,kBAAY,GAAG,UAAO,KAAa,EAAE,QAAgB,EAAE,CAAoC;;;;;wBAAK,KAAA,IAAI,CAAC,kBAAkB,CAAA;wBACrH,qBAAM,IAAI,CAAC,IAAI,CAGb,mBAAmB,aAAI,KAAK,OAAA,EAAE,QAAQ,UAAA,IAAK,CAAC,EAAG,EAAA;4BAJ6C,sBAAA,SAAA,IAAI,GAClG,SAGiD,EAClD,EAAA;;;aAAA,CAAA;QAED,qBAAe,GAAG;;;;4BACe,qBAAM,IAAI,CAAC,IAAI,CAAmD,6BAA6B,CAAC,EAAA;;wBAAzH,KAAyB,SAAgG,EAAvH,OAAO,aAAA,EAAE,SAAS,eAAA;wBAC1B,sBAAO,IAAI,CAAC,kBAAkB,CAAC,EAAE,SAAS,WAAA,EAAE,OAAO,SAAA,EAAE,CAAC,EAAA;;;aACvD,CAAA;QAED,sCAAgC,GAAG;;;;;wBAC3B,gBAAgB,GAAI,IAAI,CAAC,GAAG,EAAE,GAAG,CAAC,IAAI,CAAC,YAAY,IAAI,IAAI,CAAC,GAAG,EAAE,CAAC,CAAA;6BAEpE,CAAA,IAAI,CAAC,eAAe,GAAG,gBAAgB,CAAA,EAAvC,wBAAuC;wBAClC,qBAAM,IAAI,CAAC,eAAe,EAAE,EAAA;4BAAnC,sBAAO,SAA4B,EAAA;;;;aAEtC,CAAA;QAED,YAAM,GAAG;;;;wBACP,IAAI,CAAC,UAAU,EAAE,CAAA;wBACjB,qBAAM,IAAI,CAAC,GAAG,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAA;;wBAArD,SAAqD,CAAA;;;;aACtD,CAAA;QA/EC,IAAI,CAAC,aAAD,CAAC,uBAAD,CAAC,CAAE,OAAO;YAAE,KAAI,CAAC,QAAQ,GAAG,CAAC,CAAC,OAAO,CAAA;QAEzC,KAAI,CAAC,GAAG,GAAG,kBAAkB,CAAC,KAAI,CAAmB,CAAA;QAErD,KAAI,CAAC,GAAG,CAAC,QAAQ,GAAG;YAClB,MAAM,EAAE,cAAM,OAAA,KAAI,CAAC,KAAK,CAAC,oBAAoB,CAAC,EAAhC,CAAgC;SAC/C,CAAA;QACD,KAAI,CAAC,GAAG,CAAC,KAAK,GAAG;YACf,YAAY,EAAE,cAAM,OAAA,KAAI,CAAC,IAAI,CAAsD,uBAAuB,CAAC,EAAvF,CAAuF;SAC5G,CAAA;QACD,KAAI,CAAC,GAAG,CAAC,QAAQ,GAAG;YAClB,aAAa,EAAE,UAAA,CAAC,IAAI,OAAA,KAAI,CAAC,IAAI,CAAC,mBAAmB,EAAE,CAAC,CAAC,EAAjC,CAAiC;YACrD,WAAW,EAAE,cAAM,OAAA,KAAI,CAAC,IAAI,CAAC,iBAAiB,CAAC,EAA5B,CAA4B;SAChD,CAAA;QAED,4BAA4B;QAC5B,KAAI,CAAC,GAAG,CAAC,KAAK,CAAC,mBAAmB,GAAG,UAAA,CAAC,IAAI,OAAA,KAAI,CAAC,KAAK,CAAC,yBAAyB,EAAE,CAAC,CAAC,EAAxC,CAAwC,CAAA;QAClF,KAAI,CAAC,GAAG,CAAC,KAAK,CAAC,iBAAiB,GAAG,UAAA,CAAC,IAAI,OAAA,KAAI,CAAC,IAAI,CAAC,uBAAuB,EAAE,CAAC,CAAC,EAArC,CAAqC,CAAA;;QAE7E,6CAA6C;IAC/C,CAAC;IA4DH,qBAAC;AAAD,CAAC,AAtFD,CAAoC,iBAAO,GAsF1C;AAtFY,wCAAc"}
1
+ {"version":3,"file":"enduser.js","sourceRoot":"","sources":["../../src/enduser.ts"],"names":[],"mappings":"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"}