@databutton/firebase-types 1.78.0 → 1.78.2

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.
@@ -71,6 +71,7 @@ export declare enum CollectionName {
71
71
  export declare enum DatabuttonIdPrefix {
72
72
  API_KEY = "dbtk",
73
73
  APP_DEPLOY = "ad",
74
+ AUDIT_LOG = "aul",
74
75
  BACKEND = "be",
75
76
  CAPABILITY = "cap",
76
77
  CODE_BLOCK = "cb",
@@ -73,6 +73,7 @@ export var DatabuttonIdPrefix;
73
73
  (function (DatabuttonIdPrefix) {
74
74
  DatabuttonIdPrefix["API_KEY"] = "dbtk";
75
75
  DatabuttonIdPrefix["APP_DEPLOY"] = "ad";
76
+ DatabuttonIdPrefix["AUDIT_LOG"] = "aul";
76
77
  DatabuttonIdPrefix["BACKEND"] = "be";
77
78
  DatabuttonIdPrefix["CAPABILITY"] = "cap";
78
79
  DatabuttonIdPrefix["CODE_BLOCK"] = "cb";
@@ -198,4 +198,12 @@ export type RestartDevxRequest = {
198
198
  export type RestartDevxResponse = {
199
199
  success: boolean;
200
200
  };
201
+ export type TransferOwnershipRequest = {
202
+ projectId: string;
203
+ newOwnerEmail: string;
204
+ moveOwnerToCollaborator: boolean;
205
+ };
206
+ export type TransferOwnershipResponse = {
207
+ success: boolean;
208
+ };
201
209
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.78.0",
3
+ "version": "1.78.2",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {