@databutton/firebase-types 1.69.41 → 1.69.42
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Timestamp } from "firebase/firestore";
|
|
2
|
-
import type { JsonObject } from "type-fest";
|
|
2
|
+
import type { JsonObject, Primitive } from "type-fest";
|
|
3
3
|
/**
|
|
4
4
|
* Types here should reflect data format stored in firestore and
|
|
5
5
|
* either be backwards-compatible or migrated when needed
|
|
@@ -799,12 +799,12 @@ export type Pulse = {
|
|
|
799
799
|
createdBy: PerformedBy;
|
|
800
800
|
text: string;
|
|
801
801
|
eventName: string;
|
|
802
|
-
properties: Record<string,
|
|
802
|
+
properties: Record<string, Primitive | Primitive[]>;
|
|
803
803
|
} | {
|
|
804
804
|
userId: string;
|
|
805
805
|
text: string;
|
|
806
806
|
eventName: string;
|
|
807
|
-
properties: Record<string,
|
|
807
|
+
properties: Record<string, Primitive | Primitive[]>;
|
|
808
808
|
};
|
|
809
809
|
export interface ModuleSnapshotDeprecated {
|
|
810
810
|
id: string;
|