dochub-sdk 0.1.319 → 0.1.321

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.
@@ -27,6 +27,13 @@ export interface IDocHubContentProvider {
27
27
  * @returns - Контент в формате обрабатываемом драйвером
28
28
  */
29
29
  toContent(data: any): any;
30
+ /**
31
+ * Объяснение контента
32
+ * @param content - Контент в формате обрабатываемом драйвером
33
+ * Если не передан, то необходимо предоставить общую информацию о себе
34
+ * @returns - Объяснение контента
35
+ */
36
+ explain(content?: any): Promise<string>;
30
37
  /**
31
38
  * Вносит изменения из ченж-лога в контент
32
39
  * @param content - Контент в формате обрабатываемом драйвером
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.319",
3
+ "version": "0.1.321",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",