@databutton/firebase-types 1.85.3 → 1.85.5
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.
|
@@ -165,6 +165,16 @@ export declare enum CodeComponentType {
|
|
|
165
165
|
UI_FILE = "ui-file",
|
|
166
166
|
UI_COMPONENT = "ui-component"
|
|
167
167
|
}
|
|
168
|
+
export declare enum ComponentType {
|
|
169
|
+
BACKEND = "backend",
|
|
170
|
+
DATAFILE = "datafile",
|
|
171
|
+
DATAFRAME = "dataframe",
|
|
172
|
+
STATIC_ASSET = "static-asset",
|
|
173
|
+
FRONTEND = "frontend",
|
|
174
|
+
UI_COMPONENT = "ui-component",
|
|
175
|
+
UI_FILE = "ui-file",
|
|
176
|
+
MODULE = "module"
|
|
177
|
+
}
|
|
168
178
|
export declare enum TaskPriority {
|
|
169
179
|
LOW = "low",
|
|
170
180
|
MEDIUM = "medium",
|
|
@@ -177,6 +177,17 @@ export var CodeComponentType;
|
|
|
177
177
|
CodeComponentType["UI_FILE"] = "ui-file";
|
|
178
178
|
CodeComponentType["UI_COMPONENT"] = "ui-component";
|
|
179
179
|
})(CodeComponentType || (CodeComponentType = {}));
|
|
180
|
+
export var ComponentType;
|
|
181
|
+
(function (ComponentType) {
|
|
182
|
+
ComponentType["BACKEND"] = "backend";
|
|
183
|
+
ComponentType["DATAFILE"] = "datafile";
|
|
184
|
+
ComponentType["DATAFRAME"] = "dataframe";
|
|
185
|
+
ComponentType["STATIC_ASSET"] = "static-asset";
|
|
186
|
+
ComponentType["FRONTEND"] = "frontend";
|
|
187
|
+
ComponentType["UI_COMPONENT"] = "ui-component";
|
|
188
|
+
ComponentType["UI_FILE"] = "ui-file";
|
|
189
|
+
ComponentType["MODULE"] = "module";
|
|
190
|
+
})(ComponentType || (ComponentType = {}));
|
|
180
191
|
export var TaskPriority;
|
|
181
192
|
(function (TaskPriority) {
|
|
182
193
|
TaskPriority["LOW"] = "low";
|
|
@@ -605,7 +605,9 @@ export interface ProjectLifeStageChangeRequest {
|
|
|
605
605
|
}
|
|
606
606
|
export declare enum ProjectBuildStage {
|
|
607
607
|
IDEATE = "ideate",
|
|
608
|
-
|
|
608
|
+
PLAN = "plan",
|
|
609
|
+
BUILD = "build",
|
|
610
|
+
READY = "ready"
|
|
609
611
|
}
|
|
610
612
|
export type ProjectGuidelines = ProjectGuidelinesV2;
|
|
611
613
|
export interface ProjectGuidelinesV2 {
|
|
@@ -48,7 +48,9 @@ export var ManagedBy;
|
|
|
48
48
|
export var ProjectBuildStage;
|
|
49
49
|
(function (ProjectBuildStage) {
|
|
50
50
|
ProjectBuildStage["IDEATE"] = "ideate";
|
|
51
|
+
ProjectBuildStage["PLAN"] = "plan";
|
|
51
52
|
ProjectBuildStage["BUILD"] = "build";
|
|
53
|
+
ProjectBuildStage["READY"] = "ready";
|
|
52
54
|
})(ProjectBuildStage || (ProjectBuildStage = {}));
|
|
53
55
|
export var ProjectExtension;
|
|
54
56
|
(function (ProjectExtension) {
|