@hpcc-js/comms 3.15.5 → 3.15.6

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 (43) 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 +10 -10
  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 +4 -4
  10. package/src/services/wsPackageProcess.ts +1 -1
  11. package/src/services/wsWorkunits.ts +1 -1
  12. package/src/services/wsdl/FileSpray/v1.27/FileSpray.ts +538 -538
  13. package/src/services/wsdl/WsCloud/v1.02/WsCloud.ts +21 -21
  14. package/src/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.ts +70 -69
  15. package/src/services/wsdl/WsDali/v1.07/WsDali.ts +72 -72
  16. package/src/services/wsdl/WsDfu/v1.68/WsDfu.ts +1301 -0
  17. package/src/services/wsdl/WsESDLConfig/v1.5/WsESDLConfig.ts +366 -0
  18. package/src/services/wsdl/WsFileIO/v1.01/WsFileIO.ts +32 -32
  19. package/src/services/wsdl/WsPackageProcess/v1.08/WsPackageProcess.ts +503 -0
  20. package/src/services/wsdl/WsSasha/v1.01/WsSasha.ts +18 -18
  21. package/src/services/wsdl/WsTopology/v1.33/WsTopology.ts +383 -383
  22. package/src/services/wsdl/WsWorkunits/v2.05/WsWorkunits.ts +3177 -0
  23. package/src/services/wsdl/ws_access/v1.17/ws_access.ts +319 -319
  24. package/src/services/wsdl/ws_account/v1.07/ws_account.ts +39 -39
  25. package/src/services/wsdl/ws_codesign/v1.1/ws_codesign.ts +26 -26
  26. package/src/services/wsdl/ws_elk/v1/ws_elk.ts +14 -14
  27. package/src/services/wsdl/wsstore/v1.02/wsstore.ts +72 -72
  28. package/types/services/wsPackageProcess.d.ts +1 -1
  29. package/types/services/wsWorkunits.d.ts +1 -1
  30. package/types/services/wsdl/FileSpray/v1.27/FileSpray.d.ts +506 -506
  31. package/types/services/wsdl/WsCloud/v1.02/WsCloud.d.ts +18 -18
  32. package/types/services/wsdl/WsDFUXRef/v1.04/WsDFUXRef.d.ts +58 -57
  33. package/types/services/wsdl/WsDali/v1.07/WsDali.d.ts +42 -42
  34. package/types/services/wsdl/WsPackageProcess/{v1.07 → v1.08}/WsPackageProcess.d.ts +121 -118
  35. package/types/services/wsdl/WsSasha/v1.01/WsSasha.d.ts +13 -13
  36. package/types/services/wsdl/WsTopology/v1.33/WsTopology.d.ts +360 -360
  37. package/types/services/wsdl/WsWorkunits/v2.05/WsWorkunits.d.ts +2571 -0
  38. package/types/services/wsdl/ws_access/v1.17/ws_access.d.ts +268 -268
  39. package/types/services/wsdl/ws_account/v1.07/ws_account.d.ts +34 -34
  40. package/types/services/wsdl/ws_codesign/v1.1/ws_codesign.d.ts +22 -22
  41. package/types/services/wsdl/ws_elk/v1/ws_elk.d.ts +12 -12
  42. package/types/services/wsdl/wsstore/v1.02/wsstore.d.ts +61 -61
  43. package/types/services/wsdl/WsWorkunits/v2.04/WsWorkunits.d.ts +0 -2565
