@nyig/models 0.2.40 → 0.2.42

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
@@ -2387,8 +2387,180 @@ declare const zReportTicket: z.ZodObject<{
2387
2387
  createdAt?: string | undefined;
2388
2388
  updatedAt?: string | undefined;
2389
2389
  }>;
2390
+ declare const zReportTicketResponse: z.ZodObject<{
2391
+ status: z.ZodNativeEnum<typeof TicketStatus>;
2392
+ _id: z.ZodString;
2393
+ editedBy: z.ZodOptional<z.ZodString>;
2394
+ createdAt: z.ZodOptional<z.ZodString>;
2395
+ updatedAt: z.ZodOptional<z.ZodString>;
2396
+ title: z.ZodString;
2397
+ description: z.ZodString;
2398
+ requester: z.ZodObject<{
2399
+ email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2400
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2401
+ name: z.ZodString;
2402
+ username: z.ZodOptional<z.ZodString>;
2403
+ password: z.ZodOptional<z.ZodString>;
2404
+ roles: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2405
+ country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2406
+ phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2407
+ birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2408
+ _id: z.ZodString;
2409
+ editedBy: z.ZodOptional<z.ZodString>;
2410
+ createdAt: z.ZodOptional<z.ZodString>;
2411
+ updatedAt: z.ZodOptional<z.ZodString>;
2412
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
2413
+ _id: string;
2414
+ name: string;
2415
+ email?: string | undefined;
2416
+ address?: string | undefined;
2417
+ username?: string | undefined;
2418
+ password?: string | undefined;
2419
+ roles?: number[] | undefined;
2420
+ country?: string | undefined;
2421
+ phoneNumber?: string | undefined;
2422
+ birthDate?: string | undefined;
2423
+ editedBy?: string | undefined;
2424
+ createdAt?: string | undefined;
2425
+ updatedAt?: string | undefined;
2426
+ }, {
2427
+ _id: string;
2428
+ name: string;
2429
+ email?: string | undefined;
2430
+ address?: string | undefined;
2431
+ username?: string | undefined;
2432
+ password?: string | undefined;
2433
+ roles?: number[] | undefined;
2434
+ country?: string | undefined;
2435
+ phoneNumber?: string | undefined;
2436
+ birthDate?: string | undefined;
2437
+ editedBy?: string | undefined;
2438
+ createdAt?: string | undefined;
2439
+ updatedAt?: string | undefined;
2440
+ }>;
2441
+ resolver: z.ZodOptional<z.ZodObject<{
2442
+ email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2443
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2444
+ name: z.ZodString;
2445
+ username: z.ZodOptional<z.ZodString>;
2446
+ password: z.ZodOptional<z.ZodString>;
2447
+ roles: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2448
+ country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2449
+ phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2450
+ birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2451
+ _id: z.ZodString;
2452
+ editedBy: z.ZodOptional<z.ZodString>;
2453
+ createdAt: z.ZodOptional<z.ZodString>;
2454
+ updatedAt: z.ZodOptional<z.ZodString>;
2455
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
2456
+ _id: string;
2457
+ name: string;
2458
+ email?: string | undefined;
2459
+ address?: string | undefined;
2460
+ username?: string | undefined;
2461
+ password?: string | undefined;
2462
+ roles?: number[] | undefined;
2463
+ country?: string | undefined;
2464
+ phoneNumber?: string | undefined;
2465
+ birthDate?: string | undefined;
2466
+ editedBy?: string | undefined;
2467
+ createdAt?: string | undefined;
2468
+ updatedAt?: string | undefined;
2469
+ }, {
2470
+ _id: string;
2471
+ name: string;
2472
+ email?: string | undefined;
2473
+ address?: string | undefined;
2474
+ username?: string | undefined;
2475
+ password?: string | undefined;
2476
+ roles?: number[] | undefined;
2477
+ country?: string | undefined;
2478
+ phoneNumber?: string | undefined;
2479
+ birthDate?: string | undefined;
2480
+ editedBy?: string | undefined;
2481
+ createdAt?: string | undefined;
2482
+ updatedAt?: string | undefined;
2483
+ }>>;
2484
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
2485
+ status: TicketStatus;
2486
+ _id: string;
2487
+ title: string;
2488
+ description: string;
2489
+ requester: {
2490
+ _id: string;
2491
+ name: string;
2492
+ email?: string | undefined;
2493
+ address?: string | undefined;
2494
+ username?: string | undefined;
2495
+ password?: string | undefined;
2496
+ roles?: number[] | undefined;
2497
+ country?: string | undefined;
2498
+ phoneNumber?: string | undefined;
2499
+ birthDate?: string | undefined;
2500
+ editedBy?: string | undefined;
2501
+ createdAt?: string | undefined;
2502
+ updatedAt?: string | undefined;
2503
+ };
2504
+ editedBy?: string | undefined;
2505
+ createdAt?: string | undefined;
2506
+ updatedAt?: string | undefined;
2507
+ resolver?: {
2508
+ _id: string;
2509
+ name: string;
2510
+ email?: string | undefined;
2511
+ address?: string | undefined;
2512
+ username?: string | undefined;
2513
+ password?: string | undefined;
2514
+ roles?: number[] | undefined;
2515
+ country?: string | undefined;
2516
+ phoneNumber?: string | undefined;
2517
+ birthDate?: string | undefined;
2518
+ editedBy?: string | undefined;
2519
+ createdAt?: string | undefined;
2520
+ updatedAt?: string | undefined;
2521
+ } | undefined;
2522
+ }, {
2523
+ status: TicketStatus;
2524
+ _id: string;
2525
+ title: string;
2526
+ description: string;
2527
+ requester: {
2528
+ _id: string;
2529
+ name: string;
2530
+ email?: string | undefined;
2531
+ address?: string | undefined;
2532
+ username?: string | undefined;
2533
+ password?: string | undefined;
2534
+ roles?: number[] | undefined;
2535
+ country?: string | undefined;
2536
+ phoneNumber?: string | undefined;
2537
+ birthDate?: string | undefined;
2538
+ editedBy?: string | undefined;
2539
+ createdAt?: string | undefined;
2540
+ updatedAt?: string | undefined;
2541
+ };
2542
+ editedBy?: string | undefined;
2543
+ createdAt?: string | undefined;
2544
+ updatedAt?: string | undefined;
2545
+ resolver?: {
2546
+ _id: string;
2547
+ name: string;
2548
+ email?: string | undefined;
2549
+ address?: string | undefined;
2550
+ username?: string | undefined;
2551
+ password?: string | undefined;
2552
+ roles?: number[] | undefined;
2553
+ country?: string | undefined;
2554
+ phoneNumber?: string | undefined;
2555
+ birthDate?: string | undefined;
2556
+ editedBy?: string | undefined;
2557
+ createdAt?: string | undefined;
2558
+ updatedAt?: string | undefined;
2559
+ } | undefined;
2560
+ }>;
2390
2561
  type BReportTicket = z.infer<typeof zBReportTicket>;
