intelica-library-components 1.1.18 → 1.1.21

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,8 +1,9 @@
1
1
  import * as i0 from '@angular/core';
2
- import { PipeTransform, TemplateRef, OnChanges, AfterContentInit, EventEmitter, QueryList, SimpleChanges, OnDestroy, OnInit, ElementRef, ChangeDetectorRef, AfterViewInit, AfterViewChecked } from '@angular/core';
3
- import { HttpInterceptorFn } from '@angular/common/http';
2
+ import { PipeTransform, TemplateRef, OnChanges, AfterContentInit, EventEmitter, QueryList, SimpleChanges, OnDestroy, OnInit, ElementRef, ChangeDetectorRef, AfterViewInit, AfterViewChecked, NgZone } from '@angular/core';
3
+ import { HttpInterceptorFn, HttpClient } from '@angular/common/http';
4
4
  import { CanActivateFn, CanActivateChild, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
5
5
  import { FormGroup, ControlValueAccessor } from '@angular/forms';
6
+ import * as rxjs from 'rxjs';
6
7
  import { Subscription, Subject, BehaviorSubject, Observable } from 'rxjs';
7
8
  import { DatePipe, Location } from '@angular/common';
8
9
  import * as echarts from 'echarts';
@@ -2487,5 +2488,460 @@ declare function GetCookieAttributes(environment: string): CookieAttributes;
2487
2488
 
2488
2489
  declare const IntelicaTheme: _primeuix_themes_types.Preset<_primeuix_themes_aura_base.AuraBaseDesignTokens>;
2489
2490
 
2490
- export { ALERT_DEFAULTS, ALERT_ICON_PATHS, ALERT_TYPE_CONFIG, ActionDirective, ActionsMenuComponent, AddFavoritesComponent, AlertButtonMode, AlertService, AlertType, ButtonSplitComponent, CheckboxFilterDirective, Color, ColumnComponent, ColumnGroupComponent, CompareByField, ConfigService, CookieAttributesGeneral, DATEPICKER_BUTTON_TYPES, DataDirective, DateFilterDirective, DateModeOptions, DatepickerComponent, DynamicInputValidation, EchartComponent, EchartService, ElementService, EmailInputValidation, ErrorInterceptor, FeatureFlagService, FilterChipsComponent, FiltersComponent, FormatAmountPipe, GetCookieAttributes, GlobalFeatureFlagService, GlobalTermService, HtmlToExcelService, InitializeConfigService, InputValidation, IntelicaAlertComponent, IntelicaCellCheckboxDirective, IntelicaSessionService, IntelicaTheme, ItemSplitDirective, LanguageService, MatrixColumnComponent, MatrixColumnGroupComponent, MatrixTableComponent, ModalDialogComponent, MultiSelectComponent, OrderConstants, PageRootChildGuard, PaginatorComponent, Patterns, PopoverComponent, ProfileService, RecordPerPageComponent, RefreshTokenInterceptor, RouteGuard, RowResumenComponent, RowResumenTreeComponent, SearchComponent, SelectDetailFilterDirective, SelectFilterDirective, SharedService, SkeletonChartComponent, SkeletonComponent, SkeletonService, SkeletonTableComponent, SortingComponent, SpinnerComponent, SpinnerService, SweetAlertService, TableComponent, TableFetchComponent, TableSortOrder, TemplateDirective, TemplateMenuComponent, TermGuard, TermPipe, TermService, TextAreaFilterDirective, TextFilterDirective, TextRangeFilterDirective, TreeColumnComponent, TreeColumnGroupComponent, TreeTableComponent, TruncatePipe, decryptData, encryptData, getColor };
2491
- export type { AlertButtonConfig, AlertConfig, AlertResult, AlertStyleConfig, AlertTypeConfig, CascadeFilterModel, ColorName, CookieAttributes, CustomButtonType, DateMode, ExportExcelCommand, FilterModel, ICell, IExcelColumnName, IExcelHeaderGroup, IFilter, ItlSessionEnvelope, ItlSessionScope, PopoverInformationModel, PropertiesModel, QueryParametersModel, SearchFieldModel, SearchInputModel, SortFieldModel };
2491
+ type JobStatusCode = "idle" | "pending" | "running" | "completed" | "failed" | "cancelled";
2492
+ interface JobState {
2493
+ jobId?: string;
2494
+ status: JobStatusCode;
2495
+ processedCount: number;
2496
+ totalCount: number;
2497
+ processedNotificationsCount: number;
2498
+ totalNotificationsCount: number;
2499
+ }
2500
+
2501
+ interface NotificationDraft {
2502
+ originReference: string;
2503
+ notificationTypeCode: string;
2504
+ destination?: string | null;
2505
+ destinationLabel?: string | null;
2506
+ bucketName?: string;
2507
+ templateName?: string;
2508
+ templateData?: string;
2509
+ priorityCode: string;
2510
+ title?: string;
2511
+ body?: string;
2512
+ metaData?: string;
2513
+ recipients: Array<{
2514
+ recipientTypeCode: string;
2515
+ channelCode?: string;
2516
+ userId?: string | null;
2517
+ clientId?: string | null;
2518
+ groupId?: string | null;
2519
+ address?: string | null;
2520
+ isRequiredForProcessed?: boolean | false;
2521
+ isRequiredForCallback?: boolean | false;
2522
+ }>;
2523
+ actions?: Array<{
2524
+ code: string;
2525
+ label: string;
2526
+ metaData?: string;
2527
+ destinationType: string;
2528
+ destination: string;
2529
+ destinationData?: string;
2530
+ sortOrder: number;
2531
+ }>;
2532
+ callbacks?: Array<{
2533
+ code: string;
2534
+ url: string;
2535
+ method: string;
2536
+ payload?: any;
2537
+ triggerOnSent: boolean;
2538
+ triggerOnFailed: boolean;
2539
+ triggerOnPartial: boolean;
2540
+ headers?: Record<string, string> | null;
2541
+ timeoutSeconds?: number;
2542
+ maxRetries?: number;
2543
+ }>;
2544
+ }
2545
+
2546
+ interface UserNotificationAction {
2547
+ actionId: number;
2548
+ code: string;
2549
+ label: string;
2550
+ metaData?: string | null;
2551
+ destinationType: string;
2552
+ destination: string;
2553
+ destinationData?: string | null;
2554
+ sortOrder: string;
2555
+ }
2556
+ interface UserNotificationInboxItem {
2557
+ recipientId: string;
2558
+ notificationId: string;
2559
+ jobId?: string | null;
2560
+ notificationTypeCode: string | null;
2561
+ icon: string | null;
2562
+ channelCode: string;
2563
+ destination: string | null;
2564
+ destinationLabel: string | null;
2565
+ title: string;
2566
+ body: string | null;
2567
+ metaData: string | null;
2568
+ address: string | null;
2569
+ statusCode: string;
2570
+ isRead: boolean;
2571
+ readAt?: string | null;
2572
+ createdAt: string;
2573
+ attempts: number;
2574
+ lastAttemptAt: string;
2575
+ lastErrorMessage: string | null;
2576
+ userId?: string | null;
2577
+ clientId?: string | null;
2578
+ groupId?: string | null;
2579
+ jobStatusCode?: string | null;
2580
+ jobProcessedCount?: number | 0;
2581
+ jobTotalCount?: number | 0;
2582
+ jobProcessedNotificationsCount: number | 0;
2583
+ jobTotalNotificationsCount: number | 0;
2584
+ actions?: UserNotificationAction[] | null;
2585
+ }
2586
+
2587
+ interface RecipientNotificationAction {
2588
+ actionId: number;
2589
+ code: string;
2590
+ label: string;
2591
+ metaData?: string | null;
2592
+ destinationType: string;
2593
+ destination: string;
2594
+ destinationData?: string | null;
2595
+ sortOrder: string;
2596
+ }
2597
+ interface RecipientNotification {
2598
+ recipientId: string;
2599
+ notificationId: string;
2600
+ jobId?: string | null;
2601
+ notificationTypeCode: string | null;
2602
+ icon: string | null;
2603
+ channelCode: string;
2604
+ destination: string | null;
2605
+ destinationLabel: string | null;
2606
+ title: string;
2607
+ body: string | null;
2608
+ metaData?: string | null;
2609
+ address: string | null;
2610
+ statusCode: string;
2611
+ isRead: boolean;
2612
+ readAt?: string | null;
2613
+ createdAt: string;
2614
+ attempts: number;
2615
+ lastAttemptAt: string;
2616
+ lastErrorMessage: string | null;
2617
+ userId?: string | null;
2618
+ clientId?: string | null;
2619
+ groupId?: string | null;
2620
+ jobStatusCode?: string;
2621
+ jobProcessedCount?: number;
2622
+ jobTotalCount?: number;
2623
+ jobProcessedNotificationsCount: number;
2624
+ jobTotalNotificationsCount: number;
2625
+ actions?: RecipientNotificationAction[] | null;
2626
+ }
2627
+
2628
+ interface RecipientProgressNotificationAction {
2629
+ actionId: number;
2630
+ code: string;
2631
+ label: string;
2632
+ metaData?: string | null;
2633
+ destinationType: string;
2634
+ destination: string;
2635
+ destinationData?: string | null;
2636
+ sortOrder: string;
2637
+ }
2638
+ interface RecipientProgressNotification {
2639
+ recipientId: string;
2640
+ notificationId: string;
2641
+ jobId?: string | null;
2642
+ notificationTypeCode: string | null;
2643
+ icon: string | null;
2644
+ channelCode: string;
2645
+ destination: string | null;
2646
+ destinationLabel: string | null;
2647
+ title: string;
2648
+ body: string | null;
2649
+ metaData?: string | null;
2650
+ address: string | null;
2651
+ statusCode: string;
2652
+ isRead: boolean;
2653
+ readAt?: string | null;
2654
+ createdAt: string;
2655
+ attempts: number;
2656
+ lastAttemptAt: string;
2657
+ lastErrorMessage: string | null;
2658
+ userId?: string | null;
2659
+ clientId?: string | null;
2660
+ groupId?: string | null;
2661
+ jobStatusCode?: string;
2662
+ jobProcessedCount?: number;
2663
+ jobTotalCount?: number;
2664
+ jobProcessedNotificationsCount: number;
2665
+ jobTotalNotificationsCount: number;
2666
+ actions?: RecipientProgressNotificationAction[] | null;
2667
+ }
2668
+
2669
+ interface CallbackExecutionResult {
2670
+ correlationId: string;
2671
+ notificationId: string;
2672
+ recipientId: string;
2673
+ jobId?: string | null;
2674
+ callbackCode: string;
2675
+ triggerOnSent: boolean;
2676
+ triggerOnFailed: boolean;
2677
+ triggerOnPartial: boolean;
2678
+ success: boolean;
2679
+ httpStatus?: number | null;
2680
+ payload?: any | null;
2681
+ responseBody?: string | null;
2682
+ error?: string | null;
2683
+ finishedAt: string;
2684
+ }
2685
+
2686
+ interface CreateNotificationJobRequest {
2687
+ featureCode: string;
2688
+ origin: string;
2689
+ totalCount: number;
2690
+ totalNotificationsCount: number;
2691
+ notifications?: CreateNotificationsForJobRequest[] | null;
2692
+ }
2693
+ interface CreateNotificationsForJobRequest {
2694
+ originReference: string;
2695
+ notificationTypeCode: string;
2696
+ destination?: string | null;
2697
+ destinationLabel?: string | null;
2698
+ bucketName?: string;
2699
+ templateName?: string;
2700
+ templateData?: string;
2701
+ priorityCode: string;
2702
+ title?: string;
2703
+ body?: string;
2704
+ metaData?: string;
2705
+ recipients: Array<{
2706
+ recipientTypeCode: string;
2707
+ channelCode?: string;
2708
+ userId?: string | null;
2709
+ clientId?: string | null;
2710
+ groupId?: string | null;
2711
+ address?: string | null;
2712
+ isRequiredForProcessed?: boolean | false;
2713
+ isRequiredForCallback?: boolean | false;
2714
+ }>;
2715
+ actions?: Array<{
2716
+ code: string;
2717
+ label: string;
2718
+ metaData?: string;
2719
+ destinationType: string;
2720
+ destination: string;
2721
+ destinationData?: string;
2722
+ sortOrder: number;
2723
+ }>;
2724
+ callbacks?: Array<{
2725
+ code: string;
2726
+ url: string;
2727
+ method: string;
2728
+ payload?: any;
2729
+ triggerOnSent: boolean;
2730
+ triggerOnFailed: boolean;
2731
+ triggerOnPartial: boolean;
2732
+ headers?: Record<string, string> | null;
2733
+ timeoutSeconds?: number;
2734
+ maxRetries?: number;
2735
+ }>;
2736
+ }
2737
+
2738
+ interface NotificationResponse {
2739
+ jobId: string;
2740
+ featureCode: string;
2741
+ origin: string;
2742
+ createdBy: string;
2743
+ createdAt: string;
2744
+ }
2745
+ interface NotificationJobResponse {
2746
+ jobId: string;
2747
+ featureCode: string;
2748
+ origin: string;
2749
+ createdBy: string;
2750
+ createdAt: string;
2751
+ statusCode: string;
2752
+ totalCount: number;
2753
+ processedCount: number;
2754
+ processedNotificationsCount: number;
2755
+ totalNotificationsCount: number;
2756
+ successCount: number;
2757
+ failCount: number;
2758
+ finishedAt?: string | null;
2759
+ }
2760
+ interface NotificationByJobItemResponse {
2761
+ notificationId: string;
2762
+ jobId: string;
2763
+ originReference?: string | null;
2764
+ clientId?: string | null;
2765
+ groupId?: string | null;
2766
+ statusId: string;
2767
+ createdAt?: string | null;
2768
+ }
2769
+ interface NotificationJobProgressResponse {
2770
+ jobId: string;
2771
+ featureCode: string;
2772
+ origin: string;
2773
+ createdBy: string;
2774
+ createdAt: string;
2775
+ statusId: number;
2776
+ statusCode?: string | null;
2777
+ totalCount: number;
2778
+ processedCount: number;
2779
+ successCount: number;
2780
+ failCount: number;
2781
+ finishedAt?: string | null;
2782
+ percent: number;
2783
+ }
2784
+ interface NotificationRecipientSummaryResponse {
2785
+ recipientId: string;
2786
+ channelCode: string | "";
2787
+ recipientTypeCode: string | "";
2788
+ userId?: string | null;
2789
+ clientId?: string | null;
2790
+ groupId?: string | null;
2791
+ address: string;
2792
+ statusCode: string;
2793
+ attempts: number;
2794
+ lastAttemptAt?: string | null;
2795
+ lastErrorMessage?: string | null;
2796
+ isRead: boolean;
2797
+ readAt?: string | null;
2798
+ }
2799
+
2800
+ /**
2801
+ * Error mínimo de dispatch para campanas / UI.
2802
+ * - Fuente: progress (SignalR) + persistencia (rehidratación recipients)
2803
+ * - Key natural: recipientId
2804
+ * - Escalable: agrega campos opcionales sin romper consumers.
2805
+ */
2806
+ interface RecipientDispatchError {
2807
+ recipientId: string;
2808
+ /** Texto del último error (si el backend lo provee) */
2809
+ lastErrorMessage: string | null;
2810
+ /** Campos opcionales útiles (ya existen en progress) */
2811
+ notificationId?: string;
2812
+ jobId?: string | null;
2813
+ channelCode?: string;
2814
+ statusCode?: string;
2815
+ attempts?: number;
2816
+ lastAttemptAt?: string | null;
2817
+ /** Identificadores de negocio si los quieres luego */
2818
+ userId?: string | null;
2819
+ clientId?: string | null;
2820
+ groupId?: string | null;
2821
+ }
2822
+
2823
+ declare class NotificationService {
2824
+ private http;
2825
+ private readonly configService;
2826
+ private readonly path;
2827
+ private readonly defaultHeaders;
2828
+ constructor(http: HttpClient);
2829
+ getNotificacionsByUser(userId: string): Observable<UserNotificationInboxItem[]>;
2830
+ markAsRead(recipientId: string): Observable<NotificationRecipientSummaryResponse>;
2831
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
2832
+ static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
2833
+ }
2834
+
2835
+ declare class NotificationJobService {
2836
+ private http;
2837
+ private readonly configService;
2838
+ private readonly path;
2839
+ private readonly defaultHeaders;
2840
+ constructor(http: HttpClient);
2841
+ createJobNotifications(payload: CreateNotificationJobRequest): Observable<NotificationJobResponse>;
2842
+ createJob(payload: CreateNotificationJobRequest): Observable<NotificationJobResponse>;
2843
+ getJob(jobId: string): Observable<NotificationJobResponse>;
2844
+ createNotifications(jobId: string, payload: CreateNotificationsForJobRequest[]): Observable<NotificationResponse>;
2845
+ getActiveJob(featureCode: string, origin?: string): Observable<NotificationJobResponse | null>;
2846
+ getRecipients(jobId: string): Observable<NotificationRecipientSummaryResponse[]>;
2847
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationJobService, never>;
2848
+ static ɵprov: i0.ɵɵInjectableDeclaration<NotificationJobService>;
2849
+ }
2850
+
2851
+ declare class NotificationSignalRService {
2852
+ private zone;
2853
+ private readonly configService;
2854
+ private readonly path;
2855
+ private hubConnection?;
2856
+ private startPromise?;
2857
+ private joinedGroups;
2858
+ private notificationSendSubject;
2859
+ notificationSend$: rxjs.Observable<RecipientNotification>;
2860
+ private jobProgressSubject;
2861
+ jobProgress$: rxjs.Observable<RecipientProgressNotification>;
2862
+ private callbackResultSubject;
2863
+ callbackResult$: rxjs.Observable<CallbackExecutionResult>;
2864
+ constructor(zone: NgZone);
2865
+ /**
2866
+ * Inicia la conexión una sola vez. Reutiliza la promesa para evitar carreras.
2867
+ */
2868
+ startConnection(): Promise<void>;
2869
+ /**
2870
+ * Se une a un grupo de forma idempotente.
2871
+ * Importante: esta función garantiza que la conexión esté iniciada.
2872
+ */
2873
+ joinScope(scopeType: string, scopeId: string): Promise<void>;
2874
+ /**
2875
+ * Sale de un grupo y actualiza el estado local.
2876
+ * Requiere que el Hub implemente el método Disconnect(groupName).
2877
+ */
2878
+ leaveScope(scopeType: string, scopeId: string): Promise<void>;
2879
+ /**
2880
+ * Detiene la conexión y limpia estado local.
2881
+ * Útil si quieres liberar recursos al cerrar sesión.
2882
+ */
2883
+ stopConnection(): Promise<void>;
2884
+ private registerListeners;
2885
+ /**
2886
+ * SignalR pierde pertenencia a grupos tras reconexión: re-join automático.
2887
+ */
2888
+ private registerReconnectHandlers;
2889
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationSignalRService, never>;
2890
+ static ɵprov: i0.ɵɵInjectableDeclaration<NotificationSignalRService>;
2891
+ }
2892
+
2893
+ declare class NotificationOrchestratorService {
2894
+ private jobService;
2895
+ private notificationService;
2896
+ private signalR;
2897
+ private featureCode?;
2898
+ private origin?;
2899
+ private currentJobId?;
2900
+ private subscribedJobId?;
2901
+ private readonly jobStateSubject;
2902
+ readonly jobState$: Observable<JobState>;
2903
+ private readonly dispatchErrorsMapSubject;
2904
+ readonly dispatchErrors$: Observable<Map<string, RecipientDispatchError>>;
2905
+ private readonly callbackRawSubject;
2906
+ readonly callbackRaw$: Observable<CallbackExecutionResult>;
2907
+ /**
2908
+ * Router de progreso por jobId (para UIs multi-job).
2909
+ */
2910
+ private readonly jobProgressSubjects;
2911
+ private readonly jobWatchRefCount;
2912
+ /**
2913
+ * Router de NotificationSend por userId (campana/inbox).
2914
+ */
2915
+ private readonly userInboxSubjects;
2916
+ private readonly userWatchRefCount;
2917
+ private initInFlight?;
2918
+ constructor(jobService: NotificationJobService, notificationService: NotificationService, signalR: NotificationSignalRService);
2919
+ watchUserInbox(userId: string): Promise<Observable<RecipientNotification>>;
2920
+ unwatchUserInbox(userId: string): Promise<void>;
2921
+ userInbox$(userId: string): Observable<RecipientNotification>;
2922
+ watchJobProgress(jobId: string): Promise<Observable<RecipientProgressNotification>>;
2923
+ unwatchJobProgress(jobId: string): Promise<void>;
2924
+ jobProgress$(jobId: string): Observable<RecipientProgressNotification>;
2925
+ rehydrateScope(featureCode: string, origin: string): Promise<void>;
2926
+ getCurrentJobId(): string | undefined;
2927
+ getJobStateSnapshot(): JobState;
2928
+ ensureActiveOrCreateJobNotifications(totalCount: number, totalNotificationsCount: number, notificationDraft: NotificationDraft[]): Promise<{
2929
+ jobId: string;
2930
+ mode: "active" | "created";
2931
+ }>;
2932
+ ensureCreateJobNotifications(featureCode: string, origin: string, totalCount: number, totalNotificationsCount: number, notificationDraft: NotificationDraft[]): Promise<void>;
2933
+ markAsRead(recipientId: string): Promise<NotificationRecipientSummaryResponse>;
2934
+ getNotificacionsByUser(userId: string): Promise<UserNotificationInboxItem[]>;
2935
+ resetLocal(): void;
2936
+ private rehydrateActiveJobInternal;
2937
+ private subscribeToJob;
2938
+ private onNotificationSend;
2939
+ private onJobProgress;
2940
+ private onCallbackResult;
2941
+ private setJobState;
2942
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationOrchestratorService, never>;
2943
+ static ɵprov: i0.ɵɵInjectableDeclaration<NotificationOrchestratorService>;
2944
+ }
2945
+
2946
+ export { ALERT_DEFAULTS, ALERT_ICON_PATHS, ALERT_TYPE_CONFIG, ActionDirective, ActionsMenuComponent, AddFavoritesComponent, AlertButtonMode, AlertService, AlertType, ButtonSplitComponent, CheckboxFilterDirective, Color, ColumnComponent, ColumnGroupComponent, CompareByField, ConfigService, CookieAttributesGeneral, DATEPICKER_BUTTON_TYPES, DataDirective, DateFilterDirective, DateModeOptions, DatepickerComponent, DynamicInputValidation, EchartComponent, EchartService, ElementService, EmailInputValidation, ErrorInterceptor, FeatureFlagService, FilterChipsComponent, FiltersComponent, FormatAmountPipe, GetCookieAttributes, GlobalFeatureFlagService, GlobalTermService, HtmlToExcelService, InitializeConfigService, InputValidation, IntelicaAlertComponent, IntelicaCellCheckboxDirective, IntelicaSessionService, IntelicaTheme, ItemSplitDirective, LanguageService, MatrixColumnComponent, MatrixColumnGroupComponent, MatrixTableComponent, ModalDialogComponent, MultiSelectComponent, NotificationJobService, NotificationOrchestratorService, NotificationService, NotificationSignalRService, OrderConstants, PageRootChildGuard, PaginatorComponent, Patterns, PopoverComponent, ProfileService, RecordPerPageComponent, RefreshTokenInterceptor, RouteGuard, RowResumenComponent, RowResumenTreeComponent, SearchComponent, SelectDetailFilterDirective, SelectFilterDirective, SharedService, SkeletonChartComponent, SkeletonComponent, SkeletonService, SkeletonTableComponent, SortingComponent, SpinnerComponent, SpinnerService, SweetAlertService, TableComponent, TableFetchComponent, TableSortOrder, TemplateDirective, TemplateMenuComponent, TermGuard, TermPipe, TermService, TextAreaFilterDirective, TextFilterDirective, TextRangeFilterDirective, TreeColumnComponent, TreeColumnGroupComponent, TreeTableComponent, TruncatePipe, decryptData, encryptData, getColor };
2947
+ export type { AlertButtonConfig, AlertConfig, AlertResult, AlertStyleConfig, AlertTypeConfig, CallbackExecutionResult, CascadeFilterModel, ColorName, CookieAttributes, CreateNotificationJobRequest, CreateNotificationsForJobRequest, CustomButtonType, DateMode, ExportExcelCommand, FilterModel, ICell, IExcelColumnName, IExcelHeaderGroup, IFilter, ItlSessionEnvelope, ItlSessionScope, JobState, JobStatusCode, NotificationByJobItemResponse, NotificationDraft, NotificationJobProgressResponse, NotificationJobResponse, NotificationRecipientSummaryResponse, NotificationResponse, PopoverInformationModel, PropertiesModel, QueryParametersModel, RecipientDispatchError, RecipientNotification, RecipientNotificationAction, RecipientProgressNotification, RecipientProgressNotificationAction, SearchFieldModel, SearchInputModel, SortFieldModel, UserNotificationAction, UserNotificationInboxItem };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelica-library-components",
3
- "version": "1.1.18",
3
+ "version": "1.1.21",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.3.0",
6
6
  "@angular/core": "^20.3.0",