@@ -5,34 +5,34 @@ export declare namespace WsAccount {
5
5
  interface MyAccountRequest {
6
6
  }
7
7
  interface Exception {
8
- Code: string;
9
- Audience: string;
10
- Source: string;
11
- Message: string;
8
+ Code?: string;
9
+ Audience?: string;
10
+ Source?: string;
11
+ Message?: string;
12
12
  }
13
13
  interface Exceptions {
14
- Source: string;
15
- Exception: Exception[];
14
+ Source?: string;
15
+ Exception?: Exception[];
16
16
  }
17
17
  interface Groups {
18
- Group: string[];
18
+ Group?: string[];
19
19
  }
20
20
  interface MyAccountResponse {
21
- Exceptions: Exceptions;
22
- username: string;
23
- firstName: string;
24
- lastName: string;
25
- passwordExpiration: string;
26
- passwordDaysRemaining: int;
27
- passwordExpirationWarningDays: int;
28
- employeeID: string;
29
- distinguishedName: string;
30
- accountType: string;
31
- passwordNeverExpires: boolean;
32
- passwordIsExpired: boolean;
33
- CanUpdatePassword: boolean;
34
- accountStatus: int;
35
- Groups: Groups;
21
+ Exceptions?: Exceptions;
22
+ username?: string;
23
+ firstName?: string;
24
+ lastName?: string;
25
+ passwordExpiration?: string;
26
+ passwordDaysRemaining?: int;
27
+ passwordExpirationWarningDays?: int;
28
+ employeeID?: string;
29
+ distinguishedName?: string;
30
+ accountType?: string;
31
+ passwordNeverExpires?: boolean;
32
+ passwordIsExpired?: boolean;
33
+ CanUpdatePassword?: boolean;
34
+ accountStatus?: int;
35
+ Groups?: Groups;
36
36
  }
37
37
  interface ws_accountPingRequest {
38
38
  }
@@ -45,30 +45,30 @@ export declare namespace WsAccount {
45
45
  newpass2?: string;
46
46
  }
47
47
  interface UpdateUserResponse {
48
- Exceptions: Exceptions;
49
- retcode: int;
50
- message: string;
48
+ Exceptions?: Exceptions;
49
+ retcode?: int;
50
+ message?: string;
51
51
  }
52
52
  interface UpdateUserInputRequest {
53
53
  }
54
54
  interface UpdateUserInputResponse {
55
- Exceptions: Exceptions;
56
- username: string;
55
+ Exceptions?: Exceptions;
56
+ username?: string;
57
57
  }
58
58
  interface VerifyUserRequest {
59
59
  application?: string;
60
60
  version?: string;
61
61
  }
62
62
  interface VerifyUserResponse {
63
- Exceptions: Exceptions;
64
- retcode: int;
63
+ Exceptions?: Exceptions;
64
+ retcode?: int;
65
65
  }
66
66
  }
67
67
  export declare class AccountServiceBase extends Service {
68
68
  constructor(optsConnection: IOptions | IConnection);
69
- MyAccount(request: Partial<WsAccount.MyAccountRequest>): Promise<WsAccount.MyAccountResponse>;
70
- Ping(request: Partial<WsAccount.ws_accountPingRequest>): Promise<WsAccount.ws_accountPingResponse>;
71
- UpdateUser(request: Partial<WsAccount.UpdateUserRequest>): Promise<WsAccount.UpdateUserResponse>;
72
- UpdateUserInput(request: Partial<WsAccount.UpdateUserInputRequest>): Promise<WsAccount.UpdateUserInputResponse>;
73
- VerifyUser(request: Partial<WsAccount.VerifyUserRequest>): Promise<WsAccount.VerifyUserResponse>;
69
+ MyAccount(request: WsAccount.MyAccountRequest, abortSignal?: AbortSignal): Promise<WsAccount.MyAccountResponse>;
70
+ Ping(request: WsAccount.ws_accountPingRequest, abortSignal?: AbortSignal): Promise<WsAccount.ws_accountPingResponse>;
71
+ UpdateUser(request: WsAccount.UpdateUserRequest, abortSignal?: AbortSignal): Promise<WsAccount.UpdateUserResponse>;
72
+ UpdateUserInput(request: WsAccount.UpdateUserInputRequest, abortSignal?: AbortSignal): Promise<WsAccount.UpdateUserInputResponse>;
73
+ VerifyUser(request: WsAccount.VerifyUserRequest, abortSignal?: AbortSignal): Promise<WsAccount.VerifyUserResponse>;
74
74
  }
@@ -8,21 +8,21 @@ export declare namespace WsCodesign {
8
8
  interface ListUserIDsRequest {
9
9
  }
10
10
  interface Exception {
11
- Code: string;
12
- Audience: string;
13
- Source: string;
14
- Message: string;
11
+ Code?: string;
12
+ Audience?: string;
13
+ Source?: string;
14
+ Message?: string;
15
15
  }
16
16
  interface Exceptions {
17
- Source: string;
18
- Exception: Exception[];
17
+ Source?: string;
18
+ Exception?: Exception[];
19
19
  }
20
20
  interface UserIDs {
21
- Item: string[];
21
+ Item?: string[];
22
22
  }
23
23
  interface ListUserIDsResponse {
24
- Exceptions: Exceptions;
25
- UserIDs: UserIDs;
24
+ Exceptions?: Exceptions;
25
+ UserIDs?: UserIDs;
26
26
  }
27
27
  interface ws_codesignPingRequest {
28
28
  }
@@ -35,26 +35,26 @@ export declare namespace WsCodesign {
35
35
  Text?: string;
36
36
  }
37
37
  interface SignResponse {
38
- Exceptions: Exceptions;
39
- RetCode: int;
40
- ErrMsg: string;
41
- SignedText: string;
38
+ Exceptions?: Exceptions;
39
+ RetCode?: int;
40
+ ErrMsg?: string;
41
+ SignedText?: string;
42
42
  }
43
43
  interface VerifyRequest {
44
44
  Text?: string;
45
45
  }
46
46
  interface VerifyResponse {
47
- Exceptions: Exceptions;
48
- RetCode: int;
49
- ErrMsg: string;
50
- IsVerified: boolean;
51
- SignedBy: string;
47
+ Exceptions?: Exceptions;
48
+ RetCode?: int;
49
+ ErrMsg?: string;
50
+ IsVerified?: boolean;
51
+ SignedBy?: string;
52
52
  }
53
53
  }
