@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, string | number | boolean | null>;
802
+ properties: Record<string, Primitive | Primitive[]>;
803
803
  } | {
804
804
  userId: string;
805
805
  text: string;
806
806
  eventName: string;
807
- properties: Record<string, string | number | boolean | null>;
807
+ properties: Record<string, Primitive | Primitive[]>;
808
808
  };
809
809
  export interface ModuleSnapshotDeprecated {
810
810
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.69.41",
3
+ "version": "1.69.42",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {