@7365admin1/core 2.14.0 → 2.16.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 +95 -19
- package/dist/index.js +1355 -254
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1348 -252
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/tsconfig.json +1 -3
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1771,7 +1771,7 @@ declare function useDahuaService(): {
|
|
|
1771
1771
|
|
|
1772
1772
|
type TVehicle = {
|
|
1773
1773
|
_id?: ObjectId;
|
|
1774
|
-
plateNumber: string;
|
|
1774
|
+
plateNumber: string | string[];
|
|
1775
1775
|
type: string;
|
|
1776
1776
|
category: string;
|
|
1777
1777
|
name: string;
|
|
@@ -1792,13 +1792,34 @@ type TVehicle = {
|
|
|
1792
1792
|
createdAt?: Date | string;
|
|
1793
1793
|
updatedAt?: Date | string;
|
|
1794
1794
|
deletedAt?: Date | string;
|
|
1795
|
+
expiredAt?: Date | string;
|
|
1795
1796
|
};
|
|
1796
|
-
type TVehicleUpdate = Partial<Pick<TVehicle, "name" | "phoneNumber" | "block" | "level" | "unit" | "plateNumber">>;
|
|
1797
|
-
declare
|
|
1798
|
-
|
|
1797
|
+
type TVehicleUpdate = Partial<Pick<TVehicle, "name" | "phoneNumber" | "block" | "level" | "unit" | "plateNumber" | "recNo">>;
|
|
1798
|
+
declare enum VehicleType {
|
|
1799
|
+
WHITELIST = "whitelist",
|
|
1800
|
+
BLOCKLIST = "blocklist"
|
|
1801
|
+
}
|
|
1802
|
+
declare enum VehicleCategory {
|
|
1803
|
+
RESIDENT = "resident",
|
|
1804
|
+
VISITOR = "visitor"
|
|
1805
|
+
}
|
|
1806
|
+
declare enum VehicleStatus {
|
|
1807
|
+
PENDING = "pending",
|
|
1808
|
+
ACTIVE = "active",
|
|
1809
|
+
INACTIVE = "inactive",
|
|
1810
|
+
DELETED = "deleted"
|
|
1811
|
+
}
|
|
1812
|
+
declare enum OrgNature {
|
|
1813
|
+
PROPERTY_MANAGEMENT_AGENCY = "property_management_agency",
|
|
1814
|
+
SECURITY_AGENCY = "security_agency"
|
|
1815
|
+
}
|
|
1816
|
+
declare enum ANPRMode {
|
|
1817
|
+
TRAFFIC_REDLIST = "TrafficRedList",
|
|
1818
|
+
TRAFFIC_BLACKLIST = "TrafficBlackList"
|
|
1819
|
+
}
|
|
1799
1820
|
declare const vehicleSchema: Joi.ObjectSchema<any>;
|
|
1800
1821
|
declare function MVehicle(value: TVehicle): {
|
|
1801
|
-
plateNumber: string;
|
|
1822
|
+
plateNumber: string | string[];
|
|
1802
1823
|
type: string;
|
|
1803
1824
|
category: string;
|
|
1804
1825
|
name: string;
|
|
@@ -1816,7 +1837,7 @@ declare function MVehicle(value: TVehicle): {
|
|
|
1816
1837
|
end: string | Date;
|
|
1817
1838
|
status: string;
|
|
1818
1839
|
unitName: string;
|
|
1819
|
-
createdAt: string
|
|
1840
|
+
createdAt: string;
|
|
1820
1841
|
updatedAt: string | Date;
|
|
1821
1842
|
deletedAt: string | Date;
|
|
1822
1843
|
};
|
|
@@ -1848,26 +1869,37 @@ declare function MVehicleTransaction(value: TVehicleTransaction): {
|
|
|
1848
1869
|
|
|
1849
1870
|
declare function useVehicleRepo(): {
|
|
1850
1871
|
createIndex: () => Promise<void>;
|
|
1872
|
+
createTextIndex: () => Promise<void>;
|
|
1851
1873
|
add: (value: TVehicle, session?: ClientSession) => Promise<ObjectId>;
|
|
1852
|
-
getVehicles: ({ page, limit, search, sort, type, category, }: {
|
|
1874
|
+
getVehicles: ({ page, limit, search, sort, type, category, status, }: {
|
|
1853
1875
|
page?: number | undefined;
|
|
1854
1876
|
limit?: number | undefined;
|
|
1855
1877
|
search?: string | undefined;
|
|
1856
1878
|
sort?: Record<string, any> | undefined;
|
|
1857
1879
|
type?: string | undefined;
|
|
1858
1880
|
category?: string | undefined;
|
|
1881
|
+
status?: string | undefined;
|
|
1859
1882
|
}) => Promise<{}>;
|
|
1860
1883
|
getSeasonPassTypes: (site: string | ObjectId) => Promise<{}>;
|
|
1861
|
-
getVehicleById: (_id: string | ObjectId) => Promise<
|
|
1862
|
-
updateVehicle: (_id: string | ObjectId, value: TVehicleUpdate) => Promise<number>;
|
|
1884
|
+
getVehicleById: (_id: string | ObjectId) => Promise<any>;
|
|
1885
|
+
updateVehicle: (_id: string | ObjectId, value: TVehicleUpdate, session?: ClientSession) => Promise<number>;
|
|
1863
1886
|
deleteVehicle: (_id: string | ObjectId, session?: ClientSession) => Promise<number>;
|
|
1864
1887
|
getByPlaceNumber: (value: string) => Promise<{}>;
|
|
1865
1888
|
getVehicleByPlateNumber: (plateNumber: string) => Promise<TVehicle | null>;
|
|
1889
|
+
getVehiclesByNRIC: ({ page, limit, nric, sort, }: {
|
|
1890
|
+
page?: number | undefined;
|
|
1891
|
+
limit?: number | undefined;
|
|
1892
|
+
nric?: string | undefined;
|
|
1893
|
+
sort?: Record<string, any> | undefined;
|
|
1894
|
+
}) => Promise<{}>;
|
|
1895
|
+
deleteExpiredVehicles: (session?: ClientSession) => Promise<number>;
|
|
1866
1896
|
};
|
|
1867
1897
|
|
|
1868
1898
|
declare function useVehicleService(): {
|
|
1869
1899
|
add: (value: TVehicle) => Promise<string>;
|
|
1870
|
-
deleteVehicle: (_id: string, recno: string, site: string, bypass?: boolean) => Promise<string>;
|
|
1900
|
+
deleteVehicle: (_id: string, recno: string, site: string, type: string, bypass?: boolean) => Promise<string>;
|
|
1901
|
+
approveVehicleById: (id: string, orgId: string, siteId: string) => Promise<string>;
|
|
1902
|
+
processDeletingExpiredVehicles: () => Promise<string>;
|
|
1871
1903
|
};
|
|
1872
1904
|
|
|
1873
1905
|
declare function useVehicleController(): {
|
|
@@ -1877,6 +1909,8 @@ declare function useVehicleController(): {
|
|
|
1877
1909
|
getVehicleById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1878
1910
|
updateVehicle: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1879
1911
|
deleteVehicle: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1912
|
+
approveVehicleById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1913
|
+
getVehiclesByNRIC: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1880
1914
|
};
|
|
1881
1915
|
|
|
1882
1916
|
type TCamera = {
|
|
@@ -2385,7 +2419,7 @@ declare function usePersonRepo(): {
|
|
|
2385
2419
|
createTextIndex: () => Promise<void>;
|
|
2386
2420
|
getPersonByPlateNumber: (plateNumber: string) => Promise<TPerson | null>;
|
|
2387
2421
|
getByNRIC: (value: string) => Promise<TPerson | null>;
|
|
2388
|
-
|
|
2422
|
+
createIndexes: () => Promise<void>;
|
|
2389
2423
|
getPersonByPhoneNumber: (value: string) => Promise<TPerson | null>;
|
|
2390
2424
|
getPeopleByUnit: ({ status, type, unit, }: {
|
|
2391
2425
|
status: string;
|
|
@@ -2394,6 +2428,13 @@ declare function usePersonRepo(): {
|
|
|
2394
2428
|
}, session?: ClientSession) => Promise<TPerson[]>;
|
|
2395
2429
|
getCompany: (search?: string) => Promise<any[] | TPerson>;
|
|
2396
2430
|
getPeopleByPlateNumber: (plateNumber: string) => Promise<TPerson[]>;
|
|
2431
|
+
getPeopleByNRIC: ({ page, limit, nric, sort, site, }: {
|
|
2432
|
+
page?: number | undefined;
|
|
2433
|
+
limit?: number | undefined;
|
|
2434
|
+
nric?: string | undefined;
|
|
2435
|
+
sort?: Record<string, any> | undefined;
|
|
2436
|
+
site: string;
|
|
2437
|
+
}) => Promise<{}>;
|
|
2397
2438
|
};
|
|
2398
2439
|
|
|
2399
2440
|
declare function usePersonController(): {
|
|
@@ -2406,6 +2447,7 @@ declare function usePersonController(): {
|
|
|
2406
2447
|
getPeopleByUnit: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
2407
2448
|
getCompany: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
2408
2449
|
getPeopleByPlateNumber: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
2450
|
+
getPeopleByNRIC: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
2409
2451
|
};
|
|
2410
2452
|
|
|
2411
2453
|
type TRobotMetadata = {
|
|
@@ -3215,11 +3257,15 @@ declare function useDocumentManagementController(): {
|
|
|
3215
3257
|
getDocumentsBySiteId: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
3216
3258
|
};
|
|
3217
3259
|
|
|
3260
|
+
declare const BULLETIN_RECIPIENTS: readonly ["resident", "security_agency", "cleaning_services", "mechanical_electrical", "property_management_agency"];
|
|
3261
|
+
declare const STATUS_VALUES: readonly ["active", "expired", "deleted"];
|
|
3262
|
+
type BulletinRecipient = (typeof BULLETIN_RECIPIENTS)[number];
|
|
3263
|
+
type StatusValue = (typeof STATUS_VALUES)[number];
|
|
3218
3264
|
type TBulletinBoard = {
|
|
3219
3265
|
_id?: ObjectId;
|
|
3220
3266
|
site?: string | ObjectId;
|
|
3221
3267
|
orgId?: string | ObjectId;
|
|
3222
|
-
recipients?:
|
|
3268
|
+
recipients?: BulletinRecipient[];
|
|
3223
3269
|
title?: string;
|
|
3224
3270
|
content?: string;
|
|
3225
3271
|
file?: Array<{
|
|
@@ -3230,7 +3276,7 @@ type TBulletinBoard = {
|
|
|
3230
3276
|
noExpiration?: boolean;
|
|
3231
3277
|
startDate?: string | Date;
|
|
3232
3278
|
endDate?: string | Date;
|
|
3233
|
-
status?:
|
|
3279
|
+
status?: StatusValue;
|
|
3234
3280
|
createdAt?: Date | string;
|
|
3235
3281
|
updatedAt?: Date | string;
|
|
3236
3282
|
deletedAt?: Date | string;
|
|
@@ -3241,7 +3287,7 @@ declare function MBulletinBoard(value: TBulletinBoard): {
|
|
|
3241
3287
|
_id: ObjectId;
|
|
3242
3288
|
site: string | ObjectId;
|
|
3243
3289
|
orgId: string | ObjectId;
|
|
3244
|
-
recipients: ("
|
|
3290
|
+
recipients: ("property_management_agency" | "security_agency" | "cleaning_services" | "resident" | "mechanical_electrical")[];
|
|
3245
3291
|
title: string;
|
|
3246
3292
|
content: string;
|
|
3247
3293
|
file: {
|
|
@@ -3260,13 +3306,14 @@ declare function MBulletinBoard(value: TBulletinBoard): {
|
|
|
3260
3306
|
|
|
3261
3307
|
declare function useBulletinBoardRepo(): {
|
|
3262
3308
|
add: (value: TBulletinBoard, session?: ClientSession) => Promise<ObjectId>;
|
|
3263
|
-
getAll: ({ search, page, limit, sort, site, status, }: {
|
|
3309
|
+
getAll: ({ search, page, limit, sort, site, status, recipients, }: {
|
|
3264
3310
|
search?: string | undefined;
|
|
3265
3311
|
page?: number | undefined;
|
|
3266
3312
|
limit?: number | undefined;
|
|
3267
3313
|
sort?: Record<string, any> | undefined;
|
|
3268
3314
|
site: string | ObjectId;
|
|
3269
3315
|
status: string;
|
|
3316
|
+
recipients: Array<string>;
|
|
3270
3317
|
}, session?: ClientSession) => Promise<{
|
|
3271
3318
|
items: any[];
|
|
3272
3319
|
pages: number;
|
|
@@ -3275,7 +3322,7 @@ declare function useBulletinBoardRepo(): {
|
|
|
3275
3322
|
getBulletinBoardById: (_id: string | ObjectId, session?: ClientSession) => Promise<mongodb.WithId<bson.Document> | TBulletinBoard>;
|
|
3276
3323
|
updateBulletinBoardById: (_id: ObjectId | string, value: Partial<TBulletinBoard>, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
3277
3324
|
processExpiredBulletinBoards: (session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
3278
|
-
deleteBulletinBoardById: (_id: string | ObjectId) => Promise<number>;
|
|
3325
|
+
deleteBulletinBoardById: (_id: string | ObjectId, session?: ClientSession) => Promise<number>;
|
|
3279
3326
|
createIndexes: () => Promise<void>;
|
|
3280
3327
|
};
|
|
3281
3328
|
|
|
@@ -3283,6 +3330,7 @@ declare function useBulletinBoardService(): {
|
|
|
3283
3330
|
add: (value: TBulletinBoard) => Promise<string>;
|
|
3284
3331
|
updateBulletinBoardById: (id: string | ObjectId, value: Partial<TBulletinBoard>) => Promise<string>;
|
|
3285
3332
|
processExpiredBulletinBoards: () => Promise<void>;
|
|
3333
|
+
deleteBulletinBoardById: (id: string | ObjectId) => Promise<string>;
|
|
3286
3334
|
};
|
|
3287
3335
|
|
|
3288
3336
|
declare function useBulletinBoardController(): {
|
|
@@ -3484,7 +3532,7 @@ declare function MEventManagement(value: TEventManagement): {
|
|
|
3484
3532
|
|
|
3485
3533
|
declare function useEventManagementRepo(): {
|
|
3486
3534
|
add: (value: TEventManagement, session?: ClientSession) => Promise<ObjectId>;
|
|
3487
|
-
getAll: ({ search, page, limit, sort, site, status, type, }: {
|
|
3535
|
+
getAll: ({ search, page, limit, sort, site, status, type, date, }: {
|
|
3488
3536
|
search?: string | undefined;
|
|
3489
3537
|
page?: number | undefined;
|
|
3490
3538
|
limit?: number | undefined;
|
|
@@ -3492,6 +3540,7 @@ declare function useEventManagementRepo(): {
|
|
|
3492
3540
|
site: string | ObjectId;
|
|
3493
3541
|
status: string;
|
|
3494
3542
|
type?: string | undefined;
|
|
3543
|
+
date?: string | undefined;
|
|
3495
3544
|
}, session?: ClientSession) => Promise<{
|
|
3496
3545
|
items: any[];
|
|
3497
3546
|
pages: number;
|
|
@@ -3907,7 +3956,10 @@ declare function UseAccessManagementRepo(): {
|
|
|
3907
3956
|
cardReplacementRepo: (params: {
|
|
3908
3957
|
cardId: string;
|
|
3909
3958
|
remarks: string;
|
|
3910
|
-
|
|
3959
|
+
unitId: string;
|
|
3960
|
+
issuedCardId: string;
|
|
3961
|
+
userId: string;
|
|
3962
|
+
}) => Promise<[mongodb.WithId<bson.Document> | null, mongodb.WithId<bson.Document> | null]>;
|
|
3911
3963
|
visitorAccessCardsRepo: (params: {
|
|
3912
3964
|
site: string;
|
|
3913
3965
|
page: number;
|
|
@@ -3959,6 +4011,23 @@ declare function UseAccessManagementRepo(): {
|
|
|
3959
4011
|
message: string;
|
|
3960
4012
|
assigned: number;
|
|
3961
4013
|
}>;
|
|
4014
|
+
deleteCardRepo: (params: {
|
|
4015
|
+
cardId: string;
|
|
4016
|
+
remarks: string;
|
|
4017
|
+
}) => Promise<mongodb.WithId<bson.Document> | null>;
|
|
4018
|
+
getCardDetailsRepo: (params: {
|
|
4019
|
+
siteId: string;
|
|
4020
|
+
cardId: string;
|
|
4021
|
+
}) => Promise<{
|
|
4022
|
+
status: string;
|
|
4023
|
+
site: mongodb.WithId<bson.Document> | null;
|
|
4024
|
+
user: mongodb.WithId<bson.Document> | null;
|
|
4025
|
+
_id: ObjectId;
|
|
4026
|
+
} | null>;
|
|
4027
|
+
addQrTagRepo: (params: {
|
|
4028
|
+
payload: QrTagProps[];
|
|
4029
|
+
site: string;
|
|
4030
|
+
}) => Promise<mongodb.BulkWriteResult | undefined>;
|
|
3962
4031
|
};
|
|
3963
4032
|
|
|
3964
4033
|
declare function useAccessManagementController(): {
|
|
@@ -3983,6 +4052,9 @@ declare function useAccessManagementController(): {
|
|
|
3983
4052
|
getAccessManagementSettings: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
3984
4053
|
bulkPhysicalAccessCard: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
3985
4054
|
assignAccessCardToUnit: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4055
|
+
deleteCard: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4056
|
+
getCardDetails: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4057
|
+
addQrTag: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
3986
4058
|
};
|
|
3987
4059
|
|
|
3988
4060
|
declare const DEVICE_STATUS: {
|
|
@@ -4673,6 +4745,8 @@ type TOccurrenceEntry = {
|
|
|
4673
4745
|
incidentReportId?: string | ObjectId;
|
|
4674
4746
|
signature?: string | ObjectId;
|
|
4675
4747
|
userName?: string;
|
|
4748
|
+
eSignature?: string;
|
|
4749
|
+
createdByName?: string;
|
|
4676
4750
|
createdAt?: string | Date;
|
|
4677
4751
|
updatedAt?: string | Date;
|
|
4678
4752
|
deletedAt?: string | Date;
|
|
@@ -4691,6 +4765,8 @@ declare function MOccurrenceEntry(value: TOccurrenceEntry): {
|
|
|
4691
4765
|
incidentReportId: string | ObjectId | undefined;
|
|
4692
4766
|
signature: string | ObjectId | undefined;
|
|
4693
4767
|
userName: string | undefined;
|
|
4768
|
+
eSignature: string | undefined;
|
|
4769
|
+
createdByName: string | undefined;
|
|
4694
4770
|
date: string | Date | undefined;
|
|
4695
4771
|
createdAt: string | Date;
|
|
4696
4772
|
updatedAt: string | Date | undefined;
|
|
@@ -4943,4 +5019,4 @@ declare function useAddressRepo(): {
|
|
|
4943
5019
|
getByUserId: (user: string | ObjectId) => Promise<TAddress | null>;
|
|
4944
5020
|
};
|
|
4945
5021
|
|
|
4946
|
-
export { AccessTypeProps, AssignCardConfig, BulkCardUpdate, Camera, DEVICE_STATUS, EAccessCardTypes, EAccessCardUserTypes, IAccessCard, IAccessCardTransaction, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBillingConfiguration, MBillingItem, MBuilding, MBuildingUnit, MBulletinBoard, MBulletinVideo, MChat, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MGuestManagement, MIncidentReport, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPromoCode, MRobot, MRole, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubscription, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVisitorTransaction, MWorkOrder, PERSON_TYPES, PersonType, QrTagProps, SiteType, 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, TDefaultAccessCard, TDocs, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TMember, TMemberUpdateStatus, TMiniRole, TNfcPatrolLog, TNfcPatrolRoute, TNfcPatrolRouteEdit, TNfcPatrolSettings, TNfcPatrolSettingsGetBySite, TNfcPatrolSettingsUpdate, TNfcPatrolTag, TNfcPatrolTagConfigureReset, TNfcPatrolTagEdit, TNfcPatrolTagUpdateData, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPrice, TPriceType, TPromoCode, TPromoTier, TRecipientOfComplaint, TRobot, TRobotMetadata, TRole, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, 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,
|
|
5022
|
+
export { ANPRMode, AccessTypeProps, AssignCardConfig, BULLETIN_RECIPIENTS, BulkCardUpdate, Camera, DEVICE_STATUS, EAccessCardTypes, EAccessCardUserTypes, IAccessCard, IAccessCardTransaction, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBillingConfiguration, MBillingItem, MBuilding, MBuildingUnit, MBulletinBoard, MBulletinVideo, MChat, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MGuestManagement, MIncidentReport, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPromoCode, MRobot, MRole, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubscription, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVisitorTransaction, MWorkOrder, OrgNature, PERSON_TYPES, PersonType, QrTagProps, STATUS_VALUES, SiteType, 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, TDefaultAccessCard, TDocs, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TMember, TMemberUpdateStatus, TMiniRole, TNfcPatrolLog, TNfcPatrolRoute, TNfcPatrolRouteEdit, TNfcPatrolSettings, TNfcPatrolSettingsGetBySite, TNfcPatrolSettingsUpdate, TNfcPatrolTag, TNfcPatrolTagConfigureReset, TNfcPatrolTagEdit, TNfcPatrolTagUpdateData, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPrice, TPriceType, TPromoCode, TPromoTier, TRecipientOfComplaint, TRobot, TRobotMetadata, TRole, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, 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, VehicleStatus, VehicleType, allowedFieldsSite, allowedNatures, attendanceSchema, attendanceSettingsSchema, chatSchema, customerSchema, feedbackSchema, logCamera, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, orgSchema, promoCodeSchema, robotSchema, schema, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaGuestManagement, schemaIncidentReport, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaServiceProvider, schemaServiceProviderBilling, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaUnitBilling, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateGuestManagement, schemaUpdateIncidentReport, schemaUpdateOccurrenceBook, schemaUpdateOccurrenceEntry, schemaUpdateOccurrenceSubject, schemaUpdateOnlineForm, schemaUpdateOptions, schemaUpdatePatrolLog, schemaUpdatePatrolQuestion, schemaUpdatePatrolRoute, schemaUpdatePerson, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, siteSchema, tokenSchema, 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, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useMemberController, useMemberRepo, 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, 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, workOrderSchema };
|