@databutton/firebase-types 1.130.0 → 1.131.1
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.
|
@@ -567,4 +567,15 @@ export type RegisterSlackAppResponse = {
|
|
|
567
567
|
errorCode: string;
|
|
568
568
|
errorMessage?: string;
|
|
569
569
|
};
|
|
570
|
+
export type CreateApprovalNotificationRequest = {
|
|
571
|
+
projectId: string;
|
|
572
|
+
accountId: string;
|
|
573
|
+
userId: string;
|
|
574
|
+
toolName: string;
|
|
575
|
+
sessionId: string;
|
|
576
|
+
taskId?: string | null;
|
|
577
|
+
};
|
|
578
|
+
export type CreateApprovalNotificationResponse = {
|
|
579
|
+
notificationId: string;
|
|
580
|
+
};
|
|
570
581
|
export {};
|