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.
@@ -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
- source: () => Promise<string>;
260
- position: number;
261
+ uid: string; // Идентификатор запроса
262
+ source: () => Promise<string>; // Функция возвращающая исходный код запроса
263
+ position: number; // Позиция остановки отладчика
261
264
  [keys: string]: any;
262
265
  }
263
266
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.254",
3
+ "version": "0.1.256",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",