intelica-library-components 1.1.42 → 1.1.44
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
|
@@ -2719,7 +2719,6 @@ interface CreateNotificationJobRequest {
|
|
|
2719
2719
|
notifications?: CreateNotificationsForJobRequest[] | null;
|
|
2720
2720
|
}
|
|
2721
2721
|
interface CreateNotificationsForJobRequest {
|
|
2722
|
-
origin: string;
|
|
2723
2722
|
originReference: string;
|
|
2724
2723
|
notificationTypeCode: string;
|
|
2725
2724
|
destination?: string | null;
|
|
@@ -2965,7 +2964,7 @@ declare class NotificationOrchestratorService {
|
|
|
2965
2964
|
jobId: string;
|
|
2966
2965
|
mode: "active" | "created";
|
|
2967
2966
|
}>;
|
|
2968
|
-
ensureCreateJobNotifications(
|
|
2967
|
+
ensureCreateJobNotifications(origin: string, featureCode: string, notificationDraft: NotificationDraft[]): Promise<void>;
|
|
2969
2968
|
markAsRead(recipientId: string): Promise<NotificationRecipientSummaryResponse>;
|
|
2970
2969
|
markAsHidden(recipientId: string): Promise<NotificationRecipientSummaryResponse>;
|
|
2971
2970
|
getNotificacionsByUser(userId: string): Promise<UserNotificationInboxItem[]>;
|