@nyig/models 0.3.7 → 0.3.9
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/index.d.mts +6 -0
- package/index.d.ts +6 -0
- package/index.js +6 -0
- package/index.mjs +6 -0
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -654,6 +654,9 @@ declare enum CampOption {
|
|
|
654
654
|
declare const zBAttendance: z.ZodObject<{
|
|
655
655
|
student: z.ZodString;
|
|
656
656
|
states: z.ZodArray<z.ZodNativeEnum<typeof AttendState>, "many">;
|
|
657
|
+
/**
|
|
658
|
+
* @deprecated This field is no longer used
|
|
659
|
+
*/
|
|
657
660
|
tuition: z.ZodOptional<z.ZodObject<{
|
|
658
661
|
primary: z.ZodNumber;
|
|
659
662
|
textbook: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -996,6 +999,9 @@ declare const zBClassTracker: z.ZodObject<{
|
|
|
996
999
|
* Virtual mongoose field when all values in completedList is true
|
|
997
1000
|
*/
|
|
998
1001
|
completed: z.ZodOptional<z.ZodBoolean>;
|
|
1002
|
+
/**
|
|
1003
|
+
* @deprecated This field is no longer used
|
|
1004
|
+
*/
|
|
999
1005
|
tuition: z.ZodOptional<z.ZodObject<{
|
|
1000
1006
|
primary: z.ZodNumber;
|
|
1001
1007
|
textbook: z.ZodOptional<z.ZodBoolean>;
|
package/index.d.ts
CHANGED
|
@@ -654,6 +654,9 @@ declare enum CampOption {
|
|
|
654
654
|
declare const zBAttendance: z.ZodObject<{
|
|
655
655
|
student: z.ZodString;
|
|
656
656
|
states: z.ZodArray<z.ZodNativeEnum<typeof AttendState>, "many">;
|
|
657
|
+
/**
|
|
658
|
+
* @deprecated This field is no longer used
|
|
659
|
+
*/
|
|
657
660
|
tuition: z.ZodOptional<z.ZodObject<{
|
|
658
661
|
primary: z.ZodNumber;
|
|
659
662
|
textbook: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -996,6 +999,9 @@ declare const zBClassTracker: z.ZodObject<{
|
|
|
996
999
|
* Virtual mongoose field when all values in completedList is true
|
|
997
1000
|
*/
|
|
998
1001
|
completed: z.ZodOptional<z.ZodBoolean>;
|
|
1002
|
+
/**
|
|
1003
|
+
* @deprecated This field is no longer used
|
|
1004
|
+
*/
|
|
999
1005
|
tuition: z.ZodOptional<z.ZodObject<{
|
|
1000
1006
|
primary: z.ZodNumber;
|
|
1001
1007
|
textbook: z.ZodOptional<z.ZodBoolean>;
|
package/index.js
CHANGED
|
@@ -334,6 +334,9 @@ var zLoginResponse = import_zod9.z.object({
|
|
|
334
334
|
var zBAttendance = import_zod10.z.object({
|
|
335
335
|
student: import_zod10.z.string(),
|
|
336
336
|
states: import_zod10.z.array(import_zod10.z.nativeEnum(AttendState)),
|
|
337
|
+
/**
|
|
338
|
+
* @deprecated This field is no longer used
|
|
339
|
+
*/
|
|
337
340
|
tuition: zTuition.optional(),
|
|
338
341
|
paid: import_zod10.z.boolean().optional(),
|
|
339
342
|
campOption: import_zod10.z.nativeEnum(CampOption).optional()
|
|
@@ -443,6 +446,9 @@ var zBClassTracker = import_zod14.z.object({
|
|
|
443
446
|
* Virtual mongoose field when all values in completedList is true
|
|
444
447
|
*/
|
|
445
448
|
completed: import_zod14.z.boolean().optional(),
|
|
449
|
+
/**
|
|
450
|
+
* @deprecated This field is no longer used
|
|
451
|
+
*/
|
|
446
452
|
tuition: zTuition.optional(),
|
|
447
453
|
paid: import_zod14.z.boolean().optional(),
|
|
448
454
|
paused: import_zod14.z.boolean().optional(),
|
package/index.mjs
CHANGED
|
@@ -235,6 +235,9 @@ var zLoginResponse = z9.object({
|
|
|
235
235
|
var zBAttendance = z10.object({
|
|
236
236
|
student: z10.string(),
|
|
237
237
|
states: z10.array(z10.nativeEnum(AttendState)),
|
|
238
|
+
/**
|
|
239
|
+
* @deprecated This field is no longer used
|
|
240
|
+
*/
|
|
238
241
|
tuition: zTuition.optional(),
|
|
239
242
|
paid: z10.boolean().optional(),
|
|
240
243
|
campOption: z10.nativeEnum(CampOption).optional()
|
|
@@ -344,6 +347,9 @@ var zBClassTracker = z14.object({
|
|
|
344
347
|
* Virtual mongoose field when all values in completedList is true
|
|
345
348
|
*/
|
|
346
349
|
completed: z14.boolean().optional(),
|
|
350
|
+
/**
|
|
351
|
+
* @deprecated This field is no longer used
|
|
352
|
+
*/
|
|
347
353
|
tuition: zTuition.optional(),
|
|
348
354
|
paid: z14.boolean().optional(),
|
|
349
355
|
paused: z14.boolean().optional(),
|