dce-reactkit 4.1.7 → 4.1.8

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.
@@ -15,6 +15,9 @@ type LogFunction = (opts: ({
15
15
  [k: string]: any;
16
16
  };
17
17
  level?: LogLevel;
18
+ userId?: number;
19
+ userFirstName?: string;
20
+ userLastName?: string;
18
21
  } & ({
19
22
  error: any;
20
23
  } | {
package/dist/esm/index.js CHANGED
@@ -1717,6 +1717,11 @@ const logClientEvent = (opts) => __awaiter(void 0, void 0, void 0, function* ()
1717
1717
  action: (opts.action
1718
1718
  ? opts.action
1719
1719
  : undefined),
1720
+ overriddenUserInfo: {
1721
+ userId: opts.userId,
1722
+ userFirstName: opts.userFirstName,
1723
+ userLastName: opts.userLastName,
1724
+ },
1720
1725
  },
1721
1726
  });
1722
1727
  });