nb-js-client 1.0.78 → 1.0.79
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/index.d.ts +2 -0
- package/dist/types/notification.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -912,6 +912,7 @@ interface UserNotification {
|
|
|
912
912
|
owner?: UserLabel;
|
|
913
913
|
is_other_content?: boolean;
|
|
914
914
|
task_notification_id?: number;
|
|
915
|
+
task_notification?: TaskNotification;
|
|
915
916
|
}
|
|
916
917
|
declare enum NotificationEntityType {
|
|
917
918
|
Dir = "dir",
|
|
@@ -1020,6 +1021,7 @@ interface TaskNotification {
|
|
|
1020
1021
|
id: number;
|
|
1021
1022
|
markdown_body?: string | string[] | number[];
|
|
1022
1023
|
media_file_id?: string;
|
|
1024
|
+
payload?: Record<string, string>;
|
|
1023
1025
|
}
|
|
1024
1026
|
|
|
1025
1027
|
interface Permission {
|
|
@@ -17,6 +17,7 @@ export interface UserNotification {
|
|
|
17
17
|
owner?: UserLabel;
|
|
18
18
|
is_other_content?: boolean;
|
|
19
19
|
task_notification_id?: number;
|
|
20
|
+
task_notification?: TaskNotification;
|
|
20
21
|
}
|
|
21
22
|
export declare enum NotificationEntityType {
|
|
22
23
|
Dir = "dir",
|
|
@@ -125,5 +126,6 @@ export interface TaskNotification {
|
|
|
125
126
|
id: number;
|
|
126
127
|
markdown_body?: string | string[] | number[];
|
|
127
128
|
media_file_id?: string;
|
|
129
|
+
payload?: Record<string, string>;
|
|
128
130
|
}
|
|
129
131
|
export {};
|