intelica-library-components 1.1.49 → 1.1.50
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
|
@@ -2532,8 +2532,9 @@ type NotificationTypeCode = "NTF" | "PRG" | "BRD" | "TEM" | "OPT";
|
|
|
2532
2532
|
type PriorityCode = "low" | "normal" | "high" | "critical";
|
|
2533
2533
|
type RecipientTypeCode = "user" | "contact" | "phone" | "device" | "topic";
|
|
2534
2534
|
type ChannelCode = "email" | "sms" | "push" | "whatsapp" | "inapp";
|
|
2535
|
-
type
|
|
2536
|
-
type
|
|
2535
|
+
type DestinationTypeCode = "URL" | "NAV" | "GET" | "PUT" | "POST" | "PATCH" | "DELETE";
|
|
2536
|
+
type MethodTypeCode = "PUT" | "POST" | "PATCH" | "DELETE";
|
|
2537
|
+
type ActionTypeCode = "nav" | "file" | "search" | "approve" | "reject";
|
|
2537
2538
|
|
|
2538
2539
|
interface JobState {
|
|
2539
2540
|
jobId?: string;
|
|
@@ -2569,17 +2570,17 @@ interface NotificationDraft {
|
|
|
2569
2570
|
}>;
|
|
2570
2571
|
actions?: Array<{
|
|
2571
2572
|
sortOrder: number;
|
|
2572
|
-
code:
|
|
2573
|
+
code: ActionTypeCode;
|
|
2573
2574
|
label: string;
|
|
2574
2575
|
metaData?: string;
|
|
2575
|
-
destinationType:
|
|
2576
|
+
destinationType: DestinationTypeCode;
|
|
2576
2577
|
destination: string;
|
|
2577
2578
|
destinationData?: string;
|
|
2578
2579
|
markAsRead?: boolean | false;
|
|
2579
2580
|
markAsHidden?: boolean | false;
|
|
2580
2581
|
}>;
|
|
2581
2582
|
attachments?: Array<{
|
|
2582
|
-
method:
|
|
2583
|
+
method: MethodTypeCode;
|
|
2583
2584
|
url: string;
|
|
2584
2585
|
bodyJson?: string | null;
|
|
2585
2586
|
fileName?: string | null;
|
|
@@ -2588,7 +2589,7 @@ interface NotificationDraft {
|
|
|
2588
2589
|
callbacks?: Array<{
|
|
2589
2590
|
code: string;
|
|
2590
2591
|
url: string;
|
|
2591
|
-
method:
|
|
2592
|
+
method: MethodTypeCode;
|
|
2592
2593
|
payload?: any;
|
|
2593
2594
|
triggerOnSent: boolean;
|
|
2594
2595
|
triggerOnFailed: boolean;
|
|
@@ -2602,7 +2603,7 @@ interface NotificationDraft {
|
|
|
2602
2603
|
interface UserNotificationAction {
|
|
2603
2604
|
sortOrder: string;
|
|
2604
2605
|
actionId: number;
|
|
2605
|
-
code:
|
|
2606
|
+
code: ActionTypeCode;
|
|
2606
2607
|
label: string;
|
|
2607
2608
|
metaData?: string | null;
|
|
2608
2609
|
destinationType: string;
|
|
@@ -2647,7 +2648,7 @@ interface UserNotificationInboxItem {
|
|
|
2647
2648
|
interface RecipientNotificationAction {
|
|
2648
2649
|
sortOrder: string;
|
|
2649
2650
|
actionId: number;
|
|
2650
|
-
code:
|
|
2651
|
+
code: ActionTypeCode;
|
|
2651
2652
|
label: string;
|
|
2652
2653
|
metaData?: string | null;
|
|
2653
2654
|
destinationType: string;
|
|
@@ -2692,7 +2693,7 @@ interface RecipientNotification {
|
|
|
2692
2693
|
interface RecipientProgressNotificationAction {
|
|
2693
2694
|
sortOrder: string;
|
|
2694
2695
|
actionId: number;
|
|
2695
|
-
code:
|
|
2696
|
+
code: ActionTypeCode;
|
|
2696
2697
|
label: string;
|
|
2697
2698
|
metaData?: string | null;
|
|
2698
2699
|
destinationType: string;
|
|
@@ -2783,17 +2784,17 @@ interface CreateNotificationsForJobRequest {
|
|
|
2783
2784
|
}>;
|
|
2784
2785
|
actions?: Array<{
|
|
2785
2786
|
sortOrder: number;
|
|
2786
|
-
code:
|
|
2787
|
+
code: ActionTypeCode;
|
|
2787
2788
|
label: string;
|
|
2788
2789
|
metaData?: string;
|
|
2789
|
-
destinationType:
|
|
2790
|
+
destinationType: DestinationTypeCode;
|
|
2790
2791
|
destination: string;
|
|
2791
2792
|
destinationData?: string;
|
|
2792
2793
|
markAsRead?: boolean | false;
|
|
2793
2794
|
markAsHidden?: boolean | false;
|
|
2794
2795
|
}>;
|
|
2795
2796
|
attachments?: Array<{
|
|
2796
|
-
method:
|
|
2797
|
+
method: MethodTypeCode;
|
|
2797
2798
|
url: string;
|
|
2798
2799
|
bodyJson?: string | null;
|
|
2799
2800
|
fileName?: string | null;
|
|
@@ -2802,7 +2803,7 @@ interface CreateNotificationsForJobRequest {
|
|
|
2802
2803
|
callbacks?: Array<{
|
|
2803
2804
|
code: string;
|
|
2804
2805
|
url: string;
|
|
2805
|
-
method:
|
|
2806
|
+
method: MethodTypeCode;
|
|
2806
2807
|
payload?: any;
|
|
2807
2808
|
triggerOnSent: boolean;
|
|
2808
2809
|
triggerOnFailed: boolean;
|
|
@@ -3027,4 +3028,4 @@ declare class NotificationOrchestratorService {
|
|
|
3027
3028
|
}
|
|
3028
3029
|
|
|
3029
3030
|
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, ErrorNewInterceptor, FeatureFlagService, FilterChipsComponent, FiltersComponent, FormatAmountPipe, GetCookieAttributes, GlobalFeatureFlagService, GlobalMenuService, GlobalTermService, HtmlToExcelService, InitializeConfigService, InputValidation, IntelicaAlertComponent, IntelicaCellCheckboxDirective, IntelicaSessionService, IntelicaTheme, ItemSplitDirective, LanguageService, MatrixColumnComponent, MatrixColumnGroupComponent, MatrixTableComponent, ModalDialogComponent, MultiSelectComponent, NotificationJobService, NotificationOrchestratorService, NotificationService, NotificationSignalRService, OrderConstants, PageInformation, PageRootChildGuard, PaginatorComponent, Patterns, PopoverComponent, ProfileService, RecordPerPageComponent, RefreshTokenInterceptor, ResponseHeadersInterceptor, RouteGuard, RouteNewGuard, 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 };
|
|
3030
|
-
export type { AlertButtonConfig, AlertConfig, AlertResult, AlertStyleConfig, AlertTypeConfig, CallbackExecutionResult, CascadeFilterModel, ChannelCode, ColorName, CookieAttributes, CreateNotificationJobRequest, CreateNotificationsForJobRequest, CustomButtonType, DateMode,
|
|
3031
|
+
export type { ActionTypeCode, AlertButtonConfig, AlertConfig, AlertResult, AlertStyleConfig, AlertTypeConfig, CallbackExecutionResult, CascadeFilterModel, ChannelCode, ColorName, CookieAttributes, CreateNotificationJobRequest, CreateNotificationsForJobRequest, CustomButtonType, DateMode, DestinationTypeCode, ExportExcelCommand, FilterModel, ICell, IExcelColumnName, IExcelHeaderGroup, IFilter, ItlSessionEnvelope, ItlSessionScope, JobState, JobStatusCode, MethodTypeCode, NotificationByJobItemResponse, NotificationDraft, NotificationJobProgressResponse, NotificationJobResponse, NotificationRecipientSummaryResponse, NotificationResponse, NotificationTypeCode, Origin, PopoverInformationModel, PriorityCode, PropertiesModel, QueryParametersModel, RecipientDispatchError, RecipientNotification, RecipientNotificationAction, RecipientProgressNotification, RecipientProgressNotificationAction, RecipientTypeCode, SearchFieldModel, SearchInputModel, SortFieldModel, UserNotificationAction, UserNotificationInboxItem };
|