@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.
@@ -41,7 +41,8 @@ export interface Notification {
41
41
  projectId: string;
42
42
  title: string;
43
43
  description: string;
44
- taskId: string;
44
+ sessionId: string;
45
+ taskId?: string | null;
45
46
  };
46
47
  }
47
48
  export interface PublicUsername {
@@ -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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.130.0",
3
+ "version": "1.131.1",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {