@myrjfa/state 1.0.8 → 1.1.1
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.ts +18 -17
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +18 -17
- package/dist/lib/actions/actions.d.ts +170 -140
- package/dist/lib/actions/actions.d.ts.map +1 -1
- package/dist/lib/actions/actions.js +307 -307
- package/dist/lib/actions/chat.d.ts +80 -11
- package/dist/lib/actions/chat.d.ts.map +1 -1
- package/dist/lib/actions/chat.js +81 -20
- package/dist/lib/actions/fetcher.js +84 -84
- package/dist/lib/actions/property.d.ts +77 -0
- package/dist/lib/actions/property.d.ts.map +1 -0
- package/dist/lib/actions/property.js +133 -0
- package/dist/lib/actions/user.d.ts +23 -0
- package/dist/lib/actions/user.d.ts.map +1 -0
- package/dist/lib/actions/user.js +55 -0
- package/dist/lib/authSessionManager.js +34 -34
- package/dist/lib/context/ChatContext.d.ts +8 -1
- package/dist/lib/context/ChatContext.d.ts.map +1 -1
- package/dist/lib/context/ChatContext.js +338 -229
- package/dist/lib/models/chat.d.ts +32 -7
- package/dist/lib/models/chat.d.ts.map +1 -1
- package/dist/lib/models/notfications.d.ts +93 -25
- package/dist/lib/models/notfications.d.ts.map +1 -1
- package/dist/lib/models/notfications.js +55 -41
- package/dist/lib/models/portfolio.d.ts +42 -42
- package/dist/lib/models/property.d.ts +79 -0
- package/dist/lib/models/property.d.ts.map +1 -0
- package/dist/lib/models/property.js +134 -0
- package/dist/lib/models/tile.d.ts +28 -28
- package/dist/lib/userAtom.d.ts +198 -198
- package/dist/lib/userAtom.js +127 -127
- package/dist/lib/utils/fileCompression.d.ts +16 -0
- package/dist/lib/utils/fileCompression.d.ts.map +1 -0
- package/dist/lib/utils/fileCompression.js +56 -0
- package/dist/lib/utils/socialMediaUrl.d.ts +25 -0
- package/dist/lib/utils/socialMediaUrl.d.ts.map +1 -0
- package/dist/lib/utils/socialMediaUrl.js +97 -0
- package/package.json +1 -1
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import { OpportunityType } from "./opportunities/opportunity";
|
|
2
|
-
export type tileType = "opportunities" | "blogs" | "packages";
|
|
3
|
-
export interface TileProps {
|
|
4
|
-
slug: string;
|
|
5
|
-
image: string;
|
|
6
|
-
title: string;
|
|
7
|
-
description: string;
|
|
8
|
-
location?: string;
|
|
9
|
-
date: Date;
|
|
10
|
-
rating?: number;
|
|
11
|
-
skills?: string[];
|
|
12
|
-
isWishlisted?: boolean;
|
|
13
|
-
className?: string;
|
|
14
|
-
tileType?: tileType;
|
|
15
|
-
host?: {
|
|
16
|
-
image?: string;
|
|
17
|
-
name?: string;
|
|
18
|
-
type?: string;
|
|
19
|
-
rating?: number;
|
|
20
|
-
};
|
|
21
|
-
duration?: number;
|
|
22
|
-
maxDuration?: number;
|
|
23
|
-
price?: number;
|
|
24
|
-
currency?: string;
|
|
25
|
-
difficultyLevel?: "easy" | "medium" | "hard";
|
|
26
|
-
includeHost?: boolean;
|
|
27
|
-
opportunityType?: OpportunityType;
|
|
28
|
-
}
|
|
1
|
+
import { OpportunityType } from "./opportunities/opportunity";
|
|
2
|
+
export type tileType = "opportunities" | "blogs" | "packages";
|
|
3
|
+
export interface TileProps {
|
|
4
|
+
slug: string;
|
|
5
|
+
image: string;
|
|
6
|
+
title: string;
|
|
7
|
+
description: string;
|
|
8
|
+
location?: string;
|
|
9
|
+
date: Date;
|
|
10
|
+
rating?: number;
|
|
11
|
+
skills?: string[];
|
|
12
|
+
isWishlisted?: boolean;
|
|
13
|
+
className?: string;
|
|
14
|
+
tileType?: tileType;
|
|
15
|
+
host?: {
|
|
16
|
+
image?: string;
|
|
17
|
+
name?: string;
|
|
18
|
+
type?: string;
|
|
19
|
+
rating?: number;
|
|
20
|
+
};
|
|
21
|
+
duration?: number;
|
|
22
|
+
maxDuration?: number;
|
|
23
|
+
price?: number;
|
|
24
|
+
currency?: string;
|
|
25
|
+
difficultyLevel?: "easy" | "medium" | "hard";
|
|
26
|
+
includeHost?: boolean;
|
|
27
|
+
opportunityType?: OpportunityType;
|
|
28
|
+
}
|
|
29
29
|
//# sourceMappingURL=tile.d.ts.map
|
package/dist/lib/userAtom.d.ts
CHANGED
|
@@ -1,199 +1,199 @@
|
|
|
1
|
-
export declare const storageInitializedAtom: import("jotai").PrimitiveAtom<boolean> & {
|
|
2
|
-
init: boolean;
|
|
3
|
-
};
|
|
4
|
-
export declare const userAtom: import("jotai").WritableAtom<{
|
|
5
|
-
username: string;
|
|
6
|
-
firstName: string;
|
|
7
|
-
lastName: string;
|
|
8
|
-
email: string;
|
|
9
|
-
password: string;
|
|
10
|
-
phoneNumber: string;
|
|
11
|
-
countryCode: string;
|
|
12
|
-
country: string;
|
|
13
|
-
gender: "male" | "female" | "other";
|
|
14
|
-
rating: number;
|
|
15
|
-
ratingCount: number;
|
|
16
|
-
reviewCount: number;
|
|
17
|
-
joinedDate: Date;
|
|
18
|
-
isActive: boolean;
|
|
19
|
-
lastActive: Date;
|
|
20
|
-
verifiedEmail: boolean;
|
|
21
|
-
verifiedMobile: boolean;
|
|
22
|
-
role: "host" | "user" | "admin" | "hr" | "sales";
|
|
23
|
-
location?: string | undefined;
|
|
24
|
-
pinCode?: string | undefined;
|
|
25
|
-
dob?: Date | undefined;
|
|
26
|
-
profilePic?: string | undefined;
|
|
27
|
-
blogsCount?: number | undefined;
|
|
28
|
-
userBio?: string | undefined;
|
|
29
|
-
userIdCard?: string | undefined;
|
|
30
|
-
watchHistory?: string[] | undefined;
|
|
31
|
-
accessToken?: string | undefined;
|
|
32
|
-
refreshToken?: string | undefined;
|
|
33
|
-
verifiedIdCard?: boolean | undefined;
|
|
34
|
-
socialLinks?: Record<string, string> | undefined;
|
|
35
|
-
userResume?: string | undefined;
|
|
36
|
-
skills?: {
|
|
37
|
-
skill: string;
|
|
38
|
-
skillExpertise: number;
|
|
39
|
-
}[] | undefined;
|
|
40
|
-
wishlist?: string[] | undefined;
|
|
41
|
-
favBlogs?: string[] | undefined;
|
|
42
|
-
favPackages?: string[] | undefined;
|
|
43
|
-
id?: string | undefined;
|
|
44
|
-
selfie?: string | undefined;
|
|
45
|
-
selfieAction?: string | undefined;
|
|
46
|
-
jobCount?: number | undefined;
|
|
47
|
-
travelPackageCount?: number | undefined;
|
|
48
|
-
gstNumber?: string | undefined;
|
|
49
|
-
panCard?: string | undefined;
|
|
50
|
-
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
51
|
-
} | null, [{
|
|
52
|
-
username: string;
|
|
53
|
-
firstName: string;
|
|
54
|
-
lastName: string;
|
|
55
|
-
email: string;
|
|
56
|
-
password: string;
|
|
57
|
-
phoneNumber: string;
|
|
58
|
-
countryCode: string;
|
|
59
|
-
country: string;
|
|
60
|
-
gender: "male" | "female" | "other";
|
|
61
|
-
rating: number;
|
|
62
|
-
ratingCount: number;
|
|
63
|
-
reviewCount: number;
|
|
64
|
-
joinedDate: Date;
|
|
65
|
-
isActive: boolean;
|
|
66
|
-
lastActive: Date;
|
|
67
|
-
verifiedEmail: boolean;
|
|
68
|
-
verifiedMobile: boolean;
|
|
69
|
-
role: "host" | "user" | "admin" | "hr" | "sales";
|
|
70
|
-
location?: string | undefined;
|
|
71
|
-
pinCode?: string | undefined;
|
|
72
|
-
dob?: Date | undefined;
|
|
73
|
-
profilePic?: string | undefined;
|
|
74
|
-
blogsCount?: number | undefined;
|
|
75
|
-
userBio?: string | undefined;
|
|
76
|
-
userIdCard?: string | undefined;
|
|
77
|
-
watchHistory?: string[] | undefined;
|
|
78
|
-
accessToken?: string | undefined;
|
|
79
|
-
refreshToken?: string | undefined;
|
|
80
|
-
verifiedIdCard?: boolean | undefined;
|
|
81
|
-
socialLinks?: Record<string, string> | undefined;
|
|
82
|
-
userResume?: string | undefined;
|
|
83
|
-
skills?: {
|
|
84
|
-
skill: string;
|
|
85
|
-
skillExpertise: number;
|
|
86
|
-
}[] | undefined;
|
|
87
|
-
wishlist?: string[] | undefined;
|
|
88
|
-
favBlogs?: string[] | undefined;
|
|
89
|
-
favPackages?: string[] | undefined;
|
|
90
|
-
id?: string | undefined;
|
|
91
|
-
selfie?: string | undefined;
|
|
92
|
-
selfieAction?: string | undefined;
|
|
93
|
-
jobCount?: number | undefined;
|
|
94
|
-
travelPackageCount?: number | undefined;
|
|
95
|
-
gstNumber?: string | undefined;
|
|
96
|
-
panCard?: string | undefined;
|
|
97
|
-
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
98
|
-
} | typeof import("jotai/utils").RESET | ((prev: {
|
|
99
|
-
username: string;
|
|
100
|
-
firstName: string;
|
|
101
|
-
lastName: string;
|
|
102
|
-
email: string;
|
|
103
|
-
password: string;
|
|
104
|
-
phoneNumber: string;
|
|
105
|
-
countryCode: string;
|
|
106
|
-
country: string;
|
|
107
|
-
gender: "male" | "female" | "other";
|
|
108
|
-
rating: number;
|
|
109
|
-
ratingCount: number;
|
|
110
|
-
reviewCount: number;
|
|
111
|
-
joinedDate: Date;
|
|
112
|
-
isActive: boolean;
|
|
113
|
-
lastActive: Date;
|
|
114
|
-
verifiedEmail: boolean;
|
|
115
|
-
verifiedMobile: boolean;
|
|
116
|
-
role: "host" | "user" | "admin" | "hr" | "sales";
|
|
117
|
-
location?: string | undefined;
|
|
118
|
-
pinCode?: string | undefined;
|
|
119
|
-
dob?: Date | undefined;
|
|
120
|
-
profilePic?: string | undefined;
|
|
121
|
-
blogsCount?: number | undefined;
|
|
122
|
-
userBio?: string | undefined;
|
|
123
|
-
userIdCard?: string | undefined;
|
|
124
|
-
watchHistory?: string[] | undefined;
|
|
125
|
-
accessToken?: string | undefined;
|
|
126
|
-
refreshToken?: string | undefined;
|
|
127
|
-
verifiedIdCard?: boolean | undefined;
|
|
128
|
-
socialLinks?: Record<string, string> | undefined;
|
|
129
|
-
userResume?: string | undefined;
|
|
130
|
-
skills?: {
|
|
131
|
-
skill: string;
|
|
132
|
-
skillExpertise: number;
|
|
133
|
-
}[] | undefined;
|
|
134
|
-
wishlist?: string[] | undefined;
|
|
135
|
-
favBlogs?: string[] | undefined;
|
|
136
|
-
favPackages?: string[] | undefined;
|
|
137
|
-
id?: string | undefined;
|
|
138
|
-
selfie?: string | undefined;
|
|
139
|
-
selfieAction?: string | undefined;
|
|
140
|
-
jobCount?: number | undefined;
|
|
141
|
-
travelPackageCount?: number | undefined;
|
|
142
|
-
gstNumber?: string | undefined;
|
|
143
|
-
panCard?: string | undefined;
|
|
144
|
-
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
145
|
-
} | null) => {
|
|
146
|
-
username: string;
|
|
147
|
-
firstName: string;
|
|
148
|
-
lastName: string;
|
|
149
|
-
email: string;
|
|
150
|
-
password: string;
|
|
151
|
-
phoneNumber: string;
|
|
152
|
-
countryCode: string;
|
|
153
|
-
country: string;
|
|
154
|
-
gender: "male" | "female" | "other";
|
|
155
|
-
rating: number;
|
|
156
|
-
ratingCount: number;
|
|
157
|
-
reviewCount: number;
|
|
158
|
-
joinedDate: Date;
|
|
159
|
-
isActive: boolean;
|
|
160
|
-
lastActive: Date;
|
|
161
|
-
verifiedEmail: boolean;
|
|
162
|
-
verifiedMobile: boolean;
|
|
163
|
-
role: "host" | "user" | "admin" | "hr" | "sales";
|
|
164
|
-
location?: string | undefined;
|
|
165
|
-
pinCode?: string | undefined;
|
|
166
|
-
dob?: Date | undefined;
|
|
167
|
-
profilePic?: string | undefined;
|
|
168
|
-
blogsCount?: number | undefined;
|
|
169
|
-
userBio?: string | undefined;
|
|
170
|
-
userIdCard?: string | undefined;
|
|
171
|
-
watchHistory?: string[] | undefined;
|
|
172
|
-
accessToken?: string | undefined;
|
|
173
|
-
refreshToken?: string | undefined;
|
|
174
|
-
verifiedIdCard?: boolean | undefined;
|
|
175
|
-
socialLinks?: Record<string, string> | undefined;
|
|
176
|
-
userResume?: string | undefined;
|
|
177
|
-
skills?: {
|
|
178
|
-
skill: string;
|
|
179
|
-
skillExpertise: number;
|
|
180
|
-
}[] | undefined;
|
|
181
|
-
wishlist?: string[] | undefined;
|
|
182
|
-
favBlogs?: string[] | undefined;
|
|
183
|
-
favPackages?: string[] | undefined;
|
|
184
|
-
id?: string | undefined;
|
|
185
|
-
selfie?: string | undefined;
|
|
186
|
-
selfieAction?: string | undefined;
|
|
187
|
-
jobCount?: number | undefined;
|
|
188
|
-
travelPackageCount?: number | undefined;
|
|
189
|
-
gstNumber?: string | undefined;
|
|
190
|
-
panCard?: string | undefined;
|
|
191
|
-
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
192
|
-
} | typeof import("jotai/utils").RESET | null) | null], void>;
|
|
193
|
-
export declare const isLoggedInAtom: import("jotai").WritableAtom<boolean, [boolean | typeof import("jotai/utils").RESET | ((prev: boolean) => boolean | typeof import("jotai/utils").RESET)], void>;
|
|
194
|
-
export declare const userLoadingAtom: import("jotai").Atom<boolean>;
|
|
195
|
-
export declare const initializeAuthSessionAtom: import("jotai").WritableAtom<null, [], Promise<void>> & {
|
|
196
|
-
init: null;
|
|
197
|
-
};
|
|
198
|
-
export declare function resetAuthState(): void;
|
|
1
|
+
export declare const storageInitializedAtom: import("jotai").PrimitiveAtom<boolean> & {
|
|
2
|
+
init: boolean;
|
|
3
|
+
};
|
|
4
|
+
export declare const userAtom: import("jotai").WritableAtom<{
|
|
5
|
+
username: string;
|
|
6
|
+
firstName: string;
|
|
7
|
+
lastName: string;
|
|
8
|
+
email: string;
|
|
9
|
+
password: string;
|
|
10
|
+
phoneNumber: string;
|
|
11
|
+
countryCode: string;
|
|
12
|
+
country: string;
|
|
13
|
+
gender: "male" | "female" | "other";
|
|
14
|
+
rating: number;
|
|
15
|
+
ratingCount: number;
|
|
16
|
+
reviewCount: number;
|
|
17
|
+
joinedDate: Date;
|
|
18
|
+
isActive: boolean;
|
|
19
|
+
lastActive: Date;
|
|
20
|
+
verifiedEmail: boolean;
|
|
21
|
+
verifiedMobile: boolean;
|
|
22
|
+
role: "host" | "user" | "admin" | "hr" | "sales";
|
|
23
|
+
location?: string | undefined;
|
|
24
|
+
pinCode?: string | undefined;
|
|
25
|
+
dob?: Date | undefined;
|
|
26
|
+
profilePic?: string | undefined;
|
|
27
|
+
blogsCount?: number | undefined;
|
|
28
|
+
userBio?: string | undefined;
|
|
29
|
+
userIdCard?: string | undefined;
|
|
30
|
+
watchHistory?: string[] | undefined;
|
|
31
|
+
accessToken?: string | undefined;
|
|
32
|
+
refreshToken?: string | undefined;
|
|
33
|
+
verifiedIdCard?: boolean | undefined;
|
|
34
|
+
socialLinks?: Record<string, string> | undefined;
|
|
35
|
+
userResume?: string | undefined;
|
|
36
|
+
skills?: {
|
|
37
|
+
skill: string;
|
|
38
|
+
skillExpertise: number;
|
|
39
|
+
}[] | undefined;
|
|
40
|
+
wishlist?: string[] | undefined;
|
|
41
|
+
favBlogs?: string[] | undefined;
|
|
42
|
+
favPackages?: string[] | undefined;
|
|
43
|
+
id?: string | undefined;
|
|
44
|
+
selfie?: string | undefined;
|
|
45
|
+
selfieAction?: string | undefined;
|
|
46
|
+
jobCount?: number | undefined;
|
|
47
|
+
travelPackageCount?: number | undefined;
|
|
48
|
+
gstNumber?: string | undefined;
|
|
49
|
+
panCard?: string | undefined;
|
|
50
|
+
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
51
|
+
} | null, [{
|
|
52
|
+
username: string;
|
|
53
|
+
firstName: string;
|
|
54
|
+
lastName: string;
|
|
55
|
+
email: string;
|
|
56
|
+
password: string;
|
|
57
|
+
phoneNumber: string;
|
|
58
|
+
countryCode: string;
|
|
59
|
+
country: string;
|
|
60
|
+
gender: "male" | "female" | "other";
|
|
61
|
+
rating: number;
|
|
62
|
+
ratingCount: number;
|
|
63
|
+
reviewCount: number;
|
|
64
|
+
joinedDate: Date;
|
|
65
|
+
isActive: boolean;
|
|
66
|
+
lastActive: Date;
|
|
67
|
+
verifiedEmail: boolean;
|
|
68
|
+
verifiedMobile: boolean;
|
|
69
|
+
role: "host" | "user" | "admin" | "hr" | "sales";
|
|
70
|
+
location?: string | undefined;
|
|
71
|
+
pinCode?: string | undefined;
|
|
72
|
+
dob?: Date | undefined;
|
|
73
|
+
profilePic?: string | undefined;
|
|
74
|
+
blogsCount?: number | undefined;
|
|
75
|
+
userBio?: string | undefined;
|
|
76
|
+
userIdCard?: string | undefined;
|
|
77
|
+
watchHistory?: string[] | undefined;
|
|
78
|
+
accessToken?: string | undefined;
|
|
79
|
+
refreshToken?: string | undefined;
|
|
80
|
+
verifiedIdCard?: boolean | undefined;
|
|
81
|
+
socialLinks?: Record<string, string> | undefined;
|
|
82
|
+
userResume?: string | undefined;
|
|
83
|
+
skills?: {
|
|
84
|
+
skill: string;
|
|
85
|
+
skillExpertise: number;
|
|
86
|
+
}[] | undefined;
|
|
87
|
+
wishlist?: string[] | undefined;
|
|
88
|
+
favBlogs?: string[] | undefined;
|
|
89
|
+
favPackages?: string[] | undefined;
|
|
90
|
+
id?: string | undefined;
|
|
91
|
+
selfie?: string | undefined;
|
|
92
|
+
selfieAction?: string | undefined;
|
|
93
|
+
jobCount?: number | undefined;
|
|
94
|
+
travelPackageCount?: number | undefined;
|
|
95
|
+
gstNumber?: string | undefined;
|
|
96
|
+
panCard?: string | undefined;
|
|
97
|
+
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
98
|
+
} | typeof import("jotai/utils").RESET | ((prev: {
|
|
99
|
+
username: string;
|
|
100
|
+
firstName: string;
|
|
101
|
+
lastName: string;
|
|
102
|
+
email: string;
|
|
103
|
+
password: string;
|
|
104
|
+
phoneNumber: string;
|
|
105
|
+
countryCode: string;
|
|
106
|
+
country: string;
|
|
107
|
+
gender: "male" | "female" | "other";
|
|
108
|
+
rating: number;
|
|
109
|
+
ratingCount: number;
|
|
110
|
+
reviewCount: number;
|
|
111
|
+
joinedDate: Date;
|
|
112
|
+
isActive: boolean;
|
|
113
|
+
lastActive: Date;
|
|
114
|
+
verifiedEmail: boolean;
|
|
115
|
+
verifiedMobile: boolean;
|
|
116
|
+
role: "host" | "user" | "admin" | "hr" | "sales";
|
|
117
|
+
location?: string | undefined;
|
|
118
|
+
pinCode?: string | undefined;
|
|
119
|
+
dob?: Date | undefined;
|
|
120
|
+
profilePic?: string | undefined;
|
|
121
|
+
blogsCount?: number | undefined;
|
|
122
|
+
userBio?: string | undefined;
|
|
123
|
+
userIdCard?: string | undefined;
|
|
124
|
+
watchHistory?: string[] | undefined;
|
|
125
|
+
accessToken?: string | undefined;
|
|
126
|
+
refreshToken?: string | undefined;
|
|
127
|
+
verifiedIdCard?: boolean | undefined;
|
|
128
|
+
socialLinks?: Record<string, string> | undefined;
|
|
129
|
+
userResume?: string | undefined;
|
|
130
|
+
skills?: {
|
|
131
|
+
skill: string;
|
|
132
|
+
skillExpertise: number;
|
|
133
|
+
}[] | undefined;
|
|
134
|
+
wishlist?: string[] | undefined;
|
|
135
|
+
favBlogs?: string[] | undefined;
|
|
136
|
+
favPackages?: string[] | undefined;
|
|
137
|
+
id?: string | undefined;
|
|
138
|
+
selfie?: string | undefined;
|
|
139
|
+
selfieAction?: string | undefined;
|
|
140
|
+
jobCount?: number | undefined;
|
|
141
|
+
travelPackageCount?: number | undefined;
|
|
142
|
+
gstNumber?: string | undefined;
|
|
143
|
+
panCard?: string | undefined;
|
|
144
|
+
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
145
|
+
} | null) => {
|
|
146
|
+
username: string;
|
|
147
|
+
firstName: string;
|
|
148
|
+
lastName: string;
|
|
149
|
+
email: string;
|
|
150
|
+
password: string;
|
|
151
|
+
phoneNumber: string;
|
|
152
|
+
countryCode: string;
|
|
153
|
+
country: string;
|
|
154
|
+
gender: "male" | "female" | "other";
|
|
155
|
+
rating: number;
|
|
156
|
+
ratingCount: number;
|
|
157
|
+
reviewCount: number;
|
|
158
|
+
joinedDate: Date;
|
|
159
|
+
isActive: boolean;
|
|
160
|
+
lastActive: Date;
|
|
161
|
+
verifiedEmail: boolean;
|
|
162
|
+
verifiedMobile: boolean;
|
|
163
|
+
role: "host" | "user" | "admin" | "hr" | "sales";
|
|
164
|
+
location?: string | undefined;
|
|
165
|
+
pinCode?: string | undefined;
|
|
166
|
+
dob?: Date | undefined;
|
|
167
|
+
profilePic?: string | undefined;
|
|
168
|
+
blogsCount?: number | undefined;
|
|
169
|
+
userBio?: string | undefined;
|
|
170
|
+
userIdCard?: string | undefined;
|
|
171
|
+
watchHistory?: string[] | undefined;
|
|
172
|
+
accessToken?: string | undefined;
|
|
173
|
+
refreshToken?: string | undefined;
|
|
174
|
+
verifiedIdCard?: boolean | undefined;
|
|
175
|
+
socialLinks?: Record<string, string> | undefined;
|
|
176
|
+
userResume?: string | undefined;
|
|
177
|
+
skills?: {
|
|
178
|
+
skill: string;
|
|
179
|
+
skillExpertise: number;
|
|
180
|
+
}[] | undefined;
|
|
181
|
+
wishlist?: string[] | undefined;
|
|
182
|
+
favBlogs?: string[] | undefined;
|
|
183
|
+
favPackages?: string[] | undefined;
|
|
184
|
+
id?: string | undefined;
|
|
185
|
+
selfie?: string | undefined;
|
|
186
|
+
selfieAction?: string | undefined;
|
|
187
|
+
jobCount?: number | undefined;
|
|
188
|
+
travelPackageCount?: number | undefined;
|
|
189
|
+
gstNumber?: string | undefined;
|
|
190
|
+
panCard?: string | undefined;
|
|
191
|
+
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
192
|
+
} | typeof import("jotai/utils").RESET | null) | null], void>;
|
|
193
|
+
export declare const isLoggedInAtom: import("jotai").WritableAtom<boolean, [boolean | typeof import("jotai/utils").RESET | ((prev: boolean) => boolean | typeof import("jotai/utils").RESET)], void>;
|
|
194
|
+
export declare const userLoadingAtom: import("jotai").Atom<boolean>;
|
|
195
|
+
export declare const initializeAuthSessionAtom: import("jotai").WritableAtom<null, [], Promise<void>> & {
|
|
196
|
+
init: null;
|
|
197
|
+
};
|
|
198
|
+
export declare function resetAuthState(): void;
|
|
199
199
|
//# sourceMappingURL=userAtom.d.ts.map
|