@univerjs-pro/collaboration 0.5.0-nightly.202411121606 → 0.5.0-nightly.202411131606

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.
Files changed (442) hide show
  1. package/lib/cjs/index.js +1 -1
  2. package/lib/es/index.js +1 -1
  3. package/lib/types/command/create-unit.mutation.d.ts +8 -0
  4. package/lib/types/command/revert-revision.mutation.d.ts +6 -0
  5. package/lib/types/controllers/config.schema.d.ts +5 -0
  6. package/lib/types/controllers/doc-transform/algorithms/doc-algo.d.ts +4 -0
  7. package/lib/types/controllers/doc-transform/doc-transform.controller.d.ts +9 -0
  8. package/lib/types/controllers/rev/rev.controller.d.ts +8 -0
  9. package/lib/types/controllers/sheet-transform/algorithms/__tests__/transform-test-bed.d.ts +17 -0
  10. package/lib/types/controllers/sheet-transform/algorithms/add-comment/__test__/add-comment.algo.spec.d.ts +1 -0
  11. package/lib/types/controllers/sheet-transform/algorithms/add-comment/__test__/util.d.ts +13 -0
  12. package/lib/types/controllers/sheet-transform/algorithms/add-comment/add-comment.algo.d.ts +3 -0
  13. package/lib/types/controllers/sheet-transform/algorithms/add-conditional-rule/__test__/add-conditional-rule.algo.spec.d.ts +1 -0
  14. package/lib/types/controllers/sheet-transform/algorithms/add-conditional-rule/add-conditional-formatting-rule.algo.d.ts +3 -0
  15. package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/__test__/add-data-validation.algo.spec.d.ts +1 -0
  16. package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/__test__/update-data-validation.algo.spec.d.ts +1 -0
  17. package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/__test__/util.d.ts +13 -0
  18. package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/add-data-validation.algo.d.ts +16 -0
  19. package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/update-data-validation.algo.d.ts +3 -0
  20. package/lib/types/controllers/sheet-transform/algorithms/add-hyper-link/add-hyper-link.algo.d.ts +3 -0
  21. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-comment.algo.d.ts +4 -0
  22. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-conditional-rule.algo.d.ts +4 -0
  23. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-range-protection.algo.d.ts +3 -0
  24. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-worksheet-merge.algo.d.ts +3 -0
  25. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-worksheet-protection.algo.d.ts +3 -0
  26. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/delete-conditional-formatting-rule.algo.d.ts +4 -0
  27. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/insert-col.algo.d.ts +3 -0
  28. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/insert-row.algo.d.ts +3 -0
  29. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/move-col.algo.d.ts +3 -0
  30. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/move-range.algo.d.ts +3 -0
  31. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/move-row.algo.d.ts +3 -0
  32. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-col.algo.d.ts +3 -0
  33. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-data-validation-rule.algo.d.ts +4 -0
  34. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-numfmt.algo.d.ts +3 -0
  35. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-row.algo.d.ts +3 -0
  36. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-sheet-filter.algo.d.ts +3 -0
  37. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-worksheet-merge.algo.d.ts +3 -0
  38. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-conditional-formatting-rule.algo.d.ts +4 -0
  39. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-frozen.algo.d.ts +3 -0
  40. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-numfmt.algo.d.ts +3 -0
  41. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-range-protection.algo.d.ts +3 -0
  42. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-range-value.algo.d.ts +3 -0
  43. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-worksheet-col-width.algo.d.ts +3 -0
  44. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/update-comment.algo.d.ts +4 -0
  45. package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/update-data-validation-rule.algo.d.ts +4 -0
  46. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
  47. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/insert-col.algo.spec.d.ts +1 -0
  48. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/insert-row.algo.spec.d.ts +1 -0
  49. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/move-col.algo.spec.d.ts +1 -0
  50. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/move-row.algo.spec.d.ts +1 -0
  51. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/remove-col.algo.spec.d.ts +1 -0
  52. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/remove-row.algo.spec.d.ts +1 -0
  53. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  54. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/set-range-values.algo.spec.d.ts +1 -0
  55. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/add-worksheet-merge.algo.d.ts +3 -0
  56. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/insert-col.algo.d.ts +5 -0
  57. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/insert-row.algo.d.ts +5 -0
  58. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/move-col.algo.d.ts +3 -0
  59. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/move-range.algo.d.ts +3 -0
  60. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/move-row.algo.d.ts +3 -0
  61. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/remove-col.algo.d.ts +3 -0
  62. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/remove-row.algo.d.ts +3 -0
  63. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/remove-worksheet-merge.algo.d.ts +3 -0
  64. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/set-range-values.algo.d.ts +3 -0
  65. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/set-selection.algo.d.ts +3 -0
  66. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/utils/merge-tools.d.ts +2 -0
  67. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-comment.algo.d.ts +4 -0
  68. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-conditional-rule.algo.d.ts +4 -0
  69. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-range-protection.algo.d.ts +3 -0
  70. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-worksheet-merge.algo.d.ts +3 -0
  71. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-worksheet-protection.algo.d.ts +3 -0
  72. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/change-sheet-order.algo.d.ts +3 -0
  73. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/delete-conditional-formatting-rule.algo.d.ts +4 -0
  74. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/insert-col.algo.d.ts +3 -0
  75. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/insert-row.algo.d.ts +3 -0
  76. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/move-col.algo.d.ts +3 -0
  77. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/move-range.algo.d.ts +3 -0
  78. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/move-row.algo.d.ts +3 -0
  79. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-col.algo.d.ts +3 -0
  80. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-data-validation-rule.algo.d.ts +4 -0
  81. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-numfmt.algo.d.ts +3 -0
  82. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-row.algo.d.ts +3 -0
  83. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-sheet-filter.algo.d.ts +3 -0
  84. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-worksheet-merge.algo.d.ts +3 -0
  85. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-worksheet.algo.d.ts +3 -0
  86. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-conditional-formatting-rule.algo.d.ts +4 -0
  87. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-frozen.algo.d.ts +3 -0
  88. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-numfmt.algo.d.ts +3 -0
  89. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-range-protection.algo.d.ts +3 -0
  90. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-range-value.algo.d.ts +3 -0
  91. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-worksheet-col-width.algo.d.ts +3 -0
  92. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-worksheet-name.algo.d.ts +3 -0
  93. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/update-comment.algo.d.ts +4 -0
  94. package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/update-data-validation-rule.algo.d.ts +4 -0
  95. package/lib/types/controllers/sheet-transform/algorithms/delete-comment/add-comment.algo.d.ts +3 -0
  96. package/lib/types/controllers/sheet-transform/algorithms/delete-comment/delete-comment.algo.d.ts +3 -0
  97. package/lib/types/controllers/sheet-transform/algorithms/delete-conditional-formatting-rule/delete-conditional-formatting-rule.algo.d.ts +3 -0
  98. package/lib/types/controllers/sheet-transform/algorithms/gridlines/__tests__/gridlines.algo.spec.d.ts +1 -0
  99. package/lib/types/controllers/sheet-transform/algorithms/gridlines/gridlines.algo.d.ts +4 -0
  100. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/add-worksheet-merge.algo.spec.d.ts +1 -0
  101. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/insert-col.algo.spec.d.ts +1 -0
  102. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/move-col.algo.spec.d.ts +1 -0
  103. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/move-range.algo.spec.d.ts +1 -0
  104. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/remove-col.algo.spec.d.ts +1 -0
  105. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/remove-numfmt.algo.spec.d.ts +1 -0
  106. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  107. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-col-data.algo.spec.d.ts +1 -0
  108. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-col-hidden.algo.spec.d.ts +1 -0
  109. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-col-visible.algo.spec.d.ts +1 -0
  110. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-numfmt.algo.spec.d.ts +1 -0
  111. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-range-values.algo.spec.d.ts +1 -0
  112. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-sheets-filter-criteria.algo.spec.d.ts +1 -0
  113. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-sheets-filter-range.algo.spec.d.ts +1 -0
  114. package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-worksheet-col-width.algo.spec.d.ts +1 -0
  115. package/lib/types/controllers/sheet-transform/algorithms/insert-col/add-comment.algo.d.ts +18 -0
  116. package/lib/types/controllers/sheet-transform/algorithms/insert-col/add-data-validation.algo.d.ts +4 -0
  117. package/lib/types/controllers/sheet-transform/algorithms/insert-col/add-worksheet-merge.algo.d.ts +3 -0
  118. package/lib/types/controllers/sheet-transform/algorithms/insert-col/insert-col.algo.d.ts +3 -0
  119. package/lib/types/controllers/sheet-transform/algorithms/insert-col/move-col.algo.d.ts +3 -0
  120. package/lib/types/controllers/sheet-transform/algorithms/insert-col/move-range.algo.d.ts +3 -0
  121. package/lib/types/controllers/sheet-transform/algorithms/insert-col/remove-col.algo.d.ts +3 -0
  122. package/lib/types/controllers/sheet-transform/algorithms/insert-col/remove-numfmt.algo.d.ts +3 -0
  123. package/lib/types/controllers/sheet-transform/algorithms/insert-col/remove-worksheet-merge.algo.d.ts +3 -0
  124. package/lib/types/controllers/sheet-transform/algorithms/insert-col/reorder-range.algo.d.ts +3 -0
  125. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-col-data.algo.d.ts +3 -0
  126. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-col-hidden.algo.d.ts +3 -0
  127. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-col-visible.algo.d.ts +3 -0
  128. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-numfmt.algo.d.ts +3 -0
  129. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-range-values.algo.d.ts +3 -0
  130. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-selection.algo.d.ts +7 -0
  131. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-sheets-filter-criteria.algo.d.ts +4 -0
  132. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-sheets-filter-range.algo.d.ts +4 -0
  133. package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-worksheet-col-width.algo.d.ts +3 -0
  134. package/lib/types/controllers/sheet-transform/algorithms/insert-col/update-comment-ref.algo.d.ts +19 -0
  135. package/lib/types/controllers/sheet-transform/algorithms/insert-col/update-data-validation.algo.d.ts +4 -0
  136. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
  137. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/insert-row.algo.spec.d.ts +1 -0
  138. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/move-range.algo.spec.d.ts +1 -0
  139. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/move-row.algo.spec.d.ts +1 -0
  140. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/remove-numfmt.algo.spec.d.ts +1 -0
  141. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/remove-row.algo.spec.d.ts +1 -0
  142. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  143. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/reorder-range.algo.spec.d.ts +1 -0
  144. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-numfmt.algo.spec.d.ts +1 -0
  145. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-range-values.algo.spec.d.ts +1 -0
  146. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-row-data.algo.spec.d.ts +1 -0
  147. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-row-hidden.algo.spec.d.ts +1 -0
  148. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-row-visible.algo.spec.d.ts +1 -0
  149. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-sheets-filter-range.algo.spec.d.ts +1 -0
  150. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
  151. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-worksheet-row-height.algo.spec.d.ts +1 -0
  152. package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
  153. package/lib/types/controllers/sheet-transform/algorithms/insert-row/add-comment.algo.d.ts +4 -0
  154. package/lib/types/controllers/sheet-transform/algorithms/insert-row/add-data-validation.algo.d.ts +4 -0
  155. package/lib/types/controllers/sheet-transform/algorithms/insert-row/add-worksheet-merge.algo.d.ts +3 -0
  156. package/lib/types/controllers/sheet-transform/algorithms/insert-row/insert-row.algo.d.ts +3 -0
  157. package/lib/types/controllers/sheet-transform/algorithms/insert-row/move-range.algo.d.ts +3 -0
  158. package/lib/types/controllers/sheet-transform/algorithms/insert-row/move-row.algo.d.ts +3 -0
  159. package/lib/types/controllers/sheet-transform/algorithms/insert-row/remove-numfmt.algo.d.ts +3 -0
  160. package/lib/types/controllers/sheet-transform/algorithms/insert-row/remove-row.algo.d.ts +3 -0
  161. package/lib/types/controllers/sheet-transform/algorithms/insert-row/remove-worksheet-merge.algo.d.ts +3 -0
  162. package/lib/types/controllers/sheet-transform/algorithms/insert-row/reorder-range.algo.d.ts +3 -0
  163. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-numfmt.algo.d.ts +3 -0
  164. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-range-values.algo.d.ts +3 -0
  165. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-row-data.algo.d.ts +3 -0
  166. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-row-hidden.algo.d.ts +3 -0
  167. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-row-visible.algo.d.ts +3 -0
  168. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-selection.algo.d.ts +7 -0
  169. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-sheets-filter-range.algo.d.ts +4 -0
  170. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-worksheet-row-auto-height.algo.d.ts +3 -0
  171. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-worksheet-row-height.algo.d.ts +3 -0
  172. package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
  173. package/lib/types/controllers/sheet-transform/algorithms/insert-row/update-comment-ref.algo.d.ts +4 -0
  174. package/lib/types/controllers/sheet-transform/algorithms/insert-row/update-data-validation.algo.d.ts +4 -0
  175. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
  176. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/move-col.algo.spec.d.ts +1 -0
  177. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/move-range.algo.spec.d.ts +1 -0
  178. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/remove-numfmt.algo.spec.d.ts +1 -0
  179. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  180. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-col-custom.algo.spec.d.ts +1 -0
  181. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-col-hidden.algo.spec.d.ts +1 -0
  182. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-col-visible.algo.spec.d.ts +1 -0
  183. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-numfmt.algo.spec.d.ts +1 -0
  184. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-range-values.algo.spec.d.ts +1 -0
  185. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-sheets-filter-criteria.algo.spec.d.ts +1 -0
  186. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-sheets-filter-range.algo.spec.d.ts +1 -0
  187. package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-worksheet-col-width.algo.spec.d.ts +1 -0
  188. package/lib/types/controllers/sheet-transform/algorithms/move-col/add-comment.algo.d.ts +4 -0
  189. package/lib/types/controllers/sheet-transform/algorithms/move-col/add-data-validation.algo.d.ts +6 -0
  190. package/lib/types/controllers/sheet-transform/algorithms/move-col/add-worksheet-merge.algo.d.ts +3 -0
  191. package/lib/types/controllers/sheet-transform/algorithms/move-col/move-col.algo.d.ts +3 -0
  192. package/lib/types/controllers/sheet-transform/algorithms/move-col/move-range.algo.d.ts +3 -0
  193. package/lib/types/controllers/sheet-transform/algorithms/move-col/remove-numfmt.algo.d.ts +3 -0
  194. package/lib/types/controllers/sheet-transform/algorithms/move-col/remove-worksheet-merge.algo.d.ts +3 -0
  195. package/lib/types/controllers/sheet-transform/algorithms/move-col/reorder-range.algo.d.ts +3 -0
  196. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-col-data.algo.d.ts +3 -0
  197. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-col-hidden.algo.d.ts +3 -0
  198. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-col-visible.algo.d.ts +3 -0
  199. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-numfmt.algo.d.ts +3 -0
  200. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-range-values.algo.d.ts +3 -0
  201. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-selection.algo.d.ts +7 -0
  202. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-sheets-filter-criteria.algo.d.ts +4 -0
  203. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-sheets-filter-range.algo.d.ts +4 -0
  204. package/lib/types/controllers/sheet-transform/algorithms/move-col/set-worksheet-col-width.algo.d.ts +3 -0
  205. package/lib/types/controllers/sheet-transform/algorithms/move-col/update-comment-ref.algo.d.ts +4 -0
  206. package/lib/types/controllers/sheet-transform/algorithms/move-col/update-data-validation.algo.d.ts +9 -0
  207. package/lib/types/controllers/sheet-transform/algorithms/move-conditional-formatting-rule/__test__/move-conditional-formatting-rule.algo.algo.spec.d.ts +1 -0
  208. package/lib/types/controllers/sheet-transform/algorithms/move-conditional-formatting-rule/move-conditional-formatting-rule.algo.d.ts +3 -0
  209. package/lib/types/controllers/sheet-transform/algorithms/move-range/add-comment.algo.d.ts +4 -0
  210. package/lib/types/controllers/sheet-transform/algorithms/move-range/add-data-validation.algo.d.ts +4 -0
  211. package/lib/types/controllers/sheet-transform/algorithms/move-range/add-worksheet-merge.algo.d.ts +3 -0
  212. package/lib/types/controllers/sheet-transform/algorithms/move-range/move-range.algo.d.ts +3 -0
  213. package/lib/types/controllers/sheet-transform/algorithms/move-range/remove-numfmt.algo.d.ts +3 -0
  214. package/lib/types/controllers/sheet-transform/algorithms/move-range/reorder-range.algo.d.ts +3 -0
  215. package/lib/types/controllers/sheet-transform/algorithms/move-range/set-numfmt.algo.d.ts +3 -0
  216. package/lib/types/controllers/sheet-transform/algorithms/move-range/update-comment-ref.algo.d.ts +4 -0
  217. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
  218. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/move-range.algo.spec.d.ts +1 -0
  219. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/move-row.algo.spec.d.ts +1 -0
  220. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/remove-numfmt.algo.spec.d.ts +1 -0
  221. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  222. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/reorder-range.algo.spec.d.ts +1 -0
  223. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-numfmt.algo.spec.d.ts +1 -0
  224. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-range-values.algo.spec.d.ts +1 -0
  225. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-row-data.algo.spec.d.ts +1 -0
  226. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-row-hidden.algo.spec.d.ts +1 -0
  227. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-row-visible.algo.spec.d.ts +1 -0
  228. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-sheets-filter-range.algo.spec.d.ts +1 -0
  229. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
  230. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-worksheet-row-height.algo.spec.d.ts +1 -0
  231. package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
  232. package/lib/types/controllers/sheet-transform/algorithms/move-row/add-comment.algo.d.ts +4 -0
  233. package/lib/types/controllers/sheet-transform/algorithms/move-row/add-data-validation.algo.d.ts +4 -0
  234. package/lib/types/controllers/sheet-transform/algorithms/move-row/add-worksheet-merge.algo.d.ts +3 -0
  235. package/lib/types/controllers/sheet-transform/algorithms/move-row/move-range.algo.d.ts +3 -0
  236. package/lib/types/controllers/sheet-transform/algorithms/move-row/move-row.algo.d.ts +3 -0
  237. package/lib/types/controllers/sheet-transform/algorithms/move-row/remove-numfmt.algo.d.ts +3 -0
  238. package/lib/types/controllers/sheet-transform/algorithms/move-row/remove-worksheet-merge.algo.d.ts +3 -0
  239. package/lib/types/controllers/sheet-transform/algorithms/move-row/reorder-range.algo.d.ts +3 -0
  240. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-numfmt.algo.d.ts +3 -0
  241. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-range-values.algo.d.ts +3 -0
  242. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-row-data.algo.d.ts +3 -0
  243. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-row-hidden.algo.d.ts +3 -0
  244. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-row-visible.algo.d.ts +3 -0
  245. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-selection.algo.d.ts +7 -0
  246. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-sheets-filter-range.algo.d.ts +4 -0
  247. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-auto-height.algo.d.ts +3 -0
  248. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-height.algo.d.ts +3 -0
  249. package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
  250. package/lib/types/controllers/sheet-transform/algorithms/move-row/update-comment-ref.algo.d.ts +4 -0
  251. package/lib/types/controllers/sheet-transform/algorithms/move-row/update-data-validation.algo.d.ts +4 -0
  252. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/move-col.algo.spec.d.ts +1 -0
  253. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/move-range.algo.spec.d.ts +1 -0
  254. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/remove-col.algo.spec.d.ts +1 -0
  255. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/remove-numfmt.algo.spec.d.ts +1 -0
  256. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  257. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-col-data.algo.spec.d.ts +1 -0
  258. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-col-hidden.algo.spec.d.ts +1 -0
  259. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-col-visible.algo.spec.d.ts +1 -0
  260. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-numfmt.algo.spec.d.ts +1 -0
  261. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-range-values.algo.spec.d.ts +1 -0
  262. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-sheets-filter-criteria.algo.spec.d.ts +1 -0
  263. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-sheets-filter-range.algo.spec.d.ts +1 -0
  264. package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-worksheet-col-width.algo.spec.d.ts +1 -0
  265. package/lib/types/controllers/sheet-transform/algorithms/remove-col/add-comment.algo.d.ts +4 -0
  266. package/lib/types/controllers/sheet-transform/algorithms/remove-col/add-data-validation.algo.d.ts +4 -0
  267. package/lib/types/controllers/sheet-transform/algorithms/remove-col/add-worksheet-merge.algo.d.ts +3 -0
  268. package/lib/types/controllers/sheet-transform/algorithms/remove-col/move-col.algo.d.ts +3 -0
  269. package/lib/types/controllers/sheet-transform/algorithms/remove-col/move-range.algo.d.ts +3 -0
  270. package/lib/types/controllers/sheet-transform/algorithms/remove-col/remove-col.algo.d.ts +3 -0
  271. package/lib/types/controllers/sheet-transform/algorithms/remove-col/remove-numfmt.algo.d.ts +3 -0
  272. package/lib/types/controllers/sheet-transform/algorithms/remove-col/remove-worksheet-merge.algo.d.ts +3 -0
  273. package/lib/types/controllers/sheet-transform/algorithms/remove-col/reorder-range.algo.d.ts +3 -0
  274. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-col-data.algo.d.ts +3 -0
  275. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-col-hidden.algo.d.ts +3 -0
  276. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-col-visible.algo.d.ts +3 -0
  277. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-numfmt.algo.d.ts +3 -0
  278. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-range-values.algo.d.ts +3 -0
  279. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-selection.algo.d.ts +7 -0
  280. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-sheets-filter-criteria.algo.d.ts +4 -0
  281. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-sheets-filter-range.algo.d.ts +4 -0
  282. package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-worksheet-col-width.algo.d.ts +3 -0
  283. package/lib/types/controllers/sheet-transform/algorithms/remove-col/update-comment-ref.algo.d.ts +4 -0
  284. package/lib/types/controllers/sheet-transform/algorithms/remove-col/update-data-validation.algo.d.ts +4 -0
  285. package/lib/types/controllers/sheet-transform/algorithms/remove-data-validation/__test__/remove-data-validation.algo.spec.d.ts +1 -0
  286. package/lib/types/controllers/sheet-transform/algorithms/remove-data-validation/remove-data-validation.algo.d.ts +3 -0
  287. package/lib/types/controllers/sheet-transform/algorithms/remove-hyper-link/remove-hyper-link.d.ts +3 -0
  288. package/lib/types/controllers/sheet-transform/algorithms/remove-numfmt/remove-numfmt.algo.d.ts +3 -0
  289. package/lib/types/controllers/sheet-transform/algorithms/remove-numfmt/set-numfmt.algo.d.ts +3 -0
  290. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/move-range.algo.spec.d.ts +1 -0
  291. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/move-row.algo.spec.d.ts +1 -0
  292. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/remove-numfmt.algo.spec.d.ts +1 -0
  293. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/remove-row.algo.spec.d.ts +1 -0
  294. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  295. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/reorder-range.algo.spec.d.ts +1 -0
  296. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-numfmt.algo.spec.d.ts +1 -0
  297. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-range-value.algo.spec.d.ts +1 -0
  298. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-row-custom.algo.spec.d.ts +1 -0
  299. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-row-hidden.algo.spec.d.ts +1 -0
  300. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-row-visible.algo.spec.d.ts +1 -0
  301. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
  302. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-worksheet-row-height.algo.spec.d.ts +1 -0
  303. package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
  304. package/lib/types/controllers/sheet-transform/algorithms/remove-row/add-comment.algo.d.ts +4 -0
  305. package/lib/types/controllers/sheet-transform/algorithms/remove-row/add-data-validation.algo.d.ts +4 -0
  306. package/lib/types/controllers/sheet-transform/algorithms/remove-row/add-worksheet-merge.algo.d.ts +3 -0
  307. package/lib/types/controllers/sheet-transform/algorithms/remove-row/move-range.algo.d.ts +3 -0
  308. package/lib/types/controllers/sheet-transform/algorithms/remove-row/move-row.algo.d.ts +3 -0
  309. package/lib/types/controllers/sheet-transform/algorithms/remove-row/remove-numfmt.algo.d.ts +3 -0
  310. package/lib/types/controllers/sheet-transform/algorithms/remove-row/remove-row.algo.d.ts +3 -0
  311. package/lib/types/controllers/sheet-transform/algorithms/remove-row/remove-worksheet-merge.algo.d.ts +3 -0
  312. package/lib/types/controllers/sheet-transform/algorithms/remove-row/reorder-range.algo.d.ts +3 -0
  313. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-numfmt.algo.d.ts +3 -0
  314. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-range-values.algo.d.ts +3 -0
  315. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-row-data.algo.d.ts +3 -0
  316. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-row-hidden.algo.d.ts +3 -0
  317. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-row-visible.algo.d.ts +3 -0
  318. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-selection.algo.d.ts +7 -0
  319. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-sheets-filter-range.algo.d.ts +4 -0
  320. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-worksheet-row-auto-height.algo.d.ts +3 -0
  321. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-worksheet-row-height.algo.d.ts +3 -0
  322. package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
  323. package/lib/types/controllers/sheet-transform/algorithms/remove-row/update-comment-ref.algo.d.ts +4 -0
  324. package/lib/types/controllers/sheet-transform/algorithms/remove-row/update-data-validation.algo.d.ts +4 -0
  325. package/lib/types/controllers/sheet-transform/algorithms/remove-sheets-filter/remove-sheets-filter.algo.d.ts +3 -0
  326. package/lib/types/controllers/sheet-transform/algorithms/remove-sheets-filter/set-sheets-filter-range.algo.d.ts +4 -0
  327. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/__tests__/add-worksheet-merge.algo.spec.d.ts +1 -0
  328. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/__tests__/insert-col.algo.spec.d.ts +1 -0
  329. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/__tests__/insert-row.algo.spec.d.ts +1 -0
  330. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/add-worksheet-merge.algo.d.ts +3 -0
  331. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/insert-col.algo.d.ts +3 -0
  332. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/insert-row.algo.d.ts +3 -0
  333. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/move-col.algo.d.ts +3 -0
  334. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/move-row.algo.d.ts +3 -0
  335. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/remove-col.algo.d.ts +3 -0
  336. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/remove-row.algo.d.ts +3 -0
  337. package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/set-selection.algo.d.ts +3 -0
  338. package/lib/types/controllers/sheet-transform/algorithms/reorder-range/reorder-range.algo.d.ts +3 -0
  339. package/lib/types/controllers/sheet-transform/algorithms/revert-revision/revert-revision.algo.d.ts +4 -0
  340. package/lib/types/controllers/sheet-transform/algorithms/set-col-data/__tests__/set-col-data.algo.spec.d.ts +1 -0
  341. package/lib/types/controllers/sheet-transform/algorithms/set-col-data/set-col-data.algo.d.ts +3 -0
  342. package/lib/types/controllers/sheet-transform/algorithms/set-conditional-formatting-rule/__test__/set-conditional-formatting-rule.algo.spec.d.ts +1 -0
  343. package/lib/types/controllers/sheet-transform/algorithms/set-conditional-formatting-rule/set-conditional-formatting-rule.algo.d.ts +3 -0
  344. package/lib/types/controllers/sheet-transform/algorithms/set-drawing/__tests__/set-drawing-apply.algo.spec.d.ts +1 -0
  345. package/lib/types/controllers/sheet-transform/algorithms/set-drawing/set-drawing-apply.algo.d.ts +3 -0
  346. package/lib/types/controllers/sheet-transform/algorithms/set-frozen/__test__/set-frozen.algo.spec.d.ts +1 -0
  347. package/lib/types/controllers/sheet-transform/algorithms/set-frozen/set-frozen.algo.d.ts +3 -0
  348. package/lib/types/controllers/sheet-transform/algorithms/set-numfmt/__test__/set-numfmt.algo.spec.d.ts +1 -0
  349. package/lib/types/controllers/sheet-transform/algorithms/set-numfmt/remove-numfmt.algo.d.ts +3 -0
  350. package/lib/types/controllers/sheet-transform/algorithms/set-numfmt/set-numfmt.algo.d.ts +3 -0
  351. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-comment.algo.d.ts +4 -0
  352. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-conditional-rule.algo.d.ts +4 -0
  353. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-worksheet-merge.algo.d.ts +3 -0
  354. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-worksheet-protection.algo.d.ts +3 -0
  355. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/delete-conditional-formatting-rule.algo.d.ts +4 -0
  356. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/insert-col.algo.d.ts +3 -0
  357. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/insert-row.algo.d.ts +3 -0
  358. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/move-col.algo.d.ts +3 -0
  359. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/move-range.algo.d.ts +3 -0
  360. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/move-row.algo.d.ts +3 -0
  361. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-col.algo.d.ts +3 -0
  362. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-data-validation-rule.algo.d.ts +4 -0
  363. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-numfmt.algo.d.ts +3 -0
  364. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-row.algo.d.ts +3 -0
  365. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-sheet-filter.algo.d.ts +3 -0
  366. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-worksheet-merge.algo.d.ts +3 -0
  367. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-conditional-formatting-rule.algo.d.ts +4 -0
  368. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-frozen.algo.d.ts +3 -0
  369. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-numfmt.algo.d.ts +3 -0
  370. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-range-protection.algo.d.ts +3 -0
  371. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-range-value.algo.d.ts +3 -0
  372. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-worksheet-col-width.algo.d.ts +3 -0
  373. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/update-comment.algo.d.ts +4 -0
  374. package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/update-data-validation-rule.algo.d.ts +4 -0
  375. package/lib/types/controllers/sheet-transform/algorithms/set-range-values/__test__/reorder-range.algo.spec.d.ts +1 -0
  376. package/lib/types/controllers/sheet-transform/algorithms/set-range-values/__test__/set-range-valuea.algo.spec.d.ts +1 -0
  377. package/lib/types/controllers/sheet-transform/algorithms/set-range-values/add-worksheet-merge.algo.d.ts +3 -0
  378. package/lib/types/controllers/sheet-transform/algorithms/set-range-values/move-range.algo.d.ts +3 -0
  379. package/lib/types/controllers/sheet-transform/algorithms/set-range-values/reorder-range.algo.d.ts +3 -0
  380. package/lib/types/controllers/sheet-transform/algorithms/set-range-values/set-range-values.algo.d.ts +3 -0
  381. package/lib/types/controllers/sheet-transform/algorithms/set-row-data/__tests__/set-row-data.algo.spec.d.ts +1 -0
  382. package/lib/types/controllers/sheet-transform/algorithms/set-row-data/set-row-data.algo.d.ts +3 -0
  383. package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/move-range.algo.d.ts +4 -0
  384. package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/remove-sheets-filter.algo.d.ts +4 -0
  385. package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/set-range-values.algo.d.ts +4 -0
  386. package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/set-sheets-filter-criteria.algo.d.ts +3 -0
  387. package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-range/remove-sheets-filter.algo.d.ts +4 -0
  388. package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-range/set-sheets-filter-range.algo.d.ts +3 -0
  389. package/lib/types/controllers/sheet-transform/algorithms/set-tab-color/__test__/set-tab-color.algo.spec.d.ts +1 -0
  390. package/lib/types/controllers/sheet-transform/algorithms/set-tab-color/set-tab-color.algo.d.ts +3 -0
  391. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-col-width/__tests__/set-worksheet-col-width.algo.spec.d.ts +1 -0
  392. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-col-width/set-worksheet-col-width.algo.d.ts +3 -0
  393. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-name/set-worksheet-name.algo.d.ts +3 -0
  394. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-auto-height/__tests__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
  395. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-auto-height/set-worksheet-row-auto-height.algo.d.ts +3 -0
  396. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-height/__tests__/set-worksheet-row-height.algo.spec.d.ts +1 -0
  397. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-height/set-worksheet-row-height.algo.d.ts +3 -0
  398. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-is-auto-height/__tests__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
  399. package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-is-auto-height/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
  400. package/lib/types/controllers/sheet-transform/algorithms/update-comment/update-comment.algo.d.ts +3 -0
  401. package/lib/types/controllers/sheet-transform/algorithms/update-comment-ref/update-comment-ref.algo.d.ts +3 -0
  402. package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/__test__/add-data-validation.algo.spec.d.ts +1 -0
  403. package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/__test__/remove-data-validation.algo.spec.d.ts +1 -0
  404. package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/__test__/update-data-validation.algo.spec.d.ts +1 -0
  405. package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/add-data-validation.algo.d.ts +3 -0
  406. package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/remove-data-validation.algo.d.ts +3 -0
  407. package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/update-data-validation.algo.d.ts +3 -0
  408. package/lib/types/controllers/sheet-transform/algorithms/update-hyper-link/update-hyper-link.algo.d.ts +3 -0
  409. package/lib/types/controllers/sheet-transform/algorithms/update-hyper-link-ref/update-hyper-link-ref.d.ts +3 -0
  410. package/lib/types/controllers/sheet-transform/algorithms/utils.d.ts +33 -0
  411. package/lib/types/controllers/sheet-transform/algorithms/worksheet/__tests__/add-worksheet-merge.algo.spec.d.ts +1 -0
  412. package/lib/types/controllers/sheet-transform/algorithms/worksheet/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
  413. package/lib/types/controllers/sheet-transform/algorithms/worksheet/__tests__/worksheet.algo.spec.d.ts +1 -0
  414. package/lib/types/controllers/sheet-transform/algorithms/worksheet/add-worksheet-merge.algo.d.ts +2 -0
  415. package/lib/types/controllers/sheet-transform/algorithms/worksheet/remove-worksheet-merge.algo.d.ts +2 -0
  416. package/lib/types/controllers/sheet-transform/algorithms/worksheet/worksheet.algo.d.ts +8 -0
  417. package/lib/types/controllers/sheet-transform/sheet-transform.controller.d.ts +9 -0
  418. package/lib/types/index.d.ts +17 -716
  419. package/lib/types/models/changeset.d.ts +20 -0
  420. package/lib/types/models/collaboration-events.d.ts +235 -0
  421. package/lib/types/models/socket-events.d.ts +53 -0
  422. package/lib/types/plugin.d.ts +10 -0
  423. package/lib/types/services/compose-changesets/compose-changesets.service.d.ts +5 -0
  424. package/lib/types/services/compress-mutation/compress-mutation-service.d.ts +19 -0
  425. package/lib/types/services/compress-mutation/compress-mutations/__test__/set-range-values.spec.d.ts +1 -0
  426. package/lib/types/services/compress-mutation/compress-mutations/set-range-values.d.ts +13 -0
  427. package/lib/types/services/history/type.d.ts +6 -0
  428. package/lib/types/services/rev/__tests__/rev.service.spec.d.ts +18 -0
  429. package/lib/types/services/rev/rev.service.d.ts +23 -0
  430. package/lib/types/services/snapshot/__tests__/snapshot-mock.d.ts +27 -0
  431. package/lib/types/services/snapshot/__tests__/snapshot-transform.spec.d.ts +1 -0
  432. package/lib/types/services/snapshot/__tests__/snapshot.service.spec.d.ts +23 -0
  433. package/lib/types/services/snapshot/snapshot-transform.d.ts +30 -0
  434. package/lib/types/services/snapshot/snapshot-utils.d.ts +15 -0
  435. package/lib/types/services/snapshot/snapshot.service.d.ts +46 -0
  436. package/lib/types/services/transform/__tests__/doc.transform.service.spec.d.ts +1 -0
  437. package/lib/types/services/transform/__tests__/transform.service.spec.d.ts +1 -0
  438. package/lib/types/services/transform/transform.service.d.ts +114 -0
  439. package/lib/types/services/transform/types.d.ts +47 -0
  440. package/lib/types/utils.d.ts +8 -0
  441. package/lib/umd/index.js +1 -1
  442. package/package.json +15 -15
