@databutton/firebase-types 1.125.0 → 1.126.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.
|
@@ -241,7 +241,9 @@ export declare enum CreateTeamAccountErrorCode {
|
|
|
241
241
|
UNAUTHENTICATED = "UNAUTHENTICATED",
|
|
242
242
|
INVALID_NAME = "INVALID_NAME",
|
|
243
243
|
ACCOUNT_LIMIT_REACHED = "ACCOUNT_LIMIT_REACHED",
|
|
244
|
-
INTERNAL_ERROR = "INTERNAL_ERROR"
|
|
244
|
+
INTERNAL_ERROR = "INTERNAL_ERROR",
|
|
245
|
+
INVALID_USERNAME = "INVALID_USERNAME",
|
|
246
|
+
USERNAME_TAKEN = "USERNAME_TAKEN"
|
|
245
247
|
}
|
|
246
248
|
export declare enum ProjectEnvConfigEnv {
|
|
247
249
|
DEV = "dev",
|
|
@@ -265,6 +265,8 @@ export var CreateTeamAccountErrorCode;
|
|
|
265
265
|
CreateTeamAccountErrorCode["INVALID_NAME"] = "INVALID_NAME";
|
|
266
266
|
CreateTeamAccountErrorCode["ACCOUNT_LIMIT_REACHED"] = "ACCOUNT_LIMIT_REACHED";
|
|
267
267
|
CreateTeamAccountErrorCode["INTERNAL_ERROR"] = "INTERNAL_ERROR";
|
|
268
|
+
CreateTeamAccountErrorCode["INVALID_USERNAME"] = "INVALID_USERNAME";
|
|
269
|
+
CreateTeamAccountErrorCode["USERNAME_TAKEN"] = "USERNAME_TAKEN";
|
|
268
270
|
})(CreateTeamAccountErrorCode || (CreateTeamAccountErrorCode = {}));
|
|
269
271
|
// Environments config can be defined for
|
|
270
272
|
export var ProjectEnvConfigEnv;
|
|
@@ -1453,6 +1453,7 @@ export interface Project {
|
|
|
1453
1453
|
provider: "fly" | "cloudrun";
|
|
1454
1454
|
cpuCount?: number;
|
|
1455
1455
|
memoryInGb?: number;
|
|
1456
|
+
diskSizeGb?: number;
|
|
1456
1457
|
regionHint?: string;
|
|
1457
1458
|
useVpc?: boolean;
|
|
1458
1459
|
};
|
|
@@ -1468,6 +1469,7 @@ export interface Project {
|
|
|
1468
1469
|
export interface ProjectAccess {
|
|
1469
1470
|
updatedAt?: Timestamp;
|
|
1470
1471
|
active: boolean;
|
|
1472
|
+
accountId?: string;
|
|
1471
1473
|
owner: string;
|
|
1472
1474
|
members: string[] | null;
|
|
1473
1475
|
devxAppbutlerId?: string | null;
|