@databutton/firebase-types 1.74.46 → 1.74.48
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.
|
@@ -998,6 +998,7 @@ export interface ProjectTemplate {
|
|
|
998
998
|
description: string | null;
|
|
999
999
|
tags?: string[];
|
|
1000
1000
|
tasks?: {
|
|
1001
|
+
status: TaskStatus;
|
|
1001
1002
|
title: string;
|
|
1002
1003
|
description: string;
|
|
1003
1004
|
}[];
|
|
@@ -1007,30 +1008,37 @@ export interface ProjectTemplate {
|
|
|
1007
1008
|
jobs?: {
|
|
1008
1009
|
name: string;
|
|
1009
1010
|
code: string;
|
|
1011
|
+
agentAccess?: AgentAccess | null;
|
|
1010
1012
|
}[];
|
|
1011
1013
|
/** @deprecated streamlit templates are all deleted */
|
|
1012
1014
|
modules?: {
|
|
1013
1015
|
name: string;
|
|
1014
1016
|
code: string;
|
|
1017
|
+
agentAccess?: AgentAccess | null;
|
|
1015
1018
|
}[];
|
|
1016
1019
|
uiComponents?: {
|
|
1017
1020
|
name: string;
|
|
1018
1021
|
code: string;
|
|
1019
1022
|
example?: string;
|
|
1023
|
+
agentAccess?: AgentAccess | null;
|
|
1024
|
+
tags?: UiComponentTag[];
|
|
1020
1025
|
}[];
|
|
1021
1026
|
uiFiles?: {
|
|
1022
1027
|
name: string;
|
|
1023
1028
|
code: string;
|
|
1029
|
+
agentAccess?: AgentAccess | null;
|
|
1024
1030
|
}[];
|
|
1025
1031
|
frontends?: {
|
|
1026
1032
|
name: string;
|
|
1027
1033
|
code: string;
|
|
1028
1034
|
config?: FrontendConfig;
|
|
1035
|
+
agentAccess?: AgentAccess | null;
|
|
1029
1036
|
}[];
|
|
1030
1037
|
backends?: {
|
|
1031
1038
|
name: string;
|
|
1032
1039
|
code: string;
|
|
1033
1040
|
config?: BackendConfig;
|
|
1041
|
+
agentAccess?: AgentAccess | null;
|
|
1034
1042
|
}[];
|
|
1035
1043
|
requirements: ProjectTemplateRequirementsSnapshot;
|
|
1036
1044
|
build: ProjectTemplateBuildSnapshot;
|