dochub-sdk 0.1.196 → 0.1.199

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.
@@ -64,7 +64,20 @@ export interface IDocHubProblem {
64
64
  validator?: IDocHubValidatorUID;
65
65
  }
66
66
 
67
+ export enum DocHubProblemsEvents {
68
+ // Процесс поиска проблем стартовал
69
+ startReview = 'dochub-problems-review-start',
70
+ // Валидатор завершил работу
71
+ validatorReviewed = 'dochub-problems-validator-reviewed',
72
+ // Процесс поиска проблем завершился
73
+ startFinish = 'dochub-problems-review-finish',
74
+ }
75
+
67
76
  export interface IDocHubProblems {
77
+ /**
78
+ * Проверяет идет ли процесс поиска проблем
79
+ */
80
+ isProcessing():Promise<boolean>;
68
81
  /**
69
82
  * Очищает список зарегистрированных проблем
70
83
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.196",
3
+ "version": "0.1.199",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",