@databutton/firebase-types 1.147.0 → 1.149.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.
|
@@ -109,7 +109,8 @@ export declare enum AccountRole {
|
|
|
109
109
|
ADMIN = "admin",
|
|
110
110
|
COLLABORATOR = "collaborator",
|
|
111
111
|
BILLING = "billing",
|
|
112
|
-
SUPPORT = "support"
|
|
112
|
+
SUPPORT = "support",
|
|
113
|
+
VIEWER = "viewer"
|
|
113
114
|
}
|
|
114
115
|
export declare enum DatabuttonIdPrefix {
|
|
115
116
|
AGENT_SKILL = "ask",
|
|
@@ -113,6 +113,7 @@ export var AccountRole;
|
|
|
113
113
|
AccountRole["COLLABORATOR"] = "collaborator";
|
|
114
114
|
AccountRole["BILLING"] = "billing";
|
|
115
115
|
AccountRole["SUPPORT"] = "support";
|
|
116
|
+
AccountRole["VIEWER"] = "viewer";
|
|
116
117
|
})(AccountRole || (AccountRole = {}));
|
|
117
118
|
export var DatabuttonIdPrefix;
|
|
118
119
|
(function (DatabuttonIdPrefix) {
|
|
@@ -273,6 +273,13 @@ export type TransferOwnershipRequest = {
|
|
|
273
273
|
export type TransferOwnershipResponse = {
|
|
274
274
|
success: boolean;
|
|
275
275
|
};
|
|
276
|
+
export type MoveProjectToTeamRequest = {
|
|
277
|
+
projectId: string;
|
|
278
|
+
targetAccountId: string;
|
|
279
|
+
};
|
|
280
|
+
export type MoveProjectToTeamResponse = {
|
|
281
|
+
success: boolean;
|
|
282
|
+
};
|
|
276
283
|
export type CreateNeonTransferRequest = {
|
|
277
284
|
projectId: string;
|
|
278
285
|
ttlSeconds?: number;
|