@naniteninja/dashboard-components-lib 2.0.2 → 2.0.3

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/index.d.ts CHANGED
@@ -1,16 +1,15 @@
1
1
  import * as i0 from '@angular/core';
2
- import { OnInit, AfterViewInit, ElementRef, EventEmitter, ChangeDetectorRef, TemplateRef, PipeTransform, ModuleWithProviders, OnDestroy, OnChanges, SimpleChanges, InjectionToken } from '@angular/core';
2
+ import { TemplateRef, OnInit, AfterViewInit, ElementRef, EventEmitter, ChangeDetectorRef, PipeTransform, ModuleWithProviders, OnDestroy, OnChanges, SimpleChanges, InjectionToken } from '@angular/core';
3
3
  import * as i6 from '@naniteninja/ionic-lib';
4
- import { LibMenuItem, PopupModalService, LocationModel, BaseComponent, SelectOption, ImageModel, FormFieldType as FormFieldType$1, EmojiPickerConfig, InputFieldComponent, Profile, GridColumn } from '@naniteninja/ionic-lib';
5
- import * as i5$1 from '@angular/forms';
6
- import { FormControl, FormGroup, FormBuilder } from '@angular/forms';
4
+ import { LibMenuItem, LocationModel, SelectOption, ImageModel, PopupModalService, BaseComponent, FormFieldType as FormFieldType$1, EmojiPickerConfig, InputFieldComponent, Profile, GridColumn } from '@naniteninja/ionic-lib';
7
5
  import { Observable, BehaviorSubject } from 'rxjs';
8
- import { IAgendaDay as IAgendaDay$1 } from 'dashboard-components-lib';
9
6
  import * as i2 from '@angular/common';
10
7
  import { CurrencyPipe } from '@angular/common';
11
8
  import * as i3 from '@ionic/angular';
12
9
  import * as i5 from '@ngx-translate/core';
13
10
  import { TranslateService } from '@ngx-translate/core';
11
+ import * as i5$1 from '@angular/forms';
12
+ import { FormControl, FormGroup, FormBuilder } from '@angular/forms';
14
13
  import { Frequency } from 'rrule/dist/esm/types';
15
14
  import { JSONSchema } from '@ngx-pwa/local-storage';
16
15
  import * as i4 from '@angular/material/input';
@@ -22,22 +21,36 @@ import * as d3 from 'd3';
22
21
  import { SwiperOptions } from 'swiper/types';
23
22
  import moment from 'moment';
24
23
 
