@hpcc-js/comms 2.91.3 → 2.92.1
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 +92 -101
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +107 -116
- 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 +107 -116
- 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/__tests__/workunit.js +1 -1
- package/lib-es6/__tests__/workunit.js.map +1 -1
- package/lib-es6/ecl/dfuWorkunit.js +8 -2
- package/lib-es6/ecl/dfuWorkunit.js.map +1 -1
- package/lib-es6/ecl/graph.js.map +1 -1
- package/lib-es6/ecl/query.js +5 -0
- package/lib-es6/ecl/query.js.map +1 -1
- package/lib-es6/ecl/result.js +2 -1
- package/lib-es6/ecl/result.js.map +1 -1
- package/lib-es6/ecl/scope.js +5 -0
- package/lib-es6/ecl/scope.js.map +1 -1
- package/lib-es6/ecl/sourceFile.js.map +1 -1
- package/lib-es6/ecl/timer.js +10 -0
- package/lib-es6/ecl/timer.js.map +1 -1
- package/lib-es6/ecl/workunit.js +39 -35
- package/lib-es6/ecl/workunit.js.map +1 -1
- package/lib-es6/services/wsWorkunits.js +14 -60
- package/lib-es6/services/wsWorkunits.js.map +1 -1
- package/lib-es6/services/wsdl/FileSpray/v1.26/FileSpray.js.map +1 -1
- package/lib-es6/services/wsdl/WsDfu/v1.65/WsDfu.js +3 -3
- package/lib-es6/services/wsdl/WsDfu/v1.65/WsDfu.js.map +1 -1
- package/lib-es6/services/wsdl/WsWorkunits/v1.97/WsWorkunits.js +376 -0
- package/lib-es6/services/wsdl/WsWorkunits/v1.97/WsWorkunits.js.map +1 -0
- package/lib-es6/services/wsdl/WsWorkunits/v1.99/WsWorkunits.js +376 -0
- package/lib-es6/services/wsdl/WsWorkunits/v1.99/WsWorkunits.js.map +1 -0
- package/lib-es6/services/wsdl/WsWorkunits/v2/WsWorkunits.js +376 -0
- package/lib-es6/services/wsdl/WsWorkunits/v2/WsWorkunits.js.map +1 -0
- package/package.json +7 -6
- package/src/__package__.ts +2 -2
- package/src/__tests__/workunit.ts +1 -1
- package/src/ecl/dfuWorkunit.ts +7 -2
- package/src/ecl/graph.ts +4 -4
- package/src/ecl/query.ts +17 -16
- package/src/ecl/result.ts +36 -17
- package/src/ecl/scope.ts +10 -9
- package/src/ecl/sourceFile.ts +5 -5
- package/src/ecl/timer.ts +6 -4
- package/src/ecl/workunit.ts +85 -85
- package/src/services/wsWorkunits.ts +41 -2661
- package/src/services/wsdl/FileSpray/v1.26/FileSpray.ts +55 -187
- package/src/services/wsdl/WsDfu/v1.65/WsDfu.ts +100 -369
- package/src/services/wsdl/WsWorkunits/v1.97/WsWorkunits.ts +3134 -0
- package/src/services/wsdl/WsWorkunits/v1.99/WsWorkunits.ts +3162 -0
- package/src/services/wsdl/WsWorkunits/v2/WsWorkunits.ts +3153 -0
- package/types/__package__.d.ts +2 -2
- package/types/ecl/dfuWorkunit.d.ts.map +1 -1
- package/types/ecl/graph.d.ts +4 -4
- package/types/ecl/graph.d.ts.map +1 -1
- package/types/ecl/query.d.ts +16 -15
- package/types/ecl/query.d.ts.map +1 -1
- package/types/ecl/result.d.ts +26 -7
- package/types/ecl/result.d.ts.map +1 -1
- package/types/ecl/scope.d.ts +10 -9
- package/types/ecl/scope.d.ts.map +1 -1
- package/types/ecl/sourceFile.d.ts +5 -5
- package/types/ecl/sourceFile.d.ts.map +1 -1
- package/types/ecl/timer.d.ts +6 -4
- package/types/ecl/timer.d.ts.map +1 -1
- package/types/ecl/workunit.d.ts +66 -65
- package/types/ecl/workunit.d.ts.map +1 -1
- package/types/services/wsWorkunits.d.ts +17 -2256
- package/types/services/wsWorkunits.d.ts.map +1 -1
- package/types/services/wsdl/FileSpray/v1.26/FileSpray.d.ts +53 -187
- package/types/services/wsdl/FileSpray/v1.26/FileSpray.d.ts.map +1 -1
- package/types/services/wsdl/WsDfu/v1.65/WsDfu.d.ts +100 -369
- package/types/services/wsdl/WsDfu/v1.65/WsDfu.d.ts.map +1 -1
- package/types/services/wsdl/WsWorkunits/v1.97/WsWorkunits.d.ts +2529 -0
- package/types/services/wsdl/WsWorkunits/v1.97/WsWorkunits.d.ts.map +1 -0
- package/types/services/wsdl/WsWorkunits/v1.99/WsWorkunits.d.ts +2555 -0
- package/types/services/wsdl/WsWorkunits/v1.99/WsWorkunits.d.ts.map +1 -0
- package/types/services/wsdl/WsWorkunits/v2/WsWorkunits.d.ts +2549 -0
- package/types/services/wsdl/WsWorkunits/v2/WsWorkunits.d.ts.map +1 -0
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/ecl/graph.d.ts +4 -4
- package/types-3.4/ecl/query.d.ts +16 -15
- package/types-3.4/ecl/result.d.ts +26 -7
- package/types-3.4/ecl/scope.d.ts +10 -9
- package/types-3.4/ecl/sourceFile.d.ts +5 -5
- package/types-3.4/ecl/timer.d.ts +6 -4
- package/types-3.4/ecl/workunit.d.ts +66 -65
- package/types-3.4/services/wsWorkunits.d.ts +17 -2256
- package/types-3.4/services/wsdl/FileSpray/v1.26/FileSpray.d.ts +53 -187
- package/types-3.4/services/wsdl/WsDfu/v1.65/WsDfu.d.ts +100 -369
- package/types-3.4/services/wsdl/WsWorkunits/v1.97/WsWorkunits.d.ts +2529 -0
- package/types-3.4/services/wsdl/WsWorkunits/v1.99/WsWorkunits.d.ts +2555 -0
- package/types-3.4/services/wsdl/WsWorkunits/v2/WsWorkunits.d.ts +2549 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Cache, StateCallback, StateEvents, StateObject, StatePropCallback, StringAnyMap, XMLNode } from "@hpcc-js/util";
|
|
1
|
+
import { Cache, RecursivePartial, StateCallback, StateEvents, StateObject, StatePropCallback, StringAnyMap, XMLNode } from "@hpcc-js/util";
|
|
2
2
|
import { IConnection, IOptions } from "../connection";
|
|
3
3
|
import { WsSMC } from "../services/wsSMC";
|
|
4
4
|
import * as WsTopology from "../services/wsTopology";
|
|
5
|
-
import
|
|
5
|
+
import { WsWorkunits, WUStateID, WorkunitsService, WUUpdate } from "../services/wsWorkunits";
|
|
6
6
|
import { ECLGraph, ScopeGraph, XGMMLGraph } from "./graph";
|
|
7
7
|
import { Resource } from "./resource";
|
|
8
8
|
import { Result } from "./result";
|
|
@@ -58,7 +58,7 @@ export interface DebugState {
|
|
|
58
58
|
[key: string]: any;
|
|
59
59
|
}
|
|
60
60
|
export interface IWorkunit {
|
|
61
|
-
ResultViews: WsWorkunits.
|
|
61
|
+
ResultViews: WsWorkunits.ResultViews;
|
|
62
62
|
HelpersCount: number;
|
|
63
63
|
}
|
|
64
64
|
export interface IDebugWorkunit {
|
|
@@ -71,49 +71,49 @@ export interface ITimeElapsed {
|
|
|
71
71
|
finish: string;
|
|
72
72
|
}
|
|
73
73
|
export type WorkunitEvents = "completed" | StateEvents;
|
|
74
|
-
export type UWorkunitState = WsWorkunits.
|
|
75
|
-
export type IWorkunitState = WsWorkunits.
|
|
76
|
-
export declare class Workunit extends StateObject<UWorkunitState, IWorkunitState> implements WsWorkunits.
|
|
77
|
-
connection:
|
|
74
|
+
export type UWorkunitState = WsWorkunits.ECLWorkunit & WsWorkunits.Workunit & WsSMC.ActiveWorkunit & IWorkunit & IDebugWorkunit;
|
|
75
|
+
export type IWorkunitState = WsWorkunits.ECLWorkunit | WsWorkunits.Workunit | WsSMC.ActiveWorkunit | IWorkunit | IDebugWorkunit;
|
|
76
|
+
export declare class Workunit extends StateObject<UWorkunitState, IWorkunitState> implements WsWorkunits.Workunit {
|
|
77
|
+
connection: WorkunitsService;
|
|
78
78
|
topologyConnection: WsTopology.TopologyService;
|
|
79
79
|
readonly BaseUrl: string;
|
|
80
80
|
private _debugMode;
|
|
81
81
|
private _debugAllGraph;
|
|
82
82
|
private _submitAction;
|
|
83
|
-
readonly properties: WsWorkunits.
|
|
83
|
+
readonly properties: WsWorkunits.ECLWorkunit & WsWorkunits.Workunit;
|
|
84
84
|
readonly Wuid: string;
|
|
85
85
|
readonly Owner: string;
|
|
86
86
|
readonly Cluster: string;
|
|
87
87
|
readonly Jobname: string;
|
|
88
88
|
readonly Description: string;
|
|
89
89
|
readonly ActionEx: string;
|
|
90
|
-
readonly StateID:
|
|
90
|
+
readonly StateID: WUStateID;
|
|
91
91
|
readonly State: string;
|
|
92
92
|
readonly Protected: boolean;
|
|
93
|
-
readonly Exceptions: WsWorkunits.
|
|
94
|
-
readonly ResultViews: WsWorkunits.
|
|
93
|
+
readonly Exceptions: WsWorkunits.Exceptions2;
|
|
94
|
+
readonly ResultViews: WsWorkunits.ResultViews;
|
|
95
95
|
private _resultCache;
|
|
96
96
|
readonly ResultCount: number;
|
|
97
|
-
readonly Results: WsWorkunits.
|
|
97
|
+
readonly Results: WsWorkunits.Results;
|
|
98
98
|
readonly CResults: Result[];
|
|
99
99
|
readonly SequenceResults: {
|
|
100
100
|
[key: number]: Result;
|
|
101
101
|
};
|
|
102
|
-
readonly Timers: WsWorkunits.
|
|
102
|
+
readonly Timers: WsWorkunits.Timers;
|
|
103
103
|
readonly CTimers: Timer[];
|
|
104
104
|
private _graphCache;
|
|
105
105
|
readonly GraphCount: number;
|
|
106
|
-
readonly Graphs: WsWorkunits.
|
|
106
|
+
readonly Graphs: WsWorkunits.Graphs;
|
|
107
107
|
readonly CGraphs: ECLGraph[];
|
|
108
|
-
readonly ThorLogList: WsWorkunits.
|
|
108
|
+
readonly ThorLogList: WsWorkunits.ThorLogList;
|
|
109
109
|
readonly ResourceURLCount: number;
|
|
110
|
-
readonly ResourceURLs: WsWorkunits.
|
|
110
|
+
readonly ResourceURLs: WsWorkunits.ResourceURLs;
|
|
111
111
|
readonly CResourceURLs: Resource[];
|
|
112
112
|
readonly TotalClusterTime: string;
|
|
113
113
|
readonly DateTimeScheduled: string;
|
|
114
114
|
readonly IsPausing: boolean;
|
|
115
115
|
readonly ThorLCR: boolean;
|
|
116
|
-
readonly ApplicationValues: WsWorkunits.
|
|
116
|
+
readonly ApplicationValues: WsWorkunits.ApplicationValues;
|
|
117
117
|
readonly HasArchiveQuery: boolean;
|
|
118
118
|
readonly StateEx: string;
|
|
119
119
|
readonly PriorityClass: number;
|
|
@@ -121,21 +121,20 @@ export declare class Workunit extends StateObject<UWorkunitState, IWorkunitState
|
|
|
121
121
|
readonly Snapshot: string;
|
|
122
122
|
readonly ResultLimit: number;
|
|
123
123
|
readonly EventSchedule: number;
|
|
124
|
-
readonly
|
|
125
|
-
readonly Query: WsWorkunits.WUInfo.Query;
|
|
124
|
+
readonly Query: WsWorkunits.Query;
|
|
126
125
|
readonly HelpersCount: number;
|
|
127
|
-
readonly Helpers: WsWorkunits.
|
|
128
|
-
readonly DebugValues: WsWorkunits.
|
|
129
|
-
readonly AllowedClusters: WsWorkunits.
|
|
126
|
+
readonly Helpers: WsWorkunits.Helpers;
|
|
127
|
+
readonly DebugValues: WsWorkunits.DebugValues;
|
|
128
|
+
readonly AllowedClusters: WsWorkunits.AllowedClusters;
|
|
130
129
|
readonly ErrorCount: number;
|
|
131
130
|
readonly WarningCount: number;
|
|
132
131
|
readonly InfoCount: number;
|
|
133
132
|
readonly AlertCount: number;
|
|
134
133
|
readonly SourceFileCount: number;
|
|
135
|
-
readonly SourceFiles: WsWorkunits.
|
|
134
|
+
readonly SourceFiles: WsWorkunits.SourceFiles;
|
|
136
135
|
readonly CSourceFiles: SourceFile[];
|
|
137
136
|
readonly VariableCount: number;
|
|
138
|
-
readonly Variables: WsWorkunits.
|
|
137
|
+
readonly Variables: WsWorkunits.Variables;
|
|
139
138
|
readonly TimerCount: number;
|
|
140
139
|
readonly HasDebugValue: boolean;
|
|
141
140
|
readonly ApplicationValueCount: number;
|
|
@@ -154,8 +153,8 @@ export declare class Workunit extends StateObject<UWorkunitState, IWorkunitState
|
|
|
154
153
|
readonly Scope: string;
|
|
155
154
|
readonly AbortBy: string;
|
|
156
155
|
readonly AbortTime: string;
|
|
157
|
-
readonly Workflows: WsWorkunits.
|
|
158
|
-
readonly TimingData: WsWorkunits.
|
|
156
|
+
readonly Workflows: WsWorkunits.Workflows;
|
|
157
|
+
readonly TimingData: WsWorkunits.TimingData;
|
|
159
158
|
readonly HelpersDesc: string;
|
|
160
159
|
readonly GraphsDesc: string;
|
|
161
160
|
readonly SourceFilesDesc: string;
|
|
@@ -165,71 +164,73 @@ export declare class Workunit extends StateObject<UWorkunitState, IWorkunitState
|
|
|
165
164
|
readonly DebugValuesDesc: string;
|
|
166
165
|
readonly ApplicationValuesDesc: string;
|
|
167
166
|
readonly WorkflowsDesc: string;
|
|
168
|
-
readonly ServiceNames: WsWorkunits.
|
|
167
|
+
readonly ServiceNames: WsWorkunits.ServiceNames;
|
|
169
168
|
readonly CompileCost: number;
|
|
170
169
|
readonly ExecuteCost: number;
|
|
171
170
|
readonly FileAccessCost: number;
|
|
171
|
+
readonly NoAccess: boolean;
|
|
172
|
+
readonly ECLWUProcessList: WsWorkunits.ECLWUProcessList;
|
|
172
173
|
static create(optsConnection: IOptions | IConnection): Promise<Workunit>;
|
|
173
174
|
static attach(optsConnection: IOptions | IConnection, wuid: string, state?: IWorkunitState): Workunit;
|
|
174
175
|
static existsLocal(baseUrl: string, wuid: string): boolean;
|
|
175
176
|
static submit(server: IOptions | IConnection, target: string, ecl: string, compileOnly?: boolean): Promise<Workunit>;
|
|
176
177
|
static compile(server: IOptions | IConnection, target: string, ecl: string): Promise<Workunit>;
|
|
177
|
-
static query(server: IOptions | IConnection, opts: WsWorkunits.WUQuery
|
|
178
|
+
static query(server: IOptions | IConnection, opts: Partial<WsWorkunits.WUQuery>): Promise<Workunit[]>;
|
|
178
179
|
protected constructor(optsConnection: IOptions | IConnection, wuid?: string);
|
|
179
180
|
clearState(wuid?: string): void;
|
|
180
|
-
update(request: Partial<WsWorkunits.WUUpdate
|
|
181
|
-
submit(_cluster?: string, action?:
|
|
181
|
+
update(request: Partial<WsWorkunits.WUUpdate>): Promise<Workunit>;
|
|
182
|
+
submit(_cluster?: string, action?: WUUpdate.Action, resultLimit?: number): Promise<Workunit>;
|
|
182
183
|
isComplete(): boolean;
|
|
183
184
|
isFailed(): boolean;
|
|
184
185
|
isDeleted(): boolean;
|
|
185
186
|
isDebugging(): boolean;
|
|
186
187
|
isRunning(): boolean;
|
|
187
|
-
setToFailed(): Promise<WsWorkunits.
|
|
188
|
-
pause(): Promise<WsWorkunits.
|
|
189
|
-
pauseNow(): Promise<WsWorkunits.
|
|
190
|
-
resume(): Promise<WsWorkunits.
|
|
191
|
-
abort(): Promise<WsWorkunits.
|
|
192
|
-
protect(): Promise<WsWorkunits.
|
|
193
|
-
unprotect(): Promise<WsWorkunits.
|
|
194
|
-
delete(): Promise<WsWorkunits.
|
|
195
|
-
restore(): Promise<WsWorkunits.
|
|
196
|
-
deschedule(): Promise<WsWorkunits.
|
|
197
|
-
reschedule(): Promise<WsWorkunits.
|
|
188
|
+
setToFailed(): Promise<WsWorkunits.WUActionResponse>;
|
|
189
|
+
pause(): Promise<WsWorkunits.WUActionResponse>;
|
|
190
|
+
pauseNow(): Promise<WsWorkunits.WUActionResponse>;
|
|
191
|
+
resume(): Promise<WsWorkunits.WUActionResponse>;
|
|
192
|
+
abort(): Promise<WsWorkunits.WUActionResponse>;
|
|
193
|
+
protect(): Promise<WsWorkunits.WUActionResponse>;
|
|
194
|
+
unprotect(): Promise<WsWorkunits.WUActionResponse>;
|
|
195
|
+
delete(): Promise<WsWorkunits.WUActionResponse>;
|
|
196
|
+
restore(): Promise<WsWorkunits.WUActionResponse>;
|
|
197
|
+
deschedule(): Promise<WsWorkunits.WUActionResponse>;
|
|
198
|
+
reschedule(): Promise<WsWorkunits.WUActionResponse>;
|
|
198
199
|
resubmit(): Promise<Workunit>;
|
|
199
200
|
clone(): Promise<Workunit>;
|
|
200
201
|
refreshState(): Promise<this>;
|
|
201
|
-
refreshInfo(request?: Partial<WsWorkunits.WUInfo
|
|
202
|
+
refreshInfo(request?: Partial<WsWorkunits.WUInfo>): Promise<this>;
|
|
202
203
|
refreshDebug(): Promise<this>;
|
|
203
|
-
refresh(full?: boolean, request?: Partial<WsWorkunits.WUInfo
|
|
204
|
-
eclExceptions(): WsWorkunits.
|
|
204
|
+
refresh(full?: boolean, request?: Partial<WsWorkunits.WUInfo>): Promise<this>;
|
|
205
|
+
eclExceptions(): WsWorkunits.ECLException[];
|
|
205
206
|
fetchArchive(): Promise<string>;
|
|
206
|
-
fetchECLExceptions(): Promise<WsWorkunits.
|
|
207
|
+
fetchECLExceptions(): Promise<WsWorkunits.ECLException[]>;
|
|
207
208
|
fetchResults(): Promise<Result[]>;
|
|
208
209
|
fetchGraphs(): Promise<ECLGraph[]>;
|
|
209
|
-
fetchQuery(): Promise<WsWorkunits.
|
|
210
|
-
fetchHelpers(): Promise<WsWorkunits.
|
|
210
|
+
fetchQuery(): Promise<WsWorkunits.Query>;
|
|
211
|
+
fetchHelpers(): Promise<WsWorkunits.ECLHelpFile[]>;
|
|
211
212
|
fetchAllowedClusters(): Promise<string[]>;
|
|
212
213
|
fetchTotalClusterTime(): Promise<string>;
|
|
213
214
|
fetchServiceNames(): Promise<string[]>;
|
|
214
|
-
fetchDetailsMeta(request?:
|
|
215
|
-
fetchDetailsRaw(request?:
|
|
216
|
-
normalizeDetails(meta: WsWorkunits.
|
|
217
|
-
meta: WsWorkunits.
|
|
215
|
+
fetchDetailsMeta(request?: RecursivePartial<WsWorkunits.WUDetailsMeta>): Promise<WsWorkunits.WUDetailsMetaResponse>;
|
|
216
|
+
fetchDetailsRaw(request?: RecursivePartial<WsWorkunits.WUDetails>): Promise<WsWorkunits.Scope[]>;
|
|
217
|
+
normalizeDetails(meta: WsWorkunits.WUDetailsMetaResponse, scopes: WsWorkunits.Scope[]): {
|
|
218
|
+
meta: WsWorkunits.WUDetailsMetaResponse;
|
|
218
219
|
columns: {
|
|
219
220
|
[id: string]: any;
|
|
220
221
|
};
|
|
221
222
|
data: IScope[];
|
|
222
223
|
};
|
|
223
|
-
fetchDetailsNormalized(request?:
|
|
224
|
-
meta: WsWorkunits.
|
|
224
|
+
fetchDetailsNormalized(request?: RecursivePartial<WsWorkunits.WUDetails>): Promise<{
|
|
225
|
+
meta: WsWorkunits.WUDetailsMetaResponse;
|
|
225
226
|
columns: {
|
|
226
227
|
[id: string]: any;
|
|
227
228
|
};
|
|
228
229
|
data: IScope[];
|
|
229
230
|
}>;
|
|
230
|
-
fetchInfo(request?: Partial<WsWorkunits.WUInfo
|
|
231
|
-
fetchDetails(request?:
|
|
232
|
-
fetchDetailsHierarchy(request?: Partial<WsWorkunits.WUDetails
|
|
231
|
+
fetchInfo(request?: Partial<WsWorkunits.WUInfo>): Promise<WsWorkunits.WUInfoResponse>;
|
|
232
|
+
fetchDetails(request?: RecursivePartial<WsWorkunits.WUDetails>): Promise<Scope[]>;
|
|
233
|
+
fetchDetailsHierarchy(request?: Partial<WsWorkunits.WUDetails>): Promise<Scope[]>;
|
|
233
234
|
fetchGraphDetails(graphIDs: string[], rootTypes: string[]): Promise<BaseScope[]>;
|
|
234
235
|
fetchScopeGraphs(graphIDs?: string[]): Promise<ScopeGraph>;
|
|
235
236
|
fetchTimeElapsed(): Promise<ITimeElapsed[]>;
|
|
@@ -238,15 +239,15 @@ export declare class Workunit extends StateObject<UWorkunitState, IWorkunitState
|
|
|
238
239
|
on(eventID: WorkunitEvents, propIDorCallback: StateCallback | keyof UWorkunitState, callback?: StatePropCallback): this;
|
|
239
240
|
watchUntilComplete(callback?: StateCallback): Promise<this>;
|
|
240
241
|
watchUntilRunning(callback?: StateCallback): Promise<this>;
|
|
241
|
-
protected WUQuery(_request?: Partial<WsWorkunits.WUQuery
|
|
242
|
-
protected WUCreate(): Promise<WsWorkunits.
|
|
243
|
-
protected WUInfo(_request?: Partial<WsWorkunits.WUInfo
|
|
244
|
-
protected WUResubmit(request: Partial<WsWorkunits.WUResubmit
|
|
245
|
-
protected WUDetailsMeta(request: Partial<WsWorkunits.WUDetailsMeta
|
|
246
|
-
protected WUDetails(request:
|
|
247
|
-
protected WUAction(actionType: WsWorkunits.
|
|
248
|
-
publish(name?: string): Promise<WsWorkunits.
|
|
249
|
-
publishEx(request: Partial<WsWorkunits.
|
|
242
|
+
protected WUQuery(_request?: Partial<WsWorkunits.WUQuery>): Promise<WsWorkunits.WUQueryResponse>;
|
|
243
|
+
protected WUCreate(): Promise<WsWorkunits.WUCreateResponse>;
|
|
244
|
+
protected WUInfo(_request?: Partial<WsWorkunits.WUInfo>): Promise<WsWorkunits.WUInfoResponse>;
|
|
245
|
+
protected WUResubmit(request: Partial<WsWorkunits.WUResubmit>): Promise<WsWorkunits.WUResubmitResponse>;
|
|
246
|
+
protected WUDetailsMeta(request: Partial<WsWorkunits.WUDetailsMeta>): Promise<WsWorkunits.WUDetailsMetaResponse>;
|
|
247
|
+
protected WUDetails(request: RecursivePartial<WsWorkunits.WUDetails>): Promise<WsWorkunits.WUDetailsResponse>;
|
|
248
|
+
protected WUAction(actionType: WsWorkunits.ECLWUActions): Promise<WsWorkunits.WUActionResponse>;
|
|
249
|
+
publish(name?: string): Promise<WsWorkunits.WUPublishWorkunitResponse>;
|
|
250
|
+
publishEx(request: Partial<WsWorkunits.WUPublishWorkunit>): Promise<WsWorkunits.WUPublishWorkunitResponse>;
|
|
250
251
|
protected WUCDebug(command: string, opts?: any): Promise<XMLNode | null>;
|
|
251
252
|
debug(command: string, opts?: object): Promise<XMLNode>;
|
|
252
253
|
debugStatus(): Promise<XMLNode>;
|