dochub-sdk 0.1.258 → 0.1.259
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/.vscode/settings.json +1 -0
- package/interfaces/datalake.ts +8 -1
- package/package.json +1 -1
package/.vscode/settings.json
CHANGED
package/interfaces/datalake.ts
CHANGED
@@ -257,7 +257,14 @@ export enum DocHubDataLakeDebuggerHandleActions {
|
|
257
257
|
stop = 'stop' // Прервать выполнение
|
258
258
|
}
|
259
259
|
|
260
|
-
|
260
|
+
/**
|
261
|
+
* Специальный тип запросов в отладчик.
|
262
|
+
* Если запрос начинается на $, считается, что запрос должен вернуть значение переменной из контекста выполнения
|
263
|
+
*/
|
264
|
+
export type DocHubDebuggerQuery = `$${string}` | DocHubJSONataQuery;
|
265
|
+
|
266
|
+
export type DocHubDataLakeDebuggerQuery = (expression: DocHubDebuggerQuery) => Promise<any>;
|
267
|
+
|
261
268
|
|
262
269
|
/**
|
263
270
|
* Элемент стека выполнения запросов в DataLake
|