@secondstaxorg/sscomp 1.9.89 → 1.9.92

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "1.9.89",
3
+ "version": "1.9.92",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -7,19 +7,19 @@ export interface ForgotPasswordFormProps extends React.HTMLAttributes<any> {
7
7
  /**
8
8
  * Function for redirect link on stage1
9
9
  */
10
- redirectFxnStage1: () => void;
10
+ redirectToLoginFxn: () => void;
11
11
  /**
12
12
  * Function for redirect link on stage1
13
13
  */
14
- redirectFxnStage2: () => void;
14
+ redirectToSetPasswordFxn: () => void;
15
15
  /**
16
16
  * Text to indicate which app the request came from
17
17
  */
18
18
  appIdentifier?: string;
19
19
  /**
20
- * Url to send the request for password reset to
20
+ * Endpoint to send the request for password reset to
21
21
  */
22
- apiUrl: string;
22
+ resetPWApiEndPoint: string;
23
23
  /**
24
24
  * Display text language
25
25
  */
@@ -38,5 +38,6 @@ export interface ForgotPasswordFormProps extends React.HTMLAttributes<any> {
38
38
  resetLinkSentInfo?: string;
39
39
  soundsGood?: string;
40
40
  changeEmailLink?: string;
41
+ anErrorOccurred?: string;
41
42
  };
42
43
  }