@hpcc-js/comms 2.56.0 → 2.60.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 +79 -13
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +83 -12
- 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 +77 -12
- 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/logicalFile.js +34 -1
- package/lib-es6/ecl/logicalFile.js.map +1 -1
- package/lib-es6/ecl/workunit.js +17 -7
- package/lib-es6/ecl/workunit.js.map +1 -1
- package/lib-es6/index.node.js +5 -0
- package/lib-es6/index.node.js.map +1 -1
- package/lib-es6/services/wsAccount.js +10 -1
- package/lib-es6/services/wsAccount.js.map +1 -1
- package/lib-es6/services/wsDFU.js +10 -1
- package/lib-es6/services/wsDFU.js.map +1 -1
- package/lib-es6/services/wsWorkunits.js +3 -2
- package/lib-es6/services/wsWorkunits.js.map +1 -1
- package/package.json +7 -6
- package/src/__package__.ts +2 -2
- package/src/ecl/logicalFile.ts +42 -1
- package/src/ecl/workunit.ts +9 -7
- package/src/index.node.ts +6 -0
- package/src/services/wsAccount.ts +65 -6
- package/src/services/wsDFU.ts +14 -2
- package/src/services/wsWorkunits.ts +5 -2
- package/types/__package__.d.ts +2 -2
- package/types/ecl/logicalFile.d.ts +13 -1
- package/types/ecl/logicalFile.d.ts.map +1 -1
- package/types/ecl/workunit.d.ts +2 -0
- package/types/ecl/workunit.d.ts.map +1 -1
- package/types/index.node.d.ts.map +1 -1
- package/types/services/wsAccount.d.ts +45 -4
- package/types/services/wsAccount.d.ts.map +1 -1
- package/types/services/wsDFU.d.ts +4 -1
- package/types/services/wsDFU.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/logicalFile.d.ts +13 -1
- package/types-3.4/ecl/workunit.d.ts +2 -0
- package/types-3.4/services/wsAccount.d.ts +45 -4
- package/types-3.4/services/wsDFU.d.ts +4 -1
- package/types-3.4/services/wsWorkunits.d.ts +2 -0
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
import { IConnection, IOptions } from "../connection";
|
|
2
|
-
export declare namespace
|
|
3
|
-
interface
|
|
2
|
+
export declare namespace WsAccount {
|
|
3
|
+
interface MyAccountRequest {
|
|
4
|
+
}
|
|
5
|
+
interface WsAccountPingRequest {
|
|
6
|
+
}
|
|
7
|
+
interface UpdateUserRequest {
|
|
8
|
+
username: string;
|
|
9
|
+
oldpass: string;
|
|
10
|
+
newpass1: string;
|
|
11
|
+
newpass2: string;
|
|
12
|
+
}
|
|
13
|
+
interface UpdateUserInputRequest {
|
|
14
|
+
}
|
|
15
|
+
interface VerifyUserRequest {
|
|
4
16
|
application: string;
|
|
5
17
|
version: string;
|
|
6
18
|
}
|
|
@@ -14,7 +26,33 @@ export declare namespace VerifyUser {
|
|
|
14
26
|
Source: string;
|
|
15
27
|
Exception: Exception[];
|
|
16
28
|
}
|
|
17
|
-
interface
|
|
29
|
+
interface MyAccountResponse {
|
|
30
|
+
Exceptions: Exceptions;
|
|
31
|
+
username: string;
|
|
32
|
+
firstName: string;
|
|
33
|
+
lastName: string;
|
|
34
|
+
passwordExpiration: string;
|
|
35
|
+
passwordDaysRemaining: number;
|
|
36
|
+
passwordExpirationWarningDays: number;
|
|
37
|
+
employeeID: string;
|
|
38
|
+
distinguishedName: string;
|
|
39
|
+
accountType: string;
|
|
40
|
+
passwordNeverExpires: boolean;
|
|
41
|
+
passwordIsExpired: boolean;
|
|
42
|
+
accountStatus: number;
|
|
43
|
+
}
|
|
44
|
+
interface WsAccountPingResponse {
|
|
45
|
+
}
|
|
46
|
+
interface UpdateUserResponse {
|
|
47
|
+
Exceptions: Exceptions;
|
|
48
|
+
retcode: number;
|
|
49
|
+
message: string;
|
|
50
|
+
}
|
|
51
|
+
interface UpdateUserInputResponse {
|
|
52
|
+
Exceptions: Exceptions;
|
|
53
|
+
username: string;
|
|
54
|
+
}
|
|
55
|
+
interface VerifyUserResponse {
|
|
18
56
|
Exceptions: Exceptions;
|
|
19
57
|
retcode: number;
|
|
20
58
|
}
|
|
@@ -23,6 +61,9 @@ export declare class AccountService {
|
|
|
23
61
|
private _connection;
|
|
24
62
|
constructor(optsConnection: IOptions | IConnection);
|
|
25
63
|
connectionOptions(): IOptions;
|
|
26
|
-
|
|
64
|
+
MyAccount(request: WsAccount.MyAccountRequest): Promise<WsAccount.MyAccountResponse>;
|
|
65
|
+
UpdateUser(request: WsAccount.UpdateUserRequest): Promise<WsAccount.UpdateUserResponse>;
|
|
66
|
+
UpdateUserInput(request: WsAccount.UpdateUserInputRequest): Promise<WsAccount.UpdateUserInputResponse>;
|
|
67
|
+
VerifyUser(request: WsAccount.VerifyUserRequest): Promise<WsAccount.VerifyUserResponse>;
|
|
27
68
|
}
|
|
28
69
|
//# sourceMappingURL=wsAccount.d.ts.map
|
|
@@ -1432,7 +1432,7 @@ export declare namespace WsDfu {
|
|
|
1432
1432
|
Blooms: Blooms;
|
|
1433
1433
|
ExpireDays: number;
|
|
1434
1434
|
KeyType: string;
|
|
1435
|
-
Cost:
|
|
1435
|
+
Cost: number;
|
|
1436
1436
|
}
|
|
1437
1437
|
interface DFUInfoResponse {
|
|
1438
1438
|
Exceptions: Exceptions;
|
|
@@ -2457,5 +2457,8 @@ export declare class DFUService extends Service {
|
|
|
2457
2457
|
constructor(optsConnection: IOptions | IConnection);
|
|
2458
2458
|
DFUQuery(request: WsDfu.DFUQueryRequest): Promise<WsDfu.DFUQueryResponse>;
|
|
2459
2459
|
DFUInfo(request: WsDfu.DFUInfoRequest): Promise<WsDfu.DFUInfoResponse>;
|
|
2460
|
+
DFUFile(request: WsDfu.DFUDefFileRequest): Promise<string>;
|
|
2461
|
+
ListHistory(request: WsDfu.ListHistoryRequest): Promise<WsDfu.ListHistoryResponse>;
|
|
2462
|
+
EraseHistory(request: WsDfu.EraseHistoryRequest): Promise<WsDfu.EraseHistoryResponse>;
|
|
2460
2463
|
}
|
|
2461
2464
|
//# sourceMappingURL=wsDFU.d.ts.map
|