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