@bigbinary/neeto-playwright-commons 4.1.4 → 4.1.6

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.
Files changed (3) hide show
  1. package/index.d.ts +3 -3
  2. package/index.js +3 -3
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1351,7 +1351,7 @@ declare class RailsEmailUtils {
1351
1351
  *
1352
1352
  * email: The recipient email address used to find the email
1353
1353
  *
1354
- * subjectSubstring: The subject of the email used to match it. Defaults to the string is your login code to match Neeto OTP emails
1354
+ * subjectSubstring: The subject of the email used to match it. Defaults to the string Your login code is to match Neeto OTP emails
1355
1355
  *
1356
1356
  * timeout: The timeout duration number in milliseconds, which when exceeded without finding matching emails, the method throws an error. Default to 2 minutes.
1357
1357
  *
@@ -1712,7 +1712,7 @@ declare class MailerUtils {
1712
1712
  *
1713
1713
  * email: The recipient email address used to find the email
1714
1714
  *
1715
- * subjectSubstring: The subject of the email used to match it. Defaults to the string is your login code to match Neeto OTP emails
1715
+ * subjectSubstring: The subject of the email used to match it. Defaults to the string Your login code is to match Neeto OTP emails
1716
1716
  *
1717
1717
  * timeout: The timeout duration number in milliseconds, which when exceeded without finding matching emails, the method throws an error. Default to 2 minutes.
1718
1718
  *
@@ -3982,7 +3982,7 @@ declare const CREDENTIALS: {
3982
3982
  * Pattern for the subject of OTP emails.
3983
3983
  *
3984
3984
  */
3985
- declare const OTP_EMAIL_PATTERN = "is your login code";
3985
+ declare const OTP_EMAIL_PATTERN = "Your login code is";
3986
3986
  /**
3987
3987
  *
3988
3988
  * Default Slack channel.
package/index.js CHANGED
@@ -498,7 +498,7 @@ const CREDENTIALS = {
498
498
  password: "welcome",
499
499
  subdomainName: "spinkart",
500
500
  };
501
- const OTP_EMAIL_PATTERN = "is your login code";
501
+ const OTP_EMAIL_PATTERN = "Your login code is";
502
502
  const SLACK_DEFAULT_CHANNEL = "general";
503
503
  const CUSTOM_DOMAIN_SUFFIX = "aceinvoice.com";
504
504
  const ZAPIER_TEST_EMAIL = (product) => `neeto-${product}-zapier-test@${process.env.FASTMAIL_DOMAIN_NAME}`;
@@ -1930,7 +1930,7 @@ const MICROSOFT_LOGIN_SELECTORS = {
1930
1930
  signInProfileIcon: "#mectrl_headerPicture",
1931
1931
  emailInput: '[type="email"]',
1932
1932
  placeholder: ".placeholderInnerContainer",
1933
- dropdownMenu: (appName) => `button[aria-label='${appName}app']`,
1933
+ dropdownMenu: (appName) => `button[aria-label*='${appName}app']`,
1934
1934
  };
1935
1935
 
1936
1936
  const mimeTypeMap = {
@@ -2376,7 +2376,7 @@ const MEMBER_TEXTS = {
2376
2376
  };
2377
2377
  const INTEGRATIONS_TEXTS = {
2378
2378
  connectHeader: (integration) => `Connect your ${integration} account`,
2379
- connectedHeader: (integration) => `You are connected to ${integration}`,
2379
+ connectedHeader: (integration) => `${integration} is connected`,
2380
2380
  };
2381
2381
  const SLACK_WEB_TEXTS = {
2382
2382
  signOut: "Sign out",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-playwright-commons",
3
- "version": "4.1.4",
3
+ "version": "4.1.6",
4
4
  "description": "A package encapsulating common playwright code across neeto projects.",
5
5
  "repository": "git@github.com:bigbinary/neeto-playwright-commons.git",
6
6
  "license": "apache-2.0",