@turndown/library 0.1.45 → 0.1.48
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -640,6 +640,7 @@ declare const SEVERITY: {
|
|
|
640
640
|
type TSeverity = TRecordValue<typeof SEVERITY>;
|
|
641
641
|
declare const SeverityOptions: ISelectOption<TSeverity>[];
|
|
642
642
|
declare const SERVICE_TYPES: {
|
|
643
|
+
readonly Property: "Property";
|
|
643
644
|
readonly Cleaning: "Cleaning";
|
|
644
645
|
readonly Maintenance: "Maintenance";
|
|
645
646
|
readonly Inspection: "Inspections";
|
|
@@ -802,7 +803,6 @@ interface IUserSafe extends Omit<IUser, "passwordHash" | "loginAttempts" | "biom
|
|
|
802
803
|
declare const ACCOUNT_TYPE: {
|
|
803
804
|
readonly TURNDOWN_ADMIN: "TURNDOWN_ADMIN";
|
|
804
805
|
readonly ACCOUNT_ADMIN: "ACCOUNT_ADMIN";
|
|
805
|
-
readonly MANAGER: "MANAGER";
|
|
806
806
|
readonly STAFF: "STAFF";
|
|
807
807
|
readonly GUEST: "GUEST";
|
|
808
808
|
};
|
|
@@ -1248,7 +1248,7 @@ interface ICreateCompanyRequest {
|
|
|
1248
1248
|
addressLine1: string;
|
|
1249
1249
|
addressLine2?: string;
|
|
1250
1250
|
city: string;
|
|
1251
|
-
stateCode:
|
|
1251
|
+
stateCode: TUSStateCode;
|
|
1252
1252
|
postalCode: string;
|
|
1253
1253
|
companyType: TCompanyType;
|
|
1254
1254
|
}
|
|
@@ -2008,12 +2008,12 @@ interface ICompanyIdParams {
|
|
|
2008
2008
|
interface ICreatePropertyRequest {
|
|
2009
2009
|
companyId: string;
|
|
2010
2010
|
displayName: string;
|
|
2011
|
-
propertyType:
|
|
2012
|
-
status?:
|
|
2011
|
+
propertyType: TPropertyType;
|
|
2012
|
+
status?: TPropertyStatus;
|
|
2013
2013
|
addressLine1: string;
|
|
2014
2014
|
addressLine2?: string;
|
|
2015
2015
|
city: string;
|
|
2016
|
-
stateCode:
|
|
2016
|
+
stateCode: TUSStateCode;
|
|
2017
2017
|
postalCode: string;
|
|
2018
2018
|
country?: string;
|
|
2019
2019
|
sqft?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -640,6 +640,7 @@ declare const SEVERITY: {
|
|
|
640
640
|
type TSeverity = TRecordValue<typeof SEVERITY>;
|
|
641
641
|
declare const SeverityOptions: ISelectOption<TSeverity>[];
|
|
642
642
|
declare const SERVICE_TYPES: {
|
|
643
|
+
readonly Property: "Property";
|
|
643
644
|
readonly Cleaning: "Cleaning";
|
|
644
645
|
readonly Maintenance: "Maintenance";
|
|
645
646
|
readonly Inspection: "Inspections";
|
|
@@ -802,7 +803,6 @@ interface IUserSafe extends Omit<IUser, "passwordHash" | "loginAttempts" | "biom
|
|
|
802
803
|
declare const ACCOUNT_TYPE: {
|
|
803
804
|
readonly TURNDOWN_ADMIN: "TURNDOWN_ADMIN";
|
|
804
805
|
readonly ACCOUNT_ADMIN: "ACCOUNT_ADMIN";
|
|
805
|
-
readonly MANAGER: "MANAGER";
|
|
806
806
|
readonly STAFF: "STAFF";
|
|
807
807
|
readonly GUEST: "GUEST";
|
|
808
808
|
};
|
|
@@ -1248,7 +1248,7 @@ interface ICreateCompanyRequest {
|
|
|
1248
1248
|
addressLine1: string;
|
|
1249
1249
|
addressLine2?: string;
|
|
1250
1250
|
city: string;
|
|
1251
|
-
stateCode:
|
|
1251
|
+
stateCode: TUSStateCode;
|
|
1252
1252
|
postalCode: string;
|
|
1253
1253
|
companyType: TCompanyType;
|
|
1254
1254
|
}
|
|
@@ -2008,12 +2008,12 @@ interface ICompanyIdParams {
|
|
|
2008
2008
|
interface ICreatePropertyRequest {
|
|
2009
2009
|
companyId: string;
|
|
2010
2010
|
displayName: string;
|
|
2011
|
-
propertyType:
|
|
2012
|
-
status?:
|
|
2011
|
+
propertyType: TPropertyType;
|
|
2012
|
+
status?: TPropertyStatus;
|
|
2013
2013
|
addressLine1: string;
|
|
2014
2014
|
addressLine2?: string;
|
|
2015
2015
|
city: string;
|
|
2016
|
-
stateCode:
|
|
2016
|
+
stateCode: TUSStateCode;
|
|
2017
2017
|
postalCode: string;
|
|
2018
2018
|
country?: string;
|
|
2019
2019
|
sqft?: number;
|
package/dist/index.mjs
CHANGED
|
@@ -1247,6 +1247,7 @@ var SeverityOptions = Object.values(SEVERITY).map((severity) => ({
|
|
|
1247
1247
|
value: severity
|
|
1248
1248
|
}));
|
|
1249
1249
|
var SERVICE_TYPES = {
|
|
1250
|
+
Property: "Property",
|
|
1250
1251
|
Cleaning: "Cleaning",
|
|
1251
1252
|
Maintenance: "Maintenance",
|
|
1252
1253
|
Inspection: "Inspections",
|
|
@@ -1414,7 +1415,6 @@ var BILLING_PERIOD = {
|
|
|
1414
1415
|
var ACCOUNT_TYPE = {
|
|
1415
1416
|
TURNDOWN_ADMIN: "TURNDOWN_ADMIN",
|
|
1416
1417
|
ACCOUNT_ADMIN: "ACCOUNT_ADMIN",
|
|
1417
|
-
MANAGER: "MANAGER",
|
|
1418
1418
|
STAFF: "STAFF",
|
|
1419
1419
|
GUEST: "GUEST"
|
|
1420
1420
|
};
|