vms-nest-api-document 17.0.0 → 18.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.
@@ -203,11 +203,11 @@ declare const SpecialScheduleDayRunSchema: z.ZodObject<{
203
203
  organisation_id: string;
204
204
  organisation_branch_id: string;
205
205
  route_id: string;
206
- special_schedule_id: string;
207
206
  vehicle_id: string;
208
207
  driver_id: string;
209
208
  attendant_id: string;
210
209
  time_zone_id: string;
210
+ special_schedule_id: string;
211
211
  }, {
212
212
  run_date: string;
213
213
  schedule_type: BusLeg;
@@ -217,11 +217,11 @@ declare const SpecialScheduleDayRunSchema: z.ZodObject<{
217
217
  organisation_id: string;
218
218
  organisation_branch_id: string;
219
219
  route_id: string;
220
- special_schedule_id: string;
221
220
  vehicle_id: string;
222
221
  driver_id: string;
223
222
  attendant_id: string;
224
223
  time_zone_id: string;
224
+ special_schedule_id: string;
225
225
  start_planned_date_time?: string | undefined;
226
226
  end_planned_date_time?: string | undefined;
227
227
  start_actual_date_time?: string | undefined;
@@ -304,16 +304,16 @@ declare const SpecialScheduleDayRunQuerySchema: z.ZodObject<{
304
304
  }[];
305
305
  include_master_data: YesNo;
306
306
  date_format_id: string;
307
- special_schedule_day_run_ids: string[];
308
307
  organisation_ids: string[];
309
308
  organisation_branch_ids: string[];
310
309
  route_ids: string[];
311
- special_schedule_ids: string[];
312
310
  vehicle_ids: string[];
313
311
  driver_ids: string[];
314
312
  attendant_ids: string[];
315
313
  run_date_from: string;
316
314
  run_date_to: string;
315
+ special_schedule_ids: string[];
316
+ special_schedule_day_run_ids: string[];
317
317
  }, {
318
318
  time_zone_id: string;
319
319
  date_format_id: string;
@@ -339,16 +339,16 @@ declare const SpecialScheduleDayRunQuerySchema: z.ZodObject<{
339
339
  direction: OrderBy;
340
340
  }[] | undefined;
341
341
  include_master_data?: YesNo | undefined;
342
- special_schedule_day_run_ids?: string[] | undefined;
343
342
  organisation_ids?: string[] | undefined;
344
343
  organisation_branch_ids?: string[] | undefined;
345
344
  route_ids?: string[] | undefined;
346
- special_schedule_ids?: string[] | undefined;
347
345
  vehicle_ids?: string[] | undefined;
348
346
  driver_ids?: string[] | undefined;
349
347
  attendant_ids?: string[] | undefined;
350
348
  run_date_from?: string | undefined;
351
349
  run_date_to?: string | undefined;
350
+ special_schedule_ids?: string[] | undefined;
351
+ special_schedule_day_run_ids?: string[] | undefined;
352
352
  }>;
353
353
  type SpecialScheduleDayRunQueryDTO = z.infer<typeof SpecialScheduleDayRunQuerySchema>;
354
354
  declare const SpecialScheduleDayRunStopSchema: z.ZodObject<{
@@ -367,7 +367,6 @@ declare const SpecialScheduleDayRunStopSchema: z.ZodObject<{
367
367
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
368
368
  time_zone_id: z.ZodEffects<z.ZodString, string, string>;
369
369
  }, "strip", z.ZodTypeAny, {
370
- special_schedule_day_run_id: string;
371
370
  planned_student_count: number;
372
371
  marked_student_count: number;
373
372
  status: Status;
@@ -381,12 +380,13 @@ declare const SpecialScheduleDayRunStopSchema: z.ZodObject<{
381
380
  stop_status: DayRunStopStatus;
382
381
  bus_stop_id: string;
383
382
  time_zone_id: string;
384
- }, {
385
383
  special_schedule_day_run_id: string;
384
+ }, {
386
385
  status: Status;
387
386
  stop_status: DayRunStopStatus;
388
387
  bus_stop_id: string;
389
388
  time_zone_id: string;
389
+ special_schedule_day_run_id: string;
390
390
  planned_student_count?: unknown;
391
391
  marked_student_count?: unknown;
392
392
  order_no?: unknown;
@@ -460,13 +460,13 @@ declare const SpecialScheduleDayRunStopQuerySchema: z.ZodObject<{
460
460
  }[];
461
461
  include_master_data: YesNo;
462
462
  date_format_id: string;
463
- special_schedule_day_run_ids: string[];
464
463
  organisation_ids: string[];
465
464
  organisation_branch_ids: string[];
466
465
  route_ids: string[];
466
+ bus_stop_ids: string[];
467
467
  special_schedule_ids: string[];
468
+ special_schedule_day_run_ids: string[];
468
469
  special_schedule_day_run_stop_ids: string[];
469
- bus_stop_ids: string[];
470
470
  }, {
471
471
  time_zone_id: string;
472
472
  date_format_id: string;
@@ -490,13 +490,13 @@ declare const SpecialScheduleDayRunStopQuerySchema: z.ZodObject<{
490
490
  direction: OrderBy;
491
491
  }[] | undefined;
492
492
  include_master_data?: YesNo | undefined;
493
- special_schedule_day_run_ids?: string[] | undefined;
494
493
  organisation_ids?: string[] | undefined;
495
494
  organisation_branch_ids?: string[] | undefined;
496
495
  route_ids?: string[] | undefined;
496
+ bus_stop_ids?: string[] | undefined;
497
497
  special_schedule_ids?: string[] | undefined;
498
+ special_schedule_day_run_ids?: string[] | undefined;
498
499
  special_schedule_day_run_stop_ids?: string[] | undefined;
499
- bus_stop_ids?: string[] | undefined;
500
500
  }>;
501
501
  type SpecialScheduleDayRunStopQueryDTO = z.infer<typeof SpecialScheduleDayRunStopQuerySchema>;
502
502
  declare const SpecialScheduleDayRunStudentSchema: z.ZodObject<{
@@ -514,7 +514,6 @@ declare const SpecialScheduleDayRunStudentSchema: z.ZodObject<{
514
514
  status: z.ZodType<Status, z.ZodTypeDef, Status>;
515
515
  time_zone_id: z.ZodEffects<z.ZodString, string, string>;
516
516
  }, "strip", z.ZodTypeAny, {
517
- special_schedule_day_run_id: string;
518
517
  status: Status;
519
518
  student_boarding_status: StudentLegStatus;
520
519
  method: AttendanceMethod;
@@ -523,19 +522,20 @@ declare const SpecialScheduleDayRunStudentSchema: z.ZodObject<{
523
522
  student_attendance_image_url: string;
524
523
  student_attendance_image_key: string;
525
524
  student_attendance_image_name: string;
526
- planned_special_schedule_day_run_stop_id: string;
527
- actual_special_schedule_day_run_stop_id: string;
528
525
  student_id: string;
529
526
  time_zone_id: string;
530
- }, {
531
527
  special_schedule_day_run_id: string;
528
+ planned_special_schedule_day_run_stop_id: string;
529
+ actual_special_schedule_day_run_stop_id: string;
530
+ }, {
532
531
  status: Status;
533
532
  student_boarding_status: StudentLegStatus;
534
533
  method: AttendanceMethod;
535
- planned_special_schedule_day_run_stop_id: string;
536
- actual_special_schedule_day_run_stop_id: string;
537
534
  student_id: string;
538
535
  time_zone_id: string;
536
+ special_schedule_day_run_id: string;
537
+ planned_special_schedule_day_run_stop_id: string;
538
+ actual_special_schedule_day_run_stop_id: string;
539
539
  mark_time?: string | undefined;
540
540
  note?: string | undefined;
541
541
  student_attendance_image_url?: string | undefined;
@@ -609,15 +609,15 @@ declare const SpecialScheduleDayRunStudentQuerySchema: z.ZodObject<{
609
609
  }[];
610
610
  include_master_data: YesNo;
611
611
  date_format_id: string;
612
- special_schedule_day_run_ids: string[];
613
612
  organisation_ids: string[];
614
613
  organisation_branch_ids: string[];
615
614
  route_ids: string[];
615
+ student_ids: string[];
616
616
  special_schedule_ids: string[];
617
+ special_schedule_day_run_ids: string[];
617
618
  special_schedule_day_run_student_ids: string[];
618
619
  planned_special_schedule_day_run_stop_ids: string[];
619
620
  actual_special_schedule_day_run_stop_ids: string[];
620
- student_ids: string[];
621
621
  }, {
622
622
  time_zone_id: string;
623
623
  date_format_id: string;
@@ -642,15 +642,15 @@ declare const SpecialScheduleDayRunStudentQuerySchema: z.ZodObject<{
642
642
  direction: OrderBy;
643
643
  }[] | undefined;
644
644
  include_master_data?: YesNo | undefined;
645
- special_schedule_day_run_ids?: string[] | undefined;
646
645
  organisation_ids?: string[] | undefined;
647
646
  organisation_branch_ids?: string[] | undefined;
648
647
  route_ids?: string[] | undefined;
648
+ student_ids?: string[] | undefined;
649
649
  special_schedule_ids?: string[] | undefined;
650
+ special_schedule_day_run_ids?: string[] | undefined;
650
651
  special_schedule_day_run_student_ids?: string[] | undefined;
651
652
  planned_special_schedule_day_run_stop_ids?: string[] | undefined;
652
653
  actual_special_schedule_day_run_stop_ids?: string[] | undefined;
653
- student_ids?: string[] | undefined;
654
654
  }>;
655
655
  type SpecialScheduleDayRunStudentQueryDTO = z.infer<typeof SpecialScheduleDayRunStudentQuerySchema>;
656
656
  declare const GenerateSpecialScheduleDayRunSchema: z.ZodObject<{
@@ -659,23 +659,23 @@ declare const GenerateSpecialScheduleDayRunSchema: z.ZodObject<{
659
659
  time_zone_id: z.ZodEffects<z.ZodString, string, string>;
660
660
  }, "strip", z.ZodTypeAny, {
661
661
  run_date: string;
662
- special_schedule_id: string;
663
662
  time_zone_id: string;
663
+ special_schedule_id: string;
664
664
  }, {
665
665
  run_date: string;
666
- special_schedule_id: string;
667
666
  time_zone_id: string;
667
+ special_schedule_id: string;
668
668
  }>;
669
669
  type GenerateSpecialScheduleDayRunDTO = z.infer<typeof GenerateSpecialScheduleDayRunSchema>;
670
670
  declare const SpecialScheduleDayRunIdSchema: z.ZodObject<{
671
671
  special_schedule_day_run_id: z.ZodEffects<z.ZodString, string, string>;
672
672
  time_zone_id: z.ZodEffects<z.ZodString, string, string>;
673
673
  }, "strip", z.ZodTypeAny, {
674
- special_schedule_day_run_id: string;
675
674
  time_zone_id: string;
676
- }, {
677
675
  special_schedule_day_run_id: string;
676
+ }, {
678
677
  time_zone_id: string;
678
+ special_schedule_day_run_id: string;
679
679
  }>;
680
680
  type SpecialScheduleDayRunIdDTO = z.infer<typeof SpecialScheduleDayRunIdSchema>;
681
681
  declare const CancelSpecialScheduleDayRunSchema: z.ZodObject<{
@@ -683,12 +683,12 @@ declare const CancelSpecialScheduleDayRunSchema: z.ZodObject<{
683
683
  cancel_reason: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
684
684
  time_zone_id: z.ZodEffects<z.ZodString, string, string>;
685
685
  }, "strip", z.ZodTypeAny, {
686
- special_schedule_day_run_id: string;
687
686
  cancel_reason: string;
688
687
  time_zone_id: string;
689
- }, {
690
688
  special_schedule_day_run_id: string;
689
+ }, {
691
690
  time_zone_id: string;
691
+ special_schedule_day_run_id: string;
692
692
  cancel_reason?: string | undefined;
693
693
  }>;
694
694
  type CancelSpecialScheduleDayRunDTO = z.infer<typeof CancelSpecialScheduleDayRunSchema>;
@@ -697,12 +697,12 @@ declare const SpecialScheduleDayRunStopIdSchema: z.ZodObject<{
697
697
  actual_time: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
698
698
  time_zone_id: z.ZodEffects<z.ZodString, string, string>;
699
699
  }, "strip", z.ZodTypeAny, {
700
- special_schedule_day_run_stop_id: string;
701
700
  time_zone_id: string;
702
701
  actual_time: string;
703
- }, {
704
702
  special_schedule_day_run_stop_id: string;
703
+ }, {
705
704
  time_zone_id: string;
705
+ special_schedule_day_run_stop_id: string;
706
706
  actual_time?: string | undefined;
707
707
  }>;
708
708
  type SpecialScheduleDayRunStopIdDTO = z.infer<typeof SpecialScheduleDayRunStopIdSchema>;
@@ -718,7 +718,6 @@ declare const MarkSpecialScheduleDayRunStudentSchema: z.ZodObject<{
718
718
  student_attendance_image_name: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
719
719
  time_zone_id: z.ZodEffects<z.ZodString, string, string>;
720
720
  }, "strip", z.ZodTypeAny, {
721
- special_schedule_day_run_student_id: string;
722
721
  student_boarding_status: StudentLegStatus;
723
722
  method: AttendanceMethod;
724
723
  mark_time: string;
@@ -726,14 +725,15 @@ declare const MarkSpecialScheduleDayRunStudentSchema: z.ZodObject<{
726
725
  student_attendance_image_url: string;
727
726
  student_attendance_image_key: string;
728
727
  student_attendance_image_name: string;
729
- actual_special_schedule_day_run_stop_id: string;
730
728
  time_zone_id: string;
731
- }, {
732
729
  special_schedule_day_run_student_id: string;
730
+ actual_special_schedule_day_run_stop_id: string;
731
+ }, {
733
732
  student_boarding_status: StudentLegStatus;
734
733
  method: AttendanceMethod;
735
- actual_special_schedule_day_run_stop_id: string;
736
734
  time_zone_id: string;
735
+ special_schedule_day_run_student_id: string;
736
+ actual_special_schedule_day_run_stop_id: string;
737
737
  mark_time?: string | undefined;
738
738
  note?: string | undefined;
739
739
  student_attendance_image_url?: string | undefined;
@@ -0,0 +1,172 @@
1
+ import { RequestType, YesNo, Status, PAGING, LoadParents, LoadChild, LoadChildCount, OrderBy } from '../../../core/Enums.js';
2
+ import { SBR, FBR } from '../../../core/BaseResponse.js';
3
+ import { z } from 'zod';
4
+ import { U as UserOrganisation, a as User, c as MasterVehicle, d as MasterDriver } from '../../../user_organisation_service-DyBK2Uak.js';
5
+ import '../../../zod_utils/zod_base_schema.js';
6
+ import '../reports/gps_models/FuelConsumptionMonthly.js';
7
+
8
+ interface GPSLockDigitalDoorLog extends Record<string, unknown> {
9
+ gps_lock_digital_door_log_id: string;
10
+ request_type: RequestType;
11
+ command?: string;
12
+ is_success: YesNo;
13
+ response?: string;
14
+ status: Status;
15
+ added_date_time: string;
16
+ modified_date_time: string;
17
+ organisation_id: string;
18
+ UserOrganisation?: UserOrganisation;
19
+ organisation_name?: string;
20
+ organisation_code?: string;
21
+ organisation_logo_url?: string;
22
+ user_id?: string;
23
+ User?: User;
24
+ user_details?: string;
25
+ user_image_url?: string;
26
+ vehicle_id: string;
27
+ MasterVehicle?: MasterVehicle;
28
+ vehicle_number?: string;
29
+ vehicle_type?: string;
30
+ driver_id?: string;
31
+ MasterDriver?: MasterDriver;
32
+ driver_details?: string;
33
+ driver_image_url?: string;
34
+ }
35
+ declare const GPSLockDigitalDoorLogSchema: z.ZodObject<{
36
+ organisation_id: z.ZodEffects<z.ZodString, string, string>;
37
+ user_id: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
38
+ vehicle_id: z.ZodEffects<z.ZodString, string, string>;
39
+ driver_id: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
40
+ request_type: z.ZodType<RequestType, z.ZodTypeDef, RequestType>;
41
+ command: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
42
+ is_success: z.ZodType<YesNo, z.ZodTypeDef, YesNo>;
43
+ response: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
44
+ status: z.ZodType<Status, z.ZodTypeDef, Status>;
45
+ }, "strip", z.ZodTypeAny, {
46
+ request_type: RequestType;
47
+ command: string;
48
+ is_success: YesNo;
49
+ response: string;
50
+ status: Status;
51
+ organisation_id: string;
52
+ user_id: string;
53
+ vehicle_id: string;
54
+ driver_id: string;
55
+ }, {
56
+ request_type: RequestType;
57
+ is_success: YesNo;
58
+ status: Status;
59
+ organisation_id: string;
60
+ vehicle_id: string;
61
+ command?: string | undefined;
62
+ response?: string | undefined;
63
+ user_id?: string | undefined;
64
+ driver_id?: string | undefined;
65
+ }>;
66
+ type GPSLockDigitalDoorLogDTO = z.infer<typeof GPSLockDigitalDoorLogSchema>;
67
+ declare const GPSLockDigitalDoorLogQuerySchema: z.ZodObject<{
68
+ search: z.ZodDefault<z.ZodEffects<z.ZodString, string, string>>;
69
+ status: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof Status>, "many">>>;
70
+ paging: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof PAGING>>>;
71
+ page_count: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodNumber>>, number, unknown>;
72
+ page_index: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodNumber>>, number, unknown>;
73
+ load_parents: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof LoadParents>>>;
74
+ load_parents_list: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
75
+ load_child: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof LoadChild>>>;
76
+ load_child_list: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
77
+ load_child_count: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof LoadChildCount>>>;
78
+ load_child_count_list: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
79
+ include_details: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
80
+ where_relations: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
81
+ order_by: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
82
+ name: z.ZodEffects<z.ZodString, string, string>;
83
+ field: z.ZodEffects<z.ZodString, string, string>;
84
+ direction: z.ZodType<OrderBy, z.ZodTypeDef, OrderBy>;
85
+ }, "strip", z.ZodTypeAny, {
86
+ name: string;
87
+ field: string;
88
+ direction: OrderBy;
89
+ }, {
90
+ name: string;
91
+ field: string;
92
+ direction: OrderBy;
93
+ }>, "many">>>;
94
+ include_master_data: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof YesNo>>>;
95
+ date_format_id: z.ZodEffects<z.ZodString, string, string>;
96
+ time_zone_id: z.ZodEffects<z.ZodString, string, string>;
97
+ } & {
98
+ gps_lock_digital_door_log_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
99
+ organisation_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
100
+ user_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
101
+ vehicle_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
102
+ driver_ids: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
103
+ request_type: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof RequestType>, "many">>>;
104
+ is_success: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof YesNo>, "many">>>;
105
+ }, "strip", z.ZodTypeAny, {
106
+ request_type: RequestType[];
107
+ is_success: YesNo[];
108
+ status: Status[];
109
+ search: string;
110
+ paging: PAGING;
111
+ page_count: number;
112
+ page_index: number;
113
+ load_parents: LoadParents;
114
+ load_parents_list: string[];
115
+ load_child: LoadChild;
116
+ load_child_list: string[];
117
+ load_child_count: LoadChildCount;
118
+ load_child_count_list: string[];
119
+ include_details: Record<string, any>;
120
+ where_relations: Record<string, any>;
121
+ order_by: {
122
+ name: string;
123
+ field: string;
124
+ direction: OrderBy;
125
+ }[];
126
+ include_master_data: YesNo;
127
+ date_format_id: string;
128
+ time_zone_id: string;
129
+ gps_lock_digital_door_log_ids: string[];
130
+ organisation_ids: string[];
131
+ user_ids: string[];
132
+ vehicle_ids: string[];
133
+ driver_ids: string[];
134
+ }, {
135
+ date_format_id: string;
136
+ time_zone_id: string;
137
+ request_type?: RequestType[] | undefined;
138
+ is_success?: YesNo[] | undefined;
139
+ status?: Status[] | undefined;
140
+ search?: string | undefined;
141
+ paging?: PAGING | undefined;
142
+ page_count?: unknown;
143
+ page_index?: unknown;
144
+ load_parents?: LoadParents | undefined;
145
+ load_parents_list?: string[] | undefined;
146
+ load_child?: LoadChild | undefined;
147
+ load_child_list?: string[] | undefined;
148
+ load_child_count?: LoadChildCount | undefined;
149
+ load_child_count_list?: string[] | undefined;
150
+ include_details?: Record<string, any> | undefined;
151
+ where_relations?: Record<string, any> | undefined;
152
+ order_by?: {
153
+ name: string;
154
+ field: string;
155
+ direction: OrderBy;
156
+ }[] | undefined;
157
+ include_master_data?: YesNo | undefined;
158
+ gps_lock_digital_door_log_ids?: string[] | undefined;
159
+ organisation_ids?: string[] | undefined;
160
+ user_ids?: string[] | undefined;
161
+ vehicle_ids?: string[] | undefined;
162
+ driver_ids?: string[] | undefined;
163
+ }>;
164
+ type GPSLockDigitalDoorLogQueryDTO = z.infer<typeof GPSLockDigitalDoorLogQuerySchema>;
165
+ declare const toGPSLockDigitalDoorLogPayload: (row: GPSLockDigitalDoorLog) => GPSLockDigitalDoorLogDTO;
166
+ declare const newGPSLockDigitalDoorLogPayload: () => GPSLockDigitalDoorLogDTO;
167
+ declare const findGPSLockDigitalDoorLogs: (data: GPSLockDigitalDoorLogQueryDTO) => Promise<FBR<GPSLockDigitalDoorLog[]>>;
168
+ declare const createGPSLockDigitalDoorLog: (data: GPSLockDigitalDoorLogDTO) => Promise<SBR>;
169
+ declare const updateGPSLockDigitalDoorLog: (id: string, data: GPSLockDigitalDoorLogDTO) => Promise<SBR>;
170
+ declare const deleteGPSLockDigitalDoorLog: (id: string) => Promise<SBR>;
171
+
172
+ export { type GPSLockDigitalDoorLog, type GPSLockDigitalDoorLogDTO, type GPSLockDigitalDoorLogQueryDTO, GPSLockDigitalDoorLogQuerySchema, GPSLockDigitalDoorLogSchema, createGPSLockDigitalDoorLog, deleteGPSLockDigitalDoorLog, findGPSLockDigitalDoorLogs, newGPSLockDigitalDoorLogPayload, toGPSLockDigitalDoorLogPayload, updateGPSLockDigitalDoorLog };