mdt-client 31.3.37 → 31.3.38
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/package.json
CHANGED
|
@@ -4,7 +4,7 @@ import { IListButtonExtendPipelineService } from "../services/IListButtonExtendP
|
|
|
4
4
|
import { getValued } from "../../../../helpers/utils/valued/getValued";
|
|
5
5
|
import { AnyObject } from "../../../../helpers/types";
|
|
6
6
|
import { EventEmitter } from "../../../../helpers/events/EventEmitter";
|
|
7
|
-
import { Pipeline } from "../../../../helpers/pipeline/Pipeline";
|
|
7
|
+
import { Pipeline, PipelineSync } from "../../../../helpers/pipeline/Pipeline";
|
|
8
8
|
import { ImmutableArgPipeline } from "../../../../helpers/pipeline/ImmutableArgPipeline";
|
|
9
9
|
import { MdtDateStringFormat } from "mdtScripts/helpers/dateUtils";
|
|
10
10
|
export interface IUtilsFacade {
|
|
@@ -217,6 +217,7 @@ export interface IUtilsFacade {
|
|
|
217
217
|
*/
|
|
218
218
|
EventEmitter: typeof EventEmitter;
|
|
219
219
|
Pipeline: typeof Pipeline;
|
|
220
|
+
PipelineSync: typeof PipelineSync;
|
|
220
221
|
ImmutableArgPipeline: typeof ImmutableArgPipeline;
|
|
221
222
|
}
|
|
222
223
|
export type IsDateEqualOptions = {
|