@databutton/firebase-types 1.85.2 → 1.85.4
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,8 @@ export interface ProjectLifeStageChangeRequest {
|
|
|
605
605
|
}
|
|
606
606
|
export declare enum ProjectBuildStage {
|
|
607
607
|
IDEATE = "ideate",
|
|
608
|
-
BUILD = "build"
|
|
608
|
+
BUILD = "build",
|
|
609
|
+
READY = "ready"
|
|
609
610
|
}
|
|
610
611
|
export type ProjectGuidelines = ProjectGuidelinesV2;
|
|
611
612
|
export interface ProjectGuidelinesV2 {
|
|
@@ -890,7 +891,7 @@ export interface IntegrationTemplate {
|
|
|
890
891
|
optionalScopes?: {
|
|
891
892
|
sectionName: string;
|
|
892
893
|
scopes: string[];
|
|
893
|
-
};
|
|
894
|
+
}[];
|
|
894
895
|
/**
|
|
895
896
|
* Riff-oauth are integrations that use our provided Riff OAuth flow
|
|
896
897
|
* Any integration using a custom flow should have usage descriubed in the guide field
|
|
@@ -953,7 +954,7 @@ export interface InstalledIntegration {
|
|
|
953
954
|
optionalScopes?: {
|
|
954
955
|
sectionName: string;
|
|
955
956
|
scopes: string[];
|
|
956
|
-
};
|
|
957
|
+
}[];
|
|
957
958
|
authStrategy: "riff-oauth" | "oauth" | "api-key" | "custom";
|
|
958
959
|
/**
|
|
959
960
|
* human/agent-readable notes (scopes, pagination, rate limits, usage examples). Living document. used by agent, and for debug
|
|
@@ -49,6 +49,7 @@ export var ProjectBuildStage;
|
|
|
49
49
|
(function (ProjectBuildStage) {
|
|
50
50
|
ProjectBuildStage["IDEATE"] = "ideate";
|
|
51
51
|
ProjectBuildStage["BUILD"] = "build";
|
|
52
|
+
ProjectBuildStage["READY"] = "ready";
|
|
52
53
|
})(ProjectBuildStage || (ProjectBuildStage = {}));
|
|
53
54
|
export var ProjectExtension;
|
|
54
55
|
(function (ProjectExtension) {
|