@turndown/library 0.1.31 → 0.1.45
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 +0 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -5
- package/dist/index.d.ts +4 -5
- package/dist/index.mjs +0 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -3
package/dist/index.d.cts
CHANGED
|
@@ -640,7 +640,6 @@ 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";
|
|
644
643
|
readonly Cleaning: "Cleaning";
|
|
645
644
|
readonly Maintenance: "Maintenance";
|
|
646
645
|
readonly Inspection: "Inspections";
|
|
@@ -1249,7 +1248,7 @@ interface ICreateCompanyRequest {
|
|
|
1249
1248
|
addressLine1: string;
|
|
1250
1249
|
addressLine2?: string;
|
|
1251
1250
|
city: string;
|
|
1252
|
-
stateCode:
|
|
1251
|
+
stateCode: string;
|
|
1253
1252
|
postalCode: string;
|
|
1254
1253
|
companyType: TCompanyType;
|
|
1255
1254
|
}
|
|
@@ -2009,12 +2008,12 @@ interface ICompanyIdParams {
|
|
|
2009
2008
|
interface ICreatePropertyRequest {
|
|
2010
2009
|
companyId: string;
|
|
2011
2010
|
displayName: string;
|
|
2012
|
-
propertyType:
|
|
2013
|
-
status?:
|
|
2011
|
+
propertyType: string;
|
|
2012
|
+
status?: string;
|
|
2014
2013
|
addressLine1: string;
|
|
2015
2014
|
addressLine2?: string;
|
|
2016
2015
|
city: string;
|
|
2017
|
-
stateCode:
|
|
2016
|
+
stateCode: string;
|
|
2018
2017
|
postalCode: string;
|
|
2019
2018
|
country?: string;
|
|
2020
2019
|
sqft?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -640,7 +640,6 @@ 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";
|
|
644
643
|
readonly Cleaning: "Cleaning";
|
|
645
644
|
readonly Maintenance: "Maintenance";
|
|
646
645
|
readonly Inspection: "Inspections";
|
|
@@ -1249,7 +1248,7 @@ interface ICreateCompanyRequest {
|
|
|
1249
1248
|
addressLine1: string;
|
|
1250
1249
|
addressLine2?: string;
|
|
1251
1250
|
city: string;
|
|
1252
|
-
stateCode:
|
|
1251
|
+
stateCode: string;
|
|
1253
1252
|
postalCode: string;
|
|
1254
1253
|
companyType: TCompanyType;
|
|
1255
1254
|
}
|
|
@@ -2009,12 +2008,12 @@ interface ICompanyIdParams {
|
|
|
2009
2008
|
interface ICreatePropertyRequest {
|
|
2010
2009
|
companyId: string;
|
|
2011
2010
|
displayName: string;
|
|
2012
|
-
propertyType:
|
|
2013
|
-
status?:
|
|
2011
|
+
propertyType: string;
|
|
2012
|
+
status?: string;
|
|
2014
2013
|
addressLine1: string;
|
|
2015
2014
|
addressLine2?: string;
|
|
2016
2015
|
city: string;
|
|
2017
|
-
stateCode:
|
|
2016
|
+
stateCode: string;
|
|
2018
2017
|
postalCode: string;
|
|
2019
2018
|
country?: string;
|
|
2020
2019
|
sqft?: number;
|
package/dist/index.mjs
CHANGED