@fewangsit/wangsvue 1.5.200-alpha.2 → 1.5.200-alpha.4
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { StatusSeverity } from '../../types/wangsStatus.type';
|
|
2
2
|
import { ClassComponent } from '../.././components/ts-helpers';
|
|
3
3
|
import { WangsIcons } from '../.././components/icon/Icon.vue.d';
|
|
4
|
+
import { Task } from '@fewangsit/workspace-api-services/src/types/taskService.type';
|
|
4
5
|
|
|
5
6
|
|
|
6
7
|
export type GetNotificationParam = {
|
|
@@ -54,6 +55,7 @@ export type NotificationItemType = {
|
|
|
54
55
|
pbiId?: string;
|
|
55
56
|
moduleId?: string;
|
|
56
57
|
subModuleId?: string;
|
|
58
|
+
subModuleName?: string;
|
|
57
59
|
taskId?: string;
|
|
58
60
|
ticketId?: string;
|
|
59
61
|
platform?: string;
|
|
@@ -61,6 +63,8 @@ export type NotificationItemType = {
|
|
|
61
63
|
_id: string;
|
|
62
64
|
nickName: string;
|
|
63
65
|
};
|
|
66
|
+
invalidTasks?: Task[];
|
|
67
|
+
missingProcesses?: string[];
|
|
64
68
|
};
|
|
65
69
|
createdAt: string;
|
|
66
70
|
updatedAt: string;
|
|
@@ -2,5 +2,5 @@ import { NotificationItemType } from '../NotificationItem.vue.d';
|
|
|
2
2
|
export declare const goToAccountMember: (notification: NotificationItemType) => void;
|
|
3
3
|
export declare const goToQC: (notification: NotificationItemType) => void;
|
|
4
4
|
export declare const goToApproval: (notification: NotificationItemType) => void;
|
|
5
|
-
export declare const goToProject: (notification: NotificationItemType) =>
|
|
5
|
+
export declare const goToProject: (notification: NotificationItemType) => string | undefined;
|
|
6
6
|
export declare const goToProjectList: (notification: NotificationItemType) => void;
|