intelica-library-components 1.1.41 → 1.1.42
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
|
@@ -2512,7 +2512,6 @@ interface JobState {
|
|
|
2512
2512
|
}
|
|
2513
2513
|
|
|
2514
2514
|
interface NotificationDraft {
|
|
2515
|
-
origin: string;
|
|
2516
2515
|
originReference: string;
|
|
2517
2516
|
notificationTypeCode: string;
|
|
2518
2517
|
destination?: string | null;
|
|
@@ -2632,8 +2631,8 @@ interface RecipientNotification {
|
|
|
2632
2631
|
statusCode: string;
|
|
2633
2632
|
isRequiredAsUnread: boolean;
|
|
2634
2633
|
isRead: boolean;
|
|
2635
|
-
isHidden: boolean;
|
|
2636
2634
|
readAt?: string | null;
|
|
2635
|
+
isHidden: boolean;
|
|
2637
2636
|
hiddenAt?: string | null;
|
|
2638
2637
|
createdAt: string;
|
|
2639
2638
|
attempts: number;
|
|
@@ -2677,8 +2676,8 @@ interface RecipientProgressNotification {
|
|
|
2677
2676
|
statusCode: string;
|
|
2678
2677
|
isRequiredAsUnread: boolean;
|
|
2679
2678
|
isRead: boolean;
|
|
2680
|
-
isHidden: boolean;
|
|
2681
2679
|
readAt?: string | null;
|
|
2680
|
+
isHidden: boolean;
|
|
2682
2681
|
hiddenAt?: string | null;
|
|
2683
2682
|
createdAt: string;
|
|
2684
2683
|
attempts: number;
|
|
@@ -2826,8 +2825,11 @@ interface NotificationRecipientSummaryResponse {
|
|
|
2826
2825
|
attempts: number;
|
|
2827
2826
|
lastAttemptAt?: string | null;
|
|
2828
2827
|
lastErrorMessage?: string | null;
|
|
2828
|
+
isRequiredAsUnread: boolean;
|
|
2829
2829
|
isRead: boolean;
|
|
2830
2830
|
readAt?: string | null;
|
|
2831
|
+
isHidden: boolean;
|
|
2832
|
+
hiddenAt?: string | null;
|
|
2831
2833
|
}
|
|
2832
2834
|
|
|
2833
2835
|
/**
|