@turndown/library 0.1.59 → 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 -50
- package/dist/index.d.ts +140 -50
- 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,19 +863,19 @@ interface IUser extends IMetaData {
|
|
|
858
863
|
username: string | null;
|
|
859
864
|
email: string;
|
|
860
865
|
profilePhoto: string | null;
|
|
861
|
-
companyId
|
|
862
|
-
passwordHash
|
|
863
|
-
loginAttempts
|
|
864
|
-
locked
|
|
866
|
+
companyId: string | null;
|
|
867
|
+
passwordHash: string | null;
|
|
868
|
+
loginAttempts: number;
|
|
869
|
+
locked: boolean;
|
|
865
870
|
passwordLastReset: TDateTimeString | null;
|
|
866
|
-
passwordResetRequired
|
|
871
|
+
passwordResetRequired: boolean;
|
|
867
872
|
lastLogin: TDateTimeString | null;
|
|
868
873
|
accountType: TAccountType;
|
|
869
874
|
status: TAccountStatus;
|
|
870
875
|
phoneNumber: string | null;
|
|
871
876
|
phoneFormat: string | null;
|
|
872
877
|
preferredLanguage: TLanguage | null;
|
|
873
|
-
biometrics
|
|
878
|
+
biometrics: string | null;
|
|
874
879
|
}
|
|
875
880
|
type IUserSafe = Omit<IUser, "passwordLastReset" | "lastLogin" | "passwordHash" | "loginAttempts" | "biometrics">;
|
|
876
881
|
interface IDeviceInfo {
|
|
@@ -924,7 +929,7 @@ interface ILoginRequest {
|
|
|
924
929
|
deviceInfo?: IDeviceInfo;
|
|
925
930
|
}
|
|
926
931
|
interface ILoginResponse extends IAuthTokenResponse {
|
|
927
|
-
passwordResetRequired
|
|
932
|
+
passwordResetRequired: boolean;
|
|
928
933
|
}
|
|
929
934
|
interface IRefreshSessionRequest {
|
|
930
935
|
refreshToken: string;
|
|
@@ -976,7 +981,7 @@ interface IGetLoginHistoryResponse {
|
|
|
976
981
|
ipAddress: string;
|
|
977
982
|
userAgent: string;
|
|
978
983
|
success: boolean;
|
|
979
|
-
failureReason
|
|
984
|
+
failureReason: string | null;
|
|
980
985
|
createdAt: TDateTimeString;
|
|
981
986
|
}
|
|
982
987
|
interface IGetLoginHistoryListResponse {
|
|
@@ -1057,7 +1062,7 @@ interface IStoredAuthSession {
|
|
|
1057
1062
|
}
|
|
1058
1063
|
interface IAuthTokenResponse extends IAuthTokenBundle {
|
|
1059
1064
|
user: IUserSafe | null;
|
|
1060
|
-
companyId
|
|
1065
|
+
companyId: string | null;
|
|
1061
1066
|
}
|
|
1062
1067
|
interface IAuthSession {
|
|
1063
1068
|
user: IUserSafe | null;
|
|
@@ -1098,7 +1103,7 @@ interface IRateLimitStatus {
|
|
|
1098
1103
|
isLimited: boolean;
|
|
1099
1104
|
attempts: number;
|
|
1100
1105
|
maxAttempts: number;
|
|
1101
|
-
resetTime
|
|
1106
|
+
resetTime: TDateTimeString | null;
|
|
1102
1107
|
}
|
|
1103
1108
|
|
|
1104
1109
|
interface IChecklistTemplateCompanyRouteParams {
|
|
@@ -1117,8 +1122,10 @@ interface ITemplateAndItemIdParams {
|
|
|
1117
1122
|
interface IIncludeInactiveQuery {
|
|
1118
1123
|
includeInactive?: string;
|
|
1119
1124
|
}
|
|
1120
|
-
interface ICreateTemplateRequest
|
|
1125
|
+
interface ICreateTemplateRequest {
|
|
1121
1126
|
name: string;
|
|
1127
|
+
description?: string;
|
|
1128
|
+
isActive?: boolean;
|
|
1122
1129
|
}
|
|
1123
1130
|
interface ICreateTemplateResponse extends IChecklistTemplate {
|
|
1124
1131
|
}
|
|
@@ -1138,7 +1145,10 @@ interface IGetTemplateWithItemsRequest extends ITemplateIdParams {
|
|
|
1138
1145
|
}
|
|
1139
1146
|
interface IGetTemplateWithItemsResponse extends IChecklistTemplateWithItems {
|
|
1140
1147
|
}
|
|
1141
|
-
interface IUpdateTemplateRequest
|
|
1148
|
+
interface IUpdateTemplateRequest {
|
|
1149
|
+
name?: string;
|
|
1150
|
+
description?: string | null;
|
|
1151
|
+
isActive?: boolean;
|
|
1142
1152
|
}
|
|
1143
1153
|
interface IUpdateTemplateResponse extends IChecklistTemplate {
|
|
1144
1154
|
}
|
|
@@ -1163,7 +1173,13 @@ interface IAddTemplateItemRequest extends ICreateTemplateItemInput {
|
|
|
1163
1173
|
}
|
|
1164
1174
|
interface IAddTemplateItemResponse extends IChecklistTemplateItem {
|
|
1165
1175
|
}
|
|
1166
|
-
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;
|
|
1167
1183
|
}
|
|
1168
1184
|
interface IUpdateTemplateItemResponse extends IChecklistTemplateItem {
|
|
1169
1185
|
}
|
|
@@ -1215,7 +1231,7 @@ interface IChecklistTemplateWithItems extends IChecklistTemplate {
|
|
|
1215
1231
|
*/
|
|
1216
1232
|
interface ICreateTemplateInput {
|
|
1217
1233
|
name: string;
|
|
1218
|
-
description?: string
|
|
1234
|
+
description?: string;
|
|
1219
1235
|
companyId: string;
|
|
1220
1236
|
createdBy: string;
|
|
1221
1237
|
isActive?: boolean;
|
|
@@ -1225,11 +1241,11 @@ interface ICreateTemplateInput {
|
|
|
1225
1241
|
*/
|
|
1226
1242
|
interface ICreateTemplateItemInput {
|
|
1227
1243
|
title: string;
|
|
1228
|
-
description?: string
|
|
1244
|
+
description?: string;
|
|
1229
1245
|
displayOrder: number;
|
|
1230
1246
|
requiresPhoto?: boolean;
|
|
1231
1247
|
isRequired?: boolean;
|
|
1232
|
-
estimatedTimeMinutes?: number
|
|
1248
|
+
estimatedTimeMinutes?: number;
|
|
1233
1249
|
}
|
|
1234
1250
|
|
|
1235
1251
|
interface ICompanyRouteParams {
|
|
@@ -1258,14 +1274,14 @@ interface IGetCompaniesQuery {
|
|
|
1258
1274
|
interface ICreateCompanyRequest {
|
|
1259
1275
|
displayName: string;
|
|
1260
1276
|
addressLine1: string;
|
|
1261
|
-
addressLine2?: string
|
|
1277
|
+
addressLine2?: string;
|
|
1262
1278
|
city: string;
|
|
1263
1279
|
stateCode: TUSStateCode;
|
|
1264
1280
|
postalCode: string;
|
|
1265
1281
|
companyType: ICompany["companyType"];
|
|
1266
|
-
country?: string
|
|
1267
|
-
timezone?: string
|
|
1268
|
-
imageUrl?: string
|
|
1282
|
+
country?: string;
|
|
1283
|
+
timezone?: string;
|
|
1284
|
+
imageUrl?: string;
|
|
1269
1285
|
}
|
|
1270
1286
|
interface ICreateCompanyResponse extends ICompanyWithRelationshipStatus {
|
|
1271
1287
|
}
|
|
@@ -1832,7 +1848,20 @@ interface IRoomInventoryIdParams {
|
|
|
1832
1848
|
interface IInventoryOrderRouteParams {
|
|
1833
1849
|
orderId: string;
|
|
1834
1850
|
}
|
|
1835
|
-
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;
|
|
1836
1865
|
}
|
|
1837
1866
|
interface ICreateInventoryItemResponse extends IInventoryItem {
|
|
1838
1867
|
}
|
|
@@ -1851,7 +1880,15 @@ interface IDeleteInventoryItemResponse extends IMessageResponse {
|
|
|
1851
1880
|
interface IGetInventoryByCompanyIdRequest extends IInventoryCompanyRouteParams {
|
|
1852
1881
|
}
|
|
1853
1882
|
type IGetInventoryByCompanyIdResponse = IInventoryItem[];
|
|
1854
|
-
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;
|
|
1855
1892
|
}
|
|
1856
1893
|
interface IAddInventoryToPropertyResponse extends IPropertyInventory {
|
|
1857
1894
|
}
|
|
@@ -1861,7 +1898,15 @@ type IGetPropertyInventoryResponse = IPropertyInventory[];
|
|
|
1861
1898
|
interface IGetPropertyInventoryNeedingRestockRequest extends IInventoryPropertyRouteParams {
|
|
1862
1899
|
}
|
|
1863
1900
|
type IGetPropertyInventoryNeedingRestockResponse = IPropertyInventory[];
|
|
1864
|
-
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;
|
|
1865
1910
|
}
|
|
1866
1911
|
interface IAddInventoryToRoomResponse extends IRoomInventory {
|
|
1867
1912
|
}
|
|
@@ -1875,7 +1920,17 @@ interface IUpdateRoomInventoryResponse extends IRoomInventory {
|
|
|
1875
1920
|
interface IGetRoomInventoryNeedingRestockRequest extends IInventoryRoomRouteParams {
|
|
1876
1921
|
}
|
|
1877
1922
|
type IGetRoomInventoryNeedingRestockResponse = IRoomInventory[];
|
|
1878
|
-
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;
|
|
1879
1934
|
}
|
|
1880
1935
|
interface IRecordInventoryCountResponse extends IInventoryCount {
|
|
1881
1936
|
}
|
|
@@ -1891,11 +1946,11 @@ interface IRestockOrderItemInput {
|
|
|
1891
1946
|
}
|
|
1892
1947
|
interface ICreateRestockOrderRequest {
|
|
1893
1948
|
companyId: string;
|
|
1894
|
-
orderedBy?: string
|
|
1895
|
-
orderNumber?: string
|
|
1896
|
-
expectedDelivery?:
|
|
1897
|
-
supplierInfo?: string
|
|
1898
|
-
notes?: string
|
|
1949
|
+
orderedBy?: string;
|
|
1950
|
+
orderNumber?: string;
|
|
1951
|
+
expectedDelivery?: TDateTimeString;
|
|
1952
|
+
supplierInfo?: string;
|
|
1953
|
+
notes?: string;
|
|
1899
1954
|
items: IRestockOrderItemInput[];
|
|
1900
1955
|
}
|
|
1901
1956
|
interface ICreateRestockOrderResponse extends IInventoryRestockOrder {
|
|
@@ -1908,7 +1963,7 @@ interface IGetRestockOrderItemsRequest extends IInventoryOrderRouteParams {
|
|
|
1908
1963
|
type IGetRestockOrderItemsResponse = IInventoryRestockOrderItem[];
|
|
1909
1964
|
interface IUpdateRestockOrderStatusRequest {
|
|
1910
1965
|
status: TInventoryRestockOrderStatus;
|
|
1911
|
-
receivedBy?: string
|
|
1966
|
+
receivedBy?: string;
|
|
1912
1967
|
}
|
|
1913
1968
|
interface IUpdateRestockOrderStatusResponse extends IInventoryRestockOrder {
|
|
1914
1969
|
}
|
|
@@ -2048,18 +2103,31 @@ interface ICreatePropertyRequest {
|
|
|
2048
2103
|
propertyType: TPropertyType;
|
|
2049
2104
|
status?: TPropertyStatus;
|
|
2050
2105
|
addressLine1: string;
|
|
2051
|
-
addressLine2?: string
|
|
2106
|
+
addressLine2?: string;
|
|
2052
2107
|
city: string;
|
|
2053
2108
|
stateCode: TUSStateCode;
|
|
2054
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;
|
|
2055
2125
|
country?: string | null;
|
|
2056
2126
|
sqft?: number | null;
|
|
2057
2127
|
timezone?: string | null;
|
|
2058
2128
|
imageUrl?: string | null;
|
|
2059
2129
|
specialNotes?: string | null;
|
|
2060
2130
|
}
|
|
2061
|
-
interface IUpdatePropertyRequest extends Partial<Omit<ICreatePropertyRequest, "companyId">> {
|
|
2062
|
-
}
|
|
2063
2131
|
interface IGetPropertiesRequest {
|
|
2064
2132
|
companyId?: string;
|
|
2065
2133
|
}
|
|
@@ -2076,7 +2144,14 @@ interface IUpdatePropertyResponse extends IPropertyDetail {
|
|
|
2076
2144
|
}
|
|
2077
2145
|
interface IDeletePropertyResponse extends IMessageResponse {
|
|
2078
2146
|
}
|
|
2079
|
-
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;
|
|
2080
2155
|
}
|
|
2081
2156
|
interface IUpdatePropertyAccessInformationResponse extends IPropertyAccessInformation {
|
|
2082
2157
|
}
|
|
@@ -2231,10 +2306,10 @@ interface IRoomRouteParams {
|
|
|
2231
2306
|
interface ICreateRoomRequest {
|
|
2232
2307
|
propertyId: string;
|
|
2233
2308
|
displayName: string;
|
|
2234
|
-
description?: string
|
|
2235
|
-
checklistTemplateId?: string
|
|
2309
|
+
description?: string;
|
|
2310
|
+
checklistTemplateId?: string;
|
|
2236
2311
|
roomType?: IRoom["roomType"];
|
|
2237
|
-
heroPhoto?: string
|
|
2312
|
+
heroPhoto?: string;
|
|
2238
2313
|
}
|
|
2239
2314
|
interface ICreateRoomResponse extends IRoom {
|
|
2240
2315
|
}
|
|
@@ -2251,7 +2326,12 @@ interface IGetRoomByIdRequest extends IRoomRouteParams {
|
|
|
2251
2326
|
}
|
|
2252
2327
|
interface IGetRoomByIdResponse extends IRoom {
|
|
2253
2328
|
}
|
|
2254
|
-
interface IUpdateRoomRequest
|
|
2329
|
+
interface IUpdateRoomRequest {
|
|
2330
|
+
displayName?: string;
|
|
2331
|
+
description?: string | null;
|
|
2332
|
+
checklistTemplateId?: string | null;
|
|
2333
|
+
roomType?: IRoom["roomType"];
|
|
2334
|
+
heroPhoto?: string | null;
|
|
2255
2335
|
}
|
|
2256
2336
|
interface IUpdateRoomResponse extends IRoom {
|
|
2257
2337
|
}
|
|
@@ -2321,7 +2401,10 @@ interface IGetChecklistWithItemsRequest extends IChecklistIdParams {
|
|
|
2321
2401
|
}
|
|
2322
2402
|
interface IGetChecklistWithItemsResponse extends IRoomChecklistWithItems {
|
|
2323
2403
|
}
|
|
2324
|
-
interface IUpdateChecklistRequest
|
|
2404
|
+
interface IUpdateChecklistRequest {
|
|
2405
|
+
templateId?: string | null;
|
|
2406
|
+
name?: string;
|
|
2407
|
+
isActive?: boolean;
|
|
2325
2408
|
}
|
|
2326
2409
|
interface IUpdateChecklistResponse extends IRoomChecklist {
|
|
2327
2410
|
}
|
|
@@ -2346,7 +2429,14 @@ interface IAddChecklistItemRequest extends ICreateRoomChecklistItemInput {
|
|
|
2346
2429
|
}
|
|
2347
2430
|
interface IAddChecklistItemResponse extends IRoomChecklistItem {
|
|
2348
2431
|
}
|
|
2349
|
-
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;
|
|
2350
2440
|
}
|
|
2351
2441
|
interface IUpdateChecklistItemResponse extends IRoomChecklistItem {
|
|
2352
2442
|
}
|
|
@@ -2388,7 +2478,7 @@ interface IRoomChecklistWithItems extends IRoomChecklist {
|
|
|
2388
2478
|
*/
|
|
2389
2479
|
interface ICreateRoomChecklistInput {
|
|
2390
2480
|
roomId: string;
|
|
2391
|
-
templateId?: string
|
|
2481
|
+
templateId?: string;
|
|
2392
2482
|
name: string;
|
|
2393
2483
|
isActive?: boolean;
|
|
2394
2484
|
}
|
|
@@ -2397,11 +2487,11 @@ interface ICreateRoomChecklistInput {
|
|
|
2397
2487
|
*/
|
|
2398
2488
|
interface ICreateRoomChecklistItemInput {
|
|
2399
2489
|
title: string;
|
|
2400
|
-
description?: string
|
|
2490
|
+
description?: string;
|
|
2401
2491
|
displayOrder: number;
|
|
2402
2492
|
requiresPhoto?: boolean;
|
|
2403
2493
|
isRequired?: boolean;
|
|
2404
|
-
estimatedTimeMinutes?: number
|
|
2494
|
+
estimatedTimeMinutes?: number;
|
|
2405
2495
|
isCustom?: boolean;
|
|
2406
2496
|
}
|
|
2407
2497
|
|
|
@@ -2882,4 +2972,4 @@ type Failure<E> = {
|
|
|
2882
2972
|
type Result<T, E = unknown> = Success<T> | Failure<E>;
|
|
2883
2973
|
declare const tryCatch: <T, E = unknown>(callback: () => T | Promise<T>) => Promise<Result<T, E>>;
|
|
2884
2974
|
|
|
2885
|
-
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 };
|