@bigbinary/neeto-playwright-commons 1.21.4 → 1.22.1
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/configs/eslint/common.js +112 -79
- package/configs/eslint/host.js +30 -5
- package/index.cjs.js +961 -935
- package/index.cjs.js.map +1 -1
- package/index.d.ts +7 -7
- package/index.js +961 -935
- package/index.js.map +1 -1
- package/package.json +10 -5
package/index.d.ts
CHANGED
|
@@ -2981,13 +2981,6 @@ interface LoginAndOnboardParams extends BasicUserInfo {
|
|
|
2981
2981
|
baseURL?: string;
|
|
2982
2982
|
fetchOtpFromEmail?: FetchOtpFromEmail;
|
|
2983
2983
|
}
|
|
2984
|
-
interface Credentials extends BasicUserInfo {
|
|
2985
|
-
otp?: number;
|
|
2986
|
-
domain: string;
|
|
2987
|
-
currentUserName: string;
|
|
2988
|
-
businessName: string;
|
|
2989
|
-
subdomainName: string;
|
|
2990
|
-
}
|
|
2991
2984
|
type FetchOtpFromEmail = (params: {
|
|
2992
2985
|
email: string;
|
|
2993
2986
|
timeout: number;
|
|
@@ -2997,6 +2990,13 @@ interface LoginWithFastmailEmail {
|
|
|
2997
2990
|
loginTimeout?: number;
|
|
2998
2991
|
fetchOtpFromEmail: FetchOtpFromEmail;
|
|
2999
2992
|
}
|
|
2993
|
+
interface Credentials extends BasicUserInfo {
|
|
2994
|
+
otp?: number;
|
|
2995
|
+
domain: string;
|
|
2996
|
+
currentUserName: string;
|
|
2997
|
+
businessName: string;
|
|
2998
|
+
subdomainName: string;
|
|
2999
|
+
}
|
|
3000
3000
|
declare class OrganizationPage {
|
|
3001
3001
|
page: Page;
|
|
3002
3002
|
neetoPlaywrightUtilities: CustomCommands;
|