@divkitframework/jsonbuilder 29.11.0 → 29.12.0

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.
@@ -4797,13 +4797,13 @@ interface IDivPatch {
4797
4797
  /**
4798
4798
  * Element changes.
4799
4799
  */
4800
- changes: Type<NonEmptyArray<IDivPatchChange>>;
4800
+ changes: NonEmptyArray<IDivPatchChange>;
4801
4801
  /**
4802
4802
  * Procedure for applying changes:`transactional` — if an error occurs during application of at
4803
4803
  * least one element, the changes aren't applied.`partial` — all possible changes are applied. If
4804
4804
  * there are errors, they are reported.
4805
4805
  */
4806
- mode?: Type<DivPatchMode | DivExpression>;
4806
+ mode?: DivPatchMode | DivExpression;
4807
4807
  }
4808
4808
  declare type DivPatchMode = 'transactional' | 'partial';
4809
4809
  interface IDivPatchChange {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@divkitframework/jsonbuilder",
3
- "version": "29.11.0",
3
+ "version": "29.12.0",
4
4
  "description": "DivKit TypeScript JSON Builder",
5
5
  "main": "./dist/jsonbuilder.js",
6
6
  "module": "./dist/es/jsonbuilder.js",