ecotransac-shared-js 1.1.43 → 1.1.44
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.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -779,10 +779,10 @@ declare const not: (condition: string | Condition) => Condition;
|
|
|
779
779
|
declare const or: (...conditions: (string | Condition)[]) => Condition;
|
|
780
780
|
declare const and: (...conditions: (string | Condition)[]) => Condition;
|
|
781
781
|
|
|
782
|
-
declare const featuresFormFields: Field<Property
|
|
783
|
-
declare const technicalFormFields: Field<Property
|
|
784
|
-
declare const surfacesFormFields: Field<Property
|
|
785
|
-
declare const propertyFields: Field<Property
|
|
782
|
+
declare const featuresFormFields: Field<Partial<Property>>[];
|
|
783
|
+
declare const technicalFormFields: Field<Partial<Property>>[];
|
|
784
|
+
declare const surfacesFormFields: Field<Partial<Property>>[];
|
|
785
|
+
declare const propertyFields: Field<Partial<Property>>[];
|
|
786
786
|
|
|
787
787
|
declare const CONDITIONS: SelectOption<PropertyCondition>[];
|
|
788
788
|
declare const STANDINGS: SelectOption<PropertyStanding>[];
|
package/dist/index.d.ts
CHANGED
|
@@ -779,10 +779,10 @@ declare const not: (condition: string | Condition) => Condition;
|
|
|
779
779
|
declare const or: (...conditions: (string | Condition)[]) => Condition;
|
|
780
780
|
declare const and: (...conditions: (string | Condition)[]) => Condition;
|
|
781
781
|
|
|
782
|
-
declare const featuresFormFields: Field<Property
|
|
783
|
-
declare const technicalFormFields: Field<Property
|
|
784
|
-
declare const surfacesFormFields: Field<Property
|
|
785
|
-
declare const propertyFields: Field<Property
|
|
782
|
+
declare const featuresFormFields: Field<Partial<Property>>[];
|
|
783
|
+
declare const technicalFormFields: Field<Partial<Property>>[];
|
|
784
|
+
declare const surfacesFormFields: Field<Partial<Property>>[];
|
|
785
|
+
declare const propertyFields: Field<Partial<Property>>[];
|
|
786
786
|
|
|
787
787
|
declare const CONDITIONS: SelectOption<PropertyCondition>[];
|
|
788
788
|
declare const STANDINGS: SelectOption<PropertyStanding>[];
|