@7365admin1/core 2.20.0 → 2.22.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.
- package/CHANGELOG.md +12 -0
- package/dist/index.d.ts +582 -4
- package/dist/index.js +4189 -198
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4173 -197
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -1
package/dist/index.d.ts
CHANGED
|
@@ -475,6 +475,10 @@ declare function useOrgController(): {
|
|
|
475
475
|
getByEmail: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
476
476
|
};
|
|
477
477
|
|
|
478
|
+
declare enum SubscriptionType {
|
|
479
|
+
ORGANIZATION = "organization",
|
|
480
|
+
AFFILIATE = "affiliate"
|
|
481
|
+
}
|
|
478
482
|
type TSubscription = {
|
|
479
483
|
_id?: ObjectId;
|
|
480
484
|
user?: string | ObjectId;
|
|
@@ -1145,6 +1149,7 @@ declare function MFeedback(value: TFeedback): {
|
|
|
1145
1149
|
workOrderId: string | ObjectId;
|
|
1146
1150
|
};
|
|
1147
1151
|
|
|
1152
|
+
declare const feedbacks_namespace_collection = "feedbacks";
|
|
1148
1153
|
declare function useFeedbackRepo(): {
|
|
1149
1154
|
createIndex: () => Promise<void>;
|
|
1150
1155
|
createTextIndex: () => Promise<void>;
|
|
@@ -1283,6 +1288,7 @@ declare function MWorkOrder(value: TWorkOrder): {
|
|
|
1283
1288
|
deletedAt: string | Date;
|
|
1284
1289
|
};
|
|
1285
1290
|
|
|
1291
|
+
declare const work_orders_namespace_collection = "work-orders";
|
|
1286
1292
|
declare function useWorkOrderRepo(): {
|
|
1287
1293
|
createIndex: () => Promise<void>;
|
|
1288
1294
|
createTextIndex: () => Promise<void>;
|
|
@@ -1477,6 +1483,7 @@ declare function useCustomerController(): {
|
|
|
1477
1483
|
deleteCustomer: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1478
1484
|
};
|
|
1479
1485
|
|
|
1486
|
+
declare const addressSchema: Joi.ObjectSchema<any>;
|
|
1480
1487
|
declare enum SiteStatus {
|
|
1481
1488
|
ACTIVE = "active",
|
|
1482
1489
|
PENDING = "pending"
|
|
@@ -1575,6 +1582,7 @@ declare function useSiteRepo(): {
|
|
|
1575
1582
|
getByExactName: (name: string, orgId: string | ObjectId) => Promise<TSite[]>;
|
|
1576
1583
|
updateSiteIncidentCounter: (_id: string | ObjectId, incidentCounter: number, session?: ClientSession) => Promise<number>;
|
|
1577
1584
|
updateSiteById: (id: string | ObjectId, payload: TSite, session?: ClientSession) => Promise<number>;
|
|
1585
|
+
getAllSitesUnpaginated: () => Promise<bson.Document[]>;
|
|
1578
1586
|
};
|
|
1579
1587
|
|
|
1580
1588
|
declare function useSiteService(): {
|
|
@@ -1731,6 +1739,7 @@ declare function MBuildingUnit(value: TBuildingUnit): {
|
|
|
1731
1739
|
billing: TBilling[];
|
|
1732
1740
|
};
|
|
1733
1741
|
|
|
1742
|
+
declare const buildings_namespace_collection = "buildings";
|
|
1734
1743
|
declare function useBuildingRepo(): {
|
|
1735
1744
|
createIndexes: () => Promise<void>;
|
|
1736
1745
|
add: (value: TBuilding, session?: ClientSession) => Promise<ObjectId>;
|
|
@@ -1948,6 +1957,7 @@ declare function MVehicleTransaction(value: TVehicleTransaction): {
|
|
|
1948
1957
|
category: string;
|
|
1949
1958
|
};
|
|
1950
1959
|
|
|
1960
|
+
declare const vehicles_namespace_collection = "vehicles";
|
|
1951
1961
|
declare function useVehicleRepo(): {
|
|
1952
1962
|
createIndex: () => Promise<void>;
|
|
1953
1963
|
createTextIndex: () => Promise<void>;
|
|
@@ -2113,6 +2123,8 @@ type TCustomerSite = {
|
|
|
2113
2123
|
siteOrgName: string;
|
|
2114
2124
|
org: ObjectId | string;
|
|
2115
2125
|
status?: string;
|
|
2126
|
+
address?: SiteAddress;
|
|
2127
|
+
category?: SiteCategories;
|
|
2116
2128
|
createdAt?: string | Date;
|
|
2117
2129
|
updatedAt?: string | Date;
|
|
2118
2130
|
deletedAt?: string | Date;
|
|
@@ -2125,6 +2137,8 @@ declare function MCustomerSite(value: TCustomerSite): {
|
|
|
2125
2137
|
siteOrg: string | ObjectId;
|
|
2126
2138
|
siteOrgName: string;
|
|
2127
2139
|
org: string | ObjectId;
|
|
2140
|
+
address: SiteAddress | undefined;
|
|
2141
|
+
category: SiteCategories | undefined;
|
|
2128
2142
|
status: string;
|
|
2129
2143
|
createdAt: string | Date;
|
|
2130
2144
|
updatedAt: string | Date;
|
|
@@ -2382,7 +2396,6 @@ type TVisitorTransaction = {
|
|
|
2382
2396
|
contact: string;
|
|
2383
2397
|
}[];
|
|
2384
2398
|
visitorPass?: string | null;
|
|
2385
|
-
visitorId?: string | ObjectId;
|
|
2386
2399
|
expiredAt?: string | Date | null;
|
|
2387
2400
|
createdAt?: string | Date;
|
|
2388
2401
|
updatedAt?: string | Date;
|
|
@@ -2418,12 +2431,12 @@ declare function MVisitorTransaction(value: TVisitorTransaction): {
|
|
|
2418
2431
|
visitorPass: string | null | undefined;
|
|
2419
2432
|
unitName: string | undefined;
|
|
2420
2433
|
expiredAt: string | Date | null;
|
|
2421
|
-
visitorId: string | ObjectId;
|
|
2422
2434
|
createdAt: string | Date;
|
|
2423
2435
|
updatedAt: string | Date;
|
|
2424
2436
|
deletedAt: string | Date;
|
|
2425
2437
|
};
|
|
2426
2438
|
|
|
2439
|
+
declare const visitors_namespace_collection = "visitor.transactions";
|
|
2427
2440
|
declare function useVisitorTransactionRepo(): {
|
|
2428
2441
|
add: (value: TVisitorTransaction, session?: ClientSession) => Promise<ObjectId>;
|
|
2429
2442
|
getAll: ({ search, page, limit, sort, status, org, site, dateTo, dateFrom, type, checkedOut, plateNumber, }: {
|
|
@@ -2450,7 +2463,7 @@ declare function useVisitorTransactionRepo(): {
|
|
|
2450
2463
|
};
|
|
2451
2464
|
|
|
2452
2465
|
declare function useVisitorTransactionService(): {
|
|
2453
|
-
add: (value: TVisitorTransaction) => Promise<
|
|
2466
|
+
add: (value: TVisitorTransaction) => Promise<ObjectId>;
|
|
2454
2467
|
updateById: (id: string | ObjectId, value: TVisitorTransaction) => Promise<string>;
|
|
2455
2468
|
processTransactionDahuaStatus: () => Promise<void>;
|
|
2456
2469
|
};
|
|
@@ -2516,6 +2529,7 @@ declare function MGuestManagement(value: TGuestManagement): {
|
|
|
2516
2529
|
deletedAt: string | Date | undefined;
|
|
2517
2530
|
};
|
|
2518
2531
|
|
|
2532
|
+
declare const guests_namespace_collection = "visitor.guests";
|
|
2519
2533
|
declare function useGuestManagementRepo(): {
|
|
2520
2534
|
add: (value: TGuestManagement, session?: ClientSession) => Promise<ObjectId>;
|
|
2521
2535
|
getAll: ({ search, page, limit, sort, status, dateFrom, dateTo, org, site, }: {
|
|
@@ -2546,6 +2560,7 @@ declare function useGuestManagementController(): {
|
|
|
2546
2560
|
deleteVisitorGuest: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
2547
2561
|
};
|
|
2548
2562
|
|
|
2563
|
+
declare const site_people_namespace_collection = "site.people";
|
|
2549
2564
|
declare function usePersonRepo(): {
|
|
2550
2565
|
add: (value: TPerson, session?: ClientSession) => Promise<ObjectId>;
|
|
2551
2566
|
getAll: ({ search, page, limit, sort, status, dateFrom, dateTo, org, site, type, }: {
|
|
@@ -3317,6 +3332,7 @@ declare function MSiteFacilityBooking(value: TSiteFacilityBooking): {
|
|
|
3317
3332
|
deletedAt: string | Date | undefined;
|
|
3318
3333
|
};
|
|
3319
3334
|
|
|
3335
|
+
declare const facility_bookings_namespace_collection = "site.facilty-booking";
|
|
3320
3336
|
declare function useSiteFacilityBookingRepo(): {
|
|
3321
3337
|
add: (value: TSiteFacilityBooking, session?: ClientSession) => Promise<ObjectId>;
|
|
3322
3338
|
getAll: ({ search, page, limit, sort, site, status, }: {
|
|
@@ -3490,6 +3506,7 @@ declare function MBulletinBoard(value: TBulletinBoard): {
|
|
|
3490
3506
|
deletedAt: string | Date | undefined;
|
|
3491
3507
|
};
|
|
3492
3508
|
|
|
3509
|
+
declare const bulletin_boards_namespace_collection = "bulletin-boards";
|
|
3493
3510
|
declare function useBulletinBoardRepo(): {
|
|
3494
3511
|
add: (value: TBulletinBoard, session?: ClientSession) => Promise<ObjectId>;
|
|
3495
3512
|
getAll: ({ search, page, limit, sort, site, status, recipients, }: {
|
|
@@ -3716,6 +3733,7 @@ declare function MEventManagement(value: TEventManagement): {
|
|
|
3716
3733
|
deletedAt: string | Date | undefined;
|
|
3717
3734
|
};
|
|
3718
3735
|
|
|
3736
|
+
declare const events_namespace_collection = "event-management";
|
|
3719
3737
|
declare function useEventManagementRepo(): {
|
|
3720
3738
|
add: (value: TEventManagement, session?: ClientSession) => Promise<ObjectId>;
|
|
3721
3739
|
getAll: ({ search, page, limit, sort, site, status, type, date, }: {
|
|
@@ -4261,6 +4279,9 @@ declare function UseAccessManagementRepo(): {
|
|
|
4261
4279
|
cardId: string;
|
|
4262
4280
|
purpose: string;
|
|
4263
4281
|
}) => Promise<string>;
|
|
4282
|
+
checkoutVisitorRepo: (params: {
|
|
4283
|
+
userId: string;
|
|
4284
|
+
}) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
4264
4285
|
};
|
|
4265
4286
|
|
|
4266
4287
|
declare function useAccessManagementController(): {
|
|
@@ -4293,6 +4314,7 @@ declare function useAccessManagementController(): {
|
|
|
4293
4314
|
vmsgenerateQrCodes: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4294
4315
|
addVisitorAccessCard: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4295
4316
|
signQrCode: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4317
|
+
checkoutVisitor: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4296
4318
|
};
|
|
4297
4319
|
|
|
4298
4320
|
declare const DEVICE_STATUS: {
|
|
@@ -4916,6 +4938,7 @@ declare function useIncidentReportController(): {
|
|
|
4916
4938
|
getAllForVirtualPatrolLogs: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4917
4939
|
};
|
|
4918
4940
|
|
|
4941
|
+
declare const incidents_namespace_collection = "incident-reports";
|
|
4919
4942
|
declare function useIncidentReportRepo(): {
|
|
4920
4943
|
add: (value: TIncidentReport, session?: ClientSession) => Promise<ObjectId>;
|
|
4921
4944
|
getAll: ({ search, page, limit, sort, site, status, dateFrom, }: {
|
|
@@ -5282,4 +5305,559 @@ declare function useAddressRepo(): {
|
|
|
5282
5305
|
getByUserId: (user: string | ObjectId) => Promise<TAddress | null>;
|
|
5283
5306
|
};
|
|
5284
5307
|
|
|
5285
|
-
|
|
5308
|
+
declare enum Period {
|
|
5309
|
+
TODAY = "today",
|
|
5310
|
+
THIS_WEEK = "thisWeek",
|
|
5311
|
+
THIS_MONTH = "thisMonth"
|
|
5312
|
+
}
|
|
5313
|
+
declare const securityDashboardCollection = "security-dashboard";
|
|
5314
|
+
declare const PMDashboardCollection = "PM-dashboard";
|
|
5315
|
+
declare const pestDashboardCollection = "pest-dashboard";
|
|
5316
|
+
declare const poolDashboardCollection = "pool-dashboard";
|
|
5317
|
+
declare const mAndEDashboardCollection = "M&E-dashboard";
|
|
5318
|
+
declare const landscapeDashboardCollection = "landscape-dashboard";
|
|
5319
|
+
declare function getPeriodRangeWithPrevious(period: Period): {
|
|
5320
|
+
current: {
|
|
5321
|
+
start: string;
|
|
5322
|
+
end: string;
|
|
5323
|
+
};
|
|
5324
|
+
previous: {
|
|
5325
|
+
start: string;
|
|
5326
|
+
end: string;
|
|
5327
|
+
};
|
|
5328
|
+
};
|
|
5329
|
+
declare function calculatePercentage(current: number, previous: number): number;
|
|
5330
|
+
declare function useNewDashboardRepo(): {
|
|
5331
|
+
getSecurityDashboard: ({ siteId, feedback, workOrder, vehicle, building, visitor, incident, guest, }: {
|
|
5332
|
+
siteId: string;
|
|
5333
|
+
feedback?: Period | undefined;
|
|
5334
|
+
workOrder?: Period | undefined;
|
|
5335
|
+
vehicle?: Period | undefined;
|
|
5336
|
+
building?: Period | undefined;
|
|
5337
|
+
visitor?: Period | undefined;
|
|
5338
|
+
incident?: Period | undefined;
|
|
5339
|
+
guest?: Period | undefined;
|
|
5340
|
+
}) => Promise<any>;
|
|
5341
|
+
getPropertyManagementDashboard: ({ siteId, feedback, workOrder, sitePeople, facilityBooking, bulletinBoard, event, vehicle, building, visitor, incident, }: {
|
|
5342
|
+
siteId: string;
|
|
5343
|
+
feedback?: Period | undefined;
|
|
5344
|
+
workOrder?: Period | undefined;
|
|
5345
|
+
sitePeople?: Period | undefined;
|
|
5346
|
+
facilityBooking?: Period | undefined;
|
|
5347
|
+
bulletinBoard?: Period | undefined;
|
|
5348
|
+
event?: Period | undefined;
|
|
5349
|
+
vehicle?: Period | undefined;
|
|
5350
|
+
building?: Period | undefined;
|
|
5351
|
+
visitor?: Period | undefined;
|
|
5352
|
+
incident?: Period | undefined;
|
|
5353
|
+
}) => Promise<any>;
|
|
5354
|
+
getPestManagementDashboard: ({ siteId, feedback, workOrder, }: {
|
|
5355
|
+
siteId: string;
|
|
5356
|
+
feedback?: Period | undefined;
|
|
5357
|
+
workOrder?: Period | undefined;
|
|
5358
|
+
}) => Promise<any>;
|
|
5359
|
+
getPoolManagementDashboard: ({ siteId, feedback, workOrder, }: {
|
|
5360
|
+
siteId: string;
|
|
5361
|
+
feedback?: Period | undefined;
|
|
5362
|
+
workOrder?: Period | undefined;
|
|
5363
|
+
}) => Promise<any>;
|
|
5364
|
+
getMAndEManagementDashboard: ({ siteId, feedback, workOrder, }: {
|
|
5365
|
+
siteId: string;
|
|
5366
|
+
feedback?: Period | undefined;
|
|
5367
|
+
workOrder?: Period | undefined;
|
|
5368
|
+
}) => Promise<any>;
|
|
5369
|
+
getLandscapeDashboard: ({ siteId, feedback, workOrder, }: {
|
|
5370
|
+
siteId: string;
|
|
5371
|
+
feedback?: Period | undefined;
|
|
5372
|
+
workOrder?: Period | undefined;
|
|
5373
|
+
}) => Promise<any>;
|
|
5374
|
+
};
|
|
5375
|
+
|
|
5376
|
+
declare function useNewDashboardController(): {
|
|
5377
|
+
getSecurityDashboard: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
5378
|
+
getPropertyManagementDashboard: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
5379
|
+
getPestManagementDashboard: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
5380
|
+
getPoolManagementDashboard: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
5381
|
+
getMAndEManagementDashboard: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
5382
|
+
getLandscapeDashboard: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
5383
|
+
};
|
|
5384
|
+
|
|
5385
|
+
type TShifts = {
|
|
5386
|
+
name: string;
|
|
5387
|
+
checkIn: string;
|
|
5388
|
+
checkOut: string;
|
|
5389
|
+
lateCheckInAlert: string;
|
|
5390
|
+
alertFrequencyMins: number;
|
|
5391
|
+
earlyOutAlert: boolean;
|
|
5392
|
+
};
|
|
5393
|
+
type TManpowerMonitoring = {
|
|
5394
|
+
_id?: ObjectId;
|
|
5395
|
+
serviceProviderId?: string | ObjectId;
|
|
5396
|
+
siteId: string | ObjectId;
|
|
5397
|
+
siteName: string;
|
|
5398
|
+
shiftType: string;
|
|
5399
|
+
enabled: boolean;
|
|
5400
|
+
shifts: {
|
|
5401
|
+
"2-shifts": TShifts[];
|
|
5402
|
+
"3-shifts": TShifts[];
|
|
5403
|
+
};
|
|
5404
|
+
createdBy?: string | ObjectId;
|
|
5405
|
+
createdByName?: string;
|
|
5406
|
+
createdAt?: Date;
|
|
5407
|
+
updatedAt?: string | Date;
|
|
5408
|
+
emails?: string[];
|
|
5409
|
+
};
|
|
5410
|
+
type TManpowerSearchFilter = {
|
|
5411
|
+
page?: number;
|
|
5412
|
+
limit?: number;
|
|
5413
|
+
search?: string;
|
|
5414
|
+
};
|
|
5415
|
+
type TManpowerMonitoringUpdate = Partial<Pick<TManpowerMonitoring, "shiftType" | "enabled" | "shifts" | "updatedAt" | "emails">>;
|
|
5416
|
+
declare const shiftSchema: Joi.ObjectSchema<any>;
|
|
5417
|
+
declare const manpowerMonitoringSchema: Joi.ObjectSchema<any>;
|
|
5418
|
+
declare class MManpowerMonitoring implements Partial<TManpowerMonitoring> {
|
|
5419
|
+
_id?: ObjectId;
|
|
5420
|
+
serviceProviderId: string | ObjectId;
|
|
5421
|
+
siteId: string | ObjectId;
|
|
5422
|
+
siteName: string;
|
|
5423
|
+
shiftType: string;
|
|
5424
|
+
enabled: boolean;
|
|
5425
|
+
shifts: {
|
|
5426
|
+
"2-shifts": TShifts[];
|
|
5427
|
+
"3-shifts": TShifts[];
|
|
5428
|
+
};
|
|
5429
|
+
createdBy: string | ObjectId;
|
|
5430
|
+
createdByName: string;
|
|
5431
|
+
createdAt: Date;
|
|
5432
|
+
updatedAt: string | Date;
|
|
5433
|
+
emails: string[];
|
|
5434
|
+
constructor(data: TManpowerMonitoring);
|
|
5435
|
+
}
|
|
5436
|
+
|
|
5437
|
+
declare function useManpowerMonitoringRepo(): {
|
|
5438
|
+
createManpowerMonitoringSettings: (value: TManpowerMonitoring, session?: ClientSession) => Promise<mongodb.InsertOneResult<bson.Document>>;
|
|
5439
|
+
getAllManpowerSettings: ({ page, limit, search, }: TManpowerSearchFilter) => Promise<{
|
|
5440
|
+
items: any[];
|
|
5441
|
+
pages: number;
|
|
5442
|
+
pageRange: string;
|
|
5443
|
+
}>;
|
|
5444
|
+
getManpowerSettingsBySiteId: (_id: string | ObjectId, serviceProviderId?: string | ObjectId) => Promise<mongodb.WithId<bson.Document> | null>;
|
|
5445
|
+
updateManpowerMonitoringSettings: (_id: string | ObjectId, value: TManpowerMonitoringUpdate) => Promise<number>;
|
|
5446
|
+
multipleManpowerMonitoringSettings: (value: TManpowerMonitoring[]) => Promise<{
|
|
5447
|
+
updated: number;
|
|
5448
|
+
inserted: number;
|
|
5449
|
+
success: boolean;
|
|
5450
|
+
message: string;
|
|
5451
|
+
}>;
|
|
5452
|
+
getAllSites: (serviceProviderId: string | ObjectId) => Promise<any>;
|
|
5453
|
+
};
|
|
5454
|
+
|
|
5455
|
+
declare function useManpowerMonitoringSrvc(): {
|
|
5456
|
+
createManpowerMonitoringSettings: (payload: any) => Promise<mongodb.InsertOneResult<bson.Document>>;
|
|
5457
|
+
};
|
|
5458
|
+
|
|
5459
|
+
declare function useManpowerMonitoringCtrl(): {
|
|
5460
|
+
createManpowerMonitoringSettings: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5461
|
+
getAllManpowerSettings: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5462
|
+
getManpowerSettingsBySiteId: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5463
|
+
updateManpowerMonitoringSettings: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5464
|
+
multipleManpowerMonitoringSettings: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5465
|
+
getAllSites: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5466
|
+
};
|
|
5467
|
+
|
|
5468
|
+
type TDesignations = {
|
|
5469
|
+
title: string;
|
|
5470
|
+
shifts: {
|
|
5471
|
+
morningShift: number;
|
|
5472
|
+
afternoonShift?: number;
|
|
5473
|
+
nightShift: number;
|
|
5474
|
+
};
|
|
5475
|
+
};
|
|
5476
|
+
type TManpowerDesignations = {
|
|
5477
|
+
_id?: ObjectId;
|
|
5478
|
+
serviceProviderId?: string | ObjectId;
|
|
5479
|
+
siteId: string | ObjectId;
|
|
5480
|
+
siteName: string;
|
|
5481
|
+
designations: TDesignations[];
|
|
5482
|
+
createdBy?: string | ObjectId;
|
|
5483
|
+
createdByName?: string;
|
|
5484
|
+
createdAt?: Date;
|
|
5485
|
+
updatedAt?: string | Date;
|
|
5486
|
+
};
|
|
5487
|
+
type TManpowerDesignationsUpdate = Partial<Pick<TManpowerDesignations, "designations" | "updatedAt">>;
|
|
5488
|
+
declare const designationsSchema: Joi.ObjectSchema<any>;
|
|
5489
|
+
declare const manpowerDesignationsSchema: Joi.ObjectSchema<any>;
|
|
5490
|
+
declare class MManpowerDesignations implements Partial<TManpowerDesignations> {
|
|
5491
|
+
_id?: ObjectId;
|
|
5492
|
+
siteId: string | ObjectId;
|
|
5493
|
+
siteName: string;
|
|
5494
|
+
serviceProviderId: string | ObjectId;
|
|
5495
|
+
designations: TDesignations[];
|
|
5496
|
+
createdBy?: string | ObjectId;
|
|
5497
|
+
createdByName?: string;
|
|
5498
|
+
createdAt?: Date;
|
|
5499
|
+
updatedAt?: string | Date;
|
|
5500
|
+
constructor(data: Partial<TManpowerDesignations>);
|
|
5501
|
+
}
|
|
5502
|
+
|
|
5503
|
+
declare function useManpowerDesignationRepo(): {
|
|
5504
|
+
createManpowerDesignations: (value: TManpowerDesignations) => Promise<mongodb.InsertOneResult<bson.Document>>;
|
|
5505
|
+
getManpowerDesignationsBySiteId: (_id: string | ObjectId, serviceProviderId?: string | ObjectId) => Promise<mongodb.WithId<bson.Document> | null>;
|
|
5506
|
+
updateManpowerDesignations: (_id: string | ObjectId, value: TManpowerDesignationsUpdate) => Promise<number>;
|
|
5507
|
+
};
|
|
5508
|
+
|
|
5509
|
+
declare function useManpowerDesignationCtrl(): {
|
|
5510
|
+
createManpowerDesignations: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5511
|
+
getManpowerSettingsBySiteId: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5512
|
+
updateManpowerDesignations: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5513
|
+
};
|
|
5514
|
+
|
|
5515
|
+
declare enum DayOfWeek {
|
|
5516
|
+
SUNDAY = "sunday",
|
|
5517
|
+
MONDAY = "monday",
|
|
5518
|
+
TUESDAY = "tuesday",
|
|
5519
|
+
WEDNESDAY = "wednesday",
|
|
5520
|
+
THURSDAY = "thursday",
|
|
5521
|
+
FRIDAY = "friday",
|
|
5522
|
+
SATURDAY = "saturday"
|
|
5523
|
+
}
|
|
5524
|
+
declare const schemaOvernightParkingApprovalHours: Joi.ObjectSchema<any>;
|
|
5525
|
+
type TDaySchedule = {
|
|
5526
|
+
isEnabled: boolean;
|
|
5527
|
+
startTime: string | null;
|
|
5528
|
+
endTime: string | null;
|
|
5529
|
+
};
|
|
5530
|
+
type TOvernightParkingApprovalHours = {
|
|
5531
|
+
_id?: ObjectId;
|
|
5532
|
+
site: string | ObjectId;
|
|
5533
|
+
monday?: TDaySchedule | null;
|
|
5534
|
+
tuesday?: TDaySchedule | null;
|
|
5535
|
+
wednesday?: TDaySchedule | null;
|
|
5536
|
+
thursday?: TDaySchedule | null;
|
|
5537
|
+
friday?: TDaySchedule | null;
|
|
5538
|
+
saturday?: TDaySchedule | null;
|
|
5539
|
+
sunday?: TDaySchedule | null;
|
|
5540
|
+
autoApproveOvernightParking?: Boolean;
|
|
5541
|
+
createdAt?: Date | string;
|
|
5542
|
+
updatedAt?: Date | string;
|
|
5543
|
+
deletedAt?: Date | string;
|
|
5544
|
+
};
|
|
5545
|
+
declare function MOvernightParkingApprovalHours(value: TOvernightParkingApprovalHours): TOvernightParkingApprovalHours;
|
|
5546
|
+
|
|
5547
|
+
declare function useOvernightParkingRepo(): {
|
|
5548
|
+
upsert: (value: TOvernightParkingApprovalHours, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
5549
|
+
getSiteOvernightParking: (site: string | ObjectId) => Promise<any>;
|
|
5550
|
+
createIndexes: () => Promise<void>;
|
|
5551
|
+
};
|
|
5552
|
+
|
|
5553
|
+
declare function useOvernightParkingController(): {
|
|
5554
|
+
upsert: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
5555
|
+
getSiteOvernightParking: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
5556
|
+
};
|
|
5557
|
+
|
|
5558
|
+
declare enum OvernightParkingRequestStatus {
|
|
5559
|
+
PENDING = "pending",
|
|
5560
|
+
APPROVED = "approved",
|
|
5561
|
+
REJECTED = "rejected",
|
|
5562
|
+
DELETED = "deleted",
|
|
5563
|
+
EXPIRED = "expired"
|
|
5564
|
+
}
|
|
5565
|
+
declare enum OvernightParkingRequestSort {
|
|
5566
|
+
ID = "_id",
|
|
5567
|
+
CREATED_AT = "createdAt"
|
|
5568
|
+
}
|
|
5569
|
+
type TOvernightParkingRequest = {
|
|
5570
|
+
_id?: ObjectId;
|
|
5571
|
+
site: string | ObjectId;
|
|
5572
|
+
name: string;
|
|
5573
|
+
contact: string;
|
|
5574
|
+
email: string;
|
|
5575
|
+
isOvernightParking?: boolean;
|
|
5576
|
+
numberOfPassengers?: number;
|
|
5577
|
+
purposeOfVisit?: string;
|
|
5578
|
+
status?: OvernightParkingRequestStatus;
|
|
5579
|
+
comment?: string | null;
|
|
5580
|
+
createdAt?: string | Date;
|
|
5581
|
+
updatedAt?: string | Date;
|
|
5582
|
+
deletedAt?: string | Date;
|
|
5583
|
+
};
|
|
5584
|
+
declare const schemaOvernightParkingRequest: Joi.ObjectSchema<any>;
|
|
5585
|
+
declare const schemaUpdateOvernightParkingRequest: Joi.ObjectSchema<any>;
|
|
5586
|
+
declare function MOvernightParkingRequest(value: TOvernightParkingRequest): {
|
|
5587
|
+
createdAt: string;
|
|
5588
|
+
updatedAt: string | Date | undefined;
|
|
5589
|
+
deletedAt: string | Date | undefined;
|
|
5590
|
+
_id?: ObjectId | undefined;
|
|
5591
|
+
site: string | ObjectId;
|
|
5592
|
+
name: string;
|
|
5593
|
+
contact: string;
|
|
5594
|
+
email: string;
|
|
5595
|
+
isOvernightParking?: boolean | undefined;
|
|
5596
|
+
numberOfPassengers?: number | undefined;
|
|
5597
|
+
purposeOfVisit?: string | undefined;
|
|
5598
|
+
status?: OvernightParkingRequestStatus | undefined;
|
|
5599
|
+
comment?: string | null | undefined;
|
|
5600
|
+
};
|
|
5601
|
+
|
|
5602
|
+
declare const overnight_parking_requests_namespace_collection = "site.overnight-parking-requests";
|
|
5603
|
+
declare function useOvernightParkingRequestRepo(): {
|
|
5604
|
+
add: (value: TOvernightParkingRequest, session?: ClientSession) => Promise<ObjectId>;
|
|
5605
|
+
getAll: ({ site, page, limit, sort, status, }: {
|
|
5606
|
+
site: string | ObjectId;
|
|
5607
|
+
page: number;
|
|
5608
|
+
limit: number;
|
|
5609
|
+
sort: Record<string, 1 | -1>;
|
|
5610
|
+
status: string;
|
|
5611
|
+
}) => Promise<{}>;
|
|
5612
|
+
getOvernightParkingRequestById: (id: string | ObjectId) => Promise<{}>;
|
|
5613
|
+
updateOvernightParkingRequestById: (id: string | ObjectId, value: TOvernightParkingRequest, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
5614
|
+
deleteOvernightParkingRequestById: (id: string | ObjectId, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
5615
|
+
updateExpiredRequests: (site: string | ObjectId, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
5616
|
+
};
|
|
5617
|
+
|
|
5618
|
+
declare function useOvernightParkingRequestService(): {
|
|
5619
|
+
add: (value: TOvernightParkingRequest) => Promise<bson.ObjectId>;
|
|
5620
|
+
updateOvernightParkingRequestById: (id: string, value: TOvernightParkingRequest) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
5621
|
+
deleteOvernightParkingRequestById: (id: string) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
5622
|
+
processExpiredRequests: () => Promise<void>;
|
|
5623
|
+
};
|
|
5624
|
+
|
|
5625
|
+
declare function useOvernightParkingRequestController(): {
|
|
5626
|
+
add: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
5627
|
+
getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
5628
|
+
getOvernightParkingRequestById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
5629
|
+
updateOvernightParkingRequestById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
5630
|
+
deleteOvernightParkingRequestById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
5631
|
+
};
|
|
5632
|
+
|
|
5633
|
+
declare function useHrmLabsAttendanceSrvc(): {
|
|
5634
|
+
getAttendanceData: (payload: any) => Promise<{
|
|
5635
|
+
success: boolean;
|
|
5636
|
+
message: string;
|
|
5637
|
+
items?: undefined;
|
|
5638
|
+
pages?: undefined;
|
|
5639
|
+
pageRange?: undefined;
|
|
5640
|
+
count?: undefined;
|
|
5641
|
+
} | {
|
|
5642
|
+
success: boolean;
|
|
5643
|
+
message: string;
|
|
5644
|
+
items: never[];
|
|
5645
|
+
pages: number;
|
|
5646
|
+
pageRange: string;
|
|
5647
|
+
count: {};
|
|
5648
|
+
} | {
|
|
5649
|
+
items: any[];
|
|
5650
|
+
pages: number;
|
|
5651
|
+
pageRange: string;
|
|
5652
|
+
success?: undefined;
|
|
5653
|
+
message?: undefined;
|
|
5654
|
+
count?: undefined;
|
|
5655
|
+
}>;
|
|
5656
|
+
getAttendanceDataCount: (payload: any) => Promise<{
|
|
5657
|
+
success: boolean;
|
|
5658
|
+
message: string;
|
|
5659
|
+
totalCount?: undefined;
|
|
5660
|
+
} | {
|
|
5661
|
+
totalCount: {
|
|
5662
|
+
dayShift: {
|
|
5663
|
+
actual: any;
|
|
5664
|
+
expected: any;
|
|
5665
|
+
};
|
|
5666
|
+
afternoonShift: {
|
|
5667
|
+
actual: any;
|
|
5668
|
+
expected: any;
|
|
5669
|
+
};
|
|
5670
|
+
nightShift: {
|
|
5671
|
+
actual: any;
|
|
5672
|
+
expected: any;
|
|
5673
|
+
};
|
|
5674
|
+
};
|
|
5675
|
+
success?: undefined;
|
|
5676
|
+
message?: undefined;
|
|
5677
|
+
}>;
|
|
5678
|
+
getAllAttendance: (payload: any) => Promise<{
|
|
5679
|
+
success: boolean;
|
|
5680
|
+
message: string;
|
|
5681
|
+
items?: undefined;
|
|
5682
|
+
count?: undefined;
|
|
5683
|
+
countPerJobTitle?: undefined;
|
|
5684
|
+
totalCount?: undefined;
|
|
5685
|
+
countPerStatus?: undefined;
|
|
5686
|
+
} | {
|
|
5687
|
+
success: boolean;
|
|
5688
|
+
message: string;
|
|
5689
|
+
items: never[];
|
|
5690
|
+
count: {};
|
|
5691
|
+
countPerJobTitle: {
|
|
5692
|
+
name: any;
|
|
5693
|
+
count: number;
|
|
5694
|
+
total: any;
|
|
5695
|
+
}[];
|
|
5696
|
+
totalCount: {
|
|
5697
|
+
dayShift: {
|
|
5698
|
+
actual: number;
|
|
5699
|
+
expected: any;
|
|
5700
|
+
};
|
|
5701
|
+
afternoonShift: {
|
|
5702
|
+
actual: number;
|
|
5703
|
+
expected: any;
|
|
5704
|
+
};
|
|
5705
|
+
nightShift: {
|
|
5706
|
+
actual: number;
|
|
5707
|
+
expected: any;
|
|
5708
|
+
};
|
|
5709
|
+
};
|
|
5710
|
+
countPerStatus: {
|
|
5711
|
+
onTime: number;
|
|
5712
|
+
late: number;
|
|
5713
|
+
noShow: number;
|
|
5714
|
+
earlyOut: number;
|
|
5715
|
+
totalCount: number;
|
|
5716
|
+
};
|
|
5717
|
+
} | {
|
|
5718
|
+
items: any;
|
|
5719
|
+
countPerJobTitle: {
|
|
5720
|
+
name: any;
|
|
5721
|
+
count: number;
|
|
5722
|
+
total: any;
|
|
5723
|
+
}[];
|
|
5724
|
+
totalCount: {
|
|
5725
|
+
dayShift: {
|
|
5726
|
+
actual: any;
|
|
5727
|
+
expected: any;
|
|
5728
|
+
};
|
|
5729
|
+
afternoonShift: {
|
|
5730
|
+
actual: any;
|
|
5731
|
+
expected: any;
|
|
5732
|
+
};
|
|
5733
|
+
nightShift: {
|
|
5734
|
+
actual: any;
|
|
5735
|
+
expected: any;
|
|
5736
|
+
};
|
|
5737
|
+
};
|
|
5738
|
+
countPerStatus: {
|
|
5739
|
+
onTime: number;
|
|
5740
|
+
late: number;
|
|
5741
|
+
noShow: number;
|
|
5742
|
+
earlyOut: number;
|
|
5743
|
+
totalCount: number;
|
|
5744
|
+
};
|
|
5745
|
+
success?: undefined;
|
|
5746
|
+
message?: undefined;
|
|
5747
|
+
count?: undefined;
|
|
5748
|
+
}>;
|
|
5749
|
+
getChartAttendanceData: (payload: any) => Promise<{
|
|
5750
|
+
success: boolean;
|
|
5751
|
+
message: string;
|
|
5752
|
+
items?: undefined;
|
|
5753
|
+
pages?: undefined;
|
|
5754
|
+
pageRange?: undefined;
|
|
5755
|
+
count?: undefined;
|
|
5756
|
+
chartCount?: undefined;
|
|
5757
|
+
} | {
|
|
5758
|
+
success: boolean;
|
|
5759
|
+
message: string;
|
|
5760
|
+
items: never[];
|
|
5761
|
+
pages: number;
|
|
5762
|
+
pageRange: string;
|
|
5763
|
+
count: {};
|
|
5764
|
+
chartCount?: undefined;
|
|
5765
|
+
} | {
|
|
5766
|
+
chartCount: {
|
|
5767
|
+
date: string;
|
|
5768
|
+
late: number;
|
|
5769
|
+
under: number;
|
|
5770
|
+
over: number;
|
|
5771
|
+
normal: number;
|
|
5772
|
+
}[];
|
|
5773
|
+
success?: undefined;
|
|
5774
|
+
message?: undefined;
|
|
5775
|
+
items?: undefined;
|
|
5776
|
+
pages?: undefined;
|
|
5777
|
+
pageRange?: undefined;
|
|
5778
|
+
count?: undefined;
|
|
5779
|
+
}>;
|
|
5780
|
+
};
|
|
5781
|
+
|
|
5782
|
+
declare function useHrmLabsAttendanceCtrl(): {
|
|
5783
|
+
getAttendanceData: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5784
|
+
getAttendanceDataCount: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5785
|
+
getAllAttendance: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5786
|
+
getChartAttendanceData: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5787
|
+
};
|
|
5788
|
+
|
|
5789
|
+
type TRemarks = {
|
|
5790
|
+
name: string;
|
|
5791
|
+
remark: {
|
|
5792
|
+
isAcknowledged: boolean;
|
|
5793
|
+
status: string;
|
|
5794
|
+
acknowledgementRemarks: string;
|
|
5795
|
+
acknowledgedAt: string;
|
|
5796
|
+
};
|
|
5797
|
+
};
|
|
5798
|
+
type TManpowerRemarks = {
|
|
5799
|
+
_id?: ObjectId;
|
|
5800
|
+
serviceProviderId?: string | ObjectId;
|
|
5801
|
+
siteId: string | ObjectId;
|
|
5802
|
+
siteName: string;
|
|
5803
|
+
remarks: TRemarks[];
|
|
5804
|
+
createdBy?: string | ObjectId;
|
|
5805
|
+
createdByName?: string;
|
|
5806
|
+
createdAt?: Date;
|
|
5807
|
+
createdAtSGT?: string;
|
|
5808
|
+
updatedAt?: string | Date;
|
|
5809
|
+
morningAlertTime?: string;
|
|
5810
|
+
afternoonAlertTime?: string;
|
|
5811
|
+
nightAlertTime?: string;
|
|
5812
|
+
status?: string;
|
|
5813
|
+
};
|
|
5814
|
+
type TManpowerRemarksUpdate = Partial<Pick<TManpowerRemarks, "remarks" | "updatedAt" | "createdBy" | "createdByName">>;
|
|
5815
|
+
type TManpowerRemarksStatusUpdate = Partial<Pick<TManpowerRemarks, "status">>;
|
|
5816
|
+
declare const remarksSchema: Joi.ObjectSchema<any>;
|
|
5817
|
+
declare const manpowerRemarksSchema: Joi.ObjectSchema<any>;
|
|
5818
|
+
declare class MManpowerRemarks implements Partial<TManpowerRemarks> {
|
|
5819
|
+
_id?: ObjectId;
|
|
5820
|
+
serviceProviderId: string | ObjectId;
|
|
5821
|
+
siteId: string | ObjectId;
|
|
5822
|
+
siteName: string;
|
|
5823
|
+
remarks: TRemarks[];
|
|
5824
|
+
createdBy?: string | ObjectId;
|
|
5825
|
+
createdByName?: string;
|
|
5826
|
+
createdAt?: Date;
|
|
5827
|
+
createdAtSGT?: string;
|
|
5828
|
+
updatedAt?: string | Date;
|
|
5829
|
+
morningAlertTime?: string;
|
|
5830
|
+
afternoonAlertTime?: string;
|
|
5831
|
+
nightAlertTime?: string;
|
|
5832
|
+
status?: string;
|
|
5833
|
+
constructor(data: Partial<TManpowerRemarks>);
|
|
5834
|
+
}
|
|
5835
|
+
|
|
5836
|
+
declare function useManpowerRemarksRepo(): {
|
|
5837
|
+
createManpowerRemarks: (value: TManpowerRemarks, session?: ClientSession) => Promise<mongodb.InsertOneResult<bson.Document>>;
|
|
5838
|
+
getManpowerRemarksAllSite: ({ page, limit, serviceProviderId, search, status, date, }: {
|
|
5839
|
+
page?: number | undefined;
|
|
5840
|
+
limit?: number | undefined;
|
|
5841
|
+
serviceProviderId?: string | undefined;
|
|
5842
|
+
search?: string | undefined;
|
|
5843
|
+
status?: string | undefined;
|
|
5844
|
+
date?: string | undefined;
|
|
5845
|
+
}) => Promise<{
|
|
5846
|
+
items: any[];
|
|
5847
|
+
pages: number;
|
|
5848
|
+
pageRange: string;
|
|
5849
|
+
}>;
|
|
5850
|
+
getManpowerRemarksBySiteId: (_id: string | ObjectId, date: string, serviceProviderId?: string | ObjectId) => Promise<mongodb.WithId<bson.Document> | null>;
|
|
5851
|
+
updateManpowerRemarks: (_id: string | ObjectId, value: TManpowerRemarksUpdate) => Promise<number>;
|
|
5852
|
+
updateRemarksStatus: (_id: string | ObjectId, value: TManpowerRemarksStatusUpdate) => Promise<number>;
|
|
5853
|
+
};
|
|
5854
|
+
|
|
5855
|
+
declare function useManpowerRemarkCtrl(): {
|
|
5856
|
+
createManpowerRemark: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5857
|
+
getManpowerRemarksAllSite: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5858
|
+
getManpowerRemarksBySiteId: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5859
|
+
updateManpowerMonitoringSettings: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5860
|
+
updateRemarksStatus: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
5861
|
+
};
|
|
5862
|
+
|
|
5863
|
+
export { ANPRMode, AccessTypeProps, AssignCardConfig, BuildingStatus, BulkCardUpdate, BulletinRecipient, BulletinSort, BulletinStatus, Camera, CameraType, DEVICE_STATUS, DayOfWeek, EAccessCardTypes, EAccessCardUserTypes, FacilitySort, FacilityStatus, GuestSort, GuestStatus, IAccessCard, IAccessCardTransaction, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBillingConfiguration, MBillingItem, MBuilding, MBuildingUnit, MBulletinBoard, MBulletinVideo, MChat, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MGuestManagement, MIncidentReport, MManpowerDesignations, MManpowerMonitoring, MManpowerRemarks, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MOvernightParkingApprovalHours, MOvernightParkingRequest, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPromoCode, MRobot, MRole, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubscription, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVisitorTransaction, MWorkOrder, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PERSON_TYPES, PMDashboardCollection, Period, PersonType, PersonTypes, QrTagProps, SiteAddress, SiteCategories, SiteStatus, SortFields, SortOrder, SubscriptionType, TAccessMngmntSettings, TActionStatus, TAddress, TAffectedEntities, TAffectedInjured, TAttendance, TAttendanceCheckIn, TAttendanceCheckOut, TAttendanceCheckTime, TAttendanceLocation, TAttendanceSettings, TAttendanceSettingsGetBySite, TAuthorities, TAuthoritiesCalled, TBilling, TBillingConfiguration, TBillingItem, TBuilding, TBuildingUnit, TBulletinBoard, TBulletinVideo, TCamera, TChat, TCheckPoint$1 as TCheckPoint, TComplaintInfo, TComplaintReceivedTo, TCounter, TCustomer, TCustomerSite, TDayNumber, TDaySchedule, TDefaultAccessCard, TDesignations, TDocs, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TManpowerDesignations, TManpowerDesignationsUpdate, TManpowerMonitoring, TManpowerMonitoringUpdate, TManpowerRemarks, TManpowerRemarksStatusUpdate, TManpowerRemarksUpdate, TManpowerSearchFilter, TMember, TMemberUpdateStatus, TMiniRole, TNfcPatrolLog, TNfcPatrolRoute, TNfcPatrolRouteEdit, TNfcPatrolSettings, TNfcPatrolSettingsGetBySite, TNfcPatrolSettingsUpdate, TNfcPatrolTag, TNfcPatrolTagConfigureReset, TNfcPatrolTagEdit, TNfcPatrolTagUpdateData, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TOvernightParkingApprovalHours, TOvernightParkingRequest, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPrice, TPriceType, TPromoCode, TPromoTier, TRecipientOfComplaint, TRemarks, TResident, TRobot, TRobotMetadata, TRole, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TShifts, TSite, TSiteCamera, TSiteFacility, TSiteFacilityBooking, TSiteInfo, TSiteMetadata, TSiteUpdateBlock, TStatementOfAccount, TSubmissionForm, TSubscription, TUnitBilling, TUnits, TUpdateName, TUser, TUserCreate, TVehicle, TVehicleTransaction, TVehicleUpdate, TVerification, TVerificationMetadata, TVisitorTransaction, TWorkOrder, TWorkOrderMetadata, TWorkOrderUpdate, TWorkOrderUpdateStatus, TWorkOrderUpdateToCompleted, TanyoneDamageToProperty, UseAccessManagementRepo, VehicleCategory, VehicleOrder, VehicleSort, VehicleStatus, VehicleType, VisitorSort, VisitorStatus, addressSchema, allowedFieldsSite, allowedNatures, attendanceSchema, attendanceSettingsSchema, buildings_namespace_collection, bulletin_boards_namespace_collection, calculatePercentage, chatSchema, customerSchema, designationsSchema, events_namespace_collection, facility_bookings_namespace_collection, feedbackSchema, feedbacks_namespace_collection, formatDahuaDate, getPeriodRangeWithPrevious, guests_namespace_collection, incidentReport, incidentReportLog, incidents_namespace_collection, landscapeDashboardCollection, logCamera, mAndEDashboardCollection, manpowerDesignationsSchema, manpowerMonitoringSchema, manpowerRemarksSchema, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, orgSchema, overnight_parking_requests_namespace_collection, pestDashboardCollection, poolDashboardCollection, promoCodeSchema, remarksSchema, robotSchema, schema, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaGuestManagement, schemaIncidentReport, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaServiceProvider, schemaServiceProviderBilling, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaUnitBilling, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateGuestManagement, schemaUpdateIncidentReport, schemaUpdateOccurrenceBook, schemaUpdateOccurrenceEntry, schemaUpdateOccurrenceSubject, schemaUpdateOnlineForm, schemaUpdateOptions, schemaUpdateOvernightParkingRequest, schemaUpdatePatrolLog, schemaUpdatePatrolQuestion, schemaUpdatePatrolRoute, schemaUpdatePerson, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteFacilityBooking, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, securityDashboardCollection, shiftSchema, siteSchema, site_people_namespace_collection, tokenSchema, updateSiteSchema, useAccessManagementController, useAddressRepo, useAttendanceController, useAttendanceRepository, useAttendanceSettingsController, useAttendanceSettingsRepository, useAttendanceSettingsService, useAuthController, useAuthService, useBuildingController, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useBulletinBoardController, useBulletinBoardRepo, useBulletinBoardService, useBulletinVideoController, useBulletinVideoRepo, useBulletinVideoService, useChatController, useChatRepo, useCounterModel, useCounterRepo, useCustomerController, useCustomerRepo, useCustomerSiteController, useCustomerSiteRepo, useCustomerSiteService, useDahuaService, useDashboardController, useDashboardRepo, useDocumentManagementController, useDocumentManagementRepo, useDocumentManagementService, useEntryPassSettingsController, useEntryPassSettingsRepo, useEventManagementController, useEventManagementRepo, useEventManagementService, useFeedbackController, useFeedbackRepo, useFeedbackService, useFileController, useFileRepo, useFileService, useGuestManagementController, useGuestManagementRepo, useGuestManagementService, useHrmLabsAttendanceCtrl, useHrmLabsAttendanceSrvc, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useManpowerDesignationCtrl, useManpowerDesignationRepo, useManpowerMonitoringCtrl, useManpowerMonitoringRepo, useManpowerMonitoringSrvc, useManpowerRemarkCtrl, useManpowerRemarksRepo, useMemberController, useMemberRepo, useNewDashboardController, useNewDashboardRepo, useNfcPatrolLogController, useNfcPatrolLogRepo, useNfcPatrolLogService, useNfcPatrolRouteController, useNfcPatrolRouteRepo, useNfcPatrolRouteService, useNfcPatrolSettingsController, useNfcPatrolSettingsRepository, useNfcPatrolSettingsService, useNfcPatrolTagController, useNfcPatrolTagRepo, useNfcPatrolTagService, useOccurrenceBookController, useOccurrenceBookRepo, useOccurrenceBookService, useOccurrenceEntryController, useOccurrenceEntryRepo, useOccurrenceEntryService, useOccurrenceSubjectController, useOccurrenceSubjectRepo, useOccurrenceSubjectService, useOnlineFormController, useOnlineFormRepo, useOrgController, useOrgRepo, useOvernightParkingController, useOvernightParkingRepo, useOvernightParkingRequestController, useOvernightParkingRequestRepo, useOvernightParkingRequestService, usePatrolLogController, usePatrolLogRepo, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePriceController, usePriceModel, usePriceRepo, usePromoCodeController, usePromoCodeRepo, useRobotController, useRobotRepo, useRobotService, useRoleController, useRoleRepo, useServiceProviderBillingController, useServiceProviderBillingRepo, useServiceProviderBillingService, useServiceProviderController, useServiceProviderRepo, useSessionRepo, useSiteBillingConfigurationController, useSiteBillingConfigurationRepo, useSiteBillingItemController, useSiteBillingItemRepo, useSiteCameraController, useSiteCameraRepo, useSiteCameraService, useSiteController, useSiteFacilityBookingController, useSiteFacilityBookingRepo, useSiteFacilityBookingService, useSiteFacilityController, useSiteFacilityRepo, useSiteFacilityService, useSiteRepo, useSiteService, useSiteUnitBillingController, useSiteUnitBillingRepo, useSiteUnitBillingService, useStatementOfAccountController, useStatementOfAccountRepo, useSubscriptionController, useSubscriptionRepo, useSubscriptionService, useUserController, useUserRepo, useUserService, useVehicleController, useVehicleRepo, useVehicleService, useVerificationController, useVerificationRepo, useVerificationService, useVisitorTransactionController, useVisitorTransactionRepo, useVisitorTransactionService, useWorkOrderController, useWorkOrderRepo, useWorkOrderService, userSchema, vehicleSchema, vehicles_namespace_collection, visitors_namespace_collection, workOrderSchema, work_orders_namespace_collection };
|