@databutton/firebase-types 1.141.0 → 1.142.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.
@@ -63,6 +63,7 @@ export interface Notification {
63
63
  displayId?: string | null;
64
64
  reason?: string | null;
65
65
  taskTitle?: string | null;
66
+ environment?: "dev" | "prod" | null;
66
67
  };
67
68
  }
68
69
  export interface PublicUsername {
@@ -1014,6 +1015,7 @@ export interface OidcAuthExtensionAttributesForWorkos {
1014
1015
  export interface WorkosAuthExtensionConfig {
1015
1016
  clientId: string;
1016
1017
  orgId: string;
1018
+ refreshKey?: string;
1017
1019
  }
1018
1020
  export interface StackAuthExtensionConfig {
1019
1021
  projectId: string;
@@ -1548,6 +1550,9 @@ export interface ProjectAccess {
1548
1550
  prodxAppbutlerId?: string | null;
1549
1551
  supportUntil?: Timestamp | null;
1550
1552
  devxOpenUntil?: Timestamp | null;
1553
+ refreshKey?: string;
1554
+ salt?: string;
1555
+ checkAttributes?: OidcAttributeCheck[];
1551
1556
  }
1552
1557
  export type DnsRecord = {
1553
1558
  name: string;
@@ -578,6 +578,7 @@ export type CreateApprovalNotificationRequest = {
578
578
  displayId?: string | null;
579
579
  reason?: string | null;
580
580
  taskTitle?: string | null;
581
+ environment?: "dev" | "prod" | null;
581
582
  };
582
583
  export type CreateApprovalNotificationResponse = {
583
584
  notificationId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.141.0",
3
+ "version": "1.142.0",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {