dochub-sdk 0.1.287 → 0.1.289
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/interfaces/router.ts +1 -3
- package/package.json +1 -1
package/interfaces/router.ts
CHANGED
@@ -3,9 +3,7 @@ import { Route, RouteConfig } from 'vue-router';
|
|
3
3
|
export enum DocHubNavigateCommands {
|
4
4
|
back = '$-back', // Перейти на шаг назад в истории страниц
|
5
5
|
root = '$-root', // Перейти на корневую страницу
|
6
|
-
|
7
|
-
transactionCommit = '$-transaction-commit', // Перейти на страницу применения изменений кода
|
8
|
-
transactionRollback = '$-transaction-rollback' // Перейти на страницу отмены изменений кода
|
6
|
+
transactionView = '$-transaction-view', // Перейти на страницу анализа изменений
|
9
7
|
}
|
10
8
|
|
11
9
|
export enum DocHubNavigateTarget {
|