vms-nest-prisma-api-document 194.0.0 → 195.0.0

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.
Files changed (25) hide show
  1. package/dist/services/account/analytics/user_login_analytics_service.d.ts +3 -3
  2. package/dist/services/account/analytics/user_page_analytics_service.d.ts +1 -1
  3. package/dist/services/fleet/fuel_management/fleet_fuel_daily_summary_service.d.ts +16 -16
  4. package/dist/services/fleet/fuel_management/fleet_fuel_refill_service.d.ts +44 -44
  5. package/dist/services/fleet/fuel_management/fleet_fuel_removal_service.d.ts +29 -29
  6. package/dist/services/gps/features/geofence/gps_geofence_transaction_service.d.ts +8 -8
  7. package/dist/services/gps/features/geofence/gps_geofence_transaction_summary_service.d.ts +5 -5
  8. package/dist/services/gps/features/geofence/trip_geofence_to_geofence_service.d.ts +11 -11
  9. package/dist/services/gps/features/gps_live_track_share_link_service.d.ts +4 -4
  10. package/dist/services/gps/features/gps_track_history_share_link_service.d.ts +7 -7
  11. package/dist/services/gps/reports/gps_reports_mongo_service.d.ts +46 -46
  12. package/dist/services/main/users/user_admin_service.d.ts +2 -2
  13. package/dist/services/main/users/user_admin_service.js +5 -6
  14. package/dist/services/master/expense/master_expense_name_service.d.ts +5 -5
  15. package/dist/services/master/expense/master_fuel_company_service.d.ts +5 -5
  16. package/dist/services/master/fleet/master_fleet_incident_status_service.d.ts +2 -2
  17. package/dist/services/master/fleet/master_fleet_insurance_claim_status_service.d.ts +2 -2
  18. package/dist/services/master/main/master_main_eway_bill_provider_service.d.ts +2 -2
  19. package/dist/services/master/main/master_main_fasttag_bank_service.d.ts +2 -2
  20. package/dist/services/master/main/master_main_landmark_service.d.ts +4 -4
  21. package/dist/services/master/spare_part/master_spare_part_sub_category_service.d.ts +8 -8
  22. package/dist/services/master/vehicle/master_vehicle_fuel_removal_reason_service.d.ts +2 -2
  23. package/dist/services/website/faq_service.d.ts +1 -1
  24. package/dist/services/website/static_pages_service.d.ts +1 -1
  25. package/package.json +1 -1
@@ -70,6 +70,7 @@ declare const MasterVehicleFuelRemovalReasonQuerySchema: z.ZodObject<{
70
70
  fuel_removal_reason_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
71
71
  }, "strip", z.ZodTypeAny, {
72
72
  status: Status[];
73
+ time_zone_id: string;
73
74
  search: string;
74
75
  paging: PAGING;
75
76
  page_count: number;
@@ -89,12 +90,11 @@ declare const MasterVehicleFuelRemovalReasonQuerySchema: z.ZodObject<{
89
90
  }[];
90
91
  include_master_data: YesNo;
91
92
  date_format_id: string;
92
- time_zone_id: string;
93
93
  organisation_ids: string[];
94
94
  fuel_removal_reason_ids: string[];
95
95
  }, {
96
- date_format_id: string;
97
96
  time_zone_id: string;
97
+ date_format_id: string;
98
98
  status?: Status[] | undefined;
99
99
  search?: string | undefined;
100
100
  paging?: PAGING | undefined;
@@ -17,10 +17,10 @@ declare const FaqSchema: z.ZodObject<{
17
17
  faq_content: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
18
18
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
19
19
  }, "strip", z.ZodTypeAny, {
20
+ status: Status;
20
21
  faq_section: string;
21
22
  faq_header: string;
22
23
  faq_content: string;
23
- status: Status;
24
24
  }, {
25
25
  status: Status;
26
26
  faq_section?: string | undefined;
@@ -19,11 +19,11 @@ declare const StaticPageSchema: z.ZodObject<{
19
19
  page_content: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
20
20
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
21
21
  }, "strip", z.ZodTypeAny, {
22
- status: Status;
23
22
  page_name: string;
24
23
  page_code: string;
25
24
  page_url: string;
26
25
  page_content: string;
26
+ status: Status;
27
27
  }, {
28
28
  status: Status;
29
29
  page_name?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vms-nest-prisma-api-document",
3
- "version": "194.0.0",
3
+ "version": "195.0.0",
4
4
  "description": "Reusable API SDK built with NestJS, Prisma, Axios, and Zod for VMS frontends.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",