dochub-sdk 0.1.254 → 0.1.256
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 +6 -3
- package/package.json +1 -1
package/interfaces/datalake.ts
CHANGED
@@ -252,12 +252,15 @@ export interface IDataSetResolveOptions {
|
|
252
252
|
|
253
253
|
export enum DocHubDataLakeDebuggerHandleActions {
|
254
254
|
run = 'run', // Продолжить выполнение
|
255
|
-
next = 'next'
|
255
|
+
next = 'next', // Перейти на следующий шаг
|
256
|
+
into = 'into', // Войти в подпрограмму
|
257
|
+
stop = 'stop' // Прервать выполнение
|
256
258
|
}
|
257
259
|
|
258
260
|
export interface IDocHubDataLakeDebuggerContext {
|
259
|
-
|
260
|
-
|
261
|
+
uid: string; // Идентификатор запроса
|
262
|
+
source: () => Promise<string>; // Функция возвращающая исходный код запроса
|
263
|
+
position: number; // Позиция остановки отладчика
|
261
264
|
[keys: string]: any;
|
262
265
|
}
|
263
266
|
|