@7365admin1/core 3.32.2-staging.4 → 3.32.2-staging.40
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/.github/workflows/publish-staging.yml +11 -0
- package/CHANGELOG.md +60 -0
- package/dist/index.d.ts +79 -17
- package/dist/index.js +1994 -1419
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1976 -1402
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -34,3 +34,14 @@ jobs:
|
|
|
34
34
|
|
|
35
35
|
- name: Publish to npm with staging tag
|
|
36
36
|
run: npm publish --tag staging --registry https://registry.npmjs.org
|
|
37
|
+
|
|
38
|
+
- name: Notify Discord on failure
|
|
39
|
+
if: failure()
|
|
40
|
+
env:
|
|
41
|
+
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
|
42
|
+
run: |
|
|
43
|
+
MESSAGE="@everyone :rotating_light: **Publish Staging** failed in \`${{ github.repository }}\` (\`${{ github.workflow }}\`)
|
|
44
|
+
${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
|
|
45
|
+
curl -s -X POST -H "Content-Type: application/json" \
|
|
46
|
+
-d "$(jq -n --arg content "$MESSAGE" '{content: $content}')" \
|
|
47
|
+
"$DISCORD_WEBHOOK_URL"
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,65 @@
|
|
|
1
1
|
# @iservice365/core
|
|
2
2
|
|
|
3
|
+
## 3.39.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7bd9e97: VMS pass and key bugfixes, nfc patrol search filter, etc
|
|
8
|
+
|
|
9
|
+
## 3.38.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- d433685: VMS Checkout Bugfix
|
|
14
|
+
|
|
15
|
+
## 3.37.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- 7df2ac2: VMS add register create update people management enhancements, etc
|
|
20
|
+
|
|
21
|
+
## 3.36.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- f245a39: release changes in people api, etc.
|
|
26
|
+
|
|
27
|
+
## 3.35.0
|
|
28
|
+
|
|
29
|
+
### Minor Changes
|
|
30
|
+
|
|
31
|
+
- 6e0f967: release all changes from 07-22-26 to 07-24-26
|
|
32
|
+
|
|
33
|
+
## 3.34.3
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- 195c268: Fix manpower alert email flood: dedupe daily remark creation per site, skip alerts for sites without recipient emails, send one alert per site per alert time, and enforce a configurable daily alert limit (MANPOWER_ALERT_DAILY_LIMIT, default 50)
|
|
38
|
+
|
|
39
|
+
## 3.34.2
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- d81eaf1: Add request payload and response logging to the three invite endpoints (`createSimpleUserInvite`, `createSimpleMemberInvite`, `createServiceProviderInvite`) to diagnose reports of invites not sending. Logs at info level on success, and includes the payload alongside the existing error log on failure.
|
|
44
|
+
|
|
45
|
+
## 3.34.1
|
|
46
|
+
|
|
47
|
+
### Patch Changes
|
|
48
|
+
|
|
49
|
+
- 8986923: Fix `@7365admin1/node-server-utils` dependency to point at the real published `^1.6.0` instead of a leftover staging prerelease pin (`1.5.1-staging.1`). The stale prerelease caused a duplicate nested copy of node-server-utils to be installed alongside the real one, triggering "Unable to connect to server" errors at startup in consuming apps.
|
|
50
|
+
|
|
51
|
+
## 3.34.0
|
|
52
|
+
|
|
53
|
+
### Minor Changes
|
|
54
|
+
|
|
55
|
+
- 36c0873: Add `MAILER_FROM_EMAIL` config so the mailer's SMTP auth login and display sender can differ, needed for relaying through Brevo (or any provider whose SMTP login differs from the desired sender address). Falls back to the existing behavior when unset.
|
|
56
|
+
|
|
57
|
+
## 3.33.0
|
|
58
|
+
|
|
59
|
+
### Minor Changes
|
|
60
|
+
|
|
61
|
+
- fd94267: release api changes
|
|
62
|
+
|
|
3
63
|
## 3.32.0
|
|
4
64
|
|
|
5
65
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -609,7 +609,7 @@ declare function useOrgRepo(): {
|
|
|
609
609
|
pages: number;
|
|
610
610
|
pageRange: string;
|
|
611
611
|
} | TOrg>;
|
|
612
|
-
getById: (_id
|
|
612
|
+
getById: (_id?: string | ObjectId) => Promise<TOrg>;
|
|
613
613
|
getByName: (name: string) => Promise<TOrg>;
|
|
614
614
|
getByEmail: (email: string) => Promise<TOrg | null>;
|
|
615
615
|
updateFieldById: ({ _id, field, value, }: {
|
|
@@ -1590,7 +1590,7 @@ declare function useServiceProviderRepo(): {
|
|
|
1590
1590
|
siteId?: string | ObjectId | undefined;
|
|
1591
1591
|
orgId?: string | ObjectId | undefined;
|
|
1592
1592
|
serviceProviderOrgId?: string | ObjectId | undefined;
|
|
1593
|
-
}) => Promise<{}
|
|
1593
|
+
}) => Promise<{}>;
|
|
1594
1594
|
updateStatusById: (_id: string | ObjectId, status: string) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
1595
1595
|
};
|
|
1596
1596
|
|
|
@@ -1598,6 +1598,7 @@ declare function useServiceProviderController(): {
|
|
|
1598
1598
|
createServiceProvider: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1599
1599
|
getServiceProviders: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1600
1600
|
getByProviderOrg: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1601
|
+
getByEmail: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1601
1602
|
getServiceProviderNames: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1602
1603
|
getServiceProviderTypes: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1603
1604
|
getServiceProviderById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
@@ -1675,6 +1676,9 @@ declare function useCustomerController(): {
|
|
|
1675
1676
|
};
|
|
1676
1677
|
|
|
1677
1678
|
declare const addressSchema: Joi.ObjectSchema<any>;
|
|
1679
|
+
declare const residentAppModuleKeys: readonly ["feedback", "bulletin", "bulletinVideos", "inviteVisitors", "myVisitors", "billingAndSoa", "access", "facilityBooking", "onlineForm", "emergencyContact"];
|
|
1680
|
+
type ResidentAppModuleKey = (typeof residentAppModuleKeys)[number];
|
|
1681
|
+
type TResidentAppModules = Partial<Record<ResidentAppModuleKey, boolean>>;
|
|
1678
1682
|
declare enum SiteStatus {
|
|
1679
1683
|
ACTIVE = "active",
|
|
1680
1684
|
PENDING = "pending"
|
|
@@ -1695,6 +1699,7 @@ type TSiteMetadata = {
|
|
|
1695
1699
|
incidentCounter?: number;
|
|
1696
1700
|
incidentLogo?: string;
|
|
1697
1701
|
services?: Record<string, any>[];
|
|
1702
|
+
residentAppModules?: TResidentAppModules;
|
|
1698
1703
|
};
|
|
1699
1704
|
type SiteAddress = {
|
|
1700
1705
|
line1: string;
|
|
@@ -2275,7 +2280,7 @@ type TVehicle = {
|
|
|
2275
2280
|
status?: string;
|
|
2276
2281
|
nric?: string;
|
|
2277
2282
|
remarks?: string;
|
|
2278
|
-
org
|
|
2283
|
+
org?: string | ObjectId;
|
|
2279
2284
|
site: string | ObjectId;
|
|
2280
2285
|
plateNumber: string;
|
|
2281
2286
|
unitName?: string;
|
|
@@ -2498,6 +2503,7 @@ declare function useSiteCameraRepo(): {
|
|
|
2498
2503
|
category?: string;
|
|
2499
2504
|
direction?: string;
|
|
2500
2505
|
}) => Promise<{}>;
|
|
2506
|
+
getCamerasBySiteId: (site: string | ObjectId) => Promise<Array<TSiteCamera>>;
|
|
2501
2507
|
delCachedData: () => void;
|
|
2502
2508
|
getBySiteGuardPost: (site: string | ObjectId, guardPost: number) => Promise<{} | null>;
|
|
2503
2509
|
updateById: (_id: string | ObjectId, value: Partial<Pick<TSiteCamera, "host" | "username" | "password" | "category" | "guardPost" | "updatedAt">>, session?: ClientSession) => Promise<string>;
|
|
@@ -2625,7 +2631,7 @@ type TGetAttendancesQuery = {
|
|
|
2625
2631
|
startDate?: string | Date;
|
|
2626
2632
|
endDate?: string | Date;
|
|
2627
2633
|
} & Pick<TAttendance, "site" | "serviceType">;
|
|
2628
|
-
type TGetAttendancesByUserQuery = Pick<TGetAttendancesQuery, "page" | "limit" | "search" | "site" | "serviceType"> & Pick<TAttendance, "user">;
|
|
2634
|
+
type TGetAttendancesByUserQuery = Pick<TGetAttendancesQuery, "page" | "limit" | "search" | "site" | "serviceType" | "startDate" | "endDate"> & Pick<TAttendance, "user">;
|
|
2629
2635
|
declare const attendanceSchema: Joi.ObjectSchema<any>;
|
|
2630
2636
|
declare function MAttendance(value: TAttendance): {
|
|
2631
2637
|
site: string | ObjectId;
|
|
@@ -2684,8 +2690,8 @@ declare function useAttendanceSettingsController(): {
|
|
|
2684
2690
|
declare function useAttendanceRepository(): {
|
|
2685
2691
|
createIndex: () => Promise<void>;
|
|
2686
2692
|
checkInAttendance: (value: TAttendanceCheckIn, session?: ClientSession) => Promise<ObjectId>;
|
|
2687
|
-
getAllAttendances: ({ page, limit, search, site,
|
|
2688
|
-
getAttendanceByUser: ({ page, limit, search, site, serviceType, user, }: TGetAttendancesByUserQuery) => Promise<{}>;
|
|
2693
|
+
getAllAttendances: ({ page, limit, search, site, serviceType, }: TGetAttendancesQuery) => Promise<{}>;
|
|
2694
|
+
getAttendanceByUser: ({ page, limit, search, site, startDate, endDate, serviceType, user, }: TGetAttendancesByUserQuery) => Promise<{}>;
|
|
2689
2695
|
getAttendanceById: (_id: string | ObjectId, session?: ClientSession) => Promise<{}>;
|
|
2690
2696
|
getRawAttendanceById: (_id: string | ObjectId, session?: ClientSession) => Promise<TAttendance>;
|
|
2691
2697
|
checkOutAttendance: (_id: string | ObjectId, value: TAttendanceCheckOut, session?: ClientSession) => Promise<number>;
|
|
@@ -2746,7 +2752,7 @@ type TPerson = {
|
|
|
2746
2752
|
nric?: string;
|
|
2747
2753
|
contact?: string;
|
|
2748
2754
|
remarks?: string;
|
|
2749
|
-
org
|
|
2755
|
+
org?: string | ObjectId;
|
|
2750
2756
|
site: string | ObjectId;
|
|
2751
2757
|
unitName?: string;
|
|
2752
2758
|
companyName?: Array<string>;
|
|
@@ -2761,6 +2767,9 @@ type TPerson = {
|
|
|
2761
2767
|
createdAt?: string | Date;
|
|
2762
2768
|
updatedAt?: string | Date;
|
|
2763
2769
|
deletedAt?: string | Date;
|
|
2770
|
+
plateNumbers?: string[];
|
|
2771
|
+
contacts?: string[];
|
|
2772
|
+
updatedBy?: string | ObjectId;
|
|
2764
2773
|
};
|
|
2765
2774
|
declare const PERSON_TYPES: readonly ["walk-in", "drop-off", "contractor", "delivery", "pick-up", "guest", "tenant", "resident"];
|
|
2766
2775
|
type PersonType = (typeof PERSON_TYPES)[number];
|
|
@@ -2785,7 +2794,7 @@ declare function MPerson(value: TPerson): {
|
|
|
2785
2794
|
status: string;
|
|
2786
2795
|
nric: string | undefined;
|
|
2787
2796
|
remarks: string | undefined;
|
|
2788
|
-
org: string | ObjectId;
|
|
2797
|
+
org: string | ObjectId | undefined;
|
|
2789
2798
|
site: string | ObjectId;
|
|
2790
2799
|
companyName: string[] | undefined;
|
|
2791
2800
|
unitName: string | undefined;
|
|
@@ -2801,6 +2810,31 @@ declare function MPerson(value: TPerson): {
|
|
|
2801
2810
|
updatedAt: string | Date | undefined;
|
|
2802
2811
|
deletedAt: string | Date | undefined;
|
|
2803
2812
|
};
|
|
2813
|
+
type visitorType = "guest" | "walk-in" | "contractor" | "delivery";
|
|
2814
|
+
type visitorPersonService = {
|
|
2815
|
+
nric: string;
|
|
2816
|
+
name: string;
|
|
2817
|
+
contact: string;
|
|
2818
|
+
plateNumber?: string;
|
|
2819
|
+
email?: string;
|
|
2820
|
+
type: visitorType;
|
|
2821
|
+
site: string | ObjectId;
|
|
2822
|
+
company?: string;
|
|
2823
|
+
updatedBy?: string | ObjectId | undefined;
|
|
2824
|
+
};
|
|
2825
|
+
type visitorPersonRepo = {
|
|
2826
|
+
nric: string;
|
|
2827
|
+
name: string;
|
|
2828
|
+
contacts: string[];
|
|
2829
|
+
plateNumbers: string[];
|
|
2830
|
+
email?: string;
|
|
2831
|
+
type: visitorType;
|
|
2832
|
+
site: string | ObjectId;
|
|
2833
|
+
companyName: string[];
|
|
2834
|
+
status: string;
|
|
2835
|
+
createdBy?: string | ObjectId | undefined;
|
|
2836
|
+
updatedBy?: string | ObjectId | undefined;
|
|
2837
|
+
};
|
|
2804
2838
|
|
|
2805
2839
|
declare enum KeyStatus {
|
|
2806
2840
|
AVAILABLE = "Available",
|
|
@@ -3080,7 +3114,7 @@ declare function useGuestManagementController(): {
|
|
|
3080
3114
|
declare const site_people_namespace_collection = "site.people";
|
|
3081
3115
|
declare function usePersonRepo(): {
|
|
3082
3116
|
add: (value: TPerson, session?: ClientSession) => Promise<ObjectId>;
|
|
3083
|
-
getAll: ({ search, page, limit, sort, status, dateFrom, dateTo, org, site, type, }: {
|
|
3117
|
+
getAll: ({ search, page, limit, sort, status, dateFrom, dateTo, org, site, type, nric, contact, plateNumber, }: {
|
|
3084
3118
|
search?: string | undefined;
|
|
3085
3119
|
page?: number | undefined;
|
|
3086
3120
|
limit?: number | undefined;
|
|
@@ -3091,6 +3125,9 @@ declare function usePersonRepo(): {
|
|
|
3091
3125
|
org?: string | undefined;
|
|
3092
3126
|
site?: string | undefined;
|
|
3093
3127
|
type?: string | undefined;
|
|
3128
|
+
nric?: string | undefined;
|
|
3129
|
+
contact?: string | undefined;
|
|
3130
|
+
plateNumber: string;
|
|
3094
3131
|
}, session?: ClientSession) => Promise<{
|
|
3095
3132
|
items: any[];
|
|
3096
3133
|
pages: number;
|
|
@@ -3101,6 +3138,7 @@ declare function usePersonRepo(): {
|
|
|
3101
3138
|
getById: (_id: string | ObjectId) => Promise<TPerson | null>;
|
|
3102
3139
|
createTextIndex: () => Promise<void>;
|
|
3103
3140
|
getPersonByPlateNumber: (plateNumber: string) => Promise<TPerson | null>;
|
|
3141
|
+
getApprovedPersonByPlateNumber: (plateNumber: string, excludePersonId?: string | ObjectId) => Promise<TPerson | null>;
|
|
3104
3142
|
getByNRIC: (value: string) => Promise<TPerson | null>;
|
|
3105
3143
|
createIndexes: () => Promise<void>;
|
|
3106
3144
|
getPersonByPhoneNumber: (value: string) => Promise<TPerson | null>;
|
|
@@ -3125,6 +3163,8 @@ declare function usePersonRepo(): {
|
|
|
3125
3163
|
pullVehicleByRecNo: (recNo: string, session?: ClientSession) => Promise<void>;
|
|
3126
3164
|
getByUserId: (userId: string | ObjectId) => Promise<TPerson | null>;
|
|
3127
3165
|
reviewResidentPerson: (_id: ObjectId | string, value: Partial<TPerson>, session?: ClientSession) => Promise<mongodb.UpdateResult<TPerson>>;
|
|
3166
|
+
addFromVisitor: (value: visitorPersonRepo, session?: ClientSession) => Promise<mongodb.InsertOneResult<TPerson>>;
|
|
3167
|
+
findFirstTen: (query: Record<string, any>, session?: ClientSession) => Promise<mongodb.WithId<TPerson>[]>;
|
|
3128
3168
|
};
|
|
3129
3169
|
|
|
3130
3170
|
declare function usePersonController(): {
|
|
@@ -4751,7 +4791,13 @@ declare function UseAccessManagementRepo(): {
|
|
|
4751
4791
|
userType: string;
|
|
4752
4792
|
type: string;
|
|
4753
4793
|
search: string;
|
|
4754
|
-
|
|
4794
|
+
page: number;
|
|
4795
|
+
limit: number;
|
|
4796
|
+
}) => Promise<{
|
|
4797
|
+
items: any[];
|
|
4798
|
+
pages: number;
|
|
4799
|
+
pageRange: string;
|
|
4800
|
+
}>;
|
|
4755
4801
|
assignedAccessCardsByUnitRepo: (params: {
|
|
4756
4802
|
site: string;
|
|
4757
4803
|
unitId: string;
|
|
@@ -6074,8 +6120,8 @@ declare function useNfcPatrolLogRepo(): {
|
|
|
6074
6120
|
date?: string | undefined;
|
|
6075
6121
|
type?: "month" | undefined;
|
|
6076
6122
|
route?: {
|
|
6077
|
-
_id
|
|
6078
|
-
startTime
|
|
6123
|
+
_id?: string | ObjectId | undefined;
|
|
6124
|
+
startTime?: string | undefined;
|
|
6079
6125
|
} | undefined;
|
|
6080
6126
|
}, session?: ClientSession) => Promise<{
|
|
6081
6127
|
items: any[];
|
|
@@ -6106,7 +6152,7 @@ declare function useNfcPatrolLogService(): {
|
|
|
6106
6152
|
|
|
6107
6153
|
declare function useNfcPatrolLogController(): {
|
|
6108
6154
|
add: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6109
|
-
getAllBySite: (req: Request, res: Response, next: NextFunction) => Promise<void
|
|
6155
|
+
getAllBySite: (req: Request, res: Response, next: NextFunction) => Promise<void | Response<any, Record<string, any>>>;
|
|
6110
6156
|
completeCheckpoint: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6111
6157
|
getLog: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6112
6158
|
sign: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
@@ -6150,7 +6196,14 @@ declare function useNewDashboardRepo(): {
|
|
|
6150
6196
|
missed: any;
|
|
6151
6197
|
percentage: number;
|
|
6152
6198
|
};
|
|
6153
|
-
activePatrolItems:
|
|
6199
|
+
activePatrolItems: {
|
|
6200
|
+
id: string;
|
|
6201
|
+
title: any;
|
|
6202
|
+
subtitle: string;
|
|
6203
|
+
person: any;
|
|
6204
|
+
status: any;
|
|
6205
|
+
time: string;
|
|
6206
|
+
}[];
|
|
6154
6207
|
}>;
|
|
6155
6208
|
getPropertyManagementDashboard: (siteId: string, period?: Period, type?: string, facility?: string) => Promise<{
|
|
6156
6209
|
openWorkOrder: {
|
|
@@ -6827,6 +6880,8 @@ declare function useRedDotPaymentController(): {
|
|
|
6827
6880
|
redirectPaymentTransaction: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
6828
6881
|
enquirePaymentTransaction: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
6829
6882
|
createPayment: (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
|
|
6883
|
+
getPaymentByReference: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6884
|
+
updateStatus: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6830
6885
|
};
|
|
6831
6886
|
|
|
6832
6887
|
interface IDirectPayment extends IBaseModel {
|
|
@@ -6886,12 +6941,15 @@ type TBillingPayments = {
|
|
|
6886
6941
|
};
|
|
6887
6942
|
|
|
6888
6943
|
declare const useRedDotPaymentRepo: () => {
|
|
6944
|
+
createIndexes: () => Promise<void>;
|
|
6945
|
+
getPaymentByReference: (referenceNumber: string, session?: ClientSession) => Promise<TBillingPayments>;
|
|
6889
6946
|
paySingleUnitBill: (refId: string, payload: Partial<TUnitBilling>) => Promise<mongodb.WithId<bson.Document> | null>;
|
|
6890
|
-
createPayment: (type: string, payload: Partial<TBillingPayments>, session?: ClientSession) => Promise<
|
|
6947
|
+
createPayment: (type: string, payload: Partial<TBillingPayments>, session?: ClientSession) => Promise<string | undefined>;
|
|
6891
6948
|
payMultipleUnitBill: (refId: string[], payload: Partial<TUnitBilling>) => Promise<{
|
|
6892
6949
|
message: string;
|
|
6893
6950
|
remainingBalance: number;
|
|
6894
6951
|
}>;
|
|
6952
|
+
updateStatus: (_id: string | ObjectId, status: string, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
6895
6953
|
};
|
|
6896
6954
|
|
|
6897
6955
|
declare enum VerificationType {
|
|
@@ -7261,6 +7319,7 @@ declare function usePostPrelovedRepo(): {
|
|
|
7261
7319
|
updateById: (_id: string | ObjectId, value: Partial<TPost>, session?: any) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
7262
7320
|
deleteById: (_id: string | ObjectId, session?: any) => Promise<number>;
|
|
7263
7321
|
updateStatus: (_id: string | ObjectId, status: PostStatus, session?: any) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
7322
|
+
createIndexes: () => Promise<string>;
|
|
7264
7323
|
};
|
|
7265
7324
|
|
|
7266
7325
|
declare function usePostPrelovedController(): {
|
|
@@ -7295,6 +7354,7 @@ declare function usePostFavoriteRepo(): {
|
|
|
7295
7354
|
getById: (_id: string | ObjectId) => Promise<mongodb.WithId<TPostFavorite>>;
|
|
7296
7355
|
getByPostId: (postId: string | ObjectId) => Promise<mongodb.WithId<TPostFavorite>>;
|
|
7297
7356
|
updateById: (_id: string | ObjectId, userId: string | ObjectId, session?: any) => Promise<"removed" | "added">;
|
|
7357
|
+
createIndexes: () => Promise<string>;
|
|
7298
7358
|
};
|
|
7299
7359
|
|
|
7300
7360
|
declare function usePostFavoriteService(): {
|
|
@@ -7436,6 +7496,7 @@ declare function useChatPrelovedRepo(): {
|
|
|
7436
7496
|
add: (value: TChatPreloved, session?: any) => Promise<string | ObjectId>;
|
|
7437
7497
|
updateById: (_id: string | ObjectId, value: Partial<TChatPreloved>) => Promise<string>;
|
|
7438
7498
|
deleteById: (_id: string | ObjectId) => Promise<string>;
|
|
7499
|
+
createIndexes: () => Promise<string>;
|
|
7439
7500
|
};
|
|
7440
7501
|
|
|
7441
7502
|
declare function useChatPrelovedService(): {
|
|
@@ -7488,6 +7549,7 @@ declare function useChannelPrelovedRepo(): {
|
|
|
7488
7549
|
pages: number;
|
|
7489
7550
|
pageRange: string;
|
|
7490
7551
|
}>;
|
|
7552
|
+
createIndexes: () => Promise<string>;
|
|
7491
7553
|
};
|
|
7492
7554
|
|
|
7493
7555
|
declare function useChannelPrelovedController(): {
|
|
@@ -7648,7 +7710,7 @@ declare function useFormEntryRepo(): {
|
|
|
7648
7710
|
items: any[];
|
|
7649
7711
|
pages: number;
|
|
7650
7712
|
pageRange: string;
|
|
7651
|
-
}
|
|
7713
|
+
}>;
|
|
7652
7714
|
};
|
|
7653
7715
|
|
|
7654
7716
|
declare function useFormEntryController(): {
|
|
@@ -8064,4 +8126,4 @@ declare function useHidAmicoController(): {
|
|
|
8064
8126
|
finalizeIntercomCall: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
8065
8127
|
};
|
|
8066
8128
|
|
|
8067
|
-
export { ANPRMode, AccessTypeProps, AppServiceType, AssignCardConfig, BidStatus, BidType, BuildingLevelStatus, BuildingStatus, BulkCardUpdate, BulletinOrder, BulletinRecipient, BulletinSort, BulletinStatus, BulletinVideoOrder, BulletinVideoSort, Camera, CameraType, DEVICE_STATUS, DOBStatus, DayOfWeek, DynamicFormFields, EAccessCardTypes, EAccessCardUserTypes, EmailSender, EntryOrder, EntrySort, EventOrder, EventSort, EventStatus, EventType, FacilitySort, FacilityStatus, FormEntryStatus, GuestSort, GuestStatus, IAccessCard, IAccessCardTransaction, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBidPreloved, MBillingConfiguration, MBillingItem, MBuilding, MBuildingLevel, MBuildingUnit, MBulletinBoard, MBulletinVideo, MCategoryPreloved, MChannelPreloved, MChat, MChatPreloved, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MFormEntry, MGuestManagement, MHidAmicoEvent, MHidAmicoIdentity, MHidAmicoReader, MIncidentReport, MManpowerDesignations, MManpowerMonitoring, MManpowerRemarks, MManpowerSites, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MOvernightParkingApprovalHours, MOvernightParkingRequest, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPost, MPostFavorite, 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, 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, TBidPreloved, TBilling, TBillingConfiguration, TBillingItem, TBuilding, TBuildingLevel, TBuildingUnit, TBulletinBoard, TBulletinVideo, TCamera, TCategoryPreloved, TChannelPreloved, TChat, TChatPreloved, TCheckPoint$1 as TCheckPoint, TComplaintInfo, TComplaintReceivedTo, TCounter, TCreateNfcPatrolLog, TCustomer, TCustomerSite, TDayNumber, TDaySchedule, TDefaultAccessCard, TDesignations, TDocs, TDocumentCreate, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TFolderUpdate, TFormEntry, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, THidAmicoEvent, THidAmicoIdentity, THidAmicoReader, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TKeyRef, TManpowerDesignations, TManpowerDesignationsUpdate, TManpowerMonitoring, TManpowerMonitoringUpdate, TManpowerRemarks, TManpowerRemarksStatusUpdate, TManpowerRemarksUpdate, TManpowerSearchFilter, TManpowerSites, TMember, TMemberUpdateStatus, TMessagePreloved, 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, TPostFavorite, TPrice, TPriceType, TPromoCode, TPromoTier, TRecipientOfComplaint, TRemarks, TResident, TRobot, TRobotMetadata, TRole, TRoleV2, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TShifts, TSignNfcPatrolLog, TSite, TSiteCamera, TSiteFacility, TSiteFacilityBooking, TSiteInfo, TSiteInformation, TSiteMetadata, TSiteUpdateBlock, TStatementOfAccount, TSubcategoryPreloved, TSubmissionForm, TSubscription, TUnitBilling, TUnits, TUpdateFormEntry, 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, chatPrelovedEvents, chatSchema, createManpowerRemarksDaily, customerSchema, designationsSchema, events_namespace_collection, facility_bookings_namespace_collection, feedbackSchema, feedbacks2_namespace_collection, feedbacks_namespace_collection, formatDahuaDate, guests_namespace_collection, incidentReport, incidentReportLog, incidents_namespace_collection, logCamera, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, occurrence_book_namespace_collection, online_forms_namespace_collection, orgSchema, overnight_parking_requests_namespace_collection, parseDahuaFind, promoCodeSchema, remarksSchema, residentFormEntry, robotSchema, schema, schemaApprovedBy, schemaApprover, schemaBidPreloved, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaChannelPreloved, schemaChatPreloved, schemaCreateHidAmicoIdentity, schemaCreateNfcPatrolLog, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaFormEntry, schemaGuestManagement, schemaHidAmicoConfiguration, schemaHidAmicoEvent, schemaHidAmicoExecuteActions, schemaHidAmicoIdentity, schemaHidAmicoIdentityIdParams, schemaHidAmicoIdentityQuery, schemaHidAmicoIntercomCall, schemaHidAmicoLogQuery, schemaHidAmicoNotificationParams, schemaHidAmicoObjectOperation, schemaHidAmicoReader, schemaHidAmicoReaderIdParams, schemaHidAmicoReaderListQuery, schemaHidAmicoSetConfiguration, schemaHidAmicoSync, schemaHidAmicoUserImageParams, schemaIncidentReport, schemaMultipleDocumentManagement, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaPost, schemaPostFavorite, schemaServiceProvider, schemaServiceProviderBilling, schemaSignNfcPatrolLog, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaSubcategoryPreloved, schemaUnitBilling, schemaUpdateBidPreloved, schemaUpdateBuildingLevel, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateCategoryPreloved, schemaUpdateChatPreloved, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateFolderManagement, schemaUpdateFormEntry, schemaUpdateGuestManagement, schemaUpdateHidAmicoIdentity, schemaUpdateHidAmicoReader, schemaUpdateIncidentReport, schemaUpdateOccurrenceBook, schemaUpdateOccurrenceEntry, schemaUpdateOccurrenceSubject, schemaUpdateOnlineForm, schemaUpdateOptions, schemaUpdateOvernightParkingRequest, schemaUpdatePatrolLog, schemaUpdatePatrolQuestion, schemaUpdatePatrolRoute, schemaUpdatePerson, schemaUpdatePost, schemaUpdatePostFavorite, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteFacilityBooking, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateSubcategoryPreloved, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, shiftSchema, siteSchema, site_people_namespace_collection, tokenSchema, updateRemarksStatusEod, updateRemarksisAcknowledged, updateSiteSchema, useAccessManagementController, useAddressRepo, useAttendanceController, useAttendanceRepository, useAttendanceSettingsController, useAttendanceSettingsRepository, useAttendanceSettingsService, useAuthController, useAuthControllerV2, useAuthService, useAuthServiceV2, useBidPrelovedController, useBidPrelovedRepo, useBidPrelovedService, useBuildingController, useBuildingLevelController, useBuildingLevelRepo, useBuildingLevelService, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useBulletinBoardController, useBulletinBoardRepo, useBulletinBoardService, useBulletinVideoController, useBulletinVideoRepo, useBulletinVideoService, useCategoryPrelovedController, useCategoryPrelovedRepo, useChannelPrelovedController, useChannelPrelovedRepo, useChatController, useChatPrelovedController, useChatPrelovedRepo, useChatPrelovedService, 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, useHidAmicoController, useHidAmicoRepo, useHidAmicoService, useHrmLabsAttendanceCtrl, useHrmLabsAttendanceSrvc, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useManpowerDesignationCtrl, useManpowerDesignationRepo, useManpowerMonitoringCtrl, useManpowerMonitoringRepo, useManpowerMonitoringSrvc, useManpowerRemarkCtrl, useManpowerRemarksRepo, useManpowerSitesCtrl, useManpowerSitesRepo, useManpowerSitesSrvc, useMemberController, useMemberRepo, useMemberService, 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, usePostFavoriteController, usePostFavoriteRepo, usePostFavoriteService, 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 };
|
|
8129
|
+
export { ANPRMode, AccessTypeProps, AppServiceType, AssignCardConfig, BidStatus, BidType, BuildingLevelStatus, BuildingStatus, BulkCardUpdate, BulletinOrder, BulletinRecipient, BulletinSort, BulletinStatus, BulletinVideoOrder, BulletinVideoSort, Camera, CameraType, DEVICE_STATUS, DOBStatus, DayOfWeek, DynamicFormFields, EAccessCardTypes, EAccessCardUserTypes, EmailSender, EntryOrder, EntrySort, EventOrder, EventSort, EventStatus, EventType, FacilitySort, FacilityStatus, FormEntryStatus, GuestSort, GuestStatus, IAccessCard, IAccessCardTransaction, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBidPreloved, MBillingConfiguration, MBillingItem, MBuilding, MBuildingLevel, MBuildingUnit, MBulletinBoard, MBulletinVideo, MCategoryPreloved, MChannelPreloved, MChat, MChatPreloved, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MFormEntry, MGuestManagement, MHidAmicoEvent, MHidAmicoIdentity, MHidAmicoReader, MIncidentReport, MManpowerDesignations, MManpowerMonitoring, MManpowerRemarks, MManpowerSites, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MOvernightParkingApprovalHours, MOvernightParkingRequest, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPost, MPostFavorite, 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, PStatus, Period, PersonStatus, PersonType, PersonTypes, PostOrder, PostSort, PostStatus, QrTagProps, ResidentAppModuleKey, 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, TBidPreloved, TBilling, TBillingConfiguration, TBillingItem, TBuilding, TBuildingLevel, TBuildingUnit, TBulletinBoard, TBulletinVideo, TCamera, TCategoryPreloved, TChannelPreloved, TChat, TChatPreloved, TCheckPoint$1 as TCheckPoint, TComplaintInfo, TComplaintReceivedTo, TCounter, TCreateNfcPatrolLog, TCustomer, TCustomerSite, TDayNumber, TDaySchedule, TDefaultAccessCard, TDesignations, TDocs, TDocumentCreate, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TFolderUpdate, TFormEntry, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, THidAmicoEvent, THidAmicoIdentity, THidAmicoReader, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TKeyRef, TManpowerDesignations, TManpowerDesignationsUpdate, TManpowerMonitoring, TManpowerMonitoringUpdate, TManpowerRemarks, TManpowerRemarksStatusUpdate, TManpowerRemarksUpdate, TManpowerSearchFilter, TManpowerSites, TMember, TMemberUpdateStatus, TMessagePreloved, 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, TPostFavorite, TPrice, TPriceType, TPromoCode, TPromoTier, TRecipientOfComplaint, TRemarks, TResident, TResidentAppModules, TRobot, TRobotMetadata, TRole, TRoleV2, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TShifts, TSignNfcPatrolLog, TSite, TSiteCamera, TSiteFacility, TSiteFacilityBooking, TSiteInfo, TSiteInformation, TSiteMetadata, TSiteUpdateBlock, TStatementOfAccount, TSubcategoryPreloved, TSubmissionForm, TSubscription, TUnitBilling, TUnits, TUpdateFormEntry, 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, chatPrelovedEvents, chatSchema, createManpowerRemarksDaily, customerSchema, designationsSchema, events_namespace_collection, facility_bookings_namespace_collection, feedbackSchema, feedbacks2_namespace_collection, feedbacks_namespace_collection, formatDahuaDate, guests_namespace_collection, incidentReport, incidentReportLog, incidents_namespace_collection, logCamera, manpowerDesignationsSchema, manpowerEvents, manpowerMonitoringSchema, manpowerRemarksSchema, manpowerSitesSchema, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, occurrence_book_namespace_collection, online_forms_namespace_collection, orgSchema, overnight_parking_requests_namespace_collection, parseDahuaFind, promoCodeSchema, remarksSchema, residentAppModuleKeys, residentFormEntry, robotSchema, schema, schemaApprovedBy, schemaApprover, schemaBidPreloved, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaChannelPreloved, schemaChatPreloved, schemaCreateHidAmicoIdentity, schemaCreateNfcPatrolLog, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaFormEntry, schemaGuestManagement, schemaHidAmicoConfiguration, schemaHidAmicoEvent, schemaHidAmicoExecuteActions, schemaHidAmicoIdentity, schemaHidAmicoIdentityIdParams, schemaHidAmicoIdentityQuery, schemaHidAmicoIntercomCall, schemaHidAmicoLogQuery, schemaHidAmicoNotificationParams, schemaHidAmicoObjectOperation, schemaHidAmicoReader, schemaHidAmicoReaderIdParams, schemaHidAmicoReaderListQuery, schemaHidAmicoSetConfiguration, schemaHidAmicoSync, schemaHidAmicoUserImageParams, schemaIncidentReport, schemaMultipleDocumentManagement, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaPost, schemaPostFavorite, schemaServiceProvider, schemaServiceProviderBilling, schemaSignNfcPatrolLog, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaSubcategoryPreloved, schemaUnitBilling, schemaUpdateBidPreloved, schemaUpdateBuildingLevel, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateCategoryPreloved, schemaUpdateChatPreloved, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateFolderManagement, schemaUpdateFormEntry, schemaUpdateGuestManagement, schemaUpdateHidAmicoIdentity, schemaUpdateHidAmicoReader, schemaUpdateIncidentReport, schemaUpdateOccurrenceBook, schemaUpdateOccurrenceEntry, schemaUpdateOccurrenceSubject, schemaUpdateOnlineForm, schemaUpdateOptions, schemaUpdateOvernightParkingRequest, schemaUpdatePatrolLog, schemaUpdatePatrolQuestion, schemaUpdatePatrolRoute, schemaUpdatePerson, schemaUpdatePost, schemaUpdatePostFavorite, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteFacilityBooking, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateSubcategoryPreloved, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, shiftSchema, siteSchema, site_people_namespace_collection, tokenSchema, updateRemarksStatusEod, updateRemarksisAcknowledged, updateSiteSchema, useAccessManagementController, useAddressRepo, useAttendanceController, useAttendanceRepository, useAttendanceSettingsController, useAttendanceSettingsRepository, useAttendanceSettingsService, useAuthController, useAuthControllerV2, useAuthService, useAuthServiceV2, useBidPrelovedController, useBidPrelovedRepo, useBidPrelovedService, useBuildingController, useBuildingLevelController, useBuildingLevelRepo, useBuildingLevelService, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useBulletinBoardController, useBulletinBoardRepo, useBulletinBoardService, useBulletinVideoController, useBulletinVideoRepo, useBulletinVideoService, useCategoryPrelovedController, useCategoryPrelovedRepo, useChannelPrelovedController, useChannelPrelovedRepo, useChatController, useChatPrelovedController, useChatPrelovedRepo, useChatPrelovedService, 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, useHidAmicoController, useHidAmicoRepo, useHidAmicoService, useHrmLabsAttendanceCtrl, useHrmLabsAttendanceSrvc, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useManpowerDesignationCtrl, useManpowerDesignationRepo, useManpowerMonitoringCtrl, useManpowerMonitoringRepo, useManpowerMonitoringSrvc, useManpowerRemarkCtrl, useManpowerRemarksRepo, useManpowerSitesCtrl, useManpowerSitesRepo, useManpowerSitesSrvc, useMemberController, useMemberRepo, useMemberService, 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, usePostFavoriteController, usePostFavoriteRepo, usePostFavoriteService, 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, visitorPersonRepo, visitorPersonService, visitorType, visitors_namespace_collection, workOrderSchema, work_orders2_namespace_collection, work_orders_namespace_collection };
|