@jealous-robot-dev/shared-types-responses 1.19.3 → 1.19.7
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/build/services/forms/authentication.d.ts +6 -1
- package/build/services/forms/authentication.js +1 -0
- package/build/services/forms/index.d.ts +0 -1
- package/build/services/forms/index.js +0 -1
- package/package.json +1 -1
- package/build/services/forms/verify-email.d.ts +0 -9
- package/build/services/forms/verify-email.js +0 -2
|
@@ -13,6 +13,7 @@ export declare enum AuthID {
|
|
|
13
13
|
export declare enum AuthenticationWindows {
|
|
14
14
|
WELCOME_BACK = "welcome back",
|
|
15
15
|
FINISH_SIGNUP = "finish sign up",
|
|
16
|
+
VERIFY_EMAIL = "verify email",
|
|
16
17
|
WELCOME = "welcome"
|
|
17
18
|
}
|
|
18
19
|
export interface AuthFormExternalLinks {
|
|
@@ -76,7 +77,6 @@ export interface SignupPhrases {
|
|
|
76
77
|
password: AuthFormInputField;
|
|
77
78
|
};
|
|
78
79
|
password_characteristics: PasswordCharacteristics;
|
|
79
|
-
successfully_created: LND;
|
|
80
80
|
checkboxes: {
|
|
81
81
|
emailer_enabled: string;
|
|
82
82
|
};
|
|
@@ -86,6 +86,11 @@ export interface SignupPhrases {
|
|
|
86
86
|
agreement: string;
|
|
87
87
|
};
|
|
88
88
|
}
|
|
89
|
+
export interface VerifyEmailPhrases {
|
|
90
|
+
title: string;
|
|
91
|
+
description: string;
|
|
92
|
+
input: AuthFormInputField;
|
|
93
|
+
}
|
|
89
94
|
export interface WelcomeBackPhrases {
|
|
90
95
|
title: string;
|
|
91
96
|
password: AuthFormInputField;
|
|
@@ -18,6 +18,7 @@ var AuthenticationWindows;
|
|
|
18
18
|
(function (AuthenticationWindows) {
|
|
19
19
|
AuthenticationWindows["WELCOME_BACK"] = "welcome back";
|
|
20
20
|
AuthenticationWindows["FINISH_SIGNUP"] = "finish sign up";
|
|
21
|
+
AuthenticationWindows["VERIFY_EMAIL"] = "verify email";
|
|
21
22
|
AuthenticationWindows["WELCOME"] = "welcome";
|
|
22
23
|
})(AuthenticationWindows = exports.AuthenticationWindows || (exports.AuthenticationWindows = {}));
|
|
23
24
|
var AUTH_ID_TYPE;
|
|
@@ -11,7 +11,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
11
11
|
};
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
13
|
__exportStar(require("./sharer"), exports);
|
|
14
|
-
__exportStar(require("./verify-email"), exports);
|
|
15
14
|
__exportStar(require("./authentication"), exports);
|
|
16
15
|
__exportStar(require("./forgot-password"), exports);
|
|
17
16
|
__exportStar(require("./device-verification"), exports);
|
package/package.json
CHANGED