dochub-sdk 0.1.344 → 0.1.345

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.
@@ -18,9 +18,9 @@ export interface IDocHubSettings {
18
18
 
19
19
  // Сохраняет структуру с настройками
20
20
  // settings - сохраняемая структура
21
- push(settings: IDocHubSettingsCollection);
21
+ push(settings: IDocHubSettingsCollection): Promise<void>;
22
22
 
23
23
  // Получает настройки
24
24
  // fields - требуемый массив полей
25
- pull(fields: IDocHubSettingsCollection | string[]): IDocHubSettingsCollection;
25
+ pull(fields: IDocHubSettingsCollection | string[]): Promise<IDocHubSettingsCollection>;
26
26
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.344",
3
+ "version": "0.1.345",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",