@turndown/library 0.1.58 → 0.1.60
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/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +140 -49
- package/dist/index.d.ts +140 -49
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -764,7 +764,7 @@ declare const HTTP_STATUS: {
|
|
|
764
764
|
readonly InternalError: 500;
|
|
765
765
|
};
|
|
766
766
|
type THttpStatusCode = (typeof HTTP_STATUS)[keyof typeof HTTP_STATUS];
|
|
767
|
-
type TApiErrorDetails = TJsonValue
|
|
767
|
+
type TApiErrorDetails = TJsonValue;
|
|
768
768
|
interface IApiError<TDetails = TApiErrorDetails> {
|
|
769
769
|
message: string;
|
|
770
770
|
code?: TErrorCode;
|
|
@@ -776,12 +776,17 @@ interface IApiMeta {
|
|
|
776
776
|
environment: TEnvironment;
|
|
777
777
|
requestId?: string;
|
|
778
778
|
}
|
|
779
|
-
interface
|
|
780
|
-
success:
|
|
781
|
-
data
|
|
782
|
-
|
|
783
|
-
|
|
779
|
+
interface IApiSuccessResponse<TData = null> {
|
|
780
|
+
success: true;
|
|
781
|
+
data: TData;
|
|
782
|
+
meta: IApiMeta;
|
|
783
|
+
}
|
|
784
|
+
interface IApiErrorResponse<TErrorDetails = TApiErrorDetails> {
|
|
785
|
+
success: false;
|
|
786
|
+
error: IApiError<TErrorDetails>;
|
|
787
|
+
meta: IApiMeta;
|
|
784
788
|
}
|
|
789
|
+
type IApiResponse<TData = null, TErrorDetails = TApiErrorDetails> = IApiSuccessResponse<TData> | IApiErrorResponse<TErrorDetails>;
|
|
785
790
|
|
|
786
791
|
interface IUserIdParams {
|
|
787
792
|
id: string;
|
|
@@ -858,18 +863,19 @@ interface IUser extends IMetaData {
|
|
|
858
863
|
username: string | null;
|
|
859
864
|
email: string;
|
|
860
865
|
profilePhoto: string | null;
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
866
|
+
companyId: string | null;
|
|
867
|
+
passwordHash: string | null;
|
|
868
|
+
loginAttempts: number;
|
|
869
|
+
locked: boolean;
|
|
864
870
|
passwordLastReset: TDateTimeString | null;
|
|
865
|
-
passwordResetRequired
|
|
871
|
+
passwordResetRequired: boolean;
|
|
866
872
|
lastLogin: TDateTimeString | null;
|
|
867
873
|
accountType: TAccountType;
|
|
868
874
|
status: TAccountStatus;
|
|
869
875
|
phoneNumber: string | null;
|
|
870
876
|
phoneFormat: string | null;
|
|
871
877
|
preferredLanguage: TLanguage | null;
|
|
872
|
-
biometrics
|
|
878
|
+
biometrics: string | null;
|
|
873
879
|
}
|
|
874
880
|
type IUserSafe = Omit<IUser, "passwordLastReset" | "lastLogin" | "passwordHash" | "loginAttempts" | "biometrics">;
|
|
875
881
|
interface IDeviceInfo {
|
|
@@ -923,7 +929,7 @@ interface ILoginRequest {
|
|
|
923
929
|
deviceInfo?: IDeviceInfo;
|
|
924
930
|
}
|
|
925
931
|
interface ILoginResponse extends IAuthTokenResponse {
|
|
926
|
-
passwordResetRequired
|
|
932
|
+
passwordResetRequired: boolean;
|
|
927
933
|
}
|
|
928
934
|
interface IRefreshSessionRequest {
|
|
929
935
|
refreshToken: string;
|
|
@@ -975,7 +981,7 @@ interface IGetLoginHistoryResponse {
|
|
|
975
981
|
ipAddress: string;
|
|
976
982
|
userAgent: string;
|
|
977
983
|
success: boolean;
|
|
978
|
-
failureReason
|
|
984
|
+
failureReason: string | null;
|
|
979
985
|
createdAt: TDateTimeString;
|
|
980
986
|
}
|
|
981
987
|
interface IGetLoginHistoryListResponse {
|
|
@@ -1056,7 +1062,7 @@ interface IStoredAuthSession {
|
|
|
1056
1062
|
}
|
|
1057
1063
|
interface IAuthTokenResponse extends IAuthTokenBundle {
|
|
1058
1064
|
user: IUserSafe | null;
|
|
1059
|
-
companyId
|
|
1065
|
+
companyId: string | null;
|
|
1060
1066
|
}
|
|
1061
1067
|
interface IAuthSession {
|
|
1062
1068
|
user: IUserSafe | null;
|
|
@@ -1097,7 +1103,7 @@ interface IRateLimitStatus {
|
|
|
1097
1103
|
isLimited: boolean;
|
|
1098
1104
|
attempts: number;
|
|
1099
1105
|
maxAttempts: number;
|
|
1100
|
-
resetTime
|
|
1106
|
+
resetTime: TDateTimeString | null;
|
|
1101
1107
|
}
|
|
1102
1108
|
|
|
1103
1109
|
interface IChecklistTemplateCompanyRouteParams {
|
|
@@ -1116,8 +1122,10 @@ interface ITemplateAndItemIdParams {
|
|
|
1116
1122
|
interface IIncludeInactiveQuery {
|
|
1117
1123
|
includeInactive?: string;
|
|
1118
1124
|
}
|
|
1119
|
-
interface ICreateTemplateRequest
|
|
1125
|
+
interface ICreateTemplateRequest {
|
|
1120
1126
|
name: string;
|
|
1127
|
+
description?: string;
|
|
1128
|
+
isActive?: boolean;
|
|
1121
1129
|
}
|
|
1122
1130
|
interface ICreateTemplateResponse extends IChecklistTemplate {
|
|
1123
1131
|
}
|
|
@@ -1137,7 +1145,10 @@ interface IGetTemplateWithItemsRequest extends ITemplateIdParams {
|
|
|
1137
1145
|
}
|
|
1138
1146
|
interface IGetTemplateWithItemsResponse extends IChecklistTemplateWithItems {
|
|
1139
1147
|
}
|
|
1140
|
-
interface IUpdateTemplateRequest
|
|
1148
|
+
interface IUpdateTemplateRequest {
|
|
1149
|
+
name?: string;
|
|
1150
|
+
description?: string | null;
|
|
1151
|
+
isActive?: boolean;
|
|
1141
1152
|
}
|
|
1142
1153
|
interface IUpdateTemplateResponse extends IChecklistTemplate {
|
|
1143
1154
|
}
|
|
@@ -1162,7 +1173,13 @@ interface IAddTemplateItemRequest extends ICreateTemplateItemInput {
|
|
|
1162
1173
|
}
|
|
1163
1174
|
interface IAddTemplateItemResponse extends IChecklistTemplateItem {
|
|
1164
1175
|
}
|
|
1165
|
-
interface IUpdateTemplateItemRequest
|
|
1176
|
+
interface IUpdateTemplateItemRequest {
|
|
1177
|
+
title?: string;
|
|
1178
|
+
description?: string | null;
|
|
1179
|
+
displayOrder?: number;
|
|
1180
|
+
requiresPhoto?: boolean;
|
|
1181
|
+
isRequired?: boolean;
|
|
1182
|
+
estimatedTimeMinutes?: number | null;
|
|
1166
1183
|
}
|
|
1167
1184
|
interface IUpdateTemplateItemResponse extends IChecklistTemplateItem {
|
|
1168
1185
|
}
|
|
@@ -1214,7 +1231,7 @@ interface IChecklistTemplateWithItems extends IChecklistTemplate {
|
|
|
1214
1231
|
*/
|
|
1215
1232
|
interface ICreateTemplateInput {
|
|
1216
1233
|
name: string;
|
|
1217
|
-
description?: string
|
|
1234
|
+
description?: string;
|
|
1218
1235
|
companyId: string;
|
|
1219
1236
|
createdBy: string;
|
|
1220
1237
|
isActive?: boolean;
|
|
@@ -1224,11 +1241,11 @@ interface ICreateTemplateInput {
|
|
|
1224
1241
|
*/
|
|
1225
1242
|
interface ICreateTemplateItemInput {
|
|
1226
1243
|
title: string;
|
|
1227
|
-
description?: string
|
|
1244
|
+
description?: string;
|
|
1228
1245
|
displayOrder: number;
|
|
1229
1246
|
requiresPhoto?: boolean;
|
|
1230
1247
|
isRequired?: boolean;
|
|
1231
|
-
estimatedTimeMinutes?: number
|
|
1248
|
+
estimatedTimeMinutes?: number;
|
|
1232
1249
|
}
|
|
1233
1250
|
|
|
1234
1251
|
interface ICompanyRouteParams {
|
|
@@ -1257,14 +1274,14 @@ interface IGetCompaniesQuery {
|
|
|
1257
1274
|
interface ICreateCompanyRequest {
|
|
1258
1275
|
displayName: string;
|
|
1259
1276
|
addressLine1: string;
|
|
1260
|
-
addressLine2?: string
|
|
1277
|
+
addressLine2?: string;
|
|
1261
1278
|
city: string;
|
|
1262
1279
|
stateCode: TUSStateCode;
|
|
1263
1280
|
postalCode: string;
|
|
1264
1281
|
companyType: ICompany["companyType"];
|
|
1265
|
-
country?: string
|
|
1266
|
-
timezone?: string
|
|
1267
|
-
imageUrl?: string
|
|
1282
|
+
country?: string;
|
|
1283
|
+
timezone?: string;
|
|
1284
|
+
imageUrl?: string;
|
|
1268
1285
|
}
|
|
1269
1286
|
interface ICreateCompanyResponse extends ICompanyWithRelationshipStatus {
|
|
1270
1287
|
}
|
|
@@ -1831,7 +1848,20 @@ interface IRoomInventoryIdParams {
|
|
|
1831
1848
|
interface IInventoryOrderRouteParams {
|
|
1832
1849
|
orderId: string;
|
|
1833
1850
|
}
|
|
1834
|
-
interface ICreateInventoryItemRequest
|
|
1851
|
+
interface ICreateInventoryItemRequest {
|
|
1852
|
+
companyId: string;
|
|
1853
|
+
name: string;
|
|
1854
|
+
itemType: TInventoryItemType;
|
|
1855
|
+
unit: TInventoryUnitType;
|
|
1856
|
+
minimumLevel: number;
|
|
1857
|
+
reorderLevel: number;
|
|
1858
|
+
description?: string;
|
|
1859
|
+
unitCustom?: string;
|
|
1860
|
+
maximumLevel?: number;
|
|
1861
|
+
costPerUnit?: number;
|
|
1862
|
+
supplierInfo?: string;
|
|
1863
|
+
sku?: string;
|
|
1864
|
+
barcode?: string;
|
|
1835
1865
|
}
|
|
1836
1866
|
interface ICreateInventoryItemResponse extends IInventoryItem {
|
|
1837
1867
|
}
|
|
@@ -1850,7 +1880,15 @@ interface IDeleteInventoryItemResponse extends IMessageResponse {
|
|
|
1850
1880
|
interface IGetInventoryByCompanyIdRequest extends IInventoryCompanyRouteParams {
|
|
1851
1881
|
}
|
|
1852
1882
|
type IGetInventoryByCompanyIdResponse = IInventoryItem[];
|
|
1853
|
-
interface IAddInventoryToPropertyRequest
|
|
1883
|
+
interface IAddInventoryToPropertyRequest {
|
|
1884
|
+
propertyId: string;
|
|
1885
|
+
inventoryItemId: string;
|
|
1886
|
+
currentLevel?: number;
|
|
1887
|
+
minimumLevel?: number;
|
|
1888
|
+
maximumLevel?: number;
|
|
1889
|
+
parLevel?: number;
|
|
1890
|
+
autoReorder?: boolean;
|
|
1891
|
+
locationNotes?: string;
|
|
1854
1892
|
}
|
|
1855
1893
|
interface IAddInventoryToPropertyResponse extends IPropertyInventory {
|
|
1856
1894
|
}
|
|
@@ -1860,7 +1898,15 @@ type IGetPropertyInventoryResponse = IPropertyInventory[];
|
|
|
1860
1898
|
interface IGetPropertyInventoryNeedingRestockRequest extends IInventoryPropertyRouteParams {
|
|
1861
1899
|
}
|
|
1862
1900
|
type IGetPropertyInventoryNeedingRestockResponse = IPropertyInventory[];
|
|
1863
|
-
interface IAddInventoryToRoomRequest
|
|
1901
|
+
interface IAddInventoryToRoomRequest {
|
|
1902
|
+
roomId: string;
|
|
1903
|
+
inventoryItemId: string;
|
|
1904
|
+
currentLevel?: number;
|
|
1905
|
+
minimumLevel?: number;
|
|
1906
|
+
maximumLevel?: number;
|
|
1907
|
+
parLevel?: number;
|
|
1908
|
+
autoReorder?: boolean;
|
|
1909
|
+
locationNotes?: string;
|
|
1864
1910
|
}
|
|
1865
1911
|
interface IAddInventoryToRoomResponse extends IRoomInventory {
|
|
1866
1912
|
}
|
|
@@ -1874,7 +1920,17 @@ interface IUpdateRoomInventoryResponse extends IRoomInventory {
|
|
|
1874
1920
|
interface IGetRoomInventoryNeedingRestockRequest extends IInventoryRoomRouteParams {
|
|
1875
1921
|
}
|
|
1876
1922
|
type IGetRoomInventoryNeedingRestockResponse = IRoomInventory[];
|
|
1877
|
-
interface IRecordInventoryCountRequest
|
|
1923
|
+
interface IRecordInventoryCountRequest {
|
|
1924
|
+
checklistExecutionId: string;
|
|
1925
|
+
roomInventoryId: string;
|
|
1926
|
+
countedLevel: number;
|
|
1927
|
+
countedBy: string;
|
|
1928
|
+
previousLevel?: number;
|
|
1929
|
+
consumedAmount?: number;
|
|
1930
|
+
restockedAmount?: number;
|
|
1931
|
+
finalLevel?: number;
|
|
1932
|
+
needsRestock?: boolean;
|
|
1933
|
+
notes?: string;
|
|
1878
1934
|
}
|
|
1879
1935
|
interface IRecordInventoryCountResponse extends IInventoryCount {
|
|
1880
1936
|
}
|
|
@@ -1890,11 +1946,11 @@ interface IRestockOrderItemInput {
|
|
|
1890
1946
|
}
|
|
1891
1947
|
interface ICreateRestockOrderRequest {
|
|
1892
1948
|
companyId: string;
|
|
1893
|
-
orderedBy?: string
|
|
1894
|
-
orderNumber?: string
|
|
1895
|
-
expectedDelivery?:
|
|
1896
|
-
supplierInfo?: string
|
|
1897
|
-
notes?: string
|
|
1949
|
+
orderedBy?: string;
|
|
1950
|
+
orderNumber?: string;
|
|
1951
|
+
expectedDelivery?: TDateTimeString;
|
|
1952
|
+
supplierInfo?: string;
|
|
1953
|
+
notes?: string;
|
|
1898
1954
|
items: IRestockOrderItemInput[];
|
|
1899
1955
|
}
|
|
1900
1956
|
interface ICreateRestockOrderResponse extends IInventoryRestockOrder {
|
|
@@ -1907,7 +1963,7 @@ interface IGetRestockOrderItemsRequest extends IInventoryOrderRouteParams {
|
|
|
1907
1963
|
type IGetRestockOrderItemsResponse = IInventoryRestockOrderItem[];
|
|
1908
1964
|
interface IUpdateRestockOrderStatusRequest {
|
|
1909
1965
|
status: TInventoryRestockOrderStatus;
|
|
1910
|
-
receivedBy?: string
|
|
1966
|
+
receivedBy?: string;
|
|
1911
1967
|
}
|
|
1912
1968
|
interface IUpdateRestockOrderStatusResponse extends IInventoryRestockOrder {
|
|
1913
1969
|
}
|
|
@@ -2047,18 +2103,31 @@ interface ICreatePropertyRequest {
|
|
|
2047
2103
|
propertyType: TPropertyType;
|
|
2048
2104
|
status?: TPropertyStatus;
|
|
2049
2105
|
addressLine1: string;
|
|
2050
|
-
addressLine2?: string
|
|
2106
|
+
addressLine2?: string;
|
|
2051
2107
|
city: string;
|
|
2052
2108
|
stateCode: TUSStateCode;
|
|
2053
2109
|
postalCode: string;
|
|
2110
|
+
country?: string;
|
|
2111
|
+
sqft?: number;
|
|
2112
|
+
timezone?: string;
|
|
2113
|
+
imageUrl?: string;
|
|
2114
|
+
specialNotes?: string;
|
|
2115
|
+
}
|
|
2116
|
+
interface IUpdatePropertyRequest {
|
|
2117
|
+
displayName?: string;
|
|
2118
|
+
propertyType?: TPropertyType | null;
|
|
2119
|
+
status?: TPropertyStatus | null;
|
|
2120
|
+
addressLine1?: string;
|
|
2121
|
+
addressLine2?: string | null;
|
|
2122
|
+
city?: string;
|
|
2123
|
+
stateCode?: TUSStateCode;
|
|
2124
|
+
postalCode?: string;
|
|
2054
2125
|
country?: string | null;
|
|
2055
2126
|
sqft?: number | null;
|
|
2056
2127
|
timezone?: string | null;
|
|
2057
2128
|
imageUrl?: string | null;
|
|
2058
2129
|
specialNotes?: string | null;
|
|
2059
2130
|
}
|
|
2060
|
-
interface IUpdatePropertyRequest extends Partial<Omit<ICreatePropertyRequest, "companyId">> {
|
|
2061
|
-
}
|
|
2062
2131
|
interface IGetPropertiesRequest {
|
|
2063
2132
|
companyId?: string;
|
|
2064
2133
|
}
|
|
@@ -2075,7 +2144,14 @@ interface IUpdatePropertyResponse extends IPropertyDetail {
|
|
|
2075
2144
|
}
|
|
2076
2145
|
interface IDeletePropertyResponse extends IMessageResponse {
|
|
2077
2146
|
}
|
|
2078
|
-
interface IUpdatePropertyAccessInformationRequest
|
|
2147
|
+
interface IUpdatePropertyAccessInformationRequest {
|
|
2148
|
+
entryInstructions?: string | null;
|
|
2149
|
+
accessCode?: string | null;
|
|
2150
|
+
wifiName?: string | null;
|
|
2151
|
+
wifiPassword?: string | null;
|
|
2152
|
+
alarmCode?: string | null;
|
|
2153
|
+
parkingInfo?: string | null;
|
|
2154
|
+
specialNotes?: string | null;
|
|
2079
2155
|
}
|
|
2080
2156
|
interface IUpdatePropertyAccessInformationResponse extends IPropertyAccessInformation {
|
|
2081
2157
|
}
|
|
@@ -2230,10 +2306,10 @@ interface IRoomRouteParams {
|
|
|
2230
2306
|
interface ICreateRoomRequest {
|
|
2231
2307
|
propertyId: string;
|
|
2232
2308
|
displayName: string;
|
|
2233
|
-
description?: string
|
|
2234
|
-
checklistTemplateId?: string
|
|
2309
|
+
description?: string;
|
|
2310
|
+
checklistTemplateId?: string;
|
|
2235
2311
|
roomType?: IRoom["roomType"];
|
|
2236
|
-
heroPhoto?: string
|
|
2312
|
+
heroPhoto?: string;
|
|
2237
2313
|
}
|
|
2238
2314
|
interface ICreateRoomResponse extends IRoom {
|
|
2239
2315
|
}
|
|
@@ -2250,7 +2326,12 @@ interface IGetRoomByIdRequest extends IRoomRouteParams {
|
|
|
2250
2326
|
}
|
|
2251
2327
|
interface IGetRoomByIdResponse extends IRoom {
|
|
2252
2328
|
}
|
|
2253
|
-
interface IUpdateRoomRequest
|
|
2329
|
+
interface IUpdateRoomRequest {
|
|
2330
|
+
displayName?: string;
|
|
2331
|
+
description?: string | null;
|
|
2332
|
+
checklistTemplateId?: string | null;
|
|
2333
|
+
roomType?: IRoom["roomType"];
|
|
2334
|
+
heroPhoto?: string | null;
|
|
2254
2335
|
}
|
|
2255
2336
|
interface IUpdateRoomResponse extends IRoom {
|
|
2256
2337
|
}
|
|
@@ -2320,7 +2401,10 @@ interface IGetChecklistWithItemsRequest extends IChecklistIdParams {
|
|
|
2320
2401
|
}
|
|
2321
2402
|
interface IGetChecklistWithItemsResponse extends IRoomChecklistWithItems {
|
|
2322
2403
|
}
|
|
2323
|
-
interface IUpdateChecklistRequest
|
|
2404
|
+
interface IUpdateChecklistRequest {
|
|
2405
|
+
templateId?: string | null;
|
|
2406
|
+
name?: string;
|
|
2407
|
+
isActive?: boolean;
|
|
2324
2408
|
}
|
|
2325
2409
|
interface IUpdateChecklistResponse extends IRoomChecklist {
|
|
2326
2410
|
}
|
|
@@ -2345,7 +2429,14 @@ interface IAddChecklistItemRequest extends ICreateRoomChecklistItemInput {
|
|
|
2345
2429
|
}
|
|
2346
2430
|
interface IAddChecklistItemResponse extends IRoomChecklistItem {
|
|
2347
2431
|
}
|
|
2348
|
-
interface IUpdateChecklistItemRequest
|
|
2432
|
+
interface IUpdateChecklistItemRequest {
|
|
2433
|
+
title?: string;
|
|
2434
|
+
description?: string | null;
|
|
2435
|
+
displayOrder?: number;
|
|
2436
|
+
requiresPhoto?: boolean;
|
|
2437
|
+
isRequired?: boolean;
|
|
2438
|
+
estimatedTimeMinutes?: number | null;
|
|
2439
|
+
isCustom?: boolean;
|
|
2349
2440
|
}
|
|
2350
2441
|
interface IUpdateChecklistItemResponse extends IRoomChecklistItem {
|
|
2351
2442
|
}
|
|
@@ -2387,7 +2478,7 @@ interface IRoomChecklistWithItems extends IRoomChecklist {
|
|
|
2387
2478
|
*/
|
|
2388
2479
|
interface ICreateRoomChecklistInput {
|
|
2389
2480
|
roomId: string;
|
|
2390
|
-
templateId?: string
|
|
2481
|
+
templateId?: string;
|
|
2391
2482
|
name: string;
|
|
2392
2483
|
isActive?: boolean;
|
|
2393
2484
|
}
|
|
@@ -2396,11 +2487,11 @@ interface ICreateRoomChecklistInput {
|
|
|
2396
2487
|
*/
|
|
2397
2488
|
interface ICreateRoomChecklistItemInput {
|
|
2398
2489
|
title: string;
|
|
2399
|
-
description?: string
|
|
2490
|
+
description?: string;
|
|
2400
2491
|
displayOrder: number;
|
|
2401
2492
|
requiresPhoto?: boolean;
|
|
2402
2493
|
isRequired?: boolean;
|
|
2403
|
-
estimatedTimeMinutes?: number
|
|
2494
|
+
estimatedTimeMinutes?: number;
|
|
2404
2495
|
isCustom?: boolean;
|
|
2405
2496
|
}
|
|
2406
2497
|
|
|
@@ -2881,4 +2972,4 @@ type Failure<E> = {
|
|
|
2881
2972
|
type Result<T, E = unknown> = Success<T> | Failure<E>;
|
|
2882
2973
|
declare const tryCatch: <T, E = unknown>(callback: () => T | Promise<T>) => Promise<Result<T, E>>;
|
|
2883
2974
|
|
|
2884
|
-
export { ACCOUNT_STATUS, ACCOUNT_TYPE, AUTH_STATUS, BILLING_PERIOD, CHECKLIST_EXECUTION_STATUS, COMPANY_RELATIONSHIP_STATUS, COMPANY_TYPES, CompanyFilter, DAMAGE_SEVERITY, DAMAGE_STATUS, DATABASE_STATUS, ENVIRONMENT, ERROR_CODES, FilterCondition, HTTP_METHOD, HTTP_STATUS, type IAcceptCompanyInvitationRequest, type IAcceptCompanyInvitationResponse, type IAcceptInvitationRequest, type IAcceptInvitationResponse, type IAcceptInvitationRouteResponse, type IAddChecklistItemRequest, type IAddChecklistItemResponse, type IAddDamageReportCommentRequest, type IAddDamageReportCommentResponse, type IAddDamageReportPhotoRequest, type IAddDamageReportPhotoResponse, type IAddInventoryToPropertyRequest, type IAddInventoryToPropertyResponse, type IAddInventoryToRoomRequest, type IAddInventoryToRoomResponse, type IAddTemplateItemRequest, type IAddTemplateItemResponse, type IAddress, type IApiError, type IApiMeta, type IApiResponse, type IAssignDamageReportRequest, type IAssignDamageReportResponse, type IAssignWorkOrderRequest, type IAssignWorkOrderResponse, type IAuthInvitationBaseResponse, type IAuthInvitationIdParams, type IAuthInvitationTokenParams, type IAuthMessageResponse, type IAuthRefreshTokenResponse, type IAuthSession, type IAuthSessionIdParams, type IAuthTokenBundle, type IAuthTokenResponse, type IBooleanFilterCondition, type ICancelWorkSessionRequest, type ICancelWorkSessionResponse, type IChangePasswordRequest, type IChangePasswordResponse, type IChecklistAndItemIdParams, type IChecklistExecution, type IChecklistIdParams, type IChecklistItemCompletion, type IChecklistItemOrder, type IChecklistTemplate, type IChecklistTemplateCompanyRouteParams, type IChecklistTemplateItem, type IChecklistTemplateWithItems, type ICloneChecklistRequest, type ICloneChecklistResponse, type ICompany, type ICompanyIdParams, type ICompanyInvitationIdParams, type ICompanyInvitationSummary, type ICompanyInvitationTokenParams, type ICompanyRouteParams, type ICompanyUserRouteParams, type ICompanyUserSummary, type ICompanyWithRelationshipStatus, type ICompanyWithUsers, type ICompleteChecklistExecutionRequest, type ICompleteChecklistExecutionResponse, type ICompleteChecklistItemInput, type ICompleteExecutionItemRequest, type ICompleteExecutionItemResponse, type ICompleteWorkOrderRequest, type ICompleteWorkOrderResponse, type ICompleteWorkSessionRequest, type ICompleteWorkSessionResponse, type ICountResponse, type ICreateChecklistRequest, type ICreateChecklistResponse, type ICreateCompanyRequest, type ICreateCompanyResponse, type ICreateCustomChecklistRequest, type ICreateCustomChecklistResponse, type ICreateDamageReportInput, type ICreateDamageReportRequest, type ICreateDamageReportResponse, type ICreateInventoryItemRequest, type ICreateInventoryItemResponse, type ICreatePropertyRequest, type ICreatePropertyResponse, type ICreateRestockOrderRequest, type ICreateRestockOrderResponse, type ICreateRoomChecklistInput, type ICreateRoomChecklistItemInput, type ICreateRoomRequest, type ICreateRoomResponse, type ICreateTemplateInput, type ICreateTemplateItemInput, type ICreateTemplateRequest, type ICreateTemplateResponse, type ICreateTemplateWithItemsRequest, type ICreateTemplateWithItemsResponse, type ICreateWorkOrderInput, type ICreateWorkOrderRequest, type ICreateWorkOrderResponse, type ICreateWorkSessionInput, type ICreateWorkSessionRequest, type ICreateWorkSessionResponse, type IDamageComment, type IDamagePhoto, type IDamageReport, type IDamageReportPhoto, type IDamageReportPropertyRouteParams, type IDamageReportRoomRouteParams, type IDamageReportRouteParams, type IDamageReportStatusHistory, type IDamageReportWorkOrderRouteParams, type IDataWithPagingResult, type IDeclineCompanyInvitationRequest, type IDeclineCompanyInvitationResponse, type IDeleteChecklistItemRequest, type IDeleteChecklistItemResponse, type IDeleteChecklistRequest, type IDeleteChecklistResponse, type IDeleteImageRequest, type IDeleteImageResponse, type IDeleteInventoryItemRequest, type IDeleteInventoryItemResponse, type IDeletePropertyRequest, type IDeletePropertyResponse, type IDeleteRoomRequest, type IDeleteRoomResponse, type IDeleteTemplateItemRequest, type IDeleteTemplateItemResponse, type IDeleteTemplateRequest, type IDeleteTemplateResponse, type IDeleteUserRequest, type IDeleteUserResponse, type IDeviceInfo, type IDuplicateTemplateItemRequest, type IDuplicateTemplateItemResponse, type IEmailValidationResult, type IEmptyRouteParams, type IEmptyRouteRequest, type IFilterCondition, type IFilterConditionBase, type IForgotPasswordRequest, type IForgotPasswordResponse, type IGetActiveWorkSessionRequest, type IGetActiveWorkSessionResponse, type IGetChecklistByIdRequest, type IGetChecklistByIdResponse, type IGetChecklistByRoomIdRequest, type IGetChecklistByRoomIdResponse, type IGetChecklistExecutionByIdRequest, type IGetChecklistExecutionByIdResponse, type IGetChecklistExecutionsRequest, type IGetChecklistExecutionsResponse, type IGetChecklistItemsRequest, type IGetChecklistItemsResponse, type IGetChecklistWithItemsRequest, type IGetChecklistWithItemsResponse, type IGetCompaniesQuery, type IGetCompaniesRequest, type IGetCompaniesResponse, type IGetCompanyByIdRequest, type IGetCompanyByIdResponse, type IGetCompanyUsersRequest, type IGetCompanyUsersResponse, type IGetCurrentUserRequest, type IGetCurrentUserResponse, type IGetCustomChecklistItemsRequest, type IGetCustomChecklistItemsResponse, type IGetDamageReportByIdRequest, type IGetDamageReportByIdResponse, type IGetDamageReportCommentsRequest, type IGetDamageReportCommentsResponse, type IGetDamageReportHistoryRequest, type IGetDamageReportHistoryResponse, type IGetDamageReportPhotosRequest, type IGetDamageReportPhotosResponse, type IGetDamageReportsByPropertyIdRequest, type IGetDamageReportsByPropertyIdResponse, type IGetDamageReportsByRoomIdRequest, type IGetDamageReportsByRoomIdResponse, type IGetDetailedHealthRequest, type IGetDetailedHealthResponse, type IGetDetailedRoomsByPropertyIdRequest, type IGetDetailedRoomsByPropertyIdResponse, type IGetExecutionItemsRequest, type IGetExecutionItemsResponse, type IGetExecutionProgressRequest, type IGetExecutionProgressResponse, type IGetHealthRequest, type IGetHealthResponse, type IGetImagesForEntityResponse, type IGetInventoryByCompanyIdRequest, type IGetInventoryByCompanyIdResponse, type IGetInventoryCountsByExecutionIdRequest, type IGetInventoryCountsByExecutionIdResponse, type IGetInventoryItemByIdRequest, type IGetInventoryItemByIdResponse, type IGetLoginHistoryListResponse, type IGetLoginHistoryRequest, type IGetLoginHistoryResponse, type IGetMeRequest, type IGetMeResponse, type IGetPendingCompanyInvitationsRequest, type IGetPendingCompanyInvitationsResponse, type IGetPendingInvitationsListResponse, type IGetPendingInvitationsRequest, type IGetPendingInvitationsResponse, type IGetPropertiesByCompanyIdRequest, type IGetPropertiesByCompanyIdResponse, type IGetPropertiesRequest, type IGetPropertiesResponse, type IGetPropertyAccessInformationRequest, type IGetPropertyAccessInformationResponse, type IGetPropertyByIdRequest, type IGetPropertyByIdResponse, type IGetPropertyInventoryNeedingRestockRequest, type IGetPropertyInventoryNeedingRestockResponse, type IGetPropertyInventoryRequest, type IGetPropertyInventoryResponse, type IGetPropertyResponse, type IGetRestockOrderItemsRequest, type IGetRestockOrderItemsResponse, type IGetRestockOrdersByCompanyIdRequest, type IGetRestockOrdersByCompanyIdResponse, type IGetRoomByIdRequest, type IGetRoomByIdResponse, type IGetRoomInventoryNeedingRestockRequest, type IGetRoomInventoryNeedingRestockResponse, type IGetRoomInventoryRequest, type IGetRoomInventoryResponse, type IGetRoomsByPropertyIdRequest, type IGetRoomsByPropertyIdResponse, type IGetRoomsRequest, type IGetSessionsRequest, type IGetSessionsResponse, type IGetStaffRequest, type IGetStaffResponse, type IGetTemplateByIdRequest, type IGetTemplateByIdResponse, type IGetTemplateItemsRequest, type IGetTemplateItemsResponse, type IGetTemplateUsageRequest, type IGetTemplateUsageResponse, type IGetTemplateWithItemsRequest, type IGetTemplateWithItemsResponse, type IGetTemplatesByCompanyIdRequest, type IGetTemplatesByCompanyIdResponse, type IGetUserByEmailRequest, type IGetUserByEmailResponse, type IGetUserByIdRequest, type IGetUserByIdResponse, type IGetUserCompaniesRequest, type IGetUserCompaniesResponse, type IGetUserResponse, type IGetUsersByAccountTypeRequest, type IGetUsersByAccountTypeResponse, type IGetWorkOrderByIdRequest, type IGetWorkOrderByIdResponse, type IGetWorkOrdersByPropertyIdRequest, type IGetWorkOrdersByPropertyIdResponse, type IGetWorkSessionByIdRequest, type IGetWorkSessionByIdResponse, type IGetWorkSessionWithExecutionsRequest, type IGetWorkSessionWithExecutionsResponse, type IGetWorkSessionsByPropertyIdRequest, type IGetWorkSessionsByPropertyIdResponse, type IGetWorkSessionsByUserIdRequest, type IGetWorkSessionsByUserIdResponse, type IHealthCheckResponse, type IHealthChecks, type IImage, type IImageCompanyRouteParams, type IImagePropertyRouteParams, type IImageRoomRouteParams, type IImageRouteParams, type IImageUserRouteParams, type IImageWithUrl, type IIncludeInactiveQuery, type IIncludeResolvedQuery, type IInventoryCompanyRouteParams, type IInventoryCount, type IInventoryExecutionRouteParams, type IInventoryItem, type IInventoryItemRouteParams, type IInventoryOrderRouteParams, type IInventoryPropertyRouteParams, type IInventoryRestockOrder, type IInventoryRestockOrderItem, type IInventoryRoomRouteParams, type IInviteCompanyToCompanyRequest, type IInviteCompanyToCompanyResponse, type IInviteUserToCompanyRequest, type IInviteUserToCompanyResponse, type IJobFilterValues, type ILimitQuery, type ILoginCredentials, type ILoginRequest, type ILoginResponse, type ILogoutAllRequest, type ILogoutAllResponse, type ILogoutRequest, type ILogoutResponse, IMAGE_ENTITY, IMAGE_ENTITY_TYPE, type IMessageResponse, type IMetaData, type IMissingFieldsErrorDetail, INVENTORY_ITEM_TYPE, INVENTORY_RESTOCK_ORDER_STATUS, INVENTORY_UNITS, INVITATION_STATUS, type INumberFilterCondition, type IPaginationRequest, type IPagingObject, type IPagingResult, type IPasswordValidationResult, type IPasswordValidationRules, type IProperty, type IPropertyAccessFormValues, type IPropertyAccessInformation, type IPropertyAccessItem, type IPropertyBase, type IPropertyDetail, type IPropertyFilterValues, type IPropertyFormValues, type IPropertyIdParams, type IPropertyInventory, type IPropertyJobSummaryItem, type IPropertyMetric, type IPropertyRoomSummaryItem, type IPropertySummary, type IRateLimitErrorDetail, type IRateLimitStatus, type IRecordInventoryCountRequest, type IRecordInventoryCountResponse, type IRefreshSessionRequest, type IRefreshSessionResponse, type IRefreshTokenData, type IRegisterCredentials, type IRegisterRequest, type IRegisterResponse, type IRegisterWithInvitationRequest, type IRegisterWithInvitationResponse, type IReorderChecklistItemsRequest, type IReorderChecklistItemsResponse, type IReorderTemplateItemsRequest, type IReorderTemplateItemsResponse, type IResolveDamageReportRequest, type IResolveDamageReportResponse, type IRestockOrderItemInput, type IRevokeCompanyInvitationRequest, type IRevokeCompanyInvitationResponse, type IRevokeInvitationRequest, type IRevokeInvitationResponse, type IRevokeSessionRequest, type IRevokeSessionResponse, type IRoom, type IRoomChecklist, type IRoomChecklistItem, type IRoomChecklistRoomRouteParams, type IRoomChecklistWithItems, type IRoomInventory, type IRoomInventoryIdParams, type IRoomPropertyRouteParams, type IRoomRouteParams, type ISelectOption, type ISetAuthSessionParams, type ISkipChecklistExecutionRequest, type ISkipChecklistExecutionResponse, type ISortCondition, type IStartChecklistExecutionRequest, type IStartChecklistExecutionResponse, type IStoredAuthSession, type IStringFilterCondition, type ISuccessResponse, type ITemplateAndItemIdParams, type ITemplateIdParams, type ITemplateItemIdParams, type ITemplateItemOrder, type IToggleTemplateActiveRequest, type IToggleTemplateActiveResponse, type ITokenPayload, type ITypedApiError, type IUpdateChecklistItemRequest, type IUpdateChecklistItemResponse, type IUpdateChecklistRequest, type IUpdateChecklistResponse, type IUpdateCompanyRequest, type IUpdateCompanyResponse, type IUpdateDamageReportRequest, type IUpdateDamageReportResponse, type IUpdateDamageReportStatusRequest, type IUpdateDamageReportStatusResponse, type IUpdateInventoryItemRequest, type IUpdateInventoryItemResponse, type IUpdatePropertyAccessInformationRequest, type IUpdatePropertyAccessInformationResponse, type IUpdatePropertyRequest, type IUpdatePropertyResponse, type IUpdateRestockOrderStatusRequest, type IUpdateRestockOrderStatusResponse, type IUpdateRoomInventoryRequest, type IUpdateRoomInventoryResponse, type IUpdateRoomRequest, type IUpdateRoomResponse, type IUpdateTemplateItemRequest, type IUpdateTemplateItemResponse, type IUpdateTemplateRequest, type IUpdateTemplateResponse, type IUpdateUserRequest, type IUpdateUserResponse, type IUpdateWorkOrderRequest, type IUpdateWorkOrderResponse, type IUpdateWorkOrderStatusRequest, type IUpdateWorkOrderStatusResponse, type IUpdateWorkSessionRequest, type IUpdateWorkSessionResponse, type IUploadImagesResponse, type IUploadProfileImageRequest, type IUploadProfileImageResponse, type IUser, type IUserIdParams, type IUserSafe, type IUserSession, type IUserSubscription, type IValidateCompanyInvitationRequest, type IValidateCompanyInvitationResponse, type IValidateInvitationRequest, type IValidateInvitationResponse, type IValidationErrorDetail, type IVersion, type IWeekDay, type IWorkOrder, type IWorkSession, type IWorkSessionExecutionRouteParams, type IWorkSessionPropertyRouteParams, type IWorkSessionRouteParams, type IWorkSessionUserRouteParams, type IWorkSessionWithExecutions, JSONStringify, LANGUAGE, MODE, MONTHS, PROPERTY_STATUS, PROPERTY_TYPES, PropertyStatusOptions, PropertyTypeOptions, ROOM_TYPE, SERVER_STATUS, SERVICE_TYPES, SEVERITY, STATUS, SUBSCRIPTION_PROVIDER, SUBSCRIPTION_STATUS, ServiceTypeOptions, SeverityOptions, SortDirection, StatusOptions, type TAccountStatus, type TAccountType, type TApiErrorDetails, type TAuthStatus, type TBillingPeriod, type TChecklistExecutionStatus, type TCompanyFilter, type TCompanyRelationshipStatus, type TCompanyType, type TDamageSeverity, type TDamageStatus, type TDatabaseStatus, type TDateFormat, type TDateInput, type TDateTimeString, type TEmptyObject, type TEnvironment, type TErrorCode, type TErrorResponseDetail, type TFilterCondition, type TFilterConditionValue, type THttpMethod, type THttpStatusCode, type TImageEntityType, type TInventoryItemType, type TInventoryRestockOrderStatus, type TInventoryUnitType, type TInvitationStatus, type TJsonObject, type TJsonPrimitive, type TJsonValue, type TLanguage, type TMissingFieldsError, type TMode, type TMonth, type TPropertyStatus, type TPropertyType, type TRateLimitError, type TRecordKeys, type TRecordValue, type TRoomType, type TServerStatus, type TServiceType, type TSeverity, type TSortDirection, type TStatus, type TStoredImageEntityType, type TSubscriptionProvider, type TSubscriptionStatus, type TUSJurisdiction, type TUSStateCode, type TUnknownRecord, type TValidationError, type TVersionInput, type TWorkOrderPriority, type TWorkOrderStatus, type TWorkSessionStatus, type TurndownObject, US_JURISDICTIONS, UnitedStatesJurisdictionOptions, WORK_ORDER_PRIORITY, WORK_ORDER_STATUS, WORK_SESSION_STATUS, addDays, addWeeks, camelCase, capitalize, charCount, chunkArray, cleanFormData, containsAll, containsAny, convertStringBooleans, createPagingObject, daysBetween, deepClone, deletePropertyIfExists, endOfDay, endOfWeek, escapeRegex, extractNumbers, filterArrayById, flatten, formatAddress, formatDate, formatNumber, formatPhoneNumber, fromBase64, getFirstPropertyValue, getNestedValue, getWeekDays, hasOwnProp, hasProperties, hasProperty, highlight, isAuthError, isEmail, isEmpty, isFuture, isMissingFieldsError, isNumeric, isPalindrome, isPast, isRateLimitError, isToday, isUrl, isValidationError, kebabCase, kebabToSpaces, longestWord, lowerCase, normalCase, normalizeSpaces, omitProperties, padEnd, padStart, parseJSON, parseNumber, pascalCase, pluralize, removeDuplicates, removeFormProperties, removeSpecialChars, removeUndefined, removeWhitespace, repeat, repeatChar, replaceNulls, resetPagination, returnObject, reverse, sentenceCase, setNestedValue, slug, snakeCase, snakeCaseToSpaces, sortArrayByProperty, splitMultiple, startOfDay, startOfWeek, stringSimilarity, stripHtml, subtractDays, subtractWeeks, timeAgo, titleCase, toBase64, toCamelCase, toKebabCase, toNumber, toPascalCase, toSnakeCase, truncate, tryCatch, unflatten, upperCase, validPath, wordCount };
|
|
2975
|
+
export { ACCOUNT_STATUS, ACCOUNT_TYPE, AUTH_STATUS, BILLING_PERIOD, CHECKLIST_EXECUTION_STATUS, COMPANY_RELATIONSHIP_STATUS, COMPANY_TYPES, CompanyFilter, DAMAGE_SEVERITY, DAMAGE_STATUS, DATABASE_STATUS, ENVIRONMENT, ERROR_CODES, FilterCondition, HTTP_METHOD, HTTP_STATUS, type IAcceptCompanyInvitationRequest, type IAcceptCompanyInvitationResponse, type IAcceptInvitationRequest, type IAcceptInvitationResponse, type IAcceptInvitationRouteResponse, type IAddChecklistItemRequest, type IAddChecklistItemResponse, type IAddDamageReportCommentRequest, type IAddDamageReportCommentResponse, type IAddDamageReportPhotoRequest, type IAddDamageReportPhotoResponse, type IAddInventoryToPropertyRequest, type IAddInventoryToPropertyResponse, type IAddInventoryToRoomRequest, type IAddInventoryToRoomResponse, type IAddTemplateItemRequest, type IAddTemplateItemResponse, type IAddress, type IApiError, type IApiErrorResponse, type IApiMeta, type IApiResponse, type IApiSuccessResponse, type IAssignDamageReportRequest, type IAssignDamageReportResponse, type IAssignWorkOrderRequest, type IAssignWorkOrderResponse, type IAuthInvitationBaseResponse, type IAuthInvitationIdParams, type IAuthInvitationTokenParams, type IAuthMessageResponse, type IAuthRefreshTokenResponse, type IAuthSession, type IAuthSessionIdParams, type IAuthTokenBundle, type IAuthTokenResponse, type IBooleanFilterCondition, type ICancelWorkSessionRequest, type ICancelWorkSessionResponse, type IChangePasswordRequest, type IChangePasswordResponse, type IChecklistAndItemIdParams, type IChecklistExecution, type IChecklistIdParams, type IChecklistItemCompletion, type IChecklistItemOrder, type IChecklistTemplate, type IChecklistTemplateCompanyRouteParams, type IChecklistTemplateItem, type IChecklistTemplateWithItems, type ICloneChecklistRequest, type ICloneChecklistResponse, type ICompany, type ICompanyIdParams, type ICompanyInvitationIdParams, type ICompanyInvitationSummary, type ICompanyInvitationTokenParams, type ICompanyRouteParams, type ICompanyUserRouteParams, type ICompanyUserSummary, type ICompanyWithRelationshipStatus, type ICompanyWithUsers, type ICompleteChecklistExecutionRequest, type ICompleteChecklistExecutionResponse, type ICompleteChecklistItemInput, type ICompleteExecutionItemRequest, type ICompleteExecutionItemResponse, type ICompleteWorkOrderRequest, type ICompleteWorkOrderResponse, type ICompleteWorkSessionRequest, type ICompleteWorkSessionResponse, type ICountResponse, type ICreateChecklistRequest, type ICreateChecklistResponse, type ICreateCompanyRequest, type ICreateCompanyResponse, type ICreateCustomChecklistRequest, type ICreateCustomChecklistResponse, type ICreateDamageReportInput, type ICreateDamageReportRequest, type ICreateDamageReportResponse, type ICreateInventoryItemRequest, type ICreateInventoryItemResponse, type ICreatePropertyRequest, type ICreatePropertyResponse, type ICreateRestockOrderRequest, type ICreateRestockOrderResponse, type ICreateRoomChecklistInput, type ICreateRoomChecklistItemInput, type ICreateRoomRequest, type ICreateRoomResponse, type ICreateTemplateInput, type ICreateTemplateItemInput, type ICreateTemplateRequest, type ICreateTemplateResponse, type ICreateTemplateWithItemsRequest, type ICreateTemplateWithItemsResponse, type ICreateWorkOrderInput, type ICreateWorkOrderRequest, type ICreateWorkOrderResponse, type ICreateWorkSessionInput, type ICreateWorkSessionRequest, type ICreateWorkSessionResponse, type IDamageComment, type IDamagePhoto, type IDamageReport, type IDamageReportPhoto, type IDamageReportPropertyRouteParams, type IDamageReportRoomRouteParams, type IDamageReportRouteParams, type IDamageReportStatusHistory, type IDamageReportWorkOrderRouteParams, type IDataWithPagingResult, type IDeclineCompanyInvitationRequest, type IDeclineCompanyInvitationResponse, type IDeleteChecklistItemRequest, type IDeleteChecklistItemResponse, type IDeleteChecklistRequest, type IDeleteChecklistResponse, type IDeleteImageRequest, type IDeleteImageResponse, type IDeleteInventoryItemRequest, type IDeleteInventoryItemResponse, type IDeletePropertyRequest, type IDeletePropertyResponse, type IDeleteRoomRequest, type IDeleteRoomResponse, type IDeleteTemplateItemRequest, type IDeleteTemplateItemResponse, type IDeleteTemplateRequest, type IDeleteTemplateResponse, type IDeleteUserRequest, type IDeleteUserResponse, type IDeviceInfo, type IDuplicateTemplateItemRequest, type IDuplicateTemplateItemResponse, type IEmailValidationResult, type IEmptyRouteParams, type IEmptyRouteRequest, type IFilterCondition, type IFilterConditionBase, type IForgotPasswordRequest, type IForgotPasswordResponse, type IGetActiveWorkSessionRequest, type IGetActiveWorkSessionResponse, type IGetChecklistByIdRequest, type IGetChecklistByIdResponse, type IGetChecklistByRoomIdRequest, type IGetChecklistByRoomIdResponse, type IGetChecklistExecutionByIdRequest, type IGetChecklistExecutionByIdResponse, type IGetChecklistExecutionsRequest, type IGetChecklistExecutionsResponse, type IGetChecklistItemsRequest, type IGetChecklistItemsResponse, type IGetChecklistWithItemsRequest, type IGetChecklistWithItemsResponse, type IGetCompaniesQuery, type IGetCompaniesRequest, type IGetCompaniesResponse, type IGetCompanyByIdRequest, type IGetCompanyByIdResponse, type IGetCompanyUsersRequest, type IGetCompanyUsersResponse, type IGetCurrentUserRequest, type IGetCurrentUserResponse, type IGetCustomChecklistItemsRequest, type IGetCustomChecklistItemsResponse, type IGetDamageReportByIdRequest, type IGetDamageReportByIdResponse, type IGetDamageReportCommentsRequest, type IGetDamageReportCommentsResponse, type IGetDamageReportHistoryRequest, type IGetDamageReportHistoryResponse, type IGetDamageReportPhotosRequest, type IGetDamageReportPhotosResponse, type IGetDamageReportsByPropertyIdRequest, type IGetDamageReportsByPropertyIdResponse, type IGetDamageReportsByRoomIdRequest, type IGetDamageReportsByRoomIdResponse, type IGetDetailedHealthRequest, type IGetDetailedHealthResponse, type IGetDetailedRoomsByPropertyIdRequest, type IGetDetailedRoomsByPropertyIdResponse, type IGetExecutionItemsRequest, type IGetExecutionItemsResponse, type IGetExecutionProgressRequest, type IGetExecutionProgressResponse, type IGetHealthRequest, type IGetHealthResponse, type IGetImagesForEntityResponse, type IGetInventoryByCompanyIdRequest, type IGetInventoryByCompanyIdResponse, type IGetInventoryCountsByExecutionIdRequest, type IGetInventoryCountsByExecutionIdResponse, type IGetInventoryItemByIdRequest, type IGetInventoryItemByIdResponse, type IGetLoginHistoryListResponse, type IGetLoginHistoryRequest, type IGetLoginHistoryResponse, type IGetMeRequest, type IGetMeResponse, type IGetPendingCompanyInvitationsRequest, type IGetPendingCompanyInvitationsResponse, type IGetPendingInvitationsListResponse, type IGetPendingInvitationsRequest, type IGetPendingInvitationsResponse, type IGetPropertiesByCompanyIdRequest, type IGetPropertiesByCompanyIdResponse, type IGetPropertiesRequest, type IGetPropertiesResponse, type IGetPropertyAccessInformationRequest, type IGetPropertyAccessInformationResponse, type IGetPropertyByIdRequest, type IGetPropertyByIdResponse, type IGetPropertyInventoryNeedingRestockRequest, type IGetPropertyInventoryNeedingRestockResponse, type IGetPropertyInventoryRequest, type IGetPropertyInventoryResponse, type IGetPropertyResponse, type IGetRestockOrderItemsRequest, type IGetRestockOrderItemsResponse, type IGetRestockOrdersByCompanyIdRequest, type IGetRestockOrdersByCompanyIdResponse, type IGetRoomByIdRequest, type IGetRoomByIdResponse, type IGetRoomInventoryNeedingRestockRequest, type IGetRoomInventoryNeedingRestockResponse, type IGetRoomInventoryRequest, type IGetRoomInventoryResponse, type IGetRoomsByPropertyIdRequest, type IGetRoomsByPropertyIdResponse, type IGetRoomsRequest, type IGetSessionsRequest, type IGetSessionsResponse, type IGetStaffRequest, type IGetStaffResponse, type IGetTemplateByIdRequest, type IGetTemplateByIdResponse, type IGetTemplateItemsRequest, type IGetTemplateItemsResponse, type IGetTemplateUsageRequest, type IGetTemplateUsageResponse, type IGetTemplateWithItemsRequest, type IGetTemplateWithItemsResponse, type IGetTemplatesByCompanyIdRequest, type IGetTemplatesByCompanyIdResponse, type IGetUserByEmailRequest, type IGetUserByEmailResponse, type IGetUserByIdRequest, type IGetUserByIdResponse, type IGetUserCompaniesRequest, type IGetUserCompaniesResponse, type IGetUserResponse, type IGetUsersByAccountTypeRequest, type IGetUsersByAccountTypeResponse, type IGetWorkOrderByIdRequest, type IGetWorkOrderByIdResponse, type IGetWorkOrdersByPropertyIdRequest, type IGetWorkOrdersByPropertyIdResponse, type IGetWorkSessionByIdRequest, type IGetWorkSessionByIdResponse, type IGetWorkSessionWithExecutionsRequest, type IGetWorkSessionWithExecutionsResponse, type IGetWorkSessionsByPropertyIdRequest, type IGetWorkSessionsByPropertyIdResponse, type IGetWorkSessionsByUserIdRequest, type IGetWorkSessionsByUserIdResponse, type IHealthCheckResponse, type IHealthChecks, type IImage, type IImageCompanyRouteParams, type IImagePropertyRouteParams, type IImageRoomRouteParams, type IImageRouteParams, type IImageUserRouteParams, type IImageWithUrl, type IIncludeInactiveQuery, type IIncludeResolvedQuery, type IInventoryCompanyRouteParams, type IInventoryCount, type IInventoryExecutionRouteParams, type IInventoryItem, type IInventoryItemRouteParams, type IInventoryOrderRouteParams, type IInventoryPropertyRouteParams, type IInventoryRestockOrder, type IInventoryRestockOrderItem, type IInventoryRoomRouteParams, type IInviteCompanyToCompanyRequest, type IInviteCompanyToCompanyResponse, type IInviteUserToCompanyRequest, type IInviteUserToCompanyResponse, type IJobFilterValues, type ILimitQuery, type ILoginCredentials, type ILoginRequest, type ILoginResponse, type ILogoutAllRequest, type ILogoutAllResponse, type ILogoutRequest, type ILogoutResponse, IMAGE_ENTITY, IMAGE_ENTITY_TYPE, type IMessageResponse, type IMetaData, type IMissingFieldsErrorDetail, INVENTORY_ITEM_TYPE, INVENTORY_RESTOCK_ORDER_STATUS, INVENTORY_UNITS, INVITATION_STATUS, type INumberFilterCondition, type IPaginationRequest, type IPagingObject, type IPagingResult, type IPasswordValidationResult, type IPasswordValidationRules, type IProperty, type IPropertyAccessFormValues, type IPropertyAccessInformation, type IPropertyAccessItem, type IPropertyBase, type IPropertyDetail, type IPropertyFilterValues, type IPropertyFormValues, type IPropertyIdParams, type IPropertyInventory, type IPropertyJobSummaryItem, type IPropertyMetric, type IPropertyRoomSummaryItem, type IPropertySummary, type IRateLimitErrorDetail, type IRateLimitStatus, type IRecordInventoryCountRequest, type IRecordInventoryCountResponse, type IRefreshSessionRequest, type IRefreshSessionResponse, type IRefreshTokenData, type IRegisterCredentials, type IRegisterRequest, type IRegisterResponse, type IRegisterWithInvitationRequest, type IRegisterWithInvitationResponse, type IReorderChecklistItemsRequest, type IReorderChecklistItemsResponse, type IReorderTemplateItemsRequest, type IReorderTemplateItemsResponse, type IResolveDamageReportRequest, type IResolveDamageReportResponse, type IRestockOrderItemInput, type IRevokeCompanyInvitationRequest, type IRevokeCompanyInvitationResponse, type IRevokeInvitationRequest, type IRevokeInvitationResponse, type IRevokeSessionRequest, type IRevokeSessionResponse, type IRoom, type IRoomChecklist, type IRoomChecklistItem, type IRoomChecklistRoomRouteParams, type IRoomChecklistWithItems, type IRoomInventory, type IRoomInventoryIdParams, type IRoomPropertyRouteParams, type IRoomRouteParams, type ISelectOption, type ISetAuthSessionParams, type ISkipChecklistExecutionRequest, type ISkipChecklistExecutionResponse, type ISortCondition, type IStartChecklistExecutionRequest, type IStartChecklistExecutionResponse, type IStoredAuthSession, type IStringFilterCondition, type ISuccessResponse, type ITemplateAndItemIdParams, type ITemplateIdParams, type ITemplateItemIdParams, type ITemplateItemOrder, type IToggleTemplateActiveRequest, type IToggleTemplateActiveResponse, type ITokenPayload, type ITypedApiError, type IUpdateChecklistItemRequest, type IUpdateChecklistItemResponse, type IUpdateChecklistRequest, type IUpdateChecklistResponse, type IUpdateCompanyRequest, type IUpdateCompanyResponse, type IUpdateDamageReportRequest, type IUpdateDamageReportResponse, type IUpdateDamageReportStatusRequest, type IUpdateDamageReportStatusResponse, type IUpdateInventoryItemRequest, type IUpdateInventoryItemResponse, type IUpdatePropertyAccessInformationRequest, type IUpdatePropertyAccessInformationResponse, type IUpdatePropertyRequest, type IUpdatePropertyResponse, type IUpdateRestockOrderStatusRequest, type IUpdateRestockOrderStatusResponse, type IUpdateRoomInventoryRequest, type IUpdateRoomInventoryResponse, type IUpdateRoomRequest, type IUpdateRoomResponse, type IUpdateTemplateItemRequest, type IUpdateTemplateItemResponse, type IUpdateTemplateRequest, type IUpdateTemplateResponse, type IUpdateUserRequest, type IUpdateUserResponse, type IUpdateWorkOrderRequest, type IUpdateWorkOrderResponse, type IUpdateWorkOrderStatusRequest, type IUpdateWorkOrderStatusResponse, type IUpdateWorkSessionRequest, type IUpdateWorkSessionResponse, type IUploadImagesResponse, type IUploadProfileImageRequest, type IUploadProfileImageResponse, type IUser, type IUserIdParams, type IUserSafe, type IUserSession, type IUserSubscription, type IValidateCompanyInvitationRequest, type IValidateCompanyInvitationResponse, type IValidateInvitationRequest, type IValidateInvitationResponse, type IValidationErrorDetail, type IVersion, type IWeekDay, type IWorkOrder, type IWorkSession, type IWorkSessionExecutionRouteParams, type IWorkSessionPropertyRouteParams, type IWorkSessionRouteParams, type IWorkSessionUserRouteParams, type IWorkSessionWithExecutions, JSONStringify, LANGUAGE, MODE, MONTHS, PROPERTY_STATUS, PROPERTY_TYPES, PropertyStatusOptions, PropertyTypeOptions, ROOM_TYPE, SERVER_STATUS, SERVICE_TYPES, SEVERITY, STATUS, SUBSCRIPTION_PROVIDER, SUBSCRIPTION_STATUS, ServiceTypeOptions, SeverityOptions, SortDirection, StatusOptions, type TAccountStatus, type TAccountType, type TApiErrorDetails, type TAuthStatus, type TBillingPeriod, type TChecklistExecutionStatus, type TCompanyFilter, type TCompanyRelationshipStatus, type TCompanyType, type TDamageSeverity, type TDamageStatus, type TDatabaseStatus, type TDateFormat, type TDateInput, type TDateTimeString, type TEmptyObject, type TEnvironment, type TErrorCode, type TErrorResponseDetail, type TFilterCondition, type TFilterConditionValue, type THttpMethod, type THttpStatusCode, type TImageEntityType, type TInventoryItemType, type TInventoryRestockOrderStatus, type TInventoryUnitType, type TInvitationStatus, type TJsonObject, type TJsonPrimitive, type TJsonValue, type TLanguage, type TMissingFieldsError, type TMode, type TMonth, type TPropertyStatus, type TPropertyType, type TRateLimitError, type TRecordKeys, type TRecordValue, type TRoomType, type TServerStatus, type TServiceType, type TSeverity, type TSortDirection, type TStatus, type TStoredImageEntityType, type TSubscriptionProvider, type TSubscriptionStatus, type TUSJurisdiction, type TUSStateCode, type TUnknownRecord, type TValidationError, type TVersionInput, type TWorkOrderPriority, type TWorkOrderStatus, type TWorkSessionStatus, type TurndownObject, US_JURISDICTIONS, UnitedStatesJurisdictionOptions, WORK_ORDER_PRIORITY, WORK_ORDER_STATUS, WORK_SESSION_STATUS, addDays, addWeeks, camelCase, capitalize, charCount, chunkArray, cleanFormData, containsAll, containsAny, convertStringBooleans, createPagingObject, daysBetween, deepClone, deletePropertyIfExists, endOfDay, endOfWeek, escapeRegex, extractNumbers, filterArrayById, flatten, formatAddress, formatDate, formatNumber, formatPhoneNumber, fromBase64, getFirstPropertyValue, getNestedValue, getWeekDays, hasOwnProp, hasProperties, hasProperty, highlight, isAuthError, isEmail, isEmpty, isFuture, isMissingFieldsError, isNumeric, isPalindrome, isPast, isRateLimitError, isToday, isUrl, isValidationError, kebabCase, kebabToSpaces, longestWord, lowerCase, normalCase, normalizeSpaces, omitProperties, padEnd, padStart, parseJSON, parseNumber, pascalCase, pluralize, removeDuplicates, removeFormProperties, removeSpecialChars, removeUndefined, removeWhitespace, repeat, repeatChar, replaceNulls, resetPagination, returnObject, reverse, sentenceCase, setNestedValue, slug, snakeCase, snakeCaseToSpaces, sortArrayByProperty, splitMultiple, startOfDay, startOfWeek, stringSimilarity, stripHtml, subtractDays, subtractWeeks, timeAgo, titleCase, toBase64, toCamelCase, toKebabCase, toNumber, toPascalCase, toSnakeCase, truncate, tryCatch, unflatten, upperCase, validPath, wordCount };
|