@7365admin1/core 2.7.0 → 2.8.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 +6 -0
- package/dist/index.d.ts +181 -75
- package/dist/index.js +1871 -1647
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1740 -1524
- package/dist/index.mjs.map +1 -1
- package/dist/public/rsa-keys/new_rsa_512_priv.pem +3 -0
- package/dist/public/rsa-keys/new_rsa_512_pub.pem +3 -0
- package/dist/public/xml-templates/access-group.xml +1 -0
- package/dist/public/xml-templates/activate-card.xml +3 -0
- package/dist/public/xml-templates/add-card-lift.xml +50 -0
- package/dist/public/xml-templates/add-card.xml +51 -0
- package/dist/public/xml-templates/deactivate-card.xml +3 -0
- package/dist/public/xml-templates/delete-card.xml +3 -0
- package/dist/public/xml-templates/delete-qr-card.xml +6 -0
- package/dist/public/xml-templates/delete-staff.xml +3 -0
- package/dist/public/xml-templates/door-levels.xml +1 -0
- package/dist/public/xml-templates/door-list.xml +1 -0
- package/dist/public/xml-templates/lift-levels.xml +1 -0
- package/dist/public/xml-templates/track-id.xml +1 -0
- package/dist/public/xml-templates/update-card.xml +24 -0
- package/package.json +6 -2
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -2073,8 +2073,12 @@ type TAttendanceSettings = {
|
|
|
2073
2073
|
location?: TAttendanceLocation;
|
|
2074
2074
|
isGeofencingEnabled?: boolean;
|
|
2075
2075
|
mile?: number;
|
|
2076
|
+
postalCode?: string;
|
|
2077
|
+
country?: string;
|
|
2078
|
+
city?: string;
|
|
2079
|
+
address?: string;
|
|
2076
2080
|
};
|
|
2077
|
-
type TAttendanceSettingsGetBySite = Pick<TAttendanceSettings, "isLocationEnabled" | "location" | "isGeofencingEnabled" | "mile">;
|
|
2081
|
+
type TAttendanceSettingsGetBySite = Pick<TAttendanceSettings, "isLocationEnabled" | "location" | "isGeofencingEnabled" | "mile" | "postalCode" | "country" | "city" | "address">;
|
|
2078
2082
|
declare const attendanceSettingsSchema: Joi.ObjectSchema<any>;
|
|
2079
2083
|
declare function MAttendanceSettings(value: TAttendanceSettings): {
|
|
2080
2084
|
site: string | ObjectId;
|
|
@@ -2082,6 +2086,10 @@ declare function MAttendanceSettings(value: TAttendanceSettings): {
|
|
|
2082
2086
|
location: TAttendanceLocation | undefined;
|
|
2083
2087
|
isGeofencingEnabled: boolean | undefined;
|
|
2084
2088
|
mile: number | undefined;
|
|
2089
|
+
postalCode: string;
|
|
2090
|
+
country: string;
|
|
2091
|
+
city: string;
|
|
2092
|
+
address: string;
|
|
2085
2093
|
};
|
|
2086
2094
|
|
|
2087
2095
|
declare function useAttendanceSettingsRepository(): {
|
|
@@ -3603,86 +3611,181 @@ declare function useSiteUnitBillingController(): {
|
|
|
3603
3611
|
deleteById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
3604
3612
|
};
|
|
3605
3613
|
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3614
|
+
interface AssignCardConfig {
|
|
3615
|
+
units: string[] | ObjectId[];
|
|
3616
|
+
quantity: number;
|
|
3609
3617
|
type: string;
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
door: string;
|
|
3614
|
-
accessGroup: Array<string>;
|
|
3615
|
-
cardType: string;
|
|
3616
|
-
pinNo: string;
|
|
3617
|
-
useAsLiftCard: boolean;
|
|
3618
|
+
site: string | ObjectId;
|
|
3619
|
+
userType: EAccessCardUserTypes;
|
|
3620
|
+
accessLevel: string;
|
|
3618
3621
|
liftAccessLevel: string;
|
|
3619
|
-
|
|
3622
|
+
}
|
|
3623
|
+
interface BulkCardUpdate {
|
|
3624
|
+
updateOne: {
|
|
3625
|
+
filter: {
|
|
3626
|
+
_id: ObjectId;
|
|
3627
|
+
};
|
|
3628
|
+
update: {
|
|
3629
|
+
$set: {
|
|
3630
|
+
assignedUnit: ObjectId | ObjectId[];
|
|
3631
|
+
};
|
|
3632
|
+
};
|
|
3633
|
+
};
|
|
3634
|
+
}
|
|
3635
|
+
declare enum EAccessCardTypes {
|
|
3636
|
+
NFC = "NFC",
|
|
3637
|
+
QR = "QRCODE"
|
|
3638
|
+
}
|
|
3639
|
+
declare enum EAccessCardUserTypes {
|
|
3640
|
+
RESIDENT = "Resident/Tenant",
|
|
3641
|
+
CONTRACTOR = "Contractor",
|
|
3642
|
+
VISITOR = "Visitor"
|
|
3643
|
+
}
|
|
3644
|
+
interface TDefaultAccessCard extends Omit<IAccessCard, "_id" | "staffNo" | "fullName" | "dateOrBirth" | "dateOfJoin" | "userId"> {
|
|
3645
|
+
unit?: string[] | [];
|
|
3646
|
+
}
|
|
3647
|
+
interface IAccessCard {
|
|
3648
|
+
_id?: ObjectId;
|
|
3649
|
+
userId?: ObjectId;
|
|
3650
|
+
site: ObjectId;
|
|
3651
|
+
staffNo?: string | null;
|
|
3652
|
+
fullName?: string;
|
|
3653
|
+
type?: EAccessCardTypes;
|
|
3654
|
+
accessLevel?: string;
|
|
3655
|
+
accessGroup?: string[] | [];
|
|
3656
|
+
accessType: AccessTypeProps;
|
|
3657
|
+
cardNo: string;
|
|
3658
|
+
pin: string;
|
|
3659
|
+
qrData?: string;
|
|
3660
|
+
startDate: Date;
|
|
3661
|
+
endDate: Date;
|
|
3662
|
+
isActivated: boolean;
|
|
3620
3663
|
isAntiPassBack: boolean;
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
site?: string | ObjectId;
|
|
3624
|
-
unit?: string;
|
|
3625
|
-
assign?: string;
|
|
3626
|
-
createdBy: ObjectId;
|
|
3627
|
-
updatedBy: ObjectId;
|
|
3664
|
+
isLiftCard: boolean;
|
|
3665
|
+
liftAccessLevel?: string;
|
|
3628
3666
|
createdAt: Date;
|
|
3629
3667
|
updatedAt: Date;
|
|
3668
|
+
assignedUnit?: ObjectId | ObjectId[] | null;
|
|
3669
|
+
userType?: EAccessCardUserTypes | string;
|
|
3670
|
+
qrTag?: string;
|
|
3671
|
+
qrTagCardNo?: string;
|
|
3672
|
+
isActivate?: boolean;
|
|
3673
|
+
doorName?: string;
|
|
3674
|
+
liftName?: string;
|
|
3675
|
+
remarks?: string;
|
|
3676
|
+
replacementStatus?: string;
|
|
3677
|
+
replacementCardNo?: string;
|
|
3678
|
+
requestDate?: Date;
|
|
3679
|
+
vmsRemarks?: string;
|
|
3680
|
+
isWinsland?: boolean;
|
|
3681
|
+
}
|
|
3682
|
+
declare enum AccessTypeProps {
|
|
3683
|
+
NORMAL = "Normal",
|
|
3684
|
+
SPECIAL = "Special",
|
|
3685
|
+
MASTER = "Master",
|
|
3686
|
+
MAINTENANCE = "Maintenance"
|
|
3687
|
+
}
|
|
3688
|
+
type TDocs = {
|
|
3689
|
+
id: string;
|
|
3690
|
+
name: string;
|
|
3630
3691
|
};
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3692
|
+
interface IAccessCardTransaction {
|
|
3693
|
+
_id?: ObjectId;
|
|
3694
|
+
index: number | string;
|
|
3695
|
+
site?: ObjectId | string;
|
|
3696
|
+
cardNo: string;
|
|
3697
|
+
staffNo: string;
|
|
3698
|
+
staffName: string;
|
|
3699
|
+
accessType: string;
|
|
3700
|
+
accessStatus: string;
|
|
3701
|
+
description: string;
|
|
3702
|
+
accessTime: Date;
|
|
3703
|
+
createdAt?: Date;
|
|
3704
|
+
}
|
|
3705
|
+
declare class MAccessCardTransaction implements Partial<IAccessCardTransaction> {
|
|
3706
|
+
_id?: ObjectId;
|
|
3707
|
+
index: number | string;
|
|
3708
|
+
site?: ObjectId | string;
|
|
3709
|
+
cardNo: string;
|
|
3710
|
+
staffNo: string;
|
|
3711
|
+
staffName: string;
|
|
3712
|
+
accessType: string;
|
|
3713
|
+
accessStatus: string;
|
|
3714
|
+
description: string;
|
|
3715
|
+
accessTime: Date;
|
|
3716
|
+
createdAt?: Date;
|
|
3717
|
+
constructor({ _id, index, site, cardNo, staffNo, staffName, accessType, accessStatus, description, accessTime, createdAt, }?: IAccessCardTransaction);
|
|
3718
|
+
}
|
|
3719
|
+
declare class MAccessCard implements Partial<IAccessCard> {
|
|
3634
3720
|
_id: ObjectId;
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3721
|
+
userId?: ObjectId;
|
|
3722
|
+
site: ObjectId;
|
|
3723
|
+
staffNo?: string | null;
|
|
3724
|
+
type?: EAccessCardTypes;
|
|
3725
|
+
accessLevel?: string;
|
|
3726
|
+
accessGroup?: string[] | [];
|
|
3727
|
+
accessType: AccessTypeProps;
|
|
3728
|
+
cardNo: string;
|
|
3729
|
+
pin: string;
|
|
3730
|
+
qrData?: string;
|
|
3731
|
+
startDate: Date;
|
|
3732
|
+
endDate: Date;
|
|
3733
|
+
isActivated?: boolean;
|
|
3734
|
+
isAntiPassBack?: boolean;
|
|
3735
|
+
isLiftCard?: boolean;
|
|
3736
|
+
liftAccessLevel?: string;
|
|
3737
|
+
liftAccessStartDate?: Date;
|
|
3738
|
+
liftAccessEndDate?: Date;
|
|
3739
|
+
createdAt?: Date;
|
|
3740
|
+
updatedAt?: Date;
|
|
3741
|
+
assignedUnit?: ObjectId | ObjectId[] | null;
|
|
3742
|
+
userType?: EAccessCardUserTypes | string;
|
|
3743
|
+
doorName?: string;
|
|
3744
|
+
liftName?: string;
|
|
3745
|
+
replacementStatus?: string;
|
|
3746
|
+
vmsRemarks?: string;
|
|
3747
|
+
constructor({ _id, userId, site, staffNo, type, accessLevel, accessGroup, accessType, cardNo, pin, qrData, startDate, endDate, isActivated, isAntiPassBack, isLiftCard, liftAccessLevel, createdAt, updatedAt, assignedUnit, userType, doorName, liftName, replacementStatus, vmsRemarks, }?: IAccessCard);
|
|
3748
|
+
}
|
|
3749
|
+
interface QrTagProps {
|
|
3750
|
+
_id: string | ObjectId;
|
|
3751
|
+
cardNo: string;
|
|
3752
|
+
qrTag: string;
|
|
3753
|
+
qrTagCardNo?: string;
|
|
3754
|
+
}
|
|
3658
3755
|
|
|
3659
|
-
declare function
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
3756
|
+
declare function UseAccessManagementRepo(): {
|
|
3757
|
+
createIndexes: () => Promise<string>;
|
|
3758
|
+
addPhysicalCardRepo: ({ payload, }: {
|
|
3759
|
+
payload: TDefaultAccessCard;
|
|
3760
|
+
}) => Promise<ObjectId>;
|
|
3761
|
+
addNonPhysicalCardRepo: (params: {
|
|
3762
|
+
site: string;
|
|
3763
|
+
quantity: number;
|
|
3764
|
+
accessLevel: string;
|
|
3765
|
+
accessGroup: string[];
|
|
3766
|
+
userType: string;
|
|
3767
|
+
doorName?: string;
|
|
3768
|
+
liftName?: string;
|
|
3769
|
+
isLiftCard: boolean;
|
|
3770
|
+
liftAccessLevel: string;
|
|
3771
|
+
unit: string[];
|
|
3772
|
+
startDate: Date | string;
|
|
3773
|
+
endDate: Date | string;
|
|
3774
|
+
createdAt: Date | string;
|
|
3775
|
+
updatedAt: Date | string;
|
|
3670
3776
|
}) => Promise<{
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
}
|
|
3675
|
-
getCardById: (_id: string | ObjectId) => Promise<bson.Document>;
|
|
3676
|
-
updateCardById: (_id: string | ObjectId, value: TAccessManagement) => Promise<number>;
|
|
3677
|
-
deleteCardById: (_id: string | ObjectId, session?: ClientSession) => Promise<number>;
|
|
3777
|
+
acknowledged: boolean;
|
|
3778
|
+
insertedCount: number;
|
|
3779
|
+
insertedIds: Record<number, ObjectId>;
|
|
3780
|
+
}>;
|
|
3678
3781
|
};
|
|
3679
3782
|
|
|
3680
3783
|
declare function useAccessManagementController(): {
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
|
|
3784
|
+
addPhysicalCard: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
3785
|
+
addNonPhysicalCard: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
3786
|
+
doorAccessLevels: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
3787
|
+
liftAccessLevels: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
3788
|
+
accessGroups: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
3686
3789
|
};
|
|
3687
3790
|
|
|
3688
3791
|
declare const DEVICE_STATUS: {
|
|
@@ -4147,9 +4250,10 @@ type TSiteInfo = {
|
|
|
4147
4250
|
type TPlaceOfIncident = {
|
|
4148
4251
|
block?: number;
|
|
4149
4252
|
level?: string;
|
|
4150
|
-
unit?: ObjectId;
|
|
4253
|
+
unit?: string | ObjectId;
|
|
4151
4254
|
other?: string | null;
|
|
4152
4255
|
isOther: boolean;
|
|
4256
|
+
incidentLocation: string;
|
|
4153
4257
|
};
|
|
4154
4258
|
type TIncidentTypeAndTime = {
|
|
4155
4259
|
incidentStart?: string;
|
|
@@ -4222,8 +4326,8 @@ type TIncidentReport = {
|
|
|
4222
4326
|
affectedEntities: TAffectedEntities;
|
|
4223
4327
|
authorities: TAuthorities;
|
|
4224
4328
|
briefSummary?: string;
|
|
4225
|
-
organization: ObjectId;
|
|
4226
|
-
site: ObjectId;
|
|
4329
|
+
organization: ObjectId | string;
|
|
4330
|
+
site: string | ObjectId;
|
|
4227
4331
|
photos?: string[];
|
|
4228
4332
|
approvedBy?: ObjectId | null;
|
|
4229
4333
|
approvedByName?: string;
|
|
@@ -4243,8 +4347,8 @@ declare function MIncidentReport(value: TIncidentReport): {
|
|
|
4243
4347
|
affectedEntities: TAffectedEntities;
|
|
4244
4348
|
authorities: TAuthorities;
|
|
4245
4349
|
briefSummary: string;
|
|
4246
|
-
organization: ObjectId;
|
|
4247
|
-
site: ObjectId;
|
|
4350
|
+
organization: string | ObjectId;
|
|
4351
|
+
site: string | ObjectId;
|
|
4248
4352
|
photos: string[];
|
|
4249
4353
|
approvedBy: ObjectId | null;
|
|
4250
4354
|
approvedByName: string;
|
|
@@ -4258,6 +4362,7 @@ declare function MIncidentReport(value: TIncidentReport): {
|
|
|
4258
4362
|
declare function useIncidentReportService(): {
|
|
4259
4363
|
add: (value: TIncidentReport) => Promise<string>;
|
|
4260
4364
|
updateIncidentReportById: (id: string | ObjectId, value: Partial<TIncidentReport>) => Promise<string>;
|
|
4365
|
+
createIncidentSummary: (value: Partial<TIncidentReport>) => Promise<string>;
|
|
4261
4366
|
};
|
|
4262
4367
|
|
|
4263
4368
|
declare function useIncidentReportController(): {
|
|
@@ -4266,6 +4371,7 @@ declare function useIncidentReportController(): {
|
|
|
4266
4371
|
getIncidentReportById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4267
4372
|
updateIncidentReportById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4268
4373
|
deleteIncidentReportById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4374
|
+
createIncidentSummary: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4269
4375
|
};
|
|
4270
4376
|
|
|
4271
4377
|
declare function useIncidentReportRepo(): {
|
|
@@ -4610,4 +4716,4 @@ declare function useNfcPatrolLogController(): {
|
|
|
4610
4716
|
getAllBySite: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
4611
4717
|
};
|
|
4612
4718
|
|
|
4613
|
-
export { Camera, DEVICE_STATUS,
|
|
4719
|
+
export { AccessTypeProps, AssignCardConfig, BulkCardUpdate, Camera, DEVICE_STATUS, EAccessCardTypes, EAccessCardUserTypes, IAccessCard, IAccessCardTransaction, MAccessCard, MAccessCardTransaction, 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, TActionStatus, TAffectedEntities, TAttendance, TAttendanceCheckIn, TAttendanceCheckOut, TAttendanceCheckTime, TAttendanceLocation, TAttendanceSettings, TAttendanceSettingsGetBySite, TAuthorities, 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, UseAccessManagementRepo, allowedCategories, allowedFieldsSite, allowedNatures, allowedTypes, 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, 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 };
|