@hpcc-js/comms 3.15.5 → 3.15.7

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.
Files changed (53) hide show
  1. package/dist/browser/index.js +1 -1
  2. package/dist/browser/index.js.map +1 -1
  3. package/dist/browser/index.umd.cjs +1 -1
  4. package/dist/browser/index.umd.cjs.map +1 -1
  5. package/dist/node/index.cjs +9 -9
  6. package/dist/node/index.cjs.map +4 -4
  7. package/dist/node/index.js +9 -9
  8. package/dist/node/index.js.map +4 -4
  9. package/package.json +13 -11
  10. package/src/ecl/scope.ts +1 -2
  11. package/src/ecl/workunit.ts +1 -0
  12. package/src/services/fileSpray.ts +1 -26
  13. package/src/services/wsPackageProcess.ts +1 -1
  14. package/src/services/wsWorkunits.ts +1 -1
  15. package/src/services/wsdl/FileSpray/v1.27/FileSpray.ts +538 -538
  16. package/src/services/wsdl/FileSpray/v1.29/FileSpray.ts +946 -0
  17. package/src/services/wsdl/WsCloud/v1.02/WsCloud.ts +21 -21
  18. package/src/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.ts +70 -69
  19. package/src/services/wsdl/WsDali/v1.07/WsDali.ts +72 -72
  20. package/src/services/wsdl/WsDfu/v1.68/WsDfu.ts +1301 -0
  21. package/src/services/wsdl/WsESDLConfig/v1.5/WsESDLConfig.ts +366 -0
  22. package/src/services/wsdl/WsFileIO/v1.01/WsFileIO.ts +32 -32
  23. package/src/services/wsdl/WsPackageProcess/v1.08/WsPackageProcess.ts +503 -0
  24. package/src/services/wsdl/WsSasha/v1.01/WsSasha.ts +18 -18
  25. package/src/services/wsdl/WsTopology/v1.33/WsTopology.ts +383 -383
  26. package/src/services/wsdl/WsWorkunits/v2.05/WsWorkunits.ts +3177 -0
  27. package/src/services/wsdl/WsWorkunits/v2.08/WsWorkunits.ts +3179 -0
  28. package/src/services/wsdl/ws_access/v1.17/ws_access.ts +319 -319
  29. package/src/services/wsdl/ws_account/v1.07/ws_account.ts +39 -39
  30. package/src/services/wsdl/ws_codesign/v1.1/ws_codesign.ts +26 -26
  31. package/src/services/wsdl/ws_elk/v1/ws_elk.ts +14 -14
  32. package/src/services/wsdl/ws_machine/v1.19/ws_machine.ts +215 -215
  33. package/src/services/wsdl/wsstore/v1.02/wsstore.ts +72 -72
  34. package/types/ecl/workunit.d.ts +1 -0
  35. package/types/services/fileSpray.d.ts +1 -14
  36. package/types/services/wsPackageProcess.d.ts +1 -1
  37. package/types/services/wsWorkunits.d.ts +1 -1
  38. package/types/services/wsdl/FileSpray/v1.29/FileSpray.d.ts +751 -0
  39. package/types/services/wsdl/WsCloud/v1.02/WsCloud.d.ts +18 -18
  40. package/types/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.d.ts +58 -57
  41. package/types/services/wsdl/WsDali/v1.07/WsDali.d.ts +42 -42
  42. package/types/services/wsdl/WsPackageProcess/{v1.07 → v1.08}/WsPackageProcess.d.ts +121 -118
  43. package/types/services/wsdl/WsSasha/v1.01/WsSasha.d.ts +13 -13
  44. package/types/services/wsdl/WsTopology/v1.33/WsTopology.d.ts +360 -360
  45. package/types/services/wsdl/WsWorkunits/v2.08/WsWorkunits.d.ts +2573 -0
  46. package/types/services/wsdl/ws_access/v1.17/ws_access.d.ts +268 -268
  47. package/types/services/wsdl/ws_account/v1.07/ws_account.d.ts +34 -34
  48. package/types/services/wsdl/ws_codesign/v1.1/ws_codesign.d.ts +22 -22
  49. package/types/services/wsdl/ws_elk/v1/ws_elk.d.ts +12 -12
  50. package/types/services/wsdl/ws_machine/v1.19/ws_machine.d.ts +205 -205
  51. package/types/services/wsdl/wsstore/v1.02/wsstore.d.ts +61 -61
  52. package/types/services/wsdl/FileSpray/v1.27/FileSpray.d.ts +0 -736
  53. package/types/services/wsdl/WsWorkunits/v2.04/WsWorkunits.d.ts +0 -2565
@@ -10,37 +10,37 @@ export namespace WsAccount {
10
10
  }
11
11
 
12
12
  export interface Exception {
13
- Code: string;
14
- Audience: string;
15
- Source: string;
16
- Message: string;
13
+ Code?: string;
14
+ Audience?: string;
15
+ Source?: string;
16
+ Message?: string;
17
17
  }
18
18
 
19
19
  export interface Exceptions {
20
- Source: string;
21
- Exception: Exception[];
20
+ Source?: string;
21
+ Exception?: Exception[];
22
22
  }
23
23
 
24
24
  export interface Groups {
25
- Group: string[];
25
+ Group?: string[];
26
26
  }
27
27
 
28
28
  export interface MyAccountResponse {
29
- Exceptions: Exceptions;
30
- username: string;
31
- firstName: string;
32
- lastName: string;
33
- passwordExpiration: string;
34
- passwordDaysRemaining: int;
35
- passwordExpirationWarningDays: int;
36
- employeeID: string;
37
- distinguishedName: string;
38
- accountType: string;
39
- passwordNeverExpires: boolean;
40
- passwordIsExpired: boolean;
41
- CanUpdatePassword: boolean;
42
- accountStatus: int;
43
- Groups: Groups;
29
+ Exceptions?: Exceptions;
30
+ username?: string;
31
+ firstName?: string;
32
+ lastName?: string;
33
+ passwordExpiration?: string;
34
+ passwordDaysRemaining?: int;
35
+ passwordExpirationWarningDays?: int;
36
+ employeeID?: string;
37
+ distinguishedName?: string;
38
+ accountType?: string;
39
+ passwordNeverExpires?: boolean;
40
+ passwordIsExpired?: boolean;
41
+ CanUpdatePassword?: boolean;
42
+ accountStatus?: int;
43
+ Groups?: Groups;
44
44
  }
45
45
 
