@databutton/firebase-types 1.62.23 → 1.62.25

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.
@@ -120,6 +120,16 @@ export interface PayAsYouGoPlan extends PlanBase {
120
120
  cancelReason?: string | null;
121
121
  cancelComment?: string | null;
122
122
  }
123
+ export interface AIPlan extends PlanBase {
124
+ type: "ai-plan";
125
+ stripe_product_id: string;
126
+ credits: number;
127
+ cancelAtPeriodEnd: boolean | null;
128
+ canceledAt?: Timestamp | null;
129
+ cancelFeedback?: string | null;
130
+ cancelReason?: string | null;
131
+ cancelComment?: string | null;
132
+ }
123
133
  export interface FeatureFlagBase {
124
134
  createdBy: PerformedBy;
125
135
  lastChangedBy: PerformedBy;
@@ -1040,6 +1050,7 @@ export interface TokenUsageEntry {
1040
1050
  completion: number;
1041
1051
  total: number;
1042
1052
  };
1053
+ toolCalls?: string[];
1043
1054
  model: string;
1044
1055
  finishReason: string | null;
1045
1056
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.62.23",
3
+ "version": "1.62.25",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {