@7365admin1/core 2.76.0 → 2.78.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 +82 -12
- package/dist/index.js +1687 -801
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2356 -1468
- 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.78.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4f2c92a: release change for category api, onboarding api, post api, etc
|
|
8
|
+
|
|
9
|
+
## 2.77.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- de47b20: release changes for preloved api, org api, member api, online forms api, etc
|
|
14
|
+
|
|
3
15
|
## 2.76.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -313,17 +313,13 @@ declare function useMemberRepo(): {
|
|
|
313
313
|
pages: number;
|
|
314
314
|
pageRange: string;
|
|
315
315
|
} | TMember>;
|
|
316
|
-
getOrgsByMembership: ({ search, page, limit, user, type
|
|
316
|
+
getOrgsByMembership: ({ search, page, limit, user, type }: {
|
|
317
317
|
search?: string | undefined;
|
|
318
318
|
page?: number | undefined;
|
|
319
319
|
limit?: number | undefined;
|
|
320
320
|
user?: string | ObjectId | undefined;
|
|
321
321
|
type?: string | undefined;
|
|
322
|
-
}) => Promise<
|
|
323
|
-
items: any[];
|
|
324
|
-
pages: number;
|
|
325
|
-
pageRange: string;
|
|
326
|
-
} | TMember>;
|
|
322
|
+
}) => Promise<any>;
|
|
327
323
|
getOrgsByUserId: ({ search, page, limit, sort, user, status, }: {
|
|
328
324
|
search?: string | undefined;
|
|
329
325
|
page?: number | undefined;
|
|
@@ -524,6 +520,9 @@ type TOrg = {
|
|
|
524
520
|
busInst?: string;
|
|
525
521
|
status?: string;
|
|
526
522
|
defaultSite?: string;
|
|
523
|
+
onboardingRequired?: boolean;
|
|
524
|
+
onboardingCompleted?: boolean;
|
|
525
|
+
onboardingCompletedAt?: string | Date | null;
|
|
527
526
|
terms?: string;
|
|
528
527
|
policies?: string;
|
|
529
528
|
createdAt?: string | Date;
|
|
@@ -576,6 +575,7 @@ declare function useOrgRepo(): {
|
|
|
576
575
|
pageRange: string;
|
|
577
576
|
}>;
|
|
578
577
|
getAdminOrgForResident: () => Promise<mongodb.WithId<bson.Document>>;
|
|
578
|
+
completeOnboardingById: (_id: string | ObjectId, session?: ClientSession) => Promise<string>;
|
|
579
579
|
};
|
|
580
580
|
|
|
581
581
|
declare function useOrgController(): {
|
|
@@ -589,6 +589,7 @@ declare function useOrgController(): {
|
|
|
589
589
|
update: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
590
590
|
getOrgsByEmail: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
591
591
|
getAdminOrgForResident: (_req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
592
|
+
completeOnboarding: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
592
593
|
};
|
|
593
594
|
|
|
594
595
|
/**
|
|
@@ -2124,6 +2125,17 @@ declare function useDahuaService(): {
|
|
|
2124
2125
|
vehicleType?: string;
|
|
2125
2126
|
vehicleColor?: string;
|
|
2126
2127
|
}) => Promise<urllib.HttpClientResponse<any>>;
|
|
2128
|
+
openBarrier: (value: {
|
|
2129
|
+
host: string;
|
|
2130
|
+
username: string;
|
|
2131
|
+
password: string;
|
|
2132
|
+
plateNumber: string;
|
|
2133
|
+
channel?: number;
|
|
2134
|
+
}) => Promise<{
|
|
2135
|
+
success: boolean;
|
|
2136
|
+
message: string;
|
|
2137
|
+
raw: any;
|
|
2138
|
+
}>;
|
|
2127
2139
|
};
|
|
2128
2140
|
|
|
2129
2141
|
type TVehicleUpdate = Partial<Pick<TVehicle, "name" | "phoneNumber" | "block" | "level" | "unit" | "plateNumber" | "recNo" | "type">>;
|
|
@@ -2392,6 +2404,7 @@ declare function useSiteCameraRepo(): {
|
|
|
2392
2404
|
category?: string;
|
|
2393
2405
|
guardPost?: number;
|
|
2394
2406
|
}) => Promise<{} | null>;
|
|
2407
|
+
getVisitorsInBySite: (site: string | ObjectId) => Promise<Document | undefined>;
|
|
2395
2408
|
getBySites: (site: string | ObjectId, options?: {
|
|
2396
2409
|
type?: string;
|
|
2397
2410
|
category?: string;
|
|
@@ -3771,7 +3784,7 @@ type TDocumentManagement = {
|
|
|
3771
3784
|
name: string;
|
|
3772
3785
|
type?: string;
|
|
3773
3786
|
size?: number;
|
|
3774
|
-
attachment?: string;
|
|
3787
|
+
attachment?: string | string[];
|
|
3775
3788
|
remarks?: string;
|
|
3776
3789
|
org?: string | ObjectId;
|
|
3777
3790
|
site?: string | ObjectId;
|
|
@@ -3782,6 +3795,17 @@ type TDocumentManagement = {
|
|
|
3782
3795
|
updatedAt?: string | Date;
|
|
3783
3796
|
status: string;
|
|
3784
3797
|
};
|
|
3798
|
+
type TDocumentCreate = Pick<TDocumentManagement, "org" | "site" | "parentId" | "createdBy" | "name" | "remarks" | "status"> & {
|
|
3799
|
+
items: {
|
|
3800
|
+
id: string | ObjectId;
|
|
3801
|
+
name?: TDocumentManagement["name"];
|
|
3802
|
+
type?: TDocumentManagement["type"];
|
|
3803
|
+
size?: TDocumentManagement["size"];
|
|
3804
|
+
attachment?: TDocumentManagement["attachment"];
|
|
3805
|
+
remarks?: TDocumentManagement["remarks"];
|
|
3806
|
+
}[];
|
|
3807
|
+
};
|
|
3808
|
+
declare const schemaMultipleDocumentManagement: Joi.ObjectSchema<any>;
|
|
3785
3809
|
declare const schemaDocumentManagement: Joi.ObjectSchema<any>;
|
|
3786
3810
|
declare const schemaUpdateDocumentManagement: Joi.ObjectSchema<any>;
|
|
3787
3811
|
declare function MDocumentManagement(value: TDocumentManagement): {
|
|
@@ -3795,7 +3819,7 @@ declare function MDocumentManagement(value: TDocumentManagement): {
|
|
|
3795
3819
|
name: string;
|
|
3796
3820
|
type: string | undefined;
|
|
3797
3821
|
size: number;
|
|
3798
|
-
attachment: string | undefined;
|
|
3822
|
+
attachment: string | string[] | undefined;
|
|
3799
3823
|
remarks: string;
|
|
3800
3824
|
org: string | ObjectId | undefined;
|
|
3801
3825
|
site: string | ObjectId | undefined;
|
|
@@ -3825,7 +3849,7 @@ declare function useDocumentManagementRepo(): {
|
|
|
3825
3849
|
};
|
|
3826
3850
|
|
|
3827
3851
|
declare function useDocumentManagementService(): {
|
|
3828
|
-
createDocument: (value: TDocumentManagement) => Promise<string>;
|
|
3852
|
+
createDocument: (value: TDocumentManagement | TDocumentCreate) => Promise<string>;
|
|
3829
3853
|
updateDocumentById: (_id: string, value: TDocumentManagement) => Promise<number>;
|
|
3830
3854
|
};
|
|
3831
3855
|
|
|
@@ -4447,6 +4471,7 @@ interface AdditionalSettings {
|
|
|
4447
4471
|
subText: string | null;
|
|
4448
4472
|
date: string | null;
|
|
4449
4473
|
};
|
|
4474
|
+
validityMinutes: number;
|
|
4450
4475
|
url: string | null;
|
|
4451
4476
|
}
|
|
4452
4477
|
type TAccessMngmntSettings = {
|
|
@@ -4797,10 +4822,11 @@ declare function UseAccessManagementRepo(): {
|
|
|
4797
4822
|
siteId: string | ObjectId;
|
|
4798
4823
|
unitId: string | ObjectId;
|
|
4799
4824
|
}) => Promise<bson.Document[]>;
|
|
4800
|
-
userAccessCardsRepo: ({ userId, siteId, isLiftCard, }: {
|
|
4825
|
+
userAccessCardsRepo: ({ userId, siteId, isLiftCard, search }: {
|
|
4801
4826
|
userId: string | ObjectId;
|
|
4802
4827
|
siteId: string | ObjectId;
|
|
4803
4828
|
isLiftCard: boolean;
|
|
4829
|
+
search?: string | undefined;
|
|
4804
4830
|
}) => Promise<bson.Document[]>;
|
|
4805
4831
|
removeTemplateRepo: ({ site }: {
|
|
4806
4832
|
site: string | ObjectId;
|
|
@@ -6944,7 +6970,7 @@ declare function MPost(value: TPost): {
|
|
|
6944
6970
|
|
|
6945
6971
|
declare function usePostPrelovedRepo(): {
|
|
6946
6972
|
add: (value: TPost, session?: any) => Promise<ObjectId>;
|
|
6947
|
-
getById: (_id: string | ObjectId) => Promise<bson.Document>;
|
|
6973
|
+
getById: (_id: string | ObjectId, userId?: string | ObjectId) => Promise<bson.Document>;
|
|
6948
6974
|
getAll: ({ search, page, limit, filter, site, status, category, subcategory, userId, }: {
|
|
6949
6975
|
search?: string | undefined;
|
|
6950
6976
|
page?: number | undefined;
|
|
@@ -6994,6 +7020,7 @@ declare function MPostFavorite(value: TPostFavorite): {
|
|
|
6994
7020
|
declare function usePostFavoriteRepo(): {
|
|
6995
7021
|
addFavorite: (value: TPostFavorite, session?: any) => Promise<string | ObjectId>;
|
|
6996
7022
|
getById: (_id: string | ObjectId) => Promise<mongodb.WithId<TPostFavorite>>;
|
|
7023
|
+
getByPostId: (postId: string | ObjectId) => Promise<mongodb.WithId<TPostFavorite>>;
|
|
6997
7024
|
updateById: (_id: string | ObjectId, userId: string | ObjectId, session?: any) => Promise<"removed" | "added">;
|
|
6998
7025
|
};
|
|
6999
7026
|
|
|
@@ -7005,6 +7032,7 @@ declare function usePostFavoriteService(): {
|
|
|
7005
7032
|
declare function usePostFavoriteController(): {
|
|
7006
7033
|
addFavorite: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7007
7034
|
getById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7035
|
+
getByPostId: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7008
7036
|
updateById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7009
7037
|
};
|
|
7010
7038
|
|
|
@@ -7033,12 +7061,14 @@ declare function useCategoryPrelovedRepo(): {
|
|
|
7033
7061
|
}) => Promise<mongodb.WithId<bson.Document>[]>;
|
|
7034
7062
|
getById: (_id: string | ObjectId) => Promise<mongodb.WithId<bson.Document>>;
|
|
7035
7063
|
addCategory: (item: TCategoryPreloved, session?: any) => Promise<ObjectId>;
|
|
7064
|
+
updateById: (_id: string | ObjectId, value: TCategoryPreloved) => Promise<string>;
|
|
7036
7065
|
};
|
|
7037
7066
|
|
|
7038
7067
|
declare function useCategoryPrelovedController(): {
|
|
7039
7068
|
getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7040
7069
|
getById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7041
7070
|
addCategory: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7071
|
+
updateById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7042
7072
|
};
|
|
7043
7073
|
|
|
7044
7074
|
type TSubcategoryPreloved = {
|
|
@@ -7069,12 +7099,16 @@ declare function useSubcategoryPrelovedRepo(): {
|
|
|
7069
7099
|
}) => Promise<mongodb.WithId<bson.Document>[]>;
|
|
7070
7100
|
getById: (_id: string | ObjectId) => Promise<mongodb.WithId<bson.Document>>;
|
|
7071
7101
|
addSubcategory: (item: TSubcategoryPreloved, session?: any) => Promise<ObjectId>;
|
|
7102
|
+
updateById: (_id: string | ObjectId, value: Partial<TSubcategoryPreloved>, session?: any) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
7103
|
+
deleteById: (_id: string | ObjectId, session?: any) => Promise<number>;
|
|
7072
7104
|
};
|
|
7073
7105
|
|
|
7074
7106
|
declare function useSubcategoryPrelovedController(): {
|
|
7075
7107
|
getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7076
7108
|
getById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7077
7109
|
addSubcategory: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7110
|
+
updateById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7111
|
+
deleteById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7078
7112
|
};
|
|
7079
7113
|
|
|
7080
7114
|
declare enum FormEntryStatus {
|
|
@@ -7085,6 +7119,11 @@ declare enum FormEntryStatus {
|
|
|
7085
7119
|
type TFormEntry = {
|
|
7086
7120
|
_id?: ObjectId;
|
|
7087
7121
|
formType: string;
|
|
7122
|
+
block: string | ObjectId;
|
|
7123
|
+
level: string | ObjectId;
|
|
7124
|
+
unit: string | ObjectId;
|
|
7125
|
+
name: string;
|
|
7126
|
+
phoneNumber: string;
|
|
7088
7127
|
fields: Record<string, string | number | boolean | null>;
|
|
7089
7128
|
status?: string;
|
|
7090
7129
|
org?: string | ObjectId;
|
|
@@ -7093,11 +7132,24 @@ type TFormEntry = {
|
|
|
7093
7132
|
updatedAt?: Date | null;
|
|
7094
7133
|
deletedAt?: Date | null;
|
|
7095
7134
|
};
|
|
7135
|
+
type TUpdateFormEntry = {
|
|
7136
|
+
_id?: ObjectId;
|
|
7137
|
+
formType: string;
|
|
7138
|
+
fields: Record<string, string | number | boolean | null>;
|
|
7139
|
+
status?: string;
|
|
7140
|
+
updatedAt?: Date | null;
|
|
7141
|
+
deletedAt?: Date | null;
|
|
7142
|
+
};
|
|
7096
7143
|
declare const schemaFormEntry: Joi.ObjectSchema<any>;
|
|
7097
7144
|
declare const schemaUpdateFormEntry: Joi.ObjectSchema<any>;
|
|
7098
7145
|
declare function MFormEntry(value: TFormEntry): {
|
|
7099
7146
|
_id: ObjectId | undefined;
|
|
7100
7147
|
formType: string;
|
|
7148
|
+
block: string | ObjectId;
|
|
7149
|
+
level: string | ObjectId;
|
|
7150
|
+
unit: string | ObjectId;
|
|
7151
|
+
name: string;
|
|
7152
|
+
phoneNumber: string;
|
|
7101
7153
|
fields: Record<string, string | number | boolean | null>;
|
|
7102
7154
|
status: string | undefined;
|
|
7103
7155
|
org: string | ObjectId | undefined;
|
|
@@ -7110,11 +7162,29 @@ declare function MFormEntry(value: TFormEntry): {
|
|
|
7110
7162
|
declare const online_forms_namespace_collection = "online-forms";
|
|
7111
7163
|
declare function useFormEntryRepo(): {
|
|
7112
7164
|
add: (value: TFormEntry, session?: ClientSession) => Promise<ObjectId>;
|
|
7165
|
+
getAll: ({ search, page, limit, sort, status, org, site, }: {
|
|
7166
|
+
search?: string | undefined;
|
|
7167
|
+
page?: number | undefined;
|
|
7168
|
+
limit?: number | undefined;
|
|
7169
|
+
sort?: Record<string, any> | undefined;
|
|
7170
|
+
status: string;
|
|
7171
|
+
org?: string | undefined;
|
|
7172
|
+
site?: string | ObjectId | undefined;
|
|
7173
|
+
}) => Promise<{
|
|
7174
|
+
items: any[];
|
|
7175
|
+
pages: number;
|
|
7176
|
+
pageRange: string;
|
|
7177
|
+
} | TFormEntry>;
|
|
7178
|
+
getFormEntryById: (_id: string | ObjectId) => Promise<bson.Document>;
|
|
7179
|
+
updateFormEntryById: (_id: string | ObjectId, value: TFormEntry) => Promise<number>;
|
|
7113
7180
|
createTextIndex: () => Promise<void>;
|
|
7114
7181
|
};
|
|
7115
7182
|
|
|
7116
7183
|
declare function useFormEntryController(): {
|
|
7117
7184
|
uploadFormEntrys: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7185
|
+
getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7186
|
+
getFormEntryById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7187
|
+
updateFormEntryById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7118
7188
|
};
|
|
7119
7189
|
|
|
7120
7190
|
declare enum BuildingLevelStatus {
|
|
@@ -7180,4 +7250,4 @@ declare function useBuildingLevelController(): {
|
|
|
7180
7250
|
deleteById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
7181
7251
|
};
|
|
7182
7252
|
|
|
7183
|
-
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, 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, 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, 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, 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, schemaPostFavorite, 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, 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, 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, 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 };
|
|
7253
|
+
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, 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, TChat, 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, 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, robotSchema, schema, schemaApprovedBy, schemaApprover, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingLevel, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCategoryPreloved, 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, 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, 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, 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 };
|