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