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