54
54
  export declare class CodesignServiceBase extends Service {
55
55
  constructor(optsConnection: IOptions | IConnection);
56
- ListUserIDs(request: Partial<WsCodesign.ListUserIDsRequest>): Promise<WsCodesign.ListUserIDsResponse>;
57
- Ping(request: Partial<WsCodesign.ws_codesignPingRequest>): Promise<WsCodesign.ws_codesignPingResponse>;
58
- Sign(request: Partial<WsCodesign.SignRequest>): Promise<WsCodesign.SignResponse>;
59
- Verify(request: Partial<WsCodesign.VerifyRequest>): Promise<WsCodesign.VerifyResponse>;
56
+ ListUserIDs(request: WsCodesign.ListUserIDsRequest, abortSignal?: AbortSignal): Promise<WsCodesign.ListUserIDsResponse>;
57
+ Ping(request: WsCodesign.ws_codesignPingRequest, abortSignal?: AbortSignal): Promise<WsCodesign.ws_codesignPingResponse>;
58
+ Sign(request: WsCodesign.SignRequest, abortSignal?: AbortSignal): Promise<WsCodesign.SignResponse>;
59
+ Verify(request: WsCodesign.VerifyRequest, abortSignal?: AbortSignal): Promise<WsCodesign.VerifyResponse>;
60
60
  }
