@databutton/firebase-types 1.17.24 → 1.17.26

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.
@@ -478,11 +478,15 @@ export interface Metric {
478
478
  title: string;
479
479
  meta: Record<string, string | number | boolean | null>;
480
480
  }
481
- export interface Pulse {
481
+ export type Pulse = {
482
482
  createdBy: PerformedBy;
483
483
  text: string;
484
- shortText: string;
484
+ eventName: string;
485
485
  properties: Record<string, string | number | boolean | null>;
486
- notify: boolean;
487
- }
486
+ } | {
487
+ userId: string;
488
+ text: string;
489
+ eventName: string;
490
+ properties: Record<string, string | number | boolean | null>;
491
+ };
488
492
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.17.24",
3
+ "version": "1.17.26",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {