@hpcc-js/comms 2.94.0 → 2.94.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 +26 -14
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +26 -14
- 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 +26 -14
- 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/services/wsAccount.js +7 -17
- package/lib-es6/services/wsAccount.js.map +1 -1
- package/lib-es6/services/wsdl/ws_account/v1.06/ws_account.js +26 -0
- package/lib-es6/services/wsdl/ws_account/v1.06/ws_account.js.map +1 -0
- package/package.json +2 -2
- package/src/__package__.ts +2 -2
- package/src/services/wsAccount.ts +7 -100
- package/src/services/wsdl/ws_account/v1.06/ws_account.ts +109 -0
- package/types/__package__.d.ts +2 -2
- package/types/services/wsAccount.d.ts +3 -66
- package/types/services/wsAccount.d.ts.map +1 -1
- package/types/services/wsdl/ws_account/v1.06/ws_account.d.ts +71 -0
- package/types/services/wsdl/ws_account/v1.06/ws_account.d.ts.map +1 -0
- package/types-3.4/__package__.d.ts +2 -2
- package/types-3.4/services/wsAccount.d.ts +3 -66
- package/types-3.4/services/wsdl/ws_account/v1.06/ws_account.d.ts +71 -0
package/lib-es6/__package__.js
CHANGED
|
@@ -1,20 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { AccountServiceBase } from "./wsdl/ws_account/v1.06/ws_account";
|
|
3
|
+
var AccountService = /** @class */ (function (_super) {
|
|
4
|
+
__extends(AccountService, _super);
|
|
5
|
+
function AccountService() {
|
|
6
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
5
7
|
}
|
|
6
|
-
AccountService.prototype.connectionOptions = function () {
|
|
7
|
-
return this._connection.opts();
|
|
8
|
-
};
|
|
9
|
-
AccountService.prototype.MyAccount = function (request) {
|
|
10
|
-
return this._connection.send("MyAccount", request);
|
|
11
|
-
};
|
|
12
|
-
AccountService.prototype.UpdateUser = function (request) {
|
|
13
|
-
return this._connection.send("UpdateUser", request);
|
|
14
|
-
};
|
|
15
|
-
AccountService.prototype.UpdateUserInput = function (request) {
|
|
16
|
-
return this._connection.send("UpdateUserInput", request);
|
|
17
|
-
};
|
|
18
8
|
AccountService.prototype.VerifyUser = function (request) {
|
|
19
9
|
return this._connection.send("VerifyUser", request)
|
|
20
10
|
.catch(function (e) {
|
|
@@ -32,6 +22,6 @@ var AccountService = /** @class */ (function () {
|
|
|
32
22
|
});
|
|
33
23
|
};
|
|
34
24
|
return AccountService;
|
|
35
|
-
}());
|
|
25
|
+
}(AccountServiceBase));
|
|
36
26
|
export { AccountService };
|
|
37
27
|
//# sourceMappingURL=wsAccount.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wsAccount.js","sourceRoot":"","sources":["../../src/services/wsAccount.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"wsAccount.js","sourceRoot":"","sources":["../../src/services/wsAccount.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,kBAAkB,EAAa,MAAM,oCAAoC,CAAC;AAOnF;IAAoC,kCAAkB;IAAtD;;IAmBA,CAAC;IAjBG,mCAAU,GAAV,UAAW,OAAoC;QAC3C,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,YAAY,EAAE,OAAO,CAAC;aAC9C,KAAK,CAAC,UAAC,CAAgB;YACpB,mCAAmC;YACnC,IAAI,CAAC,CAAC,eAAe,IAAI,CAAC,CAAC,SAAS,CAAC,IAAI,CAAC,UAAA,SAAS,IAAI,OAAA,SAAS,CAAC,IAAI,KAAK,KAAK,EAAxB,CAAwB,CAAC,EAAE,CAAC;gBAC/E,OAAO;oBACH,OAAO,EAAE,KAAK;oBACd,UAAU,EAAE;wBACR,MAAM,EAAE,WAAW;wBACnB,SAAS,EAAE,CAAC,CAAC,SAAS;qBACzB;iBACJ,CAAC;YACN,CAAC;YACD,MAAM,CAAC,CAAC;QACZ,CAAC,CAAC,CAAC;IACX,CAAC;IAEL,qBAAC;AAAD,CAAC,AAnBD,CAAoC,kBAAkB,GAmBrD"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { Service } from "../../../../espConnection";
|
|
3
|
+
var AccountServiceBase = /** @class */ (function (_super) {
|
|
4
|
+
__extends(AccountServiceBase, _super);
|
|
5
|
+
function AccountServiceBase(optsConnection) {
|
|
6
|
+
return _super.call(this, optsConnection, "ws_account", "1.06") || this;
|
|
7
|
+
}
|
|
8
|
+
AccountServiceBase.prototype.MyAccount = function (request) {
|
|
9
|
+
return this._connection.send("MyAccount", request, "json", false, undefined, "MyAccountResponse");
|
|
10
|
+
};
|
|
11
|
+
AccountServiceBase.prototype.Ping = function (request) {
|
|
12
|
+
return this._connection.send("Ping", request, "json", false, undefined, "ws_accountPingResponse");
|
|
13
|
+
};
|
|
14
|
+
AccountServiceBase.prototype.UpdateUser = function (request) {
|
|
15
|
+
return this._connection.send("UpdateUser", request, "json", false, undefined, "UpdateUserResponse");
|
|
16
|
+
};
|
|
17
|
+
AccountServiceBase.prototype.UpdateUserInput = function (request) {
|
|
18
|
+
return this._connection.send("UpdateUserInput", request, "json", false, undefined, "UpdateUserInputResponse");
|
|
19
|
+
};
|
|
20
|
+
AccountServiceBase.prototype.VerifyUser = function (request) {
|
|
21
|
+
return this._connection.send("VerifyUser", request, "json", false, undefined, "VerifyUserResponse");
|
|
22
|
+
};
|
|
23
|
+
return AccountServiceBase;
|
|
24
|
+
}(Service));
|
|
25
|
+
export { AccountServiceBase };
|
|
26
|
+
//# sourceMappingURL=ws_account.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ws_account.js","sourceRoot":"","sources":["../../../../../src/services/wsdl/ws_account/v1.06/ws_account.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAiFpD;IAAwC,sCAAO;IAE3C,4BAAY,cAAsC;QAC9C,OAAA,MAAK,YAAC,cAAc,EAAE,YAAY,EAAE,MAAM,CAAC,SAAC;IAChD,CAAC;IAED,sCAAS,GAAT,UAAU,OAA4C;QAClD,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,WAAW,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,mBAAmB,CAAC,CAAC;IACtG,CAAC;IAED,iCAAI,GAAJ,UAAK,OAAiD;QAClD,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,wBAAwB,CAAC,CAAC;IACtG,CAAC;IAED,uCAAU,GAAV,UAAW,OAA6C;QACpD,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,YAAY,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,oBAAoB,CAAC,CAAC;IACxG,CAAC;IAED,4CAAe,GAAf,UAAgB,OAAkD;QAC9D,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,iBAAiB,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,yBAAyB,CAAC,CAAC;IAClH,CAAC;IAED,uCAAU,GAAV,UAAW,OAA6C;QACpD,OAAO,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,YAAY,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,oBAAoB,CAAC,CAAC;IACxG,CAAC;IAEL,yBAAC;AAAD,CAAC,AA1BD,CAAwC,OAAO,GA0B9C"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/comms",
|
|
3
|
-
"version": "2.94.
|
|
3
|
+
"version": "2.94.1",
|
|
4
4
|
"description": "hpcc-js - Communications",
|
|
5
5
|
"main": "dist/index.node.js",
|
|
6
6
|
"module": "dist/index.es6",
|
|
@@ -94,5 +94,5 @@
|
|
|
94
94
|
"url": "https://github.com/hpcc-systems/Visualization/issues"
|
|
95
95
|
},
|
|
96
96
|
"homepage": "https://github.com/hpcc-systems/Visualization",
|
|
97
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "8d7f75b747475dee8954472d9e93a7283b4f3e9b"
|
|
98
98
|
}
|
package/src/__package__.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export const PKG_NAME = "@hpcc-js/comms";
|
|
2
|
-
export const PKG_VERSION = "2.94.
|
|
3
|
-
export const BUILD_VERSION = "2.106.
|
|
2
|
+
export const PKG_VERSION = "2.94.1";
|
|
3
|
+
export const BUILD_VERSION = "2.106.2";
|
|
@@ -1,105 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { AccountServiceBase, WsAccount } from "./wsdl/ws_account/v1.06/ws_account";
|
|
2
|
+
import { ESPExceptions } from "../espConnection";
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
* http://localhost:8010/Ws_Account/?respjson_
|
|
8
|
-
* http://json2ts.com/
|
|
9
|
-
*/
|
|
10
|
-
export namespace WsAccount {
|
|
4
|
+
export {
|
|
5
|
+
WsAccount
|
|
6
|
+
};
|
|
11
7
|
|
|
12
|
-
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export interface WsAccountPingRequest {
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
export interface UpdateUserRequest {
|
|
19
|
-
username: string;
|
|
20
|
-
oldpass: string;
|
|
21
|
-
newpass1: string;
|
|
22
|
-
newpass2: string;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export interface UpdateUserInputRequest {
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export interface VerifyUserRequest {
|
|
29
|
-
application: string;
|
|
30
|
-
version: string;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
export interface Exception {
|
|
34
|
-
Code: string;
|
|
35
|
-
Audience: string;
|
|
36
|
-
Source: string;
|
|
37
|
-
Message: string;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
export interface Exceptions {
|
|
41
|
-
Source: string;
|
|
42
|
-
Exception: Exception[];
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
export interface MyAccountResponse {
|
|
46
|
-
Exceptions: Exceptions;
|
|
47
|
-
username: string;
|
|
48
|
-
firstName: string;
|
|
49
|
-
lastName: string;
|
|
50
|
-
passwordExpiration: string;
|
|
51
|
-
passwordDaysRemaining: number;
|
|
52
|
-
passwordExpirationWarningDays: number;
|
|
53
|
-
employeeID: string;
|
|
54
|
-
distinguishedName: string;
|
|
55
|
-
accountType: string;
|
|
56
|
-
passwordNeverExpires: boolean;
|
|
57
|
-
passwordIsExpired: boolean;
|
|
58
|
-
accountStatus: number;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
export interface WsAccountPingResponse {
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export interface UpdateUserResponse {
|
|
65
|
-
Exceptions: Exceptions;
|
|
66
|
-
retcode: number;
|
|
67
|
-
message: string;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
export interface UpdateUserInputResponse {
|
|
71
|
-
Exceptions: Exceptions;
|
|
72
|
-
username: string;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
export interface VerifyUserResponse {
|
|
76
|
-
Exceptions: Exceptions;
|
|
77
|
-
retcode: number;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
export class AccountService {
|
|
82
|
-
private _connection: ESPConnection;
|
|
83
|
-
|
|
84
|
-
constructor(optsConnection: IOptions | IConnection) {
|
|
85
|
-
this._connection = new ESPConnection(optsConnection, "Ws_Account", "1.05");
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
connectionOptions(): IOptions {
|
|
89
|
-
return this._connection.opts();
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
MyAccount(request: WsAccount.MyAccountRequest): Promise<WsAccount.MyAccountResponse> {
|
|
93
|
-
return this._connection.send("MyAccount", request);
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
UpdateUser(request: WsAccount.UpdateUserRequest): Promise<WsAccount.UpdateUserResponse> {
|
|
97
|
-
return this._connection.send("UpdateUser", request);
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
UpdateUserInput(request: WsAccount.UpdateUserInputRequest): Promise<WsAccount.UpdateUserInputResponse> {
|
|
101
|
-
return this._connection.send("UpdateUserInput", request);
|
|
102
|
-
}
|
|
8
|
+
export class AccountService extends AccountServiceBase {
|
|
103
9
|
|
|
104
10
|
VerifyUser(request: WsAccount.VerifyUserRequest): Promise<WsAccount.VerifyUserResponse> {
|
|
105
11
|
return this._connection.send("VerifyUser", request)
|
|
@@ -117,4 +23,5 @@ export class AccountService {
|
|
|
117
23
|
throw e;
|
|
118
24
|
});
|
|
119
25
|
}
|
|
26
|
+
|
|
120
27
|
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { IConnection, IOptions } from "../../../../connection";
|
|
2
|
+
import { Service } from "../../../../espConnection";
|
|
3
|
+
|
|
4
|
+
export namespace WsAccount {
|
|
5
|
+
|
|
6
|
+
export type int = number;
|
|
7
|
+
|
|
8
|
+
export interface MyAccountRequest {
|
|
9
|
+
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export interface Exception {
|
|
13
|
+
Code: string;
|
|
14
|
+
Audience: string;
|
|
15
|
+
Source: string;
|
|
16
|
+
Message: string;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export interface Exceptions {
|
|
20
|
+
Source: string;
|
|
21
|
+
Exception: Exception[];
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface MyAccountResponse {
|
|
25
|
+
Exceptions: Exceptions;
|
|
26
|
+
username: string;
|
|
27
|
+
firstName: string;
|
|
28
|
+
lastName: string;
|
|
29
|
+
passwordExpiration: string;
|
|
30
|
+
passwordDaysRemaining: int;
|
|
31
|
+
passwordExpirationWarningDays: int;
|
|
32
|
+
employeeID: string;
|
|
33
|
+
distinguishedName: string;
|
|
34
|
+
accountType: string;
|
|
35
|
+
passwordNeverExpires: boolean;
|
|
36
|
+
passwordIsExpired: boolean;
|
|
37
|
+
CanUpdatePassword: boolean;
|
|
38
|
+
accountStatus: int;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export interface ws_accountPingRequest {
|
|
42
|
+
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export interface ws_accountPingResponse {
|
|
46
|
+
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export interface UpdateUserRequest {
|
|
50
|
+
username?: string;
|
|
51
|
+
oldpass?: string;
|
|
52
|
+
newpass1?: string;
|
|
53
|
+
newpass2?: string;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export interface UpdateUserResponse {
|
|
57
|
+
Exceptions: Exceptions;
|
|
58
|
+
retcode: int;
|
|
59
|
+
message: string;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export interface UpdateUserInputRequest {
|
|
63
|
+
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export interface UpdateUserInputResponse {
|
|
67
|
+
Exceptions: Exceptions;
|
|
68
|
+
username: string;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export interface VerifyUserRequest {
|
|
72
|
+
application?: string;
|
|
73
|
+
version?: string;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export interface VerifyUserResponse {
|
|
77
|
+
Exceptions: Exceptions;
|
|
78
|
+
retcode: int;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export class AccountServiceBase extends Service {
|
|
84
|
+
|
|
85
|
+
constructor(optsConnection: IOptions | IConnection) {
|
|
86
|
+
super(optsConnection, "ws_account", "1.06");
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
MyAccount(request: Partial<WsAccount.MyAccountRequest>): Promise<WsAccount.MyAccountResponse> {
|
|
90
|
+
return this._connection.send("MyAccount", request, "json", false, undefined, "MyAccountResponse");
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
Ping(request: Partial<WsAccount.ws_accountPingRequest>): Promise<WsAccount.ws_accountPingResponse> {
|
|
94
|
+
return this._connection.send("Ping", request, "json", false, undefined, "ws_accountPingResponse");
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
UpdateUser(request: Partial<WsAccount.UpdateUserRequest>): Promise<WsAccount.UpdateUserResponse> {
|
|
98
|
+
return this._connection.send("UpdateUser", request, "json", false, undefined, "UpdateUserResponse");
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
UpdateUserInput(request: Partial<WsAccount.UpdateUserInputRequest>): Promise<WsAccount.UpdateUserInputResponse> {
|
|
102
|
+
return this._connection.send("UpdateUserInput", request, "json", false, undefined, "UpdateUserInputResponse");
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
VerifyUser(request: Partial<WsAccount.VerifyUserRequest>): Promise<WsAccount.VerifyUserResponse> {
|
|
106
|
+
return this._connection.send("VerifyUser", request, "json", false, undefined, "VerifyUserResponse");
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
}
|
package/types/__package__.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const PKG_NAME = "@hpcc-js/comms";
|
|
2
|
-
export declare const PKG_VERSION = "2.94.
|
|
3
|
-
export declare const BUILD_VERSION = "2.106.
|
|
2
|
+
export declare const PKG_VERSION = "2.94.1";
|
|
3
|
+
export declare const BUILD_VERSION = "2.106.2";
|
|
4
4
|
//# sourceMappingURL=__package__.d.ts.map
|
|
@@ -1,69 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export
|
|
3
|
-
|
|
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 {
|
|
16
|
-
application: string;
|
|
17
|
-
version: string;
|
|
18
|
-
}
|
|
19
|
-
interface Exception {
|
|
20
|
-
Code: string;
|
|
21
|
-
Audience: string;
|
|
22
|
-
Source: string;
|
|
23
|
-
Message: string;
|
|
24
|
-
}
|
|
25
|
-
interface Exceptions {
|
|
26
|
-
Source: string;
|
|
27
|
-
Exception: Exception[];
|
|
28
|
-
}
|
|
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 {
|
|
56
|
-
Exceptions: Exceptions;
|
|
57
|
-
retcode: number;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
export declare class AccountService {
|
|
61
|
-
private _connection;
|
|
62
|
-
constructor(optsConnection: IOptions | IConnection);
|
|
63
|
-
connectionOptions(): IOptions;
|
|
64
|
-
MyAccount(request: WsAccount.MyAccountRequest): Promise<WsAccount.MyAccountResponse>;
|
|
65
|
-
UpdateUser(request: WsAccount.UpdateUserRequest): Promise<WsAccount.UpdateUserResponse>;
|
|
66
|
-
UpdateUserInput(request: WsAccount.UpdateUserInputRequest): Promise<WsAccount.UpdateUserInputResponse>;
|
|
1
|
+
import { AccountServiceBase, WsAccount } from "./wsdl/ws_account/v1.06/ws_account";
|
|
2
|
+
export { WsAccount };
|
|
3
|
+
export declare class AccountService extends AccountServiceBase {
|
|
67
4
|
VerifyUser(request: WsAccount.VerifyUserRequest): Promise<WsAccount.VerifyUserResponse>;
|
|
68
5
|
}
|
|
69
6
|
//# sourceMappingURL=wsAccount.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wsAccount.d.ts","sourceRoot":"","sources":["../../src/services/wsAccount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"wsAccount.d.ts","sourceRoot":"","sources":["../../src/services/wsAccount.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,SAAS,EAAE,MAAM,oCAAoC,CAAC;AAGnF,OAAO,EACH,SAAS,EACZ,CAAC;AAEF,qBAAa,cAAe,SAAQ,kBAAkB;IAElD,UAAU,CAAC,OAAO,EAAE,SAAS,CAAC,iBAAiB,GAAG,OAAO,CAAC,SAAS,CAAC,kBAAkB,CAAC;CAiB1F"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { IConnection, IOptions } from "../../../../connection";
|
|
2
|
+
import { Service } from "../../../../espConnection";
|
|
3
|
+
export declare namespace WsAccount {
|
|
4
|
+
type int = number;
|
|
5
|
+
interface MyAccountRequest {
|
|
6
|
+
}
|
|
7
|
+
interface Exception {
|
|
8
|
+
Code: string;
|
|
9
|
+
Audience: string;
|
|
10
|
+
Source: string;
|
|
11
|
+
Message: string;
|
|
12
|
+
}
|
|
13
|
+
interface Exceptions {
|
|
14
|
+
Source: string;
|
|
15
|
+
Exception: Exception[];
|
|
16
|
+
}
|
|
17
|
+
interface MyAccountResponse {
|
|
18
|
+
Exceptions: Exceptions;
|
|
19
|
+
username: string;
|
|
20
|
+
firstName: string;
|
|
21
|
+
lastName: string;
|
|
22
|
+
passwordExpiration: string;
|
|
23
|
+
passwordDaysRemaining: int;
|
|
24
|
+
passwordExpirationWarningDays: int;
|
|
25
|
+
employeeID: string;
|
|
26
|
+
distinguishedName: string;
|
|
27
|
+
accountType: string;
|
|
28
|
+
passwordNeverExpires: boolean;
|
|
29
|
+
passwordIsExpired: boolean;
|
|
30
|
+
CanUpdatePassword: boolean;
|
|
31
|
+
accountStatus: int;
|
|
32
|
+
}
|
|
33
|
+
interface ws_accountPingRequest {
|
|
34
|
+
}
|
|
35
|
+
interface ws_accountPingResponse {
|
|
36
|
+
}
|
|
37
|
+
interface UpdateUserRequest {
|
|
38
|
+
username?: string;
|
|
39
|
+
oldpass?: string;
|
|
40
|
+
newpass1?: string;
|
|
41
|
+
newpass2?: string;
|
|
42
|
+
}
|
|
43
|
+
interface UpdateUserResponse {
|
|
44
|
+
Exceptions: Exceptions;
|
|
45
|
+
retcode: int;
|
|
46
|
+
message: string;
|
|
47
|
+
}
|
|
48
|
+
interface UpdateUserInputRequest {
|
|
49
|
+
}
|
|
50
|
+
interface UpdateUserInputResponse {
|
|
51
|
+
Exceptions: Exceptions;
|
|
52
|
+
username: string;
|
|
53
|
+
}
|
|
54
|
+
interface VerifyUserRequest {
|
|
55
|
+
application?: string;
|
|
56
|
+
version?: string;
|
|
57
|
+
}
|
|
58
|
+
interface VerifyUserResponse {
|
|
59
|
+
Exceptions: Exceptions;
|
|
60
|
+
retcode: int;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
export declare class AccountServiceBase extends Service {
|
|
64
|
+
constructor(optsConnection: IOptions | IConnection);
|
|
65
|
+
MyAccount(request: Partial<WsAccount.MyAccountRequest>): Promise<WsAccount.MyAccountResponse>;
|
|
66
|
+
Ping(request: Partial<WsAccount.ws_accountPingRequest>): Promise<WsAccount.ws_accountPingResponse>;
|
|
67
|
+
UpdateUser(request: Partial<WsAccount.UpdateUserRequest>): Promise<WsAccount.UpdateUserResponse>;
|
|
68
|
+
UpdateUserInput(request: Partial<WsAccount.UpdateUserInputRequest>): Promise<WsAccount.UpdateUserInputResponse>;
|
|
69
|
+
VerifyUser(request: Partial<WsAccount.VerifyUserRequest>): Promise<WsAccount.VerifyUserResponse>;
|
|
70
|
+
}
|
|
71
|
+
//# sourceMappingURL=ws_account.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ws_account.d.ts","sourceRoot":"","sources":["../../../../../src/services/wsdl/ws_account/v1.06/ws_account.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAC/D,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAEpD,yBAAiB,SAAS,CAAC;IAEvB,KAAY,GAAG,GAAG,MAAM,CAAC;IAEzB,UAAiB,gBAAgB;KAEhC;IAED,UAAiB,SAAS;QACtB,IAAI,EAAE,MAAM,CAAC;QACb,QAAQ,EAAE,MAAM,CAAC;QACjB,MAAM,EAAE,MAAM,CAAC;QACf,OAAO,EAAE,MAAM,CAAC;KACnB;IAED,UAAiB,UAAU;QACvB,MAAM,EAAE,MAAM,CAAC;QACf,SAAS,EAAE,SAAS,EAAE,CAAC;KAC1B;IAED,UAAiB,iBAAiB;QAC9B,UAAU,EAAE,UAAU,CAAC;QACvB,QAAQ,EAAE,MAAM,CAAC;QACjB,SAAS,EAAE,MAAM,CAAC;QAClB,QAAQ,EAAE,MAAM,CAAC;QACjB,kBAAkB,EAAE,MAAM,CAAC;QAC3B,qBAAqB,EAAE,GAAG,CAAC;QAC3B,6BAA6B,EAAE,GAAG,CAAC;QACnC,UAAU,EAAE,MAAM,CAAC;QACnB,iBAAiB,EAAE,MAAM,CAAC;QAC1B,WAAW,EAAE,MAAM,CAAC;QACpB,oBAAoB,EAAE,OAAO,CAAC;QAC9B,iBAAiB,EAAE,OAAO,CAAC;QAC3B,iBAAiB,EAAE,OAAO,CAAC;QAC3B,aAAa,EAAE,GAAG,CAAC;KACtB;IAED,UAAiB,qBAAqB;KAErC;IAED,UAAiB,sBAAsB;KAEtC;IAED,UAAiB,iBAAiB;QAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;KACrB;IAED,UAAiB,kBAAkB;QAC/B,UAAU,EAAE,UAAU,CAAC;QACvB,OAAO,EAAE,GAAG,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;KACnB;IAED,UAAiB,sBAAsB;KAEtC;IAED,UAAiB,uBAAuB;QACpC,UAAU,EAAE,UAAU,CAAC;QACvB,QAAQ,EAAE,MAAM,CAAC;KACpB;IAED,UAAiB,iBAAiB;QAC9B,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,OAAO,CAAC,EAAE,MAAM,CAAC;KACpB;IAED,UAAiB,kBAAkB;QAC/B,UAAU,EAAE,UAAU,CAAC;QACvB,OAAO,EAAE,GAAG,CAAC;KAChB;CAEJ;AAED,qBAAa,kBAAmB,SAAQ,OAAO;gBAE/B,cAAc,EAAE,QAAQ,GAAG,WAAW;IAIlD,SAAS,CAAC,OAAO,EAAE,OAAO,CAAC,SAAS,CAAC,gBAAgB,CAAC,GAAG,OAAO,CAAC,SAAS,CAAC,iBAAiB,CAAC;IAI7F,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,SAAS,CAAC,qBAAqB,CAAC,GAAG,OAAO,CAAC,SAAS,CAAC,sBAAsB,CAAC;IAIlG,UAAU,CAAC,OAAO,EAAE,OAAO,CAAC,SAAS,CAAC,iBAAiB,CAAC,GAAG,OAAO,CAAC,SAAS,CAAC,kBAAkB,CAAC;IAIhG,eAAe,CAAC,OAAO,EAAE,OAAO,CAAC,SAAS,CAAC,sBAAsB,CAAC,GAAG,OAAO,CAAC,SAAS,CAAC,uBAAuB,CAAC;IAI/G,UAAU,CAAC,OAAO,EAAE,OAAO,CAAC,SAAS,CAAC,iBAAiB,CAAC,GAAG,OAAO,CAAC,SAAS,CAAC,kBAAkB,CAAC;CAInG"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const PKG_NAME = "@hpcc-js/comms";
|
|
2
|
-
export declare const PKG_VERSION = "2.94.
|
|
3
|
-
export declare const BUILD_VERSION = "2.106.
|
|
2
|
+
export declare const PKG_VERSION = "2.94.1";
|
|
3
|
+
export declare const BUILD_VERSION = "2.106.2";
|
|
4
4
|
//# sourceMappingURL=__package__.d.ts.map
|
|
@@ -1,69 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export
|
|
3
|
-
|
|
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 {
|
|
16
|
-
application: string;
|
|
17
|
-
version: string;
|
|
18
|
-
}
|
|
19
|
-
interface Exception {
|
|
20
|
-
Code: string;
|
|
21
|
-
Audience: string;
|
|
22
|
-
Source: string;
|
|
23
|
-
Message: string;
|
|
24
|
-
}
|
|
25
|
-
interface Exceptions {
|
|
26
|
-
Source: string;
|
|
27
|
-
Exception: Exception[];
|
|
28
|
-
}
|
|
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 {
|
|
56
|
-
Exceptions: Exceptions;
|
|
57
|
-
retcode: number;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
export declare class AccountService {
|
|
61
|
-
private _connection;
|
|
62
|
-
constructor(optsConnection: IOptions | IConnection);
|
|
63
|
-
connectionOptions(): IOptions;
|
|
64
|
-
MyAccount(request: WsAccount.MyAccountRequest): Promise<WsAccount.MyAccountResponse>;
|
|
65
|
-
UpdateUser(request: WsAccount.UpdateUserRequest): Promise<WsAccount.UpdateUserResponse>;
|
|
66
|
-
UpdateUserInput(request: WsAccount.UpdateUserInputRequest): Promise<WsAccount.UpdateUserInputResponse>;
|
|
1
|
+
import { AccountServiceBase, WsAccount } from "./wsdl/ws_account/v1.06/ws_account";
|
|
2
|
+
export { WsAccount };
|
|
3
|
+
export declare class AccountService extends AccountServiceBase {
|
|
67
4
|
VerifyUser(request: WsAccount.VerifyUserRequest): Promise<WsAccount.VerifyUserResponse>;
|
|
68
5
|
}
|
|
69
6
|
//# sourceMappingURL=wsAccount.d.ts.map
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { IConnection, IOptions } from "../../../../connection";
|
|
2
|
+
import { Service } from "../../../../espConnection";
|
|
3
|
+
export declare namespace WsAccount {
|
|
4
|
+
type int = number;
|
|
5
|
+
interface MyAccountRequest {
|
|
6
|
+
}
|
|
7
|
+
interface Exception {
|
|
8
|
+
Code: string;
|
|
9
|
+
Audience: string;
|
|
10
|
+
Source: string;
|
|
11
|
+
Message: string;
|
|
12
|
+
}
|
|
13
|
+
interface Exceptions {
|
|
14
|
+
Source: string;
|
|
15
|
+
Exception: Exception[];
|
|
16
|
+
}
|
|
17
|
+
interface MyAccountResponse {
|
|
18
|
+
Exceptions: Exceptions;
|
|
19
|
+
username: string;
|
|
20
|
+
firstName: string;
|
|
21
|
+
lastName: string;
|
|
22
|
+
passwordExpiration: string;
|
|
23
|
+
passwordDaysRemaining: int;
|
|
24
|
+
passwordExpirationWarningDays: int;
|
|
25
|
+
employeeID: string;
|
|
26
|
+
distinguishedName: string;
|
|
27
|
+
accountType: string;
|
|
28
|
+
passwordNeverExpires: boolean;
|
|
29
|
+
passwordIsExpired: boolean;
|
|
30
|
+
CanUpdatePassword: boolean;
|
|
31
|
+
accountStatus: int;
|
|
32
|
+
}
|
|
33
|
+
interface ws_accountPingRequest {
|
|
34
|
+
}
|
|
35
|
+
interface ws_accountPingResponse {
|
|
36
|
+
}
|
|
37
|
+
interface UpdateUserRequest {
|
|
38
|
+
username?: string;
|
|
39
|
+
oldpass?: string;
|
|
40
|
+
newpass1?: string;
|
|
41
|
+
newpass2?: string;
|
|
42
|
+
}
|
|
43
|
+
interface UpdateUserResponse {
|
|
44
|
+
Exceptions: Exceptions;
|
|
45
|
+
retcode: int;
|
|
46
|
+
message: string;
|
|
47
|
+
}
|
|
48
|
+
interface UpdateUserInputRequest {
|
|
49
|
+
}
|
|
50
|
+
interface UpdateUserInputResponse {
|
|
51
|
+
Exceptions: Exceptions;
|
|
52
|
+
username: string;
|
|
53
|
+
}
|
|
54
|
+
interface VerifyUserRequest {
|
|
55
|
+
application?: string;
|
|
56
|
+
version?: string;
|
|
57
|
+
}
|
|
58
|
+
interface VerifyUserResponse {
|
|
59
|
+
Exceptions: Exceptions;
|
|
60
|
+
retcode: int;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
export declare class AccountServiceBase extends Service {
|
|
64
|
+
constructor(optsConnection: IOptions | IConnection);
|
|
65
|
+
MyAccount(request: Partial<WsAccount.MyAccountRequest>): Promise<WsAccount.MyAccountResponse>;
|
|
66
|
+
Ping(request: Partial<WsAccount.ws_accountPingRequest>): Promise<WsAccount.ws_accountPingResponse>;
|
|
67
|
+
UpdateUser(request: Partial<WsAccount.UpdateUserRequest>): Promise<WsAccount.UpdateUserResponse>;
|
|
68
|
+
UpdateUserInput(request: Partial<WsAccount.UpdateUserInputRequest>): Promise<WsAccount.UpdateUserInputResponse>;
|
|
69
|
+
VerifyUser(request: Partial<WsAccount.VerifyUserRequest>): Promise<WsAccount.VerifyUserResponse>;
|
|
70
|
+
}
|
|
71
|
+
//# sourceMappingURL=ws_account.d.ts.map
|