@hpcc-js/comms 2.95.0 → 2.96.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.
@@ -0,0 +1,158 @@
1
+ import { IConnection, IOptions } from "../../../../connection";
2
+ import { Service } from "../../../../espConnection";
3
+ export declare namespace WsDali {
4
+ type unsignedInt = number;
5
+ interface AddRequest {
6
+ Path?: string;
7
+ Value?: string;
8
+ }
9
+ interface Exception {
10
+ Code: string;
11
+ Audience: string;
12
+ Source: string;
13
+ Message: string;
14
+ }
15
+ interface Exceptions {
16
+ Source: string;
17
+ Exception: Exception[];
18
+ }
19
+ interface ResultResponse {
20
+ Exceptions: Exceptions;
21
+ Result: string;
22
+ }
23
+ interface ClearTraceTransactionsRequest {
24
+ }
25
+ interface CountRequest {
26
+ Path?: string;
27
+ }
28
+ interface CountResponse {
29
+ Exceptions: Exceptions;
30
+ Result: unsignedInt;
31
+ }
32
+ interface DFSCheckRequest {
33
+ }
34
+ interface DFSExistsRequest {
35
+ FileName?: string;
36
+ }
37
+ interface BooleanResponse {
38
+ Exceptions: Exceptions;
39
+ Result: boolean;
40
+ }
41
+ interface DFSLSRequest {
42
+ Name?: string;
43
+ PathAndNameOnly?: boolean;
44
+ IncludeSubFileInfo?: boolean;
45
+ Recursively?: boolean;
46
+ }
47
+ interface DeleteRequest {
48
+ Path?: string;
49
+ }
50
+ interface DisconnectClientConnectionRequest {
51
+ Endpoint?: string;
52
+ }
53
+ interface GetClientsRequest {
54
+ }
55
+ interface GetConnectionsRequest {
56
+ }
57
+ interface GetDFSCSVRequest {
58
+ LogicalNameMask?: string;
59
+ }
60
+ interface GetDFSMapRequest {
61
+ FileName?: string;
62
+ }
63
+ interface GetDFSParentsRequest {
64
+ FileName?: string;
65
+ }
66
+ interface GetLogicalFileRequest {
67
+ FileName?: string;
68
+ }
69
+ interface GetLogicalFilePartRequest {
70
+ FileName?: string;
71
+ PartNumber?: unsignedInt;
72
+ }
73
+ interface GetProtectedListRequest {
74
+ FileName?: string;
75
+ CallerId?: string;
76
+ }
77
+ interface GetSDSStatsRequest {
78
+ }
79
+ interface GetSDSSubscribersRequest {
80
+ }
81
+ interface GetValueRequest {
82
+ Path?: string;
83
+ }
84
+ interface ImportRequest {
85
+ XML?: string;
86
+ Path?: string;
87
+ Add?: boolean;
88
+ }
89
+ interface ListSDSLocksRequest {
90
+ }
91
+ interface WSDaliPingRequest {
92
+ }
93
+ interface WSDaliPingResponse {
94
+ }
95
+ interface SaveSDSStoreRequest {
96
+ }
97
+ interface SetLogicalFilePartAttrRequest {
98
+ FileName?: string;
99
+ PartNumber?: unsignedInt;
100
+ Attr?: string;
101
+ Value?: string;
102
+ }
103
+ interface SetProtectedRequest {
104
+ FileName?: string;
105
+ CallerId?: string;
106
+ }
107
+ interface SetTraceSlowTransactionsRequest {
108
+ SlowThresholdMS?: unsignedInt;
109
+ }
110
+ interface SetTraceTransactionsRequest {
111
+ }
112
+ interface SetUnprotectedRequest {
113
+ FileName?: string;
114
+ CallerId?: string;
115
+ }
116
+ interface SetValueRequest {
117
+ Path?: string;
118
+ Value?: string;
119
+ }
120
+ interface UnlockSDSLockRequest {
121
+ ConnectionID?: string;
122
+ Close?: boolean;
123
+ }
124
+ }
125
+ export declare class DaliServiceBase extends Service {
126
+ constructor(optsConnection: IOptions | IConnection);
127
+ Add(request: Partial<WsDali.AddRequest>): Promise<WsDali.ResultResponse>;
128
+ ClearTraceTransactions(request: Partial<WsDali.ClearTraceTransactionsRequest>): Promise<WsDali.ResultResponse>;
129
+ Count(request: Partial<WsDali.CountRequest>): Promise<WsDali.CountResponse>;
130
+ DFSCheck(request: Partial<WsDali.DFSCheckRequest>): Promise<WsDali.ResultResponse>;
131
+ DFSExists(request: Partial<WsDali.DFSExistsRequest>): Promise<WsDali.BooleanResponse>;
132
+ DFSLS(request: Partial<WsDali.DFSLSRequest>): Promise<WsDali.ResultResponse>;
133
+ Delete(request: Partial<WsDali.DeleteRequest>): Promise<WsDali.ResultResponse>;
134
+ DisconnectClientConnection(request: Partial<WsDali.DisconnectClientConnectionRequest>): Promise<WsDali.ResultResponse>;
135
+ GetClients(request: Partial<WsDali.GetClientsRequest>): Promise<WsDali.ResultResponse>;
136
+ GetConnections(request: Partial<WsDali.GetConnectionsRequest>): Promise<WsDali.ResultResponse>;
137
+ GetDFSCSV(request: Partial<WsDali.GetDFSCSVRequest>): Promise<WsDali.ResultResponse>;
138
+ GetDFSMap(request: Partial<WsDali.GetDFSMapRequest>): Promise<WsDali.ResultResponse>;
139
+ GetDFSParents(request: Partial<WsDali.GetDFSParentsRequest>): Promise<WsDali.ResultResponse>;
140
+ GetLogicalFile(request: Partial<WsDali.GetLogicalFileRequest>): Promise<WsDali.ResultResponse>;
141
+ GetLogicalFilePart(request: Partial<WsDali.GetLogicalFilePartRequest>): Promise<WsDali.ResultResponse>;
142
+ GetProtectedList(request: Partial<WsDali.GetProtectedListRequest>): Promise<WsDali.ResultResponse>;
143
+ GetSDSStats(request: Partial<WsDali.GetSDSStatsRequest>): Promise<WsDali.ResultResponse>;
144
+ GetSDSSubscribers(request: Partial<WsDali.GetSDSSubscribersRequest>): Promise<WsDali.ResultResponse>;
145
+ GetValue(request: Partial<WsDali.GetValueRequest>): Promise<WsDali.ResultResponse>;
146
+ Import(request: Partial<WsDali.ImportRequest>): Promise<WsDali.ResultResponse>;
147
+ ListSDSLocks(request: Partial<WsDali.ListSDSLocksRequest>): Promise<WsDali.ResultResponse>;
148
+ Ping(request: Partial<WsDali.WSDaliPingRequest>): Promise<WsDali.WSDaliPingResponse>;
149
+ SaveSDSStore(request: Partial<WsDali.SaveSDSStoreRequest>): Promise<WsDali.ResultResponse>;
150
+ SetLogicalFilePartAttr(request: Partial<WsDali.SetLogicalFilePartAttrRequest>): Promise<WsDali.ResultResponse>;
151
+ SetProtected(request: Partial<WsDali.SetProtectedRequest>): Promise<WsDali.ResultResponse>;
152
+ SetTraceSlowTransactions(request: Partial<WsDali.SetTraceSlowTransactionsRequest>): Promise<WsDali.ResultResponse>;
153
+ SetTraceTransactions(request: Partial<WsDali.SetTraceTransactionsRequest>): Promise<WsDali.ResultResponse>;
154
+ SetUnprotected(request: Partial<WsDali.SetUnprotectedRequest>): Promise<WsDali.ResultResponse>;
155
+ SetValue(request: Partial<WsDali.SetValueRequest>): Promise<WsDali.ResultResponse>;
156
+ UnlockSDSLock(request: Partial<WsDali.UnlockSDSLockRequest>): Promise<WsDali.ResultResponse>;
157
+ }
158
+ //# sourceMappingURL=WsDali.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WsDali.d.ts","sourceRoot":"","sources":["../../../../../src/services/wsdl/WsDali/v1.07/WsDali.ts"],"names":[],"mappings":"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"}
@@ -1,4 +1,4 @@
1
1
  export declare const PKG_NAME = "@hpcc-js/comms";
