@myrjfa/state 1.1.1 → 2.0.0
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 +34 -18
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +34 -18
- package/dist/lib/actions/actions.d.ts +170 -170
- package/dist/lib/actions/actions.js +307 -307
- package/dist/lib/actions/auth.d.ts +20 -0
- package/dist/lib/actions/auth.d.ts.map +1 -1
- package/dist/lib/actions/booking.d.ts +30 -0
- package/dist/lib/actions/booking.d.ts.map +1 -0
- package/dist/lib/actions/booking.js +77 -0
- package/dist/lib/actions/fetcher.js +84 -84
- package/dist/lib/actions/severActions.js +2 -2
- package/dist/lib/authSessionManager.js +34 -34
- package/dist/lib/context/ChatContext.js +338 -338
- package/dist/lib/models/adventure.d.ts +75 -0
- package/dist/lib/models/adventure.d.ts.map +1 -0
- package/dist/lib/models/adventure.js +1 -0
- package/dist/lib/models/blog.d.ts +4 -4
- package/dist/lib/models/booking.d.ts +47 -0
- package/dist/lib/models/booking.d.ts.map +1 -0
- package/dist/lib/models/booking.js +1 -0
- package/dist/lib/models/guide.d.ts +43 -0
- package/dist/lib/models/guide.d.ts.map +1 -0
- package/dist/lib/models/guide.js +1 -0
- package/dist/lib/models/notfications.d.ts +93 -93
- package/dist/lib/models/opportunities/freelance.d.ts +74 -6
- package/dist/lib/models/opportunities/freelance.d.ts.map +1 -1
- package/dist/lib/models/opportunities/internship.d.ts +74 -6
- package/dist/lib/models/opportunities/internship.d.ts.map +1 -1
- package/dist/lib/models/opportunities/job.d.ts +74 -6
- package/dist/lib/models/opportunities/job.d.ts.map +1 -1
- package/dist/lib/models/opportunities/opportunity.d.ts +74 -6
- package/dist/lib/models/opportunities/opportunity.d.ts.map +1 -1
- package/dist/lib/models/opportunities/volunteerJob.d.ts +74 -6
- package/dist/lib/models/opportunities/volunteerJob.d.ts.map +1 -1
- package/dist/lib/models/package.d.ts +264 -0
- package/dist/lib/models/package.d.ts.map +1 -0
- package/dist/lib/models/package.js +58 -0
- package/dist/lib/models/portfolio.d.ts +42 -42
- package/dist/lib/models/props.d.ts +3 -0
- package/dist/lib/models/props.d.ts.map +1 -1
- package/dist/lib/models/props.js +36 -0
- package/dist/lib/models/rental.d.ts +85 -0
- package/dist/lib/models/rental.d.ts.map +1 -0
- package/dist/lib/models/rental.js +1 -0
- package/dist/lib/models/review.d.ts +1 -1
- package/dist/lib/models/review.d.ts.map +1 -1
- package/dist/lib/models/stay.d.ts +459 -0
- package/dist/lib/models/stay.d.ts.map +1 -0
- package/dist/lib/models/stay.js +214 -0
- package/dist/lib/models/tile.d.ts +53 -28
- package/dist/lib/models/tile.d.ts.map +1 -1
- package/dist/lib/models/user.d.ts +48 -0
- package/dist/lib/models/user.d.ts.map +1 -1
- package/dist/lib/models/user.js +10 -0
- package/dist/lib/userAtom.d.ts +238 -198
- package/dist/lib/userAtom.d.ts.map +1 -1
- package/dist/lib/userAtom.js +127 -127
- package/package.json +6 -1
- package/dist/lib/actions/property.d.ts +0 -77
- package/dist/lib/actions/property.d.ts.map +0 -1
- package/dist/lib/actions/property.js +0 -133
- package/dist/lib/actions.d.ts +0 -141
- package/dist/lib/actions.d.ts.map +0 -1
- package/dist/lib/actions.js +0 -307
- package/dist/lib/auth.d.ts +0 -150
- package/dist/lib/auth.d.ts.map +0 -1
- package/dist/lib/auth.js +0 -125
- package/dist/lib/fetcher.d.ts +0 -9
- package/dist/lib/fetcher.d.ts.map +0 -1
- package/dist/lib/fetcher.js +0 -84
- package/dist/lib/models/property.d.ts +0 -79
- package/dist/lib/models/property.d.ts.map +0 -1
- package/dist/lib/models/property.js +0 -134
- package/dist/lib/models/volunteerJob.d.ts +0 -398
- package/dist/lib/models/volunteerJob.d.ts.map +0 -1
- package/dist/lib/models/volunteerJob.js +0 -152
- package/dist/lib/severActions.d.ts +0 -3
- package/dist/lib/severActions.d.ts.map +0 -1
- package/dist/lib/severActions.js +0 -19
- package/dist/lib/socket.d.ts +0 -7
- package/dist/lib/socket.d.ts.map +0 -1
- package/dist/lib/socket.js +0 -22
- package/dist/lib/utils/socialMediaUrl.d.ts +0 -25
- package/dist/lib/utils/socialMediaUrl.d.ts.map +0 -1
- package/dist/lib/utils/socialMediaUrl.js +0 -97
|
@@ -107,6 +107,34 @@ export declare const InternshipOpportunitySchema: z.ZodObject<{
|
|
|
107
107
|
gstNumber: z.ZodOptional<z.ZodString>;
|
|
108
108
|
panCard: z.ZodOptional<z.ZodString>;
|
|
109
109
|
verifiedBusiness: z.ZodOptional<z.ZodEnum<["true", "false", "inProgress"]>>;
|
|
110
|
+
properties: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
111
|
+
name: z.ZodString;
|
|
112
|
+
type: z.ZodString;
|
|
113
|
+
address: z.ZodString;
|
|
114
|
+
city: z.ZodString;
|
|
115
|
+
state: z.ZodString;
|
|
116
|
+
country: z.ZodString;
|
|
117
|
+
pinCode: z.ZodOptional<z.ZodString>;
|
|
118
|
+
registrationNumber: z.ZodOptional<z.ZodString>;
|
|
119
|
+
}, "strip", z.ZodTypeAny, {
|
|
120
|
+
country: string;
|
|
121
|
+
type: string;
|
|
122
|
+
name: string;
|
|
123
|
+
address: string;
|
|
124
|
+
city: string;
|
|
125
|
+
state: string;
|
|
126
|
+
pinCode?: string | undefined;
|
|
127
|
+
registrationNumber?: string | undefined;
|
|
128
|
+
}, {
|
|
129
|
+
country: string;
|
|
130
|
+
type: string;
|
|
131
|
+
name: string;
|
|
132
|
+
address: string;
|
|
133
|
+
city: string;
|
|
134
|
+
state: string;
|
|
135
|
+
pinCode?: string | undefined;
|
|
136
|
+
registrationNumber?: string | undefined;
|
|
137
|
+
}>, "many">>;
|
|
110
138
|
}, "strict", z.ZodTypeAny, {
|
|
111
139
|
username: string;
|
|
112
140
|
firstName: string;
|
|
@@ -154,6 +182,16 @@ export declare const InternshipOpportunitySchema: z.ZodObject<{
|
|
|
154
182
|
gstNumber?: string | undefined;
|
|
155
183
|
panCard?: string | undefined;
|
|
156
184
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
185
|
+
properties?: {
|
|
186
|
+
country: string;
|
|
187
|
+
type: string;
|
|
188
|
+
name: string;
|
|
189
|
+
address: string;
|
|
190
|
+
city: string;
|
|
191
|
+
state: string;
|
|
192
|
+
pinCode?: string | undefined;
|
|
193
|
+
registrationNumber?: string | undefined;
|
|
194
|
+
}[] | undefined;
|
|
157
195
|
}, {
|
|
158
196
|
username: string;
|
|
159
197
|
firstName: string;
|
|
@@ -201,6 +239,16 @@ export declare const InternshipOpportunitySchema: z.ZodObject<{
|
|
|
201
239
|
gstNumber?: string | undefined;
|
|
202
240
|
panCard?: string | undefined;
|
|
203
241
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
242
|
+
properties?: {
|
|
243
|
+
country: string;
|
|
244
|
+
type: string;
|
|
245
|
+
name: string;
|
|
246
|
+
address: string;
|
|
247
|
+
city: string;
|
|
248
|
+
state: string;
|
|
249
|
+
pinCode?: string | undefined;
|
|
250
|
+
registrationNumber?: string | undefined;
|
|
251
|
+
}[] | undefined;
|
|
204
252
|
}>>;
|
|
205
253
|
applicationObservers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
206
254
|
username: z.ZodString;
|
|
@@ -263,13 +311,13 @@ export declare const InternshipOpportunitySchema: z.ZodObject<{
|
|
|
263
311
|
ratingCount: number;
|
|
264
312
|
reviewCount: number;
|
|
265
313
|
skills: string[];
|
|
314
|
+
city: string;
|
|
315
|
+
state: string;
|
|
266
316
|
title: string;
|
|
267
317
|
description: string;
|
|
268
318
|
slug: string;
|
|
269
319
|
opportunityType: "internship";
|
|
270
320
|
images: string[];
|
|
271
|
-
city: string;
|
|
272
|
-
state: string;
|
|
273
321
|
compensation: {
|
|
274
322
|
type: string;
|
|
275
323
|
currency: string;
|
|
@@ -337,6 +385,16 @@ export declare const InternshipOpportunitySchema: z.ZodObject<{
|
|
|
337
385
|
gstNumber?: string | undefined;
|
|
338
386
|
panCard?: string | undefined;
|
|
339
387
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
388
|
+
properties?: {
|
|
389
|
+
country: string;
|
|
390
|
+
type: string;
|
|
391
|
+
name: string;
|
|
392
|
+
address: string;
|
|
393
|
+
city: string;
|
|
394
|
+
state: string;
|
|
395
|
+
pinCode?: string | undefined;
|
|
396
|
+
registrationNumber?: string | undefined;
|
|
397
|
+
}[] | undefined;
|
|
340
398
|
};
|
|
341
399
|
adminApproval: boolean;
|
|
342
400
|
platformFees: {
|
|
@@ -344,10 +402,10 @@ export declare const InternshipOpportunitySchema: z.ZodObject<{
|
|
|
344
402
|
commissionAmount: number;
|
|
345
403
|
payoutToHost: number;
|
|
346
404
|
};
|
|
405
|
+
address?: string | undefined;
|
|
347
406
|
createdAt?: Date | undefined;
|
|
348
407
|
updatedAt?: Date | undefined;
|
|
349
408
|
categoryId?: string | undefined;
|
|
350
|
-
address?: string | undefined;
|
|
351
409
|
workMode?: string | undefined;
|
|
352
410
|
bondPlan?: {
|
|
353
411
|
enabled: boolean;
|
|
@@ -371,13 +429,13 @@ export declare const InternshipOpportunitySchema: z.ZodObject<{
|
|
|
371
429
|
ratingCount: number;
|
|
372
430
|
reviewCount: number;
|
|
373
431
|
skills: string[];
|
|
432
|
+
city: string;
|
|
433
|
+
state: string;
|
|
374
434
|
title: string;
|
|
375
435
|
description: string;
|
|
376
436
|
slug: string;
|
|
377
437
|
opportunityType: "internship";
|
|
378
438
|
images: string[];
|
|
379
|
-
city: string;
|
|
380
|
-
state: string;
|
|
381
439
|
compensation: {
|
|
382
440
|
type: string;
|
|
383
441
|
currency: string;
|
|
@@ -445,6 +503,16 @@ export declare const InternshipOpportunitySchema: z.ZodObject<{
|
|
|
445
503
|
gstNumber?: string | undefined;
|
|
446
504
|
panCard?: string | undefined;
|
|
447
505
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
506
|
+
properties?: {
|
|
507
|
+
country: string;
|
|
508
|
+
type: string;
|
|
509
|
+
name: string;
|
|
510
|
+
address: string;
|
|
511
|
+
city: string;
|
|
512
|
+
state: string;
|
|
513
|
+
pinCode?: string | undefined;
|
|
514
|
+
registrationNumber?: string | undefined;
|
|
515
|
+
}[] | undefined;
|
|
448
516
|
};
|
|
449
517
|
adminApproval: boolean;
|
|
450
518
|
platformFees: {
|
|
@@ -452,10 +520,10 @@ export declare const InternshipOpportunitySchema: z.ZodObject<{
|
|
|
452
520
|
commissionAmount: number;
|
|
453
521
|
payoutToHost: number;
|
|
454
522
|
};
|
|
523
|
+
address?: string | undefined;
|
|
455
524
|
createdAt?: Date | undefined;
|
|
456
525
|
updatedAt?: Date | undefined;
|
|
457
526
|
categoryId?: string | undefined;
|
|
458
|
-
address?: string | undefined;
|
|
459
527
|
workMode?: string | undefined;
|
|
460
528
|
bondPlan?: {
|
|
461
529
|
enabled: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"internship.d.ts","sourceRoot":"","sources":["../../../../src/lib/models/opportunities/internship.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,2BAA2B
|
|
1
|
+
{"version":3,"file":"internship.d.ts","sourceRoot":"","sources":["../../../../src/lib/models/opportunities/internship.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAItC,CAAC"}
|
|
@@ -152,6 +152,34 @@ export declare const JobOpportunitySchema: z.ZodObject<{
|
|
|
152
152
|
gstNumber: z.ZodOptional<z.ZodString>;
|
|
153
153
|
panCard: z.ZodOptional<z.ZodString>;
|
|
154
154
|
verifiedBusiness: z.ZodOptional<z.ZodEnum<["true", "false", "inProgress"]>>;
|
|
155
|
+
properties: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
156
|
+
name: z.ZodString;
|
|
157
|
+
type: z.ZodString;
|
|
158
|
+
address: z.ZodString;
|
|
159
|
+
city: z.ZodString;
|
|
160
|
+
state: z.ZodString;
|
|
161
|
+
country: z.ZodString;
|
|
162
|
+
pinCode: z.ZodOptional<z.ZodString>;
|
|
163
|
+
registrationNumber: z.ZodOptional<z.ZodString>;
|
|
164
|
+
}, "strip", z.ZodTypeAny, {
|
|
165
|
+
country: string;
|
|
166
|
+
type: string;
|
|
167
|
+
name: string;
|
|
168
|
+
address: string;
|
|
169
|
+
city: string;
|
|
170
|
+
state: string;
|
|
171
|
+
pinCode?: string | undefined;
|
|
172
|
+
registrationNumber?: string | undefined;
|
|
173
|
+
}, {
|
|
174
|
+
country: string;
|
|
175
|
+
type: string;
|
|
176
|
+
name: string;
|
|
177
|
+
address: string;
|
|
178
|
+
city: string;
|
|
179
|
+
state: string;
|
|
180
|
+
pinCode?: string | undefined;
|
|
181
|
+
registrationNumber?: string | undefined;
|
|
182
|
+
}>, "many">>;
|
|
155
183
|
}, "strict", z.ZodTypeAny, {
|
|
156
184
|
username: string;
|
|
157
185
|
firstName: string;
|
|
@@ -199,6 +227,16 @@ export declare const JobOpportunitySchema: z.ZodObject<{
|
|
|
199
227
|
gstNumber?: string | undefined;
|
|
200
228
|
panCard?: string | undefined;
|
|
201
229
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
230
|
+
properties?: {
|
|
231
|
+
country: string;
|
|
232
|
+
type: string;
|
|
233
|
+
name: string;
|
|
234
|
+
address: string;
|
|
235
|
+
city: string;
|
|
236
|
+
state: string;
|
|
237
|
+
pinCode?: string | undefined;
|
|
238
|
+
registrationNumber?: string | undefined;
|
|
239
|
+
}[] | undefined;
|
|
202
240
|
}, {
|
|
203
241
|
username: string;
|
|
204
242
|
firstName: string;
|
|
@@ -246,6 +284,16 @@ export declare const JobOpportunitySchema: z.ZodObject<{
|
|
|
246
284
|
gstNumber?: string | undefined;
|
|
247
285
|
panCard?: string | undefined;
|
|
248
286
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
287
|
+
properties?: {
|
|
288
|
+
country: string;
|
|
289
|
+
type: string;
|
|
290
|
+
name: string;
|
|
291
|
+
address: string;
|
|
292
|
+
city: string;
|
|
293
|
+
state: string;
|
|
294
|
+
pinCode?: string | undefined;
|
|
295
|
+
registrationNumber?: string | undefined;
|
|
296
|
+
}[] | undefined;
|
|
249
297
|
}>>;
|
|
250
298
|
applicationObservers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
251
299
|
username: z.ZodString;
|
|
@@ -353,6 +401,8 @@ export declare const JobOpportunitySchema: z.ZodObject<{
|
|
|
353
401
|
ratingCount: number;
|
|
354
402
|
reviewCount: number;
|
|
355
403
|
skills: string[];
|
|
404
|
+
city: string;
|
|
405
|
+
state: string;
|
|
356
406
|
title: string;
|
|
357
407
|
description: string;
|
|
358
408
|
salary: {
|
|
@@ -364,8 +414,6 @@ export declare const JobOpportunitySchema: z.ZodObject<{
|
|
|
364
414
|
slug: string;
|
|
365
415
|
opportunityType: "job";
|
|
366
416
|
images: string[];
|
|
367
|
-
city: string;
|
|
368
|
-
state: string;
|
|
369
417
|
availableFrom: Date;
|
|
370
418
|
minDuration: number;
|
|
371
419
|
maxDuration: number;
|
|
@@ -427,6 +475,16 @@ export declare const JobOpportunitySchema: z.ZodObject<{
|
|
|
427
475
|
gstNumber?: string | undefined;
|
|
428
476
|
panCard?: string | undefined;
|
|
429
477
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
478
|
+
properties?: {
|
|
479
|
+
country: string;
|
|
480
|
+
type: string;
|
|
481
|
+
name: string;
|
|
482
|
+
address: string;
|
|
483
|
+
city: string;
|
|
484
|
+
state: string;
|
|
485
|
+
pinCode?: string | undefined;
|
|
486
|
+
registrationNumber?: string | undefined;
|
|
487
|
+
}[] | undefined;
|
|
430
488
|
};
|
|
431
489
|
adminApproval: boolean;
|
|
432
490
|
platformFees: {
|
|
@@ -451,10 +509,10 @@ export declare const JobOpportunitySchema: z.ZodObject<{
|
|
|
451
509
|
employeeLeft: boolean;
|
|
452
510
|
securityPaidToHost: boolean;
|
|
453
511
|
};
|
|
512
|
+
address?: string | undefined;
|
|
454
513
|
createdAt?: Date | undefined;
|
|
455
514
|
updatedAt?: Date | undefined;
|
|
456
515
|
categoryId?: string | undefined;
|
|
457
|
-
address?: string | undefined;
|
|
458
516
|
workMode?: string | undefined;
|
|
459
517
|
compensation?: {
|
|
460
518
|
type: string;
|
|
@@ -484,6 +542,8 @@ export declare const JobOpportunitySchema: z.ZodObject<{
|
|
|
484
542
|
ratingCount: number;
|
|
485
543
|
reviewCount: number;
|
|
486
544
|
skills: string[];
|
|
545
|
+
city: string;
|
|
546
|
+
state: string;
|
|
487
547
|
title: string;
|
|
488
548
|
description: string;
|
|
489
549
|
salary: {
|
|
@@ -495,8 +555,6 @@ export declare const JobOpportunitySchema: z.ZodObject<{
|
|
|
495
555
|
slug: string;
|
|
496
556
|
opportunityType: "job";
|
|
497
557
|
images: string[];
|
|
498
|
-
city: string;
|
|
499
|
-
state: string;
|
|
500
558
|
availableFrom: Date;
|
|
501
559
|
minDuration: number;
|
|
502
560
|
maxDuration: number;
|
|
@@ -558,6 +616,16 @@ export declare const JobOpportunitySchema: z.ZodObject<{
|
|
|
558
616
|
gstNumber?: string | undefined;
|
|
559
617
|
panCard?: string | undefined;
|
|
560
618
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
619
|
+
properties?: {
|
|
620
|
+
country: string;
|
|
621
|
+
type: string;
|
|
622
|
+
name: string;
|
|
623
|
+
address: string;
|
|
624
|
+
city: string;
|
|
625
|
+
state: string;
|
|
626
|
+
pinCode?: string | undefined;
|
|
627
|
+
registrationNumber?: string | undefined;
|
|
628
|
+
}[] | undefined;
|
|
561
629
|
};
|
|
562
630
|
adminApproval: boolean;
|
|
563
631
|
platformFees: {
|
|
@@ -582,10 +650,10 @@ export declare const JobOpportunitySchema: z.ZodObject<{
|
|
|
582
650
|
employeeLeft: boolean;
|
|
583
651
|
securityPaidToHost: boolean;
|
|
584
652
|
};
|
|
653
|
+
address?: string | undefined;
|
|
585
654
|
createdAt?: Date | undefined;
|
|
586
655
|
updatedAt?: Date | undefined;
|
|
587
656
|
categoryId?: string | undefined;
|
|
588
|
-
address?: string | undefined;
|
|
589
657
|
workMode?: string | undefined;
|
|
590
658
|
compensation?: {
|
|
591
659
|
type: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"job.d.ts","sourceRoot":"","sources":["../../../../src/lib/models/opportunities/job.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;EAKrB,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;EAI7B,CAAC;AAEH,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"job.d.ts","sourceRoot":"","sources":["../../../../src/lib/models/opportunities/job.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;EAKrB,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;EAI7B,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAY/B,CAAC"}
|
|
@@ -229,6 +229,34 @@ export declare const OpportunitySchema: z.ZodObject<{
|
|
|
229
229
|
gstNumber: z.ZodOptional<z.ZodString>;
|
|
230
230
|
panCard: z.ZodOptional<z.ZodString>;
|
|
231
231
|
verifiedBusiness: z.ZodOptional<z.ZodEnum<["true", "false", "inProgress"]>>;
|
|
232
|
+
properties: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
233
|
+
name: z.ZodString;
|
|
234
|
+
type: z.ZodString;
|
|
235
|
+
address: z.ZodString;
|
|
236
|
+
city: z.ZodString;
|
|
237
|
+
state: z.ZodString;
|
|
238
|
+
country: z.ZodString;
|
|
239
|
+
pinCode: z.ZodOptional<z.ZodString>;
|
|
240
|
+
registrationNumber: z.ZodOptional<z.ZodString>;
|
|
241
|
+
}, "strip", z.ZodTypeAny, {
|
|
242
|
+
country: string;
|
|
243
|
+
type: string;
|
|
244
|
+
name: string;
|
|
245
|
+
address: string;
|
|
246
|
+
city: string;
|
|
247
|
+
state: string;
|
|
248
|
+
pinCode?: string | undefined;
|
|
249
|
+
registrationNumber?: string | undefined;
|
|
250
|
+
}, {
|
|
251
|
+
country: string;
|
|
252
|
+
type: string;
|
|
253
|
+
name: string;
|
|
254
|
+
address: string;
|
|
255
|
+
city: string;
|
|
256
|
+
state: string;
|
|
257
|
+
pinCode?: string | undefined;
|
|
258
|
+
registrationNumber?: string | undefined;
|
|
259
|
+
}>, "many">>;
|
|
232
260
|
}, "strict", z.ZodTypeAny, {
|
|
233
261
|
username: string;
|
|
234
262
|
firstName: string;
|
|
@@ -276,6 +304,16 @@ export declare const OpportunitySchema: z.ZodObject<{
|
|
|
276
304
|
gstNumber?: string | undefined;
|
|
277
305
|
panCard?: string | undefined;
|
|
278
306
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
307
|
+
properties?: {
|
|
308
|
+
country: string;
|
|
309
|
+
type: string;
|
|
310
|
+
name: string;
|
|
311
|
+
address: string;
|
|
312
|
+
city: string;
|
|
313
|
+
state: string;
|
|
314
|
+
pinCode?: string | undefined;
|
|
315
|
+
registrationNumber?: string | undefined;
|
|
316
|
+
}[] | undefined;
|
|
279
317
|
}, {
|
|
280
318
|
username: string;
|
|
281
319
|
firstName: string;
|
|
@@ -323,6 +361,16 @@ export declare const OpportunitySchema: z.ZodObject<{
|
|
|
323
361
|
gstNumber?: string | undefined;
|
|
324
362
|
panCard?: string | undefined;
|
|
325
363
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
364
|
+
properties?: {
|
|
365
|
+
country: string;
|
|
366
|
+
type: string;
|
|
367
|
+
name: string;
|
|
368
|
+
address: string;
|
|
369
|
+
city: string;
|
|
370
|
+
state: string;
|
|
371
|
+
pinCode?: string | undefined;
|
|
372
|
+
registrationNumber?: string | undefined;
|
|
373
|
+
}[] | undefined;
|
|
326
374
|
}>>;
|
|
327
375
|
applicationObservers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
328
376
|
username: z.ZodString;
|
|
@@ -354,13 +402,13 @@ export declare const OpportunitySchema: z.ZodObject<{
|
|
|
354
402
|
ratingCount: number;
|
|
355
403
|
reviewCount: number;
|
|
356
404
|
skills: string[];
|
|
405
|
+
city: string;
|
|
406
|
+
state: string;
|
|
357
407
|
title: string;
|
|
358
408
|
description: string;
|
|
359
409
|
slug: string;
|
|
360
410
|
opportunityType: string;
|
|
361
411
|
images: string[];
|
|
362
|
-
city: string;
|
|
363
|
-
state: string;
|
|
364
412
|
availableFrom: Date;
|
|
365
413
|
minDuration: number;
|
|
366
414
|
maxDuration: number;
|
|
@@ -422,12 +470,22 @@ export declare const OpportunitySchema: z.ZodObject<{
|
|
|
422
470
|
gstNumber?: string | undefined;
|
|
423
471
|
panCard?: string | undefined;
|
|
424
472
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
473
|
+
properties?: {
|
|
474
|
+
country: string;
|
|
475
|
+
type: string;
|
|
476
|
+
name: string;
|
|
477
|
+
address: string;
|
|
478
|
+
city: string;
|
|
479
|
+
state: string;
|
|
480
|
+
pinCode?: string | undefined;
|
|
481
|
+
registrationNumber?: string | undefined;
|
|
482
|
+
}[] | undefined;
|
|
425
483
|
};
|
|
426
484
|
adminApproval: boolean;
|
|
485
|
+
address?: string | undefined;
|
|
427
486
|
createdAt?: Date | undefined;
|
|
428
487
|
updatedAt?: Date | undefined;
|
|
429
488
|
categoryId?: string | undefined;
|
|
430
|
-
address?: string | undefined;
|
|
431
489
|
workMode?: string | undefined;
|
|
432
490
|
compensation?: {
|
|
433
491
|
type: string;
|
|
@@ -457,13 +515,13 @@ export declare const OpportunitySchema: z.ZodObject<{
|
|
|
457
515
|
ratingCount: number;
|
|
458
516
|
reviewCount: number;
|
|
459
517
|
skills: string[];
|
|
518
|
+
city: string;
|
|
519
|
+
state: string;
|
|
460
520
|
title: string;
|
|
461
521
|
description: string;
|
|
462
522
|
slug: string;
|
|
463
523
|
opportunityType: string;
|
|
464
524
|
images: string[];
|
|
465
|
-
city: string;
|
|
466
|
-
state: string;
|
|
467
525
|
availableFrom: Date;
|
|
468
526
|
minDuration: number;
|
|
469
527
|
maxDuration: number;
|
|
@@ -525,12 +583,22 @@ export declare const OpportunitySchema: z.ZodObject<{
|
|
|
525
583
|
gstNumber?: string | undefined;
|
|
526
584
|
panCard?: string | undefined;
|
|
527
585
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
586
|
+
properties?: {
|
|
587
|
+
country: string;
|
|
588
|
+
type: string;
|
|
589
|
+
name: string;
|
|
590
|
+
address: string;
|
|
591
|
+
city: string;
|
|
592
|
+
state: string;
|
|
593
|
+
pinCode?: string | undefined;
|
|
594
|
+
registrationNumber?: string | undefined;
|
|
595
|
+
}[] | undefined;
|
|
528
596
|
};
|
|
529
597
|
adminApproval: boolean;
|
|
598
|
+
address?: string | undefined;
|
|
530
599
|
createdAt?: Date | undefined;
|
|
531
600
|
updatedAt?: Date | undefined;
|
|
532
601
|
categoryId?: string | undefined;
|
|
533
|
-
address?: string | undefined;
|
|
534
602
|
workMode?: string | undefined;
|
|
535
603
|
compensation?: {
|
|
536
604
|
type: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"opportunity.d.ts","sourceRoot":"","sources":["../../../../src/lib/models/opportunities/opportunity.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,WAAW,EAAkB,MAAM,UAAU,CAAC;AAGvD,eAAO,MAAM,YAAY,kCAAmD,CAAC;AAI7E,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;EAKzB,CAAC;AAEX,eAAO,MAAM,eAAe;;;;;;;;;EAIlB,CAAC;AACX,eAAO,MAAM,mBAAmB,kCAAkF,CAAC;AAEnH,eAAO,MAAM,YAAY,kCAA2E,CAAC;AAErG,eAAO,MAAM,qBAAqB,oFAQhC,CAAC;AAGH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;EAK1B,CAAC;AAEX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;EAMtB,CAAC;AAGX,MAAM,MAAM,eAAe,GAAG,OAAO,sBAAsB,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC;AAC7E,MAAM,MAAM,QAAQ,GAAG,OAAO,eAAe,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC;AAC/D,MAAM,MAAM,gBAAgB,GAAG,OAAO,uBAAuB,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC;AAC/E,MAAM,MAAM,YAAY,GAAG,OAAO,mBAAmB,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC;AAGvE,eAAO,MAAM,iCAAiC,GAAI,SAAS,eAAe,KAAG,gBAO5E,CAAC;AAEF,eAAO,MAAM,oBAAoB,kCAAmF,CAAC;AAErH,eAAO,MAAM,gBAAgB,kCAA+E,CAAC;AAE7G,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;EAK7B,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAG9D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;EAMzB,CAAC;AAEH,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEtD,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"opportunity.d.ts","sourceRoot":"","sources":["../../../../src/lib/models/opportunities/opportunity.ts"],"names":[],"mappings":"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"}
|
|
@@ -123,6 +123,34 @@ export declare const VolunteerOpportunitySchema: z.ZodObject<{
|
|
|
123
123
|
gstNumber: z.ZodOptional<z.ZodString>;
|
|
124
124
|
panCard: z.ZodOptional<z.ZodString>;
|
|
125
125
|
verifiedBusiness: z.ZodOptional<z.ZodEnum<["true", "false", "inProgress"]>>;
|
|
126
|
+
properties: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
127
|
+
name: z.ZodString;
|
|
128
|
+
type: z.ZodString;
|
|
129
|
+
address: z.ZodString;
|
|
130
|
+
city: z.ZodString;
|
|
131
|
+
state: z.ZodString;
|
|
132
|
+
country: z.ZodString;
|
|
133
|
+
pinCode: z.ZodOptional<z.ZodString>;
|
|
134
|
+
registrationNumber: z.ZodOptional<z.ZodString>;
|
|
135
|
+
}, "strip", z.ZodTypeAny, {
|
|
136
|
+
country: string;
|
|
137
|
+
type: string;
|
|
138
|
+
name: string;
|
|
139
|
+
address: string;
|
|
140
|
+
city: string;
|
|
141
|
+
state: string;
|
|
142
|
+
pinCode?: string | undefined;
|
|
143
|
+
registrationNumber?: string | undefined;
|
|
144
|
+
}, {
|
|
145
|
+
country: string;
|
|
146
|
+
type: string;
|
|
147
|
+
name: string;
|
|
148
|
+
address: string;
|
|
149
|
+
city: string;
|
|
150
|
+
state: string;
|
|
151
|
+
pinCode?: string | undefined;
|
|
152
|
+
registrationNumber?: string | undefined;
|
|
153
|
+
}>, "many">>;
|
|
126
154
|
}, "strict", z.ZodTypeAny, {
|
|
127
155
|
username: string;
|
|
128
156
|
firstName: string;
|
|
@@ -170,6 +198,16 @@ export declare const VolunteerOpportunitySchema: z.ZodObject<{
|
|
|
170
198
|
gstNumber?: string | undefined;
|
|
171
199
|
panCard?: string | undefined;
|
|
172
200
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
201
|
+
properties?: {
|
|
202
|
+
country: string;
|
|
203
|
+
type: string;
|
|
204
|
+
name: string;
|
|
205
|
+
address: string;
|
|
206
|
+
city: string;
|
|
207
|
+
state: string;
|
|
208
|
+
pinCode?: string | undefined;
|
|
209
|
+
registrationNumber?: string | undefined;
|
|
210
|
+
}[] | undefined;
|
|
173
211
|
}, {
|
|
174
212
|
username: string;
|
|
175
213
|
firstName: string;
|
|
@@ -217,6 +255,16 @@ export declare const VolunteerOpportunitySchema: z.ZodObject<{
|
|
|
217
255
|
gstNumber?: string | undefined;
|
|
218
256
|
panCard?: string | undefined;
|
|
219
257
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
258
|
+
properties?: {
|
|
259
|
+
country: string;
|
|
260
|
+
type: string;
|
|
261
|
+
name: string;
|
|
262
|
+
address: string;
|
|
263
|
+
city: string;
|
|
264
|
+
state: string;
|
|
265
|
+
pinCode?: string | undefined;
|
|
266
|
+
registrationNumber?: string | undefined;
|
|
267
|
+
}[] | undefined;
|
|
220
268
|
}>>;
|
|
221
269
|
applicationObservers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
222
270
|
username: z.ZodString;
|
|
@@ -250,13 +298,13 @@ export declare const VolunteerOpportunitySchema: z.ZodObject<{
|
|
|
250
298
|
ratingCount: number;
|
|
251
299
|
reviewCount: number;
|
|
252
300
|
skills: string[];
|
|
301
|
+
city: string;
|
|
302
|
+
state: string;
|
|
253
303
|
title: string;
|
|
254
304
|
description: string;
|
|
255
305
|
slug: string;
|
|
256
306
|
opportunityType: "volunteer";
|
|
257
307
|
images: string[];
|
|
258
|
-
city: string;
|
|
259
|
-
state: string;
|
|
260
308
|
availableFrom: Date;
|
|
261
309
|
minDuration: number;
|
|
262
310
|
maxDuration: number;
|
|
@@ -318,12 +366,22 @@ export declare const VolunteerOpportunitySchema: z.ZodObject<{
|
|
|
318
366
|
gstNumber?: string | undefined;
|
|
319
367
|
panCard?: string | undefined;
|
|
320
368
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
369
|
+
properties?: {
|
|
370
|
+
country: string;
|
|
371
|
+
type: string;
|
|
372
|
+
name: string;
|
|
373
|
+
address: string;
|
|
374
|
+
city: string;
|
|
375
|
+
state: string;
|
|
376
|
+
pinCode?: string | undefined;
|
|
377
|
+
registrationNumber?: string | undefined;
|
|
378
|
+
}[] | undefined;
|
|
321
379
|
};
|
|
322
380
|
adminApproval: boolean;
|
|
381
|
+
address?: string | undefined;
|
|
323
382
|
createdAt?: Date | undefined;
|
|
324
383
|
updatedAt?: Date | undefined;
|
|
325
384
|
categoryId?: string | undefined;
|
|
326
|
-
address?: string | undefined;
|
|
327
385
|
workMode?: string | undefined;
|
|
328
386
|
compensation?: {
|
|
329
387
|
type: string;
|
|
@@ -353,13 +411,13 @@ export declare const VolunteerOpportunitySchema: z.ZodObject<{
|
|
|
353
411
|
ratingCount: number;
|
|
354
412
|
reviewCount: number;
|
|
355
413
|
skills: string[];
|
|
414
|
+
city: string;
|
|
415
|
+
state: string;
|
|
356
416
|
title: string;
|
|
357
417
|
description: string;
|
|
358
418
|
slug: string;
|
|
359
419
|
opportunityType: "volunteer";
|
|
360
420
|
images: string[];
|
|
361
|
-
city: string;
|
|
362
|
-
state: string;
|
|
363
421
|
availableFrom: Date;
|
|
364
422
|
minDuration: number;
|
|
365
423
|
maxDuration: number;
|
|
@@ -421,12 +479,22 @@ export declare const VolunteerOpportunitySchema: z.ZodObject<{
|
|
|
421
479
|
gstNumber?: string | undefined;
|
|
422
480
|
panCard?: string | undefined;
|
|
423
481
|
verifiedBusiness?: "true" | "false" | "inProgress" | undefined;
|
|
482
|
+
properties?: {
|
|
483
|
+
country: string;
|
|
484
|
+
type: string;
|
|
485
|
+
name: string;
|
|
486
|
+
address: string;
|
|
487
|
+
city: string;
|
|
488
|
+
state: string;
|
|
489
|
+
pinCode?: string | undefined;
|
|
490
|
+
registrationNumber?: string | undefined;
|
|
491
|
+
}[] | undefined;
|
|
424
492
|
};
|
|
425
493
|
adminApproval: boolean;
|
|
494
|
+
address?: string | undefined;
|
|
426
495
|
createdAt?: Date | undefined;
|
|
427
496
|
updatedAt?: Date | undefined;
|
|
428
497
|
categoryId?: string | undefined;
|
|
429
|
-
address?: string | undefined;
|
|
430
498
|
workMode?: string | undefined;
|
|
431
499
|
compensation?: {
|
|
432
500
|
type: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"volunteerJob.d.ts","sourceRoot":"","sources":["../../../../src/lib/models/opportunities/volunteerJob.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,0BAA0B
|
|
1
|
+
{"version":3,"file":"volunteerJob.d.ts","sourceRoot":"","sources":["../../../../src/lib/models/opportunities/volunteerJob.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAErC,CAAC"}
|