@univerjs-pro/collaboration 0.5.0-nightly.202411120616 → 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.
- package/lib/cjs/index.js +1 -1
- package/lib/es/index.js +1 -1
- package/lib/types/command/create-unit.mutation.d.ts +8 -0
- package/lib/types/command/revert-revision.mutation.d.ts +6 -0
- package/lib/types/controllers/config.schema.d.ts +5 -0
- package/lib/types/controllers/doc-transform/algorithms/doc-algo.d.ts +4 -0
- package/lib/types/controllers/doc-transform/doc-transform.controller.d.ts +9 -0
- package/lib/types/controllers/rev/rev.controller.d.ts +8 -0
- package/lib/types/controllers/sheet-transform/algorithms/__tests__/transform-test-bed.d.ts +17 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-comment/__test__/add-comment.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-comment/__test__/util.d.ts +13 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-comment/add-comment.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-conditional-rule/__test__/add-conditional-rule.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-conditional-rule/add-conditional-formatting-rule.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/__test__/add-data-validation.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/__test__/update-data-validation.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/__test__/util.d.ts +13 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/add-data-validation.algo.d.ts +16 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-data-validation/update-data-validation.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-hyper-link/add-hyper-link.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-conditional-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-range-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/add-worksheet-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/delete-conditional-formatting-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/insert-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/insert-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-data-validation-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-sheet-filter.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-conditional-formatting-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-frozen.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-range-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-range-value.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/set-worksheet-col-width.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/update-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-range-protection/update-data-validation-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/insert-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/insert-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/move-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/move-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/remove-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/remove-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/__test__/set-range-values.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/insert-col.algo.d.ts +5 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/insert-row.algo.d.ts +5 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/remove-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/remove-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/set-selection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-merge/utils/merge-tools.d.ts +2 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-conditional-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-range-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/add-worksheet-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/change-sheet-order.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/delete-conditional-formatting-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/insert-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/insert-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-data-validation-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-sheet-filter.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/remove-worksheet.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-conditional-formatting-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-frozen.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-range-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-range-value.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-worksheet-col-width.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/set-worksheet-name.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/update-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/add-worksheet-protection/update-data-validation-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/delete-comment/add-comment.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/delete-comment/delete-comment.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/delete-conditional-formatting-rule/delete-conditional-formatting-rule.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/gridlines/__tests__/gridlines.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/gridlines/gridlines.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/add-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/insert-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/move-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/move-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/remove-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/remove-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-col-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-col-hidden.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-col-visible.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-range-values.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-sheets-filter-criteria.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-sheets-filter-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/__tests__/set-worksheet-col-width.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/add-comment.algo.d.ts +18 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/add-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/insert-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/remove-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-col-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-col-hidden.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-col-visible.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-selection.algo.d.ts +7 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-sheets-filter-criteria.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-sheets-filter-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/set-worksheet-col-width.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/update-comment-ref.algo.d.ts +19 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-col/update-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/insert-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/move-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/move-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/remove-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/remove-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/reorder-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-range-values.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-row-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-row-hidden.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-row-visible.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-sheets-filter-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-worksheet-row-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/__test__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/add-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/insert-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/remove-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-row-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-row-hidden.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-row-visible.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-selection.algo.d.ts +7 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-sheets-filter-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-worksheet-row-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-worksheet-row-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/update-comment-ref.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/insert-row/update-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/move-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/move-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/remove-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-col-custom.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-col-hidden.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-col-visible.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-range-values.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-sheets-filter-criteria.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-sheets-filter-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/__test__/set-worksheet-col-width.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/add-data-validation.algo.d.ts +6 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-col-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-col-hidden.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-col-visible.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-selection.algo.d.ts +7 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-sheets-filter-criteria.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-sheets-filter-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/set-worksheet-col-width.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/update-comment-ref.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-col/update-data-validation.algo.d.ts +9 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-conditional-formatting-rule/__test__/move-conditional-formatting-rule.algo.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-conditional-formatting-rule/move-conditional-formatting-rule.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/add-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-range/update-comment-ref.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/add-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/move-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/move-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/remove-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/reorder-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-range-values.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-row-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-row-hidden.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-row-visible.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-sheets-filter-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-worksheet-row-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/__test__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/add-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-row-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-row-hidden.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-row-visible.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-selection.algo.d.ts +7 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-sheets-filter-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/update-comment-ref.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/move-row/update-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/move-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/move-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/remove-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/remove-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-col-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-col-hidden.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-col-visible.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-range-values.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-sheets-filter-criteria.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-sheets-filter-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/__tests__/set-worksheet-col-width.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/add-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/remove-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-col-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-col-hidden.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-col-visible.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-selection.algo.d.ts +7 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-sheets-filter-criteria.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-sheets-filter-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/set-worksheet-col-width.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/update-comment-ref.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-col/update-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-data-validation/__test__/remove-data-validation.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-data-validation/remove-data-validation.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-hyper-link/remove-hyper-link.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-numfmt/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-numfmt/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/move-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/move-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/remove-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/remove-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/reorder-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-range-value.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-row-custom.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-row-hidden.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-row-visible.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-worksheet-row-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/__tests__/set-worksheet-row-is-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/add-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/remove-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-row-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-row-hidden.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-row-visible.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-selection.algo.d.ts +7 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-sheets-filter-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-worksheet-row-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-worksheet-row-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/update-comment-ref.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-row/update-data-validation.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-sheets-filter/remove-sheets-filter.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-sheets-filter/set-sheets-filter-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/__tests__/add-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/__tests__/insert-col.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/__tests__/insert-row.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/insert-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/insert-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/remove-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/remove-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/remove-worksheet-merge/set-selection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/reorder-range/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/revert-revision/revert-revision.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-col-data/__tests__/set-col-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-col-data/set-col-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-conditional-formatting-rule/__test__/set-conditional-formatting-rule.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-conditional-formatting-rule/set-conditional-formatting-rule.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-drawing/__tests__/set-drawing-apply.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-drawing/set-drawing-apply.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-frozen/__test__/set-frozen.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-frozen/set-frozen.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-numfmt/__test__/set-numfmt.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-numfmt/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-numfmt/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-conditional-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/add-worksheet-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/delete-conditional-formatting-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/insert-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/insert-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/move-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/move-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-col.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-data-validation-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-row.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-sheet-filter.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/remove-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-conditional-formatting-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-frozen.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-numfmt.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-range-protection.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-range-value.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/set-worksheet-col-width.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/update-comment.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-protection/update-data-validation-rule.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-values/__test__/reorder-range.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-values/__test__/set-range-valuea.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-values/add-worksheet-merge.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-values/move-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-values/reorder-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-range-values/set-range-values.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-row-data/__tests__/set-row-data.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-row-data/set-row-data.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/move-range.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/remove-sheets-filter.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/set-range-values.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-criteria/set-sheets-filter-criteria.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-range/remove-sheets-filter.algo.d.ts +4 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-sheets-filter-range/set-sheets-filter-range.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-tab-color/__test__/set-tab-color.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-tab-color/set-tab-color.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-col-width/__tests__/set-worksheet-col-width.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-col-width/set-worksheet-col-width.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-name/set-worksheet-name.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-auto-height/__tests__/set-worksheet-row-auto-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-auto-height/set-worksheet-row-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-height/__tests__/set-worksheet-row-height.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-height/set-worksheet-row-height.algo.d.ts +3 -0
- 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
- package/lib/types/controllers/sheet-transform/algorithms/set-worksheet-row-is-auto-height/set-worksheet-row-is-auto-height.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-comment/update-comment.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-comment-ref/update-comment-ref.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/__test__/add-data-validation.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/__test__/remove-data-validation.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/__test__/update-data-validation.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/add-data-validation.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/remove-data-validation.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-data-validation/update-data-validation.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-hyper-link/update-hyper-link.algo.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/update-hyper-link-ref/update-hyper-link-ref.d.ts +3 -0
- package/lib/types/controllers/sheet-transform/algorithms/utils.d.ts +33 -0
- package/lib/types/controllers/sheet-transform/algorithms/worksheet/__tests__/add-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/worksheet/__tests__/remove-worksheet-merge.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/worksheet/__tests__/worksheet.algo.spec.d.ts +1 -0
- package/lib/types/controllers/sheet-transform/algorithms/worksheet/add-worksheet-merge.algo.d.ts +2 -0
- package/lib/types/controllers/sheet-transform/algorithms/worksheet/remove-worksheet-merge.algo.d.ts +2 -0
- package/lib/types/controllers/sheet-transform/algorithms/worksheet/worksheet.algo.d.ts +8 -0
- package/lib/types/controllers/sheet-transform/sheet-transform.controller.d.ts +9 -0
- package/lib/types/index.d.ts +17 -716
- package/lib/types/models/changeset.d.ts +20 -0
- package/lib/types/models/collaboration-events.d.ts +235 -0
- package/lib/types/models/socket-events.d.ts +53 -0
- package/lib/types/plugin.d.ts +10 -0
- package/lib/types/services/compose-changesets/compose-changesets.service.d.ts +5 -0
- package/lib/types/services/compress-mutation/compress-mutation-service.d.ts +19 -0
- package/lib/types/services/compress-mutation/compress-mutations/__test__/set-range-values.spec.d.ts +1 -0
- package/lib/types/services/compress-mutation/compress-mutations/set-range-values.d.ts +13 -0
- package/lib/types/services/history/type.d.ts +6 -0
- package/lib/types/services/rev/__tests__/rev.service.spec.d.ts +18 -0
- package/lib/types/services/rev/rev.service.d.ts +23 -0
- package/lib/types/services/snapshot/__tests__/snapshot-mock.d.ts +27 -0
- package/lib/types/services/snapshot/__tests__/snapshot-transform.spec.d.ts +1 -0
- package/lib/types/services/snapshot/__tests__/snapshot.service.spec.d.ts +23 -0
- package/lib/types/services/snapshot/snapshot-transform.d.ts +30 -0
- package/lib/types/services/snapshot/snapshot-utils.d.ts +15 -0
- package/lib/types/services/snapshot/snapshot.service.d.ts +46 -0
- package/lib/types/services/transform/__tests__/doc.transform.service.spec.d.ts +1 -0
- package/lib/types/services/transform/__tests__/transform.service.spec.d.ts +1 -0
- package/lib/types/services/transform/transform.service.d.ts +114 -0
- package/lib/types/services/transform/types.d.ts +47 -0
- package/lib/types/utils.d.ts +8 -0
- package/lib/umd/index.js +1 -1
- package/package.json +15 -15
package/lib/types/index.d.ts
CHANGED
|
@@ -1,716 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import { ICopyFileMetaResponse } from '@univerjs/protocol';
|
|
19
|
-
import { ICreateHistoryRequest } from '@univerjs/protocol';
|
|
20
|
-
import { ICreateHistoryResponse } from '@univerjs/protocol';
|
|
21
|
-
import { IdentifierDecorator } from '@wendellhu/redi';
|
|
22
|
-
import { IDeserializedSheetBlock } from '@univerjs/protocol';
|
|
23
|
-
import { IDocumentData } from '@univerjs/core';
|
|
24
|
-
import { IFetchMissingChangesetsRequest } from '@univerjs/protocol';
|
|
25
|
-
import { IFetchMissingChangesetsResponse } from '@univerjs/protocol';
|
|
26
|
-
import { IGetDeserializedSheetBlockResponse } from '@univerjs/protocol';
|
|
27
|
-
import { IGetLatestCsReqIdBySidRequest } from '@univerjs/protocol';
|
|
28
|
-
import { IGetLatestCsReqIdBySidResponse } from '@univerjs/protocol';
|
|
29
|
-
import { IGetResourcesRequest } from '@univerjs/protocol';
|
|
30
|
-
import { IGetResourcesResponse } from '@univerjs/protocol';
|
|
31
|
-
import { IGetSheetBlockRequest } from '@univerjs/protocol';
|
|
32
|
-
import { IGetSheetBlockResponse } from '@univerjs/protocol';
|
|
33
|
-
import { IGetUnitOnRevRequest } from '@univerjs/protocol';
|
|
34
|
-
import { IGetUnitOnRevResponse } from '@univerjs/protocol';
|
|
35
|
-
import { IInterceptor } from '@univerjs/core';
|
|
36
|
-
import { ILiveShareNewHost } from '@univerjs/protocol';
|
|
37
|
-
import { ILiveShareOperation } from '@univerjs/protocol';
|
|
38
|
-
import { ILiveShareRequestHost } from '@univerjs/protocol';
|
|
39
|
-
import { ILiveShareTerminate } from '@univerjs/protocol';
|
|
40
|
-
import { IMutation } from '@univerjs/protocol';
|
|
41
|
-
import { IMutation as IMutation_2 } from '@univerjs/core';
|
|
42
|
-
import { IMutationInfo } from '@univerjs/core';
|
|
43
|
-
import { Injector } from '@univerjs/core';
|
|
44
|
-
import { InterceptorManager } from '@univerjs/core';
|
|
45
|
-
import { IResourceManagerService } from '@univerjs/core';
|
|
46
|
-
import { ISaveChangesetRequest } from '@univerjs/protocol';
|
|
47
|
-
import { ISaveChangesetResponse } from '@univerjs/protocol';
|
|
48
|
-
import { ISaveSheetBlockRequest } from '@univerjs/protocol';
|
|
49
|
-
import { ISaveSheetBlockResponse } from '@univerjs/protocol';
|
|
50
|
-
import { ISaveSnapshotRequest } from '@univerjs/protocol';
|
|
51
|
-
import { ISaveSnapshotResponse } from '@univerjs/protocol';
|
|
52
|
-
import { ISheetBlock } from '@univerjs/protocol';
|
|
53
|
-
import { IShouldCloseConn } from '@univerjs/protocol';
|
|
54
|
-
import { ISnapshot } from '@univerjs/protocol';
|
|
55
|
-
import { IUniverInstanceService } from '@univerjs/core';
|
|
56
|
-
import { IUpdateCursor } from '@univerjs/protocol';
|
|
57
|
-
import { IUpdatePermissionObj } from '@univerjs/protocol';
|
|
58
|
-
import { IWorkbookData } from '@univerjs/core';
|
|
59
|
-
import { Plugin as Plugin_2 } from '@univerjs/core';
|
|
60
|
-
import { UniverInstanceType } from '@univerjs/core';
|
|
61
|
-
import { UniverType } from '@univerjs/protocol';
|
|
62
|
-
import { Workbook } from '@univerjs/core';
|
|
63
|
-
|
|
64
|
-
export declare function b64DecodeUnicode(str: string): string;
|
|
65
|
-
|
|
66
|
-
export declare function b64EncodeUnicode(str: string): string;
|
|
67
|
-
|
|
68
|
-
/**
|
|
69
|
-
* Types of all possible collaboration events.
|
|
70
|
-
*
|
|
71
|
-
* CollaborationEvents is a subset of `CombEvent.RECV`.
|
|
72
|
-
*/
|
|
73
|
-
export declare enum CollaborationEvent {
|
|
74
|
-
/**
|
|
75
|
-
* When the collaboration session is created, the client may send this event to the server.
|
|
76
|
-
* In the payload, the client will tell the server the its local revision. The server
|
|
77
|
-
* could emit missing changesets to the client using event `NEW_CHANGESETS`.
|
|
78
|
-
*/
|
|
79
|
-
FETCH_MISSING = "fetch_missing",
|
|
80
|
-
/* Excluded from this release type: PSEUDO_FETCH_MISSING_RESULT */
|
|
81
|
-
/**
|
|
82
|
-
* The client submit a changeset to the server.
|
|
83
|
-
*/
|
|
84
|
-
SUBMIT_CHANGESET = "submit_changeset",
|
|
85
|
-
/**
|
|
86
|
-
* The submitted changeset is acknowledged by the server.
|
|
87
|
-
*/
|
|
88
|
-
CHANGESET_ACK = "changeset_ack",
|
|
89
|
-
/**
|
|
90
|
-
* The submitted changeset could not be transformed by the server, so
|
|
91
|
-
* the changeset should be rejected.
|
|
92
|
-
*/
|
|
93
|
-
CHANGESET_REJ = "changeset_rej",
|
|
94
|
-
/**
|
|
95
|
-
* The submitted changeset could not be acknowledged by unexpected server error, so
|
|
96
|
-
* the changeset should be resent.
|
|
97
|
-
*/
|
|
98
|
-
CHANGESET_SHOULD_RETRY = "changeset_should_retry",
|
|
99
|
-
/**
|
|
100
|
-
* When a changeset sent by the client is acknowledged by the server,
|
|
101
|
-
* the server should broadcast this changeset to other clients.
|
|
102
|
-
*
|
|
103
|
-
* Note that this event would not be sent via the websocket but http.
|
|
104
|
-
*/
|
|
105
|
-
NEW_CHANGESETS = "new_changesets",
|
|
106
|
-
/**
|
|
107
|
-
* When a client updates its cursor position, it would send this event to
|
|
108
|
-
* the server. The server would also broadcast this event to other peer
|
|
109
|
-
* clients.
|
|
110
|
-
*/
|
|
111
|
-
UPDATE_CURSOR = "update_cursor",
|
|
112
|
-
/**
|
|
113
|
-
* When a client connect the collaboration session, the server should
|
|
114
|
-
* broadcast this event to all other clients.
|
|
115
|
-
*/
|
|
116
|
-
USERS_ENTER = "users_enter",
|
|
117
|
-
/**
|
|
118
|
-
* When a client disconnect the collaboration session, the server should
|
|
119
|
-
* broadcast this event to all other clients.
|
|
120
|
-
*/
|
|
121
|
-
USERS_LEAVE = "users_leave",
|
|
122
|
-
/**
|
|
123
|
-
* The collaboration unit is deleted on the server.
|
|
124
|
-
*/
|
|
125
|
-
UNIT_DELETE = "unit_delete",
|
|
126
|
-
/**
|
|
127
|
-
* This client requests itself to be the live share host. Sent by clients.
|
|
128
|
-
*/
|
|
129
|
-
LIVESHARE_REQUEST_HOST = "liveshare.request_host",
|
|
130
|
-
/**
|
|
131
|
-
* New host is elected. Sent by the server.
|
|
132
|
-
*/
|
|
133
|
-
LIVESHARE_NEW_HOST = "liveshare.new_host",
|
|
134
|
-
/**
|
|
135
|
-
* A operation sent from the live share host. Sent by the host client and
|
|
136
|
-
* broadcasted by the server. For each `operation.id`, the server should
|
|
137
|
-
* cache let latest value for followers who come into the live share room
|
|
138
|
-
* later.
|
|
139
|
-
*/
|
|
140
|
-
LIVESHARE_OPERATION = "liveshare.operation",
|
|
141
|
-
/**
|
|
142
|
-
* Fetch all operations from the live share host. for some scenarios:
|
|
143
|
-
* 1. when a client comes into the live share room, it should fetch all
|
|
144
|
-
* 2. when a client miss some operations, it should fetch all
|
|
145
|
-
*/
|
|
146
|
-
LIVESHARE_FETCH_OPERATIONS = "liveshare.fetch_operations",
|
|
147
|
-
/**
|
|
148
|
-
* Send by the presenter to terminate live share. Should be broadcasted to
|
|
149
|
-
* all followers.
|
|
150
|
-
*/
|
|
151
|
-
LIVESHARE_TERMINATE = "liveshare.terminate",
|
|
152
|
-
/**
|
|
153
|
-
* This type will be returned if an error is reported.
|
|
154
|
-
*/
|
|
155
|
-
MSG_FOR_ERROR = "error_msg",
|
|
156
|
-
PERMISSION_REJ = "permission_rej",
|
|
157
|
-
COMMENT_UPDATE = "comment_update",
|
|
158
|
-
UPDATE_PERMISSION_OBJ = "update_permission_obj",
|
|
159
|
-
SHOULD_CLOSE_CONN = "should_close_conn"
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
/**
|
|
163
|
-
* During transmission, compression is performed for a specific operation,referencing during transport.
|
|
164
|
-
* Before send -> compress -> transmission -> ... -> node apply -> decompression -> apply.
|
|
165
|
-
* Before send -> compress -> transmission -> ... -> node transform -> decompression -> apply.
|
|
166
|
-
* Before send -> compress -> transmission -> ... -> take from server -> decompression -> apply.
|
|
167
|
-
* Before send -> compress -> save to local -> ... -> take from local -> decompression -> apply.
|
|
168
|
-
* @export
|
|
169
|
-
* @class CompressMutationService
|
|
170
|
-
*/
|
|
171
|
-
export declare class CompressMutationService {
|
|
172
|
-
interceptor: InterceptorManager<{
|
|
173
|
-
COMPRESS_MUTATION_APPLY: IInterceptor<IMutationInfo<object>[], null>;
|
|
174
|
-
COMPRESS_MUTATION_SEND: IInterceptor<IMutationInfo<object>[], null>;
|
|
175
|
-
}>;
|
|
176
|
-
constructor();
|
|
177
|
-
private _init;
|
|
178
|
-
private _initSetRangeValues;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
/**
|
|
182
|
-
* This mutation will not create a unit but only be a signal
|
|
183
|
-
*/
|
|
184
|
-
export declare const CreateUnitMutation: IMutation_2<ICreateUnitMutationParams>;
|
|
185
|
-
|
|
186
|
-
/**
|
|
187
|
-
* This controller register sheet transform algorithms to the transform service.
|
|
188
|
-
*/
|
|
189
|
-
export declare class DocTransformController extends Disposable_2 {
|
|
190
|
-
private readonly _transformService;
|
|
191
|
-
constructor(_transformService: ITransformService);
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
export declare function generateTempDocumentSnapshot(_context: ILogContext, document: IDocumentData, unitID: string, rev: number): Promise<{
|
|
195
|
-
snapshot: ISnapshot;
|
|
196
|
-
}>;
|
|
197
|
-
|
|
198
|
-
export declare function generateTemporarySnap(context: ILogContext, workbook: IWorkbookData, unitID: string, rev: number, snapshotService: ISnapshotServerService): Promise<{
|
|
199
|
-
snapshot: ISnapshot;
|
|
200
|
-
}>;
|
|
201
|
-
|
|
202
|
-
/**
|
|
203
|
-
*
|
|
204
|
-
* @param snapshot
|
|
205
|
-
* @param snapshotService
|
|
206
|
-
* @returns
|
|
207
|
-
*/
|
|
208
|
-
export declare function getSheetBlocksFromSnapshot(snapshot: ISnapshot, snapshotService: ISnapshotServerService): Promise<ISheetBlock[]>;
|
|
209
|
-
|
|
210
|
-
/**
|
|
211
|
-
* Awaiting mutations were acknowledged by the server.
|
|
212
|
-
*/
|
|
213
|
-
export declare interface IAcknowledgedChangeset {
|
|
214
|
-
/** The rev of the document when this changeset is assembled. */
|
|
215
|
-
baseRev: number;
|
|
216
|
-
/** The rev version given by the server. */
|
|
217
|
-
revision: number;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
export declare interface IAcknowledgementEvent {
|
|
221
|
-
eventID: CollaborationEvent.CHANGESET_ACK;
|
|
222
|
-
data: IChangeset_2;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
export declare interface IChangeset {
|
|
226
|
-
unitID: string;
|
|
227
|
-
type: UniverType;
|
|
228
|
-
baseRev: number;
|
|
229
|
-
revision: number;
|
|
230
|
-
userID: string;
|
|
231
|
-
mutations: IMutationInfo[];
|
|
232
|
-
memberID: string;
|
|
233
|
-
/** sid works with reqId, represent the id of a unit edit session */
|
|
234
|
-
sid?: string;
|
|
235
|
-
/** reqId works with sid, should be monotonically increasing and begin with 1 in the same edit session */
|
|
236
|
-
reqId?: number;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
/**
|
|
240
|
-
* A union type of all possible collaboration events.
|
|
241
|
-
*/
|
|
242
|
-
export declare type ICollaborationEvent = IAcknowledgementEvent | INewChangesetsEvent | IRejectionEvent | ISubmitChangesetEvent | IPseudoFetchMissingResultEvent | IUserSelectionEvent | IFetchingMissEvent | IUpdateCursorEvent | IUserJoinEvent | IUserLeaveEvent | ICustomEvent | IRequestHostEvent | IFetchOperationsEvent | ITerminateEvent | INewHostEvent | IOperationEvent | IMsgErrEvent | ICommentUpdateEvent | IPermissionUpdateEvent | IShouldCloseConnEvent;
|
|
243
|
-
|
|
244
|
-
export declare interface ICollaborationUser {
|
|
245
|
-
userID: string;
|
|
246
|
-
memberID: string;
|
|
247
|
-
name: string;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
declare interface ICombCmdRequest {
|
|
251
|
-
cmd: CombCmd;
|
|
252
|
-
routeKey: string;
|
|
253
|
-
routeType: string;
|
|
254
|
-
data?: unknown;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
declare interface ICombCmdResponse {
|
|
258
|
-
cmd: CombCmd;
|
|
259
|
-
code: CmdRspCode;
|
|
260
|
-
routeKey: string;
|
|
261
|
-
data?: unknown;
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
export declare type ICombRequestEvent = IHelloRequestEvent | IJoinRequestEvent | ILeaveRequestEvent | IIngestQuestEvent | IHeartbeatRequestEvent;
|
|
265
|
-
|
|
266
|
-
export declare type ICombResponseEvent = IHelloResponseEvent | IJoinResponseEvent | IRecvResponseEvent | IHeartbeatResponseEvent;
|
|
267
|
-
|
|
268
|
-
declare interface ICommentUpdateEvent {
|
|
269
|
-
eventID: CollaborationEvent.COMMENT_UPDATE;
|
|
270
|
-
data: ICommentUpdate;
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
export declare interface ICreateUnitMutationParams {
|
|
274
|
-
unitId: string;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
/**
|
|
278
|
-
* The special type for other features to reuse collaboration session.
|
|
279
|
-
*/
|
|
280
|
-
declare interface ICustomEvent {
|
|
281
|
-
eventID: string;
|
|
282
|
-
data: any;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
export declare interface IFailureTransformChangesetsResult {
|
|
286
|
-
error: Error;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
export declare interface IFailureTransformMutationResult {
|
|
290
|
-
error: Error;
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
export declare interface IFailureTransformMutationsResult {
|
|
294
|
-
error: Error;
|
|
295
|
-
}
|
|
296
|
-
|
|
297
|
-
export declare interface IFailureTransformMutationsWithChangesetResult {
|
|
298
|
-
error: Error;
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
/**
|
|
302
|
-
* When the collaboration session is created, it should send a handshake event to the server.
|
|
303
|
-
*/
|
|
304
|
-
export declare interface IFetchingMissEvent {
|
|
305
|
-
eventID: CollaborationEvent.FETCH_MISSING;
|
|
306
|
-
data: {
|
|
307
|
-
unitID: string;
|
|
308
|
-
unitType: UniverType;
|
|
309
|
-
from: number;
|
|
310
|
-
to: number;
|
|
311
|
-
};
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
export declare interface IFetchOperationsEvent {
|
|
315
|
-
eventID: CollaborationEvent.LIVESHARE_FETCH_OPERATIONS;
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
export declare interface IHeartbeatRequestEvent extends ICombCmdRequest {
|
|
319
|
-
cmd: CombCmd.HEARTBEAT;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
export declare interface IHeartbeatResponseEvent extends ICombCmdResponse {
|
|
323
|
-
cmd: CombCmd.HEARTBEAT;
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
export declare interface IHelloRequestEvent extends ICombCmdRequest {
|
|
327
|
-
cmd: CombCmd.HELLO;
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
export declare interface IHelloResponseEvent extends ICombCmdResponse {
|
|
331
|
-
cmd: CombCmd.HELLO;
|
|
332
|
-
/** The client will not send `data` but the server would respond with `data`. */
|
|
333
|
-
data: {
|
|
334
|
-
memberID: string;
|
|
335
|
-
};
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
export declare interface IHistoryIoService {
|
|
339
|
-
createHistory(config: ICreateHistoryRequest, context?: ILogContext): Promise<ICreateHistoryResponse>;
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
export declare const IHistoryIoService: IdentifierDecorator<IHistoryIoService>;
|
|
343
|
-
|
|
344
|
-
export declare interface IIngestQuestEvent extends ICombCmdRequest {
|
|
345
|
-
cmd: CombCmd.INGEST;
|
|
346
|
-
data: ICollaborationEvent;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
export declare interface IJoinRequestEvent extends ICombCmdRequest {
|
|
350
|
-
cmd: CombCmd.JOIN;
|
|
351
|
-
data: ICombJoinRequest;
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
export declare interface IJoinResponseEvent extends ICombCmdResponse {
|
|
355
|
-
cmd: CombCmd.JOIN;
|
|
356
|
-
data: ICombJoinResponse;
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
export declare interface ILeaveRequestEvent extends ICombCmdRequest {
|
|
360
|
-
cmd: CombCmd.LEAVE;
|
|
361
|
-
data: ICombLeaveRequest;
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
export declare interface ILogContext {
|
|
365
|
-
metadata?: Record<string, string>;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
declare interface IMsgErrEvent {
|
|
369
|
-
eventID: CollaborationEvent.MSG_FOR_ERROR;
|
|
370
|
-
data: ICollaMsgErrorEvent;
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
/**
|
|
374
|
-
* A single transform algorithm. Algorithms are registered to the transform service in the form of `{m1}-{m2}`.
|
|
375
|
-
* When the transform service is transforming two mutations, it would find the algorithm by the form of `{m1}-{m2}`.
|
|
376
|
-
* `m1` is the mutation on the left side, and `m2` is the mutation on the right side.
|
|
377
|
-
*/
|
|
378
|
-
export declare interface IMutationTransformAlgorithm<M extends object = any, N extends object = any> {
|
|
379
|
-
m1: string;
|
|
380
|
-
m2?: string | 'any';
|
|
381
|
-
handler(m1: IMutationInfo<M>, m2: IMutationInfo<N>): ITransformMutationResult;
|
|
382
|
-
handler(m1: IMutationInfo<M>, m2: IMutationInfo<N>, onlyLater?: true): Omit<ISuccessTransformMutationResult, 'm1Prime'> | IFailureTransformMutationResult;
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
/** Receives a changeset from collaboration server. */
|
|
386
|
-
export declare interface INewChangesetsEvent {
|
|
387
|
-
eventID: CollaborationEvent.NEW_CHANGESETS;
|
|
388
|
-
data: IChangeset_2;
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
export declare interface INewHostEvent {
|
|
392
|
-
eventID: CollaborationEvent.LIVESHARE_NEW_HOST;
|
|
393
|
-
data: ILiveShareNewHost;
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
export declare interface IOperationEvent {
|
|
397
|
-
eventID: CollaborationEvent.LIVESHARE_OPERATION;
|
|
398
|
-
data: ILiveShareOperation;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
export declare interface IPermissionUpdateEvent {
|
|
402
|
-
eventID: CollaborationEvent.UPDATE_PERMISSION_OBJ;
|
|
403
|
-
data: IUpdatePermissionObj;
|
|
404
|
-
}
|
|
405
|
-
|
|
406
|
-
export declare interface IPseudoFetchMissingResultEvent {
|
|
407
|
-
eventID: CollaborationEvent.PSEUDO_FETCH_MISSING_RESULT;
|
|
408
|
-
data: {
|
|
409
|
-
changesets: IChangeset_2[];
|
|
410
|
-
};
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
export declare interface IRecvResponseEvent extends ICombCmdResponse {
|
|
414
|
-
cmd: CombCmd.RECV;
|
|
415
|
-
data: ICollaborationEvent;
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
/**
|
|
419
|
-
* Awaiting mutations were rejected by the server.
|
|
420
|
-
*/
|
|
421
|
-
export declare interface IRejectedChangeset {
|
|
422
|
-
baseRev: number;
|
|
423
|
-
revision: number;
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
export declare interface IRejectionEvent {
|
|
427
|
-
eventID: CollaborationEvent.CHANGESET_REJ;
|
|
428
|
-
data: {
|
|
429
|
-
unitID: string;
|
|
430
|
-
changeset: IRejectedChangeset;
|
|
431
|
-
};
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
export declare interface IRequestHostEvent {
|
|
435
|
-
eventID: CollaborationEvent.LIVESHARE_REQUEST_HOST;
|
|
436
|
-
data: ILiveShareRequestHost;
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
export declare interface IRetryEvent {
|
|
440
|
-
eventID: CollaborationEvent.CHANGESET_SHOULD_RETRY;
|
|
441
|
-
data: IChangeset;
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
export declare interface IRevertRevisionMutationParams {
|
|
445
|
-
unitId: string;
|
|
446
|
-
revision: number;
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
export declare interface IShouldCloseConnEvent {
|
|
450
|
-
eventID: CollaborationEvent.SHOULD_CLOSE_CONN;
|
|
451
|
-
data: IShouldCloseConn;
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
/**
|
|
455
|
-
* It provides implementations for server side controllers to load or save
|
|
456
|
-
* or load snapshots. This service should be implemented by the host environment.
|
|
457
|
-
* And it shouldn't contain any business logic.
|
|
458
|
-
*/
|
|
459
|
-
export declare const ISnapshotServerService: IdentifierDecorator<ISnapshotServerService>;
|
|
460
|
-
|
|
461
|
-
export declare interface ISnapshotServerService {
|
|
462
|
-
/** Load snapshot from a database. */
|
|
463
|
-
getUnitOnRev: (context: ILogContext, params: IGetUnitOnRevRequest) => Promise<IGetUnitOnRevResponse>;
|
|
464
|
-
/** Load sheet block from a database. */
|
|
465
|
-
getSheetBlock: (context: ILogContext, params: IGetSheetBlockRequest) => Promise<IGetSheetBlockResponse>;
|
|
466
|
-
getDeserializedSheetBlock: (context: ILogContext, params: IGetSheetBlockRequest) => Promise<IGetDeserializedSheetBlockResponse>;
|
|
467
|
-
/** Fetch missing changeset */
|
|
468
|
-
fetchMissingChangesets: (context: ILogContext, params: IFetchMissingChangesetsRequest) => Promise<IFetchMissingChangesetsResponse>;
|
|
469
|
-
getResourcesRequest: (context: ILogContext, params: IGetResourcesRequest) => Promise<IGetResourcesResponse>;
|
|
470
|
-
/** Save snapshot to a database. */
|
|
471
|
-
saveSnapshot: (context: ILogContext, params: ISaveSnapshotRequest) => Promise<ISaveSnapshotResponse>;
|
|
472
|
-
/** Save sheet block to a database. */
|
|
473
|
-
saveSheetBlock: (context: ILogContext, params: ISaveSheetBlockRequest) => Promise<ISaveSheetBlockResponse>;
|
|
474
|
-
/** Save changeset to a database. */
|
|
475
|
-
saveChangeset: (context: ILogContext, params: ISaveChangesetRequest) => Promise<ISaveChangesetResponse>;
|
|
476
|
-
copyFileMeta: (context: ILogContext, params: ICopyFileMetaRequest) => Promise<ICopyFileMetaResponse>;
|
|
477
|
-
getLatestCsReqIdBySid: (context: ILogContext, params: IGetLatestCsReqIdBySidRequest) => Promise<IGetLatestCsReqIdBySidResponse>;
|
|
478
|
-
}
|
|
479
|
-
|
|
480
|
-
export declare function isTransformChangesetsFailure(result: Partial<ITransformChangesetsResult>): result is IFailureTransformChangesetsResult;
|
|
481
|
-
|
|
482
|
-
export declare function isTransformChangesetsSuccess(result: Partial<ITransformChangesetsResult>): result is ISuccessTransformChangesetsResult;
|
|
483
|
-
|
|
484
|
-
export declare function isTransformMutationFailure(result: ITransformMutationResult | Omit<ISuccessTransformMutationResult, 'm1Prime'>): result is IFailureTransformMutationResult;
|
|
485
|
-
|
|
486
|
-
export declare function isTransformMutationsFailure(result: Partial<ITransformMutationsResult>): result is IFailureTransformMutationsResult;
|
|
487
|
-
|
|
488
|
-
export declare function isTransformMutationsSuccess(result: Partial<ITransformMutationsResult>): result is ISuccessTransformMutationsResult;
|
|
489
|
-
|
|
490
|
-
export declare function isTransformMutationSuccess(result: ITransformMutationResult | Omit<ISuccessTransformMutationResult, 'm1Prime'>): result is ISuccessTransformMutationResult;
|
|
491
|
-
|
|
492
|
-
export declare function isTransformMutationsWithChangesetFailure(result: ITransformMutationsWithChangesetResult): result is IFailureTransformMutationsWithChangesetResult;
|
|
493
|
-
|
|
494
|
-
export declare function isTransformMutationsWithChangesetSuccess(result: ITransformMutationsWithChangesetResult): result is ISuccessTransformMutationsWithChangesetResult;
|
|
495
|
-
|
|
496
|
-
/** Send a changeset to the collaboration sever. */
|
|
497
|
-
export declare interface ISubmitChangesetEvent {
|
|
498
|
-
eventID: CollaborationEvent.SUBMIT_CHANGESET;
|
|
499
|
-
data: {
|
|
500
|
-
unitID: string;
|
|
501
|
-
unitType: UniverType;
|
|
502
|
-
memberID: string;
|
|
503
|
-
changeset: IChangeset;
|
|
504
|
-
};
|
|
505
|
-
}
|
|
506
|
-
|
|
507
|
-
export declare interface ISuccessTransformChangesetsResult {
|
|
508
|
-
c1Prime: IChangeset[];
|
|
509
|
-
c2Prime: IChangeset[];
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
export declare interface ISuccessTransformMutationResult {
|
|
513
|
-
m1Prime: IMutationInfo | IMutationInfo[];
|
|
514
|
-
m2Prime: IMutationInfo | IMutationInfo[];
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
export declare interface ISuccessTransformMutationsResult {
|
|
518
|
-
m1Prime: IMutationInfo[];
|
|
519
|
-
m2Prime: IMutationInfo[];
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
export declare interface ISuccessTransformMutationsWithChangesetResult {
|
|
523
|
-
c1Prime: IChangeset;
|
|
524
|
-
m2Prime: IMutationInfo[];
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
export declare interface ITerminateEvent {
|
|
528
|
-
eventID: CollaborationEvent.LIVESHARE_TERMINATE;
|
|
529
|
-
data: ILiveShareTerminate;
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
export declare type ITransformChangesetsResult = ISuccessTransformChangesetsResult | IFailureTransformChangesetsResult;
|
|
533
|
-
|
|
534
|
-
export declare type ITransformMutationResult = ISuccessTransformMutationResult | IFailureTransformMutationResult;
|
|
535
|
-
|
|
536
|
-
export declare type ITransformMutationsResult = ISuccessTransformMutationsResult | IFailureTransformMutationsResult;
|
|
537
|
-
|
|
538
|
-
export declare type ITransformMutationsWithChangesetResult = ISuccessTransformMutationsWithChangesetResult | IFailureTransformMutationsWithChangesetResult;
|
|
539
|
-
|
|
540
|
-
/**
|
|
541
|
-
* This service's responsibility is to transform mutations (changesets).
|
|
542
|
-
*
|
|
543
|
-
* Features could register transform algorithms to this service, so this the service could transform more mutations.
|
|
544
|
-
*
|
|
545
|
-
* This should be used both on client and server.
|
|
546
|
-
*
|
|
547
|
-
* This service is also business-agnostic, so it could be used in docs, sheets and slides.
|
|
548
|
-
*/
|
|
549
|
-
export declare interface ITransformService {
|
|
550
|
-
/**
|
|
551
|
-
* Register an algorithm to transform two kinds of mutations.
|
|
552
|
-
*
|
|
553
|
-
* Note that this method is not the same as other registering methods in Univer, it wouldn't return a disposable,
|
|
554
|
-
* because it would cause critical problems if you unregister a transform algorithm.
|
|
555
|
-
*/
|
|
556
|
-
registerTransformAlgorithm: (algorithms: IMutationTransformAlgorithm) => void;
|
|
557
|
-
/* Excluded from this release type: transformMutation */
|
|
558
|
-
transformMutation(m1: IMutationInfo, m2: IMutationInfo, onlyLater: false): ITransformMutationResult;
|
|
559
|
-
/* Excluded from this release type: transformMutations */
|
|
560
|
-
transformMutations(m1: IMutationInfo[], m2: IMutationInfo[], onlyLater: boolean): ITransformMutationsResult;
|
|
561
|
-
/* Excluded from this release type: transformChangesets */
|
|
562
|
-
transformChangesets(c1: IChangeset[], c2: IChangeset[], onlyLater: false): ITransformChangesetsResult;
|
|
563
|
-
/* Excluded from this release type: transformMutationsWithChangeset */
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
export declare const ITransformService: IdentifierDecorator<ITransformService>;
|
|
567
|
-
|
|
568
|
-
declare interface IUniverCollaborationConfig {
|
|
569
|
-
}
|
|
570
|
-
|
|
571
|
-
export declare interface IUpdateCursorEvent {
|
|
572
|
-
eventID: CollaborationEvent.UPDATE_CURSOR;
|
|
573
|
-
data: IUpdateCursor;
|
|
574
|
-
}
|
|
575
|
-
|
|
576
|
-
export declare interface IUserJoinEvent {
|
|
577
|
-
eventID: CollaborationEvent.USERS_ENTER;
|
|
578
|
-
data: ICollaMsgJoin;
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
export declare interface IUserLeaveEvent {
|
|
582
|
-
eventID: CollaborationEvent.USERS_LEAVE;
|
|
583
|
-
data: ICollaMsgLeave;
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
export declare interface IUserSelectionEvent {
|
|
587
|
-
eventID: CollaborationEvent.UPDATE_CURSOR;
|
|
588
|
-
data: {
|
|
589
|
-
/** The selection is serialized. */
|
|
590
|
-
selection: string;
|
|
591
|
-
userID: string;
|
|
592
|
-
memberID: string;
|
|
593
|
-
unitID: string;
|
|
594
|
-
};
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
export declare function makeArray<T>(input: T | T[]): T[];
|
|
598
|
-
|
|
599
|
-
export declare function mapDocumentTypeToUniverType(documentType: UniverInstanceType): UniverType;
|
|
600
|
-
|
|
601
|
-
export declare function parseChangesetToProtocol(changeset: IChangeset): IChangeset_2;
|
|
602
|
-
|
|
603
|
-
export declare function parseMutationToProtocol(mutation: IMutationInfo): IMutation;
|
|
604
|
-
|
|
605
|
-
export declare function parseProtocolChangeset(protocolChangeset: IChangeset_2): IChangeset;
|
|
606
|
-
|
|
607
|
-
export declare function parseProtocolCommand(protocolCommands: ICommand[]): ICommandInfo[];
|
|
608
|
-
|
|
609
|
-
export declare function parseProtocolMutation(mutation: IMutation): IMutationInfo;
|
|
610
|
-
|
|
611
|
-
export declare const RevertRevisionMutation: IMutation_2<IRevertRevisionMutationParams>;
|
|
612
|
-
|
|
613
|
-
/**
|
|
614
|
-
* This service provide util functions to get revision number of a document or increment the revision number.
|
|
615
|
-
*/
|
|
616
|
-
export declare class RevisionService {
|
|
617
|
-
private readonly _univerInstanceService;
|
|
618
|
-
constructor(_univerInstanceService: IUniverInstanceService);
|
|
619
|
-
/**
|
|
620
|
-
* Get the current revision of a document.
|
|
621
|
-
* @param unitId
|
|
622
|
-
*/
|
|
623
|
-
getCurrentRevOfUnit(unitId: string): number;
|
|
624
|
-
/**
|
|
625
|
-
* Increment the revision number of a document.
|
|
626
|
-
* @param unitId
|
|
627
|
-
* @returns The revision number after increment.
|
|
628
|
-
*/
|
|
629
|
-
incrementRevOfUnit(unitId: string): number;
|
|
630
|
-
setRevOfUnit(unitId: string, rev: number): void;
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
/**
|
|
634
|
-
* This controller register sheet transform algorithms to the transform service.
|
|
635
|
-
*/
|
|
636
|
-
export declare class SheetTransformController extends Disposable_2 {
|
|
637
|
-
private readonly _transformService;
|
|
638
|
-
constructor(_transformService: ITransformService);
|
|
639
|
-
}
|
|
640
|
-
|
|
641
|
-
export declare const SINGLE_HISTORY_MUTATIONS: Set<string>;
|
|
642
|
-
|
|
643
|
-
/** Some special mutations. It a changeset contains the following mutations it should create a snapshot immediately. */
|
|
644
|
-
export declare const SINGLE_SNAPSHOT_MUTATIONS: Set<string>;
|
|
645
|
-
|
|
646
|
-
/**
|
|
647
|
-
* The service provides methods to load snapshots from the snapshot server.
|
|
648
|
-
*/
|
|
649
|
-
export declare class SnapshotService {
|
|
650
|
-
private readonly _revisionService;
|
|
651
|
-
private readonly _univerInstanceService;
|
|
652
|
-
private readonly _snapshotServerService;
|
|
653
|
-
private readonly _commandService;
|
|
654
|
-
private _injector;
|
|
655
|
-
private _compressMutationService;
|
|
656
|
-
private _resourceManagerService;
|
|
657
|
-
constructor(_revisionService: RevisionService, _univerInstanceService: IUniverInstanceService, _snapshotServerService: ISnapshotServerService, _commandService: ICommandService, _injector: Injector, _compressMutationService: CompressMutationService, _resourceManagerService: IResourceManagerService);
|
|
658
|
-
loadSheet(unitID: string, rev: number, context?: ILogContext): Promise<Workbook>;
|
|
659
|
-
loadDoc(unitID: string, rev: number, context?: ILogContext): Promise<DocumentDataModel>;
|
|
660
|
-
save(_context: ILogContext, workbook: Workbook): IWorkbookData;
|
|
661
|
-
saveDoc(_context: ILogContext, document: DocumentDataModel): IDocumentData;
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
export declare const textDecoder: TextDecoder;
|
|
665
|
-
|
|
666
|
-
export declare const textEncoder: TextEncoder;
|
|
667
|
-
|
|
668
|
-
export declare function transformDocumentDataToSnapshot(context: ILogContext, document: IDocumentData, unitID: string, rev: number, snapshotService: ISnapshotServerService): Promise<{
|
|
669
|
-
snapshot: ISnapshot;
|
|
670
|
-
}>;
|
|
671
|
-
|
|
672
|
-
export declare class TransformService extends Disposable_2 implements ITransformService {
|
|
673
|
-
private readonly _transformMap;
|
|
674
|
-
dispose(): void;
|
|
675
|
-
registerTransformAlgorithm(algorithm: IMutationTransformAlgorithm): void;
|
|
676
|
-
transformMutation(m1: IMutationInfo, m2: IMutationInfo): ITransformMutationResult;
|
|
677
|
-
transformMutation(m1: IMutationInfo, m2: IMutationInfo, onlyLater: true): IFailureTransformMutationResult | Omit<ISuccessTransformMutationResult, 'm1Prime'>;
|
|
678
|
-
transformMutations(m1: IMutationInfo[], m2: IMutationInfo[]): ITransformMutationsResult;
|
|
679
|
-
transformMutations(m1: IMutationInfo[], m2: IMutationInfo[], onlyLater: true): IFailureTransformMutationsResult | Omit<ISuccessTransformMutationsResult, 'm1Prime'>;
|
|
680
|
-
/**
|
|
681
|
-
* Assume `m1` has already applied to the document, we need m2Prime to be applied to the document.
|
|
682
|
-
*
|
|
683
|
-
* @param m1
|
|
684
|
-
* @param m2
|
|
685
|
-
* @returns transformed mutations of m2
|
|
686
|
-
*/
|
|
687
|
-
private _rightInclineTransformMutations;
|
|
688
|
-
private _leftInclineTransformMutations;
|
|
689
|
-
transformChangesets(c1: IChangeset[], c2: IChangeset[]): ITransformChangesetsResult;
|
|
690
|
-
transformChangesets(c1: IChangeset[], c2: IChangeset[], onlyLater: true): IFailureTransformChangesetsResult | Omit<ISuccessTransformChangesetsResult, 'c1Prime'>;
|
|
691
|
-
transformMutationsWithChangeset(c1: IChangeset, m2: IMutationInfo[]): ITransformMutationsWithChangesetResult;
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
export declare function transformSnapshotToDocumentData(snapshot: ISnapshot): IDocumentData;
|
|
695
|
-
|
|
696
|
-
/**
|
|
697
|
-
* Assemble a snapshot to a workbook.
|
|
698
|
-
* @param snapshot
|
|
699
|
-
* @param sheetBlocks
|
|
700
|
-
*/
|
|
701
|
-
export declare function transformSnapshotToWorkbookData(snapshot: ISnapshot, sheetBlocks: (IDeserializedSheetBlock | ISheetBlock)[], _context?: ILogContext): IWorkbookData;
|
|
702
|
-
|
|
703
|
-
export declare function transformWorkbookDataToSnapshot(context: ILogContext, workbook: IWorkbookData, unitID: string, rev: number, snapshotService: ISnapshotServerService): Promise<{
|
|
704
|
-
snapshot: ISnapshot;
|
|
705
|
-
}>;
|
|
706
|
-
|
|
707
|
-
export declare class UniverCollaborationPlugin extends Plugin_2 {
|
|
708
|
-
private readonly _config;
|
|
709
|
-
protected _injector: Injector;
|
|
710
|
-
private readonly _configService;
|
|
711
|
-
static pluginName: string;
|
|
712
|
-
constructor(_config: IUniverCollaborationConfig | undefined, _injector: Injector, _configService: IConfigService);
|
|
713
|
-
onStarting(): void;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
export { }
|
|
1
|
+
export { SheetTransformController } from './controllers/sheet-transform/sheet-transform.controller';
|
|
2
|
+
export { DocTransformController } from './controllers/doc-transform/doc-transform.controller';
|
|
3
|
+
export { type IChangeset, parseChangesetToProtocol, parseMutationToProtocol, parseProtocolChangeset, parseProtocolCommand, parseProtocolMutation, } from './models/changeset';
|
|
4
|
+
export { CollaborationEvent, type IAcknowledgedChangeset, type IAcknowledgementEvent, type ICollaborationEvent, type ICollaborationUser, type IFetchingMissEvent, type IFetchOperationsEvent, type INewChangesetsEvent, type INewHostEvent, type IOperationEvent, type IPermissionUpdateEvent, type IPseudoFetchMissingResultEvent, type IRejectedChangeset, type IRejectionEvent, type IRequestHostEvent, type IRetryEvent, type IShouldCloseConnEvent, type ISubmitChangesetEvent, type ITerminateEvent, type IUpdateCursorEvent, type IUserJoinEvent, type IUserLeaveEvent, type IUserSelectionEvent, } from './models/collaboration-events';
|
|
5
|
+
export { type ICombRequestEvent, type ICombResponseEvent, type IHeartbeatRequestEvent, type IHeartbeatResponseEvent, type IHelloRequestEvent, type IHelloResponseEvent, type IIngestQuestEvent, type IJoinRequestEvent, type IJoinResponseEvent, type ILeaveRequestEvent, type IRecvResponseEvent, } from './models/socket-events';
|
|
6
|
+
export { UniverCollaborationPlugin } from './plugin';
|
|
7
|
+
export { CompressMutationService } from './services/compress-mutation/compress-mutation-service';
|
|
8
|
+
export { RevisionService, SINGLE_HISTORY_MUTATIONS, SINGLE_SNAPSHOT_MUTATIONS } from './services/rev/rev.service';
|
|
9
|
+
export { ISnapshotServerService, SnapshotService } from './services/snapshot/snapshot.service';
|
|
10
|
+
export { generateTempDocumentSnapshot, generateTemporarySnap, getSheetBlocksFromSnapshot, transformDocumentDataToSnapshot, transformSnapshotToDocumentData, transformSnapshotToWorkbookData, transformWorkbookDataToSnapshot } from './services/snapshot/snapshot-transform';
|
|
11
|
+
export { textDecoder, textEncoder } from './services/snapshot/snapshot-utils';
|
|
12
|
+
export { type IMutationTransformAlgorithm, ITransformService, makeArray, TransformService, } from './services/transform/transform.service';
|
|
13
|
+
export { type IFailureTransformChangesetsResult, type IFailureTransformMutationResult, type IFailureTransformMutationsResult, type IFailureTransformMutationsWithChangesetResult, isTransformChangesetsFailure, isTransformChangesetsSuccess, isTransformMutationFailure, isTransformMutationsFailure, isTransformMutationsSuccess, isTransformMutationSuccess, isTransformMutationsWithChangesetFailure, isTransformMutationsWithChangesetSuccess, type ISuccessTransformChangesetsResult, type ISuccessTransformMutationResult, type ISuccessTransformMutationsResult, type ISuccessTransformMutationsWithChangesetResult, type ITransformChangesetsResult, type ITransformMutationResult, type ITransformMutationsResult, type ITransformMutationsWithChangesetResult, } from './services/transform/types';
|
|
14
|
+
export { b64DecodeUnicode, b64EncodeUnicode, type ILogContext, mapDocumentTypeToUniverType } from './utils';
|
|
15
|
+
export { IHistoryIoService } from './services/history/type';
|
|
16
|
+
export { type IRevertRevisionMutationParams, RevertRevisionMutation } from './command/revert-revision.mutation';
|
|
17
|
+
export { CreateUnitMutation, type ICreateUnitMutationParams } from './command/create-unit.mutation';
|