@myrjfa/state 1.0.3 → 1.0.5

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.
@@ -1,380 +1,398 @@
1
- import { z } from "zod";
2
- import { DisplayItem } from "./props";
3
- export declare const OpportunitySchema: z.ZodObject<{
4
- slug: z.ZodString;
5
- title: z.ZodString;
6
- skills: z.ZodArray<z.ZodString, "many">;
7
- description: z.ZodString;
8
- images: z.ZodArray<z.ZodString, "many">;
9
- categoryId: z.ZodOptional<z.ZodString>;
10
- city: z.ZodString;
11
- state: z.ZodString;
12
- address: z.ZodOptional<z.ZodString>;
13
- availableFrom: z.ZodDate;
14
- minDuration: z.ZodNumber;
15
- maxDuration: z.ZodNumber;
16
- urgent: z.ZodBoolean;
17
- applicationCount: z.ZodNumber;
18
- peopleRequired: z.ZodNumber;
19
- facilities: z.ZodArray<z.ZodString, "many">;
20
- responsibilities: z.ZodArray<z.ZodString, "many">;
21
- questions: z.ZodArray<z.ZodObject<{
22
- question: z.ZodString;
23
- answer: z.ZodString;
24
- }, "strict", z.ZodTypeAny, {
25
- question: string;
26
- answer: string;
27
- }, {
28
- question: string;
29
- answer: string;
30
- }>, "many">;
31
- rating: z.ZodNumber;
32
- ratingCount: z.ZodNumber;
33
- reviewCount: z.ZodNumber;
34
- hostId: z.ZodLazy<z.ZodObject<{
35
- username: z.ZodString;
36
- firstName: z.ZodString;
37
- lastName: z.ZodString;
38
- email: z.ZodString;
39
- password: z.ZodString;
40
- phoneNumber: z.ZodString;
41
- location: z.ZodOptional<z.ZodString>;
42
- pinCode: z.ZodOptional<z.ZodString>;
43
- dob: z.ZodOptional<z.ZodDate>;
44
- gender: z.ZodEnum<["male", "female", "other"]>;
45
- profilePic: z.ZodOptional<z.ZodString>;
46
- rating: z.ZodNumber;
47
- ratingCount: z.ZodNumber;
48
- reviewCount: z.ZodNumber;
49
- blogsCount: z.ZodOptional<z.ZodNumber>;
50
- joinedDate: z.ZodDate;
51
- isActive: z.ZodBoolean;
52
- lastActive: z.ZodDate;
53
- userBio: z.ZodOptional<z.ZodString>;
54
- userIdCard: z.ZodOptional<z.ZodString>;
55
- watchHistory: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
56
- accessToken: z.ZodOptional<z.ZodString>;
57
- refreshToken: z.ZodOptional<z.ZodString>;
58
- verifiedEmail: z.ZodBoolean;
59
- verifiedMobile: z.ZodBoolean;
60
- verifiedIdCard: z.ZodOptional<z.ZodBoolean>;
61
- role: z.ZodEnum<["host", "user", "admin", "hr", "sales"]>;
62
- socialLinks: z.ZodOptional<z.ZodRecord<z.ZodEnum<[string, ...string[]]>, z.ZodString>>;
63
- userResume: z.ZodOptional<z.ZodString>;
64
- skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
65
- skill: z.ZodString;
66
- skillExpertise: z.ZodNumber;
67
- }, "strip", z.ZodTypeAny, {
68
- skill: string;
69
- skillExpertise: number;
70
- }, {
71
- skill: string;
72
- skillExpertise: number;
73
- }>, "many">>;
74
- wishlist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
75
- favBlogs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
76
- favPackages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
77
- id: z.ZodOptional<z.ZodString>;
78
- selfie: z.ZodOptional<z.ZodString>;
79
- selfieAction: z.ZodOptional<z.ZodString>;
80
- jobCount: z.ZodOptional<z.ZodNumber>;
81
- travelPackageCount: z.ZodOptional<z.ZodNumber>;
82
- gstNumber: z.ZodOptional<z.ZodString>;
83
- panCard: z.ZodOptional<z.ZodString>;
84
- verifiedBusiness: z.ZodOptional<z.ZodEnum<["true", "false", "inProgress"]>>;
85
- }, "strict", z.ZodTypeAny, {
86
- username: string;
87
- firstName: string;
88
- lastName: string;
89
- email: string;
90
- password: string;
91
- phoneNumber: string;
92
- gender: "male" | "female" | "other";
93
- rating: number;
94
- ratingCount: number;
95
- reviewCount: number;
96
- joinedDate: Date;
97
- isActive: boolean;
98
- lastActive: Date;
99
- verifiedEmail: boolean;
100
- verifiedMobile: boolean;
101
- role: "host" | "user" | "admin" | "hr" | "sales";
102
- location?: string | undefined;
103
- pinCode?: string | undefined;
104
- dob?: Date | undefined;
105
- profilePic?: string | undefined;
106
- blogsCount?: number | undefined;
107
- userBio?: string | undefined;
108
- userIdCard?: string | undefined;
109
- watchHistory?: string[] | undefined;
110
- accessToken?: string | undefined;
111
- refreshToken?: string | undefined;
112
- verifiedIdCard?: boolean | undefined;
113
- socialLinks?: Record<string, string> | undefined;
114
- userResume?: string | undefined;
115
- skills?: {
116
- skill: string;
117
- skillExpertise: number;
118
- }[] | undefined;
119
- wishlist?: string[] | undefined;
120
- favBlogs?: string[] | undefined;
121
- favPackages?: string[] | undefined;
122
- id?: string | undefined;
123
- selfie?: string | undefined;
124
- selfieAction?: string | undefined;
125
- jobCount?: number | undefined;
126
- travelPackageCount?: number | undefined;
127
- gstNumber?: string | undefined;
128
- panCard?: string | undefined;
129
- verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
130
- }, {
131
- username: string;
132
- firstName: string;
133
- lastName: string;
134
- email: string;
135
- password: string;
136
- phoneNumber: string;
137
- gender: "male" | "female" | "other";
138
- rating: number;
139
- ratingCount: number;
140
- reviewCount: number;
141
- joinedDate: Date;
142
- isActive: boolean;
143
- lastActive: Date;
144
- verifiedEmail: boolean;
145
- verifiedMobile: boolean;
146
- role: "host" | "user" | "admin" | "hr" | "sales";
147
- location?: string | undefined;
148
- pinCode?: string | undefined;
149
- dob?: Date | undefined;
150
- profilePic?: string | undefined;
151
- blogsCount?: number | undefined;
152
- userBio?: string | undefined;
153
- userIdCard?: string | undefined;
154
- watchHistory?: string[] | undefined;
155
- accessToken?: string | undefined;
156
- refreshToken?: string | undefined;
157
- verifiedIdCard?: boolean | undefined;
158
- socialLinks?: Record<string, string> | undefined;
159
- userResume?: string | undefined;
160
- skills?: {
161
- skill: string;
162
- skillExpertise: number;
163
- }[] | undefined;
164
- wishlist?: string[] | undefined;
165
- favBlogs?: string[] | undefined;
166
- favPackages?: string[] | undefined;
167
- id?: string | undefined;
168
- selfie?: string | undefined;
169
- selfieAction?: string | undefined;
170
- jobCount?: number | undefined;
171
- travelPackageCount?: number | undefined;
172
- gstNumber?: string | undefined;
173
- panCard?: string | undefined;
174
- verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
175
- }>>;
176
- applicationObservers: z.ZodOptional<z.ZodArray<z.ZodObject<{
177
- username: z.ZodString;
178
- role: z.ZodEnum<["host", "user", "admin", "hr", "sales"]>;
179
- phoneNumber: z.ZodString;
180
- email: z.ZodString;
181
- }, "strip", z.ZodTypeAny, {
182
- username: string;
183
- email: string;
184
- phoneNumber: string;
185
- role: "host" | "user" | "admin" | "hr" | "sales";
186
- }, {
187
- username: string;
188
- email: string;
189
- phoneNumber: string;
190
- role: "host" | "user" | "admin" | "hr" | "sales";
191
- }>, "many">>;
192
- hostingType: z.ZodOptional<z.ZodString>;
193
- views: z.ZodNumber;
194
- shares: z.ZodNumber;
195
- status: z.ZodEnum<["draft", "archived", "pending", "open", "closed", "denied", "deleted"]>;
196
- createdAt: z.ZodOptional<z.ZodDate>;
197
- updatedAt: z.ZodOptional<z.ZodDate>;
198
- adminApproval: z.ZodBoolean;
199
- }, "strict", z.ZodTypeAny, {
200
- status: "draft" | "archived" | "pending" | "denied" | "open" | "closed" | "deleted";
201
- rating: number;
202
- ratingCount: number;
203
- reviewCount: number;
204
- skills: string[];
205
- title: string;
206
- description: string;
207
- slug: string;
208
- views: number;
209
- shares: number;
210
- images: string[];
211
- city: string;
212
- state: string;
213
- availableFrom: Date;
214
- minDuration: number;
215
- maxDuration: number;
216
- urgent: boolean;
217
- applicationCount: number;
218
- peopleRequired: number;
219
- facilities: string[];
220
- responsibilities: string[];
221
- questions: {
222
- question: string;
223
- answer: string;
224
- }[];
225
- hostId: {
226
- username: string;
227
- firstName: string;
228
- lastName: string;
229
- email: string;
230
- password: string;
231
- phoneNumber: string;
232
- gender: "male" | "female" | "other";
233
- rating: number;
234
- ratingCount: number;
235
- reviewCount: number;
236
- joinedDate: Date;
237
- isActive: boolean;
238
- lastActive: Date;
239
- verifiedEmail: boolean;
240
- verifiedMobile: boolean;
241
- role: "host" | "user" | "admin" | "hr" | "sales";
242
- location?: string | undefined;
243
- pinCode?: string | undefined;
244
- dob?: Date | undefined;
245
- profilePic?: string | undefined;
246
- blogsCount?: number | undefined;
247
- userBio?: string | undefined;
248
- userIdCard?: string | undefined;
249
- watchHistory?: string[] | undefined;
250
- accessToken?: string | undefined;
251
- refreshToken?: string | undefined;
252
- verifiedIdCard?: boolean | undefined;
253
- socialLinks?: Record<string, string> | undefined;
254
- userResume?: string | undefined;
255
- skills?: {
256
- skill: string;
257
- skillExpertise: number;
258
- }[] | undefined;
259
- wishlist?: string[] | undefined;
260
- favBlogs?: string[] | undefined;
261
- favPackages?: string[] | undefined;
262
- id?: string | undefined;
263
- selfie?: string | undefined;
264
- selfieAction?: string | undefined;
265
- jobCount?: number | undefined;
266
- travelPackageCount?: number | undefined;
267
- gstNumber?: string | undefined;
268
- panCard?: string | undefined;
269
- verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
270
- };
271
- adminApproval: boolean;
272
- createdAt?: Date | undefined;
273
- updatedAt?: Date | undefined;
274
- categoryId?: string | undefined;
275
- address?: string | undefined;
276
- applicationObservers?: {
277
- username: string;
278
- email: string;
279
- phoneNumber: string;
280
- role: "host" | "user" | "admin" | "hr" | "sales";
281
- }[] | undefined;
282
- hostingType?: string | undefined;
283
- }, {
284
- status: "draft" | "archived" | "pending" | "denied" | "open" | "closed" | "deleted";
285
- rating: number;
286
- ratingCount: number;
287
- reviewCount: number;
288
- skills: string[];
289
- title: string;
290
- description: string;
291
- slug: string;
292
- views: number;
293
- shares: number;
294
- images: string[];
295
- city: string;
296
- state: string;
297
- availableFrom: Date;
298
- minDuration: number;
299
- maxDuration: number;
300
- urgent: boolean;
301
- applicationCount: number;
302
- peopleRequired: number;
303
- facilities: string[];
304
- responsibilities: string[];
305
- questions: {
306
- question: string;
307
- answer: string;
308
- }[];
309
- hostId: {
310
- username: string;
311
- firstName: string;
312
- lastName: string;
313
- email: string;
314
- password: string;
315
- phoneNumber: string;
316
- gender: "male" | "female" | "other";
317
- rating: number;
318
- ratingCount: number;
319
- reviewCount: number;
320
- joinedDate: Date;
321
- isActive: boolean;
322
- lastActive: Date;
323
- verifiedEmail: boolean;
324
- verifiedMobile: boolean;
325
- role: "host" | "user" | "admin" | "hr" | "sales";
326
- location?: string | undefined;
327
- pinCode?: string | undefined;
328
- dob?: Date | undefined;
329
- profilePic?: string | undefined;
330
- blogsCount?: number | undefined;
331
- userBio?: string | undefined;
332
- userIdCard?: string | undefined;
333
- watchHistory?: string[] | undefined;
334
- accessToken?: string | undefined;
335
- refreshToken?: string | undefined;
336
- verifiedIdCard?: boolean | undefined;
337
- socialLinks?: Record<string, string> | undefined;
338
- userResume?: string | undefined;
339
- skills?: {
340
- skill: string;
341
- skillExpertise: number;
342
- }[] | undefined;
343
- wishlist?: string[] | undefined;
344
- favBlogs?: string[] | undefined;
345
- favPackages?: string[] | undefined;
346
- id?: string | undefined;
347
- selfie?: string | undefined;
348
- selfieAction?: string | undefined;
349
- jobCount?: number | undefined;
350
- travelPackageCount?: number | undefined;
351
- gstNumber?: string | undefined;
352
- panCard?: string | undefined;
353
- verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
354
- };
355
- adminApproval: boolean;
356
- createdAt?: Date | undefined;
357
- updatedAt?: Date | undefined;
358
- categoryId?: string | undefined;
359
- address?: string | undefined;
360
- applicationObservers?: {
361
- username: string;
362
- email: string;
363
- phoneNumber: string;
364
- role: "host" | "user" | "admin" | "hr" | "sales";
365
- }[] | undefined;
366
- hostingType?: string | undefined;
367
- }>;
368
- export type OppMetaData = {
369
- image: string;
370
- title: string;
371
- location: string;
372
- skills: string[];
373
- hostingType: string;
374
- };
375
- export type Opportunity = z.infer<typeof OpportunitySchema>;
376
- export declare const facilitiesOptions: DisplayItem[];
377
- export declare const otherFacilitiesOptions: DisplayItem[];
378
- export declare const responsibilitiesOptions: DisplayItem[];
379
- export declare const otherResponsibilitiesOptions: DisplayItem[];
1
+ import { z } from "zod";
2
+ import { DisplayItem } from "./props";
3
+ export declare const OpportunitySchema: z.ZodObject<{
4
+ slug: z.ZodString;
5
+ title: z.ZodString;
6
+ skills: z.ZodArray<z.ZodString, "many">;
7
+ description: z.ZodString;
8
+ images: z.ZodArray<z.ZodString, "many">;
9
+ categoryId: z.ZodOptional<z.ZodString>;
10
+ city: z.ZodString;
11
+ state: z.ZodString;
12
+ country: z.ZodString;
13
+ address: z.ZodOptional<z.ZodString>;
14
+ availableFrom: z.ZodDate;
15
+ minDuration: z.ZodNumber;
16
+ maxDuration: z.ZodNumber;
17
+ urgent: z.ZodBoolean;
18
+ applicationCount: z.ZodNumber;
19
+ peopleRequired: z.ZodNumber;
20
+ facilities: z.ZodArray<z.ZodString, "many">;
21
+ responsibilities: z.ZodArray<z.ZodString, "many">;
22
+ questions: z.ZodArray<z.ZodObject<{
23
+ question: z.ZodString;
24
+ answer: z.ZodString;
25
+ }, "strict", z.ZodTypeAny, {
26
+ question: string;
27
+ answer: string;
28
+ }, {
29
+ question: string;
30
+ answer: string;
31
+ }>, "many">;
32
+ rating: z.ZodNumber;
33
+ ratingCount: z.ZodNumber;
34
+ reviewCount: z.ZodNumber;
35
+ hostId: z.ZodLazy<z.ZodObject<{
36
+ username: z.ZodString;
37
+ firstName: z.ZodString;
38
+ lastName: z.ZodString;
39
+ email: z.ZodString;
40
+ password: z.ZodString;
41
+ phoneNumber: z.ZodString;
42
+ countryCode: z.ZodString;
43
+ country: z.ZodString;
44
+ location: z.ZodOptional<z.ZodString>;
45
+ pinCode: z.ZodOptional<z.ZodString>;
46
+ dob: z.ZodOptional<z.ZodDate>;
47
+ gender: z.ZodEnum<["male", "female", "other"]>;
48
+ profilePic: z.ZodOptional<z.ZodString>;
49
+ rating: z.ZodNumber;
50
+ ratingCount: z.ZodNumber;
51
+ reviewCount: z.ZodNumber;
52
+ blogsCount: z.ZodOptional<z.ZodNumber>;
53
+ joinedDate: z.ZodDate;
54
+ isActive: z.ZodBoolean;
55
+ lastActive: z.ZodDate;
56
+ userBio: z.ZodOptional<z.ZodString>;
57
+ userIdCard: z.ZodOptional<z.ZodString>;
58
+ watchHistory: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
59
+ accessToken: z.ZodOptional<z.ZodString>;
60
+ refreshToken: z.ZodOptional<z.ZodString>;
61
+ verifiedEmail: z.ZodBoolean;
62
+ verifiedMobile: z.ZodBoolean;
63
+ verifiedIdCard: z.ZodOptional<z.ZodBoolean>;
64
+ role: z.ZodEnum<["host", "user", "admin", "hr", "sales"]>;
65
+ socialLinks: z.ZodOptional<z.ZodRecord<z.ZodEnum<[string, ...string[]]>, z.ZodString>>;
66
+ userResume: z.ZodOptional<z.ZodString>;
67
+ skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
68
+ skill: z.ZodString;
69
+ skillExpertise: z.ZodNumber;
70
+ }, "strip", z.ZodTypeAny, {
71
+ skill: string;
72
+ skillExpertise: number;
73
+ }, {
74
+ skill: string;
75
+ skillExpertise: number;
76
+ }>, "many">>;
77
+ wishlist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
78
+ favBlogs: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
79
+ favPackages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
80
+ id: z.ZodOptional<z.ZodString>;
81
+ selfie: z.ZodOptional<z.ZodString>;
82
+ selfieAction: z.ZodOptional<z.ZodString>;
83
+ jobCount: z.ZodOptional<z.ZodNumber>;
84
+ travelPackageCount: z.ZodOptional<z.ZodNumber>;
85
+ gstNumber: z.ZodOptional<z.ZodString>;
86
+ panCard: z.ZodOptional<z.ZodString>;
87
+ verifiedBusiness: z.ZodOptional<z.ZodEnum<["true", "false", "inProgress"]>>;
88
+ }, "strict", z.ZodTypeAny, {
89
+ username: string;
90
+ firstName: string;
91
+ lastName: string;
92
+ email: string;
93
+ password: string;
94
+ phoneNumber: string;
95
+ countryCode: string;
96
+ country: string;
97
+ gender: "male" | "female" | "other";
98
+ rating: number;
99
+ ratingCount: number;
100
+ reviewCount: number;
101
+ joinedDate: Date;
102
+ isActive: boolean;
103
+ lastActive: Date;
104
+ verifiedEmail: boolean;
105
+ verifiedMobile: boolean;
106
+ role: "host" | "user" | "admin" | "hr" | "sales";
107
+ location?: string | undefined;
108
+ pinCode?: string | undefined;
109
+ dob?: Date | undefined;
110
+ profilePic?: string | undefined;
111
+ blogsCount?: number | undefined;
112
+ userBio?: string | undefined;
113
+ userIdCard?: string | undefined;
114
+ watchHistory?: string[] | undefined;
115
+ accessToken?: string | undefined;
116
+ refreshToken?: string | undefined;
117
+ verifiedIdCard?: boolean | undefined;
118
+ socialLinks?: Record<string, string> | undefined;
119
+ userResume?: string | undefined;
120
+ skills?: {
121
+ skill: string;
122
+ skillExpertise: number;
123
+ }[] | undefined;
124
+ wishlist?: string[] | undefined;
125
+ favBlogs?: string[] | undefined;
126
+ favPackages?: string[] | undefined;
127
+ id?: string | undefined;
128
+ selfie?: string | undefined;
129
+ selfieAction?: string | undefined;
130
+ jobCount?: number | undefined;
131
+ travelPackageCount?: number | undefined;
132
+ gstNumber?: string | undefined;
133
+ panCard?: string | undefined;
134
+ verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
135
+ }, {
136
+ username: string;
137
+ firstName: string;
138
+ lastName: string;
139
+ email: string;
140
+ password: string;
141
+ phoneNumber: string;
142
+ countryCode: string;
143
+ country: string;
144
+ gender: "male" | "female" | "other";
145
+ rating: number;
146
+ ratingCount: number;
147
+ reviewCount: number;
148
+ joinedDate: Date;
149
+ isActive: boolean;
150
+ lastActive: Date;
151
+ verifiedEmail: boolean;
152
+ verifiedMobile: boolean;
153
+ role: "host" | "user" | "admin" | "hr" | "sales";
154
+ location?: string | undefined;
155
+ pinCode?: string | undefined;
156
+ dob?: Date | undefined;
157
+ profilePic?: string | undefined;
158
+ blogsCount?: number | undefined;
159
+ userBio?: string | undefined;
160
+ userIdCard?: string | undefined;
161
+ watchHistory?: string[] | undefined;
162
+ accessToken?: string | undefined;
163
+ refreshToken?: string | undefined;
164
+ verifiedIdCard?: boolean | undefined;
165
+ socialLinks?: Record<string, string> | undefined;
166
+ userResume?: string | undefined;
167
+ skills?: {
168
+ skill: string;
169
+ skillExpertise: number;
170
+ }[] | undefined;
171
+ wishlist?: string[] | undefined;
172
+ favBlogs?: string[] | undefined;
173
+ favPackages?: string[] | undefined;
174
+ id?: string | undefined;
175
+ selfie?: string | undefined;
176
+ selfieAction?: string | undefined;
177
+ jobCount?: number | undefined;
178
+ travelPackageCount?: number | undefined;
179
+ gstNumber?: string | undefined;
180
+ panCard?: string | undefined;
181
+ verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
182
+ }>>;
183
+ applicationObservers: z.ZodOptional<z.ZodArray<z.ZodObject<{
184
+ username: z.ZodString;
185
+ role: z.ZodEnum<["host", "user", "admin", "hr", "sales"]>;
186
+ countryCode: z.ZodString;
187
+ phoneNumber: z.ZodString;
188
+ email: z.ZodString;
189
+ }, "strip", z.ZodTypeAny, {
190
+ username: string;
191
+ email: string;
192
+ phoneNumber: string;
193
+ countryCode: string;
194
+ role: "host" | "user" | "admin" | "hr" | "sales";
195
+ }, {
196
+ username: string;
197
+ email: string;
198
+ phoneNumber: string;
199
+ countryCode: string;
200
+ role: "host" | "user" | "admin" | "hr" | "sales";
201
+ }>, "many">>;
202
+ hostingType: z.ZodOptional<z.ZodString>;
203
+ views: z.ZodNumber;
204
+ shares: z.ZodNumber;
205
+ status: z.ZodEnum<["draft", "archived", "pending", "open", "closed", "denied", "deleted"]>;
206
+ createdAt: z.ZodOptional<z.ZodDate>;
207
+ updatedAt: z.ZodOptional<z.ZodDate>;
208
+ adminApproval: z.ZodBoolean;
209
+ }, "strict", z.ZodTypeAny, {
210
+ country: string;
211
+ status: "draft" | "archived" | "pending" | "denied" | "open" | "closed" | "deleted";
212
+ rating: number;
213
+ ratingCount: number;
214
+ reviewCount: number;
215
+ skills: string[];
216
+ title: string;
217
+ description: string;
218
+ slug: string;
219
+ views: number;
220
+ shares: number;
221
+ images: string[];
222
+ city: string;
223
+ state: string;
224
+ availableFrom: Date;
225
+ minDuration: number;
226
+ maxDuration: number;
227
+ urgent: boolean;
228
+ applicationCount: number;
229
+ peopleRequired: number;
230
+ facilities: string[];
231
+ responsibilities: string[];
232
+ questions: {
233
+ question: string;
234
+ answer: string;
235
+ }[];
236
+ hostId: {
237
+ username: string;
238
+ firstName: string;
239
+ lastName: string;
240
+ email: string;
241
+ password: string;
242
+ phoneNumber: string;
243
+ countryCode: string;
244
+ country: string;
245
+ gender: "male" | "female" | "other";
246
+ rating: number;
247
+ ratingCount: number;
248
+ reviewCount: number;
249
+ joinedDate: Date;
250
+ isActive: boolean;
251
+ lastActive: Date;
252
+ verifiedEmail: boolean;
253
+ verifiedMobile: boolean;
254
+ role: "host" | "user" | "admin" | "hr" | "sales";
255
+ location?: string | undefined;
256
+ pinCode?: string | undefined;
257
+ dob?: Date | undefined;
258
+ profilePic?: string | undefined;
259
+ blogsCount?: number | undefined;
260
+ userBio?: string | undefined;
261
+ userIdCard?: string | undefined;
262
+ watchHistory?: string[] | undefined;
263
+ accessToken?: string | undefined;
264
+ refreshToken?: string | undefined;
265
+ verifiedIdCard?: boolean | undefined;
266
+ socialLinks?: Record<string, string> | undefined;
267
+ userResume?: string | undefined;
268
+ skills?: {
269
+ skill: string;
270
+ skillExpertise: number;
271
+ }[] | undefined;
272
+ wishlist?: string[] | undefined;
273
+ favBlogs?: string[] | undefined;
274
+ favPackages?: string[] | undefined;
275
+ id?: string | undefined;
276
+ selfie?: string | undefined;
277
+ selfieAction?: string | undefined;
278
+ jobCount?: number | undefined;
279
+ travelPackageCount?: number | undefined;
280
+ gstNumber?: string | undefined;
281
+ panCard?: string | undefined;
282
+ verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
283
+ };
284
+ adminApproval: boolean;
285
+ createdAt?: Date | undefined;
286
+ updatedAt?: Date | undefined;
287
+ categoryId?: string | undefined;
288
+ address?: string | undefined;
289
+ applicationObservers?: {
290
+ username: string;
291
+ email: string;
292
+ phoneNumber: string;
293
+ countryCode: string;
294
+ role: "host" | "user" | "admin" | "hr" | "sales";
295
+ }[] | undefined;
296
+ hostingType?: string | undefined;
297
+ }, {
298
+ country: string;
299
+ status: "draft" | "archived" | "pending" | "denied" | "open" | "closed" | "deleted";
300
+ rating: number;
301
+ ratingCount: number;
302
+ reviewCount: number;
303
+ skills: string[];
304
+ title: string;
305
+ description: string;
306
+ slug: string;
307
+ views: number;
308
+ shares: number;
309
+ images: string[];
310
+ city: string;
311
+ state: string;
312
+ availableFrom: Date;
313
+ minDuration: number;
314
+ maxDuration: number;
315
+ urgent: boolean;
316
+ applicationCount: number;
317
+ peopleRequired: number;
318
+ facilities: string[];
319
+ responsibilities: string[];
320
+ questions: {
321
+ question: string;
322
+ answer: string;
323
+ }[];
324
+ hostId: {
325
+ username: string;
326
+ firstName: string;
327
+ lastName: string;
328
+ email: string;
329
+ password: string;
330
+ phoneNumber: string;
331
+ countryCode: string;
332
+ country: string;
333
+ gender: "male" | "female" | "other";
334
+ rating: number;
335
+ ratingCount: number;
336
+ reviewCount: number;
337
+ joinedDate: Date;
338
+ isActive: boolean;
339
+ lastActive: Date;
340
+ verifiedEmail: boolean;
341
+ verifiedMobile: boolean;
342
+ role: "host" | "user" | "admin" | "hr" | "sales";
343
+ location?: string | undefined;
344
+ pinCode?: string | undefined;
345
+ dob?: Date | undefined;
346
+ profilePic?: string | undefined;
347
+ blogsCount?: number | undefined;
348
+ userBio?: string | undefined;
349
+ userIdCard?: string | undefined;
350
+ watchHistory?: string[] | undefined;
351
+ accessToken?: string | undefined;
352
+ refreshToken?: string | undefined;
353
+ verifiedIdCard?: boolean | undefined;
354
+ socialLinks?: Record<string, string> | undefined;
355
+ userResume?: string | undefined;
356
+ skills?: {
357
+ skill: string;
358
+ skillExpertise: number;
359
+ }[] | undefined;
360
+ wishlist?: string[] | undefined;
361
+ favBlogs?: string[] | undefined;
362
+ favPackages?: string[] | undefined;
363
+ id?: string | undefined;
364
+ selfie?: string | undefined;
365
+ selfieAction?: string | undefined;
366
+ jobCount?: number | undefined;
367
+ travelPackageCount?: number | undefined;
368
+ gstNumber?: string | undefined;
369
+ panCard?: string | undefined;
370
+ verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
371
+ };
372
+ adminApproval: boolean;
373
+ createdAt?: Date | undefined;
374
+ updatedAt?: Date | undefined;
375
+ categoryId?: string | undefined;
376
+ address?: string | undefined;
377
+ applicationObservers?: {
378
+ username: string;
379
+ email: string;
380
+ phoneNumber: string;
381
+ countryCode: string;
382
+ role: "host" | "user" | "admin" | "hr" | "sales";
383
+ }[] | undefined;
384
+ hostingType?: string | undefined;
385
+ }>;
386
+ export type OppMetaData = {
387
+ image: string;
388
+ title: string;
389
+ location: string;
390
+ skills: string[];
391
+ hostingType: string;
392
+ };
393
+ export type Opportunity = z.infer<typeof OpportunitySchema>;
394
+ export declare const facilitiesOptions: DisplayItem[];
395
+ export declare const otherFacilitiesOptions: DisplayItem[];
396
+ export declare const responsibilitiesOptions: DisplayItem[];
397
+ export declare const otherResponsibilitiesOptions: DisplayItem[];
380
398
  //# sourceMappingURL=volunteerJob.d.ts.map