@frigade/react 1.35.12 → 1.35.13
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 +82 -82
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +229 -229
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -682,6 +682,7 @@ declare function useUser(): {
|
|
|
682
682
|
declare function useOrganization(): {
|
|
683
683
|
readonly organizationId: string | null;
|
|
684
684
|
readonly setOrganizationId: React__default.Dispatch<React__default.SetStateAction<string | null>>;
|
|
685
|
+
readonly setOrganizationIdWithProperties: (organizationId: string, properties?: EntityProperties) => void;
|
|
685
686
|
readonly addPropertiesToOrganization: (properties: EntityProperties) => Promise<void>;
|
|
686
687
|
readonly trackEventForOrganization: (event: string, properties?: EntityProperties) => Promise<void>;
|
|
687
688
|
};
|