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.
@@ -9,6 +9,7 @@
9
9
  "datalake",
10
10
  "eventbus",
11
11
  "localstorage",
12
+ "Nata",
12
13
  "PROPFIND"
13
14
  ]
14
15
  }
@@ -257,7 +257,14 @@ export enum DocHubDataLakeDebuggerHandleActions {
257
257
  stop = 'stop' // Прервать выполнение
258
258
  }
259
259
 
260
- export type DocHubDataLakeDebuggerQuery = (expression: DocHubJSONataQuery) => Promise<any>;
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.258",
3
+ "version": "0.1.259",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",