@7365admin1/core 2.67.0 → 2.69.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 +63 -20
- package/dist/index.js +6155 -5421
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6529 -5793
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @iservice365/core
|
|
2
2
|
|
|
3
|
+
## 2.69.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a194c22: release latest changes preloved api, bulletin board api, and etc changes
|
|
8
|
+
|
|
9
|
+
## 2.68.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 60ae836: release latest changes for preloved API, person API, etc.
|
|
14
|
+
|
|
3
15
|
## 2.67.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -556,6 +556,18 @@ declare function useOrgRepo(): {
|
|
|
556
556
|
updateStatusById: (_id: string | ObjectId, status: string) => Promise<string>;
|
|
557
557
|
deleteById: (_id: string | ObjectId) => Promise<string>;
|
|
558
558
|
getOrgsByEmail: (email: string) => Promise<TOrg[]>;
|
|
559
|
+
getOrganizationsWithSubscription: ({ search, page, limit, status, type, billingCycle, }: {
|
|
560
|
+
search?: string | undefined;
|
|
561
|
+
page?: number | undefined;
|
|
562
|
+
limit?: number | undefined;
|
|
563
|
+
status?: string | undefined;
|
|
564
|
+
type?: string | undefined;
|
|
565
|
+
billingCycle?: string | undefined;
|
|
566
|
+
}) => Promise<{
|
|
567
|
+
items: any[];
|
|
568
|
+
pages: number;
|
|
569
|
+
pageRange: string;
|
|
570
|
+
}>;
|
|
559
571
|
};
|
|
560
572
|
|
|
561
573
|
declare function useOrgController(): {
|
|
@@ -575,6 +587,7 @@ declare function useOrgController(): {
|
|
|
575
587
|
*/
|
|
576
588
|
declare function useOrgControllerV2(): {
|
|
577
589
|
getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
590
|
+
getOrganizationsWithSubscription: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
578
591
|
};
|
|
579
592
|
|
|
580
593
|
declare enum SubscriptionType {
|
|
@@ -923,29 +936,29 @@ declare const TInvoice: z.ZodObject<{
|
|
|
923
936
|
description?: string | undefined;
|
|
924
937
|
userId?: string | ObjectId | undefined;
|
|
925
938
|
orgId?: string | ObjectId | undefined;
|
|
926
|
-
currency?: string | undefined;
|
|
927
939
|
billingCycle?: "monthly" | "yearly" | "quarterly" | undefined;
|
|
940
|
+
currency?: string | undefined;
|
|
928
941
|
subscriptionId?: string | ObjectId | undefined;
|
|
929
942
|
}, {
|
|
930
943
|
description?: string | undefined;
|
|
931
944
|
userId?: string | ObjectId | undefined;
|
|
932
945
|
orgId?: string | ObjectId | undefined;
|
|
933
|
-
currency?: string | undefined;
|
|
934
946
|
billingCycle?: "monthly" | "yearly" | "quarterly" | undefined;
|
|
947
|
+
currency?: string | undefined;
|
|
935
948
|
subscriptionId?: string | ObjectId | undefined;
|
|
936
949
|
}>>>, {
|
|
937
950
|
description?: string | undefined;
|
|
938
951
|
userId?: string | ObjectId | undefined;
|
|
939
952
|
orgId?: string | ObjectId | undefined;
|
|
940
|
-
currency?: string | undefined;
|
|
941
953
|
billingCycle?: "monthly" | "yearly" | "quarterly" | undefined;
|
|
954
|
+
currency?: string | undefined;
|
|
942
955
|
subscriptionId?: string | ObjectId | undefined;
|
|
943
956
|
} | undefined, {
|
|
944
957
|
description?: string | undefined;
|
|
945
958
|
userId?: string | ObjectId | undefined;
|
|
946
959
|
orgId?: string | ObjectId | undefined;
|
|
947
|
-
currency?: string | undefined;
|
|
948
960
|
billingCycle?: "monthly" | "yearly" | "quarterly" | undefined;
|
|
961
|
+
currency?: string | undefined;
|
|
949
962
|
subscriptionId?: string | ObjectId | undefined;
|
|
950
963
|
} | undefined>;
|
|
951
964
|
descriptions: z.ZodOptional<z.ZodString>;
|
|
@@ -971,8 +984,8 @@ declare const TInvoice: z.ZodObject<{
|
|
|
971
984
|
description?: string | undefined;
|
|
972
985
|
userId?: string | ObjectId | undefined;
|
|
973
986
|
orgId?: string | ObjectId | undefined;
|
|
974
|
-
currency?: string | undefined;
|
|
975
987
|
billingCycle?: "monthly" | "yearly" | "quarterly" | undefined;
|
|
988
|
+
currency?: string | undefined;
|
|
976
989
|
subscriptionId?: string | ObjectId | undefined;
|
|
977
990
|
} | undefined;
|
|
978
991
|
descriptions?: string | undefined;
|
|
@@ -996,8 +1009,8 @@ declare const TInvoice: z.ZodObject<{
|
|
|
996
1009
|
description?: string | undefined;
|
|
997
1010
|
userId?: string | ObjectId | undefined;
|
|
998
1011
|
orgId?: string | ObjectId | undefined;
|
|
999
|
-
currency?: string | undefined;
|
|
1000
1012
|
billingCycle?: "monthly" | "yearly" | "quarterly" | undefined;
|
|
1013
|
+
currency?: string | undefined;
|
|
1001
1014
|
subscriptionId?: string | ObjectId | undefined;
|
|
1002
1015
|
} | undefined;
|
|
1003
1016
|
descriptions?: string | undefined;
|
|
@@ -1025,8 +1038,8 @@ declare function useInvoiceModel(db: Db): {
|
|
|
1025
1038
|
description?: string | undefined;
|
|
1026
1039
|
userId?: string | ObjectId | undefined;
|
|
1027
1040
|
orgId?: string | ObjectId | undefined;
|
|
1028
|
-
currency?: string | undefined;
|
|
1029
1041
|
billingCycle?: "monthly" | "yearly" | "quarterly" | undefined;
|
|
1042
|
+
currency?: string | undefined;
|
|
1030
1043
|
subscriptionId?: string | ObjectId | undefined;
|
|
1031
1044
|
} | undefined;
|
|
1032
1045
|
descriptions?: string | undefined;
|
|
@@ -1057,8 +1070,8 @@ declare function useInvoiceRepo(): {
|
|
|
1057
1070
|
description?: string | undefined;
|
|
1058
1071
|
userId?: string | ObjectId | undefined;
|
|
1059
1072
|
orgId?: string | ObjectId | undefined;
|
|
1060
|
-
currency?: string | undefined;
|
|
1061
1073
|
billingCycle?: "monthly" | "yearly" | "quarterly" | undefined;
|
|
1074
|
+
currency?: string | undefined;
|
|
1062
1075
|
subscriptionId?: string | ObjectId | undefined;
|
|
1063
1076
|
} | undefined;
|
|
1064
1077
|
descriptions?: string | undefined;
|
|
@@ -1093,8 +1106,8 @@ declare function useInvoiceRepo(): {
|
|
|
1093
1106
|
description?: string | undefined;
|
|
1094
1107
|
userId?: string | ObjectId | undefined;
|
|
1095
1108
|
orgId?: string | ObjectId | undefined;
|
|
1096
|
-
currency?: string | undefined;
|
|
1097
1109
|
billingCycle?: "monthly" | "yearly" | "quarterly" | undefined;
|
|
1110
|
+
currency?: string | undefined;
|
|
1098
1111
|
subscriptionId?: string | ObjectId | undefined;
|
|
1099
1112
|
} | undefined;
|
|
1100
1113
|
descriptions?: string | undefined;
|
|
@@ -1119,8 +1132,8 @@ declare function useInvoiceRepo(): {
|
|
|
1119
1132
|
description?: string | undefined;
|
|
1120
1133
|
userId?: string | ObjectId | undefined;
|
|
1121
1134
|
orgId?: string | ObjectId | undefined;
|
|
1122
|
-
currency?: string | undefined;
|
|
1123
1135
|
billingCycle?: "monthly" | "yearly" | "quarterly" | undefined;
|
|
1136
|
+
currency?: string | undefined;
|
|
1124
1137
|
subscriptionId?: string | ObjectId | undefined;
|
|
1125
1138
|
} | undefined;
|
|
1126
1139
|
descriptions?: string | undefined;
|
|
@@ -3739,7 +3752,6 @@ type TDocumentManagement = {
|
|
|
3739
3752
|
type?: string;
|
|
3740
3753
|
attachment?: string;
|
|
3741
3754
|
remarks?: string;
|
|
3742
|
-
isFolder?: boolean;
|
|
3743
3755
|
org?: string | ObjectId;
|
|
3744
3756
|
site?: string | ObjectId;
|
|
3745
3757
|
parentId?: string | ObjectId;
|
|
@@ -3763,7 +3775,6 @@ declare function MDocumentManagement(value: TDocumentManagement): {
|
|
|
3763
3775
|
type: string | undefined;
|
|
3764
3776
|
attachment: string | undefined;
|
|
3765
3777
|
remarks: string;
|
|
3766
|
-
isFolder: boolean;
|
|
3767
3778
|
org: string | ObjectId | undefined;
|
|
3768
3779
|
site: string | ObjectId | undefined;
|
|
3769
3780
|
};
|
|
@@ -3772,12 +3783,11 @@ declare function useDocumentManagementRepo(): {
|
|
|
3772
3783
|
createIndex: () => Promise<void>;
|
|
3773
3784
|
createTextIndex: () => Promise<void>;
|
|
3774
3785
|
add: (value: TDocumentManagement, session?: ClientSession) => Promise<ObjectId>;
|
|
3775
|
-
getAll: ({ search, page, limit,
|
|
3786
|
+
getAll: ({ search, page, limit, type, org, site, parentId, }: {
|
|
3776
3787
|
search?: string | undefined;
|
|
3777
3788
|
page?: number | undefined;
|
|
3778
3789
|
limit?: number | undefined;
|
|
3779
|
-
|
|
3780
|
-
status: string;
|
|
3790
|
+
type?: string | undefined;
|
|
3781
3791
|
org?: string | ObjectId | undefined;
|
|
3782
3792
|
site: string | ObjectId;
|
|
3783
3793
|
parentId?: string | ObjectId | null | undefined;
|
|
@@ -4763,6 +4773,11 @@ declare function UseAccessManagementRepo(): {
|
|
|
4763
4773
|
siteId: string | ObjectId;
|
|
4764
4774
|
unitId: string | ObjectId;
|
|
4765
4775
|
}) => Promise<bson.Document[]>;
|
|
4776
|
+
userAccessCardsRepo: ({ userId, siteId, isLiftCard, }: {
|
|
4777
|
+
userId: string | ObjectId;
|
|
4778
|
+
siteId: string | ObjectId;
|
|
4779
|
+
isLiftCard: boolean;
|
|
4780
|
+
}) => Promise<bson.Document[]>;
|
|
4766
4781
|
};
|
|
4767
4782
|
|
|
4768
4783
|
declare function useAccessManagementController(): {
|
|
@@ -4807,6 +4822,7 @@ declare function useAccessManagementController(): {
|
|
|
4807
4822
|
visitorCheckout: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4808
4823
|
uploadTemplate: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4809
4824
|
getResidents: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4825
|
+
userAccessCards: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4810
4826
|
};
|
|
4811
4827
|
|
|
4812
4828
|
declare const DEVICE_STATUS: {
|
|
@@ -6645,6 +6661,8 @@ declare function useVerificationRepoV2(): {
|
|
|
6645
6661
|
}) => Promise<{}>;
|
|
6646
6662
|
updateStatusById: (_id: string | ObjectId, status: string, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
6647
6663
|
countPendingOrgInvites: (orgId: string | ObjectId) => Promise<number>;
|
|
6664
|
+
getPendingVerificationByEmail: (email: string) => Promise<TVerificationV2 | null>;
|
|
6665
|
+
updateVerificationCodeById: (_id: string | ObjectId, verificationCode: string, expireAt: string, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
6648
6666
|
};
|
|
6649
6667
|
|
|
6650
6668
|
declare function useVerificationServiceV2(): {
|
|
@@ -6678,6 +6696,9 @@ declare function useVerificationServiceV2(): {
|
|
|
6678
6696
|
}) => Promise<bson.ObjectId>;
|
|
6679
6697
|
createForgetPassword: (email: string) => Promise<string>;
|
|
6680
6698
|
cancelUserInvitation: (id: string) => Promise<void>;
|
|
6699
|
+
resendSignUpVerification: (email: string) => Promise<{
|
|
6700
|
+
message: string;
|
|
6701
|
+
}>;
|
|
6681
6702
|
};
|
|
6682
6703
|
|
|
6683
6704
|
declare function useVerificationControllerV2(): {
|
|
@@ -6688,6 +6709,7 @@ declare function useVerificationControllerV2(): {
|
|
|
6688
6709
|
createForgetPassword: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6689
6710
|
getVerifications: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6690
6711
|
cancelUserInvitation: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6712
|
+
resendSignUpVerification: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6691
6713
|
};
|
|
6692
6714
|
|
|
6693
6715
|
declare function useAuthControllerV2(): {
|
|
@@ -6850,7 +6872,8 @@ type TPost = {
|
|
|
6850
6872
|
title?: string;
|
|
6851
6873
|
description?: string;
|
|
6852
6874
|
attachments?: Array<string | ObjectId>;
|
|
6853
|
-
category?:
|
|
6875
|
+
category?: string | ObjectId;
|
|
6876
|
+
subcategory?: string | ObjectId;
|
|
6854
6877
|
currency?: string;
|
|
6855
6878
|
price?: number;
|
|
6856
6879
|
status?: PostStatus;
|
|
@@ -6868,7 +6891,8 @@ declare function MPost(value: TPost): {
|
|
|
6868
6891
|
title: string;
|
|
6869
6892
|
description: string;
|
|
6870
6893
|
attachments: (string | ObjectId)[];
|
|
6871
|
-
category:
|
|
6894
|
+
category: string | ObjectId;
|
|
6895
|
+
subcategory: string | ObjectId;
|
|
6872
6896
|
currency: string;
|
|
6873
6897
|
price: number;
|
|
6874
6898
|
status: PostStatus;
|
|
@@ -6883,14 +6907,15 @@ declare function MPost(value: TPost): {
|
|
|
6883
6907
|
declare function usePostPrelovedRepo(): {
|
|
6884
6908
|
add: (value: TPost, session?: any) => Promise<ObjectId>;
|
|
6885
6909
|
getById: (_id: string | ObjectId) => Promise<bson.Document>;
|
|
6886
|
-
getAll: ({ search, page, limit, filter, site, status, category, }: {
|
|
6910
|
+
getAll: ({ search, page, limit, filter, site, status, category, subcategory, }: {
|
|
6887
6911
|
search?: string | undefined;
|
|
6888
6912
|
page?: number | undefined;
|
|
6889
6913
|
limit?: number | undefined;
|
|
6890
6914
|
filter?: string | undefined;
|
|
6891
6915
|
site?: string | ObjectId | undefined;
|
|
6892
6916
|
status?: string | string[] | undefined;
|
|
6893
|
-
category?:
|
|
6917
|
+
category?: string | ObjectId | undefined;
|
|
6918
|
+
subcategory?: (string | ObjectId)[] | undefined;
|
|
6894
6919
|
}, session?: any) => Promise<{
|
|
6895
6920
|
items: any[];
|
|
6896
6921
|
pages: number;
|
|
@@ -6933,10 +6958,12 @@ declare function useCategoryPrelovedRepo(): {
|
|
|
6933
6958
|
search?: string | undefined;
|
|
6934
6959
|
site?: string | ObjectId | undefined;
|
|
6935
6960
|
}) => Promise<mongodb.WithId<bson.Document>[]>;
|
|
6961
|
+
getById: (_id: string | ObjectId) => Promise<mongodb.WithId<bson.Document>>;
|
|
6936
6962
|
};
|
|
6937
6963
|
|
|
6938
6964
|
declare function useCategoryPrelovedController(): {
|
|
6939
6965
|
getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6966
|
+
getById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6940
6967
|
};
|
|
6941
6968
|
|
|
6942
6969
|
type TSubcategoryPreloved = {
|
|
@@ -6965,10 +6992,12 @@ declare function useSubcategoryPrelovedRepo(): {
|
|
|
6965
6992
|
site?: string | ObjectId | undefined;
|
|
6966
6993
|
category_id?: string | ObjectId | undefined;
|
|
6967
6994
|
}) => Promise<mongodb.WithId<bson.Document>[]>;
|
|
6995
|
+
getById: (_id: string | ObjectId) => Promise<mongodb.WithId<bson.Document>>;
|
|
6968
6996
|
};
|
|
6969
6997
|
|
|
6970
6998
|
declare function useSubcategoryPrelovedController(): {
|
|
6971
6999
|
getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7000
|
+
getById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6972
7001
|
};
|
|
6973
7002
|
|
|
6974
7003
|
declare enum FormEntryStatus {
|
|
@@ -7026,6 +7055,7 @@ type TBuildingLevel = {
|
|
|
7026
7055
|
deletedAt?: Date | null;
|
|
7027
7056
|
};
|
|
7028
7057
|
declare const schemaBuildingLevel: Joi.ObjectSchema<any>;
|
|
7058
|
+
declare const schemaUpdateBuildingLevel: Joi.ObjectSchema<any>;
|
|
7029
7059
|
declare function MBuildingLevel(value: TBuildingLevel): {
|
|
7030
7060
|
_id: ObjectId;
|
|
7031
7061
|
org: string | ObjectId | undefined;
|
|
@@ -7049,15 +7079,28 @@ declare function useBuildingLevelRepo(): {
|
|
|
7049
7079
|
site?: string | undefined;
|
|
7050
7080
|
status?: string | undefined;
|
|
7051
7081
|
}) => Promise<Record<string, any>>;
|
|
7082
|
+
getById: (_id: string | ObjectId, session?: ClientSession) => Promise<TBuildingLevel>;
|
|
7083
|
+
updateLevelById: (_id: string | ObjectId, value: TBuildingLevel, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
7084
|
+
deleteById: (_id: string | ObjectId, session?: ClientSession) => Promise<string>;
|
|
7085
|
+
bulkWriteLevels: (levels: TBuildingLevel[], session?: ClientSession) => Promise<{
|
|
7086
|
+
insertedCount: number;
|
|
7087
|
+
insertedIds: {
|
|
7088
|
+
[key: number]: any;
|
|
7089
|
+
};
|
|
7090
|
+
}>;
|
|
7052
7091
|
};
|
|
7053
7092
|
|
|
7054
7093
|
declare function useBuildingLevelService(): {
|
|
7055
7094
|
add: (value: TBuildingLevel) => Promise<string>;
|
|
7095
|
+
updateLevelById: (_id: string, value: TBuildingLevel) => Promise<string>;
|
|
7056
7096
|
};
|
|
7057
7097
|
|
|
7058
7098
|
declare function useBuildingLevelController(): {
|
|
7059
7099
|
add: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7060
7100
|
getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7101
|
+
getById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7102
|
+
updateLevelById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7103
|
+
deleteById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7061
7104
|
};
|
|
7062
7105
|
|
|
7063
|
-
export { ANPRMode, AccessTypeProps, AppServiceType, AssignCardConfig, BuildingLevelStatus, BuildingStatus, BulkCardUpdate, BulletinOrder, BulletinRecipient, BulletinSort, BulletinStatus, BulletinVideoOrder, BulletinVideoSort, Camera, CameraType, DEVICE_STATUS, DOBStatus, DayOfWeek, EAccessCardTypes, EAccessCardUserTypes, EmailSender, EntryOrder, EntrySort, EventOrder, EventSort, EventStatus, EventType, FacilitySort, FacilityStatus, FormEntryStatus, GuestSort, GuestStatus, IAccessCard, IAccessCardTransaction, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBillingConfiguration, MBillingItem, MBuilding, MBuildingLevel, MBuildingUnit, MBulletinBoard, MBulletinVideo, MCategoryPreloved, MChat, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MFormEntry, MGuestManagement, MIncidentReport, MManpowerDesignations, MManpowerMonitoring, MManpowerRemarks, MManpowerSites, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MOvernightParkingApprovalHours, MOvernightParkingRequest, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPost, MPromoCode, MRobot, MRole, MRoleV2, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubcategoryPreloved, MSubscription, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVerificationV2, MVisitorTransaction, MWorkOrder, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PERSON_TYPES, PMDashboardCollection, PStatus, Period, PersonStatus, PersonType, PersonTypes, PostOrder, PostSort, PostStatus, QrTagProps, SiteAddress, SiteCategories, SiteStatus, SortFields, SortOrder, Status, SubjectOrder, SubjectSort, SubscriptionType, TAccessMngmntSettings, TActionStatus, TAddress, TAffectedEntities, TAffectedInjured, TAppServiceType, TApprovedBy, TApprover, TAttendance, TAttendanceCheckIn, TAttendanceCheckOut, TAttendanceCheckTime, TAttendanceLocation, TAttendanceSettings, TAttendanceSettingsGetBySite, TAuthorities, TAuthoritiesCalled, TBilling, TBillingConfiguration, TBillingItem, TBuilding, TBuildingLevel, TBuildingUnit, TBulletinBoard, TBulletinVideo, TCamera, TCategoryPreloved, 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, TFormEntry, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TKeyRef, TManpowerDesignations, TManpowerDesignationsUpdate, TManpowerMonitoring, TManpowerMonitoringUpdate, TManpowerRemarks, TManpowerRemarksStatusUpdate, TManpowerRemarksUpdate, TManpowerSearchFilter, TManpowerSites, 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, TPost, TPrice, TPriceType, TPromoCode, TPromoTier, TRecipientOfComplaint, TRemarks, TResident, TRobot, TRobotMetadata, TRole, TRoleV2, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TShifts, TSite, TSiteCamera, TSiteFacility, TSiteFacilityBooking, TSiteInfo, TSiteInformation, TSiteMetadata, TSiteUpdateBlock, TStatementOfAccount, TSubcategoryPreloved, TSubmissionForm, TSubscription, TUnitBilling, TUnits, TUpdateName, TUser, TUserCreate, TVehicle, TVehicleTransaction, TVehicleUpdate, TVerification, TVerificationMetadata, TVerificationMetadataV2, TVerificationV2, TVisitorTransaction, TWorkOrder, TWorkOrderMetadata, TWorkOrderUpdate, TWorkOrderUpdateStatus, TWorkOrderUpdateToCompleted, TanyoneDamageToProperty, UseAccessManagementRepo, UserStatus, VehicleCategory, VehicleOrder, VehicleSort, VehicleStatus, VehicleType, VerificationLinkType, VerificationStatus, VerificationSubjectType, VerificationType, VisitorSort, VisitorStatus, addressSchema, allowedFieldsSite, allowedNatures, attendanceSchema, attendanceSettingsSchema, building_level_namespace_collection, building_units_namespace_collection, buildings_namespace_collection, bulletin_boards_namespace_collection, calculatePercentage, chatSchema, createManpowerRemarksDaily, customerSchema, designationsSchema, events_namespace_collection, facility_bookings_namespace_collection, feedbackSchema, feedbacks2_namespace_collection, feedbacks_namespace_collection, formatDahuaDate, getPeriodRangeWithPrevious, guests_namespace_collection, incidentReport, incidentReportLog, incidents_namespace_collection, landscapeDashboardCollection, logCamera, mAndEDashboardCollection, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, occurrence_book_namespace_collection, online_forms_namespace_collection, orgSchema, overnight_parking_requests_namespace_collection, parseDahuaFind, pestDashboardCollection, poolDashboardCollection, promoCodeSchema, remarksSchema, robotSchema, schema, schemaApprovedBy, schemaApprover, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaFormEntry, schemaGuestManagement, schemaIncidentReport, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaPost, schemaServiceProvider, schemaServiceProviderBilling, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaSubcategoryPreloved, schemaUnitBilling, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateCategoryPreloved, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateFormEntry, schemaUpdateGuestManagement, schemaUpdateIncidentReport, schemaUpdateOccurrenceBook, schemaUpdateOccurrenceEntry, schemaUpdateOccurrenceSubject, schemaUpdateOnlineForm, schemaUpdateOptions, schemaUpdateOvernightParkingRequest, schemaUpdatePatrolLog, schemaUpdatePatrolQuestion, schemaUpdatePatrolRoute, schemaUpdatePerson, schemaUpdatePost, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteFacilityBooking, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateSubcategoryPreloved, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, securityDashboardCollection, shiftSchema, siteSchema, site_people_namespace_collection, tokenSchema, updateRemarksStatusEod, updateRemarksisAcknowledged, updateSiteSchema, useAccessManagementController, useAddressRepo, useAttendanceController, useAttendanceRepository, useAttendanceSettingsController, useAttendanceSettingsRepository, useAttendanceSettingsService, useAuthController, useAuthControllerV2, useAuthService, useAuthServiceV2, useBuildingController, useBuildingLevelController, useBuildingLevelRepo, useBuildingLevelService, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useBulletinBoardController, useBulletinBoardRepo, useBulletinBoardService, useBulletinVideoController, useBulletinVideoRepo, useBulletinVideoService, useCategoryPrelovedController, useCategoryPrelovedRepo, 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, useFormEntryController, useFormEntryRepo, useGuestManagementController, useGuestManagementRepo, useGuestManagementService, useHrmLabsAttendanceCtrl, useHrmLabsAttendanceSrvc, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useManpowerDesignationCtrl, useManpowerDesignationRepo, useManpowerMonitoringCtrl, useManpowerMonitoringRepo, useManpowerMonitoringSrvc, useManpowerRemarkCtrl, useManpowerRemarksRepo, useManpowerSitesCtrl, useManpowerSitesRepo, useManpowerSitesSrvc, 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, useOrgControllerV2, useOrgRepo, useOvernightParkingController, useOvernightParkingRepo, useOvernightParkingRequestController, useOvernightParkingRequestRepo, useOvernightParkingRequestService, usePatrolLogController, usePatrolLogRepo, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePostPrelovedController, usePostPrelovedRepo, usePriceController, usePriceModel, usePriceRepo, usePromoCodeController, usePromoCodeRepo, useRedDotPaymentController, useRedDotPaymentRepo, useRedDotPaymentSvc, useRobotController, useRobotRepo, useRobotService, useRoleController, useRoleControllerV2, useRoleRepo, useRoleRepoV2, useRoleServiceV2, 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, useSubcategoryPrelovedController, useSubcategoryPrelovedRepo, useSubscriptionController, useSubscriptionRepo, useSubscriptionService, useUserController, useUserControllerV2, useUserRepo, useUserRepoV2, useUserService, useUserServiceV2, useVehicleController, useVehicleRepo, useVehicleService, useVerificationController, useVerificationControllerV2, useVerificationRepo, useVerificationRepoV2, useVerificationService, useVerificationServiceV2, useVisitorTransactionController, useVisitorTransactionRepo, useVisitorTransactionService, useWorkOrderController, useWorkOrderRepo, useWorkOrderService, userSchema, vehicleSchema, vehicles_namespace_collection, visitors_namespace_collection, workOrderSchema, work_orders2_namespace_collection, work_orders_namespace_collection };
|
|
7106
|
+
export { ANPRMode, AccessTypeProps, AppServiceType, AssignCardConfig, BuildingLevelStatus, BuildingStatus, BulkCardUpdate, BulletinOrder, BulletinRecipient, BulletinSort, BulletinStatus, BulletinVideoOrder, BulletinVideoSort, Camera, CameraType, DEVICE_STATUS, DOBStatus, DayOfWeek, EAccessCardTypes, EAccessCardUserTypes, EmailSender, EntryOrder, EntrySort, EventOrder, EventSort, EventStatus, EventType, FacilitySort, FacilityStatus, FormEntryStatus, GuestSort, GuestStatus, IAccessCard, IAccessCardTransaction, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBillingConfiguration, MBillingItem, MBuilding, MBuildingLevel, MBuildingUnit, MBulletinBoard, MBulletinVideo, MCategoryPreloved, MChat, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MFormEntry, MGuestManagement, MIncidentReport, MManpowerDesignations, MManpowerMonitoring, MManpowerRemarks, MManpowerSites, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MOvernightParkingApprovalHours, MOvernightParkingRequest, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPost, MPromoCode, MRobot, MRole, MRoleV2, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubcategoryPreloved, MSubscription, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVerificationV2, MVisitorTransaction, MWorkOrder, OrgNature, OvernightParkingRequestSort, OvernightParkingRequestStatus, PERSON_TYPES, PMDashboardCollection, PStatus, Period, PersonStatus, PersonType, PersonTypes, PostOrder, PostSort, PostStatus, QrTagProps, SiteAddress, SiteCategories, SiteStatus, SortFields, SortOrder, Status, SubjectOrder, SubjectSort, SubscriptionType, TAccessMngmntSettings, TActionStatus, TAddress, TAffectedEntities, TAffectedInjured, TAppServiceType, TApprovedBy, TApprover, TAttendance, TAttendanceCheckIn, TAttendanceCheckOut, TAttendanceCheckTime, TAttendanceLocation, TAttendanceSettings, TAttendanceSettingsGetBySite, TAuthorities, TAuthoritiesCalled, TBilling, TBillingConfiguration, TBillingItem, TBuilding, TBuildingLevel, TBuildingUnit, TBulletinBoard, TBulletinVideo, TCamera, TCategoryPreloved, 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, TFormEntry, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TKeyRef, TManpowerDesignations, TManpowerDesignationsUpdate, TManpowerMonitoring, TManpowerMonitoringUpdate, TManpowerRemarks, TManpowerRemarksStatusUpdate, TManpowerRemarksUpdate, TManpowerSearchFilter, TManpowerSites, 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, TPost, TPrice, TPriceType, TPromoCode, TPromoTier, TRecipientOfComplaint, TRemarks, TResident, TRobot, TRobotMetadata, TRole, TRoleV2, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TShifts, TSite, TSiteCamera, TSiteFacility, TSiteFacilityBooking, TSiteInfo, TSiteInformation, TSiteMetadata, TSiteUpdateBlock, TStatementOfAccount, TSubcategoryPreloved, TSubmissionForm, TSubscription, TUnitBilling, TUnits, TUpdateName, TUser, TUserCreate, TVehicle, TVehicleTransaction, TVehicleUpdate, TVerification, TVerificationMetadata, TVerificationMetadataV2, TVerificationV2, TVisitorTransaction, TWorkOrder, TWorkOrderMetadata, TWorkOrderUpdate, TWorkOrderUpdateStatus, TWorkOrderUpdateToCompleted, TanyoneDamageToProperty, UseAccessManagementRepo, UserStatus, VehicleCategory, VehicleOrder, VehicleSort, VehicleStatus, VehicleType, VerificationLinkType, VerificationStatus, VerificationSubjectType, VerificationType, VisitorSort, VisitorStatus, addressSchema, allowedFieldsSite, allowedNatures, attendanceSchema, attendanceSettingsSchema, building_level_namespace_collection, building_units_namespace_collection, buildings_namespace_collection, bulletin_boards_namespace_collection, calculatePercentage, chatSchema, createManpowerRemarksDaily, customerSchema, designationsSchema, events_namespace_collection, facility_bookings_namespace_collection, feedbackSchema, feedbacks2_namespace_collection, feedbacks_namespace_collection, formatDahuaDate, getPeriodRangeWithPrevious, guests_namespace_collection, incidentReport, incidentReportLog, incidents_namespace_collection, landscapeDashboardCollection, logCamera, mAndEDashboardCollection, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, occurrence_book_namespace_collection, online_forms_namespace_collection, orgSchema, overnight_parking_requests_namespace_collection, parseDahuaFind, pestDashboardCollection, poolDashboardCollection, promoCodeSchema, remarksSchema, robotSchema, schema, schemaApprovedBy, schemaApprover, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaFormEntry, schemaGuestManagement, schemaIncidentReport, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaPost, schemaServiceProvider, schemaServiceProviderBilling, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaSubcategoryPreloved, schemaUnitBilling, schemaUpdateBuildingLevel, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateCategoryPreloved, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateFormEntry, schemaUpdateGuestManagement, schemaUpdateIncidentReport, schemaUpdateOccurrenceBook, schemaUpdateOccurrenceEntry, schemaUpdateOccurrenceSubject, schemaUpdateOnlineForm, schemaUpdateOptions, schemaUpdateOvernightParkingRequest, schemaUpdatePatrolLog, schemaUpdatePatrolQuestion, schemaUpdatePatrolRoute, schemaUpdatePerson, schemaUpdatePost, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteFacilityBooking, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateSubcategoryPreloved, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, securityDashboardCollection, shiftSchema, siteSchema, site_people_namespace_collection, tokenSchema, updateRemarksStatusEod, updateRemarksisAcknowledged, updateSiteSchema, useAccessManagementController, useAddressRepo, useAttendanceController, useAttendanceRepository, useAttendanceSettingsController, useAttendanceSettingsRepository, useAttendanceSettingsService, useAuthController, useAuthControllerV2, useAuthService, useAuthServiceV2, useBuildingController, useBuildingLevelController, useBuildingLevelRepo, useBuildingLevelService, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useBulletinBoardController, useBulletinBoardRepo, useBulletinBoardService, useBulletinVideoController, useBulletinVideoRepo, useBulletinVideoService, useCategoryPrelovedController, useCategoryPrelovedRepo, 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, useFormEntryController, useFormEntryRepo, useGuestManagementController, useGuestManagementRepo, useGuestManagementService, useHrmLabsAttendanceCtrl, useHrmLabsAttendanceSrvc, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useManpowerDesignationCtrl, useManpowerDesignationRepo, useManpowerMonitoringCtrl, useManpowerMonitoringRepo, useManpowerMonitoringSrvc, useManpowerRemarkCtrl, useManpowerRemarksRepo, useManpowerSitesCtrl, useManpowerSitesRepo, useManpowerSitesSrvc, 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, useOrgControllerV2, useOrgRepo, useOvernightParkingController, useOvernightParkingRepo, useOvernightParkingRequestController, useOvernightParkingRequestRepo, useOvernightParkingRequestService, usePatrolLogController, usePatrolLogRepo, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePostPrelovedController, usePostPrelovedRepo, usePriceController, usePriceModel, usePriceRepo, usePromoCodeController, usePromoCodeRepo, useRedDotPaymentController, useRedDotPaymentRepo, useRedDotPaymentSvc, useRobotController, useRobotRepo, useRobotService, useRoleController, useRoleControllerV2, useRoleRepo, useRoleRepoV2, useRoleServiceV2, 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, useSubcategoryPrelovedController, useSubcategoryPrelovedRepo, useSubscriptionController, useSubscriptionRepo, useSubscriptionService, useUserController, useUserControllerV2, useUserRepo, useUserRepoV2, useUserService, useUserServiceV2, useVehicleController, useVehicleRepo, useVehicleService, useVerificationController, useVerificationControllerV2, useVerificationRepo, useVerificationRepoV2, useVerificationService, useVerificationServiceV2, useVisitorTransactionController, useVisitorTransactionRepo, useVisitorTransactionService, useWorkOrderController, useWorkOrderRepo, useWorkOrderService, userSchema, vehicleSchema, vehicles_namespace_collection, visitors_namespace_collection, workOrderSchema, work_orders2_namespace_collection, work_orders_namespace_collection };
|