@dgpholdings/greatoak-shared 1.0.56 → 1.0.57
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/dist/types/TApiAuth.d.ts
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
export declare enum EAuthType {
|
|
2
|
-
email = "email",
|
|
3
|
-
apple = "apple"
|
|
4
|
-
}
|
|
5
1
|
export type TApiSignupReq = {
|
|
6
2
|
email: string;
|
|
7
3
|
password: string;
|
|
@@ -25,7 +21,7 @@ export type TApiSigninAppleRes = {
|
|
|
25
21
|
message?: string;
|
|
26
22
|
token?: string;
|
|
27
23
|
status?: 400 | 200 | 500;
|
|
28
|
-
authType:
|
|
24
|
+
authType: "apple";
|
|
29
25
|
};
|
|
30
26
|
export type TApiSigninEmailReq = {
|
|
31
27
|
email: string;
|
|
@@ -37,7 +33,7 @@ export type TApiSigninEmailRes = {
|
|
|
37
33
|
message?: string;
|
|
38
34
|
token?: string;
|
|
39
35
|
status?: 400 | 200 | 500;
|
|
40
|
-
authType:
|
|
36
|
+
authType: "email";
|
|
41
37
|
};
|
|
42
38
|
export type TApiSignInTokenReq = {
|
|
43
39
|
deviceUniqueId: string;
|
package/dist/types/TApiAuth.js
CHANGED
|
@@ -1,8 +1,2 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.EAuthType = void 0;
|
|
4
|
-
var EAuthType;
|
|
5
|
-
(function (EAuthType) {
|
|
6
|
-
EAuthType["email"] = "email";
|
|
7
|
-
EAuthType["apple"] = "apple";
|
|
8
|
-
})(EAuthType || (exports.EAuthType = EAuthType = {}));
|