@jealous-robot-dev/shared-types-responses 1.18.12 → 1.18.16
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/common.js
CHANGED
|
@@ -96,6 +96,7 @@ export interface WelcomeBackPhrases {
|
|
|
96
96
|
};
|
|
97
97
|
}
|
|
98
98
|
export interface ShortAuthFormData {
|
|
99
|
+
UID: string;
|
|
99
100
|
email: string;
|
|
100
101
|
ppu?: string;
|
|
101
102
|
firstname: string;
|
|
@@ -123,5 +124,6 @@ export declare enum PositiveAuthResponse {
|
|
|
123
124
|
NEW_USER = "NEW_USER",
|
|
124
125
|
WELCOME_BACK = "WELCOME_BACK",
|
|
125
126
|
VERIFY_DEVICE = "VERIFY_DEVICE",
|
|
127
|
+
VERIFY_EMAIL = "VERIFY_EMAIL",
|
|
126
128
|
PASS = "PASS"
|
|
127
129
|
}
|
|
@@ -41,5 +41,6 @@ var PositiveAuthResponse;
|
|
|
41
41
|
PositiveAuthResponse["NEW_USER"] = "NEW_USER";
|
|
42
42
|
PositiveAuthResponse["WELCOME_BACK"] = "WELCOME_BACK";
|
|
43
43
|
PositiveAuthResponse["VERIFY_DEVICE"] = "VERIFY_DEVICE";
|
|
44
|
+
PositiveAuthResponse["VERIFY_EMAIL"] = "VERIFY_EMAIL";
|
|
44
45
|
PositiveAuthResponse["PASS"] = "PASS";
|
|
45
46
|
})(PositiveAuthResponse = exports.PositiveAuthResponse || (exports.PositiveAuthResponse = {}));
|