dochub-sdk 0.1.219 → 0.1.220

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.
@@ -3,7 +3,7 @@ import { Prop, Watch, Component } from 'vue-property-decorator';
3
3
  import { DocHubComponentProto } from './Components';
4
4
  import { DocHub } from '../..';
5
5
  import { DocHubError } from '..';
6
- import type { IDocHubEditableComponent, IDocHubPresentationProfile, IDocHubPresentationsParams } from '../..';
6
+ import type { IDocHubEditableComponent, IDocHubEditableMeta, IDocHubPresentationProfile, IDocHubPresentationsParams } from '../..';
7
7
 
8
8
  import ajv from 'ajv';
9
9
  import ajv_localize from 'ajv-i18n/localize/ru';
@@ -98,6 +98,12 @@ export class DocHubDocumentProto extends DocHubComponentProto implements IDocHub
98
98
  targetPath: this.profile.$base
99
99
  });
100
100
  }
101
+ /**
102
+ * Возвращает метаинформацию для режима редактирования
103
+ */
104
+ getMetaEdit(): Promise<IDocHubEditableMeta> {
105
+ throw new Error('Method not implemented.');
106
+ }
101
107
  /**
102
108
  * Обработка полученных данных документа.
103
109
  * Можно перехватывать.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.219",
3
+ "version": "0.1.220",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",