@databutton/firebase-types 1.73.18 → 1.73.19

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;
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.19",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {