dochub-sdk 0.1.253 → 0.1.254

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.
@@ -261,13 +261,15 @@ export interface IDocHubDataLakeDebuggerContext {
261
261
  [keys: string]: any;
262
262
  }
263
263
 
264
- export type IDocHubDataLakeDebuggerHandle = (context: IDocHubDataLakeDebuggerContext) => Promise<DocHubDataLakeDebuggerHandleActions>;
265
-
266
264
  /**
267
265
  * Интерфейс внутрисистемного отладчика
268
266
  */
269
267
  export interface IDocHubDataLakeDebugger {
270
- handle: IDocHubDataLakeDebuggerHandle;
268
+ /**
269
+ * Метод вызывается при необходимости отладочного действия
270
+ * @param context - контекст исполнения кода
271
+ */
272
+ handle(context: IDocHubDataLakeDebuggerContext): Promise<DocHubDataLakeDebuggerHandleActions>;
271
273
  }
272
274
 
273
275
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.253",
3
+ "version": "0.1.254",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",