@chevre/domain 22.5.0-alpha.40 → 22.5.0-alpha.41
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/lib/chevre/settings.d.ts +2 -2
- package/package.json +1 -1
package/lib/chevre/settings.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as factory from './factory';
|
|
2
|
-
import { AggregationSettings } from './settings/aggregation';
|
|
2
|
+
import { AggregationSettings, ICallableTaskOperation, ICallResult, IOperationExecute } from './settings/aggregation';
|
|
3
3
|
interface IOnOrderStatusChanged {
|
|
4
4
|
informOrder?: factory.project.IInformParams[];
|
|
5
5
|
informOrder2hub?: factory.project.IInformParams[];
|
|
@@ -147,4 +147,4 @@ declare class Settings {
|
|
|
147
147
|
export declare const MONGO_MAX_TIME_MS: number;
|
|
148
148
|
export declare const MONGO_READ_PREFERENCE: string;
|
|
149
149
|
export declare const MONGO_AUTO_INDEX: boolean;
|
|
150
|
-
export { AggregationSettings, Settings };
|
|
150
|
+
export { AggregationSettings, Settings, ICallableTaskOperation, ICallResult, IOperationExecute };
|
package/package.json
CHANGED