25
- interface IAutoDelegationPreferences {
26
- bust: {
27
- value: number;
28
- moe: number;
29
- };
30
- waist: {
31
- value: number;
32
- moe: number;
33
- };
34
- height: {
35
- value: number;
36
- moe: number;
24
+ interface IAd {
25
+ id?: string;
26
+ icon: string;
27
+ media: string;
28
+ headline: string;
29
+ advertiser?: string;
30
+ body: string;
31
+ callToAction: string;
32
+ clickUrl?: string;
33
+ cta?: string;
34
+ price?: string;
35
+ store?: string;
36
+ starRating?: number;
37
+ }
38
+
39
+ interface IAgendaDay extends IAgendaEvent {
40
+ name: string;
41
+ index: number;
42
+ dayNumber: number;
43
+ empty?: boolean;
44
+ }
45
+
46
+ interface IAgendaEvent {
47
+ date: Date;
48
+ startTime?: string;
49
+ endTime?: string;
50
+ user?: {
51
+ name: string;
52
+ profilePic?: string;
37
53
  };
38
- celibacy: number;
39
- cooperation: number;
40
- intelligence: number;
41
54
  }
42
55
 
43
56
  interface IAutoDelegationData {
@@ -71,6 +84,21 @@ interface IAutoDelegationData {
71
84
  planOptions?: string[];
72
85
  }
73
86
 
87
+ declare enum AgendaItemType {
88
+ DAY = "day",
89
+ AD = "ad"
90
+ }
91
+
92
+ declare enum AlertStatusFields {
93
+ upcomingDates = "upcomingDates",
94
+ compatibilityProfileTrait = "compatibilityProfileTrait",
95
+ compatibilityProfileSpider = "compatibilityProfileSpider",
96
+ chatHandoff = "chatHandoff",
97
+ chatProgress = "chatProgress",
98
+ chatMeetupAgenda = "chatMeetupAgenda",
99
+ face = "face"
100
+ }
101
+
74
102
  declare enum AutoDelegationEventTypes {
75
103
  Click = "click",
76
104
  Countdown = "countdown"
@@ -82,106 +110,43 @@ declare enum AutoDelegationEventValue {
82
110
  RequestAcceped = "request-accepted"
83
111
  }
84
112
 
85
- interface IAutoDelegationEvent {
86
- type: AutoDelegationEventTypes;
87
- value: AutoDelegationEventValue;
88
- }
89
-
90
- interface IAutoDelegationModalData {
91
- countdown: number;
92
- expandedBaseCard?: boolean;
93
- data: IAutoDelegationData;
94
- menuItems: LibMenuItem[];
95
- }
96
-
97
- declare class LibAutoDelegationModalComponent implements OnInit, AfterViewInit {
98
- private changeDetectorRef;
99
- private popupModalService;
100
- modalData?: IAutoDelegationModalData;
101
- childModalElementRef: ElementRef<HTMLDivElement>;
102
- countdown: number;
103
- expandedBaseCard?: boolean;
104
- data: IAutoDelegationData;
105
- menuItems: LibMenuItem[];
106
- event: EventEmitter<IAutoDelegationEvent>;
107
- totalStrokeLength: number;
108
- currentCountdownAt: number;
109
- activeCountdownPathId: string;
110
- strokeDashOffset: number;
111
- componentData: IAutoDelegationModalData | null;
112
- constructor(changeDetectorRef: ChangeDetectorRef, popupModalService: PopupModalService, modalData?: IAutoDelegationModalData);
113
- ngOnInit(): void;
114
- ngAfterViewInit(): void;
115
- reject(): void;
116
- accept(): void;
117
- static ɵfac: i0.ɵɵFactoryDeclaration<LibAutoDelegationModalComponent, [null, null, { optional: true; }]>;
118
- static ɵcmp: i0.ɵɵComponentDeclaration<LibAutoDelegationModalComponent, "lib-auto-delegation-modal", never, { "countdown": { "alias": "countdown"; "required": false; }; "expandedBaseCard": { "alias": "expandedBaseCard"; "required": false; }; "data": { "alias": "data"; "required": false; }; "menuItems": { "alias": "menuItems"; "required": false; }; }, { "event": "event"; }, never, never, true, never>;
119
- }
120
-
121
- interface IPreferenceItem {
122
- id: string;
123
- name: string;
124
- isSelected: boolean;
113
+ declare enum CalendarAccountEnum {
114
+ GOOGLE = "Google",
115
+ MICROSOFT = "Microsoft"
125
116
  }
126
117
 
127
- interface IVisualManagerModalData {
128
- preferences: IPreferenceItem[];
118
+ declare enum CalendarAccountIconsEnum {
119
+ Google = "googleCalender",
120
+ Microsoft = "microsoft"
129
121
  }
130
122
 
131
- declare enum VisualManagerModalEventTypes {
132
- Click = "click",
133
- Close = "close"
123
+ declare enum CircleVariable {
124
+ Partial = "partial",
125
+ Complete = "complete"
134
126
  }
135
127
 
136
- declare enum VisualManagerModalEventValue {
137
- Apply = "apply",
138
- Reset = "reset",
139
- AddPreference = "add-preference",
140
- RemovePreference = "remove-preference",
141
- Close = "close"
128
+ declare enum ClientDashboardTabs {
129
+ ChatScheduler = 0,
130
+ ChatCompatibility = 1,
131
+ ChatHandoff = 2
142
132
  }
143
133
 
144
- interface IVisualManagerModalEvent {
145
- type: VisualManagerModalEventTypes;
146
- value: VisualManagerModalEventValue;
147
- data?: {
148
- preferenceId?: string;
149
- preferences?: any[];
150
- };
134
+ declare enum ClientHomeComponent {
135
+ ChatCompatibility = "ChatCompatibility",
136
+ ChatHandoff = "ChatHandoff",
137
+ ChatScheduler = "ChatScheduler",
138
+ ClientMatchSpiderChart = "ClientMatchSpiderChart",
139
+ ClientMatchTraitChart = "ClientMatchTraitChart"
151
140
  }
152
141
 
153
- interface IVisualManagerModalModalData {
154
- data: IVisualManagerModalData;
142
+ declare enum CONVERSATION_FLAG {
143
+ UNRESPONSIVE = "unresponsive",
144
+ REDELEGATION = "redelegation"
155
145
  }
156
146
 
157
- declare class LibVisualManagerModalComponent implements OnInit, AfterViewInit {
158
- private changeDetectorRef;
159
- private popupModalService;
160
- modalData?: IVisualManagerModalModalData;
161
- childModalElementRef: ElementRef<HTMLDivElement>;
162
- data: IVisualManagerModalData;
163
- event: EventEmitter<IVisualManagerModalEvent>;
164
- componentData: IVisualManagerModalModalData | null;
165
- preferences: IPreferenceItem[];
166
- originalPreferences: IPreferenceItem[];
167
- preferenceControls: Map<string, FormControl>;
168
- get selectedItems(): IPreferenceItem[];
169
- get deselectedItems(): IPreferenceItem[];
170
- constructor(changeDetectorRef: ChangeDetectorRef, popupModalService: PopupModalService, modalData?: IVisualManagerModalModalData);
171
- ngOnInit(): void;
172
- ngAfterViewInit(): void;
173
- togglePreference(preference: IPreferenceItem, event?: Event): void;
174
- apply(): void;
175
- reset(): void;
176
- close(): void;
177
- onPreferenceNameChange(preference: IPreferenceItem, newName: string): void;
178
- getPreferenceControl(preferenceId: string): FormControl;
179
- onDragStart(event: DragEvent, preference: IPreferenceItem, isSelected: boolean): void;
180
- onDragEnd(event: DragEvent): void;
181
- onDragOver(event: DragEvent): void;
182
- onDrop(event: DragEvent, targetPreference: IPreferenceItem, isSelected: boolean): void;
183
- static ɵfac: i0.ɵɵFactoryDeclaration<LibVisualManagerModalComponent, [null, null, { optional: true; }]>;
184
- static ɵcmp: i0.ɵɵComponentDeclaration<LibVisualManagerModalComponent, "lib-visual-manager-modal", never, { "data": { "alias": "data"; "required": false; }; }, { "event": "event"; }, never, never, true, never>;
147
+ declare enum COUNTER_FLAG_BASE {
148
+ StartConversation = "startConversation",
149
+ LastResponse = "lastResponse"
185
150
  }
186
151
 
187
152
  declare enum Direction {
@@ -189,108 +154,131 @@ declare enum Direction {
189
154
  vertical = "vertical"
190
155
  }
191
156
 
192
- interface IAd {
193
- id?: string;
194
- icon: string;
195
- media: string;
196
- headline: string;
197
- advertiser?: string;
198
- body: string;
199
- callToAction: string;
200
- clickUrl?: string;
201
- cta?: string;
202
- price?: string;
203
- store?: string;
204
- starRating?: number;
157
+ declare enum EventTypes {
158
+ DATE = "Date",
159
+ GOOGLE = "Google",
160
+ MICROSOFT = "Microsoft",
161
+ SYSTEM = "System",// system created events
162
+ USER = "User",// user created events
163
+ ITINERARY = "Itinerary"
205
164
  }
206
165
 
207
- interface IAgendaEvent {
208
- date: Date;
209
- startTime?: string;
210
- endTime?: string;
211
- user?: {
212
- name: string;
213
- profilePic?: string;
214
- };
166
+ declare enum FormFieldType {
167
+ date = "date",
168
+ text = "text",
169
+ textarea = "textarea",
170
+ typeahead = "typeahead",
171
+ multiselect = "multiselect",
172
+ select = "select",
173
+ checkbox = "checkbox",
174
+ toggle = "toggle",
175
+ radio = "radio",
176
+ textlist = "textlist",
177
+ number = "number",
178
+ message = "message",
179
+ time = "time",
180
+ multifield = "multifield",
181
+ action = "action",
182
+ currency = "currency",
183
+ banner = "banner",
184
+ percentage = "percentage",
185
+ multiselectdropdown = "multiselectdropdown",
186
+ hyperlink = "hyperlink",
187
+ injectable = "injectable",
188
+ datetime = "datetime",
189
+ rating = "rating",
190
+ incrementer = "incrementer",
191
+ range = "range",
192
+ password = "password"
215
193
  }
216
194
 
217
- interface IAgendaDay extends IAgendaEvent {
218
- name: string;
219
- index: number;
220
- dayNumber: number;
221
- empty?: boolean;
195
+ declare enum HandoffPanelVersion {
196
+ STANDARD = "standard",
197
+ PRO = "pro",
198
+ SUPER = "super"
222
199
  }
223
200
 
224
- declare enum AgendaItemType {
225
- DAY = "day",
226
- AD = "ad"
201
+ declare enum INNER_CIRCLE_STATE {
202
+ Waiting = "waiting",
203
+ Quiet = "quiet",
204
+ Unresponsive = "unresponsive",
205
+ Redelegation = "redelegation"
227
206
  }
228
207
 
229
- type AgendaItem = {
230
- type: AgendaItemType;
231
- data: IAd | IAgendaDay$1;
232
- };
233
-
234
- declare class AgendaComponent implements OnInit {
235
- adsTemplate?: TemplateRef<HTMLElement>;
236
- agendaAdsData?: Array<IAd>;
237
- loading$: Observable<boolean>;
238
- startDate: Date;
239
- endDate: Date;
240
- set events(events: IAgendaEvent[]);
241
- numberOfEvents: number;
242
- days: IAgendaDay[];
243
- combinedAgendaItems: AgendaItem[];
244
- direction: Direction;
245
- private _events;
246
- ngOnInit(): void;
247
- set setAdsData(ads: IAd[]);
248
- private buildAgendaDays;
249
- private getSuccessiveEmptyDays;
250
- static ɵfac: i0.ɵɵFactoryDeclaration<AgendaComponent, never>;
251
- static ɵcmp: i0.ɵɵComponentDeclaration<AgendaComponent, "lib-agenda", never, { "adsTemplate": { "alias": "adsTemplate"; "required": false; }; "agendaAdsData": { "alias": "agendaAdsData"; "required": false; }; "loading$": { "alias": "loading$"; "required": false; }; "startDate": { "alias": "startDate"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; "events": { "alias": "events"; "required": false; }; "setAdsData": { "alias": "setAdsData"; "required": false; }; }, {}, never, never, false, never>;
208
+ declare enum MatcherStatuses {
209
+ STATUS0 = "no contact",
210
+ STATUS1 = "1st exchange",
211
+ STATUS2 = "2nd exchange",
212
+ STATUS3 = "3rd exchange",
213
+ STATUS4 = "2+ laughs",
214
+ STATUS5 = "idea signalled",
215
+ STATUS6 = "alt contact",
216
+ STATUS7 = "any romance",
217
+ STATUS8 = "locale confirmed",
218
+ STATUS9 = "time confirmed",
219
+ STATUS10 = "all followup"
252
220
  }
253
221
 
254
- declare class AgendaDayCardComponent implements OnInit {
255
- adDay: boolean;
256
- day: IAgendaDay;
257
- fullName: string;
258
- ngOnInit(): void;
259
- private sanitizeHtml;
260
- static ɵfac: i0.ɵɵFactoryDeclaration<AgendaDayCardComponent, never>;
261
- static ɵcmp: i0.ɵɵComponentDeclaration<AgendaDayCardComponent, "lib-agenda-day-card", never, { "adDay": { "alias": "adDay"; "required": false; }; "day": { "alias": "day"; "required": false; }; }, {}, never, ["*"], false, never>;
222
+ declare enum EditRecurringEventOptions {
223
+ CURRENT = "CURRENT",
224
+ FOLLOWING = "FOLLOWING",
225
+ ALL = "ALL"
262
226
  }
263
227
 
264
- declare class LibAgendaModule {
265
- static ɵfac: i0.ɵɵFactoryDeclaration<LibAgendaModule, never>;
266
- static ɵmod: i0.ɵɵNgModuleDeclaration<LibAgendaModule, [typeof AgendaComponent, typeof AgendaDayCardComponent], [typeof i2.CommonModule, typeof i3.IonicModule, typeof i5.TranslateModule, typeof i6.DirectiveModule, typeof i6.AvatarComponent], [typeof AgendaComponent]>;
267
- static ɵinj: i0.ɵɵInjectorDeclaration<LibAgendaModule>;
228
+ declare enum RecurringTypes {
229
+ DAILY = "DAILY",
230
+ WEEKLY = "WEEKLY",
231
+ MONTHLY = "MONTHLY",
232
+ ANNUALLY = "ANNUALLY"
268
233
  }
269
234
 
270
- declare class FallbackTranslatePipe implements PipeTransform {
271
- private translate;
272
- constructor(translate: TranslateService);
273
- transform(key: string, fallback: string): string;
274
- static ɵfac: i0.ɵɵFactoryDeclaration<FallbackTranslatePipe, never>;
275
- static ɵpipe: i0.ɵɵPipeDeclaration<FallbackTranslatePipe, "fallbackTranslate", true>;
276
- static ɵprov: i0.ɵɵInjectableDeclaration<FallbackTranslatePipe>;
235
+ declare enum ScheduleDateStatus {
236
+ Suggested = "suggested",
237
+ Canceled = "canceled",
238
+ Pending = "pending"
277
239
  }
278
240
 
279
- declare enum EditRecurringEventOptions {
280
- CURRENT = "CURRENT",
281
- FOLLOWING = "FOLLOWING",
282
- ALL = "ALL"
241
+ declare enum SenderTypes {
242
+ USER = "user",
243
+ OTHER = "other"
283
244
  }
284
245
 
285
- declare enum CalendarAccountEnum {
286
- GOOGLE = "Google",
287
- MICROSOFT = "Microsoft"
246
+ declare enum StatusTypes {
247
+ Info = "info",
248
+ Warning = "warning",
249
+ Error = "error",
250
+ Success = "success"
288
251
  }
289
252
 
290
- interface ICalendarAccountTheme {
291
- backgroundColor?: string;
292
- foregroundColor?: string;
293
- borderColor?: string;
253
+ declare enum SendMessageType {
254
+ INMEDIATELY = "send_immediately",
255
+ AFTER = "send_after",
256
+ SPECIFIC = "specify_time"
257
+ }
258
+
259
+ declare enum VisualManagerModalEventTypes {
260
+ Click = "click",
261
+ Close = "close"
262
+ }
263
+
264
+ declare enum VisualManagerModalEventValue {
265
+ Apply = "apply",
266
+ Reset = "reset",
267
+ AddPreference = "add-preference",
268
+ RemovePreference = "remove-preference",
269
+ Close = "close"
270
+ }
271
+
272
+ interface IAutoDelegationEvent {
273
+ type: AutoDelegationEventTypes;
274
+ value: AutoDelegationEventValue;
275
+ }
276
+
277
+ interface IAutoDelegationModalData {
278
+ countdown: number;
279
+ expandedBaseCard?: boolean;
280
+ data: IAutoDelegationData;
281
+ menuItems: LibMenuItem[];
294
282
  }
295
283
 
296
284
  interface ICalendarAccount {
@@ -306,39 +294,470 @@ interface ICalendarAccount {
306
294
  theme?: ICalendarAccountTheme;
307
295
  }
308
296
 
309
- declare enum EventTypes {
310
- DATE = "Date",
311
- GOOGLE = "Google",
312
- MICROSOFT = "Microsoft",
313
- SYSTEM = "System",// system created events
314
- USER = "User",// user created events
315
- ITINERARY = "Itinerary"
297
+ interface ICalendarAccountTheme {
298
+ backgroundColor?: string;
299
+ foregroundColor?: string;
300
+ borderColor?: string;
316
301
  }
317
302
 
318
- declare enum RecurringTypes {
319
- DAILY = "DAILY",
320
- WEEKLY = "WEEKLY",
321
- MONTHLY = "MONTHLY",
322
- ANNUALLY = "ANNUALLY"
303
+ interface ICircleData {
304
+ cx: string;
305
+ cy: string;
306
+ r: string;
307
+ transform: string;
308
+ stroke?: string;
309
+ 'stroke-width'?: string;
310
+ fill?: string;
311
+ filter?: string;
312
+ }
313
+
314
+ interface IDefsF {
315
+ id: string;
316
+ x: string;
317
+ y: string;
318
+ height: string;
319
+ width: string;
320
+ feGaussianTags: {
321
+ in: string;
322
+ stdDeviation: string;
323
+ }[];
324
+ }
325
+
326
+ interface IDefsLG {
327
+ id: string;
328
+ x1: string;
329
+ y1: string;
330
+ x2: string;
331
+ y2: string;
332
+ stopTags: {
333
+ offset: string;
334
+ style: string;
335
+ }[];
336
+ }
337
+
338
+ interface IDefsRG {
339
+ id: string;
340
+ cx: string;
341
+ cy: string;
342
+ r: string;
343
+ stopTags: {
344
+ offset: string;
345
+ style: string;
346
+ }[];
347
+ }
348
+
349
+ interface IChartData {
350
+ title: string;
351
+ keys: string[];
352
+ values: Record<string, number>;
353
+ }
354
+
355
+ interface IChatIdentifier {
356
+ chatId: string;
357
+ llmPreference: string;
358
+ prospectName: string;
359
+ }
360
+
361
+ interface IChatMeta {
362
+ lastResponseTimestamp: Date | null;
363
+ firstAnswer: boolean;
364
+ waitingAnswer: boolean;
365
+ conversationFlags: IConversationFlag[];
366
+ }
367
+
368
+ interface IChatSuggestion {
369
+ question: string;
370
+ percentage: number;
371
+ }
372
+
373
+ interface CircleProgressConfig {
374
+ /** Outer / main ring */
375
+ value: number;
376
+ max: number;
377
+ partialColors?: IPartialCircleProgressColors;
378
+ showExternalPartialCircleProgress?: boolean;
379
+ /** Inner ring */
380
+ inner?: {
381
+ value: number;
382
+ max: number;
383
+ colors?: IInnerPartialCircleProgressColors;
384
+ state: INNER_CIRCLE_STATE;
385
+ showIllumination?: boolean;
386
+ };
387
+ /** Visuals */
388
+ imageUrl?: string;
389
+ width?: string;
390
+ height?: string;
391
+ showValueProportionLabel?: boolean;
392
+ imgObjectPosition?: 'top' | 'bottom' | 'right' | 'left';
393
+ hasNotification?: boolean;
394
+ prefix?: string;
395
+ suffix?: string;
396
+ hideProgress?: boolean;
397
+ type?: string;
398
+ }
399
+
400
+ interface IClientDashboardInputs {
401
+ schedulerAdsTemplate?: TemplateRef<HTMLElement>;
402
+ schedulerTabAdsTemplate?: TemplateRef<HTMLElement>;
403
+ chatAdsTemplate?: TemplateRef<HTMLElement>;
404
+ chatTabAdsTemplate?: TemplateRef<HTMLElement>;
405
+ traitVisualAdsTemplate?: TemplateRef<HTMLElement>;
406
+ agendaAdsTemplate?: TemplateRef<HTMLElement>;
407
+ default?: boolean;
408
+ activeIndex?: number;
409
+ activeTabIndex?: number;
410
+ activeChartItem?: number;
411
+ slideContentMaxHeight?: string;
412
+ clientMatches$?: Observable<ILibClientMatchOverview[]>;
413
+ events?: IAgendaEvent[];
414
+ polygonColors?: IPolygonColor[];
415
+ spiderConfig?: ISpiderChartConfig;
416
+ schedulers$?: Observable<{
417
+ events$: Observable<ISchedulerEvent[]>;
418
+ }[]>;
419
+ alertStatus: Partial<Record<AlertStatusFields, boolean>>;
420
+ }
421
+
422
+ interface ILibClientMatchOverview {
423
+ _id?: string;
424
+ primary: IClientFields;
425
+ secondary: IClientFields;
426
+ preferences: number;
427
+ personality: number;
428
+ isExpanded?: boolean;
429
+ showHandoff?: boolean;
430
+ createdAt: Date;
431
+ prospectData: IProspectData;
432
+ matchRequest: IDashboardMatchRequest;
433
+ }
434
+ interface IClientFields {
435
+ name: string;
436
+ src: string;
437
+ }
438
+
439
+ interface ISpiderChartConfig {
440
+ w: number;
441
+ h: number;
442
+ fullScreen: boolean;
443
+ levels: number;
444
+ maxValue: number;
445
+ labelFactor: number;
446
+ wrapWidth: number;
447
+ opacityArea: number;
448
+ dotRadius: number;
449
+ opacityCircles: number;
450
+ strokeWidth: number;
451
+ color: d3.ScaleOrdinal<string, string>;
452
+ attributes: ISpiderChartAttribute[];
453
+ datasets: IDataset[];
454
+ }
455
+
456
+ interface IConversationFlag {
457
+ timestamp: Date;
458
+ prospectId: string;
459
+ basedOn: COUNTER_FLAG_BASE;
460
+ flag: CONVERSATION_FLAG;
461
+ }
462
+
463
+ interface IDashboardMatchRequest {
464
+ _id: string;
465
+ matcherId: string;
466
+ clientId: string;
467
+ clientName: string;
468
+ clientImages: string;
469
+ }
470
+
471
+ interface IDataset {
472
+ title: string;
473
+ keys: string[];
474
+ values: Record<string, number>;
475
+ polygon_color?: IPolygonColor;
476
+ }
477
+
478
+ interface IDateMessages {
479
+ date: Date;
480
+ isFirstMessage?: boolean;
481
+ message: IMessage;
482
+ }
483
+
484
+ interface IDatePrepInfo {
485
+ title: string;
486
+ items: string[];
487
+ }
488
+
489
+ interface IEventForm {
490
+ _id: FormControl<string>;
491
+ accountId: FormControl<string>;
492
+ type: FormControl<EventTypes>;
493
+ email: FormControl<string>;
494
+ title: FormControl<string>;
495
+ allDay: FormControl<boolean>;
496
+ startDate: FormControl<Date>;
497
+ startTime: FormControl<Date>;
498
+ endDate: FormControl<Date>;
499
+ endTime: FormControl<Date>;
500
+ note: FormControl<string>;
501
+ location: FormControl<LocationModel>;
502
+ address: FormControl<string>;
503
+ recurringPattern: FormGroup<{
504
+ type: FormControl<RecurringTypes>;
505
+ }>;
506
+ }
507
+
508
+ interface IEventFormOutput {
509
+ initialFormValue?: IEvent;
510
+ formValue?: IEvent;
511
+ event?: IEvent;
512
+ draggedEvent?: IEvent;
513
+ selectedRecurringOption?: EditRecurringEventOptions;
514
+ recurringTypeChanged?: boolean;
515
+ }
516
+
517
+ interface IEvent {
518
+ _id?: string;
519
+ title?: string;
520
+ allDay?: boolean;
521
+ startDate: Date;
522
+ startTime: Date;
523
+ endDate?: Date;
524
+ recurringEndDate?: Date;
525
+ recurringStartDate?: Date;
526
+ endTime?: Date;
527
+ note?: string;
528
+ type?: EventTypes;
529
+ email?: string;
530
+ accountId?: string;
531
+ timeZone?: string;
532
+ location?: LocationModel;
533
+ recurring?: boolean;
534
+ exception?: boolean;
535
+ recurringPattern?: IRecurringPattern;
536
+ link?: string;
537
+ recurringEventId?: string;
538
+ recurringParentEventId?: string;
539
+ updateAll?: boolean;
540
+ updateAllFollowing?: boolean;
541
+ etag?: string;
542
+ recurringInstanceNo?: number;
543
+ zIndex?: number;
544
+ userId?: string;
545
+ address?: string;
546
+ }
547
+
548
+ interface IEventTime {
549
+ startTime: Date;
550
+ endTime: Date;
551
+ }
552
+
553
+ interface IHandoffPanelInputs {
554
+ version?: HandoffPanelVersion;
555
+ messages$?: Observable<IMessage[]>;
556
+ scheduleSlots?: IScheduleSlot[];
557
+ datePrepInfo?: IDatePrepInfo;
558
+ default?: boolean;
559
+ activeTabIndex?: number;
560
+ }
561
+
562
+ interface IHomeDashboardInputs {
563
+ loading?: {
564
+ clientMatches: boolean;
565
+ };
566
+ schedulerAdsTemplate?: TemplateRef<HTMLElement>;
567
+ schedulerTabAdsTemplate?: TemplateRef<HTMLElement>;
568
+ chatAdsTemplate?: TemplateRef<HTMLElement>;
569
+ chatTabAdsTemplate?: TemplateRef<HTMLElement>;
570
+ traitVisualAdsTemplate?: TemplateRef<HTMLElement>;
571
+ default?: boolean;
572
+ component: ClientHomeComponent;
573
+ activeIndex?: number;
574
+ slideContentMaxHeight?: string;
575
+ clientMatches$?: Observable<ILibClientMatchOverview[]>;
576
+ events?: IAgendaEvent[];
577
+ polygonColors?: IPolygonColor[];
578
+ spiderConfig?: ISpiderChartConfig;
579
+ schedulers$?: Observable<{
580
+ events$: Observable<ISchedulerEvent[]>;
581
+ }[]>;
582
+ loading$?: Observable<boolean>;
583
+ bottomThumbs?: boolean;
584
+ includeTime?: boolean;
585
+ includeGifMessage?: boolean;
586
+ maxLength?: number;
587
+ startDate?: Date;
588
+ endDate?: Date;
589
+ emptyMessage?: string;
590
+ displayBookedStatuses?: boolean;
591
+ displayEmptyDays?: boolean;
592
+ chatInputValue?: string;
593
+ hideStatuses?: boolean;
594
+ alertStatus: Partial<Record<AlertStatusFields, boolean>>;
595
+ showValueProportionLabel?: boolean;
596
+ hideProgressBar?: boolean;
597
+ }
598
+
599
+ interface IInnerPartialCircleProgressColors {
600
+ primary: string;
601
+ secondary: string;
602
+ tertiary: string;
603
+ }
604
+
605
+ interface IMatcherDashboardInputs {
606
+ schedulerAdsTemplate?: TemplateRef<HTMLElement>;
607
+ schedulerTabAdsTemplate?: TemplateRef<HTMLElement>;
608
+ chatAdsTemplate?: TemplateRef<HTMLElement>;
609
+ loading?: {
610
+ clientMatches: boolean;
611
+ };
612
+ default?: boolean;
613
+ activeIndex?: number;
614
+ activeTabIndex?: number;
615
+ slideContentMaxHeight?: string;
616
+ clientMatches$?: Observable<ILibClientMatchOverview[]>;
617
+ events$?: Observable<ISchedulerEvent[]>;
618
+ polygonColors?: IPolygonColor[];
619
+ spiderConfig?: ISpiderChartConfig;
620
+ alertStatus: Partial<Record<AlertStatusFields, boolean>>;
621
+ llmPreferenceOptions?: SelectOption<string>[];
622
+ }
623
+
624
+ interface IDashboardMatcherProfile {
625
+ id: number;
626
+ name: string;
627
+ value: number;
628
+ photo: string;
629
+ notification: number;
630
+ progress: number;
631
+ }
632
+
633
+ interface IAttachment {
634
+ id?: number;
635
+ type: 'image' | 'gif';
636
+ url?: string;
637
+ base64?: string;
638
+ }
639
+
640
+ interface IMessage {
641
+ _id?: string;
642
+ sender: SenderTypes;
643
+ message: string;
644
+ timestamp: Date;
645
+ attachments?: IAttachment[];
646
+ sendOptions?: ISendOptionsMessage;
647
+ }
648
+
649
+ interface IPartialCircleProgressColors {
650
+ primary: string;
651
+ secondary: string;
652
+ tertiary: string;
653
+ gradientPrimary: string;
654
+ gradientSecondary: string;
655
+ incomplete: string;
656
+ complete: string;
657
+ }
658
+
659
+ interface IPolygonColor {
660
+ label: string;
661
+ value: string;
662
+ }
663
+
664
+ interface IPreferenceItem {
665
+ id: string;
666
+ name: string;
667
+ isSelected: boolean;
668
+ }
669
+
670
+ interface IAutoDelegationPreferences {
671
+ bust: {
672
+ value: number;
673
+ moe: number;
674
+ };
675
+ waist: {
676
+ value: number;
677
+ moe: number;
678
+ };
679
+ height: {
680
+ value: number;
681
+ moe: number;
682
+ };
683
+ celibacy: number;
684
+ cooperation: number;
685
+ intelligence: number;
686
+ }
687
+
688
+ interface IProfileAttribute {
689
+ label: string;
690
+ value: string;
691
+ match?: boolean;
692
+ }
693
+
694
+ interface IProfileComparisonData {
695
+ leftProfile: {
696
+ name: string;
697
+ attributes: IProfileAttribute[];
698
+ };
699
+ rightProfile: {
700
+ name: string;
701
+ attributes: IProfileAttribute[];
702
+ };
703
+ }
704
+
705
+ interface IProfileComparisonInputs {
706
+ data?: IProfileComparisonData;
707
+ default?: boolean;
708
+ }
709
+
710
+ /** Decision bundle returned to the component */
711
+ interface ProgressDecision {
712
+ state: INNER_CIRCLE_STATE;
713
+ innerValue: number | null;
714
+ tick: 'start' | 'stop';
715
+ basedOn: COUNTER_FLAG_BASE;
716
+ registered: boolean;
717
+ }
718
+
719
+ /** Inputs the pure function needs */
720
+ interface ProgressFacts {
721
+ createdAt: Date;
722
+ lastMessageTimestamp: Date | null;
723
+ firstAnswer: boolean;
724
+ waitingAnswer: boolean;
725
+ nowMs?: number;
726
+ innerMax: number;
727
+ conversationFlags: IConversationFlag[];
728
+ }
729
+
730
+ interface IProspectData {
731
+ messages: IMessage[];
732
+ prospectId: string;
733
+ status: MatcherStatuses;
734
+ prospectResponseTime: string;
735
+ chatSuggestions: IChatSuggestion[];
736
+ schedules: ISchedulerEvent[];
737
+ scheduleSuggestions: ISchedulerEventSuggestion[];
738
+ llmPreference: string;
739
+ _id: string;
740
+ prospectJoinDate: Date;
741
+ conversationFlags: IConversationFlag[];
742
+ numberMatcherStatuses: number;
743
+ chartData: IChartData[];
744
+ llmPreferenceLoading$?: BehaviorSubject<string[]>;
323
745
  }
324
746
 
325
- interface IEventForm {
326
- _id: FormControl<string>;
327
- accountId: FormControl<string>;
328
- type: FormControl<EventTypes>;
329
- email: FormControl<string>;
330
- title: FormControl<string>;
331
- allDay: FormControl<boolean>;
332
- startDate: FormControl<Date>;
333
- startTime: FormControl<Date>;
334
- endDate: FormControl<Date>;
335
- endTime: FormControl<Date>;
336
- note: FormControl<string>;
337
- location: FormControl<LocationModel>;
338
- address: FormControl<string>;
339
- recurringPattern: FormGroup<{
340
- type: FormControl<RecurringTypes>;
341
- }>;
747
+ interface IRecurringEvent {
748
+ title: string;
749
+ name?: string;
750
+ translateParams?: {
751
+ day: string;
752
+ };
753
+ subTitle?: string;
754
+ type?: RecurringTypes;
755
+ rrule?: {
756
+ freq: any;
757
+ bymonth?: number;
758
+ bymonthday?: number;
759
+ byweekday?: any;
760
+ };
342
761
  }
343
762
 
344
763
  interface IRecurringEventException {
@@ -370,65 +789,205 @@ interface IRecurringPattern {
370
789
  };
371
790
  }
372
791
 
373
- interface IEvent {
792
+ interface IScheduleSlot {
793
+ id: string;
794
+ time: string;
795
+ duration: string;
796
+ description?: string;
797
+ profileImage?: string;
798
+ selected: boolean;
799
+ }
800
+
801
+ interface ISchedulerAction {
802
+ event: ISchedulerEvent;
803
+ index: number;
804
+ suggestion?: ISchedulerEventSuggestion;
805
+ suggestionIndex?: number;
806
+ matchRequest?: IDashboardMatchRequest;
807
+ }
808
+
809
+ interface ISchedulerEventDay {
810
+ day: string;
811
+ events: ISchedulerEvent[];
812
+ }
813
+
814
+ interface ISchedulerEvent {
374
815
  _id?: string;
375
- title?: string;
376
- allDay?: boolean;
377
- startDate: Date;
378
- startTime: Date;
379
- endDate?: Date;
380
- recurringEndDate?: Date;
381
- recurringStartDate?: Date;
382
- endTime?: Date;
383
- note?: string;
384
- type?: EventTypes;
385
- email?: string;
386
- accountId?: string;
387
816
  timeZone?: string;
388
- location?: LocationModel;
389
- recurring?: boolean;
390
- exception?: boolean;
391
- recurringPattern?: IRecurringPattern;
392
- link?: string;
393
- recurringEventId?: string;
394
- recurringParentEventId?: string;
395
- updateAll?: boolean;
396
- updateAllFollowing?: boolean;
397
- etag?: string;
398
- recurringInstanceNo?: number;
399
- zIndex?: number;
400
- userId?: string;
401
- address?: string;
817
+ start: Date;
818
+ day: string;
819
+ end: Date;
820
+ hours: string;
821
+ allDay?: boolean;
822
+ blocked?: boolean;
823
+ booked?: boolean;
824
+ expanded?: boolean;
825
+ suggestions?: ISchedulerEventSuggestion[];
826
+ index?: number;
827
+ startTime?: string;
828
+ endTime?: string;
829
+ status?: {
830
+ client: ScheduleDateStatus;
831
+ matcher: ScheduleDateStatus;
832
+ };
833
+ images?: ImageModel[];
834
+ matchRequest?: IDashboardMatchRequest;
402
835
  }
403
836
 
404
- interface IEventFormOutput {
405
- initialFormValue?: IEvent;
406
- formValue?: IEvent;
407
- event?: IEvent;
408
- draggedEvent?: IEvent;
409
- selectedRecurringOption?: EditRecurringEventOptions;
410
- recurringTypeChanged?: boolean;
837
+ interface ISchedulerEventSuggestion {
838
+ _id?: string;
839
+ title: string;
840
+ checked?: boolean;
841
+ canceled?: boolean;
842
+ suggestionId?: string;
843
+ prospect?: string;
844
+ status?: {
845
+ client: ScheduleDateStatus;
846
+ matcher: ScheduleDateStatus;
847
+ };
411
848
  }
412
849
 
413
- interface IRecurringEvent {
850
+ interface ISchedulerEventSlots {
851
+ day: string;
852
+ date: Date;
853
+ events: ISchedulerEvent[];
854
+ }
855
+
856
+ interface ISendOptionsMessage {
857
+ type: SendMessageType;
858
+ arrivalDate?: Date;
859
+ }
860
+
861
+ interface ISpiderChartAttribute {
862
+ key: string;
863
+ text: string;
864
+ titleAlertPopup?: string;
865
+ descriptionAlertPopup?: string;
866
+ }
867
+
868
+ interface IStatus {
414
869
  title: string;
415
- name?: string;
416
- translateParams?: {
417
- day: string;
870
+ subtitle: string;
871
+ value: MatcherStatuses;
872
+ }
873
+
874
+ interface ITenorMediaFormat {
875
+ url: string;
876
+ duration: number;
877
+ preview: string;
878
+ dims: number[];
879
+ size: number;
880
+ }
881
+
882
+ interface ITenorObject {
883
+ results: ITenorResult[];
884
+ next: string;
885
+ }
886
+
887
+ interface ITenorResult {
888
+ id: string;
889
+ title: string;
890
+ media_formats: {
891
+ [key: string]: ITenorMediaFormat;
418
892
  };
419
- subTitle?: string;
420
- type?: RecurringTypes;
421
- rrule?: {
422
- freq: any;
423
- bymonth?: number;
424
- bymonthday?: number;
425
- byweekday?: any;
893
+ created: number;
894
+ content_description: string;
895
+ itemurl: string;
896
+ url: string;
897
+ tags: string[];
898
+ flags: string[];
899
+ hasaudio: boolean;
900
+ content_description_source: 'GENERATIVE_AI';
901
+ }
902
+
903
+ interface IVisualManagerModalData {
904
+ preferences: IPreferenceItem[];
905
+ }
906
+
907
+ interface IVisualManagerModalEvent {
908
+ type: VisualManagerModalEventTypes;
909
+ value: VisualManagerModalEventValue;
910
+ data?: {
911
+ preferenceId?: string;
912
+ preferences?: any[];
426
913
  };
427
914
  }
428
915
 
429
- interface IEventTime {
430
- startTime: Date;
431
- endTime: Date;
916
+ interface IVisualManagerModalModalData {
917
+ data: IVisualManagerModalData;
918
+ }
919
+
920
+ declare class LibAutoDelegationModalComponent implements OnInit, AfterViewInit {
921
+ private changeDetectorRef;
922
+ private popupModalService;
923
+ modalData?: IAutoDelegationModalData;
924
+ childModalElementRef: ElementRef<HTMLDivElement>;
925
+ countdown: number;
926
+ expandedBaseCard?: boolean;
927
+ data: IAutoDelegationData;
928
+ menuItems: LibMenuItem[];
929
+ event: EventEmitter<IAutoDelegationEvent>;
930
+ totalStrokeLength: number;
931
+ currentCountdownAt: number;
932
+ activeCountdownPathId: string;
933
+ strokeDashOffset: number;
934
+ componentData: IAutoDelegationModalData | null;
935
+ constructor(changeDetectorRef: ChangeDetectorRef, popupModalService: PopupModalService, modalData?: IAutoDelegationModalData);
936
+ ngOnInit(): void;
937
+ ngAfterViewInit(): void;
938
+ reject(): void;
939
+ accept(): void;
940
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibAutoDelegationModalComponent, [null, null, { optional: true; }]>;
941
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibAutoDelegationModalComponent, "lib-auto-delegation-modal", never, { "countdown": { "alias": "countdown"; "required": false; }; "expandedBaseCard": { "alias": "expandedBaseCard"; "required": false; }; "data": { "alias": "data"; "required": false; }; "menuItems": { "alias": "menuItems"; "required": false; }; }, { "event": "event"; }, never, never, true, never>;
942
+ }
943
+
944
+ type AgendaItem = {
945
+ type: AgendaItemType;
946
+ data: IAd | IAgendaDay;
947
+ };
948
+
949
+ declare class AgendaComponent implements OnInit {
950
+ adsTemplate?: TemplateRef<HTMLElement>;
951
+ agendaAdsData?: Array<IAd>;
952
+ loading$: Observable<boolean>;
953
+ startDate: Date;
954
+ endDate: Date;
955
+ set events(events: IAgendaEvent[]);
956
+ numberOfEvents: number;
957
+ days: IAgendaDay[];
958
+ combinedAgendaItems: AgendaItem[];
959
+ direction: Direction;
960
+ private _events;
961
+ ngOnInit(): void;
962
+ set setAdsData(ads: IAd[]);
963
+ private buildAgendaDays;
964
+ private getSuccessiveEmptyDays;
965
+ static ɵfac: i0.ɵɵFactoryDeclaration<AgendaComponent, never>;
966
+ static ɵcmp: i0.ɵɵComponentDeclaration<AgendaComponent, "lib-agenda", never, { "adsTemplate": { "alias": "adsTemplate"; "required": false; }; "agendaAdsData": { "alias": "agendaAdsData"; "required": false; }; "loading$": { "alias": "loading$"; "required": false; }; "startDate": { "alias": "startDate"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; "events": { "alias": "events"; "required": false; }; "setAdsData": { "alias": "setAdsData"; "required": false; }; }, {}, never, never, false, never>;
967
+ }
968
+
969
+ declare class AgendaDayCardComponent implements OnInit {
970
+ adDay: boolean;
971
+ day: IAgendaDay;
972
+ fullName: string;
973
+ ngOnInit(): void;
974
+ private sanitizeHtml;
975
+ static ɵfac: i0.ɵɵFactoryDeclaration<AgendaDayCardComponent, never>;
976
+ static ɵcmp: i0.ɵɵComponentDeclaration<AgendaDayCardComponent, "lib-agenda-day-card", never, { "adDay": { "alias": "adDay"; "required": false; }; "day": { "alias": "day"; "required": false; }; }, {}, never, ["*"], false, never>;
977
+ }
978
+
979
+ declare class LibAgendaModule {
980
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibAgendaModule, never>;
981
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LibAgendaModule, [typeof AgendaComponent, typeof AgendaDayCardComponent], [typeof i2.CommonModule, typeof i3.IonicModule, typeof i5.TranslateModule, typeof i6.DirectiveModule, typeof i6.AvatarComponent], [typeof AgendaComponent]>;
982
+ static ɵinj: i0.ɵɵInjectorDeclaration<LibAgendaModule>;
983
+ }
984
+
985
+ declare class FallbackTranslatePipe implements PipeTransform {
986
+ private translate;
987
+ constructor(translate: TranslateService);
988
+ transform(key: string, fallback: string): string;
989
+ static ɵfac: i0.ɵɵFactoryDeclaration<FallbackTranslatePipe, never>;
990
+ static ɵpipe: i0.ɵɵPipeDeclaration<FallbackTranslatePipe, "fallbackTranslate", true>;
432
991
  }
433
992
 
434
993
  declare class CalendarUtilsService {
@@ -538,35 +1097,6 @@ declare class LibEventInfoComponent implements OnInit {
538
1097
  static ɵcmp: i0.ɵɵComponentDeclaration<LibEventInfoComponent, "lib-event-info", never, { "event": { "alias": "event"; "required": false; }; "calendars": { "alias": "calendars"; "required": false; }; }, {}, never, never, true, never>;
539
1098
  }
540
1099
 
541
- declare enum FormFieldType {
542
- date = "date",
543
- text = "text",
544
- textarea = "textarea",
545
- typeahead = "typeahead",
546
- multiselect = "multiselect",
547
- select = "select",
548
- checkbox = "checkbox",
549
- toggle = "toggle",
550
- radio = "radio",
551
- textlist = "textlist",
552
- number = "number",
553
- message = "message",
554
- time = "time",
555
- multifield = "multifield",
556
- action = "action",
557
- currency = "currency",
558
- banner = "banner",
559
- percentage = "percentage",
560
- multiselectdropdown = "multiselectdropdown",
561
- hyperlink = "hyperlink",
562
- injectable = "injectable",
563
- datetime = "datetime",
564
- rating = "rating",
565
- incrementer = "incrementer",
566
- range = "range",
567
- password = "password"
568
- }
569
-
570
1100
  declare class LibEditRecurringEventComponent implements OnInit {
571
1101
  private fallbackTranslatePipe;
572
1102
  excludeCurrentInstance: boolean;
@@ -590,82 +1120,6 @@ declare class LibEventFormModule {
590
1120
  static ɵinj: i0.ɵɵInjectorDeclaration<LibEventFormModule>;
591
1121
  }
592
1122
 
593
- declare enum CalendarAccountIconsEnum {
594
- Google = "googleCalender",
595
- Microsoft = "microsoft"
596
- }
597
-
598
- declare const recurringOptions: IRecurringEvent[];
599
-
600
- declare enum ScheduleDateStatus {
601
- Suggested = "suggested",
602
- Canceled = "canceled",
603
- Pending = "pending"
604
- }
605
-
606
- interface IDashboardMatchRequest {
607
- _id: string;
608
- matcherId: string;
609
- clientId: string;
610
- clientName: string;
611
- clientImages: string;
612
- }
613
-
614
- interface ISchedulerEventSuggestion {
615
- _id?: string;
616
- title: string;
617
- checked?: boolean;
618
- canceled?: boolean;
619
- suggestionId?: string;
620
- prospect?: string;
621
- status?: {
622
- client: ScheduleDateStatus;
623
- matcher: ScheduleDateStatus;
624
- };
625
- }
626
-
627
- interface ISchedulerEvent {
628
- _id?: string;
629
- timeZone?: string;
630
- start: Date;
631
- day: string;
632
- end: Date;
633
- hours: string;
634
- allDay?: boolean;
635
- blocked?: boolean;
636
- booked?: boolean;
637
- expanded?: boolean;
638
- suggestions?: ISchedulerEventSuggestion[];
639
- index?: number;
640
- startTime?: string;
641
- endTime?: string;
642
- status?: {
643
- client: ScheduleDateStatus;
644
- matcher: ScheduleDateStatus;
645
- };
646
- images?: ImageModel[];
647
- matchRequest?: IDashboardMatchRequest;
648
- }
649
-
650
- interface ISchedulerAction {
651
- event: ISchedulerEvent;
652
- index: number;
653
- suggestion?: ISchedulerEventSuggestion;
654
- suggestionIndex?: number;
655
- matchRequest?: IDashboardMatchRequest;
656
- }
657
-
658
- interface ISchedulerEventSlots {
659
- day: string;
660
- date: Date;
661
- events: ISchedulerEvent[];
662
- }
663
-
664
- interface ISchedulerEventDay {
665
- day: string;
666
- events: ISchedulerEvent[];
667
- }
668
-
669
1123
  declare class LibSchedulerComponent implements OnInit, OnDestroy {
670
1124
  private cdr;
671
1125
  adsTemplate?: TemplateRef<HTMLElement>;
@@ -697,11 +1151,6 @@ declare class LibSchedulerComponent implements OnInit, OnDestroy {
697
1151
  static ɵcmp: i0.ɵɵComponentDeclaration<LibSchedulerComponent, "lib-scheduler", never, { "adsTemplate": { "alias": "adsTemplate"; "required": false; }; "loading$": { "alias": "loading$"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "displayBookedStatuses": { "alias": "displayBookedStatuses"; "required": false; }; "displayEmptyDays": { "alias": "displayEmptyDays"; "required": false; }; "events$": { "alias": "events$"; "required": false; }; "startDate": { "alias": "startDate"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; "default": { "alias": "default"; "required": false; }; }, { "bookEvent": "bookEvent"; "removeSuggestion": "removeSuggestion"; }, never, never, true, never>;
698
1152
  }
699
1153
 
700
- interface IChatSuggestion {
701
- question: string;
702
- percentage: number;
703
- }
704
-
705
1154
  declare class ChatSuggestionComponent {
706
1155
  chatSuggestions: IChatSuggestion[];
707
1156
  suggestClicked?: EventEmitter<string>;
@@ -720,53 +1169,15 @@ declare abstract class AbstractCacheService {
720
1169
  static ɵprov: i0.ɵɵInjectableDeclaration<AbstractCacheService>;
721
1170
  }
722
1171
 
723
- declare enum SenderTypes {
724
- USER = "user",
725
- OTHER = "other"
726
- }
727
-
728
- interface IAttachment {
729
- id?: number;
730
- type: 'image' | 'gif';
731
- url?: string;
732
- base64?: string;
733
- }
734
-
735
- declare enum SendMessageType {
736
- INMEDIATELY = "send_immediately",
737
- AFTER = "send_after",
738
- SPECIFIC = "specify_time"
739
- }
740
-
741
- interface ISendOptionsMessage {
742
- type: SendMessageType;
743
- arrivalDate?: Date;
744
- }
745
-
746
- interface IMessage {
747
- _id?: string;
748
- sender: SenderTypes;
749
- message: string;
750
- timestamp: Date;
751
- attachments?: IAttachment[];
752
- sendOptions?: ISendOptionsMessage;
753
- }
754
-
755
- interface IDateMessages {
756
- date: Date;
757
- isFirstMessage?: boolean;
758
- message: IMessage;
759
- }
760
-
761
- declare class ChatService {
1172
+ declare class ChatService$1 {
762
1173
  cacheService: AbstractCacheService;
763
1174
  constructor(cacheService: AbstractCacheService);
764
1175
  setLongPressForSendImmediately(enabled: boolean): void;
765
1176
  isLongPressForSendImmediately(): Observable<boolean>;
766
1177
  transformMessages(messages: IMessage[]): IDateMessages[];
767
1178
  updateDateMessages(dateMessages: IDateMessages[]): IDateMessages[];
768
- static ɵfac: i0.ɵɵFactoryDeclaration<ChatService, never>;
769
- static ɵprov: i0.ɵɵInjectableDeclaration<ChatService>;
1179
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChatService$1, never>;
1180
+ static ɵprov: i0.ɵɵInjectableDeclaration<ChatService$1>;
770
1181
  }
771
1182
 
772
1183
  declare class LibMessageModalComponent implements OnInit {
@@ -783,7 +1194,7 @@ declare class LibMessageModalComponent implements OnInit {
783
1194
  toggleLongPress: FormControl<boolean>;
784
1195
  type: FormFieldType$1;
785
1196
  formTime: FormGroup;
786
- constructor(fb: FormBuilder, popupModalService: PopupModalService, chatService: ChatService, modalData?: {
1197
+ constructor(fb: FormBuilder, popupModalService: PopupModalService, chatService: ChatService$1, modalData?: {
787
1198
  responseTime: string;
788
1199
  });
789
1200
  ngOnInit(): void;
@@ -854,35 +1265,6 @@ declare class ChatComponent implements OnInit, AfterViewInit, OnChanges, OnDestr
854
1265
  static ɵcmp: i0.ɵɵComponentDeclaration<ChatComponent, "lib-chat", never, { "default": { "alias": "default"; "required": false; }; "responseTime": { "alias": "responseTime"; "required": false; }; "inputValue": { "alias": "inputValue"; "required": false; }; "emojiPickerConfig": { "alias": "emojiPickerConfig"; "required": false; }; "includeGifMessage": { "alias": "includeGifMessage"; "required": false; }; "includeTime": { "alias": "includeTime"; "required": false; }; "dateMessages": { "alias": "dateMessages"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "enableGifPicker": { "alias": "enableGifPicker"; "required": false; }; "prospectJoinDate": { "alias": "prospectJoinDate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "sendMessage": "sendMessage"; "getMessages": "getMessages"; }, never, never, false, never>;
855
1266
  }
856
1267
 
857
- interface ITenorMediaFormat {
858
- url: string;
859
- duration: number;
860
- preview: string;
861
- dims: number[];
862
- size: number;
863
- }
864
-
865
- interface ITenorResult {
866
- id: string;
867
- title: string;
868
- media_formats: {
869
- [key: string]: ITenorMediaFormat;
870
- };
871
- created: number;
872
- content_description: string;
873
- itemurl: string;
874
- url: string;
875
- tags: string[];
876
- flags: string[];
877
- hasaudio: boolean;
878
- content_description_source: 'GENERATIVE_AI';
879
- }
880
-
881
- interface ITenorObject {
882
- results: ITenorResult[];
883
- next: string;
884
- }
885
-
886
1268
  declare class GifSelectorComponent implements OnInit, OnDestroy {
887
1269
  private cdr;
888
1270
  private gifService;
@@ -903,13 +1285,6 @@ declare class GifSelectorComponent implements OnInit, OnDestroy {
903
1285
  static ɵcmp: i0.ɵɵComponentDeclaration<GifSelectorComponent, "lib-gif-selector", never, {}, { "selectGif": "selectGif"; }, never, never, true, never>;
904
1286
  }
905
1287
 
906
- declare enum StatusTypes {
907
- Info = "info",
908
- Warning = "warning",
909
- Error = "error",
910
- Success = "success"
911
- }
912
-
913
1288
  declare class StatusIconComponent {
914
1289
  type: StatusTypes;
915
1290
  static ɵfac: i0.ɵɵFactoryDeclaration<StatusIconComponent, never>;
@@ -942,62 +1317,18 @@ declare class LibChatComponentModule {
942
1317
  }): ModuleWithProviders<LibChatComponentModule>;
943
1318
  static ɵfac: i0.ɵɵFactoryDeclaration<LibChatComponentModule, never>;
944
1319
  static ɵmod: i0.ɵɵNgModuleDeclaration<LibChatComponentModule, [typeof ChatComponent], [typeof i2.CommonModule, typeof i6.ImageCardModule, typeof i4.MatInputModule, typeof i5$2.MatSelectModule, typeof i6$1.MatFormFieldModule, typeof i6.InputFieldModule, typeof i5$1.FormsModule, typeof i5$1.ReactiveFormsModule, typeof GifSelectorComponent, typeof i6.LibModalModule, typeof SharedModule, typeof i10.InfiniteScrollModule, typeof i5.TranslateModule], [typeof ChatComponent]>;
945
- static ɵinj: i0.ɵɵInjectorDeclaration<LibChatComponentModule>;
946
- }
947
-
948
- interface IInnerPartialCircleProgressColors {
949
- primary: string;
950
- secondary: string;
951
- tertiary: string;
952
- }
953
-
954
- declare enum INNER_CIRCLE_STATE {
955
- Waiting = "waiting",
956
- Quiet = "quiet",
957
- Unresponsive = "unresponsive",
958
- Redelegation = "redelegation"
959
- }
960
-
961
- declare enum CircleVariable {
962
- Partial = "partial",
963
- Complete = "complete"
964
- }
965
-
966
- interface IPartialCircleProgressColors {
967
- primary: string;
968
- secondary: string;
969
- tertiary: string;
970
- gradientPrimary: string;
971
- gradientSecondary: string;
972
- incomplete: string;
973
- complete: string;
974
- }
975
-
976
- interface CircleProgressConfig {
977
- /** Outer / main ring */
978
- value: number;
979
- max: number;
980
- partialColors?: IPartialCircleProgressColors;
981
- showExternalPartialCircleProgress?: boolean;
982
- /** Inner ring */
983
- inner?: {
984
- value: number;
985
- max: number;
986
- colors?: IInnerPartialCircleProgressColors;
987
- state: INNER_CIRCLE_STATE;
988
- showIllumination?: boolean;
989
- };
990
- /** Visuals */
991
- imageUrl?: string;
992
- width?: string;
993
- height?: string;
994
- showValueProportionLabel?: boolean;
995
- imgObjectPosition?: 'top' | 'bottom' | 'right' | 'left';
996
- hasNotification?: boolean;
997
- prefix?: string;
998
- suffix?: string;
999
- hideProgress?: boolean;
1000
- type?: string;
1320
+ static ɵinj: i0.ɵɵInjectorDeclaration<LibChatComponentModule>;
1321
+ }
1322
+
1323
+ declare class ChatService {
1324
+ cacheService: AbstractCacheService;
1325
+ constructor(cacheService: AbstractCacheService);
1326
+ setLongPressForSendImmediately(enabled: boolean): void;
1327
+ isLongPressForSendImmediately(): Observable<boolean>;
1328
+ transformMessages(messages: IMessage[]): IDateMessages[];
1329
+ updateDateMessages(dateMessages: IDateMessages[]): IDateMessages[];
1330
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChatService, never>;
1331
+ static ɵprov: i0.ɵɵInjectableDeclaration<ChatService>;
1001
1332
  }
1002
1333
 
1003
1334
  declare class CircleProgressComponent implements AfterViewInit {
@@ -1032,176 +1363,8 @@ declare class CircleProgressModule {
1032
1363
  static ɵinj: i0.ɵɵInjectorDeclaration<CircleProgressModule>;
1033
1364
  }
1034
1365
 
1035
- declare enum CONVERSATION_FLAG {
1036
- UNRESPONSIVE = "unresponsive",
1037
- REDELEGATION = "redelegation"
1038
- }
1039
-
1040
- declare enum COUNTER_FLAG_BASE {
1041
- StartConversation = "startConversation",
1042
- LastResponse = "lastResponse"
1043
- }
1044
-
1045
- interface IConversationFlag {
1046
- timestamp: Date;
1047
- prospectId: string;
1048
- basedOn: COUNTER_FLAG_BASE;
1049
- flag: CONVERSATION_FLAG;
1050
- }
1051
-
1052
- declare enum MatcherStatuses {
1053
- STATUS0 = "no contact",
1054
- STATUS1 = "1st exchange",
1055
- STATUS2 = "2nd exchange",
1056
- STATUS3 = "3rd exchange",
1057
- STATUS4 = "2+ laughs",
1058
- STATUS5 = "idea signalled",
1059
- STATUS6 = "alt contact",
1060
- STATUS7 = "any romance",
1061
- STATUS8 = "locale confirmed",
1062
- STATUS9 = "time confirmed",
1063
- STATUS10 = "all followup"
1064
- }
1065
-
1066
- interface IChartData {
1067
- title: string;
1068
- keys: string[];
1069
- values: Record<string, number>;
1070
- }
1071
-
1072
- interface IProspectData {
1073
- messages: IMessage[];
1074
- prospectId: string;
1075
- status: MatcherStatuses;
1076
- prospectResponseTime: string;
1077
- chatSuggestions: IChatSuggestion[];
1078
- schedules: ISchedulerEvent[];
1079
- scheduleSuggestions: ISchedulerEventSuggestion[];
1080
- llmPreference: string;
1081
- _id: string;
1082
- prospectJoinDate: Date;
1083
- conversationFlags: IConversationFlag[];
1084
- numberMatcherStatuses: number;
1085
- chartData: IChartData[];
1086
- llmPreferenceLoading$?: BehaviorSubject<string[]>;
1087
- }
1088
-
1089
- interface ILibClientMatchOverview {
1090
- _id?: string;
1091
- primary: IClientFields;
1092
- secondary: IClientFields;
1093
- preferences: number;
1094
- personality: number;
1095
- isExpanded?: boolean;
1096
- showHandoff?: boolean;
1097
- createdAt: Date;
1098
- prospectData: IProspectData;
1099
- matchRequest: IDashboardMatchRequest;
1100
- }
1101
- interface IClientFields {
1102
- name: string;
1103
- src: string;
1104
- }
1105
-
1106
- declare enum AlertStatusFields {
1107
- upcomingDates = "upcomingDates",
1108
- compatibilityProfileTrait = "compatibilityProfileTrait",
1109
- compatibilityProfileSpider = "compatibilityProfileSpider",
1110
- chatHandoff = "chatHandoff",
1111
- chatProgress = "chatProgress",
1112
- chatMeetupAgenda = "chatMeetupAgenda",
1113
- face = "face"
1114
- }
1115
-
1116
- interface IStatus {
1117
- title: string;
1118
- subtitle: string;
1119
- value: MatcherStatuses;
1120
- }
1121
-
1122
1366
  declare const MATCHER_STATUSES: IStatus[];
1123
1367
 
1124
- declare enum ClientHomeComponent {
1125
- ChatCompatibility = "ChatCompatibility",
1126
- ChatHandoff = "ChatHandoff",
1127
- ChatScheduler = "ChatScheduler",
1128
- ClientMatchSpiderChart = "ClientMatchSpiderChart",
1129
- ClientMatchTraitChart = "ClientMatchTraitChart"
1130
- }
1131
-
1132
- interface IPolygonColor {
1133
- label: string;
1134
- value: string;
1135
- }
1136
-
1137
- interface IDataset {
1138
- title: string;
1139
- keys: string[];
1140
- values: Record<string, number>;
1141
- polygon_color?: IPolygonColor;
1142
- }
1143
-
1144
- interface ISpiderChartAttribute {
1145
- key: string;
1146
- text: string;
1147
- titleAlertPopup?: string;
1148
- descriptionAlertPopup?: string;
1149
- }
1150
-
1151
- interface ISpiderChartConfig {
1152
- w: number;
1153
- h: number;
1154
- fullScreen: boolean;
1155
- levels: number;
1156
- maxValue: number;
1157
- labelFactor: number;
1158
- wrapWidth: number;
1159
- opacityArea: number;
1160
- dotRadius: number;
1161
- opacityCircles: number;
1162
- strokeWidth: number;
1163
- color: d3.ScaleOrdinal<string, string>;
1164
- attributes: ISpiderChartAttribute[];
1165
- datasets: IDataset[];
1166
- }
1167
-
1168
- interface IHomeDashboardInputs {
1169
- loading?: {
1170
- clientMatches: boolean;
1171
- };
1172
- schedulerAdsTemplate?: TemplateRef<HTMLElement>;
1173
- schedulerTabAdsTemplate?: TemplateRef<HTMLElement>;
1174
- chatAdsTemplate?: TemplateRef<HTMLElement>;
1175
- chatTabAdsTemplate?: TemplateRef<HTMLElement>;
1176
- traitVisualAdsTemplate?: TemplateRef<HTMLElement>;
1177
- default?: boolean;
1178
- component: ClientHomeComponent;
1179
- activeIndex?: number;
1180
- slideContentMaxHeight?: string;
1181
- clientMatches$?: Observable<ILibClientMatchOverview[]>;
1182
- events?: IAgendaEvent[];
1183
- polygonColors?: IPolygonColor[];
1184
- spiderConfig?: ISpiderChartConfig;
1185
- schedulers$?: Observable<{
1186
- events$: Observable<ISchedulerEvent[]>;
1187
- }[]>;
1188
- loading$?: Observable<boolean>;
1189
- bottomThumbs?: boolean;
1190
- includeTime?: boolean;
1191
- includeGifMessage?: boolean;
1192
- maxLength?: number;
1193
- startDate?: Date;
1194
- endDate?: Date;
1195
- emptyMessage?: string;
1196
- displayBookedStatuses?: boolean;
1197
- displayEmptyDays?: boolean;
1198
- chatInputValue?: string;
1199
- hideStatuses?: boolean;
1200
- alertStatus: Partial<Record<AlertStatusFields, boolean>>;
1201
- showValueProportionLabel?: boolean;
1202
- hideProgressBar?: boolean;
1203
- }
1204
-
1205
1368
  declare class LibClientHomeComponent implements OnInit, OnDestroy {
1206
1369
  private cdr;
1207
1370
  config: IHomeDashboardInputs;
@@ -1243,39 +1406,6 @@ declare class LibClientHomeComponent implements OnInit, OnDestroy {
1243
1406
  static ɵcmp: i0.ɵɵComponentDeclaration<LibClientHomeComponent, "lib-client-home", never, { "config": { "alias": "config"; "required": false; }; }, { "activeIndexChange": "activeIndexChange"; "addMessage": "addMessage"; "getMessages": "getMessages"; "bookEvent": "bookEvent"; "removeSuggestion": "removeSuggestion"; "handleAppearPopup": "handleAppearPopup"; }, never, never, true, never>;
1244
1407
  }
1245
1408
 
1246
- interface IChatMeta {
1247
- lastResponseTimestamp: Date | null;
1248
- firstAnswer: boolean;
1249
- waitingAnswer: boolean;
1250
- conversationFlags: IConversationFlag[];
1251
- }
1252
-
1253
- declare const defaultClientHomeConfig: IHomeDashboardInputs;
1254
-
1255
- declare const innerProgressDefaultColors: IInnerPartialCircleProgressColors;
1256
-
1257
- declare const innerProgressPinkColors: IInnerPartialCircleProgressColors;
1258
-
1259
- declare const innerProgressPurpleColors: IInnerPartialCircleProgressColors;
1260
-
1261
- declare const innerProgressWhiteColors: IPartialCircleProgressColors;
1262
-
1263
- declare const progressDefaultColors: IPartialCircleProgressColors;
1264
-
1265
- declare const progressWhiteColors: IPartialCircleProgressColors;
1266
-
1267
- declare class ChatMetaPipe implements PipeTransform {
1268
- transform(clientMatches$: Observable<ILibClientMatchOverview[]>, prospectId: string): Observable<IChatMeta>;
1269
- static ɵfac: i0.ɵɵFactoryDeclaration<ChatMetaPipe, never>;
1270
- static ɵpipe: i0.ɵɵPipeDeclaration<ChatMetaPipe, "chatMeta", true>;
1271
- }
1272
-
1273
- declare class GetColorByMatcherPipe implements PipeTransform {
1274
- transform(match: ILibClientMatchOverview, config: IHomeDashboardInputs): IPartialCircleProgressColors;
1275
- static ɵfac: i0.ɵɵFactoryDeclaration<GetColorByMatcherPipe, never>;
1276
- static ɵpipe: i0.ɵɵPipeDeclaration<GetColorByMatcherPipe, "getColorByMatcher", true>;
1277
- }
1278
-
1279
1409
  declare class LibClientMatchOverviewComponent implements OnInit, OnDestroy, AfterViewInit, OnChanges {
1280
1410
  overview: ILibClientMatchOverview;
1281
1411
  meta: IChatMeta;
@@ -1315,49 +1445,9 @@ declare class LibClientMatchOverviewComponent implements OnInit, OnDestroy, Afte
1315
1445
  private startTicker;
1316
1446
  private stopTicker;
1317
1447
  private setInnerCircleState;
1318
- private buildCircleOpts;
1319
- static ɵfac: i0.ɵɵFactoryDeclaration<LibClientMatchOverviewComponent, never>;
1320
- static ɵcmp: i0.ɵɵComponentDeclaration<LibClientMatchOverviewComponent, "lib-client-match-overview", never, { "overview": { "alias": "overview"; "required": true; }; "meta": { "alias": "meta"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "default": { "alias": "default"; "required": false; }; "hideProgressBar": { "alias": "hideProgressBar"; "required": false; }; "partialColors": { "alias": "partialColors"; "required": false; }; "showExternalPartialCircleProgress": { "alias": "showExternalPartialCircleProgress"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "enableChangeOverview": { "alias": "enableChangeOverview"; "required": false; }; }, { "sendConversationFlag": "sendConversationFlag"; }, never, never, true, never>;
1321
- }
1322
-
1323
- /** Inputs the pure function needs */
1324
- interface ProgressFacts {
1325
- createdAt: Date;
1326
- lastMessageTimestamp: Date | null;
1327
- firstAnswer: boolean;
1328
- waitingAnswer: boolean;
1329
- nowMs?: number;
1330
- innerMax: number;
1331
- conversationFlags: IConversationFlag[];
1332
- }
1333
-
1334
- /** Decision bundle returned to the component */
1335
- interface ProgressDecision {
1336
- state: INNER_CIRCLE_STATE;
1337
- innerValue: number | null;
1338
- tick: 'start' | 'stop';
1339
- basedOn: COUNTER_FLAG_BASE;
1340
- registered: boolean;
1341
- }
1342
-
1343
- /**
1344
- * Pure “rules engine” for the inner circle.
1345
- * No side-effects, no RxJS, no Angular.
1346
- */
1347
- declare function computeInnerState(indicators: ProgressFacts): ProgressDecision | null;
1348
-
1349
- declare const PROGRESS_GAP_MINUTES: InjectionToken<number>;
1350
-
1351
- declare const TICK_PERIOD_SECONDS: InjectionToken<number>;
1352
-
1353
- declare class ProgressTickerService {
1354
- /** Emits once every `periodSec` seconds. Auto-starts & ref-counts. */
1355
- readonly tick$: Observable<number>;
1356
- /** For diagnostics: current number of active subscribers. */
1357
- readonly subscriberCount$: BehaviorSubject<number>;
1358
- constructor(periodSec: number);
1359
- static ɵfac: i0.ɵɵFactoryDeclaration<ProgressTickerService, never>;
1360
- static ɵprov: i0.ɵɵInjectableDeclaration<ProgressTickerService>;
1448
+ private buildCircleOpts;
1449
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibClientMatchOverviewComponent, never>;
1450
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibClientMatchOverviewComponent, "lib-client-match-overview", never, { "overview": { "alias": "overview"; "required": true; }; "meta": { "alias": "meta"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "default": { "alias": "default"; "required": false; }; "hideProgressBar": { "alias": "hideProgressBar"; "required": false; }; "partialColors": { "alias": "partialColors"; "required": false; }; "showExternalPartialCircleProgress": { "alias": "showExternalPartialCircleProgress"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "enableChangeOverview": { "alias": "enableChangeOverview"; "required": false; }; }, { "sendConversationFlag": "sendConversationFlag"; }, never, never, true, never>;
1361
1451
  }
1362
1452
 
1363
1453
  declare class LibDashboardSwipeableTabsComponent implements AfterViewInit {
@@ -1387,40 +1477,26 @@ declare class LibDashboardSwipeableTabsComponent implements AfterViewInit {
1387
1477
  static ɵcmp: i0.ɵɵComponentDeclaration<LibDashboardSwipeableTabsComponent, "lib-dashboard-swipeable-tabs", never, { "thumbsSwiperOptions": { "alias": "thumbsSwiperOptions"; "required": false; }; "mainSwiperOptions": { "alias": "mainSwiperOptions"; "required": false; }; "activeIndex": { "alias": "activeIndex"; "required": false; }; "bottomThumbs": { "alias": "bottomThumbs"; "required": false; }; "slideContentMaxHeight": { "alias": "slideContentMaxHeight"; "required": false; }; "mainSwiperHeight": { "alias": "mainSwiperHeight"; "required": false; }; "subMainSwiperHeight": { "alias": "subMainSwiperHeight"; "required": false; }; "thumbsSwiperHeight": { "alias": "thumbsSwiperHeight"; "required": false; }; "generalSwiperHeight": { "alias": "generalSwiperHeight"; "required": false; }; }, { "activeIndexChange": "activeIndexChange"; }, ["thumbSlides"], ["[thumb-slides]", "[main-slides]"], true, never>;
1388
1478
  }
1389
1479
 
1390
- declare const dashboardMainSwiperDefaultOptions: SwiperOptions;
1391
-
1392
- declare const dashboardThumbsSwiperDefaultOptions: SwiperOptions;
1393
-
1394
- declare const mainswiperDefaultOptions: SwiperOptions;
1395
-
1396
- declare const thumbsSwiperDefaultOptions: SwiperOptions;
1397
-
1398
- declare enum ClientDashboardTabs {
1399
- ChatScheduler = 0,
1400
- ChatCompatibility = 1,
1401
- ChatHandoff = 2
1402
- }
1403
-
1404
- interface IClientDashboardInputs {
1405
- schedulerAdsTemplate?: TemplateRef<HTMLElement>;
1406
- schedulerTabAdsTemplate?: TemplateRef<HTMLElement>;
1407
- chatAdsTemplate?: TemplateRef<HTMLElement>;
1408
- chatTabAdsTemplate?: TemplateRef<HTMLElement>;
1409
- traitVisualAdsTemplate?: TemplateRef<HTMLElement>;
1410
- agendaAdsTemplate?: TemplateRef<HTMLElement>;
1411
- default?: boolean;
1412
- activeIndex?: number;
1413
- activeTabIndex?: number;
1414
- activeChartItem?: number;
1415
- slideContentMaxHeight?: string;
1416
- clientMatches$?: Observable<ILibClientMatchOverview[]>;
1417
- events?: IAgendaEvent[];
1418
- polygonColors?: IPolygonColor[];
1419
- spiderConfig?: ISpiderChartConfig;
1420
- schedulers$?: Observable<{
1421
- events$: Observable<ISchedulerEvent[]>;
1422
- }[]>;
1423
- alertStatus: Partial<Record<AlertStatusFields, boolean>>;
1480
+ declare class LibHandoffPanelComponent implements OnInit {
1481
+ private cdr;
1482
+ config: IHandoffPanelInputs;
1483
+ addMessage: EventEmitter<IMessage>;
1484
+ scheduleSlotToggle: EventEmitter<IScheduleSlot>;
1485
+ HandoffPanelVersion: typeof HandoffPanelVersion;
1486
+ activeTabIndex: number;
1487
+ messages$: Observable<IMessage[]>;
1488
+ scheduleSlots: IScheduleSlot[];
1489
+ slotControls: Map<string, FormControl<boolean>>;
1490
+ datePrepInfo: IDatePrepInfo;
1491
+ constructor(cdr: ChangeDetectorRef);
1492
+ ngOnInit(): void;
1493
+ private initializeSlotControls;
1494
+ onTabChange(index: number): void;
1495
+ getSlotControl(slot: IScheduleSlot): FormControl<boolean>;
1496
+ onMessageAdd(message: IMessage): void;
1497
+ getVersionClass(): string;
1498
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibHandoffPanelComponent, never>;
1499
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibHandoffPanelComponent, "lib-handoff-panel", never, { "config": { "alias": "config"; "required": false; }; }, { "addMessage": "addMessage"; "scheduleSlotToggle": "scheduleSlotToggle"; }, never, never, true, never>;
1424
1500
  }
1425
1501
 
1426
1502
  declare class LibClientDashboardComponent implements OnInit, OnDestroy {
@@ -1491,33 +1567,6 @@ declare class LibClientDashboardComponent implements OnInit, OnDestroy {
1491
1567
  static ɵcmp: i0.ɵɵComponentDeclaration<LibClientDashboardComponent, "lib-client-dashboard", never, { "config": { "alias": "config"; "required": false; }; "agendaAdsData": { "alias": "agendaAdsData"; "required": false; }; }, { "addMessage": "addMessage"; "getMessages": "getMessages"; "bookEvent": "bookEvent"; "removeSuggestion": "removeSuggestion"; "activeIndexChange": "activeIndexChange"; "handleClosedAlert": "handleClosedAlert"; "handleAppearPopup": "handleAppearPopup"; }, never, never, true, never>;
1492
1568
  }
1493
1569
 
1494
- declare const defaultClientDashboardConfig: IClientDashboardInputs;
1495
-
1496
- interface IChatIdentifier {
1497
- chatId: string;
1498
- llmPreference: string;
1499
- prospectName: string;
1500
- }
1501
-
1502
- interface IMatcherDashboardInputs {
1503
- schedulerAdsTemplate?: TemplateRef<HTMLElement>;
1504
- schedulerTabAdsTemplate?: TemplateRef<HTMLElement>;
1505
- chatAdsTemplate?: TemplateRef<HTMLElement>;
1506
- loading?: {
1507
- clientMatches: boolean;
1508
- };
1509
- default?: boolean;
1510
- activeIndex?: number;
1511
- activeTabIndex?: number;
1512
- slideContentMaxHeight?: string;
1513
- clientMatches$?: Observable<ILibClientMatchOverview[]>;
1514
- events$?: Observable<ISchedulerEvent[]>;
1515
- polygonColors?: IPolygonColor[];
1516
- spiderConfig?: ISpiderChartConfig;
1517
- alertStatus: Partial<Record<AlertStatusFields, boolean>>;
1518
- llmPreferenceOptions?: SelectOption<string>[];
1519
- }
1520
-
1521
1570
  declare class LibComposeMacherDashComponent implements OnInit, OnDestroy {
1522
1571
  private cdr;
1523
1572
  config: IMatcherDashboardInputs;
@@ -1554,25 +1603,12 @@ declare class LibComposeMacherDashComponent implements OnInit, OnDestroy {
1554
1603
  onActiveTabIndexChange(index: number): void;
1555
1604
  onActiveProspectChange(index: number): void;
1556
1605
  suggestClicked(suggest: string): void;
1606
+ getClientAttributes(match: any): IProfileAttribute[];
1607
+ getProspectAttributes(match: any): IProfileAttribute[];
1557
1608
  static ɵfac: i0.ɵɵFactoryDeclaration<LibComposeMacherDashComponent, never>;
1558
1609
  static ɵcmp: i0.ɵɵComponentDeclaration<LibComposeMacherDashComponent, "lib-compose-matcher-dash", never, { "config": { "alias": "config"; "required": false; }; }, { "addMessage": "addMessage"; "updateLLMConversation": "updateLLMConversation"; "getMessages": "getMessages"; "bookEvent": "bookEvent"; "removeSuggestion": "removeSuggestion"; "activeIndexChange": "activeIndexChange"; }, never, never, true, never>;
1559
1610
  }
1560
1611
 
1561
- interface IDashboardMatcherProfile {
1562
- id: number;
1563
- name: string;
1564
- value: number;
1565
- photo: string;
1566
- notification: number;
1567
- progress: number;
1568
- }
1569
-
1570
- declare class GetProfileWithProgressPipe implements PipeTransform {
1571
- transform(clientMatch: ILibClientMatchOverview): Profile;
1572
- static ɵfac: i0.ɵɵFactoryDeclaration<GetProfileWithProgressPipe, never>;
1573
- static ɵpipe: i0.ɵɵPipeDeclaration<GetProfileWithProgressPipe, "getProfileWithProgress", true>;
1574
- }
1575
-
1576
1612
  declare class MatcherStatusesComponent {
1577
1613
  adsTemplate?: TemplateRef<HTMLElement>;
1578
1614
  status: MatcherStatuses;
@@ -1592,12 +1628,6 @@ declare class MatcherStatusesComponent {
1592
1628
  static ɵcmp: i0.ɵɵComponentDeclaration<MatcherStatusesComponent, "lib-matcher-statuses", never, { "adsTemplate": { "alias": "adsTemplate"; "required": false; }; "status": { "alias": "status"; "required": false; }; "hideStatuses": { "alias": "hideStatuses"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; "inputValue": { "alias": "inputValue"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "responseTime": { "alias": "responseTime"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "prospectJoinDate": { "alias": "prospectJoinDate"; "required": false; }; }, { "getMessages": "getMessages"; "sendMessage": "sendMessage"; }, never, never, true, never>;
1593
1629
  }
1594
1630
 
1595
- declare class IsStatusIncludedPipe implements PipeTransform {
1596
- transform(status: MatcherStatuses, index: number): boolean;
1597
- static ɵfac: i0.ɵɵFactoryDeclaration<IsStatusIncludedPipe, never>;
1598
- static ɵpipe: i0.ɵɵPipeDeclaration<IsStatusIncludedPipe, "isStatusIncluded", true>;
1599
- }
1600
-
1601
1631
  declare class ProfileCardComponent implements OnChanges {
1602
1632
  profile: Profile;
1603
1633
  progressText: string;
@@ -1613,61 +1643,16 @@ declare class ProfileCardModule {
1613
1643
  static ɵinj: i0.ɵɵInjectorDeclaration<ProfileCardModule>;
1614
1644
  }
1615
1645
 
1616
- interface ICircleData {
1617
- cx: string;
1618
- cy: string;
1619
- r: string;
1620
- transform: string;
1621
- stroke?: string;
1622
- 'stroke-width'?: string;
1623
- fill?: string;
1624
- filter?: string;
1625
- }
1626
-
1627
- interface IDefsF {
1628
- id: string;
1629
- x: string;
1630
- y: string;
1631
- height: string;
1632
- width: string;
1633
- feGaussianTags: {
1634
- in: string;
1635
- stdDeviation: string;
1636
- }[];
1637
- }
1638
-
1639
- interface IDefsLG {
1640
- id: string;
1641
- x1: string;
1642
- y1: string;
1643
- x2: string;
1644
- y2: string;
1645
- stopTags: {
1646
- offset: string;
1647
- style: string;
1648
- }[];
1649
- }
1650
-
1651
- interface IDefsRG {
1652
- id: string;
1653
- cx: string;
1654
- cy: string;
1655
- r: string;
1656
- stopTags: {
1657
- offset: string;
1658
- style: string;
1659
- }[];
1646
+ declare class LibProfileComparisonComponent implements OnInit {
1647
+ private cdr;
1648
+ config: IProfileComparisonInputs;
1649
+ comparisonData: IProfileComparisonData;
1650
+ constructor(cdr: ChangeDetectorRef);
1651
+ ngOnInit(): void;
1652
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibProfileComparisonComponent, never>;
1653
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibProfileComparisonComponent, "lib-profile-comparison", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, true, never>;
1660
1654
  }
1661
1655
 
1662
- declare const defaultSpiderConfig: ISpiderChartConfig;
1663
-
1664
- declare const demoPolygonColors: IPolygonColor[];
1665
-
1666
- declare const circleData: ICircleData[];
1667
- declare const defsLG: IDefsLG[];
1668
- declare const defsF: IDefsF[];
1669
- declare const defsRG: IDefsRG[];
1670
-
1671
1656
  declare class InitialsPipe implements PipeTransform {
1672
1657
  transform(fullName: string, numChars?: number): string;
1673
1658
  static ɵfac: i0.ɵɵFactoryDeclaration<InitialsPipe, never>;
@@ -1715,6 +1700,84 @@ declare class SpiderChartComponent implements OnChanges, OnDestroy, AfterViewIni
1715
1700
  static ɵcmp: i0.ɵɵComponentDeclaration<SpiderChartComponent, "lib-spider-chart", never, { "datasets": { "alias": "datasets"; "required": false; }; "config": { "alias": "config"; "required": false; }; "polygon_colors": { "alias": "polygon_colors"; "required": false; }; "showChartInfo": { "alias": "showChartInfo"; "required": false; }; }, {}, never, never, true, never>;
1716
1701
  }
1717
1702
 
1703
+ declare class LibVisualManagerModalComponent implements OnInit, AfterViewInit {
1704
+ private changeDetectorRef;
1705
+ private popupModalService;
1706
+ modalData?: IVisualManagerModalModalData;
1707
+ childModalElementRef: ElementRef<HTMLDivElement>;
1708
+ data: IVisualManagerModalData;
1709
+ event: EventEmitter<IVisualManagerModalEvent>;
1710
+ componentData: IVisualManagerModalModalData | null;
1711
+ preferences: IPreferenceItem[];
1712
+ originalPreferences: IPreferenceItem[];
1713
+ preferenceControls: Map<string, FormControl>;
1714
+ get selectedItems(): IPreferenceItem[];
1715
+ get deselectedItems(): IPreferenceItem[];
1716
+ constructor(changeDetectorRef: ChangeDetectorRef, popupModalService: PopupModalService, modalData?: IVisualManagerModalModalData);
1717
+ ngOnInit(): void;
1718
+ ngAfterViewInit(): void;
1719
+ togglePreference(preference: IPreferenceItem, event?: Event): void;
1720
+ apply(): void;
1721
+ reset(): void;
1722
+ close(): void;
1723
+ onPreferenceNameChange(preference: IPreferenceItem, newName: string): void;
1724
+ getPreferenceControl(preferenceId: string): FormControl;
1725
+ onDragStart(event: DragEvent, preference: IPreferenceItem, isSelected: boolean): void;
1726
+ onDragEnd(event: DragEvent): void;
1727
+ onDragOver(event: DragEvent): void;
1728
+ onDrop(event: DragEvent, targetPreference: IPreferenceItem, isSelected: boolean): void;
1729
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibVisualManagerModalComponent, [null, null, { optional: true; }]>;
1730
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibVisualManagerModalComponent, "lib-visual-manager-modal", never, { "data": { "alias": "data"; "required": false; }; }, { "event": "event"; }, never, never, true, never>;
1731
+ }
1732
+
1733
+ declare const circleData: ICircleData[];
1734
+
1735
+ declare const defaultClientDashboardConfig: IClientDashboardInputs;
1736
+
1737
+ declare const defaultClientHomeConfig: IHomeDashboardInputs;
1738
+
1739
+ /**
1740
+ * Pure “rules engine” for the inner circle.
1741
+ * No side-effects, no RxJS, no Angular.
1742
+ */
1743
+ declare function computeInnerState(indicators: ProgressFacts): ProgressDecision | null;
1744
+
1745
+ declare const dashboardMainSwiperDefaultOptions: SwiperOptions;
1746
+
1747
+ declare const dashboardThumbsSwiperDefaultOptions: SwiperOptions;
1748
+
1749
+ declare const defaultSpiderConfig: ISpiderChartConfig;
1750
+
1751
+ declare const defsF: IDefsF[];
1752
+
1753
+ declare const defsLG: IDefsLG[];
1754
+
1755
+ declare const defsRG: IDefsRG[];
1756
+
1757
+ declare const demoPolygonColors: IPolygonColor[];
1758
+
1759
+ declare const innerProgressDefaultColors: IInnerPartialCircleProgressColors;
1760
+
1761
+ declare const innerProgressPinkColors: IInnerPartialCircleProgressColors;
1762
+
1763
+ declare const innerProgressPurpleColors: IInnerPartialCircleProgressColors;
1764
+
1765
+ declare const innerProgressWhiteColors: IPartialCircleProgressColors;
1766
+
1767
+ declare const mainswiperDefaultOptions: SwiperOptions;
1768
+
1769
+ declare const progressDefaultColors: IPartialCircleProgressColors;
1770
+
1771
+ declare const PROGRESS_GAP_MINUTES: InjectionToken<number>;
1772
+
1773
+ declare const TICK_PERIOD_SECONDS: InjectionToken<number>;
1774
+
1775
+ declare const progressWhiteColors: IPartialCircleProgressColors;
1776
+
1777
+ declare const recurringOptions: IRecurringEvent[];
1778
+
1779
+ declare const thumbsSwiperDefaultOptions: SwiperOptions;
1780
+
1718
1781
  /**
1719
1782
  * operations.ts - Contains common operations utility functions.
1720
1783
  *
@@ -1740,6 +1803,12 @@ declare class ArraySortPipe implements PipeTransform {
1740
1803
  static ɵpipe: i0.ɵɵPipeDeclaration<ArraySortPipe, "sort", false>;
1741
1804
  }
1742
1805
 
1806
+ declare class ChatMetaPipe implements PipeTransform {
1807
+ transform(clientMatches$: Observable<ILibClientMatchOverview[]>, prospectId: string): Observable<IChatMeta>;
1808
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChatMetaPipe, never>;
1809
+ static ɵpipe: i0.ɵɵPipeDeclaration<ChatMetaPipe, "chatMeta", true>;
1810
+ }
1811
+
1743
1812
  declare class CountNonEmptyFieldsPipe implements PipeTransform {
1744
1813
  transform(records: Record<string, string | null>): number;
1745
1814
  static ɵfac: i0.ɵɵFactoryDeclaration<CountNonEmptyFieldsPipe, never>;
@@ -1752,6 +1821,12 @@ declare class DateLocalizationPipe implements PipeTransform {
1752
1821
  static ɵpipe: i0.ɵɵPipeDeclaration<DateLocalizationPipe, "dateLocalization", false>;
1753
1822
  }
1754
1823
 
1824
+ declare class GetColorByMatcherPipe implements PipeTransform {
1825
+ transform(match: ILibClientMatchOverview, config: IHomeDashboardInputs): IPartialCircleProgressColors;
1826
+ static ɵfac: i0.ɵɵFactoryDeclaration<GetColorByMatcherPipe, never>;
1827
+ static ɵpipe: i0.ɵɵPipeDeclaration<GetColorByMatcherPipe, "getColorByMatcher", true>;
1828
+ }
1829
+
1755
1830
  declare class GetDisplayValuePipe implements PipeTransform {
1756
1831
  private dateLocalizationPipe;
1757
1832
  private currencyPipe;
@@ -1767,11 +1842,33 @@ declare class GetMultiSelectDisplayTextPipe implements PipeTransform {
1767
1842
  static ɵpipe: i0.ɵɵPipeDeclaration<GetMultiSelectDisplayTextPipe, "getMultiSelectDisplayText", false>;
1768
1843
  }
1769
1844
 
1845
+ declare class GetProfileWithProgressPipe implements PipeTransform {
1846
+ transform(clientMatch: ILibClientMatchOverview): Profile;
1847
+ static ɵfac: i0.ɵɵFactoryDeclaration<GetProfileWithProgressPipe, never>;
1848
+ static ɵpipe: i0.ɵɵPipeDeclaration<GetProfileWithProgressPipe, "getProfileWithProgress", true>;
1849
+ }
1850
+
1851
+ declare class IsStatusIncludedPipe implements PipeTransform {
1852
+ transform(status: MatcherStatuses, index: number): boolean;
1853
+ static ɵfac: i0.ɵɵFactoryDeclaration<IsStatusIncludedPipe, never>;
1854
+ static ɵpipe: i0.ɵɵPipeDeclaration<IsStatusIncludedPipe, "isStatusIncluded", true>;
1855
+ }
1856
+
1770
1857
  declare class RoundPipe implements PipeTransform {
1771
1858
  transform(value: number): number;
1772
1859
  static ɵfac: i0.ɵɵFactoryDeclaration<RoundPipe, never>;
1773
1860
  static ɵpipe: i0.ɵɵPipeDeclaration<RoundPipe, "round", false>;
1774
1861
  }
1775
1862
 
1776
- export { AbstractCacheService, AgendaComponent, AlertPopupComponent, AlertStatusFields, ArraySortPipe, AutoDelegationEventTypes, AutoDelegationEventValue, CONVERSATION_FLAG, COUNTER_FLAG_BASE, CalendarAccountEnum, CalendarAccountIconsEnum, CalendarUtilsService, ChatComponent, ChatMetaPipe, ChatService, ChatSuggestionComponent, CircleProgressComponent, CircleProgressModule, CircleVariable, ClientDashboardTabs, ClientHomeComponent, CommonOperations, CountNonEmptyFieldsPipe, DateLocalizationPipe, EditRecurringEventOptions, EventTypes, GetColorByMatcherPipe, GetDisplayValuePipe, GetMultiSelectDisplayTextPipe, GetProfileWithProgressPipe, INNER_CIRCLE_STATE, InitialsPipe, IsStatusIncludedPipe, LibAgendaModule, LibAutoDelegationModalComponent, LibChatComponentModule, LibClientDashboardComponent, LibClientHomeComponent, LibClientMatchOverviewComponent, LibComposeMacherDashComponent, LibDashboardSwipeableTabsComponent, LibEventFormComponent, LibEventFormModule, LibMessageModalComponent, LibSchedulerComponent, LibVisualManagerModalComponent, MATCHER_STATUSES, MatcherStatuses, MatcherStatusesComponent, PROGRESS_GAP_MINUTES, ProfileCardComponent, ProfileCardModule, ProgressTickerService, RecurringTypes, RoundPipe, ScheduleDateStatus, SenderTypes, SharedModule, SpiderChartComponent, StatusIconComponent, TICK_PERIOD_SECONDS, VisualManagerModalEventTypes, VisualManagerModalEventValue, circleData, computeInnerState, dashboardMainSwiperDefaultOptions, dashboardThumbsSwiperDefaultOptions, defaultClientDashboardConfig, defaultClientHomeConfig, defaultSpiderConfig, defsF, defsLG, defsRG, demoPolygonColors, innerProgressDefaultColors, innerProgressPinkColors, innerProgressPurpleColors, innerProgressWhiteColors, mainswiperDefaultOptions, progressDefaultColors, progressWhiteColors, recurringOptions, thumbsSwiperDefaultOptions };
1777
- export type { CircleProgressConfig, IAgendaDay, IAgendaEvent, IAttachment, IAutoDelegationData, IAutoDelegationEvent, IAutoDelegationModalData, IAutoDelegationPreferences, ICalendarAccount, ICalendarAccountTheme, IChartData, IChatIdentifier, IChatMeta, IChatSuggestion, ICircleData, IClientDashboardInputs, IConversationFlag, IDashboardMatchRequest, IDashboardMatcherProfile, IDataset, IDateMessages, IDefsF, IDefsLG, IDefsRG, IEvent, IEventFormOutput, IEventTime, IHomeDashboardInputs, IInnerPartialCircleProgressColors, ILibClientMatchOverview, IMatcherDashboardInputs, IMessage, IPartialCircleProgressColors, IPolygonColor, IPreferenceItem, IProspectData, IRecurringEvent, IRecurringEventException, IRecurringPattern, ISchedulerAction, ISchedulerEvent, ISchedulerEventSlots, ISchedulerEventSuggestion, ISpiderChartAttribute, ISpiderChartConfig, IVisualManagerModalData, IVisualManagerModalEvent, IVisualManagerModalModalData, ProgressFacts };
1863
+ declare class ProgressTickerService {
1864
+ /** Emits once every `periodSec` seconds. Auto-starts & ref-counts. */
1865
+ readonly tick$: Observable<number>;
1866
+ /** For diagnostics: current number of active subscribers. */
1867
+ readonly subscriberCount$: BehaviorSubject<number>;
1868
+ constructor(periodSec: number);
1869
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgressTickerService, never>;
1870
+ static ɵprov: i0.ɵɵInjectableDeclaration<ProgressTickerService>;
1871
+ }
1872
+
1873
+ export { AbstractCacheService, AgendaComponent, AlertPopupComponent, AlertStatusFields, ArraySortPipe, AutoDelegationEventTypes, AutoDelegationEventValue, CONVERSATION_FLAG, COUNTER_FLAG_BASE, CalendarAccountEnum, CalendarAccountIconsEnum, CalendarUtilsService, ChatComponent, ChatMetaPipe, ChatService, ChatSuggestionComponent, CircleProgressComponent, CircleProgressModule, CircleVariable, ClientDashboardTabs, ClientHomeComponent, CommonOperations, CountNonEmptyFieldsPipe, DateLocalizationPipe, EditRecurringEventOptions, EventTypes, GetColorByMatcherPipe, GetDisplayValuePipe, GetMultiSelectDisplayTextPipe, GetProfileWithProgressPipe, HandoffPanelVersion, INNER_CIRCLE_STATE, InitialsPipe, IsStatusIncludedPipe, LibAgendaModule, LibAutoDelegationModalComponent, LibChatComponentModule, LibClientDashboardComponent, LibClientHomeComponent, LibClientMatchOverviewComponent, LibComposeMacherDashComponent, LibDashboardSwipeableTabsComponent, LibEventFormComponent, LibEventFormModule, LibHandoffPanelComponent, LibMessageModalComponent, LibProfileComparisonComponent, LibSchedulerComponent, LibVisualManagerModalComponent, MATCHER_STATUSES, MatcherStatuses, MatcherStatusesComponent, PROGRESS_GAP_MINUTES, ProfileCardComponent, ProfileCardModule, ProgressTickerService, RecurringTypes, RoundPipe, ScheduleDateStatus, SenderTypes, SharedModule, SpiderChartComponent, StatusIconComponent, TICK_PERIOD_SECONDS, VisualManagerModalEventTypes, VisualManagerModalEventValue, circleData, computeInnerState, dashboardMainSwiperDefaultOptions, dashboardThumbsSwiperDefaultOptions, defaultClientDashboardConfig, defaultClientHomeConfig, defaultSpiderConfig, defsF, defsLG, defsRG, demoPolygonColors, innerProgressDefaultColors, innerProgressPinkColors, innerProgressPurpleColors, innerProgressWhiteColors, mainswiperDefaultOptions, progressDefaultColors, progressWhiteColors, recurringOptions, thumbsSwiperDefaultOptions };
1874
+ export type { CircleProgressConfig, IAgendaDay, IAgendaEvent, IAttachment, IAutoDelegationData, IAutoDelegationEvent, IAutoDelegationModalData, IAutoDelegationPreferences, ICalendarAccount, ICalendarAccountTheme, IChartData, IChatIdentifier, IChatMeta, IChatSuggestion, ICircleData, IClientDashboardInputs, IConversationFlag, IDashboardMatchRequest, IDashboardMatcherProfile, IDataset, IDateMessages, IDatePrepInfo, IDefsF, IDefsLG, IDefsRG, IEvent, IEventFormOutput, IEventTime, IHandoffPanelInputs, IHomeDashboardInputs, IInnerPartialCircleProgressColors, ILibClientMatchOverview, IMatcherDashboardInputs, IMessage, IPartialCircleProgressColors, IPolygonColor, IPreferenceItem, IProfileAttribute, IProfileComparisonData, IProfileComparisonInputs, IProspectData, IRecurringEvent, IRecurringEventException, IRecurringPattern, IScheduleSlot, ISchedulerAction, ISchedulerEvent, ISchedulerEventSlots, ISchedulerEventSuggestion, ISpiderChartAttribute, ISpiderChartConfig, IVisualManagerModalData, IVisualManagerModalEvent, IVisualManagerModalModalData, ProgressFacts };