@freelog/tools-lib 0.1.143 → 0.1.144
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/dist/tools-lib.cjs.development.js +14 -12
- package/dist/tools-lib.cjs.development.js.map +1 -1
- package/dist/tools-lib.cjs.production.min.js +1 -1
- package/dist/tools-lib.cjs.production.min.js.map +1 -1
- package/dist/tools-lib.esm.js +14 -12
- package/dist/tools-lib.esm.js.map +1 -1
- package/dist/utils/linkTo.d.ts +2 -1
- package/package.json +1 -1
- package/src/utils/linkTo.ts +401 -399
package/dist/utils/linkTo.d.ts
CHANGED
|
@@ -121,8 +121,9 @@ interface LoginParamsType {
|
|
|
121
121
|
export declare function login({ goTo }?: LoginParamsType): string;
|
|
122
122
|
interface LoginParamsType {
|
|
123
123
|
goTo?: string;
|
|
124
|
+
invitationCode?: string;
|
|
124
125
|
}
|
|
125
|
-
export declare function logon({ goTo }?: LoginParamsType): string;
|
|
126
|
+
export declare function logon({ goTo, ...params }?: LoginParamsType): string;
|
|
126
127
|
interface RetrieveUserPasswordParamsType {
|
|
127
128
|
goTo?: string;
|
|
128
129
|
}
|