@chopkola/common 1.0.33 → 1.0.34
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.
|
@@ -12,7 +12,8 @@ export declare enum AdministratorRoleEnum {
|
|
|
12
12
|
export declare enum UserGenderEnum {
|
|
13
13
|
MALE = "male",
|
|
14
14
|
FEMALE = "female",
|
|
15
|
-
OTHERS = "others"
|
|
15
|
+
OTHERS = "others",
|
|
16
|
+
PREFER_NOT_TO_SAY = "prefer_not_to_say"
|
|
16
17
|
}
|
|
17
18
|
export declare enum DietryPreferencesEnum {
|
|
18
19
|
VEGAN = "vegan",
|
package/build/types/enum/user.js
CHANGED
|
@@ -19,6 +19,7 @@ var UserGenderEnum;
|
|
|
19
19
|
UserGenderEnum["MALE"] = "male";
|
|
20
20
|
UserGenderEnum["FEMALE"] = "female";
|
|
21
21
|
UserGenderEnum["OTHERS"] = "others";
|
|
22
|
+
UserGenderEnum["PREFER_NOT_TO_SAY"] = "prefer_not_to_say";
|
|
22
23
|
})(UserGenderEnum = exports.UserGenderEnum || (exports.UserGenderEnum = {}));
|
|
23
24
|
var DietryPreferencesEnum;
|
|
24
25
|
(function (DietryPreferencesEnum) {
|
package/build/types/user.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ export interface UserI {
|
|
|
26
26
|
password?: string;
|
|
27
27
|
phone_number: string;
|
|
28
28
|
account_type: UserAccountTypeEnum;
|
|
29
|
+
account_status: StatusEnum;
|
|
29
30
|
gender: UserGenderEnum;
|
|
30
31
|
otp: string;
|
|
31
32
|
otp_for: string;
|
|
@@ -61,7 +62,7 @@ export interface VendorI extends UserI {
|
|
|
61
62
|
user_id: string;
|
|
62
63
|
business_name: string;
|
|
63
64
|
description: string;
|
|
64
|
-
|
|
65
|
+
business_status: StatusEnum;
|
|
65
66
|
business_type: BusinessTypeEnum;
|
|
66
67
|
rating: number;
|
|
67
68
|
payout_info: string;
|