@7365admin1/core 2.15.0 → 2.17.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 +114 -15
- package/dist/index.js +3505 -2663
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2361 -1528
- 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,11 +1817,22 @@ 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 = {
|
|
1773
1834
|
_id?: ObjectId;
|
|
1774
|
-
plateNumber: string;
|
|
1835
|
+
plateNumber: string | string[];
|
|
1775
1836
|
type: string;
|
|
1776
1837
|
category: string;
|
|
1777
1838
|
name: string;
|
|
@@ -1819,7 +1880,7 @@ declare enum ANPRMode {
|
|
|
1819
1880
|
}
|
|
1820
1881
|
declare const vehicleSchema: Joi.ObjectSchema<any>;
|
|
1821
1882
|
declare function MVehicle(value: TVehicle): {
|
|
1822
|
-
plateNumber: string;
|
|
1883
|
+
plateNumber: string | string[];
|
|
1823
1884
|
type: string;
|
|
1824
1885
|
category: string;
|
|
1825
1886
|
name: string;
|
|
@@ -1830,7 +1891,7 @@ declare function MVehicle(value: TVehicle): {
|
|
|
1830
1891
|
block: number;
|
|
1831
1892
|
level: string;
|
|
1832
1893
|
unit: string | ObjectId;
|
|
1833
|
-
nric: string;
|
|
1894
|
+
nric: string | undefined;
|
|
1834
1895
|
remarks: string;
|
|
1835
1896
|
seasonPassType: string;
|
|
1836
1897
|
start: string | Date;
|
|
@@ -1882,14 +1943,14 @@ declare function useVehicleRepo(): {
|
|
|
1882
1943
|
}) => Promise<{}>;
|
|
1883
1944
|
getSeasonPassTypes: (site: string | ObjectId) => Promise<{}>;
|
|
1884
1945
|
getVehicleById: (_id: string | ObjectId) => Promise<any>;
|
|
1885
|
-
|
|
1946
|
+
updateVehicleById: (_id: string | ObjectId, value: TVehicleUpdate, session?: ClientSession) => Promise<number>;
|
|
1886
1947
|
deleteVehicle: (_id: string | ObjectId, session?: ClientSession) => Promise<number>;
|
|
1887
1948
|
getByPlaceNumber: (value: string) => Promise<{}>;
|
|
1888
1949
|
getVehicleByPlateNumber: (plateNumber: string) => Promise<TVehicle | null>;
|
|
1889
|
-
getVehiclesByNRIC: ({ page, limit,
|
|
1950
|
+
getVehiclesByNRIC: ({ page, limit, nric, sort, }: {
|
|
1890
1951
|
page?: number | undefined;
|
|
1891
1952
|
limit?: number | undefined;
|
|
1892
|
-
|
|
1953
|
+
nric?: string | undefined;
|
|
1893
1954
|
sort?: Record<string, any> | undefined;
|
|
1894
1955
|
}) => Promise<{}>;
|
|
1895
1956
|
deleteExpiredVehicles: (session?: ClientSession) => Promise<number>;
|
|
@@ -1900,6 +1961,8 @@ declare function useVehicleService(): {
|
|
|
1900
1961
|
deleteVehicle: (_id: string, recno: string, site: string, type: string, bypass?: boolean) => Promise<string>;
|
|
1901
1962
|
approveVehicleById: (id: string, orgId: string, siteId: string) => Promise<string>;
|
|
1902
1963
|
processDeletingExpiredVehicles: () => Promise<string>;
|
|
1964
|
+
reactivateVehicleById: (id: string, orgId: string, siteId: string) => Promise<string>;
|
|
1965
|
+
updateVehicleById: (_id: string, value: TVehicle) => Promise<void>;
|
|
1903
1966
|
};
|
|
1904
1967
|
|
|
1905
1968
|
declare function useVehicleController(): {
|
|
@@ -1907,10 +1970,11 @@ declare function useVehicleController(): {
|
|
|
1907
1970
|
getVehicles: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1908
1971
|
getSeasonPassTypes: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1909
1972
|
getVehicleById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1910
|
-
|
|
1973
|
+
updateVehicleById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1911
1974
|
deleteVehicle: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1912
1975
|
approveVehicleById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1913
1976
|
getVehiclesByNRIC: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1977
|
+
reactivateVehicleById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1914
1978
|
};
|
|
1915
1979
|
|
|
1916
1980
|
type TCamera = {
|
|
@@ -2171,6 +2235,10 @@ type TPlates = {
|
|
|
2171
2235
|
plateNumber: string;
|
|
2172
2236
|
recNo: string;
|
|
2173
2237
|
};
|
|
2238
|
+
type TFiles = {
|
|
2239
|
+
id: string | ObjectId;
|
|
2240
|
+
name: string;
|
|
2241
|
+
};
|
|
2174
2242
|
type TPerson = {
|
|
2175
2243
|
_id?: ObjectId;
|
|
2176
2244
|
name: string;
|
|
@@ -2191,6 +2259,8 @@ type TPerson = {
|
|
|
2191
2259
|
unitName?: string;
|
|
2192
2260
|
companyName?: Array<string>;
|
|
2193
2261
|
plates?: TPlates[];
|
|
2262
|
+
isOwner?: boolean;
|
|
2263
|
+
files?: TFiles[];
|
|
2194
2264
|
createdAt?: string | Date;
|
|
2195
2265
|
updatedAt?: string | Date;
|
|
2196
2266
|
deletedAt?: string | Date;
|
|
@@ -2198,6 +2268,7 @@ type TPerson = {
|
|
|
2198
2268
|
declare const PERSON_TYPES: readonly ["walk-in", "drop-off", "contractor", "delivery", "pick-up", "guest", "tenant", "resident"];
|
|
2199
2269
|
type PersonType = (typeof PERSON_TYPES)[number];
|
|
2200
2270
|
declare const schemaPlate: Joi.ObjectSchema<any>;
|
|
2271
|
+
declare const schemaFiles: Joi.ObjectSchema<any>;
|
|
2201
2272
|
declare const schemaPerson: Joi.ObjectSchema<any>;
|
|
2202
2273
|
declare const schemaUpdatePerson: Joi.ObjectSchema<any>;
|
|
2203
2274
|
declare function MPerson(value: TPerson): {
|
|
@@ -2219,6 +2290,8 @@ declare function MPerson(value: TPerson): {
|
|
|
2219
2290
|
companyName: string[] | undefined;
|
|
2220
2291
|
unitName: string | undefined;
|
|
2221
2292
|
plates: TPlates[];
|
|
2293
|
+
isOwner: boolean;
|
|
2294
|
+
files: TFiles[];
|
|
2222
2295
|
createdAt: string | Date;
|
|
2223
2296
|
updatedAt: string | Date | undefined;
|
|
2224
2297
|
deletedAt: string | Date | undefined;
|
|
@@ -2413,21 +2486,33 @@ declare function usePersonRepo(): {
|
|
|
2413
2486
|
site?: string | undefined;
|
|
2414
2487
|
type?: string | undefined;
|
|
2415
2488
|
}, session?: ClientSession) => Promise<{}>;
|
|
2416
|
-
updateById: (_id: string | ObjectId, value: Partial<TPerson>, session?: ClientSession) => Promise<mongodb.UpdateResult<
|
|
2489
|
+
updateById: (_id: string | ObjectId, value: Partial<TPerson>, session?: ClientSession) => Promise<mongodb.UpdateResult<TPerson>>;
|
|
2417
2490
|
deleteById: (_id: string | ObjectId) => Promise<number>;
|
|
2418
2491
|
getById: (_id: string | ObjectId) => Promise<TPerson | null>;
|
|
2419
2492
|
createTextIndex: () => Promise<void>;
|
|
2420
2493
|
getPersonByPlateNumber: (plateNumber: string) => Promise<TPerson | null>;
|
|
2421
2494
|
getByNRIC: (value: string) => Promise<TPerson | null>;
|
|
2422
|
-
|
|
2495
|
+
createIndexes: () => Promise<void>;
|
|
2423
2496
|
getPersonByPhoneNumber: (value: string) => Promise<TPerson | null>;
|
|
2424
2497
|
getPeopleByUnit: ({ status, type, unit, }: {
|
|
2425
2498
|
status: string;
|
|
2426
|
-
type
|
|
2499
|
+
type?: TPerson["type"];
|
|
2427
2500
|
unit?: string | undefined;
|
|
2428
2501
|
}, session?: ClientSession) => Promise<TPerson[]>;
|
|
2429
2502
|
getCompany: (search?: string) => Promise<any[] | TPerson>;
|
|
2430
2503
|
getPeopleByPlateNumber: (plateNumber: string) => Promise<TPerson[]>;
|
|
2504
|
+
getPeopleByNRIC: ({ page, limit, nric, sort, site, }: {
|
|
2505
|
+
page?: number | undefined;
|
|
2506
|
+
limit?: number | undefined;
|
|
2507
|
+
nric?: string | undefined;
|
|
2508
|
+
sort?: Record<string, any> | undefined;
|
|
2509
|
+
site: string;
|
|
2510
|
+
}) => Promise<{}>;
|
|
2511
|
+
pushVehicleByNRIC: (nric: string, plate: {
|
|
2512
|
+
plateNumber: string;
|
|
2513
|
+
recNo: string;
|
|
2514
|
+
}, session?: ClientSession) => Promise<void>;
|
|
2515
|
+
pullVehicleByRecNo: (recNo: string, session?: ClientSession) => Promise<void>;
|
|
2431
2516
|
};
|
|
2432
2517
|
|
|
2433
2518
|
declare function usePersonController(): {
|
|
@@ -2440,6 +2525,7 @@ declare function usePersonController(): {
|
|
|
2440
2525
|
getPeopleByUnit: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
2441
2526
|
getCompany: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
2442
2527
|
getPeopleByPlateNumber: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
2528
|
+
getPeopleByNRIC: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
2443
2529
|
};
|
|
2444
2530
|
|
|
2445
2531
|
type TRobotMetadata = {
|
|
@@ -2662,8 +2748,8 @@ type logCamera = {
|
|
|
2662
2748
|
question: string;
|
|
2663
2749
|
answers: Array<string>;
|
|
2664
2750
|
remarks: string;
|
|
2665
|
-
photos: string
|
|
2666
|
-
video: string
|
|
2751
|
+
photos: Array<string>;
|
|
2752
|
+
video: Array<string>;
|
|
2667
2753
|
}>;
|
|
2668
2754
|
};
|
|
2669
2755
|
type TPatrolLog = {
|
|
@@ -2702,13 +2788,14 @@ declare function usePatrolLogRepo(): {
|
|
|
2702
2788
|
createIndexes: () => Promise<string>;
|
|
2703
2789
|
createTextIndex: () => Promise<string>;
|
|
2704
2790
|
add: (value: TPatrolLog, session?: ClientSession) => Promise<ObjectId>;
|
|
2705
|
-
getAll: ({ search, page, limit, sort, status, site, }: {
|
|
2791
|
+
getAll: ({ search, page, limit, sort, status, site, dateFrom, }: {
|
|
2706
2792
|
search?: string | undefined;
|
|
2707
2793
|
page?: number | undefined;
|
|
2708
2794
|
limit?: number | undefined;
|
|
2709
2795
|
sort?: Record<string, any> | undefined;
|
|
2710
2796
|
status: string;
|
|
2711
2797
|
site?: string | undefined;
|
|
2798
|
+
dateFrom?: string | undefined;
|
|
2712
2799
|
}, session?: ClientSession) => Promise<{}>;
|
|
2713
2800
|
updateById: (_id: string | ObjectId, value: Partial<TPatrolLog>, session?: ClientSession) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
2714
2801
|
deleteById: (_id: string | ObjectId, session?: ClientSession) => Promise<string>;
|
|
@@ -4016,6 +4103,16 @@ declare function UseAccessManagementRepo(): {
|
|
|
4016
4103
|
user: mongodb.WithId<bson.Document> | null;
|
|
4017
4104
|
_id: ObjectId;
|
|
4018
4105
|
} | null>;
|
|
4106
|
+
addQrTagRepo: (params: {
|
|
4107
|
+
payload: QrTagProps[];
|
|
4108
|
+
site: string;
|
|
4109
|
+
}) => Promise<mongodb.BulkWriteResult | undefined>;
|
|
4110
|
+
allQrTagRepo: (params: {
|
|
4111
|
+
site: string;
|
|
4112
|
+
}) => Promise<{
|
|
4113
|
+
items: any;
|
|
4114
|
+
length: any;
|
|
4115
|
+
}>;
|
|
4019
4116
|
};
|
|
4020
4117
|
|
|
4021
4118
|
declare function useAccessManagementController(): {
|
|
@@ -4042,6 +4139,8 @@ declare function useAccessManagementController(): {
|
|
|
4042
4139
|
assignAccessCardToUnit: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4043
4140
|
deleteCard: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4044
4141
|
getCardDetails: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4142
|
+
addQrTag: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4143
|
+
allQrTag: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
|
|
4045
4144
|
};
|
|
4046
4145
|
|
|
4047
4146
|
declare const DEVICE_STATUS: {
|
|
@@ -5006,4 +5105,4 @@ declare function useAddressRepo(): {
|
|
|
5006
5105
|
getByUserId: (user: string | ObjectId) => Promise<TAddress | null>;
|
|
5007
5106
|
};
|
|
5008
5107
|
|
|
5009
|
-
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 };
|
|
5108
|
+
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, 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 };
|