vr-commons 1.0.112 → 1.0.113
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/utils/profiles.utils.d.ts +1 -2
- package/dist/utils/profiles.utils.js +3 -4
- package/dist/validations/admin.devicePayment.validations.d.ts +50 -50
- package/dist/validations/admin.devices.validations.d.ts +28 -28
- package/dist/validations/appSpecs.validations.d.ts +18 -18
- package/dist/validations/appeals.validations.d.ts +8 -8
- package/dist/validations/auth.validations.d.ts +12 -12
- package/dist/validations/bans.validations.d.ts +8 -8
- package/dist/validations/devicePaymentPlan.validations.d.ts +16 -16
- package/dist/validations/eventlogs.admin.validations.d.ts +14 -14
- package/dist/validations/moderation.validations.d.ts +114 -114
- package/dist/validations/payinstallment.validations.d.ts +5 -5
- package/dist/validations/pricing.validations.d.ts +30 -30
- package/dist/validations/pricings.validations.d.ts +30 -30
- package/dist/validations/product.validations.d.ts +28 -28
- package/dist/validations/profiles.validations.d.ts +62 -62
- package/dist/validations/suspensions.validations.d.ts +8 -8
- package/dist/validations/users.admin.validations.d.ts +60 -60
- package/package.json +2 -2
|
@@ -49,9 +49,6 @@ export declare const upgradeToRiderSchema: z.ZodObject<{
|
|
|
49
49
|
plateNumber?: string | undefined;
|
|
50
50
|
}>;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
|
-
params: {
|
|
53
|
-
userId: string;
|
|
54
|
-
};
|
|
55
52
|
body: {
|
|
56
53
|
jacketId: string;
|
|
57
54
|
gender: "male" | "female";
|
|
@@ -61,10 +58,10 @@ export declare const upgradeToRiderSchema: z.ZodObject<{
|
|
|
61
58
|
phoneNumber: string;
|
|
62
59
|
plateNumber?: string | undefined;
|
|
63
60
|
};
|
|
64
|
-
}, {
|
|
65
61
|
params: {
|
|
66
62
|
userId: string;
|
|
67
63
|
};
|
|
64
|
+
}, {
|
|
68
65
|
body: {
|
|
69
66
|
jacketId: string;
|
|
70
67
|
gender: "male" | "female";
|
|
@@ -74,6 +71,9 @@ export declare const upgradeToRiderSchema: z.ZodObject<{
|
|
|
74
71
|
phoneNumber: string;
|
|
75
72
|
plateNumber?: string | undefined;
|
|
76
73
|
};
|
|
74
|
+
params: {
|
|
75
|
+
userId: string;
|
|
76
|
+
};
|
|
77
77
|
}>;
|
|
78
78
|
export declare const updateRiderSchema: z.ZodObject<{
|
|
79
79
|
params: z.ZodObject<{
|
|
@@ -98,79 +98,79 @@ export declare const updateRiderSchema: z.ZodObject<{
|
|
|
98
98
|
firstName?: string | undefined;
|
|
99
99
|
lastName?: string | undefined;
|
|
100
100
|
jacketId?: string | undefined;
|
|
101
|
-
email?: string | undefined;
|
|
102
101
|
plateNumber?: string | undefined;
|
|
103
102
|
gender?: "male" | "female" | undefined;
|
|
104
103
|
birthDate?: number | undefined;
|
|
105
104
|
birthMonth?: number | undefined;
|
|
106
105
|
birthYear?: number | undefined;
|
|
106
|
+
email?: string | undefined;
|
|
107
107
|
phoneNumber?: string | undefined;
|
|
108
108
|
}, {
|
|
109
109
|
firstName?: string | undefined;
|
|
110
110
|
lastName?: string | undefined;
|
|
111
111
|
jacketId?: string | undefined;
|
|
112
|
-
email?: string | undefined;
|
|
113
112
|
plateNumber?: string | undefined;
|
|
114
113
|
gender?: "male" | "female" | undefined;
|
|
115
114
|
birthDate?: number | undefined;
|
|
116
115
|
birthMonth?: number | undefined;
|
|
117
116
|
birthYear?: number | undefined;
|
|
117
|
+
email?: string | undefined;
|
|
118
118
|
phoneNumber?: string | undefined;
|
|
119
119
|
}>, {
|
|
120
120
|
firstName?: string | undefined;
|
|
121
121
|
lastName?: string | undefined;
|
|
122
122
|
jacketId?: string | undefined;
|
|
123
|
-
email?: string | undefined;
|
|
124
123
|
plateNumber?: string | undefined;
|
|
125
124
|
gender?: "male" | "female" | undefined;
|
|
126
125
|
birthDate?: number | undefined;
|
|
127
126
|
birthMonth?: number | undefined;
|
|
128
127
|
birthYear?: number | undefined;
|
|
128
|
+
email?: string | undefined;
|
|
129
129
|
phoneNumber?: string | undefined;
|
|
130
130
|
}, {
|
|
131
131
|
firstName?: string | undefined;
|
|
132
132
|
lastName?: string | undefined;
|
|
133
133
|
jacketId?: string | undefined;
|
|
134
|
-
email?: string | undefined;
|
|
135
134
|
plateNumber?: string | undefined;
|
|
136
135
|
gender?: "male" | "female" | undefined;
|
|
137
136
|
birthDate?: number | undefined;
|
|
138
137
|
birthMonth?: number | undefined;
|
|
139
138
|
birthYear?: number | undefined;
|
|
139
|
+
email?: string | undefined;
|
|
140
140
|
phoneNumber?: string | undefined;
|
|
141
141
|
}>;
|
|
142
142
|
}, "strip", z.ZodTypeAny, {
|
|
143
|
-
params: {
|
|
144
|
-
userId: string;
|
|
145
|
-
};
|
|
146
143
|
body: {
|
|
147
144
|
firstName?: string | undefined;
|
|
148
145
|
lastName?: string | undefined;
|
|
149
146
|
jacketId?: string | undefined;
|
|
150
|
-
email?: string | undefined;
|
|
151
147
|
plateNumber?: string | undefined;
|
|
152
148
|
gender?: "male" | "female" | undefined;
|
|
153
149
|
birthDate?: number | undefined;
|
|
154
150
|
birthMonth?: number | undefined;
|
|
155
151
|
birthYear?: number | undefined;
|
|
152
|
+
email?: string | undefined;
|
|
156
153
|
phoneNumber?: string | undefined;
|
|
157
154
|
};
|
|
158
|
-
}, {
|
|
159
155
|
params: {
|
|
160
156
|
userId: string;
|
|
161
157
|
};
|
|
158
|
+
}, {
|
|
162
159
|
body: {
|
|
163
160
|
firstName?: string | undefined;
|
|
164
161
|
lastName?: string | undefined;
|
|
165
162
|
jacketId?: string | undefined;
|
|
166
|
-
email?: string | undefined;
|
|
167
163
|
plateNumber?: string | undefined;
|
|
168
164
|
gender?: "male" | "female" | undefined;
|
|
169
165
|
birthDate?: number | undefined;
|
|
170
166
|
birthMonth?: number | undefined;
|
|
171
167
|
birthYear?: number | undefined;
|
|
168
|
+
email?: string | undefined;
|
|
172
169
|
phoneNumber?: string | undefined;
|
|
173
170
|
};
|
|
171
|
+
params: {
|
|
172
|
+
userId: string;
|
|
173
|
+
};
|
|
174
174
|
}>;
|
|
175
175
|
export declare const deleteUserSchema: z.ZodObject<{
|
|
176
176
|
params: z.ZodObject<{
|
|
@@ -218,49 +218,49 @@ export declare const getUsersSchema: z.ZodObject<{
|
|
|
218
218
|
sortBy: z.ZodOptional<z.ZodEnum<["createdAt", "firstName", "lastName", "gender"]>>;
|
|
219
219
|
sortOrder: z.ZodOptional<z.ZodEnum<["ASC", "DESC"]>>;
|
|
220
220
|
}, "strip", z.ZodTypeAny, {
|
|
221
|
-
page?: number | undefined;
|
|
222
|
-
limit?: number | undefined;
|
|
223
221
|
search?: string | undefined;
|
|
224
|
-
|
|
225
|
-
sortOrder?: "ASC" | "DESC" | undefined;
|
|
222
|
+
limit?: number | undefined;
|
|
226
223
|
gender?: "male" | "female" | undefined;
|
|
227
224
|
isActive?: "true" | "false" | undefined;
|
|
228
225
|
isDeactivated?: "true" | "false" | undefined;
|
|
229
226
|
role?: string | undefined;
|
|
227
|
+
page?: number | undefined;
|
|
228
|
+
sortBy?: "firstName" | "lastName" | "gender" | "createdAt" | undefined;
|
|
229
|
+
sortOrder?: "DESC" | "ASC" | undefined;
|
|
230
230
|
}, {
|
|
231
|
-
page?: string | undefined;
|
|
232
|
-
limit?: string | undefined;
|
|
233
231
|
search?: string | undefined;
|
|
234
|
-
|
|
235
|
-
sortOrder?: "ASC" | "DESC" | undefined;
|
|
232
|
+
limit?: string | undefined;
|
|
236
233
|
gender?: "male" | "female" | undefined;
|
|
237
234
|
isActive?: "true" | "false" | undefined;
|
|
238
235
|
isDeactivated?: "true" | "false" | undefined;
|
|
239
236
|
role?: string | undefined;
|
|
237
|
+
page?: string | undefined;
|
|
238
|
+
sortBy?: "firstName" | "lastName" | "gender" | "createdAt" | undefined;
|
|
239
|
+
sortOrder?: "DESC" | "ASC" | undefined;
|
|
240
240
|
}>;
|
|
241
241
|
}, "strip", z.ZodTypeAny, {
|
|
242
242
|
query: {
|
|
243
|
-
page?: number | undefined;
|
|
244
|
-
limit?: number | undefined;
|
|
245
243
|
search?: string | undefined;
|
|
246
|
-
|
|
247
|
-
sortOrder?: "ASC" | "DESC" | undefined;
|
|
244
|
+
limit?: number | undefined;
|
|
248
245
|
gender?: "male" | "female" | undefined;
|
|
249
246
|
isActive?: "true" | "false" | undefined;
|
|
250
247
|
isDeactivated?: "true" | "false" | undefined;
|
|
251
248
|
role?: string | undefined;
|
|
249
|
+
page?: number | undefined;
|
|
250
|
+
sortBy?: "firstName" | "lastName" | "gender" | "createdAt" | undefined;
|
|
251
|
+
sortOrder?: "DESC" | "ASC" | undefined;
|
|
252
252
|
};
|
|
253
253
|
}, {
|
|
254
254
|
query: {
|
|
255
|
-
page?: string | undefined;
|
|
256
|
-
limit?: string | undefined;
|
|
257
255
|
search?: string | undefined;
|
|
258
|
-
|
|
259
|
-
sortOrder?: "ASC" | "DESC" | undefined;
|
|
256
|
+
limit?: string | undefined;
|
|
260
257
|
gender?: "male" | "female" | undefined;
|
|
261
258
|
isActive?: "true" | "false" | undefined;
|
|
262
259
|
isDeactivated?: "true" | "false" | undefined;
|
|
263
260
|
role?: string | undefined;
|
|
261
|
+
page?: string | undefined;
|
|
262
|
+
sortBy?: "firstName" | "lastName" | "gender" | "createdAt" | undefined;
|
|
263
|
+
sortOrder?: "DESC" | "ASC" | undefined;
|
|
264
264
|
};
|
|
265
265
|
}>;
|
|
266
266
|
export declare const hireAdminSchema: z.ZodObject<{
|
|
@@ -279,73 +279,73 @@ export declare const hireAdminSchema: z.ZodObject<{
|
|
|
279
279
|
}, "strip", z.ZodTypeAny, {
|
|
280
280
|
firstName: string;
|
|
281
281
|
lastName: string;
|
|
282
|
-
email: string;
|
|
283
282
|
password: string;
|
|
284
283
|
gender: "male" | "female";
|
|
285
284
|
birthDate: number;
|
|
286
285
|
birthMonth: number;
|
|
287
286
|
birthYear: number;
|
|
288
287
|
role: "ADMIN" | "AGENT" | "SUPER_ADMIN";
|
|
288
|
+
email: string;
|
|
289
289
|
phoneNumber: string;
|
|
290
290
|
superAdminPassword?: string | undefined;
|
|
291
291
|
}, {
|
|
292
292
|
firstName: string;
|
|
293
293
|
lastName: string;
|
|
294
|
-
email: string;
|
|
295
294
|
password: string;
|
|
296
295
|
gender: "male" | "female";
|
|
297
296
|
birthDate: number;
|
|
298
297
|
birthMonth: number;
|
|
299
298
|
birthYear: number;
|
|
300
299
|
role: "ADMIN" | "AGENT" | "SUPER_ADMIN";
|
|
300
|
+
email: string;
|
|
301
301
|
phoneNumber: string;
|
|
302
302
|
superAdminPassword?: string | undefined;
|
|
303
303
|
}>, {
|
|
304
304
|
firstName: string;
|
|
305
305
|
lastName: string;
|
|
306
|
-
email: string;
|
|
307
306
|
password: string;
|
|
308
307
|
gender: "male" | "female";
|
|
309
308
|
birthDate: number;
|
|
310
309
|
birthMonth: number;
|
|
311
310
|
birthYear: number;
|
|
312
311
|
role: "ADMIN" | "AGENT" | "SUPER_ADMIN";
|
|
312
|
+
email: string;
|
|
313
313
|
phoneNumber: string;
|
|
314
314
|
superAdminPassword?: string | undefined;
|
|
315
315
|
}, {
|
|
316
316
|
firstName: string;
|
|
317
317
|
lastName: string;
|
|
318
|
-
email: string;
|
|
319
318
|
password: string;
|
|
320
319
|
gender: "male" | "female";
|
|
321
320
|
birthDate: number;
|
|
322
321
|
birthMonth: number;
|
|
323
322
|
birthYear: number;
|
|
324
323
|
role: "ADMIN" | "AGENT" | "SUPER_ADMIN";
|
|
324
|
+
email: string;
|
|
325
325
|
phoneNumber: string;
|
|
326
326
|
superAdminPassword?: string | undefined;
|
|
327
327
|
}>, {
|
|
328
328
|
firstName: string;
|
|
329
329
|
lastName: string;
|
|
330
|
-
email: string;
|
|
331
330
|
password: string;
|
|
332
331
|
gender: "male" | "female";
|
|
333
332
|
birthDate: number;
|
|
334
333
|
birthMonth: number;
|
|
335
334
|
birthYear: number;
|
|
336
335
|
role: "ADMIN" | "AGENT" | "SUPER_ADMIN";
|
|
336
|
+
email: string;
|
|
337
337
|
phoneNumber: string;
|
|
338
338
|
superAdminPassword?: string | undefined;
|
|
339
339
|
}, {
|
|
340
340
|
firstName: string;
|
|
341
341
|
lastName: string;
|
|
342
|
-
email: string;
|
|
343
342
|
password: string;
|
|
344
343
|
gender: "male" | "female";
|
|
345
344
|
birthDate: number;
|
|
346
345
|
birthMonth: number;
|
|
347
346
|
birthYear: number;
|
|
348
347
|
role: "ADMIN" | "AGENT" | "SUPER_ADMIN";
|
|
348
|
+
email: string;
|
|
349
349
|
phoneNumber: string;
|
|
350
350
|
superAdminPassword?: string | undefined;
|
|
351
351
|
}>;
|
|
@@ -353,13 +353,13 @@ export declare const hireAdminSchema: z.ZodObject<{
|
|
|
353
353
|
body: {
|
|
354
354
|
firstName: string;
|
|
355
355
|
lastName: string;
|
|
356
|
-
email: string;
|
|
357
356
|
password: string;
|
|
358
357
|
gender: "male" | "female";
|
|
359
358
|
birthDate: number;
|
|
360
359
|
birthMonth: number;
|
|
361
360
|
birthYear: number;
|
|
362
361
|
role: "ADMIN" | "AGENT" | "SUPER_ADMIN";
|
|
362
|
+
email: string;
|
|
363
363
|
phoneNumber: string;
|
|
364
364
|
superAdminPassword?: string | undefined;
|
|
365
365
|
};
|
|
@@ -367,13 +367,13 @@ export declare const hireAdminSchema: z.ZodObject<{
|
|
|
367
367
|
body: {
|
|
368
368
|
firstName: string;
|
|
369
369
|
lastName: string;
|
|
370
|
-
email: string;
|
|
371
370
|
password: string;
|
|
372
371
|
gender: "male" | "female";
|
|
373
372
|
birthDate: number;
|
|
374
373
|
birthMonth: number;
|
|
375
374
|
birthYear: number;
|
|
376
375
|
role: "ADMIN" | "AGENT" | "SUPER_ADMIN";
|
|
376
|
+
email: string;
|
|
377
377
|
phoneNumber: string;
|
|
378
378
|
superAdminPassword?: string | undefined;
|
|
379
379
|
};
|
|
@@ -397,21 +397,21 @@ export declare const promoteAdminSchema: z.ZodObject<{
|
|
|
397
397
|
password?: string | undefined;
|
|
398
398
|
}>;
|
|
399
399
|
}, "strip", z.ZodTypeAny, {
|
|
400
|
-
params: {
|
|
401
|
-
userId: string;
|
|
402
|
-
};
|
|
403
400
|
body: {
|
|
404
401
|
targetRole: "ADMIN" | "SUPER_ADMIN";
|
|
405
402
|
password?: string | undefined;
|
|
406
403
|
};
|
|
407
|
-
}, {
|
|
408
404
|
params: {
|
|
409
405
|
userId: string;
|
|
410
406
|
};
|
|
407
|
+
}, {
|
|
411
408
|
body: {
|
|
412
409
|
targetRole: "ADMIN" | "SUPER_ADMIN";
|
|
413
410
|
password?: string | undefined;
|
|
414
411
|
};
|
|
412
|
+
params: {
|
|
413
|
+
userId: string;
|
|
414
|
+
};
|
|
415
415
|
}>;
|
|
416
416
|
export declare const demoteAdminSchema: z.ZodObject<{
|
|
417
417
|
params: z.ZodObject<{
|
|
@@ -429,19 +429,19 @@ export declare const demoteAdminSchema: z.ZodObject<{
|
|
|
429
429
|
targetRole: "ADMIN" | "AGENT";
|
|
430
430
|
}>;
|
|
431
431
|
}, "strip", z.ZodTypeAny, {
|
|
432
|
-
params: {
|
|
433
|
-
userId: string;
|
|
434
|
-
};
|
|
435
432
|
body: {
|
|
436
433
|
targetRole: "ADMIN" | "AGENT";
|
|
437
434
|
};
|
|
438
|
-
}, {
|
|
439
435
|
params: {
|
|
440
436
|
userId: string;
|
|
441
437
|
};
|
|
438
|
+
}, {
|
|
442
439
|
body: {
|
|
443
440
|
targetRole: "ADMIN" | "AGENT";
|
|
444
441
|
};
|
|
442
|
+
params: {
|
|
443
|
+
userId: string;
|
|
444
|
+
};
|
|
445
445
|
}>;
|
|
446
446
|
export declare const fireEmployeeSchema: z.ZodObject<{
|
|
447
447
|
params: z.ZodObject<{
|
|
@@ -459,19 +459,19 @@ export declare const fireEmployeeSchema: z.ZodObject<{
|
|
|
459
459
|
reason?: string | undefined;
|
|
460
460
|
}>;
|
|
461
461
|
}, "strip", z.ZodTypeAny, {
|
|
462
|
-
params: {
|
|
463
|
-
userId: string;
|
|
464
|
-
};
|
|
465
462
|
body: {
|
|
466
463
|
reason?: string | undefined;
|
|
467
464
|
};
|
|
468
|
-
}, {
|
|
469
465
|
params: {
|
|
470
466
|
userId: string;
|
|
471
467
|
};
|
|
468
|
+
}, {
|
|
472
469
|
body: {
|
|
473
470
|
reason?: string | undefined;
|
|
474
471
|
};
|
|
472
|
+
params: {
|
|
473
|
+
userId: string;
|
|
474
|
+
};
|
|
475
475
|
}>;
|
|
476
476
|
export declare const updateAdminSchema: z.ZodObject<{
|
|
477
477
|
params: z.ZodObject<{
|
|
@@ -492,61 +492,61 @@ export declare const updateAdminSchema: z.ZodObject<{
|
|
|
492
492
|
}, "strip", z.ZodTypeAny, {
|
|
493
493
|
firstName?: string | undefined;
|
|
494
494
|
lastName?: string | undefined;
|
|
495
|
-
email?: string | undefined;
|
|
496
495
|
gender?: "male" | "female" | undefined;
|
|
497
496
|
birthDate?: number | undefined;
|
|
498
497
|
birthMonth?: number | undefined;
|
|
499
498
|
birthYear?: number | undefined;
|
|
499
|
+
email?: string | undefined;
|
|
500
500
|
}, {
|
|
501
501
|
firstName?: string | undefined;
|
|
502
502
|
lastName?: string | undefined;
|
|
503
|
-
email?: string | undefined;
|
|
504
503
|
gender?: "male" | "female" | undefined;
|
|
505
504
|
birthDate?: number | undefined;
|
|
506
505
|
birthMonth?: number | undefined;
|
|
507
506
|
birthYear?: number | undefined;
|
|
507
|
+
email?: string | undefined;
|
|
508
508
|
}>, {
|
|
509
509
|
firstName?: string | undefined;
|
|
510
510
|
lastName?: string | undefined;
|
|
511
|
-
email?: string | undefined;
|
|
512
511
|
gender?: "male" | "female" | undefined;
|
|
513
512
|
birthDate?: number | undefined;
|
|
514
513
|
birthMonth?: number | undefined;
|
|
515
514
|
birthYear?: number | undefined;
|
|
515
|
+
email?: string | undefined;
|
|
516
516
|
}, {
|
|
517
517
|
firstName?: string | undefined;
|
|
518
518
|
lastName?: string | undefined;
|
|
519
|
-
email?: string | undefined;
|
|
520
519
|
gender?: "male" | "female" | undefined;
|
|
521
520
|
birthDate?: number | undefined;
|
|
522
521
|
birthMonth?: number | undefined;
|
|
523
522
|
birthYear?: number | undefined;
|
|
523
|
+
email?: string | undefined;
|
|
524
524
|
}>;
|
|
525
525
|
}, "strip", z.ZodTypeAny, {
|
|
526
|
-
params: {
|
|
527
|
-
userId: string;
|
|
528
|
-
};
|
|
529
526
|
body: {
|
|
530
527
|
firstName?: string | undefined;
|
|
531
528
|
lastName?: string | undefined;
|
|
532
|
-
email?: string | undefined;
|
|
533
529
|
gender?: "male" | "female" | undefined;
|
|
534
530
|
birthDate?: number | undefined;
|
|
535
531
|
birthMonth?: number | undefined;
|
|
536
532
|
birthYear?: number | undefined;
|
|
533
|
+
email?: string | undefined;
|
|
537
534
|
};
|
|
538
|
-
}, {
|
|
539
535
|
params: {
|
|
540
536
|
userId: string;
|
|
541
537
|
};
|
|
538
|
+
}, {
|
|
542
539
|
body: {
|
|
543
540
|
firstName?: string | undefined;
|
|
544
541
|
lastName?: string | undefined;
|
|
545
|
-
email?: string | undefined;
|
|
546
542
|
gender?: "male" | "female" | undefined;
|
|
547
543
|
birthDate?: number | undefined;
|
|
548
544
|
birthMonth?: number | undefined;
|
|
549
545
|
birthYear?: number | undefined;
|
|
546
|
+
email?: string | undefined;
|
|
547
|
+
};
|
|
548
|
+
params: {
|
|
549
|
+
userId: string;
|
|
550
550
|
};
|
|
551
551
|
}>;
|
|
552
552
|
export declare const resetPasswordSchema: z.ZodObject<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vr-commons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.113",
|
|
4
4
|
"description": "Shared functions package",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"rimraf": "^5.0.5",
|
|
104
104
|
"streamifier": "^0.1.1",
|
|
105
105
|
"typescript": "^5.3.3",
|
|
106
|
-
"vr-models": "^1.0.
|
|
106
|
+
"vr-models": "^1.0.58",
|
|
107
107
|
"zod": "^3.25.20"
|
|
108
108
|
},
|
|
109
109
|
"dependencies": {
|