kui-crm_actions 0.0.97 → 0.0.98
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/cjs/index.js +0 -8
- package/cjs/index.js.map +1 -1
- package/index.d.ts +0 -6
- package/index.js +1 -9
- package/index.js.map +1 -1
- package/package.json +1 -1
package/cjs/index.js
CHANGED
@@ -804,14 +804,6 @@ var SecurityApartmentInfoFieldsSchema = {
|
|
804
804
|
intercomCode: kuiCrm.fieldWithConditionSchema("hasIntercom"),
|
805
805
|
hasGate: yup__namespace.string().required("This field is required"),
|
806
806
|
gateCode: kuiCrm.fieldWithConditionSchema("hasGate"),
|
807
|
-
parkingType: yup__namespace.string().nullable(),
|
808
|
-
parkingNumber: yup__namespace
|
809
|
-
.string()
|
810
|
-
.when("parkingType", {
|
811
|
-
is: function (value) { return !!value; },
|
812
|
-
then: function (rule) { return rule.required(kuiCrm.defaultRequiredMessage); },
|
813
|
-
})
|
814
|
-
.nullable(),
|
815
807
|
};
|
816
808
|
var SecurityApartmentInfoStepSchema = yup__namespace.object(SecurityApartmentInfoFieldsSchema);
|
817
809
|
|