@databutton/firebase-types 1.134.0 → 1.136.0
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.
|
@@ -33,7 +33,7 @@ export interface ProjectEventsReadMap {
|
|
|
33
33
|
export interface Notification {
|
|
34
34
|
createdBy: PerformedBy;
|
|
35
35
|
createdAt: Timestamp;
|
|
36
|
-
userId: string;
|
|
36
|
+
userId: string | null;
|
|
37
37
|
groupId: string | null;
|
|
38
38
|
read: boolean;
|
|
39
39
|
type: NotificationType.AGENT_TASK_REQUIRE_INPUT;
|
|
@@ -43,6 +43,7 @@ export interface Notification {
|
|
|
43
43
|
description: string;
|
|
44
44
|
sessionId: string;
|
|
45
45
|
taskId?: string | null;
|
|
46
|
+
displayId?: string | null;
|
|
46
47
|
reason?: string | null;
|
|
47
48
|
taskTitle?: string | null;
|
|
48
49
|
};
|
|
@@ -571,10 +571,11 @@ export type RegisterSlackAppResponse = {
|
|
|
571
571
|
export type CreateApprovalNotificationRequest = {
|
|
572
572
|
projectId: string;
|
|
573
573
|
accountId: string;
|
|
574
|
-
userId: string;
|
|
574
|
+
userId: string | null;
|
|
575
575
|
toolName: string;
|
|
576
576
|
sessionId: string;
|
|
577
577
|
taskId?: string | null;
|
|
578
|
+
displayId?: string | null;
|
|
578
579
|
reason?: string | null;
|
|
579
580
|
taskTitle?: string | null;
|
|
580
581
|
};
|