@7365admin1/core 3.4.0 → 3.6.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 +206 -36
- package/dist/index.js +2263 -976
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2578 -1289
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @iservice365/core
|
|
2
2
|
|
|
3
|
+
## 3.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 64032af: release changes in notification, billing, and soa api
|
|
8
|
+
|
|
9
|
+
## 3.5.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 962e2fe: release notification api changes
|
|
14
|
+
|
|
3
15
|
## 3.4.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -317,7 +317,7 @@ declare function useMemberRepo(): {
|
|
|
317
317
|
pages: number;
|
|
318
318
|
pageRange: string;
|
|
319
319
|
} | TMember>;
|
|
320
|
-
getOrgsByMembership: ({ search, page, limit, user, type }: {
|
|
320
|
+
getOrgsByMembership: ({ search, page, limit, user, type, }: {
|
|
321
321
|
search?: string | undefined;
|
|
322
322
|
page?: number | undefined;
|
|
323
323
|
limit?: number | undefined;
|
|
@@ -346,6 +346,10 @@ declare function useMemberRepo(): {
|
|
|
346
346
|
updateSiteById: (_id: string | ObjectId, siteId: string | ObjectId, siteName: string) => Promise<number>;
|
|
347
347
|
getByUserIdTypeOrg: (user: string | ObjectId, type: string, org: string | ObjectId) => Promise<TMember>;
|
|
348
348
|
completeOnboardingById: (_id: string | ObjectId, session?: ClientSession) => Promise<string>;
|
|
349
|
+
getUsersBySiteId: ({ status, siteId, }: {
|
|
350
|
+
status: string;
|
|
351
|
+
siteId: string | ObjectId | undefined;
|
|
352
|
+
}) => Promise<bson.Document[]>;
|
|
349
353
|
};
|
|
350
354
|
|
|
351
355
|
declare function useMemberController(): {
|
|
@@ -2012,7 +2016,7 @@ declare function useBuildingUnitRepo(): {
|
|
|
2012
2016
|
updateByBuildingId: (building: string | ObjectId, value: Partial<Pick<TBuildingUnit, "buildingName" | "block">>, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
2013
2017
|
getBuildingUnits: (site: string | ObjectId, block: string, level: string) => Promise<bson.Document[]>;
|
|
2014
2018
|
getBuildingUnitsForResident: (site: string | ObjectId, block: number, level: string) => Promise<bson.Document[]>;
|
|
2015
|
-
getBuildingUnitsWithOwner: (site: string | ObjectId, unitIds?: ObjectId[]) => Promise<
|
|
2019
|
+
getBuildingUnitsWithOwner: (site: string | ObjectId, unitIds?: ObjectId[]) => Promise<bson.Document[]>;
|
|
2016
2020
|
getUnitByBlockLevelUnitNumber: (block: string, level: string, unitNumber: string, site: string | ObjectId, session?: ClientSession) => Promise<TBuildingUnit>;
|
|
2017
2021
|
getBySiteBuildingLevel: (site: string | ObjectId, block: number, level: string) => Promise<TBuildingUnit | null>;
|
|
2018
2022
|
bulkAddBuildingUnits: (value: TBuildingUnit[], session?: ClientSession) => Promise<mongodb.BulkWriteResult>;
|
|
@@ -5989,12 +5993,6 @@ declare enum Period {
|
|
|
5989
5993
|
THIS_WEEK = "thisWeek",
|
|
5990
5994
|
THIS_MONTH = "thisMonth"
|
|
5991
5995
|
}
|
|
5992
|
-
declare const securityDashboardCollection = "security-dashboard";
|
|
5993
|
-
declare const PMDashboardCollection = "PM-dashboard";
|
|
5994
|
-
declare const pestDashboardCollection = "pest-dashboard";
|
|
5995
|
-
declare const poolDashboardCollection = "pool-dashboard";
|
|
5996
|
-
declare const mAndEDashboardCollection = "M&E-dashboard";
|
|
5997
|
-
declare const landscapeDashboardCollection = "landscape-dashboard";
|
|
5998
5996
|
declare function getPeriodRangeWithPrevious(period: Period): {
|
|
5999
5997
|
current: {
|
|
6000
5998
|
start: string;
|
|
@@ -6016,7 +6014,36 @@ declare function useNewDashboardRepo(): {
|
|
|
6016
6014
|
visitor?: Period | undefined;
|
|
6017
6015
|
incident?: Period | undefined;
|
|
6018
6016
|
guest?: Period | undefined;
|
|
6019
|
-
}) => Promise<
|
|
6017
|
+
}) => Promise<{
|
|
6018
|
+
feedbacks: {
|
|
6019
|
+
count: number;
|
|
6020
|
+
percentage: number;
|
|
6021
|
+
};
|
|
6022
|
+
workOrders: {
|
|
6023
|
+
count: number;
|
|
6024
|
+
percentage: number;
|
|
6025
|
+
};
|
|
6026
|
+
vehicles: {
|
|
6027
|
+
count: number;
|
|
6028
|
+
percentage: number;
|
|
6029
|
+
};
|
|
6030
|
+
buildings: {
|
|
6031
|
+
count: number;
|
|
6032
|
+
percentage: number;
|
|
6033
|
+
};
|
|
6034
|
+
visitors: {
|
|
6035
|
+
count: number;
|
|
6036
|
+
percentage: number;
|
|
6037
|
+
};
|
|
6038
|
+
incidents: {
|
|
6039
|
+
count: number;
|
|
6040
|
+
percentage: number;
|
|
6041
|
+
};
|
|
6042
|
+
guests: {
|
|
6043
|
+
count: number;
|
|
6044
|
+
percentage: number;
|
|
6045
|
+
};
|
|
6046
|
+
}>;
|
|
6020
6047
|
getPropertyManagementDashboard: ({ siteId, feedback, workOrder, sitePeople, facilityBooking, bulletinBoard, event, vehicle, building, visitor, incident, }: {
|
|
6021
6048
|
siteId: string;
|
|
6022
6049
|
feedback?: Period | undefined;
|
|
@@ -6029,36 +6056,169 @@ declare function useNewDashboardRepo(): {
|
|
|
6029
6056
|
building?: Period | undefined;
|
|
6030
6057
|
visitor?: Period | undefined;
|
|
6031
6058
|
incident?: Period | undefined;
|
|
6032
|
-
}) => Promise<
|
|
6033
|
-
|
|
6034
|
-
|
|
6035
|
-
|
|
6036
|
-
|
|
6037
|
-
|
|
6038
|
-
|
|
6039
|
-
|
|
6040
|
-
|
|
6041
|
-
|
|
6042
|
-
|
|
6043
|
-
|
|
6044
|
-
|
|
6045
|
-
|
|
6046
|
-
|
|
6047
|
-
|
|
6048
|
-
|
|
6049
|
-
|
|
6050
|
-
|
|
6051
|
-
|
|
6052
|
-
|
|
6059
|
+
}) => Promise<{
|
|
6060
|
+
feedbacks: {
|
|
6061
|
+
count: number;
|
|
6062
|
+
percentage: number;
|
|
6063
|
+
};
|
|
6064
|
+
workOrders: {
|
|
6065
|
+
count: number;
|
|
6066
|
+
percentage: number;
|
|
6067
|
+
};
|
|
6068
|
+
vehicles: {
|
|
6069
|
+
count: number;
|
|
6070
|
+
percentage: number;
|
|
6071
|
+
};
|
|
6072
|
+
buildings: {
|
|
6073
|
+
count: number;
|
|
6074
|
+
percentage: number;
|
|
6075
|
+
};
|
|
6076
|
+
visitors: {
|
|
6077
|
+
count: number;
|
|
6078
|
+
percentage: number;
|
|
6079
|
+
};
|
|
6080
|
+
incidents: {
|
|
6081
|
+
count: number;
|
|
6082
|
+
percentage: number;
|
|
6083
|
+
};
|
|
6084
|
+
sitePeople: {
|
|
6085
|
+
count: number;
|
|
6086
|
+
percentage: number;
|
|
6087
|
+
};
|
|
6088
|
+
bulletinBoards: {
|
|
6089
|
+
count: number;
|
|
6090
|
+
percentage: number;
|
|
6091
|
+
};
|
|
6092
|
+
events: {
|
|
6093
|
+
count: number;
|
|
6094
|
+
percentage: number;
|
|
6095
|
+
};
|
|
6096
|
+
facilityBookings: {
|
|
6097
|
+
count: number;
|
|
6098
|
+
percentage: number;
|
|
6099
|
+
};
|
|
6100
|
+
}>;
|
|
6101
|
+
getServiceDashboard: ({ site, serviceType, period, type, facility, }: {
|
|
6102
|
+
site: string | ObjectId;
|
|
6103
|
+
serviceType: TAppServiceType;
|
|
6104
|
+
period?: Period | undefined;
|
|
6105
|
+
type?: string | undefined;
|
|
6106
|
+
facility?: string | undefined;
|
|
6107
|
+
}) => Promise<{
|
|
6108
|
+
openWorkOrder: {
|
|
6109
|
+
count: any;
|
|
6110
|
+
inProgress: any;
|
|
6111
|
+
percentage: number;
|
|
6112
|
+
};
|
|
6113
|
+
openIncidents: {
|
|
6114
|
+
count: any;
|
|
6115
|
+
highSeverity: number;
|
|
6116
|
+
percentage: number;
|
|
6117
|
+
};
|
|
6118
|
+
visitors: {
|
|
6119
|
+
count: any;
|
|
6120
|
+
currentlyOnSite: number;
|
|
6121
|
+
percentage: number;
|
|
6122
|
+
};
|
|
6123
|
+
facilityBooking: {
|
|
6124
|
+
count: any;
|
|
6125
|
+
ongoing: any;
|
|
6126
|
+
waitingApproval: any;
|
|
6127
|
+
percentage: number;
|
|
6128
|
+
};
|
|
6129
|
+
} | {
|
|
6130
|
+
openWorkOrder: {
|
|
6131
|
+
count: any;
|
|
6132
|
+
inProgress: any;
|
|
6133
|
+
percentage: number;
|
|
6134
|
+
};
|
|
6135
|
+
openIncidents: {
|
|
6136
|
+
count: any;
|
|
6137
|
+
highSeverity: number;
|
|
6138
|
+
percentage: number;
|
|
6139
|
+
};
|
|
6140
|
+
visitors: {
|
|
6141
|
+
count: any;
|
|
6142
|
+
currentlyOnSite: number;
|
|
6143
|
+
percentage: number;
|
|
6144
|
+
};
|
|
6145
|
+
patrolCompliance: {
|
|
6146
|
+
count: number;
|
|
6147
|
+
missedCheckpoints: any;
|
|
6148
|
+
missed: any;
|
|
6149
|
+
percentage: number;
|
|
6150
|
+
};
|
|
6151
|
+
} | {
|
|
6152
|
+
openWorkOrder: {
|
|
6153
|
+
count: any;
|
|
6154
|
+
inProgress: any;
|
|
6155
|
+
percentage: number;
|
|
6156
|
+
};
|
|
6157
|
+
supplyAlert: {
|
|
6158
|
+
items: {
|
|
6159
|
+
name: any;
|
|
6160
|
+
qty: any;
|
|
6161
|
+
}[];
|
|
6162
|
+
};
|
|
6163
|
+
taskCompleted: {
|
|
6164
|
+
completed: any;
|
|
6165
|
+
total: any;
|
|
6166
|
+
inProgress: any;
|
|
6167
|
+
percentage: number;
|
|
6168
|
+
};
|
|
6169
|
+
}>;
|
|
6170
|
+
getServiceWeeklyActivity: ({ site, serviceType, period, }: {
|
|
6171
|
+
site: string | ObjectId;
|
|
6172
|
+
serviceType: TAppServiceType;
|
|
6173
|
+
period?: Period | undefined;
|
|
6174
|
+
}) => Promise<{
|
|
6175
|
+
day: string;
|
|
6176
|
+
label: string;
|
|
6177
|
+
openWorkOrder: number;
|
|
6178
|
+
closedWorkOrder: number;
|
|
6179
|
+
workOrder: number;
|
|
6180
|
+
taskCompleted: number;
|
|
6181
|
+
}[]>;
|
|
6182
|
+
getServiceTodayTaskSchedule: ({ site, serviceType, page, limit, }: {
|
|
6183
|
+
site: string | ObjectId;
|
|
6184
|
+
serviceType: TAppServiceType;
|
|
6185
|
+
page?: number | undefined;
|
|
6186
|
+
limit?: number | undefined;
|
|
6187
|
+
}) => Promise<{
|
|
6188
|
+
items: any[];
|
|
6189
|
+
pages: number;
|
|
6190
|
+
pageRange: string;
|
|
6191
|
+
}>;
|
|
6192
|
+
getServiceStaffAttendance: ({ site, serviceType, page, limit, }: {
|
|
6193
|
+
site: string | ObjectId;
|
|
6194
|
+
serviceType: TAppServiceType;
|
|
6195
|
+
page?: number | undefined;
|
|
6196
|
+
limit?: number | undefined;
|
|
6197
|
+
}) => Promise<{
|
|
6198
|
+
items: any[];
|
|
6199
|
+
pages: number;
|
|
6200
|
+
pageRange: string;
|
|
6201
|
+
}>;
|
|
6202
|
+
getServiceRecentFeedbacks: ({ site, serviceType, page, limit, }: {
|
|
6203
|
+
site: string | ObjectId;
|
|
6204
|
+
serviceType: TAppServiceType;
|
|
6205
|
+
page?: number | undefined;
|
|
6206
|
+
limit?: number | undefined;
|
|
6207
|
+
}) => Promise<{
|
|
6208
|
+
items: any[];
|
|
6209
|
+
pages: number;
|
|
6210
|
+
pageRange: string;
|
|
6211
|
+
}>;
|
|
6053
6212
|
};
|
|
6054
6213
|
|
|
6055
6214
|
declare function useNewDashboardController(): {
|
|
6056
6215
|
getSecurityDashboard: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6057
6216
|
getPropertyManagementDashboard: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6058
|
-
|
|
6059
|
-
|
|
6060
|
-
|
|
6061
|
-
|
|
6217
|
+
getServiceDashboard: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6218
|
+
getServiceWeeklyActivity: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6219
|
+
getServiceTodayTaskSchedule: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6220
|
+
getServiceStaffAttendance: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6221
|
+
getServiceRecentFeedbacks: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
6062
6222
|
};
|
|
6063
6223
|
|
|
6064
6224
|
type TShifts = {
|
|
@@ -7231,7 +7391,8 @@ declare function MChannelPreloved(value: TChannelPreloved): {
|
|
|
7231
7391
|
};
|
|
7232
7392
|
|
|
7233
7393
|
declare function useChannelPrelovedRepo(): {
|
|
7234
|
-
add: (value: TChannelPreloved, session?: any) => Promise<string |
|
|
7394
|
+
add: (value: TChannelPreloved, session?: any) => Promise<string | ObjectId>;
|
|
7395
|
+
getByParticipants: (senderId: string | ObjectId, receiverId: string | ObjectId, postId: string | ObjectId, session?: any) => Promise<mongodb.WithId<TChannelPreloved> | null>;
|
|
7235
7396
|
};
|
|
7236
7397
|
|
|
7237
7398
|
declare function useChannelPrelovedController(): {
|
|
@@ -7294,7 +7455,10 @@ interface residentFormEntry {
|
|
|
7294
7455
|
status: string;
|
|
7295
7456
|
site: string | ObjectId;
|
|
7296
7457
|
org: string | ObjectId;
|
|
7458
|
+
userId: string | ObjectId;
|
|
7297
7459
|
fields: Record<string, any>;
|
|
7460
|
+
remarks?: string;
|
|
7461
|
+
managementValues?: Record<string, any>;
|
|
7298
7462
|
}
|
|
7299
7463
|
declare const residentFormEntry: Joi.ObjectSchema<any>;
|
|
7300
7464
|
|
|
@@ -7319,6 +7483,11 @@ declare function useFormEntryRepo(): {
|
|
|
7319
7483
|
createTextIndex: () => Promise<void>;
|
|
7320
7484
|
deleteOnlineFormById: (_id: string | ObjectId, session?: ClientSession) => Promise<number>;
|
|
7321
7485
|
addResidentForm: (value: residentFormEntry, session?: ClientSession) => Promise<ObjectId>;
|
|
7486
|
+
residentForm: ({ userId, site, org }: {
|
|
7487
|
+
userId: string;
|
|
7488
|
+
site: string | ObjectId;
|
|
7489
|
+
org: string | ObjectId;
|
|
7490
|
+
}) => Promise<bson.Document[]>;
|
|
7322
7491
|
};
|
|
7323
7492
|
|
|
7324
7493
|
declare function useFormEntryController(): {
|
|
@@ -7329,6 +7498,7 @@ declare function useFormEntryController(): {
|
|
|
7329
7498
|
updateFormEntryById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7330
7499
|
deleteFormEntryById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7331
7500
|
residentFormSubmission: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7501
|
+
residentForm: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7332
7502
|
};
|
|
7333
7503
|
|
|
7334
7504
|
declare enum BuildingLevelStatus {
|
|
@@ -7405,4 +7575,4 @@ declare function useBuildingLevelController(): {
|
|
|
7405
7575
|
getBuildingLevelList: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7406
7576
|
};
|
|
7407
7577
|
|
|
7408
|
-
export { ANPRMode, AccessTypeProps, AppServiceType, AssignCardConfig, 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, MBillingConfiguration, MBillingItem, MBuilding, MBuildingLevel, MBuildingUnit, MBulletinBoard, MBulletinVideo, MCategoryPreloved, MChannelPreloved, MChat, MChatPreloved, 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, 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, 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, TChannelPreloved, TChat, TChatPreloved, TCheckPoint$1 as TCheckPoint, TComplaintInfo, TComplaintReceivedTo, TCounter, TCustomer, TCustomerSite, TDayNumber, TDaySchedule, TDefaultAccessCard, TDesignations, TDocs, TDocumentCreate, 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, 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, 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, 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, residentFormEntry, robotSchema, schema, schemaApprovedBy, schemaApprover, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaChannelPreloved, schemaChatPreloved, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaFormEntry, schemaGuestManagement, schemaIncidentReport, schemaMultipleDocumentManagement, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaPost, schemaPostFavorite, schemaServiceProvider, schemaServiceProviderBilling, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaSubcategoryPreloved, schemaUnitBilling, schemaUpdateBuildingLevel, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateCategoryPreloved, schemaUpdateChatPreloved, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateFormEntry, schemaUpdateGuestManagement, 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, 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, useChannelPrelovedController, useChannelPrelovedRepo, useChatController, useChatPrelovedController, useChatPrelovedRepo, 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, 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 };
|
|
7578
|
+
export { ANPRMode, AccessTypeProps, AppServiceType, AssignCardConfig, 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, MBillingConfiguration, MBillingItem, MBuilding, MBuildingLevel, MBuildingUnit, MBulletinBoard, MBulletinVideo, MCategoryPreloved, MChannelPreloved, MChat, MChatPreloved, 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, 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, TBilling, TBillingConfiguration, TBillingItem, TBuilding, TBuildingLevel, TBuildingUnit, TBulletinBoard, TBulletinVideo, TCamera, TCategoryPreloved, TChannelPreloved, TChat, TChatPreloved, TCheckPoint$1 as TCheckPoint, TComplaintInfo, TComplaintReceivedTo, TCounter, TCustomer, TCustomerSite, TDayNumber, TDaySchedule, TDefaultAccessCard, TDesignations, TDocs, TDocumentCreate, 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, 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, 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, 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, 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, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, schemaChannelPreloved, schemaChatPreloved, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaFormEntry, schemaGuestManagement, schemaIncidentReport, schemaMultipleDocumentManagement, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaOvernightParkingApprovalHours, schemaOvernightParkingRequest, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaPost, schemaPostFavorite, schemaServiceProvider, schemaServiceProviderBilling, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaSubcategoryPreloved, schemaUnitBilling, schemaUpdateBuildingLevel, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateCategoryPreloved, schemaUpdateChatPreloved, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateFormEntry, schemaUpdateGuestManagement, 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, useBuildingController, useBuildingLevelController, useBuildingLevelRepo, useBuildingLevelService, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useBulletinBoardController, useBulletinBoardRepo, useBulletinBoardService, useBulletinVideoController, useBulletinVideoRepo, useBulletinVideoService, useCategoryPrelovedController, useCategoryPrelovedRepo, useChannelPrelovedController, useChannelPrelovedRepo, useChatController, useChatPrelovedController, useChatPrelovedRepo, 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, 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 };
|