@databutton/firebase-types 1.91.29 → 1.91.30
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.
|
@@ -10,6 +10,7 @@ export var CollectionName;
|
|
|
10
10
|
CollectionName["BACKENDS"] = "backends";
|
|
11
11
|
CollectionName["BACKEND_PACKAGES"] = "backend-packages";
|
|
12
12
|
CollectionName["BUILDS"] = "builds";
|
|
13
|
+
CollectionName["FORM_ENTRIES"] = "form-entries";
|
|
13
14
|
CollectionName["CAPABILITIES"] = "capabilities";
|
|
14
15
|
CollectionName["CHECKPOINTS"] = "checkpoints";
|
|
15
16
|
CollectionName["CODE_BLOCKS"] = "code-blocks";
|
|
@@ -2125,4 +2125,9 @@ export interface AiUsageRecordEntry {
|
|
|
2125
2125
|
*/
|
|
2126
2126
|
rawUsage: object;
|
|
2127
2127
|
}
|
|
2128
|
+
export interface FormEntry {
|
|
2129
|
+
anonymousId: string;
|
|
2130
|
+
eventName: string;
|
|
2131
|
+
properties: Record<string, string | number | boolean | null>;
|
|
2132
|
+
}
|
|
2128
2133
|
export {};
|