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.
- package/interfaces/datalake.ts +5 -3
- package/package.json +1 -1
package/interfaces/datalake.ts
CHANGED
@@ -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
|
-
|
268
|
+
/**
|
269
|
+
* Метод вызывается при необходимости отладочного действия
|
270
|
+
* @param context - контекст исполнения кода
|
271
|
+
*/
|
272
|
+
handle(context: IDocHubDataLakeDebuggerContext): Promise<DocHubDataLakeDebuggerHandleActions>;
|
271
273
|
}
|
272
274
|
|
273
275
|
/**
|