@nyig/models 0.2.40 → 0.2.41

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,140 @@ 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
+ name: z.ZodString;
2400
+ username: z.ZodOptional<z.ZodString>;
2401
+ password: z.ZodOptional<z.ZodString>;
2402
+ roles: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2403
+ email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2404
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
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
+ }, "strip", z.ZodTypeAny, {
2409
+ name: string;
2410
+ username?: string | undefined;
2411
+ password?: string | undefined;
2412
+ roles?: number[] | undefined;
2413
+ email?: string | undefined;
2414
+ address?: string | undefined;
2415
+ country?: string | undefined;
2416
+ phoneNumber?: string | undefined;
2417
+ birthDate?: string | undefined;
2418
+ }, {
2419
+ name: string;
2420
+ username?: string | undefined;
2421
+ password?: string | undefined;
2422
+ roles?: number[] | undefined;
2423
+ email?: string | undefined;
2424
+ address?: string | undefined;
2425
+ country?: string | undefined;
2426
+ phoneNumber?: string | undefined;
2427
+ birthDate?: string | undefined;
2428
+ }>;
2429
+ resolver: z.ZodOptional<z.ZodObject<{
2430
+ name: z.ZodString;
2431
+ username: z.ZodOptional<z.ZodString>;
2432
+ password: z.ZodOptional<z.ZodString>;
2433
+ roles: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2434
+ email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2435
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2436
+ country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2437
+ phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2438
+ birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2439
+ }, "strip", z.ZodTypeAny, {
2440
+ name: string;
2441
+ username?: string | undefined;
2442
+ password?: string | undefined;
2443
+ roles?: number[] | undefined;
2444
+ email?: string | undefined;
2445
+ address?: string | undefined;
2446
+ country?: string | undefined;
2447
+ phoneNumber?: string | undefined;
2448
+ birthDate?: string | undefined;
2449
+ }, {
2450
+ name: string;
2451
+ username?: string | undefined;
2452
+ password?: string | undefined;
2453
+ roles?: number[] | undefined;
2454
+ email?: string | undefined;
2455
+ address?: string | undefined;
2456
+ country?: string | undefined;
2457
+ phoneNumber?: string | undefined;
2458
+ birthDate?: string | undefined;
2459
+ }>>;
2460
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
2461
+ status: TicketStatus;
2462
+ _id: string;
2463
+ title: string;
2464
+ description: string;
2465
+ requester: {
2466
+ name: string;
2467
+ username?: string | undefined;
2468
+ password?: string | undefined;
2469
+ roles?: number[] | undefined;
2470
+ email?: string | undefined;
2471
+ address?: string | undefined;
2472
+ country?: string | undefined;
2473
+ phoneNumber?: string | undefined;
2474
+ birthDate?: string | undefined;
2475
+ };
2476
+ editedBy?: string | undefined;
2477
+ createdAt?: string | undefined;
2478
+ updatedAt?: string | undefined;
2479
+ resolver?: {
2480
+ name: string;
2481
+ username?: string | undefined;
2482
+ password?: string | undefined;
2483
+ roles?: number[] | undefined;
2484
+ email?: string | undefined;
2485
+ address?: string | undefined;
2486
+ country?: string | undefined;
2487
+ phoneNumber?: string | undefined;
2488
+ birthDate?: string | undefined;
2489
+ } | undefined;
2490
+ }, {
2491
+ status: TicketStatus;
2492
+ _id: string;
2493
+ title: string;
2494
+ description: string;
2495
+ requester: {
2496
+ name: string;
2497
+ username?: string | undefined;
2498
+ password?: string | undefined;
2499
+ roles?: number[] | undefined;
2500
+ email?: string | undefined;
2501
+ address?: string | undefined;
2502
+ country?: string | undefined;
2503
+ phoneNumber?: string | undefined;
2504
+ birthDate?: string | undefined;
2505
+ };
2506
+ editedBy?: string | undefined;
2507
+ createdAt?: string | undefined;
2508
+ updatedAt?: string | undefined;
2509
+ resolver?: {
2510
+ name: string;
2511
+ username?: string | undefined;
2512
+ password?: string | undefined;
2513
+ roles?: number[] | undefined;
2514
+ email?: string | undefined;
2515
+ address?: string | undefined;
2516
+ country?: string | undefined;
2517
+ phoneNumber?: string | undefined;
2518
+ birthDate?: string | undefined;
2519
+ } | undefined;
2520
+ }>;
2390
2521
  type BReportTicket = z.infer<typeof zBReportTicket>;
2391
2522
  type ReportTicket = z.infer<typeof zReportTicket>;
2523
+ type ReportTicketResponse = z.infer<typeof zReportTicketResponse>;
2392
2524
 
