@7365admin1/core 2.16.0 → 2.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.d.ts +112 -10
- package/dist/index.js +3089 -2479
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1930 -1330
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1475,6 +1475,20 @@ declare function useCustomerController(): {
|
|
|
1475
1475
|
deleteCustomer: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1476
1476
|
};
|
|
1477
1477
|
|
|
1478
|
+
declare const updateSiteSchema: Joi.ObjectSchema<any>;
|
|
1479
|
+
declare enum SiteStatus {
|
|
1480
|
+
ACTIVE = "active",
|
|
1481
|
+
PENDING = "pending"
|
|
1482
|
+
}
|
|
1483
|
+
declare enum SiteCategories {
|
|
1484
|
+
RESIDENTIAL = "residential",
|
|
1485
|
+
COMMERCIAL = "commercial",
|
|
1486
|
+
INDUSTRIAL = "industrial",
|
|
1487
|
+
MIXED_DEVELOPMENT = "mixed_development",
|
|
1488
|
+
INSTITUTIONAL = "institutional",
|
|
1489
|
+
INFRASTRUCTURE = "infrastructure",
|
|
1490
|
+
HOSPITALITY = "hospitality"
|
|
1491
|
+
}
|
|
1478
1492
|
type TSiteMetadata = {
|
|
1479
1493
|
block?: number;
|
|
1480
1494
|
guardPosts?: number;
|
|
@@ -1482,6 +1496,14 @@ type TSiteMetadata = {
|
|
|
1482
1496
|
incidentCounter?: number;
|
|
1483
1497
|
incidentLogo?: string;
|
|
1484
1498
|
};
|
|
1499
|
+
type SiteAddress = {
|
|
1500
|
+
line1: string;
|
|
1501
|
+
line2?: string;
|
|
1502
|
+
city: string;
|
|
1503
|
+
state?: string;
|
|
1504
|
+
postalCode: string;
|
|
1505
|
+
country: string;
|
|
1506
|
+
};
|
|
1485
1507
|
type TSite = {
|
|
1486
1508
|
_id?: ObjectId;
|
|
1487
1509
|
name: string;
|
|
@@ -1489,6 +1511,8 @@ type TSite = {
|
|
|
1489
1511
|
orgId: string | ObjectId;
|
|
1490
1512
|
metadata?: TSiteMetadata;
|
|
1491
1513
|
status?: string;
|
|
1514
|
+
address?: SiteAddress;
|
|
1515
|
+
category?: SiteCategories;
|
|
1492
1516
|
createdAt?: Date;
|
|
1493
1517
|
updatedAt?: string | Date;
|
|
1494
1518
|
deletedAt?: string | Date;
|
|
@@ -1503,6 +1527,8 @@ declare function MSite(value: TSite): {
|
|
|
1503
1527
|
metadata: TSiteMetadata;
|
|
1504
1528
|
status: string;
|
|
1505
1529
|
createdAt: Date;
|
|
1530
|
+
address: SiteAddress | undefined;
|
|
1531
|
+
category: SiteCategories | undefined;
|
|
1506
1532
|
updatedAt: string | Date;
|
|
1507
1533
|
deletedAt: string | Date;
|
|
1508
1534
|
};
|
|
@@ -1540,6 +1566,7 @@ declare function useSiteRepo(): {
|
|
|
1540
1566
|
getByName: (name?: string) => Promise<TSite[]>;
|
|
1541
1567
|
getByExactName: (name: string, orgId: string | ObjectId) => Promise<TSite[]>;
|
|
1542
1568
|
updateSiteIncidentCounter: (_id: string | ObjectId, incidentCounter: number, session?: ClientSession) => Promise<number>;
|
|
1569
|
+
updateSiteById: (id: string | ObjectId, payload: TSite, session?: ClientSession) => Promise<number>;
|
|
1543
1570
|
};
|
|
1544
1571
|
|
|
1545
1572
|
declare function useSiteService(): {
|
|
@@ -1548,10 +1575,20 @@ declare function useSiteService(): {
|
|
|
1548
1575
|
name: string;
|
|
1549
1576
|
description?: string | undefined;
|
|
1550
1577
|
customerId: string;
|
|
1578
|
+
category: SiteCategories;
|
|
1579
|
+
address: {
|
|
1580
|
+
line1: string;
|
|
1581
|
+
line2?: string;
|
|
1582
|
+
city: string;
|
|
1583
|
+
state?: string;
|
|
1584
|
+
postalCode: string;
|
|
1585
|
+
country: string;
|
|
1586
|
+
};
|
|
1551
1587
|
}) => Promise<{
|
|
1552
1588
|
site: bson.ObjectId;
|
|
1553
1589
|
}>;
|
|
1554
1590
|
updateGuardPostById: (site: string, guardPost: number) => Promise<void>;
|
|
1591
|
+
updateById: (_id: string, payload: TSite) => Promise<void>;
|
|
1555
1592
|
};
|
|
1556
1593
|
|
|
1557
1594
|
declare function useSiteController(): {
|
|
@@ -1595,6 +1632,19 @@ declare function useChatController(): {
|
|
|
1595
1632
|
createChat: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1596
1633
|
};
|
|
1597
1634
|
|
|
1635
|
+
declare enum SortFields {
|
|
1636
|
+
ID = "_id",
|
|
1637
|
+
CREATED_AT = "createdAt",
|
|
1638
|
+
NAME = "name"
|
|
1639
|
+
}
|
|
1640
|
+
declare enum SortOrder {
|
|
1641
|
+
ASC = "asc",
|
|
1642
|
+
DESC = "desc"
|
|
1643
|
+
}
|
|
1644
|
+
declare enum BuildingStatus {
|
|
1645
|
+
ACTIVE = "active",
|
|
1646
|
+
PENDING = "pending"
|
|
1647
|
+
}
|
|
1598
1648
|
type TBuilding = {
|
|
1599
1649
|
_id?: ObjectId;
|
|
1600
1650
|
site: ObjectId;
|
|
@@ -1682,7 +1732,7 @@ declare function useBuildingRepo(): {
|
|
|
1682
1732
|
limit?: number | undefined;
|
|
1683
1733
|
sort?: {} | undefined;
|
|
1684
1734
|
site?: string | undefined;
|
|
1685
|
-
status?:
|
|
1735
|
+
status?: BuildingStatus | undefined;
|
|
1686
1736
|
}) => Promise<Record<string, any>>;
|
|
1687
1737
|
getById: (_id: string | ObjectId) => Promise<TBuilding | null>;
|
|
1688
1738
|
updateById: (_id: ObjectId | string, value: Pick<TBuilding, "name" | "block" | "levels" | "buildingFloorPlan">, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
@@ -1767,6 +1817,17 @@ declare function useDahuaService(): {
|
|
|
1767
1817
|
mode: string;
|
|
1768
1818
|
recno: string;
|
|
1769
1819
|
}) => Promise<urllib.HttpClientResponse<any> | undefined>;
|
|
1820
|
+
updatePlateNumber: (value: {
|
|
1821
|
+
host: string;
|
|
1822
|
+
username: string;
|
|
1823
|
+
password: string;
|
|
1824
|
+
plateNumber: string;
|
|
1825
|
+
mode: string;
|
|
1826
|
+
recno: string;
|
|
1827
|
+
start?: string;
|
|
1828
|
+
end?: string;
|
|
1829
|
+
owner?: string;
|
|
1830
|
+
}) => Promise<urllib.HttpClientResponse<any>>;
|
|
1770
1831
|
};
|
|
1771
1832
|
|
|
1772
1833
|
type TVehicle = {
|
|
@@ -1809,6 +1870,15 @@ declare enum VehicleStatus {
|
|
|
1809
1870
|
INACTIVE = "inactive",
|
|
1810
1871
|
DELETED = "deleted"
|
|
1811
1872
|
}
|
|
1873
|
+
declare enum VehicleOrder {
|
|
1874
|
+
ASC = "asc",
|
|
1875
|
+
DESC = "desc"
|
|
1876
|
+
}
|
|
1877
|
+
declare enum VehicleSort {
|
|
1878
|
+
CREATED_AT = "createdAt",
|
|
1879
|
+
ID = "_id",
|
|
1880
|
+
NAME = "name"
|
|
1881
|
+
}
|
|
1812
1882
|
declare enum OrgNature {
|
|
1813
1883
|
PROPERTY_MANAGEMENT_AGENCY = "property_management_agency",
|
|
1814
1884
|
SECURITY_AGENCY = "security_agency"
|
|
@@ -1830,7 +1900,7 @@ declare function MVehicle(value: TVehicle): {
|
|
|
1830
1900
|
block: number;
|
|
1831
1901
|
level: string;
|
|
1832
1902
|
unit: string | ObjectId;
|
|
1833
|
-
nric: string;
|
|
1903
|
+
nric: string | undefined;
|
|
1834
1904
|
remarks: string;
|
|
1835
1905
|
seasonPassType: string;
|
|
1836
1906
|
start: string | Date;
|
|
@@ -1882,7 +1952,7 @@ declare function useVehicleRepo(): {
|
|
|
1882
1952
|
}) => Promise<{}>;
|
|
1883
1953
|
getSeasonPassTypes: (site: string | ObjectId) => Promise<{}>;
|
|
1884
1954
|
getVehicleById: (_id: string | ObjectId) => Promise<any>;
|
|
1885
|
-
|
|
1955
|
+
updateVehicleById: (_id: string | ObjectId, value: TVehicleUpdate, session?: ClientSession) => Promise<number>;
|
|
1886
1956
|
deleteVehicle: (_id: string | ObjectId, session?: ClientSession) => Promise<number>;
|
|
1887
1957
|
getByPlaceNumber: (value: string) => Promise<{}>;
|
|
1888
1958
|
getVehicleByPlateNumber: (plateNumber: string) => Promise<TVehicle | null>;
|
|
@@ -1893,6 +1963,12 @@ declare function useVehicleRepo(): {
|
|
|
1893
1963
|
sort?: Record<string, any> | undefined;
|
|
1894
1964
|
}) => Promise<{}>;
|
|
1895
1965
|
deleteExpiredVehicles: (session?: ClientSession) => Promise<number>;
|
|
1966
|
+
getAllVehiclesByUnitId: ({ unitId, page, limit, sort, }: {
|
|
1967
|
+
unitId: string | ObjectId;
|
|
1968
|
+
page?: number | undefined;
|
|
1969
|
+
limit?: number | undefined;
|
|
1970
|
+
sort?: Record<string, 1 | -1> | undefined;
|
|
1971
|
+
}) => Promise<{}>;
|
|
1896
1972
|
};
|
|
1897
1973
|
|
|
1898
1974
|
declare function useVehicleService(): {
|
|
@@ -1900,6 +1976,8 @@ declare function useVehicleService(): {
|
|
|
1900
1976
|
deleteVehicle: (_id: string, recno: string, site: string, type: string, bypass?: boolean) => Promise<string>;
|
|
1901
1977
|
approveVehicleById: (id: string, orgId: string, siteId: string) => Promise<string>;
|
|
1902
1978
|
processDeletingExpiredVehicles: () => Promise<string>;
|
|
1979
|
+
reactivateVehicleById: (id: string, orgId: string, siteId: string) => Promise<string>;
|
|
1980
|
+
updateVehicleById: (_id: string, value: TVehicle) => Promise<void>;
|
|
1903
1981
|
};
|
|
1904
1982
|
|
|
1905
1983
|
declare function useVehicleController(): {
|
|
@@ -1907,10 +1985,12 @@ declare function useVehicleController(): {
|
|
|
1907
1985
|
getVehicles: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1908
1986
|
getSeasonPassTypes: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1909
1987
|
getVehicleById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1910
|
-
|
|
1988
|
+
updateVehicleById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1911
1989
|
deleteVehicle: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1912
1990
|
approveVehicleById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1913
1991
|
getVehiclesByNRIC: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1992
|
+
reactivateVehicleById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1993
|
+
getAllVehiclesByUnitId: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1914
1994
|
};
|
|
1915
1995
|
|
|
1916
1996
|
type TCamera = {
|
|
@@ -2171,6 +2251,10 @@ type TPlates = {
|
|
|
2171
2251
|
plateNumber: string;
|
|
2172
2252
|
recNo: string;
|
|
2173
2253
|
};
|
|
2254
|
+
type TFiles = {
|
|
2255
|
+
id: string | ObjectId;
|
|
2256
|
+
name: string;
|
|
2257
|
+
};
|
|
2174
2258
|
type TPerson = {
|
|
2175
2259
|
_id?: ObjectId;
|
|
2176
2260
|
name: string;
|
|
@@ -2191,6 +2275,8 @@ type TPerson = {
|
|
|
2191
2275
|
unitName?: string;
|
|
2192
2276
|
companyName?: Array<string>;
|
|
2193
2277
|
plates?: TPlates[];
|
|
2278
|
+
isOwner?: boolean;
|
|
2279
|
+
files?: TFiles[];
|
|
2194
2280
|
createdAt?: string | Date;
|
|
2195
2281
|
updatedAt?: string | Date;
|
|
2196
2282
|
deletedAt?: string | Date;
|
|
@@ -2198,6 +2284,7 @@ type TPerson = {
|
|
|
2198
2284
|
declare const PERSON_TYPES: readonly ["walk-in", "drop-off", "contractor", "delivery", "pick-up", "guest", "tenant", "resident"];
|
|
2199
2285
|
type PersonType = (typeof PERSON_TYPES)[number];
|
|
2200
2286
|
declare const schemaPlate: Joi.ObjectSchema<any>;
|
|
2287
|
+
declare const schemaFiles: Joi.ObjectSchema<any>;
|
|
2201
2288
|
declare const schemaPerson: Joi.ObjectSchema<any>;
|
|
2202
2289
|
declare const schemaUpdatePerson: Joi.ObjectSchema<any>;
|
|
2203
2290
|
declare function MPerson(value: TPerson): {
|
|
@@ -2219,6 +2306,8 @@ declare function MPerson(value: TPerson): {
|
|
|
2219
2306
|
companyName: string[] | undefined;
|
|
2220
2307
|
unitName: string | undefined;
|
|
2221
2308
|
plates: TPlates[];
|
|
2309
|
+
isOwner: boolean;
|
|
2310
|
+
files: TFiles[];
|
|
2222
2311
|
createdAt: string | Date;
|
|
2223
2312
|
updatedAt: string | Date | undefined;
|
|
2224
2313
|
deletedAt: string | Date | undefined;
|
|
@@ -2413,7 +2502,7 @@ declare function usePersonRepo(): {
|
|
|
2413
2502
|
site?: string | undefined;
|
|
2414
2503
|
type?: string | undefined;
|
|
2415
2504
|
}, session?: ClientSession) => Promise<{}>;
|
|
2416
|
-
updateById: (_id: string | ObjectId, value: Partial<TPerson>, session?: ClientSession) => Promise<mongodb.UpdateResult<
|
|
2505
|
+
updateById: (_id: string | ObjectId, value: Partial<TPerson>, session?: ClientSession) => Promise<mongodb.UpdateResult<TPerson>>;
|
|
2417
2506
|
deleteById: (_id: string | ObjectId) => Promise<number>;
|
|
2418
2507
|
getById: (_id: string | ObjectId) => Promise<TPerson | null>;
|
|
2419
2508
|
createTextIndex: () => Promise<void>;
|
|
@@ -2423,7 +2512,7 @@ declare function usePersonRepo(): {
|
|
|
2423
2512
|
getPersonByPhoneNumber: (value: string) => Promise<TPerson | null>;
|
|
2424
2513
|
getPeopleByUnit: ({ status, type, unit, }: {
|
|
2425
2514
|
status: string;
|
|
2426
|
-
type
|
|
2515
|
+
type?: TPerson["type"];
|
|
2427
2516
|
unit?: string | undefined;
|
|
2428
2517
|
}, session?: ClientSession) => Promise<TPerson[]>;
|
|
2429
2518
|
getCompany: (search?: string) => Promise<any[] | TPerson>;
|
|
@@ -2435,6 +2524,11 @@ declare function usePersonRepo(): {
|
|
|
2435
2524
|
sort?: Record<string, any> | undefined;
|
|
2436
2525
|
site: string;
|
|
2437
2526
|
}) => Promise<{}>;
|
|
2527
|
+
pushVehicleByNRIC: (nric: string, plate: {
|
|
2528
|
+
plateNumber: string;
|
|
2529
|
+
recNo: string;
|
|
2530
|
+
}, session?: ClientSession) => Promise<void>;
|
|
2531
|
+
pullVehicleByRecNo: (recNo: string, session?: ClientSession) => Promise<void>;
|
|
2438
2532
|
};
|
|
2439
2533
|
|
|
2440
2534
|
declare function usePersonController(): {
|
|
@@ -2670,8 +2764,8 @@ type logCamera = {
|
|
|
2670
2764
|
question: string;
|
|
2671
2765
|
answers: Array<string>;
|
|
2672
2766
|
remarks: string;
|
|
2673
|
-
photos: string
|
|
2674
|
-
video: string
|
|
2767
|
+
photos: Array<string>;
|
|
2768
|
+
video: Array<string>;
|
|
2675
2769
|
}>;
|
|
2676
2770
|
};
|
|
2677
2771
|
type TPatrolLog = {
|
|
@@ -2710,13 +2804,14 @@ declare function usePatrolLogRepo(): {
|
|
|
2710
2804
|
createIndexes: () => Promise<string>;
|
|
2711
2805
|
createTextIndex: () => Promise<string>;
|
|
2712
2806
|
add: (value: TPatrolLog, session?: ClientSession) => Promise<ObjectId>;
|
|
2713
|
-
getAll: ({ search, page, limit, sort, status, site, }: {
|
|
2807
|
+
getAll: ({ search, page, limit, sort, status, site, dateFrom, }: {
|
|
2714
2808
|
search?: string | undefined;
|
|
2715
2809
|
page?: number | undefined;
|
|
2716
2810
|
limit?: number | undefined;
|
|
2717
2811
|
sort?: Record<string, any> | undefined;
|
|
2718
2812
|
status: string;
|
|
2719
2813
|
site?: string | undefined;
|
|
2814
|
+
dateFrom?: string | undefined;
|
|
2720
2815
|
}, session?: ClientSession) => Promise<{}>;
|
|
2721
2816
|
updateById: (_id: string | ObjectId, value: Partial<TPatrolLog>, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
2722
2817
|
deleteById: (_id: string | ObjectId, session?: ClientSession) => Promise<string>;
|
|
@@ -4028,6 +4123,12 @@ declare function UseAccessManagementRepo(): {
|
|
|
4028
4123
|
payload: QrTagProps[];
|
|
4029
4124
|
site: string;
|
|
4030
4125
|
}) => Promise<mongodb.BulkWriteResult | undefined>;
|
|
4126
|
+
allQrTagRepo: (params: {
|
|
4127
|
+
site: string;
|
|
4128
|
+
}) => Promise<{
|
|
4129
|
+
items: any;
|
|
4130
|
+
length: any;
|
|
4131
|
+
}>;
|
|
4031
4132
|
};
|
|
4032
4133
|
|
|
4033
4134
|
declare function useAccessManagementController(): {
|
|
@@ -4055,6 +4156,7 @@ declare function useAccessManagementController(): {
|
|
|
4055
4156
|
deleteCard: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4056
4157
|
getCardDetails: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4057
4158
|
addQrTag: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4159
|
+
allQrTag: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4058
4160
|
};
|
|
4059
4161
|
|
|
4060
4162
|
declare const DEVICE_STATUS: {
|
|
@@ -5019,4 +5121,4 @@ declare function useAddressRepo(): {
|
|
|
5019
5121
|
getByUserId: (user: string | ObjectId) => Promise<TAddress | null>;
|
|
5020
5122
|
};
|
|
5021
5123
|
|
|
5022
|
-
export { ANPRMode, AccessTypeProps, AssignCardConfig, BULLETIN_RECIPIENTS, BulkCardUpdate, Camera, DEVICE_STATUS, EAccessCardTypes, EAccessCardUserTypes, IAccessCard, IAccessCardTransaction, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBillingConfiguration, MBillingItem, MBuilding, MBuildingUnit, MBulletinBoard, MBulletinVideo, MChat, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MGuestManagement, MIncidentReport, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPromoCode, MRobot, MRole, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubscription, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVisitorTransaction, MWorkOrder, OrgNature, PERSON_TYPES, PersonType, QrTagProps, STATUS_VALUES, SiteType, TAccessMngmntSettings, TActionStatus, TAddress, TAffectedEntities, TAffectedInjured, TAttendance, TAttendanceCheckIn, TAttendanceCheckOut, TAttendanceCheckTime, TAttendanceLocation, TAttendanceSettings, TAttendanceSettingsGetBySite, TAuthorities, TAuthoritiesCalled, TBilling, TBillingConfiguration, TBillingItem, TBuilding, TBuildingUnit, TBulletinBoard, TBulletinVideo, TCamera, TChat, TCheckPoint$1 as TCheckPoint, TComplaintInfo, TComplaintReceivedTo, TCounter, TCustomer, TCustomerSite, TDayNumber, TDefaultAccessCard, TDocs, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TMember, TMemberUpdateStatus, TMiniRole, TNfcPatrolLog, TNfcPatrolRoute, TNfcPatrolRouteEdit, TNfcPatrolSettings, TNfcPatrolSettingsGetBySite, TNfcPatrolSettingsUpdate, TNfcPatrolTag, TNfcPatrolTagConfigureReset, TNfcPatrolTagEdit, TNfcPatrolTagUpdateData, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPrice, TPriceType, TPromoCode, TPromoTier, TRecipientOfComplaint, TRobot, TRobotMetadata, TRole, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TSite, TSiteCamera, TSiteFacility, TSiteFacilityBooking, TSiteInfo, TSiteMetadata, TSiteUpdateBlock, TStatementOfAccount, TSubmissionForm, TSubscription, TUnitBilling, TUnits, TUpdateName, TUser, TUserCreate, TVehicle, TVehicleTransaction, TVehicleUpdate, TVerification, TVerificationMetadata, TVisitorTransaction, TWorkOrder, TWorkOrderMetadata, TWorkOrderUpdate, TWorkOrderUpdateStatus, TWorkOrderUpdateToCompleted, TanyoneDamageToProperty, UseAccessManagementRepo, VehicleCategory, VehicleStatus, VehicleType, allowedFieldsSite, allowedNatures, attendanceSchema, attendanceSettingsSchema, chatSchema, customerSchema, feedbackSchema, logCamera, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, orgSchema, promoCodeSchema, robotSchema, schema, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaGuestManagement, schemaIncidentReport, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaServiceProvider, schemaServiceProviderBilling, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaUnitBilling, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateGuestManagement, schemaUpdateIncidentReport, schemaUpdateOccurrenceBook, schemaUpdateOccurrenceEntry, schemaUpdateOccurrenceSubject, schemaUpdateOnlineForm, schemaUpdateOptions, schemaUpdatePatrolLog, schemaUpdatePatrolQuestion, schemaUpdatePatrolRoute, schemaUpdatePerson, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, siteSchema, tokenSchema, useAccessManagementController, useAddressRepo, useAttendanceController, useAttendanceRepository, useAttendanceSettingsController, useAttendanceSettingsRepository, useAttendanceSettingsService, useAuthController, useAuthService, useBuildingController, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useBulletinBoardController, useBulletinBoardRepo, useBulletinBoardService, useBulletinVideoController, useBulletinVideoRepo, useBulletinVideoService, useChatController, useChatRepo, useCounterModel, useCounterRepo, useCustomerController, useCustomerRepo, useCustomerSiteController, useCustomerSiteRepo, useCustomerSiteService, useDahuaService, useDashboardController, useDashboardRepo, useDocumentManagementController, useDocumentManagementRepo, useDocumentManagementService, useEntryPassSettingsController, useEntryPassSettingsRepo, useEventManagementController, useEventManagementRepo, useEventManagementService, useFeedbackController, useFeedbackRepo, useFeedbackService, useFileController, useFileRepo, useFileService, useGuestManagementController, useGuestManagementRepo, useGuestManagementService, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useMemberController, useMemberRepo, useNfcPatrolLogController, useNfcPatrolLogRepo, useNfcPatrolLogService, useNfcPatrolRouteController, useNfcPatrolRouteRepo, useNfcPatrolRouteService, useNfcPatrolSettingsController, useNfcPatrolSettingsRepository, useNfcPatrolSettingsService, useNfcPatrolTagController, useNfcPatrolTagRepo, useNfcPatrolTagService, useOccurrenceBookController, useOccurrenceBookRepo, useOccurrenceBookService, useOccurrenceEntryController, useOccurrenceEntryRepo, useOccurrenceEntryService, useOccurrenceSubjectController, useOccurrenceSubjectRepo, useOccurrenceSubjectService, useOnlineFormController, useOnlineFormRepo, useOrgController, useOrgRepo, usePatrolLogController, usePatrolLogRepo, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePriceController, usePriceModel, usePriceRepo, usePromoCodeController, usePromoCodeRepo, useRobotController, useRobotRepo, useRobotService, useRoleController, useRoleRepo, useServiceProviderBillingController, useServiceProviderBillingRepo, useServiceProviderBillingService, useServiceProviderController, useServiceProviderRepo, useSessionRepo, useSiteBillingConfigurationController, useSiteBillingConfigurationRepo, useSiteBillingItemController, useSiteBillingItemRepo, useSiteCameraController, useSiteCameraRepo, useSiteCameraService, useSiteController, useSiteFacilityBookingController, useSiteFacilityBookingRepo, useSiteFacilityBookingService, useSiteFacilityController, useSiteFacilityRepo, useSiteFacilityService, useSiteRepo, useSiteService, useSiteUnitBillingController, useSiteUnitBillingRepo, useSiteUnitBillingService, useStatementOfAccountController, useStatementOfAccountRepo, useSubscriptionController, useSubscriptionRepo, useSubscriptionService, useUserController, useUserRepo, useUserService, useVehicleController, useVehicleRepo, useVehicleService, useVerificationController, useVerificationRepo, useVerificationService, useVisitorTransactionController, useVisitorTransactionRepo, useVisitorTransactionService, useWorkOrderController, useWorkOrderRepo, useWorkOrderService, userSchema, vehicleSchema, workOrderSchema };
|
|
5124
|
+
export { ANPRMode, AccessTypeProps, AssignCardConfig, BULLETIN_RECIPIENTS, BuildingStatus, BulkCardUpdate, Camera, DEVICE_STATUS, EAccessCardTypes, EAccessCardUserTypes, IAccessCard, IAccessCardTransaction, MAccessCard, MAccessCardTransaction, MAddress, MAttendance, MAttendanceSettings, MBillingConfiguration, MBillingItem, MBuilding, MBuildingUnit, MBulletinBoard, MBulletinVideo, MChat, MCustomer, MCustomerSite, MDocumentManagement, MEntryPassSettings, MEventManagement, MFeedback, MFile, MGuestManagement, MIncidentReport, MMember, MNfcPatrolLog, MNfcPatrolRoute, MNfcPatrolSettings, MNfcPatrolSettingsUpdate, MNfcPatrolTag, MOccurrenceBook, MOccurrenceEntry, MOccurrenceSubject, MOnlineForm, MOrg, MPatrolLog, MPatrolQuestion, MPatrolRoute, MPerson, MPromoCode, MRobot, MRole, MServiceProvider, MServiceProviderBilling, MSession, MSite, MSiteCamera, MSiteFacility, MSiteFacilityBooking, MStatementOfAccount, MSubscription, MUnitBilling, MUser, MVehicle, MVehicleTransaction, MVerification, MVisitorTransaction, MWorkOrder, OrgNature, PERSON_TYPES, PersonType, QrTagProps, STATUS_VALUES, SiteAddress, SiteCategories, SiteStatus, SiteType, SortFields, SortOrder, TAccessMngmntSettings, TActionStatus, TAddress, TAffectedEntities, TAffectedInjured, TAttendance, TAttendanceCheckIn, TAttendanceCheckOut, TAttendanceCheckTime, TAttendanceLocation, TAttendanceSettings, TAttendanceSettingsGetBySite, TAuthorities, TAuthoritiesCalled, TBilling, TBillingConfiguration, TBillingItem, TBuilding, TBuildingUnit, TBulletinBoard, TBulletinVideo, TCamera, TChat, TCheckPoint$1 as TCheckPoint, TComplaintInfo, TComplaintReceivedTo, TCounter, TCustomer, TCustomerSite, TDayNumber, TDefaultAccessCard, TDocs, TDocumentManagement, TEntryPassSettings, TEventManagement, TFeedback, TFeedbackMetadata, TFeedbackUpdate, TFeedbackUpdateCategory, TFeedbackUpdateServiceProvider, TFeedbackUpdateStatus, TFeedbackUpdateToCompleted, TFile, TFiles, TGetAttendancesByUserQuery, TGetAttendancesQuery, TGuestManagement, TIncidentInformation, TIncidentReport, TIncidentTypeAndTime, TInvoice, TMember, TMemberUpdateStatus, TMiniRole, TNfcPatrolLog, TNfcPatrolRoute, TNfcPatrolRouteEdit, TNfcPatrolSettings, TNfcPatrolSettingsGetBySite, TNfcPatrolSettingsUpdate, TNfcPatrolTag, TNfcPatrolTagConfigureReset, TNfcPatrolTagEdit, TNfcPatrolTagUpdateData, TOccurrenceBook, TOccurrenceEntry, TOccurrenceSubject, TOnlineForm, TOrg, TPatrolLog, TPatrolQuestion, TPatrolRoute, TPerson, TPlaceOfIncident, TPlates, TPrice, TPriceType, TPromoCode, TPromoTier, TRecipientOfComplaint, TRobot, TRobotMetadata, TRole, TRoute, TSOABillingItem, TSOAStatus, TServiceProvider, TServiceProviderBilling, TSession, TSessionCreate, TSite, TSiteCamera, TSiteFacility, TSiteFacilityBooking, TSiteInfo, TSiteMetadata, TSiteUpdateBlock, TStatementOfAccount, TSubmissionForm, TSubscription, TUnitBilling, TUnits, TUpdateName, TUser, TUserCreate, TVehicle, TVehicleTransaction, TVehicleUpdate, TVerification, TVerificationMetadata, TVisitorTransaction, TWorkOrder, TWorkOrderMetadata, TWorkOrderUpdate, TWorkOrderUpdateStatus, TWorkOrderUpdateToCompleted, TanyoneDamageToProperty, UseAccessManagementRepo, VehicleCategory, VehicleOrder, VehicleSort, VehicleStatus, VehicleType, allowedFieldsSite, allowedNatures, attendanceSchema, attendanceSettingsSchema, chatSchema, customerSchema, feedbackSchema, logCamera, nfcPatrolSettingsSchema, nfcPatrolSettingsSchemaUpdate, orgSchema, promoCodeSchema, robotSchema, schema, schemaBilling, schemaBillingConfiguration, schemaBillingItem, schemaBuilding, schemaBuildingUnit, schemaBuildingUpdateOptions, schemaBulletinBoard, schemaBulletinVideo, schemaCustomerSite, schemaDocumentManagement, schemaEntryPassSettings, schemaEventManagement, schemaFiles, schemaGuestManagement, schemaIncidentReport, schemaNfcPatrolLog, schemaNfcPatrolRoute, schemaNfcPatrolTag, schemaNfcPatrolTagUpdateData, schemaOccurrenceBook, schemaOccurrenceEntry, schemaOccurrenceSubject, schemaOnlineForm, schemaPatrolLog, schemaPatrolQuestion, schemaPatrolRoute, schemaPerson, schemaPlate, schemaServiceProvider, schemaServiceProviderBilling, schemaSiteCamera, schemaSiteFacility, schemaSiteFacilityBooking, schemaStatementOfAccount, schemaUnitBilling, schemaUpdateBulletinBoard, schemaUpdateBulletinVideo, schemaUpdateDocumentManagement, schemaUpdateEntryPassSettings, schemaUpdateEventManagement, schemaUpdateGuestManagement, schemaUpdateIncidentReport, schemaUpdateOccurrenceBook, schemaUpdateOccurrenceEntry, schemaUpdateOccurrenceSubject, schemaUpdateOnlineForm, schemaUpdateOptions, schemaUpdatePatrolLog, schemaUpdatePatrolQuestion, schemaUpdatePatrolRoute, schemaUpdatePerson, schemaUpdateServiceProviderBilling, schemaUpdateSiteBillingConfiguration, schemaUpdateSiteBillingItem, schemaUpdateSiteCamera, schemaUpdateSiteFacility, schemaUpdateSiteUnitBilling, schemaUpdateStatementOfAccount, schemaUpdateVisTrans, schemaVehicleTransaction, schemaVisitorTransaction, schemeCamera, schemeLogCamera, siteSchema, tokenSchema, updateSiteSchema, useAccessManagementController, useAddressRepo, useAttendanceController, useAttendanceRepository, useAttendanceSettingsController, useAttendanceSettingsRepository, useAttendanceSettingsService, useAuthController, useAuthService, useBuildingController, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useBulletinBoardController, useBulletinBoardRepo, useBulletinBoardService, useBulletinVideoController, useBulletinVideoRepo, useBulletinVideoService, useChatController, useChatRepo, useCounterModel, useCounterRepo, useCustomerController, useCustomerRepo, useCustomerSiteController, useCustomerSiteRepo, useCustomerSiteService, useDahuaService, useDashboardController, useDashboardRepo, useDocumentManagementController, useDocumentManagementRepo, useDocumentManagementService, useEntryPassSettingsController, useEntryPassSettingsRepo, useEventManagementController, useEventManagementRepo, useEventManagementService, useFeedbackController, useFeedbackRepo, useFeedbackService, useFileController, useFileRepo, useFileService, useGuestManagementController, useGuestManagementRepo, useGuestManagementService, useIncidentReportController, useIncidentReportRepo, useIncidentReportService, useInvoiceController, useInvoiceModel, useInvoiceRepo, useMemberController, useMemberRepo, useNfcPatrolLogController, useNfcPatrolLogRepo, useNfcPatrolLogService, useNfcPatrolRouteController, useNfcPatrolRouteRepo, useNfcPatrolRouteService, useNfcPatrolSettingsController, useNfcPatrolSettingsRepository, useNfcPatrolSettingsService, useNfcPatrolTagController, useNfcPatrolTagRepo, useNfcPatrolTagService, useOccurrenceBookController, useOccurrenceBookRepo, useOccurrenceBookService, useOccurrenceEntryController, useOccurrenceEntryRepo, useOccurrenceEntryService, useOccurrenceSubjectController, useOccurrenceSubjectRepo, useOccurrenceSubjectService, useOnlineFormController, useOnlineFormRepo, useOrgController, useOrgRepo, usePatrolLogController, usePatrolLogRepo, usePatrolQuestionController, usePatrolQuestionRepo, usePatrolRouteController, usePatrolRouteRepo, usePersonController, usePersonRepo, usePriceController, usePriceModel, usePriceRepo, usePromoCodeController, usePromoCodeRepo, useRobotController, useRobotRepo, useRobotService, useRoleController, useRoleRepo, useServiceProviderBillingController, useServiceProviderBillingRepo, useServiceProviderBillingService, useServiceProviderController, useServiceProviderRepo, useSessionRepo, useSiteBillingConfigurationController, useSiteBillingConfigurationRepo, useSiteBillingItemController, useSiteBillingItemRepo, useSiteCameraController, useSiteCameraRepo, useSiteCameraService, useSiteController, useSiteFacilityBookingController, useSiteFacilityBookingRepo, useSiteFacilityBookingService, useSiteFacilityController, useSiteFacilityRepo, useSiteFacilityService, useSiteRepo, useSiteService, useSiteUnitBillingController, useSiteUnitBillingRepo, useSiteUnitBillingService, useStatementOfAccountController, useStatementOfAccountRepo, useSubscriptionController, useSubscriptionRepo, useSubscriptionService, useUserController, useUserRepo, useUserService, useVehicleController, useVehicleRepo, useVehicleService, useVerificationController, useVerificationRepo, useVerificationService, useVisitorTransactionController, useVisitorTransactionRepo, useVisitorTransactionService, useWorkOrderController, useWorkOrderRepo, useWorkOrderService, userSchema, vehicleSchema, workOrderSchema };
|