@hpcc-js/comms 2.80.0 → 2.81.0
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/dist/index.es6.js +7 -2
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.node.js +7 -2
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.min.js +1 -1
- package/dist/index.node.min.js.map +1 -1
- package/lib-es6/__package__.js +2 -2
- package/lib-es6/ecl/workunit.js +5 -0
- package/lib-es6/ecl/workunit.js.map +1 -1
- package/lib-es6/services/wsWorkunits.js.map +1 -1
- package/package.json +3 -3
- package/src/__package__.ts +2 -2
- package/src/ecl/workunit.ts +1 -0
- package/src/services/wsWorkunits.ts +2 -0
- package/types/__package__.d.ts +2 -2
- package/types/ecl/workunit.d.ts +1 -0
- package/types/ecl/workunit.d.ts.map +1 -1
- package/types/services/wsWorkunits.d.ts +2 -0
- package/types/services/wsWorkunits.d.ts.map +1 -1
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/ecl/workunit.d.ts +1 -0
- package/types-3.4/services/wsWorkunits.d.ts +2 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const PKG_NAME = "@hpcc-js/comms";
|
|
2
|
-
export declare const PKG_VERSION = "2.
|
|
3
|
-
export declare const BUILD_VERSION = "2.104.
|
|
2
|
+
export declare const PKG_VERSION = "2.81.0";
|
|
3
|
+
export declare const BUILD_VERSION = "2.104.13";
|
|
4
4
|
//# sourceMappingURL=__package__.d.ts.map
|
|
@@ -129,6 +129,7 @@ export declare class Workunit extends StateObject<UWorkunitState, IWorkunitState
|
|
|
129
129
|
readonly ApplicationValuesDesc: string;
|
|
130
130
|
readonly WorkflowsDesc: string;
|
|
131
131
|
readonly ServiceNames: WsWorkunits.WUInfo.ServiceNames;
|
|
132
|
+
readonly CompileCost: number;
|
|
132
133
|
readonly ExecuteCost: number;
|
|
133
134
|
readonly FileAccessCost: number;
|
|
134
135
|
static create(optsConnection: IOptions | IConnection): Promise<Workunit>;
|
|
@@ -310,6 +310,7 @@ export declare namespace WUInfo {
|
|
|
310
310
|
WorkflowCount: number;
|
|
311
311
|
HelpersCount: number;
|
|
312
312
|
ServiceNames?: ServiceNames;
|
|
313
|
+
CompileCost?: number;
|
|
313
314
|
ExecuteCost?: number;
|
|
314
315
|
FileAccessCost?: number;
|
|
315
316
|
}
|
|
@@ -614,6 +615,7 @@ export declare namespace WUQuery {
|
|
|
614
615
|
DebugValueCount: number;
|
|
615
616
|
WorkflowCount: number;
|
|
616
617
|
HelpersCount: number;
|
|
618
|
+
CompileCost?: number;
|
|
617
619
|
ExecuteCost?: number;
|
|
618
620
|
FileAccessCost?: number;
|
|
619
621
|
}
|