@databutton/firebase-types 1.110.0 → 1.111.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.
|
@@ -664,10 +664,6 @@ export interface StaticAsset {
|
|
|
664
664
|
size: string;
|
|
665
665
|
name?: string;
|
|
666
666
|
}
|
|
667
|
-
export interface PlanTask {
|
|
668
|
-
title: string;
|
|
669
|
-
description: string;
|
|
670
|
-
}
|
|
671
667
|
export type Task = {
|
|
672
668
|
createdBy: PerformedBy;
|
|
673
669
|
updatedBy: PerformedBy;
|
|
@@ -1302,7 +1298,8 @@ export type RiffMigrationState<T> = {
|
|
|
1302
1298
|
* For example the agentProject is hidden from the user, but is used to provide a account wide devx and agent environment to a user in the account context
|
|
1303
1299
|
*/
|
|
1304
1300
|
export declare enum SpecialProjectType {
|
|
1305
|
-
AGENT_PROJECT = "agentProject"
|
|
1301
|
+
AGENT_PROJECT = "agentProject",
|
|
1302
|
+
API_GATEWAY = "apiGateway"
|
|
1306
1303
|
}
|
|
1307
1304
|
export interface Project {
|
|
1308
1305
|
createdAt: Timestamp;
|
|
@@ -2289,7 +2286,6 @@ export interface ProjectPlan {
|
|
|
2289
2286
|
title: string;
|
|
2290
2287
|
description: string;
|
|
2291
2288
|
features: string[];
|
|
2292
|
-
tasks?: PlanTask[];
|
|
2293
2289
|
/**
|
|
2294
2290
|
* Hidden instructions that we can attach to featured project plans to guide the agent on how to use the project plan.
|
|
2295
2291
|
*/
|
|
@@ -69,6 +69,7 @@ export var ProjectExtension;
|
|
|
69
69
|
export var SpecialProjectType;
|
|
70
70
|
(function (SpecialProjectType) {
|
|
71
71
|
SpecialProjectType["AGENT_PROJECT"] = "agentProject";
|
|
72
|
+
SpecialProjectType["API_GATEWAY"] = "apiGateway";
|
|
72
73
|
})(SpecialProjectType || (SpecialProjectType = {}));
|
|
73
74
|
/**
|
|
74
75
|
* Taken from AWS types
|