@@ -0,0 +1,3 @@
1
+ import { IAddCommentMutationParams, IDeleteCommentMutationParams } from '@univerjs/thread-comment';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const deleteCommentMutationWithAdd: IMutationTransformAlgorithm<IDeleteCommentMutationParams, IAddCommentMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IDeleteCommentMutationParams } from '@univerjs/thread-comment';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const deleteCommentMutationWithSelf: IMutationTransformAlgorithm<IDeleteCommentMutationParams, IDeleteCommentMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IDeleteConditionalRuleMutationParams } from '@univerjs/sheets-conditional-formatting';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const deleteConditionalFormattingRuleMutationWithSelf: IMutationTransformAlgorithm<IDeleteConditionalRuleMutationParams, IDeleteConditionalRuleMutationParams>;
@@ -0,0 +1,4 @@
1
+ import { IToggleGridlinesMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const ToggleGridlinesWithSelf: IMutationTransformAlgorithm<IToggleGridlinesMutationParams, IToggleGridlinesMutationParams>;
4
+ export declare const GridlinesAlgorithms: Array<IMutationTransformAlgorithm>;
@@ -0,0 +1,18 @@
1
+ import { IInsertColMutationParams } from '@univerjs/sheets';
2
+ import { IAddCommentMutationParams, IUpdateCommentRefMutationParams } from '@univerjs/thread-comment';
3
+ import { ICommandInfo, IMutationInfo } from '@univerjs/core';
4
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
5
+ export declare const transformAddCommentWithRefRange: (m2: IMutationInfo<IAddCommentMutationParams>, command: ICommandInfo) => {
6
+ id: string;
7
+ params: {
8
+ comment: undefined;
9
+ commentId: string;
10
+ unitId: string;
11
+ subUnitId: string;
12
+ sync?: boolean;
13
+ };
14
+ }[] | {
15
+ id: string;
16
+ params: IUpdateCommentRefMutationParams;
17
+ }[];
18
+ export declare const insertColWithAddComment: IMutationTransformAlgorithm<IInsertColMutationParams, IAddCommentMutationParams>;
@@ -0,0 +1,4 @@
1
+ import { IAddDataValidationMutationParams } from '@univerjs/data-validation';
2
+ import { IInsertColMutationParams } from '@univerjs/sheets';
3
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
4
+ export declare const insertColMutationWithAddDataValidation: IMutationTransformAlgorithm<IInsertColMutationParams, IAddDataValidationMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IAddWorksheetMergeMutationParams, IInsertColMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertColMutationWithAddMerge: IMutationTransformAlgorithm<IInsertColMutationParams, IAddWorksheetMergeMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertColMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertColMutationWithSelf: IMutationTransformAlgorithm<IInsertColMutationParams, IInsertColMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertColMutationParams, IMoveColumnsMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertColMutationWithMoveCol: IMutationTransformAlgorithm<IInsertColMutationParams, IMoveColumnsMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertColMutationParams, IMoveRangeMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertColMutationWithMoveRange: IMutationTransformAlgorithm<IInsertColMutationParams, IMoveRangeMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertColMutationParams, IRemoveColMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertColMutationWithRemoveCol: IMutationTransformAlgorithm<IInsertColMutationParams, IRemoveColMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertColMutationParams, IRemoveNumfmtMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertColMutationWithRemoveNumfmt: IMutationTransformAlgorithm<IInsertColMutationParams, IRemoveNumfmtMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertColMutationParams, IRemoveWorksheetMergeMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertColMutationWithRemoveWorksheetMergeMutation: IMutationTransformAlgorithm<IInsertColMutationParams, IRemoveWorksheetMergeMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertColMutationParams, IReorderRangeMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertColMutationWithReorderRange: IMutationTransformAlgorithm<IInsertColMutationParams, IReorderRangeMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertColMutationParams, ISetColDataMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertColMutationWithSetColData: IMutationTransformAlgorithm<IInsertColMutationParams, ISetColDataMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertColMutationParams, ISetColHiddenMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertColMutationWithSetColHidden: IMutationTransformAlgorithm<IInsertColMutationParams, ISetColHiddenMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertColMutationParams, ISetColVisibleMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertColMutationWithSetColVisible: IMutationTransformAlgorithm<IInsertColMutationParams, ISetColVisibleMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertColMutationParams, ISetNumfmtMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertColMutationWithSetNumfmt: IMutationTransformAlgorithm<IInsertColMutationParams, ISetNumfmtMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertColMutationParams, ISetRangeValuesMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertColMutationWithSetRangeValues: IMutationTransformAlgorithm<IInsertColMutationParams, ISetRangeValuesMutationParams>;
@@ -0,0 +1,7 @@
1
+ import { IInsertColMutationParams, ISetSelectionsOperationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ /**
4
+ * The selection transform is a special case of mutation transform which only used at local.
5
+ * In this case, we only need m2Prime to change current selections.
6
+ */
7
+ export declare const insertColMutationWithSetSelection: IMutationTransformAlgorithm<IInsertColMutationParams, ISetSelectionsOperationParams>;
@@ -0,0 +1,4 @@
1
+ import { IInsertColMutationParams } from '@univerjs/sheets';
2
+ import { ISetSheetsFilterCriteriaMutationParams } from '@univerjs/sheets-filter';
3
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
4
+ export declare const insertColMutationWithSetSheetsFilterCriteria: IMutationTransformAlgorithm<IInsertColMutationParams, ISetSheetsFilterCriteriaMutationParams>;
@@ -0,0 +1,4 @@
1
+ import { IInsertColMutationParams } from '@univerjs/sheets';
2
+ import { ISetSheetsFilterRangeMutationParams } from '@univerjs/sheets-filter';
3
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
4
+ export declare const insertColMutationWithSetSheetsFilterRange: IMutationTransformAlgorithm<IInsertColMutationParams, ISetSheetsFilterRangeMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertColMutationParams, ISetWorksheetColWidthMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertColMutationWithSetWorksheetColWidth: IMutationTransformAlgorithm<IInsertColMutationParams, ISetWorksheetColWidthMutationParams>;
@@ -0,0 +1,19 @@
1
+ import { IInsertColMutationParams } from '@univerjs/sheets';
2
+ import { IUpdateCommentRefMutationParams } from '@univerjs/thread-comment';
3
+ import { ICommandInfo, IMutationInfo } from '@univerjs/core';
4
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
5
+ export declare const transformUpdateCommentRefWithRefRange: (m2: IMutationInfo<IUpdateCommentRefMutationParams>, command: ICommandInfo) => {
6
+ id: string;
7
+ params: {
8
+ comment: undefined;
9
+ commentId: string;
10
+ unitId: string;
11
+ subUnitId: string;
12
+ payload: import('@univerjs/thread-comment/commands/mutations/comment.mutation.js').IUpdateCommentRefPayload;
13
+ silent?: boolean;
14
+ };
15
+ }[] | {
16
+ id: string;
17
+ params: IUpdateCommentRefMutationParams;
18
+ }[];
19
+ export declare const insertColWithUpdateCommentRef: IMutationTransformAlgorithm<IInsertColMutationParams, IUpdateCommentRefMutationParams>;
@@ -0,0 +1,4 @@
1
+ import { IUpdateDataValidationMutationParams } from '@univerjs/data-validation';
2
+ import { IInsertColMutationParams } from '@univerjs/sheets';
3
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
4
+ export declare const insertColMutationWithUpdateDataValidation: IMutationTransformAlgorithm<IInsertColMutationParams, IUpdateDataValidationMutationParams>;
@@ -0,0 +1,4 @@
1
+ import { IInsertRowMutationParams } from '@univerjs/sheets';
2
+ import { IAddCommentMutationParams } from '@univerjs/thread-comment';
3
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
4
+ export declare const insertRowWithAddComment: IMutationTransformAlgorithm<IInsertRowMutationParams, IAddCommentMutationParams>;
@@ -0,0 +1,4 @@
1
+ import { IAddDataValidationMutationParams } from '@univerjs/data-validation';
2
+ import { IInsertRowMutationParams } from '@univerjs/sheets';
3
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
4
+ export declare const insertRowMutationWithAddDataValidation: IMutationTransformAlgorithm<IInsertRowMutationParams, IAddDataValidationMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IAddWorksheetMergeMutationParams, IInsertRowMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithAddMerge: IMutationTransformAlgorithm<IInsertRowMutationParams, IAddWorksheetMergeMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertRowMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithSelf: IMutationTransformAlgorithm<IInsertRowMutationParams, IInsertRowMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertRowMutationParams, IMoveRangeMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithMoveRange: IMutationTransformAlgorithm<IInsertRowMutationParams, IMoveRangeMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertRowMutationParams, IMoveRowsMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithMoveRow: IMutationTransformAlgorithm<IInsertRowMutationParams, IMoveRowsMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertRowMutationParams, IRemoveNumfmtMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithRemoveNumfmt: IMutationTransformAlgorithm<IInsertRowMutationParams, IRemoveNumfmtMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertRowMutationParams, IRemoveRowsMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithRemoveRow: IMutationTransformAlgorithm<IInsertRowMutationParams, IRemoveRowsMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertRowMutationParams, IRemoveWorksheetMergeMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithRemoveWorksheetMergeMutation: IMutationTransformAlgorithm<IInsertRowMutationParams, IRemoveWorksheetMergeMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertRowMutationParams, IReorderRangeMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithReorderRange: IMutationTransformAlgorithm<IInsertRowMutationParams, IReorderRangeMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertRowMutationParams, ISetNumfmtMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithSetNumfmt: IMutationTransformAlgorithm<IInsertRowMutationParams, ISetNumfmtMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertRowMutationParams, ISetRangeValuesMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithSetRangeValues: IMutationTransformAlgorithm<IInsertRowMutationParams, ISetRangeValuesMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertRowMutationParams, ISetRowDataMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithSetRowData: IMutationTransformAlgorithm<IInsertRowMutationParams, ISetRowDataMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertRowMutationParams, ISetRowHiddenMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithSetRowHidden: IMutationTransformAlgorithm<IInsertRowMutationParams, ISetRowHiddenMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertRowMutationParams, ISetRowVisibleMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithSetRowVisible: IMutationTransformAlgorithm<IInsertRowMutationParams, ISetRowVisibleMutationParams>;
@@ -0,0 +1,7 @@
1
+ import { IInsertRowMutationParams, ISetSelectionsOperationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ /**
4
+ * The selection transform is a special case of mutation transform which only used at local.
5
+ * In this case, we only need m2Prime to change current selections.
6
+ */
7
+ export declare const insertRowMutationWithSetSelection: IMutationTransformAlgorithm<IInsertRowMutationParams, ISetSelectionsOperationParams>;
@@ -0,0 +1,4 @@
1
+ import { IInsertRowMutationParams } from '@univerjs/sheets';
2
+ import { ISetSheetsFilterRangeMutationParams } from '@univerjs/sheets-filter';
3
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
4
+ export declare const insertRowMutationWithSetSheetsFilterRange: IMutationTransformAlgorithm<IInsertRowMutationParams, ISetSheetsFilterRangeMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertRowMutationParams, ISetWorksheetRowAutoHeightMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithSetWorksheetRowAutoHeight: IMutationTransformAlgorithm<IInsertRowMutationParams, ISetWorksheetRowAutoHeightMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertRowMutationParams, ISetWorksheetRowHeightMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithSetWorksheetRowHeight: IMutationTransformAlgorithm<IInsertRowMutationParams, ISetWorksheetRowHeightMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IInsertRowMutationParams, ISetWorksheetRowIsAutoHeightMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const insertRowMutationWithSetWorksheetRowIsAutoHeight: IMutationTransformAlgorithm<IInsertRowMutationParams, ISetWorksheetRowIsAutoHeightMutationParams>;
@@ -0,0 +1,4 @@
1
+ import { IInsertRowMutationParams } from '@univerjs/sheets';
2
+ import { IUpdateCommentRefMutationParams } from '@univerjs/thread-comment';
3
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
4
+ export declare const insertRowWithUpdateCommentRef: IMutationTransformAlgorithm<IInsertRowMutationParams, IUpdateCommentRefMutationParams>;
@@ -0,0 +1,4 @@
1
+ import { IUpdateDataValidationMutationParams } from '@univerjs/data-validation';
2
+ import { IInsertRowMutationParams } from '@univerjs/sheets';
3
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
4
+ export declare const insertRowMutationWithUpdateDataValidation: IMutationTransformAlgorithm<IInsertRowMutationParams, IUpdateDataValidationMutationParams>;
@@ -0,0 +1,4 @@
1
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
2
+ import { IMoveColumnsMutationParams } from '@univerjs/sheets';
3
+ import { IAddCommentMutationParams } from '@univerjs/thread-comment';
4
+ export declare const moveColWithAddComment: IMutationTransformAlgorithm<IMoveColumnsMutationParams, IAddCommentMutationParams>;
@@ -0,0 +1,6 @@
1
+ import { IMoveColumnsMutationParams } from '@univerjs/sheets';
2
+ import { IAddDataValidationMutationParams } from '@univerjs/data-validation';
3
+ import { ICommandInfo, IMutationInfo } from '@univerjs/core';
4
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
5
+ export declare function transformAddDataValidationWithRefRange(m: IMutationInfo<IAddDataValidationMutationParams>, command: ICommandInfo): IMutationInfo<object>[];
6
+ export declare const moveColMutationWithAddDataValidation: IMutationTransformAlgorithm<IMoveColumnsMutationParams, IAddDataValidationMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IAddWorksheetMergeMutationParams, IMoveColumnsMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const moveColMutationWithAddMerge: IMutationTransformAlgorithm<IMoveColumnsMutationParams, IAddWorksheetMergeMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IMoveColumnsMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const moveColMutationWithSelf: IMutationTransformAlgorithm<IMoveColumnsMutationParams, IMoveColumnsMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IMoveColumnsMutationParams, IMoveRangeMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const moveColMutationWithMoveRange: IMutationTransformAlgorithm<IMoveColumnsMutationParams, IMoveRangeMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IMoveColumnsMutationParams, IRemoveNumfmtMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const moveColMutationWithRemoveNumfmt: IMutationTransformAlgorithm<IMoveColumnsMutationParams, IRemoveNumfmtMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IMoveColumnsMutationParams, IRemoveWorksheetMergeMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const moveColMutationWithRemoveWorksheetMerge: IMutationTransformAlgorithm<IMoveColumnsMutationParams, IRemoveWorksheetMergeMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IMoveColumnsMutationParams, IReorderRangeMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const moveColMutationWithReorderRange: IMutationTransformAlgorithm<IMoveColumnsMutationParams, IReorderRangeMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IMoveColumnsMutationParams, ISetColDataMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const moveColMutationWithSetColData: IMutationTransformAlgorithm<IMoveColumnsMutationParams, ISetColDataMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IMoveColumnsMutationParams, ISetColHiddenMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const moveColMutationWithSetColHidden: IMutationTransformAlgorithm<IMoveColumnsMutationParams, ISetColHiddenMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IMoveColumnsMutationParams, ISetColVisibleMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const moveColMutationWithSetColVisible: IMutationTransformAlgorithm<IMoveColumnsMutationParams, ISetColVisibleMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IMoveColumnsMutationParams, ISetNumfmtMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const moveColMutationWithSetNumfmt: IMutationTransformAlgorithm<IMoveColumnsMutationParams, ISetNumfmtMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IMoveColumnsMutationParams, ISetRangeValuesMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const moveColMutationWithSetRangeValues: IMutationTransformAlgorithm<IMoveColumnsMutationParams, ISetRangeValuesMutationParams>;
@@ -0,0 +1,7 @@
1
+ import { IMoveColumnsMutationParams, ISetSelectionsOperationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ /**
4
+ * The selection transform is a special case of mutation transform which only used at local.
5
+ * In this case, we only need m2Prime to change current selections.
6
+ */
7
+ export declare const moveColMutationWithSetSelection: IMutationTransformAlgorithm<IMoveColumnsMutationParams, ISetSelectionsOperationParams>;
@@ -0,0 +1,4 @@
1
+ import { IMoveColumnsMutationParams } from '@univerjs/sheets';
2
+ import { ISetSheetsFilterCriteriaMutationParams } from '@univerjs/sheets-filter';
3
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
4
+ export declare const moveColMutationWithSetSheetsFilterCriteria: IMutationTransformAlgorithm<IMoveColumnsMutationParams, ISetSheetsFilterCriteriaMutationParams>;
@@ -0,0 +1,4 @@
1
+ import { IMoveColumnsMutationParams } from '@univerjs/sheets';
2
+ import { ISetSheetsFilterRangeMutationParams } from '@univerjs/sheets-filter';
3
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
4
+ export declare const moveColMutationWithSetSheetsFilterRange: IMutationTransformAlgorithm<IMoveColumnsMutationParams, ISetSheetsFilterRangeMutationParams>;
@@ -0,0 +1,3 @@
1
+ import { IMoveColumnsMutationParams, ISetWorksheetColWidthMutationParams } from '@univerjs/sheets';
2
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
3
+ export declare const moveColMutationWithSetWorksheetColWidth: IMutationTransformAlgorithm<IMoveColumnsMutationParams, ISetWorksheetColWidthMutationParams>;
@@ -0,0 +1,4 @@
1
+ import { IMoveColumnsMutationParams } from '@univerjs/sheets';
2
+ import { IUpdateCommentRefMutationParams } from '@univerjs/thread-comment';
3
+ import { IMutationTransformAlgorithm } from '../../../../services/transform/transform.service';
4
+ export declare const moveColsWithUpdateCommentRef: IMutationTransformAlgorithm<IMoveColumnsMutationParams, IUpdateCommentRefMutationParams>;