dochub-sdk 0.1.199 → 0.1.201

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.
@@ -70,7 +70,17 @@ export enum DocHubProblemsEvents {
70
70
  // Валидатор завершил работу
71
71
  validatorReviewed = 'dochub-problems-validator-reviewed',
72
72
  // Процесс поиска проблем завершился
73
- startFinish = 'dochub-problems-review-finish',
73
+ finishReview = 'dochub-problems-review-finish',
74
+ }
75
+
76
+ /**
77
+ * Данные передаваемые с событием DocHubProblemsEvents.validatorReviewed
78
+ */
79
+ export interface IDocHubProblemsEventValidatorReviewed {
80
+ // Идентификатор валидатора
81
+ uid: IDocHubValidatorUID;
82
+ // Количество обнаруженных проблем
83
+ problems: number;
74
84
  }
75
85
 
76
86
  export interface IDocHubProblems {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.199",
3
+ "version": "0.1.201",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",