@@ -4,16 +4,16 @@ export declare namespace WsElk {
4
4
  interface GetConfigDetailsRequest {
5
5
  }
6
6
  interface GetConfigDetailsResponse {
7
- IntegrateKibana: boolean;
8
- KibanaAddress: string;
9
- KibanaPort: string;
10
- KibanaEntryPointURI: string;
11
- ReportElasticSearchHealth: boolean;
12
- ElasticSearchAddresses: string;
13
- ElasticSearchPort: string;
14
- ReportLogStashHealth: boolean;
15
- LogStashAddress: string;
16
- LogStashPort: string;
7
+ IntegrateKibana?: boolean;
8
+ KibanaAddress?: string;
9
+ KibanaPort?: string;
10
+ KibanaEntryPointURI?: string;
11
+ ReportElasticSearchHealth?: boolean;
12
+ ElasticSearchAddresses?: string;
13
+ ElasticSearchPort?: string;
14
+ ReportLogStashHealth?: boolean;
15
+ LogStashAddress?: string;
16
+ LogStashPort?: string;
17
17
  }
18
18
  interface ws_elkPingRequest {
19
19
  }
@@ -22,6 +22,6 @@ export declare namespace WsElk {
22
22
  }
23
23
  export declare class ElkServiceBase extends Service {
24
24
  constructor(optsConnection: IOptions | IConnection);
25
- GetConfigDetails(request: Partial<WsElk.GetConfigDetailsRequest>): Promise<WsElk.GetConfigDetailsResponse>;
26
- Ping(request: Partial<WsElk.ws_elkPingRequest>): Promise<WsElk.ws_elkPingResponse>;
25
+ GetConfigDetails(request: WsElk.GetConfigDetailsRequest, abortSignal?: AbortSignal): Promise<WsElk.GetConfigDetailsResponse>;
26
+ Ping(request: WsElk.ws_elkPingRequest, abortSignal?: AbortSignal): Promise<WsElk.ws_elkPingResponse>;
27
27
  }
@@ -9,22 +9,22 @@ export declare namespace Wsstore {
9
9
  MaxValueSize?: int;
10
10
  }
11
11
  interface Exception {
12
- Code: string;
13
- Audience: string;
14
- Source: string;
15
- Message: string;
12
+ Code?: string;
13
+ Audience?: string;
14
+ Source?: string;
15
+ Message?: string;
16
16
  }
17
17
  interface Exceptions {
18
- Source: string;
19
- Exception: Exception[];
18
+ Source?: string;
19
+ Exception?: Exception[];
20
20
  }
21
21
  interface CreateStoreResponse {
22
- Exceptions: Exceptions;
23
- Name: string;
24
- Type: string;
25
- Description: string;
26
- Owner: string;
27
- Success: boolean;
22
+ Exceptions?: Exceptions;
23
+ Name?: string;
24
+ Type?: string;
25
+ Description?: string;
26
+ Owner?: string;
27
+ Success?: boolean;
28
28
  }
29
29
  interface DeleteRequest {
30
30
  StoreName?: string;
@@ -34,8 +34,8 @@ export declare namespace Wsstore {
34
34
  TargetUser?: string;
35
35
  }
36
36
  interface DeleteResponse {
37
- Exceptions: Exceptions;
38
- Success: boolean;
37
+ Exceptions?: Exceptions;
38
+ Success?: boolean;
39
39
  }
40
40
  interface DeleteNamespaceRequest {
41
41
  StoreName?: string;
@@ -44,8 +44,8 @@ export declare namespace Wsstore {
44
44
  TargetUser?: string;
45
45
  }
46
46
  interface DeleteNamespaceResponse {
47
- Exceptions: Exceptions;
48
- Success: boolean;
47
+ Exceptions?: Exceptions;
48
+ Success?: boolean;
49
49
  }
50
50
  interface FetchRequest {
51
51
  StoreName?: string;
@@ -54,8 +54,8 @@ export declare namespace Wsstore {
54
54
  UserSpecific?: boolean;
55
55
  }
56
56
  interface FetchResponse {
57
- Exceptions: Exceptions;
58
- Value: string;
57
+ Exceptions?: Exceptions;
58
+ Value?: string;
59
59
  }
60
60
  interface FetchAllRequest {
61
61
  StoreName?: string;
@@ -63,16 +63,16 @@ export declare namespace Wsstore {
63
63
  UserSpecific?: boolean;
64
64
  }
65
65
  interface Pair {
66
- Key: string;
67
- Value: string;
66
+ Key?: string;
67
+ Value?: string;
68
68
  }
69
69
  interface Pairs {
70
- Pair: Pair[];
70
+ Pair?: Pair[];
71
71
  }
72
72
  interface FetchAllResponse {
73
- Exceptions: Exceptions;
74
- Namespace: string;
75
- Pairs: Pairs;
73
+ Exceptions?: Exceptions;
74
+ Namespace?: string;
75
+ Pairs?: Pairs;
76
76
  }
77
77
  interface FetchKeyMDRequest {
78
78
  StoreName?: string;
@@ -81,11 +81,11 @@ export declare namespace Wsstore {
81
81
  UserSpecific?: boolean;
82
82
  }
83
83
  interface FetchKeyMDResponse {
84
- Exceptions: Exceptions;
85
- StoreName: string;
86
- Namespace: string;
87
- Key: string;
88
- Pairs: Pairs;
84
+ Exceptions?: Exceptions;
85
+ StoreName?: string;
86
+ Namespace?: string;
87
+ Key?: string;
88
+ Pairs?: Pairs;
89
89
  }
90
90
  interface ListKeysRequest {
91
91
  StoreName?: string;
@@ -93,25 +93,25 @@ export declare namespace Wsstore {
93
93
  UserSpecific?: boolean;
94
94
  }
95
95
  interface KeySet {
96
- Key: string[];
96
+ Key?: string[];
97
97
  }
98
98
  interface ListKeysResponse {
99
- Exceptions: Exceptions;
100
- StoreName: string;
101
- Namespace: string;
102
- KeySet: KeySet;
99
+ Exceptions?: Exceptions;
100
+ StoreName?: string;
101
+ Namespace?: string;
102
+ KeySet?: KeySet;
103
103
  }
104
104
  interface ListNamespacesRequest {
105
105
  StoreName?: string;
106
106
  UserSpecific?: boolean;
107
107
  }
108
108
  interface Namespaces {
109
- Namespace: string[];
109
+ Namespace?: string[];
110
110
  }
111
111
  interface ListNamespacesResponse {
112
- Exceptions: Exceptions;
113
- StoreName: string;
114
- Namespaces: Namespaces;
112
+ Exceptions?: Exceptions;
113
+ StoreName?: string;
114
+ Namespaces?: Namespaces;
115
115
  }
116
116
  interface ListStoresRequest {
117
117
  NameFilter?: string;
@@ -119,20 +119,20 @@ export declare namespace Wsstore {
119
119
  OwnerFilter?: string;
120
120
  }
121
121
  interface Store {
122
- Name: string;
123
- Type: string;
124
- Description: string;
125
- Owner: string;
126
- CreateTime: string;
127
- MaxValSize: string;
128
- IsDefault: boolean;
122
+ Name?: string;
123
+ Type?: string;
124
+ Description?: string;
125
+ Owner?: string;
126
+ CreateTime?: string;
127
+ MaxValSize?: string;
128
+ IsDefault?: boolean;
129
129
  }
130
130
  interface Stores {
131
- Store: Store[];
131
+ Store?: Store[];
132
132
  }
133
133
  interface ListStoresResponse {
134
- Exceptions: Exceptions;
135
- Stores: Stores;
134
+ Exceptions?: Exceptions;
135
+ Stores?: Stores;
136
136
  }
137
137
  interface wsstorePingRequest {
138
138
  }
@@ -146,21 +146,21 @@ export declare namespace Wsstore {
146
146
  UserSpecific?: boolean;
147
147
  }
148
148
  interface SetResponse {
149
- Exceptions: Exceptions;
150
- Success: boolean;
149
+ Exceptions?: Exceptions;
150
+ Success?: boolean;
151
151
  }
152
152
  }
153
153
  export declare class storeServiceBase extends Service {
154
154
  constructor(optsConnection: IOptions | IConnection);
155
- CreateStore(request: Partial<Wsstore.CreateStoreRequest>): Promise<Wsstore.CreateStoreResponse>;
156
- Delete(request: Partial<Wsstore.DeleteRequest>): Promise<Wsstore.DeleteResponse>;
157
- DeleteNamespace(request: Partial<Wsstore.DeleteNamespaceRequest>): Promise<Wsstore.DeleteNamespaceResponse>;
158
- Fetch(request: Partial<Wsstore.FetchRequest>): Promise<Wsstore.FetchResponse>;
159
- FetchAll(request: Partial<Wsstore.FetchAllRequest>): Promise<Wsstore.FetchAllResponse>;
160
- FetchKeyMetadata(request: Partial<Wsstore.FetchKeyMDRequest>): Promise<Wsstore.FetchKeyMDResponse>;
161
- ListKeys(request: Partial<Wsstore.ListKeysRequest>): Promise<Wsstore.ListKeysResponse>;
162
- ListNamespaces(request: Partial<Wsstore.ListNamespacesRequest>): Promise<Wsstore.ListNamespacesResponse>;
163
- ListStores(request: Partial<Wsstore.ListStoresRequest>): Promise<Wsstore.ListStoresResponse>;
164
- Ping(request: Partial<Wsstore.wsstorePingRequest>): Promise<Wsstore.wsstorePingResponse>;
165
- Set(request: Partial<Wsstore.SetRequest>): Promise<Wsstore.SetResponse>;
155
+ CreateStore(request: Wsstore.CreateStoreRequest, abortSignal?: AbortSignal): Promise<Wsstore.CreateStoreResponse>;
156
+ Delete(request: Wsstore.DeleteRequest, abortSignal?: AbortSignal): Promise<Wsstore.DeleteResponse>;
157
+ DeleteNamespace(request: Wsstore.DeleteNamespaceRequest, abortSignal?: AbortSignal): Promise<Wsstore.DeleteNamespaceResponse>;
158
+ Fetch(request: Wsstore.FetchRequest, abortSignal?: AbortSignal): Promise<Wsstore.FetchResponse>;
159
+ FetchAll(request: Wsstore.FetchAllRequest, abortSignal?: AbortSignal): Promise<Wsstore.FetchAllResponse>;
160
+ FetchKeyMetadata(request: Wsstore.FetchKeyMDRequest, abortSignal?: AbortSignal): Promise<Wsstore.FetchKeyMDResponse>;
161
+ ListKeys(request: Wsstore.ListKeysRequest, abortSignal?: AbortSignal): Promise<Wsstore.ListKeysResponse>;
162
+ ListNamespaces(request: Wsstore.ListNamespacesRequest, abortSignal?: AbortSignal): Promise<Wsstore.ListNamespacesResponse>;
163
+ ListStores(request: Wsstore.ListStoresRequest, abortSignal?: AbortSignal): Promise<Wsstore.ListStoresResponse>;
164
+ Ping(request: Wsstore.wsstorePingRequest, abortSignal?: AbortSignal): Promise<Wsstore.wsstorePingResponse>;
165
+ Set(request: Wsstore.SetRequest, abortSignal?: AbortSignal): Promise<Wsstore.SetResponse>;
166
166
  }