dochub-sdk 0.1.257 → 0.1.258

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.
@@ -278,8 +278,9 @@ export type DocHubDataLakeDebuggerCallStack = IDocHubDataLakeDebuggerCallStackIt
278
278
  * Контекст запроса в DataLake
279
279
  */
280
280
  export interface IDocHubDataLakeDebuggerContext {
281
- uid: string; // Идентификатор запроса
282
- stack: () => Promise<DocHubDataLakeDebuggerCallStack>; // Стек выполнения запроса
281
+ uid: string; // Идентификатор запроса
282
+ stack?: () => Promise<DocHubDataLakeDebuggerCallStack>; // Стек выполнения запроса
283
+ terminated?: boolean; // Признак завершения выполнения запроса
283
284
  }
284
285
 
285
286
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dochub-sdk",
3
- "version": "0.1.257",
3
+ "version": "0.1.258",
4
4
  "description": "The DocHub System Development Kit.",
5
5
  "private": false,
6
6
  "main": "index.ts",