@nyig/models 0.2.29 → 0.2.30

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 CHANGED
@@ -180,6 +180,7 @@ declare const zBCampTracker: z.ZodObject<{
180
180
  * attendances are tracked by week for camps
181
181
  */
182
182
  attendances: z.ZodArray<z.ZodString, "many">;
183
+ isNonPublic: z.ZodOptional<z.ZodBoolean>;
183
184
  notes: z.ZodOptional<z.ZodString>;
184
185
  }, "strip", z.ZodTypeAny, {
185
186
  course: string;
@@ -187,6 +188,7 @@ declare const zBCampTracker: z.ZodObject<{
187
188
  semester: string;
188
189
  occurrences: string[];
189
190
  attendances: string[];
191
+ isNonPublic?: boolean | undefined;
190
192
  notes?: string | undefined;
191
193
  }, {
192
194
  course: string;
@@ -194,6 +196,7 @@ declare const zBCampTracker: z.ZodObject<{
194
196
  semester: string;
195
197
  occurrences: string[];
196
198
  attendances: string[];
199
+ isNonPublic?: boolean | undefined;
197
200
  notes?: string | undefined;
198
201
  }>;
199
202
  declare const zCampTracker: z.ZodObject<{
@@ -203,6 +206,7 @@ declare const zCampTracker: z.ZodObject<{
203
206
  semester: z.ZodString;
204
207
  occurrences: z.ZodArray<z.ZodString, "many">;
205
208
  attendances: z.ZodArray<z.ZodString, "many">;
209
+ isNonPublic: z.ZodOptional<z.ZodBoolean>;
206
210
  _id: z.ZodString;
207
211
  editedBy: z.ZodString;
208
212
  createdAt: z.ZodOptional<z.ZodDate>;
@@ -216,6 +220,7 @@ declare const zCampTracker: z.ZodObject<{
216
220
  occurrences: string[];
217
221
  attendances: string[];
218
222
  notes?: string | undefined;
223
+ isNonPublic?: boolean | undefined;
219
224
  createdAt?: Date | undefined;
220
225
  updatedAt?: Date | undefined;
221
226
  }, {
@@ -227,6 +232,7 @@ declare const zCampTracker: z.ZodObject<{
227
232
  occurrences: string[];
228
233
  attendances: string[];
229
234
  notes?: string | undefined;
235
+ isNonPublic?: boolean | undefined;
230
236
  createdAt?: Date | undefined;
231
237
  updatedAt?: Date | undefined;
232
238
  }>;
@@ -543,6 +549,7 @@ declare const zGroupTracker: z.ZodObject<{
543
549
  semester: z.ZodString;
544
550
  occurrences: z.ZodArray<z.ZodDate, "many">;
545
551
  attendances: z.ZodArray<z.ZodString, "many">;
552
+ isNonPublic: z.ZodOptional<z.ZodBoolean>;
546
553
  scheduleData: z.ZodObject<{
547
554
  startTime: z.ZodString;
548
555
  dayOfWeek: z.ZodNumber;
@@ -555,7 +562,6 @@ declare const zGroupTracker: z.ZodObject<{
555
562
  }>;
556
563
  courseId: z.ZodOptional<z.ZodString>;
557
564
  ageGroup: z.ZodOptional<z.ZodNativeEnum<typeof AgeGroup>>;
558
- isNonPublic: z.ZodOptional<z.ZodBoolean>;
559
565
  _id: z.ZodString;
560
566
  editedBy: z.ZodString;
561
567
  createdAt: z.ZodOptional<z.ZodDate>;
@@ -573,9 +579,9 @@ declare const zGroupTracker: z.ZodObject<{
573
579
  dayOfWeek: number;
574
580
  };
575
581
  notes?: string | undefined;
582
+ isNonPublic?: boolean | undefined;
576
583
  courseId?: string | undefined;
577
584
  ageGroup?: AgeGroup | undefined;
578
- isNonPublic?: boolean | undefined;
579
585
  createdAt?: Date | undefined;
580
586
  updatedAt?: Date | undefined;
581
587
  }, {
@@ -591,9 +597,9 @@ declare const zGroupTracker: z.ZodObject<{
591
597
  dayOfWeek: number;
592
598
  };
593
599
  notes?: string | undefined;
600
+ isNonPublic?: boolean | undefined;
594
601
  courseId?: string | undefined;
595
602
  ageGroup?: AgeGroup | undefined;
596
- isNonPublic?: boolean | undefined;
597
603
  createdAt?: Date | undefined;
598
604
  updatedAt?: Date | undefined;
599
605
  }>;
package/index.d.ts CHANGED
@@ -180,6 +180,7 @@ declare const zBCampTracker: z.ZodObject<{
180
180
  * attendances are tracked by week for camps
181
181
  */
182
182
  attendances: z.ZodArray<z.ZodString, "many">;
183
+ isNonPublic: z.ZodOptional<z.ZodBoolean>;
183
184
  notes: z.ZodOptional<z.ZodString>;
184
185
  }, "strip", z.ZodTypeAny, {
185
186
  course: string;
@@ -187,6 +188,7 @@ declare const zBCampTracker: z.ZodObject<{
187
188
  semester: string;
188
189
  occurrences: string[];
189
190
  attendances: string[];
191
+ isNonPublic?: boolean | undefined;
190
192
  notes?: string | undefined;
191
193
  }, {
192
194
  course: string;
@@ -194,6 +196,7 @@ declare const zBCampTracker: z.ZodObject<{
194
196
  semester: string;
195
197
  occurrences: string[];
196
198
  attendances: string[];
199
+ isNonPublic?: boolean | undefined;
197
200
  notes?: string | undefined;
198
201
  }>;
199
202
  declare const zCampTracker: z.ZodObject<{
@@ -203,6 +206,7 @@ declare const zCampTracker: z.ZodObject<{
203
206
  semester: z.ZodString;
204
207
  occurrences: z.ZodArray<z.ZodString, "many">;
205
208
  attendances: z.ZodArray<z.ZodString, "many">;
209
+ isNonPublic: z.ZodOptional<z.ZodBoolean>;
206
210
  _id: z.ZodString;
207
211
  editedBy: z.ZodString;
208
212
  createdAt: z.ZodOptional<z.ZodDate>;
@@ -216,6 +220,7 @@ declare const zCampTracker: z.ZodObject<{
216
220
  occurrences: string[];
217
221
  attendances: string[];
218
222
  notes?: string | undefined;
223
+ isNonPublic?: boolean | undefined;
219
224
  createdAt?: Date | undefined;
220
225
  updatedAt?: Date | undefined;
221
226
  }, {
@@ -227,6 +232,7 @@ declare const zCampTracker: z.ZodObject<{
227
232
  occurrences: string[];
228
233
  attendances: string[];
229
234
  notes?: string | undefined;
235
+ isNonPublic?: boolean | undefined;
230
236
  createdAt?: Date | undefined;
231
237
  updatedAt?: Date | undefined;
232
238
  }>;
@@ -543,6 +549,7 @@ declare const zGroupTracker: z.ZodObject<{
543
549
  semester: z.ZodString;
544
550
  occurrences: z.ZodArray<z.ZodDate, "many">;
545
551
  attendances: z.ZodArray<z.ZodString, "many">;
552
+ isNonPublic: z.ZodOptional<z.ZodBoolean>;
546
553
  scheduleData: z.ZodObject<{
547
554
  startTime: z.ZodString;
548
555
  dayOfWeek: z.ZodNumber;
@@ -555,7 +562,6 @@ declare const zGroupTracker: z.ZodObject<{
555
562
  }>;
556
563
  courseId: z.ZodOptional<z.ZodString>;
557
564
  ageGroup: z.ZodOptional<z.ZodNativeEnum<typeof AgeGroup>>;
558
- isNonPublic: z.ZodOptional<z.ZodBoolean>;
559
565
  _id: z.ZodString;
560
566
  editedBy: z.ZodString;
561
567
  createdAt: z.ZodOptional<z.ZodDate>;
@@ -573,9 +579,9 @@ declare const zGroupTracker: z.ZodObject<{
573
579
  dayOfWeek: number;
574
580
  };
575
581
  notes?: string | undefined;
582
+ isNonPublic?: boolean | undefined;
576
583
  courseId?: string | undefined;
577
584
  ageGroup?: AgeGroup | undefined;
578
- isNonPublic?: boolean | undefined;
579
585
  createdAt?: Date | undefined;
580
586
  updatedAt?: Date | undefined;
581
587
  }, {
@@ -591,9 +597,9 @@ declare const zGroupTracker: z.ZodObject<{
591
597
  dayOfWeek: number;
592
598
  };
593
599
  notes?: string | undefined;
600
+ isNonPublic?: boolean | undefined;
594
601
  courseId?: string | undefined;
595
602
  ageGroup?: AgeGroup | undefined;
596
- isNonPublic?: boolean | undefined;
597
603
  createdAt?: Date | undefined;
598
604
  updatedAt?: Date | undefined;
599
605
  }>;
package/index.js CHANGED
@@ -191,6 +191,7 @@ var zBCampTracker = import_zod6.z.object({
191
191
  * attendances are tracked by week for camps
192
192
  */
193
193
  attendances: import_zod6.z.array(import_zod6.z.string()),
194
+ isNonPublic: import_zod6.z.boolean().optional(),
194
195
  notes: import_zod6.z.string().optional()
195
196
  });
196
197
  var zCampTracker = addAutoProps(zBCampTracker);
package/index.mjs CHANGED
@@ -104,6 +104,7 @@ var zBCampTracker = z6.object({
104
104
  * attendances are tracked by week for camps
105
105
  */
106
106
  attendances: z6.array(z6.string()),
107
+ isNonPublic: z6.boolean().optional(),
107
108
  notes: z6.string().optional()
108
109
  });
109
110
  var zCampTracker = addAutoProps(zBCampTracker);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nyig/models",
3
- "version": "0.2.29",
3
+ "version": "0.2.30",
4
4
  "license": "MIT",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",