@frigade/react 1.35.10 → 1.35.12
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.
- package/lib/index.d.ts +1 -0
- package/lib/index.js +164 -161
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +114 -111
- package/lib/index.mjs.map +1 -1
- package/package.json +4 -4
package/lib/index.d.ts
CHANGED
|
@@ -674,6 +674,7 @@ declare function useFlowOpens(): {
|
|
|
674
674
|
declare function useUser(): {
|
|
675
675
|
readonly userId: string | null;
|
|
676
676
|
readonly setUserId: React__default.Dispatch<React__default.SetStateAction<string | null>>;
|
|
677
|
+
readonly setUserIdWithProperties: (userId: string, properties?: EntityProperties) => void;
|
|
677
678
|
readonly addPropertiesToUser: (properties: EntityProperties) => Promise<void>;
|
|
678
679
|
readonly trackEventForUser: (event: string, properties?: EntityProperties) => Promise<void>;
|
|
679
680
|
};
|