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.
- package/interfaces/datalake.ts +3 -2
- package/package.json +1 -1
package/interfaces/datalake.ts
CHANGED
@@ -278,8 +278,9 @@ export type DocHubDataLakeDebuggerCallStack = IDocHubDataLakeDebuggerCallStackIt
|
|
278
278
|
* Контекст запроса в DataLake
|
279
279
|
*/
|
280
280
|
export interface IDocHubDataLakeDebuggerContext {
|
281
|
-
uid: string;
|
282
|
-
stack
|
281
|
+
uid: string; // Идентификатор запроса
|
282
|
+
stack?: () => Promise<DocHubDataLakeDebuggerCallStack>; // Стек выполнения запроса
|
283
|
+
terminated?: boolean; // Признак завершения выполнения запроса
|
283
284
|
}
|
284
285
|
|
285
286
|
/**
|