2
- export declare const PKG_VERSION = "2.95.0";
3
- export declare const BUILD_VERSION = "2.106.3";
2
+ export declare const PKG_VERSION = "2.96.0";
3
+ export declare const BUILD_VERSION = "2.106.9";
4
4
  //# sourceMappingURL=__package__.d.ts.map
@@ -1,4 +1,4 @@
1
- import { DaliServiceBase, WsDali } from "./wsdl/WsDali/v1.04/WsDali";
1
+ import { DaliServiceBase, WsDali } from "./wsdl/WsDali/v1.07/WsDali";
2
2
  export { WsDali };
3
3
  export declare class DaliService extends DaliServiceBase {
4
4
  }
@@ -46,7 +46,7 @@ export declare class WorkunitsService extends WorkunitsServiceBase {
46
46
  opts(): IOptions;
47
47
  connection(): ESPConnection;
48
48
  Ping(): Promise<WsWorkunits.WsWorkunitsPingResponse>;
49
- WUQuery(request?: Partial<WsWorkunits.WUQuery>): Promise<WsWorkunits.WUQueryResponse>;
49
+ WUQuery(request?: Partial<WsWorkunits.WUQuery>, abortSignal?: AbortSignal): Promise<WsWorkunits.WUQueryResponse>;
50
50
  WUInfo(_request: Partial<WsWorkunits.WUInfo>): Promise<WsWorkunits.WUInfoResponse>;
51
51
  WUCreate(): Promise<WsWorkunits.WUCreateResponse>;
52
52
  WUUpdate(request: Partial<WsWorkunits.WUUpdate>): Promise<WsWorkunits.WUUpdateResponse>;
@@ -0,0 +1,158 @@
1
+ import { IConnection, IOptions } from "../../../../connection";
2
+ import { Service } from "../../../../espConnection";
3
+ export declare namespace WsDali {
4
+ type unsignedInt = number;
5
+ interface AddRequest {
6
+ Path?: string;
7
+ Value?: string;
8
+ }
9
+ interface Exception {
10
+ Code: string;
11
+ Audience: string;
12
+ Source: string;
13
+ Message: string;
14
+ }
15
+ interface Exceptions {
16
+ Source: string;
17
+ Exception: Exception[];
18
+ }
19
+ interface ResultResponse {
20
+ Exceptions: Exceptions;
21
+ Result: string;
22
+ }
23
+ interface ClearTraceTransactionsRequest {
24
+ }
25
+ interface CountRequest {
26
+ Path?: string;
27
+ }
28
+ interface CountResponse {
29
+ Exceptions: Exceptions;
30
+ Result: unsignedInt;
31
+ }
32
+ interface DFSCheckRequest {
33
+ }
34
+ interface DFSExistsRequest {
35
+ FileName?: string;
36
+ }
37
+ interface BooleanResponse {
38
+ Exceptions: Exceptions;
39
+ Result: boolean;
40
+ }
41
+ interface DFSLSRequest {
42
+ Name?: string;
43
+ PathAndNameOnly?: boolean;
44
+ IncludeSubFileInfo?: boolean;
45
+ Recursively?: boolean;
46
+ }
47
+ interface DeleteRequest {
48
+ Path?: string;
49
+ }
50
+ interface DisconnectClientConnectionRequest {
51
+ Endpoint?: string;
52
+ }
53
+ interface GetClientsRequest {
54
+ }
55
+ interface GetConnectionsRequest {
56
+ }
57
+ interface GetDFSCSVRequest {
58
+ LogicalNameMask?: string;
59
+ }
60
+ interface GetDFSMapRequest {
61
+ FileName?: string;
62
+ }
63
+ interface GetDFSParentsRequest {
64
+ FileName?: string;
65
+ }
66
+ interface GetLogicalFileRequest {
67
+ FileName?: string;
68
+ }
69
+ interface GetLogicalFilePartRequest {
70
+ FileName?: string;
71
+ PartNumber?: unsignedInt;
72
+ }
73
+ interface GetProtectedListRequest {
74
+ FileName?: string;
75
+ CallerId?: string;
76
+ }
77
+ interface GetSDSStatsRequest {
78
+ }
79
+ interface GetSDSSubscribersRequest {
80
+ }
81
+ interface GetValueRequest {
82
+ Path?: string;
83
+ }
84
+ interface ImportRequest {
85
+ XML?: string;
86
+ Path?: string;
87
+ Add?: boolean;
88
+ }
89
+ interface ListSDSLocksRequest {
90
+ }
91
+ interface WSDaliPingRequest {
92
+ }
93
+ interface WSDaliPingResponse {
94
+ }
95
+ interface SaveSDSStoreRequest {
96
+ }
97
+ interface SetLogicalFilePartAttrRequest {
98
+ FileName?: string;
99
+ PartNumber?: unsignedInt;
100
+ Attr?: string;
101
+ Value?: string;
102
+ }
103
+ interface SetProtectedRequest {
104
+ FileName?: string;
105
+ CallerId?: string;
106
+ }
107
+ interface SetTraceSlowTransactionsRequest {
108
+ SlowThresholdMS?: unsignedInt;
109
+ }
110
+ interface SetTraceTransactionsRequest {
111
+ }
112
+ interface SetUnprotectedRequest {
113
+ FileName?: string;
114
+ CallerId?: string;
115
+ }
116
+ interface SetValueRequest {
117
+ Path?: string;
118
+ Value?: string;
119
+ }
120
+ interface UnlockSDSLockRequest {
121
+ ConnectionID?: string;
122
+ Close?: boolean;
123
+ }
124
+ }
125
+ export declare class DaliServiceBase extends Service {
126
+ constructor(optsConnection: IOptions | IConnection);
127
+ Add(request: Partial<WsDali.AddRequest>): Promise<WsDali.ResultResponse>;
128
+ ClearTraceTransactions(request: Partial<WsDali.ClearTraceTransactionsRequest>): Promise<WsDali.ResultResponse>;
129
+ Count(request: Partial<WsDali.CountRequest>): Promise<WsDali.CountResponse>;
130
+ DFSCheck(request: Partial<WsDali.DFSCheckRequest>): Promise<WsDali.ResultResponse>;
131
+ DFSExists(request: Partial<WsDali.DFSExistsRequest>): Promise<WsDali.BooleanResponse>;
132
+ DFSLS(request: Partial<WsDali.DFSLSRequest>): Promise<WsDali.ResultResponse>;
133
+ Delete(request: Partial<WsDali.DeleteRequest>): Promise<WsDali.ResultResponse>;
134
+ DisconnectClientConnection(request: Partial<WsDali.DisconnectClientConnectionRequest>): Promise<WsDali.ResultResponse>;
135
+ GetClients(request: Partial<WsDali.GetClientsRequest>): Promise<WsDali.ResultResponse>;
136
+ GetConnections(request: Partial<WsDali.GetConnectionsRequest>): Promise<WsDali.ResultResponse>;
137
+ GetDFSCSV(request: Partial<WsDali.GetDFSCSVRequest>): Promise<WsDali.ResultResponse>;
138
+ GetDFSMap(request: Partial<WsDali.GetDFSMapRequest>): Promise<WsDali.ResultResponse>;
139
+ GetDFSParents(request: Partial<WsDali.GetDFSParentsRequest>): Promise<WsDali.ResultResponse>;
140
+ GetLogicalFile(request: Partial<WsDali.GetLogicalFileRequest>): Promise<WsDali.ResultResponse>;
141
+ GetLogicalFilePart(request: Partial<WsDali.GetLogicalFilePartRequest>): Promise<WsDali.ResultResponse>;
142
+ GetProtectedList(request: Partial<WsDali.GetProtectedListRequest>): Promise<WsDali.ResultResponse>;
143
+ GetSDSStats(request: Partial<WsDali.GetSDSStatsRequest>): Promise<WsDali.ResultResponse>;
144
+ GetSDSSubscribers(request: Partial<WsDali.GetSDSSubscribersRequest>): Promise<WsDali.ResultResponse>;
145
+ GetValue(request: Partial<WsDali.GetValueRequest>): Promise<WsDali.ResultResponse>;
146
+ Import(request: Partial<WsDali.ImportRequest>): Promise<WsDali.ResultResponse>;
147
+ ListSDSLocks(request: Partial<WsDali.ListSDSLocksRequest>): Promise<WsDali.ResultResponse>;
148
+ Ping(request: Partial<WsDali.WSDaliPingRequest>): Promise<WsDali.WSDaliPingResponse>;
149
+ SaveSDSStore(request: Partial<WsDali.SaveSDSStoreRequest>): Promise<WsDali.ResultResponse>;
150
+ SetLogicalFilePartAttr(request: Partial<WsDali.SetLogicalFilePartAttrRequest>): Promise<WsDali.ResultResponse>;
151
+ SetProtected(request: Partial<WsDali.SetProtectedRequest>): Promise<WsDali.ResultResponse>;
152
+ SetTraceSlowTransactions(request: Partial<WsDali.SetTraceSlowTransactionsRequest>): Promise<WsDali.ResultResponse>;
153
+ SetTraceTransactions(request: Partial<WsDali.SetTraceTransactionsRequest>): Promise<WsDali.ResultResponse>;
154
+ SetUnprotected(request: Partial<WsDali.SetUnprotectedRequest>): Promise<WsDali.ResultResponse>;
155
+ SetValue(request: Partial<WsDali.SetValueRequest>): Promise<WsDali.ResultResponse>;
156
+ UnlockSDSLock(request: Partial<WsDali.UnlockSDSLockRequest>): Promise<WsDali.ResultResponse>;
157
+ }
158
+ //# sourceMappingURL=WsDali.d.ts.map