2391
2562
  type ReportTicket = z.infer<typeof zReportTicket>;
2563
+ type ReportTicketResponse = z.infer<typeof zReportTicketResponse>;
2392
2564
 
2393
2565
  declare enum Season {
2394
2566
  FALL = "fall",
@@ -3335,4 +3507,4 @@ declare const zEventTicket: z.ZodObject<{
3335
3507
  type BEventTicket = z.infer<typeof zBEventTicket>;
3336
3508
  type EventTicket = z.infer<typeof zEventTicket>;
3337
3509
 
3338
- export { AgeGroup, AttendState, type Attendance, type AuroraCourses, type BAttendance, type BCampBooking, type BCampTracker, type BClassTracker, type BCourse, type BEventConfig, type BEventReg, type BEventTicket, type BGroupBooking, type BGroupTracker, type BInvoice, type BPaymentInfo, type BPrivateBooking, type BReportTicket, type BSemester, type BTeacherPayment, type BUser, type BUserInfo, BookingType, type CampBooking, CampOption, type CampTracker, type ClassTracker, type Course, CourseCategory, type CourseTable, type DetailsTable, type Discount, type EventConfig, type EventConfigResponse, type EventReg, type EventRegResponse, type EventTicket, type EventTicketReg, type EventTicketRegResponse, GoRank, type GroupBooking, type GroupTracker, type ImageDef, type Invoice, type InvoiceItem, type InvoicePackage, type InvoicePackageResponse, type InvoiceResponse, type NYIGMission, NYIGSchool, type PaymentIntent, PaymentMethod, type PrivateBooking, type ReportTicket, type ScheduleData, type ScheduleTable, Season, type Semester, type Student, type Teacher, type TeacherDisplay, type TeacherPayment, type TeacherPaymentResponse, type TeacherPaymentRow, TicketStatus, type Tuition, type User, type UserRoles, zAttendance, zBAttendance, zBCampBooking, zBCampTracker, zBClassTracker, zBCourse, zBEventConfig, zBEventReg, zBEventTicket, zBGroupBooking, zBGroupTracker, zBInvoice, zBPaymentInfo, zBPrivateBooking, zBReportTicket, zBSemester, zBTeacherPayment, zBUser, zBUserInfo, zCampBooking, zCampTracker, zClassTracker, zCourse, zCourseTable, zDetailsTable, zDiscount, zEventConfig, zEventConfigResponse, zEventReg, zEventRegResponse, zEventTicket, zEventTicketReg, zEventTicketRegResponse, zGroupBooking, zGroupTracker, zImageDef, zInvoice, zInvoiceItem, zInvoicePackage, zInvoicePackageResponse, zInvoiceResponse, zPrivateBooking, zReportTicket, zScheduleData, zScheduleTable, zSemester, zStudent, zTeacher, zTeacherDisplay, zTeacherPayment, zTeacherPaymentResponse, zTeacherPaymentRow, zTuition, zUser, zUserRoles };
3510
+ export { AgeGroup, AttendState, type Attendance, type AuroraCourses, type BAttendance, type BCampBooking, type BCampTracker, type BClassTracker, type BCourse, type BEventConfig, type BEventReg, type BEventTicket, type BGroupBooking, type BGroupTracker, type BInvoice, type BPaymentInfo, type BPrivateBooking, type BReportTicket, type BSemester, type BTeacherPayment, type BUser, type BUserInfo, BookingType, type CampBooking, CampOption, type CampTracker, type ClassTracker, type Course, CourseCategory, type CourseTable, type DetailsTable, type Discount, type EventConfig, type EventConfigResponse, type EventReg, type EventRegResponse, type EventTicket, type EventTicketReg, type EventTicketRegResponse, GoRank, type GroupBooking, type GroupTracker, type ImageDef, type Invoice, type InvoiceItem, type InvoicePackage, type InvoicePackageResponse, type InvoiceResponse, type NYIGMission, NYIGSchool, type PaymentIntent, PaymentMethod, type PrivateBooking, type ReportTicket, type ReportTicketResponse, type ScheduleData, type ScheduleTable, Season, type Semester, type Student, type Teacher, type TeacherDisplay, type TeacherPayment, type TeacherPaymentResponse, type TeacherPaymentRow, TicketStatus, type Tuition, type User, type UserRoles, zAttendance, zBAttendance, zBCampBooking, zBCampTracker, zBClassTracker, zBCourse, zBEventConfig, zBEventReg, zBEventTicket, zBGroupBooking, zBGroupTracker, zBInvoice, zBPaymentInfo, zBPrivateBooking, zBReportTicket, zBSemester, zBTeacherPayment, zBUser, zBUserInfo, zCampBooking, zCampTracker, zClassTracker, zCourse, zCourseTable, zDetailsTable, zDiscount, zEventConfig, zEventConfigResponse, zEventReg, zEventRegResponse, zEventTicket, zEventTicketReg, zEventTicketRegResponse, zGroupBooking, zGroupTracker, zImageDef, zInvoice, zInvoiceItem, zInvoicePackage, zInvoicePackageResponse, zInvoiceResponse, zPrivateBooking, zReportTicket, zReportTicketResponse, zScheduleData, zScheduleTable, zSemester, zStudent, zTeacher, zTeacherDisplay, zTeacherPayment, zTeacherPaymentResponse, zTeacherPaymentRow, zTuition, zUser, zUserRoles };
package/index.d.ts CHANGED
@@ -2387,8 +2387,180 @@ declare const zReportTicket: z.ZodObject<{
2387
2387
  createdAt?: string | undefined;
2388
2388
  updatedAt?: string | undefined;
2389
2389
  }>;
2390
+ declare const zReportTicketResponse: z.ZodObject<{
2391
+ status: z.ZodNativeEnum<typeof TicketStatus>;
2392
+ _id: z.ZodString;
2393
+ editedBy: z.ZodOptional<z.ZodString>;
2394
+ createdAt: z.ZodOptional<z.ZodString>;
2395
+ updatedAt: z.ZodOptional<z.ZodString>;
2396
+ title: z.ZodString;
2397
+ description: z.ZodString;
2398
+ requester: z.ZodObject<{
2399
+ email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2400
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2401
+ name: z.ZodString;
2402
+ username: z.ZodOptional<z.ZodString>;
2403
+ password: z.ZodOptional<z.ZodString>;
2404
+ roles: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2405
+ country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2406
+ phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2407
+ birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2408
+ _id: z.ZodString;
2409
+ editedBy: z.ZodOptional<z.ZodString>;
2410
+ createdAt: z.ZodOptional<z.ZodString>;
2411
+ updatedAt: z.ZodOptional<z.ZodString>;
2412
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
2413
+ _id: string;
2414
+ name: string;
2415
+ email?: string | undefined;
2416
+ address?: string | undefined;
2417
+ username?: string | undefined;
2418
+ password?: string | undefined;
2419
+ roles?: number[] | undefined;
2420
+ country?: string | undefined;
2421
+ phoneNumber?: string | undefined;
2422
+ birthDate?: string | undefined;
2423
+ editedBy?: string | undefined;
2424
+ createdAt?: string | undefined;
2425
+ updatedAt?: string | undefined;
2426
+ }, {
2427
+ _id: string;
2428
+ name: string;
2429
+ email?: string | undefined;
2430
+ address?: string | undefined;
2431
+ username?: string | undefined;
2432
+ password?: string | undefined;
2433
+ roles?: number[] | undefined;
2434
+ country?: string | undefined;
2435
+ phoneNumber?: string | undefined;
2436
+ birthDate?: string | undefined;
2437
+ editedBy?: string | undefined;
2438
+ createdAt?: string | undefined;
2439
+ updatedAt?: string | undefined;
2440
+ }>;
2441
+ resolver: z.ZodOptional<z.ZodObject<{
2442
+ email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2443
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2444
+ name: z.ZodString;
2445
+ username: z.ZodOptional<z.ZodString>;
2446
+ password: z.ZodOptional<z.ZodString>;
2447
+ roles: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2448
+ country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2449
+ phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2450
+ birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2451
+ _id: z.ZodString;
2452
+ editedBy: z.ZodOptional<z.ZodString>;
2453
+ createdAt: z.ZodOptional<z.ZodString>;
2454
+ updatedAt: z.ZodOptional<z.ZodString>;
2455
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
2456
+ _id: string;
2457
+ name: string;
2458
+ email?: string | undefined;
2459
+ address?: string | undefined;
2460
+ username?: string | undefined;
2461
+ password?: string | undefined;
2462
+ roles?: number[] | undefined;
2463
+ country?: string | undefined;
2464
+ phoneNumber?: string | undefined;
2465
+ birthDate?: string | undefined;
2466
+ editedBy?: string | undefined;
2467
+ createdAt?: string | undefined;
2468
+ updatedAt?: string | undefined;
2469
+ }, {
2470
+ _id: string;
2471
+ name: string;
2472
+ email?: string | undefined;
2473
+ address?: string | undefined;
2474
+ username?: string | undefined;
2475
+ password?: string | undefined;
2476
+ roles?: number[] | undefined;
2477
+ country?: string | undefined;
2478
+ phoneNumber?: string | undefined;
2479
+ birthDate?: string | undefined;
2480
+ editedBy?: string | undefined;
2481
+ createdAt?: string | undefined;
2482
+ updatedAt?: string | undefined;
2483
+ }>>;
2484
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
2485
+ status: TicketStatus;
2486
+ _id: string;
2487
+ title: string;
2488
+ description: string;
2489
+ requester: {
2490
+ _id: string;
2491
+ name: string;
2492
+ email?: string | undefined;
2493
+ address?: string | undefined;
2494
+ username?: string | undefined;
2495
+ password?: string | undefined;
2496
+ roles?: number[] | undefined;
2497
+ country?: string | undefined;
2498
+ phoneNumber?: string | undefined;
2499
+ birthDate?: string | undefined;
2500
+ editedBy?: string | undefined;
2501
+ createdAt?: string | undefined;
2502
+ updatedAt?: string | undefined;
2503
+ };
2504
+ editedBy?: string | undefined;
2505
+ createdAt?: string | undefined;
2506
+ updatedAt?: string | undefined;
2507
+ resolver?: {
2508
+ _id: string;
2509
+ name: string;
2510
+ email?: string | undefined;
2511
+ address?: string | undefined;
2512
+ username?: string | undefined;
2513
+ password?: string | undefined;
2514
+ roles?: number[] | undefined;
2515
+ country?: string | undefined;
2516
+ phoneNumber?: string | undefined;
2517
+ birthDate?: string | undefined;
2518
+ editedBy?: string | undefined;
2519
+ createdAt?: string | undefined;
2520
+ updatedAt?: string | undefined;
2521
+ } | undefined;
2522
+ }, {
2523
+ status: TicketStatus;
2524
+ _id: string;
2525
+ title: string;
2526
+ description: string;
2527
+ requester: {
2528
+ _id: string;
2529
+ name: string;
2530
+ email?: string | undefined;
2531
+ address?: string | undefined;
2532
+ username?: string | undefined;
2533
+ password?: string | undefined;
2534
+ roles?: number[] | undefined;
2535
+ country?: string | undefined;
2536
+ phoneNumber?: string | undefined;
2537
+ birthDate?: string | undefined;
2538
+ editedBy?: string | undefined;
2539
+ createdAt?: string | undefined;
2540
+ updatedAt?: string | undefined;
2541
+ };
2542
+ editedBy?: string | undefined;
2543
+ createdAt?: string | undefined;
2544
+ updatedAt?: string | undefined;
2545
+ resolver?: {
2546
+ _id: string;
2547
+ name: string;
2548
+ email?: string | undefined;
2549
+ address?: string | undefined;
2550
+ username?: string | undefined;
2551
+ password?: string | undefined;
2552
+ roles?: number[] | undefined;
2553
+ country?: string | undefined;
2554
+ phoneNumber?: string | undefined;
2555
+ birthDate?: string | undefined;
2556
+ editedBy?: string | undefined;
2557
+ createdAt?: string | undefined;
2558
+ updatedAt?: string | undefined;
2559
+ } | undefined;
2560
+ }>;
2390
2561
  type BReportTicket = z.infer<typeof zBReportTicket>;
2391
2562
  type ReportTicket = z.infer<typeof zReportTicket>;
2563
+ type ReportTicketResponse = z.infer<typeof zReportTicketResponse>;
2392
2564
 
2393
2565
  declare enum Season {
2394
2566
  FALL = "fall",
@@ -3335,4 +3507,4 @@ declare const zEventTicket: z.ZodObject<{
3335
3507
  type BEventTicket = z.infer<typeof zBEventTicket>;
3336
3508
  type EventTicket = z.infer<typeof zEventTicket>;
3337
3509
 
3338
- export { AgeGroup, AttendState, type Attendance, type AuroraCourses, type BAttendance, type BCampBooking, type BCampTracker, type BClassTracker, type BCourse, type BEventConfig, type BEventReg, type BEventTicket, type BGroupBooking, type BGroupTracker, type BInvoice, type BPaymentInfo, type BPrivateBooking, type BReportTicket, type BSemester, type BTeacherPayment, type BUser, type BUserInfo, BookingType, type CampBooking, CampOption, type CampTracker, type ClassTracker, type Course, CourseCategory, type CourseTable, type DetailsTable, type Discount, type EventConfig, type EventConfigResponse, type EventReg, type EventRegResponse, type EventTicket, type EventTicketReg, type EventTicketRegResponse, GoRank, type GroupBooking, type GroupTracker, type ImageDef, type Invoice, type InvoiceItem, type InvoicePackage, type InvoicePackageResponse, type InvoiceResponse, type NYIGMission, NYIGSchool, type PaymentIntent, PaymentMethod, type PrivateBooking, type ReportTicket, type ScheduleData, type ScheduleTable, Season, type Semester, type Student, type Teacher, type TeacherDisplay, type TeacherPayment, type TeacherPaymentResponse, type TeacherPaymentRow, TicketStatus, type Tuition, type User, type UserRoles, zAttendance, zBAttendance, zBCampBooking, zBCampTracker, zBClassTracker, zBCourse, zBEventConfig, zBEventReg, zBEventTicket, zBGroupBooking, zBGroupTracker, zBInvoice, zBPaymentInfo, zBPrivateBooking, zBReportTicket, zBSemester, zBTeacherPayment, zBUser, zBUserInfo, zCampBooking, zCampTracker, zClassTracker, zCourse, zCourseTable, zDetailsTable, zDiscount, zEventConfig, zEventConfigResponse, zEventReg, zEventRegResponse, zEventTicket, zEventTicketReg, zEventTicketRegResponse, zGroupBooking, zGroupTracker, zImageDef, zInvoice, zInvoiceItem, zInvoicePackage, zInvoicePackageResponse, zInvoiceResponse, zPrivateBooking, zReportTicket, zScheduleData, zScheduleTable, zSemester, zStudent, zTeacher, zTeacherDisplay, zTeacherPayment, zTeacherPaymentResponse, zTeacherPaymentRow, zTuition, zUser, zUserRoles };
3510
+ export { AgeGroup, AttendState, type Attendance, type AuroraCourses, type BAttendance, type BCampBooking, type BCampTracker, type BClassTracker, type BCourse, type BEventConfig, type BEventReg, type BEventTicket, type BGroupBooking, type BGroupTracker, type BInvoice, type BPaymentInfo, type BPrivateBooking, type BReportTicket, type BSemester, type BTeacherPayment, type BUser, type BUserInfo, BookingType, type CampBooking, CampOption, type CampTracker, type ClassTracker, type Course, CourseCategory, type CourseTable, type DetailsTable, type Discount, type EventConfig, type EventConfigResponse, type EventReg, type EventRegResponse, type EventTicket, type EventTicketReg, type EventTicketRegResponse, GoRank, type GroupBooking, type GroupTracker, type ImageDef, type Invoice, type InvoiceItem, type InvoicePackage, type InvoicePackageResponse, type InvoiceResponse, type NYIGMission, NYIGSchool, type PaymentIntent, PaymentMethod, type PrivateBooking, type ReportTicket, type ReportTicketResponse, type ScheduleData, type ScheduleTable, Season, type Semester, type Student, type Teacher, type TeacherDisplay, type TeacherPayment, type TeacherPaymentResponse, type TeacherPaymentRow, TicketStatus, type Tuition, type User, type UserRoles, zAttendance, zBAttendance, zBCampBooking, zBCampTracker, zBClassTracker, zBCourse, zBEventConfig, zBEventReg, zBEventTicket, zBGroupBooking, zBGroupTracker, zBInvoice, zBPaymentInfo, zBPrivateBooking, zBReportTicket, zBSemester, zBTeacherPayment, zBUser, zBUserInfo, zCampBooking, zCampTracker, zClassTracker, zCourse, zCourseTable, zDetailsTable, zDiscount, zEventConfig, zEventConfigResponse, zEventReg, zEventRegResponse, zEventTicket, zEventTicketReg, zEventTicketRegResponse, zGroupBooking, zGroupTracker, zImageDef, zInvoice, zInvoiceItem, zInvoicePackage, zInvoicePackageResponse, zInvoiceResponse, zPrivateBooking, zReportTicket, zReportTicketResponse, zScheduleData, zScheduleTable, zSemester, zStudent, zTeacher, zTeacherDisplay, zTeacherPayment, zTeacherPaymentResponse, zTeacherPaymentRow, zTuition, zUser, zUserRoles };
package/index.js CHANGED
@@ -73,6 +73,7 @@ __export(src_exports, {
73
73
  zInvoiceResponse: () => zInvoiceResponse,
74
74
  zPrivateBooking: () => zPrivateBooking,
75
75
  zReportTicket: () => zReportTicket,
76
+ zReportTicketResponse: () => zReportTicketResponse,
76
77
  zScheduleData: () => zScheduleData,
77
78
  zScheduleTable: () => zScheduleTable,
78
79
  zSemester: () => zSemester,
@@ -569,6 +570,10 @@ var zBReportTicket = import_zod20.z.object({
569
570
  description: import_zod20.z.string()
570
571
  });
571
572
  var zReportTicket = addAutoProps(zBReportTicket);
573
+ var zReportTicketResponse = zReportTicket.extend({
574
+ requester: zUser,
575
+ resolver: zUser.optional()
576
+ });
572
577
 
573
578
  // src/interface/semester/season.ts
574
579
  var Season = /* @__PURE__ */ ((Season2) => {
@@ -790,6 +795,7 @@ var zEventRegResponse = zEventReg.extend({
790
795
  zInvoiceResponse,
791
796
  zPrivateBooking,
792
797
  zReportTicket,
798
+ zReportTicketResponse,
793
799
  zScheduleData,
794
800
  zScheduleTable,
795
801
  zSemester,
package/index.mjs CHANGED
@@ -479,6 +479,10 @@ var zBReportTicket = z20.object({
479
479
  description: z20.string()
480
480
  });
481
481
  var zReportTicket = addAutoProps(zBReportTicket);
482
+ var zReportTicketResponse = zReportTicket.extend({
483
+ requester: zUser,
484
+ resolver: zUser.optional()
485
+ });
482
486
 
483
487
  // src/interface/semester/season.ts
484
488
  var Season = /* @__PURE__ */ ((Season2) => {
@@ -699,6 +703,7 @@ export {
699
703
  zInvoiceResponse,
700
704
  zPrivateBooking,
701
705
  zReportTicket,
706
+ zReportTicketResponse,
702
707
  zScheduleData,
703
708
  zScheduleTable,
704
709
  zSemester,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nyig/models",
3
- "version": "0.2.40",
3
+ "version": "0.2.42",
4
4
  "license": "MIT",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",