@sankhyalabs/core 5.20.0-dev.45 → 5.20.0-dev.47

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/src/index.ts CHANGED
@@ -19,6 +19,7 @@ import ObjectUtils from "./utils/ObjectUtils.js";
19
19
  import WarningException from "./exceptions/WarningException.js";
20
20
  import WaitingChangeException from "./exceptions/WaitingChangeException.js";
21
21
  import ErrorException from "./exceptions/ErrorException.js";
22
+ import ServiceCanceledException from "./exceptions/ServiceCanceledException.js";
22
23
  import { ErrorTracking } from "./traking/ErrorTraking.js";
23
24
  import { PaginationInfo } from "./dataunit/loading/PaginationInfo.js";
24
25
  import { LoadDataRequest } from "./dataunit/loading/LoadDataRequest.js";
@@ -112,5 +113,6 @@ export {
112
113
  OverflowDirection,
113
114
  OverFlowWatcherParams,
114
115
  OVERFLOWED_CLASS_NAME,
115
- DataUnitEventOptions
116
+ DataUnitEventOptions,
117
+ ServiceCanceledException
116
118
  };