@databutton/firebase-types 1.126.1 → 1.128.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.
|
@@ -32,6 +32,7 @@ export declare enum CollectionName {
|
|
|
32
32
|
DOMAINS = "domains",
|
|
33
33
|
EVENTS = "events",
|
|
34
34
|
FEATURE_FLAGS = "feature-flags",
|
|
35
|
+
JOB_CURSORS = "job-cursors",
|
|
35
36
|
FRONTENDS = "frontends",
|
|
36
37
|
FRONTEND_PACKAGES = "frontend-packages",
|
|
37
38
|
KNOWLEDGE_BASES = "knowledge-bases",
|
|
@@ -33,6 +33,7 @@ export var CollectionName;
|
|
|
33
33
|
CollectionName["DOMAINS"] = "domains";
|
|
34
34
|
CollectionName["EVENTS"] = "events";
|
|
35
35
|
CollectionName["FEATURE_FLAGS"] = "feature-flags";
|
|
36
|
+
CollectionName["JOB_CURSORS"] = "job-cursors";
|
|
36
37
|
CollectionName["FRONTENDS"] = "frontends";
|
|
37
38
|
CollectionName["FRONTEND_PACKAGES"] = "frontend-packages";
|
|
38
39
|
CollectionName["KNOWLEDGE_BASES"] = "knowledge-bases";
|
|
@@ -1416,6 +1416,10 @@ export interface Project {
|
|
|
1416
1416
|
*/
|
|
1417
1417
|
about?: string;
|
|
1418
1418
|
githubUrl?: string;
|
|
1419
|
+
/** URL to the agent type spec document (e.g. riff-agent-docs/agents/supplier-communications-agent.md). */
|
|
1420
|
+
agentSpecUrl?: string;
|
|
1421
|
+
/** Agent type tag identifying which kind of agent this project implements (e.g. "supplier-communications-agent"). */
|
|
1422
|
+
agentType?: string;
|
|
1419
1423
|
isShowcase?: boolean;
|
|
1420
1424
|
last_deployed?: Timestamp;
|
|
1421
1425
|
schema?: "2022-12-07" | "2022-08-22" | null;
|