@edifice.io/client 2.5.23-develop.20260623093925 → 2.5.23-develop.20260623111724
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/dist/apps/timeline/interfaces.d.ts +36 -17
- package/dist/index.cjs +1 -1
- package/dist/index.js +2117 -2091
- package/dist/services/OdeServices.d.ts +15 -11
- package/dist/services/index.d.ts +1 -0
- package/dist/session/Service.d.ts +1 -0
- package/dist/session/interfaces.d.ts +5 -2
- package/dist/widget/Service.d.ts +13 -0
- package/dist/widget/interfaces.d.ts +0 -1
- package/package.json +3 -3
- package/dist/widget/LastInfos.widget.d.ts +0 -15
|
@@ -28,24 +28,41 @@ export interface ITimelineNotification {
|
|
|
28
28
|
report(): Promise<void>;
|
|
29
29
|
}
|
|
30
30
|
export type NotificationModel = {
|
|
31
|
-
_id: string;
|
|
32
|
-
type: string;
|
|
33
|
-
eventType
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
31
|
+
'_id': string;
|
|
32
|
+
'type': string;
|
|
33
|
+
'eventType'?: string;
|
|
34
|
+
'event-type'?: string;
|
|
35
|
+
'sub-resource'?: string;
|
|
36
|
+
'resource'?: string;
|
|
37
|
+
'sender'?: string;
|
|
38
|
+
'params': Record<string, string | number | undefined | null> & {
|
|
39
|
+
uri?: string;
|
|
40
|
+
username?: string;
|
|
41
|
+
blogTitle?: string;
|
|
42
|
+
resourceUri?: string;
|
|
43
|
+
resourcename?: string;
|
|
44
|
+
messageUri?: string;
|
|
45
|
+
bookingUri?: string;
|
|
46
|
+
startdate?: string;
|
|
47
|
+
enddate?: string;
|
|
48
|
+
motto?: string | null;
|
|
49
|
+
subject?: string;
|
|
50
|
+
issueId?: number | string;
|
|
51
|
+
ticketId?: number;
|
|
52
|
+
ticketUri?: string;
|
|
53
|
+
eventUri?: string;
|
|
54
|
+
profilUri?: string;
|
|
55
|
+
CalendarTitle?: string;
|
|
56
|
+
calendarUri?: string;
|
|
57
|
+
postTitle?: string;
|
|
41
58
|
};
|
|
42
|
-
date: {
|
|
43
|
-
$date: number;
|
|
59
|
+
'date': {
|
|
60
|
+
$date: number | string;
|
|
44
61
|
};
|
|
45
|
-
message: string;
|
|
46
|
-
recipients?: Array<Recipient>;
|
|
47
|
-
reported?: boolean;
|
|
48
|
-
reporters?: any;
|
|
62
|
+
'message': string;
|
|
63
|
+
'recipients'?: Array<Recipient>;
|
|
64
|
+
'reported'?: boolean;
|
|
65
|
+
'reporters'?: any;
|
|
49
66
|
};
|
|
50
67
|
export interface Recipient {
|
|
51
68
|
userId: string;
|
|
@@ -53,7 +70,9 @@ export interface Recipient {
|
|
|
53
70
|
export interface IFlashMessageModel {
|
|
54
71
|
readonly id: string;
|
|
55
72
|
readonly title?: string;
|
|
56
|
-
readonly contents?:
|
|
73
|
+
readonly contents?: {
|
|
74
|
+
[key: string]: string;
|
|
75
|
+
};
|
|
57
76
|
readonly startDate?: string;
|
|
58
77
|
readonly endDate?: string;
|
|
59
78
|
readonly readCount?: number;
|