@databutton/firebase-types 1.58.1 → 1.59.1
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.
|
@@ -873,6 +873,7 @@ export type Appbutler = {
|
|
|
873
873
|
templateRef?: string;
|
|
874
874
|
projectId?: string;
|
|
875
875
|
serviceIsReady: boolean;
|
|
876
|
+
markedForDeletionAt: Timestamp | null;
|
|
876
877
|
};
|
|
877
878
|
export type ProjectAppbutlers = {
|
|
878
879
|
region: string;
|
|
@@ -951,4 +952,16 @@ export interface Domain {
|
|
|
951
952
|
value: string;
|
|
952
953
|
}[];
|
|
953
954
|
}
|
|
955
|
+
export type TokenUsageEntry = {
|
|
956
|
+
userId: string;
|
|
957
|
+
projectId: string;
|
|
958
|
+
createdAt: Timestamp;
|
|
959
|
+
tokenUsage: {
|
|
960
|
+
prompt: number;
|
|
961
|
+
completion: number;
|
|
962
|
+
total: number;
|
|
963
|
+
};
|
|
964
|
+
model: string;
|
|
965
|
+
finishReason: string;
|
|
966
|
+
};
|
|
954
967
|
export {};
|