46
46
  export interface ws_accountPingRequest {
@@ -59,9 +59,9 @@ export namespace WsAccount {
59
59
  }
60
60
 
61
61
  export interface UpdateUserResponse {
62
- Exceptions: Exceptions;
63
- retcode: int;
64
- message: string;
62
+ Exceptions?: Exceptions;
63
+ retcode?: int;
64
+ message?: string;
65
65
  }
66
66
 
67
67
  export interface UpdateUserInputRequest {
@@ -69,8 +69,8 @@ export namespace WsAccount {
69
69
  }
70
70
 
71
71
  export interface UpdateUserInputResponse {
72
- Exceptions: Exceptions;
73
- username: string;
72
+ Exceptions?: Exceptions;
73
+ username?: string;
74
74
  }
75
75
 
76
76
  export interface VerifyUserRequest {
@@ -79,8 +79,8 @@ export namespace WsAccount {
79
79
  }
80
80
 
81
81
  export interface VerifyUserResponse {
82
- Exceptions: Exceptions;
83
- retcode: int;
82
+ Exceptions?: Exceptions;
83
+ retcode?: int;
84
84
  }
85
85
 
86
86
  }
@@ -91,24 +91,24 @@ export class AccountServiceBase extends Service {
91
91
  super(optsConnection, "ws_account", "1.07");
92
92
  }
93
93
 
94
- MyAccount(request: Partial<WsAccount.MyAccountRequest>): Promise<WsAccount.MyAccountResponse> {
95
- return this._connection.send("MyAccount", request, "json", false, undefined, "MyAccountResponse");
94
+ MyAccount(request: WsAccount.MyAccountRequest, abortSignal?: AbortSignal): Promise<WsAccount.MyAccountResponse> {
95
+ return this._connection.send("MyAccount", request, "json", false, abortSignal, "MyAccountResponse");
96
96
  }
97
97
 
98
- Ping(request: Partial<WsAccount.ws_accountPingRequest>): Promise<WsAccount.ws_accountPingResponse> {
99
- return this._connection.send("Ping", request, "json", false, undefined, "ws_accountPingResponse");
98
+ Ping(request: WsAccount.ws_accountPingRequest, abortSignal?: AbortSignal): Promise<WsAccount.ws_accountPingResponse> {
99
+ return this._connection.send("Ping", request, "json", false, abortSignal, "ws_accountPingResponse");
100
100
  }
101
101
 
102
- UpdateUser(request: Partial<WsAccount.UpdateUserRequest>): Promise<WsAccount.UpdateUserResponse> {
103
- return this._connection.send("UpdateUser", request, "json", false, undefined, "UpdateUserResponse");
102
+ UpdateUser(request: WsAccount.UpdateUserRequest, abortSignal?: AbortSignal): Promise<WsAccount.UpdateUserResponse> {
103
+ return this._connection.send("UpdateUser", request, "json", false, abortSignal, "UpdateUserResponse");
104
104
  }
105
105
 
106
- UpdateUserInput(request: Partial<WsAccount.UpdateUserInputRequest>): Promise<WsAccount.UpdateUserInputResponse> {
107
- return this._connection.send("UpdateUserInput", request, "json", false, undefined, "UpdateUserInputResponse");
106
+ UpdateUserInput(request: WsAccount.UpdateUserInputRequest, abortSignal?: AbortSignal): Promise<WsAccount.UpdateUserInputResponse> {
107
+ return this._connection.send("UpdateUserInput", request, "json", false, abortSignal, "UpdateUserInputResponse");
108
108
  }
109
109
 
110
- VerifyUser(request: Partial<WsAccount.VerifyUserRequest>): Promise<WsAccount.VerifyUserResponse> {
111
- return this._connection.send("VerifyUser", request, "json", false, undefined, "VerifyUserResponse");
110
+ VerifyUser(request: WsAccount.VerifyUserRequest, abortSignal?: AbortSignal): Promise<WsAccount.VerifyUserResponse> {
111
+ return this._connection.send("VerifyUser", request, "json", false, abortSignal, "VerifyUserResponse");
112
112
  }
113
113
 
114
114
  }
@@ -14,24 +14,24 @@ export namespace WsCodesign {
14
14
  }
15
15
 
16
16
  export interface Exception {
17
- Code: string;
18
- Audience: string;
19
- Source: string;
20
- Message: string;
17
+ Code?: string;
18
+ Audience?: string;
19
+ Source?: string;
20
+ Message?: string;
21
21
  }
22
22
 
23
23
  export interface Exceptions {
24
- Source: string;
25
- Exception: Exception[];
24
+ Source?: string;
25
+ Exception?: Exception[];
26
26
  }
27
27
 
28
28
  export interface UserIDs {
29
- Item: string[];
29
+ Item?: string[];
30
30
  }
31
31
 
32
32
  export interface ListUserIDsResponse {
33
- Exceptions: Exceptions;
34
- UserIDs: UserIDs;
33
+ Exceptions?: Exceptions;
34
+ UserIDs?: UserIDs;
35
35
  }
36
36
 
37
37
  export interface ws_codesignPingRequest {
@@ -50,10 +50,10 @@ export namespace WsCodesign {
50
50
  }
51
51
 
52
52
  export interface SignResponse {
53
- Exceptions: Exceptions;
54
- RetCode: int;
55
- ErrMsg: string;
56
- SignedText: string;
53
+ Exceptions?: Exceptions;
54
+ RetCode?: int;
55
+ ErrMsg?: string;
56
+ SignedText?: string;
57
57
  }
58
58
 
59
59
  export interface VerifyRequest {
@@ -61,11 +61,11 @@ export namespace WsCodesign {
61
61
  }
62
62
 
63
63
  export interface VerifyResponse {
64
- Exceptions: Exceptions;
65
- RetCode: int;
66
- ErrMsg: string;
67
- IsVerified: boolean;
68
- SignedBy: string;
64
+ Exceptions?: Exceptions;
65
+ RetCode?: int;
66
+ ErrMsg?: string;
67
+ IsVerified?: boolean;
68
+ SignedBy?: string;
69
69
  }
70
70
 
71
71
  }
@@ -76,20 +76,20 @@ export class CodesignServiceBase extends Service {
76
76
  super(optsConnection, "ws_codesign", "1.1");
77
77
  }
78
78
 
79
- ListUserIDs(request: Partial<WsCodesign.ListUserIDsRequest>): Promise<WsCodesign.ListUserIDsResponse> {
80
- return this._connection.send("ListUserIDs", request, "json", false, undefined, "ListUserIDsResponse");
79
+ ListUserIDs(request: WsCodesign.ListUserIDsRequest, abortSignal?: AbortSignal): Promise<WsCodesign.ListUserIDsResponse> {
80
+ return this._connection.send("ListUserIDs", request, "json", false, abortSignal, "ListUserIDsResponse");
81
81
  }
82
82
 
83
- Ping(request: Partial<WsCodesign.ws_codesignPingRequest>): Promise<WsCodesign.ws_codesignPingResponse> {
84
- return this._connection.send("Ping", request, "json", false, undefined, "ws_codesignPingResponse");
83
+ Ping(request: WsCodesign.ws_codesignPingRequest, abortSignal?: AbortSignal): Promise<WsCodesign.ws_codesignPingResponse> {
84
+ return this._connection.send("Ping", request, "json", false, abortSignal, "ws_codesignPingResponse");
85
85
  }
86
86
 
87
- Sign(request: Partial<WsCodesign.SignRequest>): Promise<WsCodesign.SignResponse> {
88
- return this._connection.send("Sign", request, "json", false, undefined, "SignResponse");
87
+ Sign(request: WsCodesign.SignRequest, abortSignal?: AbortSignal): Promise<WsCodesign.SignResponse> {
88
+ return this._connection.send("Sign", request, "json", false, abortSignal, "SignResponse");
89
89
  }
90
90
 
91
- Verify(request: Partial<WsCodesign.VerifyRequest>): Promise<WsCodesign.VerifyResponse> {
92
- return this._connection.send("Verify", request, "json", false, undefined, "VerifyResponse");
91
+ Verify(request: WsCodesign.VerifyRequest, abortSignal?: AbortSignal): Promise<WsCodesign.VerifyResponse> {
92
+ return this._connection.send("Verify", request, "json", false, abortSignal, "VerifyResponse");
93
93
  }
94
94
 
95
95
  }
@@ -8,16 +8,16 @@ export namespace WsElk {
8
8
  }
9
9
 
10
10
  export interface GetConfigDetailsResponse {
11
- IntegrateKibana: boolean;
12
- KibanaAddress: string;
13
- KibanaPort: string;
14
- KibanaEntryPointURI: string;
15
- ReportElasticSearchHealth: boolean;
16
- ElasticSearchAddresses: string;
17
- ElasticSearchPort: string;
18
- ReportLogStashHealth: boolean;
19
- LogStashAddress: string;
20
- LogStashPort: string;
11
+ IntegrateKibana?: boolean;
12
+ KibanaAddress?: string;
13
+ KibanaPort?: string;
14
+ KibanaEntryPointURI?: string;
15
+ ReportElasticSearchHealth?: boolean;
16
+ ElasticSearchAddresses?: string;
17
+ ElasticSearchPort?: string;
18
+ ReportLogStashHealth?: boolean;
19
+ LogStashAddress?: string;
20
+ LogStashPort?: string;
21
21
  }
22
22
 
23
23
  export interface ws_elkPingRequest {
@@ -36,12 +36,12 @@ export class ElkServiceBase extends Service {
36
36
  super(optsConnection, "ws_elk", "1");
37
37
  }
38
38
 
39
- GetConfigDetails(request: Partial<WsElk.GetConfigDetailsRequest>): Promise<WsElk.GetConfigDetailsResponse> {
40
- return this._connection.send("GetConfigDetails", request, "json", false, undefined, "GetConfigDetailsResponse");
39
+ GetConfigDetails(request: WsElk.GetConfigDetailsRequest, abortSignal?: AbortSignal): Promise<WsElk.GetConfigDetailsResponse> {
40
+ return this._connection.send("GetConfigDetails", request, "json", false, abortSignal, "GetConfigDetailsResponse");
41
41
  }
42
42
 
43
- Ping(request: Partial<WsElk.ws_elkPingRequest>): Promise<WsElk.ws_elkPingResponse> {
44
- return this._connection.send("Ping", request, "json", false, undefined, "ws_elkPingResponse");
43
+ Ping(request: WsElk.ws_elkPingRequest, abortSignal?: AbortSignal): Promise<WsElk.ws_elkPingResponse> {
44
+ return this._connection.send("Ping", request, "json", false, abortSignal, "ws_elkPingResponse");
45
45
  }
46
46
 
47
47
  }