sodas-sdk 1.5.1 → 1.5.2

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.
@@ -80,5 +80,6 @@ declare class ValidationTemplate extends GOVERNANCE_MODEL {
80
80
  */
81
81
  static stringifyValidationRulesToEscapedString(rules: ValidationRule[]): string;
82
82
  get rules(): ValidationRule[];
83
+ get escapedRules(): string;
83
84
  }
84
85
  export default ValidationTemplate;
@@ -5229,6 +5229,9 @@ class ValidationTemplate extends _governanceClass__WEBPACK_IMPORTED_MODULE_3__["
5229
5229
  get rules() {
5230
5230
  return this.ValidationRules;
5231
5231
  }
5232
+ get escapedRules() {
5233
+ return ValidationTemplate.stringifyValidationRulesToEscapedString(this.rules);
5234
+ }
5232
5235
  }
5233
5236
  /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (ValidationTemplate);
5234
5237