@databutton/firebase-types 1.73.18 → 1.73.20

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.
@@ -811,7 +811,14 @@ export type ThirdPartyService = {
811
811
  export interface AgentConfig {
812
812
  customInstructions: string;
813
813
  strictMode?: boolean | null;
814
+ status?: AgentStatus;
814
815
  }
816
+ export type AgentStatus = {
817
+ available: true;
818
+ } | {
819
+ available: false;
820
+ reason: "insufficient-funds" | "other";
821
+ };
815
822
  export interface AgentPersonality {
816
823
  toneOfVoice?: {
817
824
  responseStyle?: string | null;
@@ -969,6 +976,9 @@ export interface ProjectTemplate {
969
976
  markedForDeletionBy: PerformedBy | null;
970
977
  description: string | null;
971
978
  tags?: string[];
979
+ tasks?: {
980
+ title: string;
981
+ }[];
972
982
  /** @deprecated streamlit templates are all deleted */
973
983
  multipageAppPages?: ProjectTemplatePage[];
974
984
  /** @deprecated streamlit templates are all deleted */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.73.18",
3
+ "version": "1.73.20",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {