gst-common 1.1.13 → 1.1.15
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/index.d.cts +13 -1
- package/dist/index.d.ts +13 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -27,6 +27,7 @@ type DATA_THIRD_PARTY_LOGIN = {
|
|
|
27
27
|
fullname: string;
|
|
28
28
|
providerId: string;
|
|
29
29
|
provider: REGISTER_METHOD;
|
|
30
|
+
avatar?: string;
|
|
30
31
|
};
|
|
31
32
|
|
|
32
33
|
declare const OBJECT_REGISTER_METHOD: {
|
|
@@ -66,5 +67,16 @@ type AccountSignInResponse = {
|
|
|
66
67
|
refreshId: string;
|
|
67
68
|
expiredRefresh: string;
|
|
68
69
|
};
|
|
70
|
+
type AccountPostMeResponse = {
|
|
71
|
+
id: string;
|
|
72
|
+
createdAt: string;
|
|
73
|
+
updatedAt: string;
|
|
74
|
+
deletedAt: string | null;
|
|
75
|
+
fullname: string;
|
|
76
|
+
type: CUSTOMER_TYPE;
|
|
77
|
+
registerMethod: REGISTER_METHOD;
|
|
78
|
+
username: string;
|
|
79
|
+
providerId: string;
|
|
80
|
+
};
|
|
69
81
|
|
|
70
|
-
export { type AccountSignInResponse, type BaseResponse, CUSTOMER_TYPE, type DATA_THIRD_PARTY_LOGIN, OBJECT_CUSTOMER_TYPE, OBJECT_REGISTER_METHOD, OTP_RESEND_TIME, REGISTER_METHOD, ResponseStatus, sayHello };
|
|
82
|
+
export { type AccountPostMeResponse, type AccountSignInResponse, type BaseResponse, CUSTOMER_TYPE, type DATA_THIRD_PARTY_LOGIN, OBJECT_CUSTOMER_TYPE, OBJECT_REGISTER_METHOD, OTP_RESEND_TIME, REGISTER_METHOD, ResponseStatus, sayHello };
|
package/dist/index.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ type DATA_THIRD_PARTY_LOGIN = {
|
|
|
27
27
|
fullname: string;
|
|
28
28
|
providerId: string;
|
|
29
29
|
provider: REGISTER_METHOD;
|
|
30
|
+
avatar?: string;
|
|
30
31
|
};
|
|
31
32
|
|
|
32
33
|
declare const OBJECT_REGISTER_METHOD: {
|
|
@@ -66,5 +67,16 @@ type AccountSignInResponse = {
|
|
|
66
67
|
refreshId: string;
|
|
67
68
|
expiredRefresh: string;
|
|
68
69
|
};
|
|
70
|
+
type AccountPostMeResponse = {
|
|
71
|
+
id: string;
|
|
72
|
+
createdAt: string;
|
|
73
|
+
updatedAt: string;
|
|
74
|
+
deletedAt: string | null;
|
|
75
|
+
fullname: string;
|
|
76
|
+
type: CUSTOMER_TYPE;
|
|
77
|
+
registerMethod: REGISTER_METHOD;
|
|
78
|
+
username: string;
|
|
79
|
+
providerId: string;
|
|
80
|
+
};
|
|
69
81
|
|
|
70
|
-
export { type AccountSignInResponse, type BaseResponse, CUSTOMER_TYPE, type DATA_THIRD_PARTY_LOGIN, OBJECT_CUSTOMER_TYPE, OBJECT_REGISTER_METHOD, OTP_RESEND_TIME, REGISTER_METHOD, ResponseStatus, sayHello };
|
|
82
|
+
export { type AccountPostMeResponse, type AccountSignInResponse, type BaseResponse, CUSTOMER_TYPE, type DATA_THIRD_PARTY_LOGIN, OBJECT_CUSTOMER_TYPE, OBJECT_REGISTER_METHOD, OTP_RESEND_TIME, REGISTER_METHOD, ResponseStatus, sayHello };
|