2393
2525
  declare enum Season {
2394
2526
  FALL = "fall",
@@ -3335,4 +3467,4 @@ declare const zEventTicket: z.ZodObject<{
3335
3467
  type BEventTicket = z.infer<typeof zBEventTicket>;
3336
3468
  type EventTicket = z.infer<typeof zEventTicket>;
3337
3469
 
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 };
3470
+ 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,140 @@ 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
+ name: z.ZodString;
2400
+ username: z.ZodOptional<z.ZodString>;
2401
+ password: z.ZodOptional<z.ZodString>;
2402
+ roles: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2403
+ email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2404
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
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
+ }, "strip", z.ZodTypeAny, {
2409
+ name: string;
2410
+ username?: string | undefined;
2411
+ password?: string | undefined;
2412
+ roles?: number[] | undefined;
2413
+ email?: string | undefined;
2414
+ address?: string | undefined;
2415
+ country?: string | undefined;
2416
+ phoneNumber?: string | undefined;
2417
+ birthDate?: string | undefined;
2418
+ }, {
2419
+ name: string;
2420
+ username?: string | undefined;
2421
+ password?: string | undefined;
2422
+ roles?: number[] | undefined;
2423
+ email?: string | undefined;
2424
+ address?: string | undefined;
2425
+ country?: string | undefined;
2426
+ phoneNumber?: string | undefined;
2427
+ birthDate?: string | undefined;
2428
+ }>;
2429
+ resolver: z.ZodOptional<z.ZodObject<{
2430
+ name: z.ZodString;
2431
+ username: z.ZodOptional<z.ZodString>;
2432
+ password: z.ZodOptional<z.ZodString>;
2433
+ roles: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2434
+ email: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2435
+ address: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2436
+ country: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2437
+ phoneNumber: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2438
+ birthDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>;
2439
+ }, "strip", z.ZodTypeAny, {
2440
+ name: string;
2441
+ username?: string | undefined;
2442
+ password?: string | undefined;
2443
+ roles?: number[] | undefined;
2444
+ email?: string | undefined;
2445
+ address?: string | undefined;
2446
+ country?: string | undefined;
2447
+ phoneNumber?: string | undefined;
2448
+ birthDate?: string | undefined;
2449
+ }, {
2450
+ name: string;
2451
+ username?: string | undefined;
2452
+ password?: string | undefined;
2453
+ roles?: number[] | undefined;
2454
+ email?: string | undefined;
2455
+ address?: string | undefined;
2456
+ country?: string | undefined;
2457
+ phoneNumber?: string | undefined;
2458
+ birthDate?: string | undefined;
2459
+ }>>;
2460
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
2461
+ status: TicketStatus;
2462
+ _id: string;
2463
+ title: string;
2464
+ description: string;
2465
+ requester: {
2466
+ name: string;
2467
+ username?: string | undefined;
2468
+ password?: string | undefined;
2469
+ roles?: number[] | undefined;
2470
+ email?: string | undefined;
2471
+ address?: string | undefined;
2472
+ country?: string | undefined;
2473
+ phoneNumber?: string | undefined;
2474
+ birthDate?: string | undefined;
2475
+ };
2476
+ editedBy?: string | undefined;
2477
+ createdAt?: string | undefined;
2478
+ updatedAt?: string | undefined;
2479
+ resolver?: {
2480
+ name: string;
2481
+ username?: string | undefined;
2482
+ password?: string | undefined;
2483
+ roles?: number[] | undefined;
2484
+ email?: string | undefined;
2485
+ address?: string | undefined;
2486
+ country?: string | undefined;
2487
+ phoneNumber?: string | undefined;
2488
+ birthDate?: string | undefined;
2489
+ } | undefined;
2490
+ }, {
2491
+ status: TicketStatus;
2492
+ _id: string;
2493
+ title: string;
2494
+ description: string;
2495
+ requester: {
2496
+ name: string;
2497
+ username?: string | undefined;
2498
+ password?: string | undefined;
2499
+ roles?: number[] | undefined;
2500
+ email?: string | undefined;
2501
+ address?: string | undefined;
2502
+ country?: string | undefined;
2503
+ phoneNumber?: string | undefined;
2504
+ birthDate?: string | undefined;
2505
+ };
2506
+ editedBy?: string | undefined;
2507
+ createdAt?: string | undefined;
2508
+ updatedAt?: string | undefined;
2509
+ resolver?: {
2510
+ name: string;
2511
+ username?: string | undefined;
2512
+ password?: string | undefined;
2513
+ roles?: number[] | undefined;
2514
+ email?: string | undefined;
2515
+ address?: string | undefined;
2516
+ country?: string | undefined;
2517
+ phoneNumber?: string | undefined;
2518
+ birthDate?: string | undefined;
2519
+ } | undefined;
2520
+ }>;
2390
2521
  type BReportTicket = z.infer<typeof zBReportTicket>;
2391
2522
  type ReportTicket = z.infer<typeof zReportTicket>;
2523
+ type ReportTicketResponse = z.infer<typeof zReportTicketResponse>;
2392
2524
 
2393
2525
  declare enum Season {
2394
2526
  FALL = "fall",
@@ -3335,4 +3467,4 @@ declare const zEventTicket: z.ZodObject<{
3335
3467
  type BEventTicket = z.infer<typeof zBEventTicket>;
3336
3468
  type EventTicket = z.infer<typeof zEventTicket>;
3337
3469
 
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 };
3470
+ 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: zBUser,
575
+ resolver: zBUser.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: zBUser,
484
+ resolver: zBUser.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.41",
4
4
  "license": "MIT",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",