@openremote/rest 1.11.0-snapshot.20251030160722 → 1.11.0-snapshot.20251031111902
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/umd/index.bundle.js +1 -1
- package/dist/umd/index.bundle.js.map +1 -1
- package/dist/umd/index.js +1 -1
- package/dist/umd/index.js.map +1 -1
- package/lib/restclient.d.ts +478 -478
- package/lib/restclient.js +1 -1
- package/lib/restclient.js.map +1 -1
- package/package.json +1 -1
package/lib/restclient.d.ts
CHANGED
|
@@ -9,31 +9,31 @@ export interface HttpClient<O> {
|
|
|
9
9
|
options?: O;
|
|
10
10
|
}): RestResponse<R>;
|
|
11
11
|
}
|
|
12
|
-
export declare class
|
|
12
|
+
export declare class ConfigurationResourceClient<O> {
|
|
13
13
|
protected httpClient: HttpClient<O>;
|
|
14
14
|
constructor(httpClient: HttpClient<O>);
|
|
15
15
|
/**
|
|
16
|
-
* HTTP GET /
|
|
17
|
-
* Java method: org.openremote.model.
|
|
16
|
+
* HTTP GET /configuration/manager
|
|
17
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfig
|
|
18
18
|
*/
|
|
19
|
-
|
|
20
|
-
realm?: string;
|
|
21
|
-
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
19
|
+
getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
22
20
|
/**
|
|
23
|
-
* HTTP
|
|
24
|
-
* Java method: org.openremote.model.
|
|
21
|
+
* HTTP PUT /configuration/manager
|
|
22
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.update
|
|
25
23
|
*/
|
|
26
|
-
|
|
27
|
-
realm?: string;
|
|
28
|
-
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
24
|
+
update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
29
25
|
/**
|
|
30
|
-
* HTTP
|
|
31
|
-
* Java method: org.openremote.model.
|
|
26
|
+
* HTTP POST /configuration/manager/file
|
|
27
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.fileUpload
|
|
32
28
|
*/
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
29
|
+
fileUpload(fileInfo: Model.FileInfo, queryParams?: {
|
|
30
|
+
path?: string;
|
|
31
|
+
}, options?: O): RestResponse<string>;
|
|
32
|
+
/**
|
|
33
|
+
* HTTP GET /configuration/manager/image/{filename: .+}
|
|
34
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfigImage
|
|
35
|
+
*/
|
|
36
|
+
getManagerConfigImage(filename: string, options?: O): RestResponse<any>;
|
|
37
37
|
}
|
|
38
38
|
export declare class GatewayClientResourceClient<O> {
|
|
39
39
|
protected httpClient: HttpClient<O>;
|
|
@@ -71,116 +71,39 @@ export declare class GatewayClientResourceClient<O> {
|
|
|
71
71
|
*/
|
|
72
72
|
getConnectionStatus(realm: string, options?: O): RestResponse<Model.ConnectionStatus>;
|
|
73
73
|
}
|
|
74
|
-
export declare class
|
|
75
|
-
protected httpClient: HttpClient<O>;
|
|
76
|
-
constructor(httpClient: HttpClient<O>);
|
|
77
|
-
/**
|
|
78
|
-
* HTTP POST /provisioning
|
|
79
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
|
|
80
|
-
*/
|
|
81
|
-
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
82
|
-
/**
|
|
83
|
-
* HTTP GET /provisioning
|
|
84
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
85
|
-
*/
|
|
86
|
-
getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
|
|
87
|
-
/**
|
|
88
|
-
* HTTP DELETE /provisioning/{id}
|
|
89
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
|
|
90
|
-
*/
|
|
91
|
-
deleteProvisioningConfig(id: number, options?: O): RestResponse<void>;
|
|
92
|
-
/**
|
|
93
|
-
* HTTP PUT /provisioning/{id}
|
|
94
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
|
|
95
|
-
*/
|
|
96
|
-
updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
|
|
97
|
-
}
|
|
98
|
-
export declare class SyslogResourceClient<O> {
|
|
99
|
-
protected httpClient: HttpClient<O>;
|
|
100
|
-
constructor(httpClient: HttpClient<O>);
|
|
101
|
-
/**
|
|
102
|
-
* HTTP GET /syslog/config
|
|
103
|
-
* Java method: org.openremote.model.syslog.SyslogResource.getConfig
|
|
104
|
-
*/
|
|
105
|
-
getConfig(options?: O): RestResponse<Model.SyslogConfig>;
|
|
106
|
-
/**
|
|
107
|
-
* HTTP PUT /syslog/config
|
|
108
|
-
* Java method: org.openremote.model.syslog.SyslogResource.updateConfig
|
|
109
|
-
*/
|
|
110
|
-
updateConfig(config: Model.SyslogConfig, options?: O): RestResponse<void>;
|
|
111
|
-
/**
|
|
112
|
-
* HTTP DELETE /syslog/event
|
|
113
|
-
* Java method: org.openremote.model.syslog.SyslogResource.clearEvents
|
|
114
|
-
*/
|
|
115
|
-
clearEvents(options?: O): RestResponse<void>;
|
|
116
|
-
/**
|
|
117
|
-
* HTTP GET /syslog/event
|
|
118
|
-
* Java method: org.openremote.model.syslog.SyslogResource.getEvents
|
|
119
|
-
*/
|
|
120
|
-
getEvents(queryParams?: {
|
|
121
|
-
level?: Model.SyslogLevel;
|
|
122
|
-
per_page?: number;
|
|
123
|
-
page?: number;
|
|
124
|
-
from?: number;
|
|
125
|
-
to?: number;
|
|
126
|
-
category?: Model.SyslogCategory[];
|
|
127
|
-
subCategory?: string[];
|
|
128
|
-
}, options?: O): RestResponse<any>;
|
|
129
|
-
}
|
|
130
|
-
export declare class ConfigurationResourceClient<O> {
|
|
74
|
+
export declare class DashboardResourceClient<O> {
|
|
131
75
|
protected httpClient: HttpClient<O>;
|
|
132
76
|
constructor(httpClient: HttpClient<O>);
|
|
133
77
|
/**
|
|
134
|
-
* HTTP
|
|
135
|
-
* Java method: org.openremote.model.
|
|
136
|
-
*/
|
|
137
|
-
getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
138
|
-
/**
|
|
139
|
-
* HTTP PUT /configuration/manager
|
|
140
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.update
|
|
141
|
-
*/
|
|
142
|
-
update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
143
|
-
/**
|
|
144
|
-
* HTTP POST /configuration/manager/file
|
|
145
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.fileUpload
|
|
146
|
-
*/
|
|
147
|
-
fileUpload(fileInfo: Model.FileInfo, queryParams?: {
|
|
148
|
-
path?: string;
|
|
149
|
-
}, options?: O): RestResponse<string>;
|
|
150
|
-
/**
|
|
151
|
-
* HTTP GET /configuration/manager/image/{filename: .+}
|
|
152
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfigImage
|
|
78
|
+
* HTTP POST /dashboard
|
|
79
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.create
|
|
153
80
|
*/
|
|
154
|
-
|
|
155
|
-
}
|
|
156
|
-
export declare class GatewayServiceResourceClient<O> {
|
|
157
|
-
protected httpClient: HttpClient<O>;
|
|
158
|
-
constructor(httpClient: HttpClient<O>);
|
|
81
|
+
create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
159
82
|
/**
|
|
160
|
-
* HTTP
|
|
161
|
-
* Java method: org.openremote.model.
|
|
83
|
+
* HTTP PUT /dashboard
|
|
84
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.update
|
|
162
85
|
*/
|
|
163
|
-
|
|
86
|
+
update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
164
87
|
/**
|
|
165
|
-
* HTTP
|
|
166
|
-
* Java method: org.openremote.model.
|
|
88
|
+
* HTTP GET /dashboard/all/{realm}
|
|
89
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards
|
|
167
90
|
*/
|
|
168
|
-
|
|
91
|
+
getAllRealmDashboards(realm: string, options?: O): RestResponse<Model.Dashboard[]>;
|
|
169
92
|
/**
|
|
170
|
-
* HTTP
|
|
171
|
-
* Java method: org.openremote.model.
|
|
93
|
+
* HTTP POST /dashboard/query
|
|
94
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.query
|
|
172
95
|
*/
|
|
173
|
-
|
|
96
|
+
query(dashboardQuery: Model.DashboardQuery, options?: O): RestResponse<Model.Dashboard[]>;
|
|
174
97
|
/**
|
|
175
|
-
* HTTP
|
|
176
|
-
* Java method: org.openremote.model.
|
|
98
|
+
* HTTP DELETE /dashboard/{realm}/{dashboardId}
|
|
99
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.delete
|
|
177
100
|
*/
|
|
178
|
-
|
|
101
|
+
delete(realm: string, dashboardId: string, options?: O): RestResponse<void>;
|
|
179
102
|
/**
|
|
180
|
-
* HTTP GET /
|
|
181
|
-
* Java method: org.openremote.model.
|
|
103
|
+
* HTTP GET /dashboard/{realm}/{dashboardId}
|
|
104
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.get
|
|
182
105
|
*/
|
|
183
|
-
|
|
106
|
+
get(realm: string, dashboardId: string, options?: O): RestResponse<Model.Dashboard>;
|
|
184
107
|
}
|
|
185
108
|
export declare class AssetResourceClient<O> {
|
|
186
109
|
protected httpClient: HttpClient<O>;
|
|
@@ -284,12 +207,310 @@ export declare class AssetResourceClient<O> {
|
|
|
284
207
|
*/
|
|
285
208
|
writeAttributeValue$PUT$asset_assetId_attribute_attributeName_timestamp(assetId: string, attributeName: string, timestamp: number, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
286
209
|
/**
|
|
287
|
-
* HTTP PUT /asset/{parentAssetId}/child
|
|
288
|
-
* Java method: org.openremote.model.asset.AssetResource.updateParent
|
|
210
|
+
* HTTP PUT /asset/{parentAssetId}/child
|
|
211
|
+
* Java method: org.openremote.model.asset.AssetResource.updateParent
|
|
212
|
+
*/
|
|
213
|
+
updateParent(parentAssetId: string, queryParams?: {
|
|
214
|
+
assetIds?: string[];
|
|
215
|
+
}, options?: O): RestResponse<void>;
|
|
216
|
+
}
|
|
217
|
+
export declare class AssetPredictedDatapointResourceClient<O> {
|
|
218
|
+
protected httpClient: HttpClient<O>;
|
|
219
|
+
constructor(httpClient: HttpClient<O>);
|
|
220
|
+
/**
|
|
221
|
+
* HTTP POST /asset/predicted/{assetId}/{attributeName}
|
|
222
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints
|
|
223
|
+
*/
|
|
224
|
+
getPredictedDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
225
|
+
/**
|
|
226
|
+
* HTTP PUT /asset/predicted/{assetId}/{attributeName}
|
|
227
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
|
|
228
|
+
*/
|
|
229
|
+
writePredictedDatapoints(assetId: string, attributeName: string, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void>;
|
|
230
|
+
}
|
|
231
|
+
export declare class StatusResourceClient<O> {
|
|
232
|
+
protected httpClient: HttpClient<O>;
|
|
233
|
+
constructor(httpClient: HttpClient<O>);
|
|
234
|
+
/**
|
|
235
|
+
* HTTP GET /health
|
|
236
|
+
* Java method: org.openremote.model.system.StatusResource.getHealthStatus
|
|
237
|
+
*/
|
|
238
|
+
getHealthStatus(options?: O): RestResponse<{
|
|
239
|
+
[index: string]: any;
|
|
240
|
+
}>;
|
|
241
|
+
/**
|
|
242
|
+
* HTTP GET /info
|
|
243
|
+
* Java method: org.openremote.model.system.StatusResource.getInfo
|
|
244
|
+
*/
|
|
245
|
+
getInfo(options?: O): RestResponse<{
|
|
246
|
+
[index: string]: any;
|
|
247
|
+
}>;
|
|
248
|
+
}
|
|
249
|
+
export declare class UserResourceClient<O> {
|
|
250
|
+
protected httpClient: HttpClient<O>;
|
|
251
|
+
constructor(httpClient: HttpClient<O>);
|
|
252
|
+
/**
|
|
253
|
+
* HTTP PUT /user/locale
|
|
254
|
+
* Java method: org.openremote.model.security.UserResource.updateCurrentUserLocale
|
|
255
|
+
*/
|
|
256
|
+
updateCurrentUserLocale(locale: string, options?: O): RestResponse<void>;
|
|
257
|
+
/**
|
|
258
|
+
* HTTP POST /user/query
|
|
259
|
+
* Java method: org.openremote.model.security.UserResource.query
|
|
260
|
+
*/
|
|
261
|
+
query(query: Model.UserQuery, options?: O): RestResponse<Model.User[]>;
|
|
262
|
+
/**
|
|
263
|
+
* HTTP PUT /user/request-password-reset
|
|
264
|
+
* Java method: org.openremote.model.security.UserResource.requestPasswordResetCurrent
|
|
265
|
+
*/
|
|
266
|
+
requestPasswordResetCurrent(options?: O): RestResponse<void>;
|
|
267
|
+
/**
|
|
268
|
+
* HTTP PUT /user/reset-password
|
|
269
|
+
* Java method: org.openremote.model.security.UserResource.updatePasswordCurrent
|
|
270
|
+
*/
|
|
271
|
+
updatePasswordCurrent(credential: Model.Credential, options?: O): RestResponse<void>;
|
|
272
|
+
/**
|
|
273
|
+
* HTTP PUT /user/update
|
|
274
|
+
* Java method: org.openremote.model.security.UserResource.updateCurrent
|
|
275
|
+
*/
|
|
276
|
+
updateCurrent(user: Model.User, options?: O): RestResponse<Model.User>;
|
|
277
|
+
/**
|
|
278
|
+
* HTTP GET /user/user
|
|
279
|
+
* Java method: org.openremote.model.security.UserResource.getCurrent
|
|
280
|
+
*/
|
|
281
|
+
getCurrent(options?: O): RestResponse<Model.User>;
|
|
282
|
+
/**
|
|
283
|
+
* HTTP GET /user/userRealmRoles
|
|
284
|
+
* Java method: org.openremote.model.security.UserResource.getCurrentUserRealmRoles
|
|
285
|
+
*/
|
|
286
|
+
getCurrentUserRealmRoles(options?: O): RestResponse<string[]>;
|
|
287
|
+
/**
|
|
288
|
+
* HTTP GET /user/userRoles/{clientId}
|
|
289
|
+
* Java method: org.openremote.model.security.UserResource.getCurrentUserClientRoles
|
|
290
|
+
*/
|
|
291
|
+
getCurrentUserClientRoles(clientId: string, options?: O): RestResponse<string[]>;
|
|
292
|
+
/**
|
|
293
|
+
* HTTP GET /user/{realm}/disconnect/{sessionID}
|
|
294
|
+
* Java method: org.openremote.model.security.UserResource.disconnectUserSession
|
|
295
|
+
*/
|
|
296
|
+
disconnectUserSession(realm: string, sessionID: string, options?: O): RestResponse<void>;
|
|
297
|
+
/**
|
|
298
|
+
* HTTP PUT /user/{realm}/request-password-reset/{userId}
|
|
299
|
+
* Java method: org.openremote.model.security.UserResource.requestPasswordReset
|
|
300
|
+
*/
|
|
301
|
+
requestPasswordReset(realm: string, userId: string, options?: O): RestResponse<void>;
|
|
302
|
+
/**
|
|
303
|
+
* HTTP PUT /user/{realm}/reset-password/{userId}
|
|
304
|
+
* Java method: org.openremote.model.security.UserResource.updatePassword
|
|
305
|
+
*/
|
|
306
|
+
updatePassword(realm: string, userId: string, credential: Model.Credential, options?: O): RestResponse<void>;
|
|
307
|
+
/**
|
|
308
|
+
* HTTP GET /user/{realm}/reset-secret/{userId}
|
|
309
|
+
* Java method: org.openremote.model.security.UserResource.resetSecret
|
|
310
|
+
*/
|
|
311
|
+
resetSecret(realm: string, userId: string, options?: O): RestResponse<string>;
|
|
312
|
+
/**
|
|
313
|
+
* HTTP PUT /user/{realm}/roles
|
|
314
|
+
* Java method: org.openremote.model.security.UserResource.updateRoles
|
|
315
|
+
*/
|
|
316
|
+
updateRoles(realm: string, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
317
|
+
/**
|
|
318
|
+
* HTTP GET /user/{realm}/userRealmRoles/{userId}
|
|
319
|
+
* Java method: org.openremote.model.security.UserResource.getUserRealmRoles
|
|
320
|
+
*/
|
|
321
|
+
getUserRealmRoles(realm: string, userId: string, options?: O): RestResponse<string[]>;
|
|
322
|
+
/**
|
|
323
|
+
* HTTP PUT /user/{realm}/userRealmRoles/{userId}
|
|
324
|
+
* Java method: org.openremote.model.security.UserResource.updateUserRealmRoles
|
|
325
|
+
*/
|
|
326
|
+
updateUserRealmRoles(realm: string, userId: string, roles: string[], options?: O): RestResponse<void>;
|
|
327
|
+
/**
|
|
328
|
+
* HTTP GET /user/{realm}/userRoles/{userId}/{clientId}
|
|
329
|
+
* Java method: org.openremote.model.security.UserResource.getUserClientRoles
|
|
330
|
+
*/
|
|
331
|
+
getUserClientRoles(realm: string, userId: string, clientId: string, options?: O): RestResponse<string[]>;
|
|
332
|
+
/**
|
|
333
|
+
* HTTP PUT /user/{realm}/userRoles/{userId}/{clientId}
|
|
334
|
+
* Java method: org.openremote.model.security.UserResource.updateUserClientRoles
|
|
335
|
+
*/
|
|
336
|
+
updateUserClientRoles(realm: string, userId: string, clientId: string, roles: string[], options?: O): RestResponse<void>;
|
|
337
|
+
/**
|
|
338
|
+
* HTTP GET /user/{realm}/userSessions/{userId}
|
|
339
|
+
* Java method: org.openremote.model.security.UserResource.getUserSessions
|
|
340
|
+
*/
|
|
341
|
+
getUserSessions(realm: string, userId: string, options?: O): RestResponse<Model.UserSession[]>;
|
|
342
|
+
/**
|
|
343
|
+
* HTTP POST /user/{realm}/users
|
|
344
|
+
* Java method: org.openremote.model.security.UserResource.create
|
|
345
|
+
*/
|
|
346
|
+
create(realm: string, user: Model.User, options?: O): RestResponse<Model.User>;
|
|
347
|
+
/**
|
|
348
|
+
* HTTP PUT /user/{realm}/users
|
|
349
|
+
* Java method: org.openremote.model.security.UserResource.update
|
|
350
|
+
*/
|
|
351
|
+
update(realm: string, user: Model.User, options?: O): RestResponse<Model.User>;
|
|
352
|
+
/**
|
|
353
|
+
* HTTP DELETE /user/{realm}/users/{userId}
|
|
354
|
+
* Java method: org.openremote.model.security.UserResource.delete
|
|
355
|
+
*/
|
|
356
|
+
delete(realm: string, userId: string, options?: O): RestResponse<void>;
|
|
357
|
+
/**
|
|
358
|
+
* HTTP GET /user/{realm}/{clientId}/roles
|
|
359
|
+
* Java method: org.openremote.model.security.UserResource.getClientRoles
|
|
360
|
+
*/
|
|
361
|
+
getClientRoles(realm: string, clientId: string, options?: O): RestResponse<Model.Role[]>;
|
|
362
|
+
/**
|
|
363
|
+
* HTTP PUT /user/{realm}/{clientId}/roles
|
|
364
|
+
* Java method: org.openremote.model.security.UserResource.updateClientRoles
|
|
365
|
+
*/
|
|
366
|
+
updateClientRoles(realm: string, clientId: string, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
367
|
+
/**
|
|
368
|
+
* HTTP GET /user/{realm}/{userId}
|
|
369
|
+
* Java method: org.openremote.model.security.UserResource.get
|
|
370
|
+
*/
|
|
371
|
+
get(realm: string, userId: string, options?: O): RestResponse<Model.User>;
|
|
372
|
+
}
|
|
373
|
+
export declare class GatewayServiceResourceClient<O> {
|
|
374
|
+
protected httpClient: HttpClient<O>;
|
|
375
|
+
constructor(httpClient: HttpClient<O>);
|
|
376
|
+
/**
|
|
377
|
+
* HTTP POST /gateway/tunnel
|
|
378
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.startTunnel
|
|
379
|
+
*/
|
|
380
|
+
startTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
381
|
+
/**
|
|
382
|
+
* HTTP DELETE /gateway/tunnel
|
|
383
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.stopTunnel
|
|
384
|
+
*/
|
|
385
|
+
stopTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<void>;
|
|
386
|
+
/**
|
|
387
|
+
* HTTP GET /gateway/tunnel/{realm}
|
|
388
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getAllActiveTunnelInfos
|
|
389
|
+
*/
|
|
390
|
+
getAllActiveTunnelInfos(realm: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
391
|
+
/**
|
|
392
|
+
* HTTP GET /gateway/tunnel/{realm}/{id}
|
|
393
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getGatewayActiveTunnelInfos
|
|
394
|
+
*/
|
|
395
|
+
getGatewayActiveTunnelInfos(realm: string, id: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
396
|
+
/**
|
|
397
|
+
* HTTP GET /gateway/tunnel/{realm}/{id}/{target}/{targetPort}
|
|
398
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getActiveTunnelInfo
|
|
399
|
+
*/
|
|
400
|
+
getActiveTunnelInfo(realm: string, id: string, target: string, targetPort: number, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
401
|
+
}
|
|
402
|
+
export declare class RealmResourceClient<O> {
|
|
403
|
+
protected httpClient: HttpClient<O>;
|
|
404
|
+
constructor(httpClient: HttpClient<O>);
|
|
405
|
+
/**
|
|
406
|
+
* HTTP POST /realm
|
|
407
|
+
* Java method: org.openremote.model.security.RealmResource.create
|
|
408
|
+
*/
|
|
409
|
+
create(realm: Model.Realm, options?: O): RestResponse<void>;
|
|
410
|
+
/**
|
|
411
|
+
* HTTP GET /realm
|
|
412
|
+
* Java method: org.openremote.model.security.RealmResource.getAll
|
|
413
|
+
*/
|
|
414
|
+
getAll(options?: O): RestResponse<Model.Realm[]>;
|
|
415
|
+
/**
|
|
416
|
+
* HTTP GET /realm/accessible
|
|
417
|
+
* Java method: org.openremote.model.security.RealmResource.getAccessible
|
|
418
|
+
*/
|
|
419
|
+
getAccessible(options?: O): RestResponse<Model.Realm[]>;
|
|
420
|
+
/**
|
|
421
|
+
* HTTP DELETE /realm/{name}
|
|
422
|
+
* Java method: org.openremote.model.security.RealmResource.delete
|
|
423
|
+
*/
|
|
424
|
+
delete(name: string, options?: O): RestResponse<void>;
|
|
425
|
+
/**
|
|
426
|
+
* HTTP GET /realm/{name}
|
|
427
|
+
* Java method: org.openremote.model.security.RealmResource.get
|
|
428
|
+
*/
|
|
429
|
+
get(name: string, options?: O): RestResponse<Model.Realm>;
|
|
430
|
+
/**
|
|
431
|
+
* HTTP PUT /realm/{name}
|
|
432
|
+
* Java method: org.openremote.model.security.RealmResource.update
|
|
433
|
+
*/
|
|
434
|
+
update(name: string, realm: Model.Realm, options?: O): RestResponse<void>;
|
|
435
|
+
}
|
|
436
|
+
export declare class AssetDatapointResourceClient<O> {
|
|
437
|
+
protected httpClient: HttpClient<O>;
|
|
438
|
+
constructor(httpClient: HttpClient<O>);
|
|
439
|
+
/**
|
|
440
|
+
* HTTP GET /asset/datapoint/export
|
|
441
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport
|
|
442
|
+
*/
|
|
443
|
+
getDatapointExport(queryParams?: {
|
|
444
|
+
attributeRefs?: string;
|
|
445
|
+
fromTimestamp?: number;
|
|
446
|
+
toTimestamp?: number;
|
|
447
|
+
}, options?: O): RestResponse<any>;
|
|
448
|
+
/**
|
|
449
|
+
* HTTP GET /asset/datapoint/periods
|
|
450
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
|
|
451
|
+
*/
|
|
452
|
+
getDatapointPeriod(queryParams?: {
|
|
453
|
+
assetId?: string;
|
|
454
|
+
attributeName?: string;
|
|
455
|
+
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
456
|
+
/**
|
|
457
|
+
* HTTP POST /asset/datapoint/{assetId}/{attributeName}
|
|
458
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
|
|
459
|
+
*/
|
|
460
|
+
getDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
461
|
+
}
|
|
462
|
+
export declare class AssetModelResourceClient<O> {
|
|
463
|
+
protected httpClient: HttpClient<O>;
|
|
464
|
+
constructor(httpClient: HttpClient<O>);
|
|
465
|
+
/**
|
|
466
|
+
* HTTP GET /model/assetDescriptors
|
|
467
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetDescriptors
|
|
468
|
+
*/
|
|
469
|
+
getAssetDescriptors(queryParams?: {
|
|
470
|
+
parentId?: string;
|
|
471
|
+
parentType?: string;
|
|
472
|
+
}, options?: O): RestResponse<Model.AssetDescriptor[]>;
|
|
473
|
+
/**
|
|
474
|
+
* HTTP GET /model/assetInfo/{assetType}
|
|
475
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfo
|
|
476
|
+
*/
|
|
477
|
+
getAssetInfo(assetType: string, queryParams?: {
|
|
478
|
+
parentId?: string;
|
|
479
|
+
}, options?: O): RestResponse<Model.AssetTypeInfo>;
|
|
480
|
+
/**
|
|
481
|
+
* HTTP GET /model/assetInfos
|
|
482
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfos
|
|
483
|
+
*/
|
|
484
|
+
getAssetInfos(queryParams?: {
|
|
485
|
+
parentId?: string;
|
|
486
|
+
parentType?: string;
|
|
487
|
+
}, options?: O): RestResponse<Model.AssetTypeInfo[]>;
|
|
488
|
+
/**
|
|
489
|
+
* HTTP GET /model/getValueDescriptorSchema
|
|
490
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getValueDescriptorSchema
|
|
491
|
+
*/
|
|
492
|
+
getValueDescriptorSchema(queryParams?: {
|
|
493
|
+
name?: string;
|
|
494
|
+
hash?: string;
|
|
495
|
+
}, options?: O): RestResponse<any>;
|
|
496
|
+
/**
|
|
497
|
+
* HTTP GET /model/metaItemDescriptors
|
|
498
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getMetaItemDescriptors
|
|
499
|
+
*/
|
|
500
|
+
getMetaItemDescriptors(queryParams?: {
|
|
501
|
+
parentId?: string;
|
|
502
|
+
}, options?: O): RestResponse<{
|
|
503
|
+
[index: string]: Model.MetaItemDescriptor;
|
|
504
|
+
}>;
|
|
505
|
+
/**
|
|
506
|
+
* HTTP GET /model/valueDescriptors
|
|
507
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getValueDescriptors
|
|
289
508
|
*/
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
}, options?: O): RestResponse<
|
|
509
|
+
getValueDescriptors(queryParams?: {
|
|
510
|
+
parentId?: string;
|
|
511
|
+
}, options?: O): RestResponse<{
|
|
512
|
+
[index: string]: Model.ValueDescriptor;
|
|
513
|
+
}>;
|
|
293
514
|
}
|
|
294
515
|
export declare class NotificationResourceClient<O> {
|
|
295
516
|
protected httpClient: HttpClient<O>;
|
|
@@ -345,6 +566,25 @@ export declare class NotificationResourceClient<O> {
|
|
|
345
566
|
targetId?: string;
|
|
346
567
|
}, options?: O): RestResponse<void>;
|
|
347
568
|
}
|
|
569
|
+
export declare class FlowResourceClient<O> {
|
|
570
|
+
protected httpClient: HttpClient<O>;
|
|
571
|
+
constructor(httpClient: HttpClient<O>);
|
|
572
|
+
/**
|
|
573
|
+
* HTTP GET /flow
|
|
574
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitions
|
|
575
|
+
*/
|
|
576
|
+
getAllNodeDefinitions(options?: O): RestResponse<Model.Node[]>;
|
|
577
|
+
/**
|
|
578
|
+
* HTTP GET /flow/{name}
|
|
579
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getNodeDefinition
|
|
580
|
+
*/
|
|
581
|
+
getNodeDefinition(name: string, options?: O): RestResponse<Model.Node>;
|
|
582
|
+
/**
|
|
583
|
+
* HTTP GET /flow/{type}
|
|
584
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitionsByType
|
|
585
|
+
*/
|
|
586
|
+
getAllNodeDefinitionsByType(type: Model.NodeType, options?: O): RestResponse<Model.Node[]>;
|
|
587
|
+
}
|
|
348
588
|
export declare class ExternalServiceResourceClient<O> {
|
|
349
589
|
protected httpClient: HttpClient<O>;
|
|
350
590
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -400,135 +640,29 @@ export declare class ExternalServiceResourceClient<O> {
|
|
|
400
640
|
*/
|
|
401
641
|
heartbeat(serviceId: string, instanceId: number, options?: O): RestResponse<void>;
|
|
402
642
|
}
|
|
403
|
-
export declare class
|
|
404
|
-
protected httpClient: HttpClient<O>;
|
|
405
|
-
constructor(httpClient: HttpClient<O>);
|
|
406
|
-
/**
|
|
407
|
-
* HTTP POST /realm
|
|
408
|
-
* Java method: org.openremote.model.security.RealmResource.create
|
|
409
|
-
*/
|
|
410
|
-
create(realm: Model.Realm, options?: O): RestResponse<void>;
|
|
411
|
-
/**
|
|
412
|
-
* HTTP GET /realm
|
|
413
|
-
* Java method: org.openremote.model.security.RealmResource.getAll
|
|
414
|
-
*/
|
|
415
|
-
getAll(options?: O): RestResponse<Model.Realm[]>;
|
|
416
|
-
/**
|
|
417
|
-
* HTTP GET /realm/accessible
|
|
418
|
-
* Java method: org.openremote.model.security.RealmResource.getAccessible
|
|
419
|
-
*/
|
|
420
|
-
getAccessible(options?: O): RestResponse<Model.Realm[]>;
|
|
421
|
-
/**
|
|
422
|
-
* HTTP DELETE /realm/{name}
|
|
423
|
-
* Java method: org.openremote.model.security.RealmResource.delete
|
|
424
|
-
*/
|
|
425
|
-
delete(name: string, options?: O): RestResponse<void>;
|
|
426
|
-
/**
|
|
427
|
-
* HTTP GET /realm/{name}
|
|
428
|
-
* Java method: org.openremote.model.security.RealmResource.get
|
|
429
|
-
*/
|
|
430
|
-
get(name: string, options?: O): RestResponse<Model.Realm>;
|
|
431
|
-
/**
|
|
432
|
-
* HTTP PUT /realm/{name}
|
|
433
|
-
* Java method: org.openremote.model.security.RealmResource.update
|
|
434
|
-
*/
|
|
435
|
-
update(name: string, realm: Model.Realm, options?: O): RestResponse<void>;
|
|
436
|
-
}
|
|
437
|
-
export declare class AssetPredictedDatapointResourceClient<O> {
|
|
438
|
-
protected httpClient: HttpClient<O>;
|
|
439
|
-
constructor(httpClient: HttpClient<O>);
|
|
440
|
-
/**
|
|
441
|
-
* HTTP POST /asset/predicted/{assetId}/{attributeName}
|
|
442
|
-
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints
|
|
443
|
-
*/
|
|
444
|
-
getPredictedDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
445
|
-
/**
|
|
446
|
-
* HTTP PUT /asset/predicted/{assetId}/{attributeName}
|
|
447
|
-
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
|
|
448
|
-
*/
|
|
449
|
-
writePredictedDatapoints(assetId: string, attributeName: string, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void>;
|
|
450
|
-
}
|
|
451
|
-
export declare class StatusResourceClient<O> {
|
|
452
|
-
protected httpClient: HttpClient<O>;
|
|
453
|
-
constructor(httpClient: HttpClient<O>);
|
|
454
|
-
/**
|
|
455
|
-
* HTTP GET /health
|
|
456
|
-
* Java method: org.openremote.model.system.StatusResource.getHealthStatus
|
|
457
|
-
*/
|
|
458
|
-
getHealthStatus(options?: O): RestResponse<{
|
|
459
|
-
[index: string]: any;
|
|
460
|
-
}>;
|
|
461
|
-
/**
|
|
462
|
-
* HTTP GET /info
|
|
463
|
-
* Java method: org.openremote.model.system.StatusResource.getInfo
|
|
464
|
-
*/
|
|
465
|
-
getInfo(options?: O): RestResponse<{
|
|
466
|
-
[index: string]: any;
|
|
467
|
-
}>;
|
|
468
|
-
}
|
|
469
|
-
export declare class FlowResourceClient<O> {
|
|
470
|
-
protected httpClient: HttpClient<O>;
|
|
471
|
-
constructor(httpClient: HttpClient<O>);
|
|
472
|
-
/**
|
|
473
|
-
* HTTP GET /flow
|
|
474
|
-
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitions
|
|
475
|
-
*/
|
|
476
|
-
getAllNodeDefinitions(options?: O): RestResponse<Model.Node[]>;
|
|
477
|
-
/**
|
|
478
|
-
* HTTP GET /flow/{name}
|
|
479
|
-
* Java method: org.openremote.model.rules.flow.FlowResource.getNodeDefinition
|
|
480
|
-
*/
|
|
481
|
-
getNodeDefinition(name: string, options?: O): RestResponse<Model.Node>;
|
|
482
|
-
/**
|
|
483
|
-
* HTTP GET /flow/{type}
|
|
484
|
-
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitionsByType
|
|
485
|
-
*/
|
|
486
|
-
getAllNodeDefinitionsByType(type: Model.NodeType, options?: O): RestResponse<Model.Node[]>;
|
|
487
|
-
}
|
|
488
|
-
export declare class AssetDatapointResourceClient<O> {
|
|
643
|
+
export declare class ProvisioningResourceClient<O> {
|
|
489
644
|
protected httpClient: HttpClient<O>;
|
|
490
645
|
constructor(httpClient: HttpClient<O>);
|
|
491
646
|
/**
|
|
492
|
-
* HTTP
|
|
493
|
-
* Java method: org.openremote.model.
|
|
494
|
-
*/
|
|
495
|
-
getDatapointExport(queryParams?: {
|
|
496
|
-
attributeRefs?: string;
|
|
497
|
-
fromTimestamp?: number;
|
|
498
|
-
toTimestamp?: number;
|
|
499
|
-
}, options?: O): RestResponse<any>;
|
|
500
|
-
/**
|
|
501
|
-
* HTTP GET /asset/datapoint/periods
|
|
502
|
-
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
|
|
503
|
-
*/
|
|
504
|
-
getDatapointPeriod(queryParams?: {
|
|
505
|
-
assetId?: string;
|
|
506
|
-
attributeName?: string;
|
|
507
|
-
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
508
|
-
/**
|
|
509
|
-
* HTTP POST /asset/datapoint/{assetId}/{attributeName}
|
|
510
|
-
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
|
|
647
|
+
* HTTP POST /provisioning
|
|
648
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
|
|
511
649
|
*/
|
|
512
|
-
|
|
513
|
-
}
|
|
514
|
-
export declare class AppResourceClient<O> {
|
|
515
|
-
protected httpClient: HttpClient<O>;
|
|
516
|
-
constructor(httpClient: HttpClient<O>);
|
|
650
|
+
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
517
651
|
/**
|
|
518
|
-
* HTTP GET /
|
|
519
|
-
* Java method: org.openremote.model.
|
|
652
|
+
* HTTP GET /provisioning
|
|
653
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
520
654
|
*/
|
|
521
|
-
|
|
655
|
+
getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
|
|
522
656
|
/**
|
|
523
|
-
* HTTP
|
|
524
|
-
* Java method: org.openremote.model.
|
|
657
|
+
* HTTP DELETE /provisioning/{id}
|
|
658
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
|
|
525
659
|
*/
|
|
526
|
-
|
|
660
|
+
deleteProvisioningConfig(id: number, options?: O): RestResponse<void>;
|
|
527
661
|
/**
|
|
528
|
-
* HTTP
|
|
529
|
-
* Java method: org.openremote.model.
|
|
662
|
+
* HTTP PUT /provisioning/{id}
|
|
663
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
|
|
530
664
|
*/
|
|
531
|
-
|
|
665
|
+
updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
|
|
532
666
|
}
|
|
533
667
|
export declare class RulesResourceClient<O> {
|
|
534
668
|
protected httpClient: HttpClient<O>;
|
|
@@ -638,92 +772,37 @@ export declare class RulesResourceClient<O> {
|
|
|
638
772
|
*/
|
|
639
773
|
updateGlobalRuleset(id: number, ruleset: Model.GlobalRuleset, options?: O): RestResponse<void>;
|
|
640
774
|
}
|
|
641
|
-
export declare class
|
|
642
|
-
protected httpClient: HttpClient<O>;
|
|
643
|
-
constructor(httpClient: HttpClient<O>);
|
|
644
|
-
/**
|
|
645
|
-
* HTTP POST /dashboard
|
|
646
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.create
|
|
647
|
-
*/
|
|
648
|
-
create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
649
|
-
/**
|
|
650
|
-
* HTTP PUT /dashboard
|
|
651
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.update
|
|
652
|
-
*/
|
|
653
|
-
update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
654
|
-
/**
|
|
655
|
-
* HTTP GET /dashboard/all/{realm}
|
|
656
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards
|
|
657
|
-
*/
|
|
658
|
-
getAllRealmDashboards(realm: string, options?: O): RestResponse<Model.Dashboard[]>;
|
|
659
|
-
/**
|
|
660
|
-
* HTTP POST /dashboard/query
|
|
661
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.query
|
|
662
|
-
*/
|
|
663
|
-
query(dashboardQuery: Model.DashboardQuery, options?: O): RestResponse<Model.Dashboard[]>;
|
|
664
|
-
/**
|
|
665
|
-
* HTTP DELETE /dashboard/{realm}/{dashboardId}
|
|
666
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.delete
|
|
667
|
-
*/
|
|
668
|
-
delete(realm: string, dashboardId: string, options?: O): RestResponse<void>;
|
|
669
|
-
/**
|
|
670
|
-
* HTTP GET /dashboard/{realm}/{dashboardId}
|
|
671
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.get
|
|
672
|
-
*/
|
|
673
|
-
get(realm: string, dashboardId: string, options?: O): RestResponse<Model.Dashboard>;
|
|
674
|
-
}
|
|
675
|
-
export declare class AssetModelResourceClient<O> {
|
|
775
|
+
export declare class SyslogResourceClient<O> {
|
|
676
776
|
protected httpClient: HttpClient<O>;
|
|
677
777
|
constructor(httpClient: HttpClient<O>);
|
|
678
778
|
/**
|
|
679
|
-
* HTTP GET /
|
|
680
|
-
* Java method: org.openremote.model.
|
|
681
|
-
*/
|
|
682
|
-
getAssetDescriptors(queryParams?: {
|
|
683
|
-
parentId?: string;
|
|
684
|
-
parentType?: string;
|
|
685
|
-
}, options?: O): RestResponse<Model.AssetDescriptor[]>;
|
|
686
|
-
/**
|
|
687
|
-
* HTTP GET /model/assetInfo/{assetType}
|
|
688
|
-
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfo
|
|
689
|
-
*/
|
|
690
|
-
getAssetInfo(assetType: string, queryParams?: {
|
|
691
|
-
parentId?: string;
|
|
692
|
-
}, options?: O): RestResponse<Model.AssetTypeInfo>;
|
|
693
|
-
/**
|
|
694
|
-
* HTTP GET /model/assetInfos
|
|
695
|
-
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfos
|
|
779
|
+
* HTTP GET /syslog/config
|
|
780
|
+
* Java method: org.openremote.model.syslog.SyslogResource.getConfig
|
|
696
781
|
*/
|
|
697
|
-
|
|
698
|
-
parentId?: string;
|
|
699
|
-
parentType?: string;
|
|
700
|
-
}, options?: O): RestResponse<Model.AssetTypeInfo[]>;
|
|
782
|
+
getConfig(options?: O): RestResponse<Model.SyslogConfig>;
|
|
701
783
|
/**
|
|
702
|
-
* HTTP
|
|
703
|
-
* Java method: org.openremote.model.
|
|
784
|
+
* HTTP PUT /syslog/config
|
|
785
|
+
* Java method: org.openremote.model.syslog.SyslogResource.updateConfig
|
|
704
786
|
*/
|
|
705
|
-
|
|
706
|
-
name?: string;
|
|
707
|
-
hash?: string;
|
|
708
|
-
}, options?: O): RestResponse<any>;
|
|
787
|
+
updateConfig(config: Model.SyslogConfig, options?: O): RestResponse<void>;
|
|
709
788
|
/**
|
|
710
|
-
* HTTP
|
|
711
|
-
* Java method: org.openremote.model.
|
|
789
|
+
* HTTP DELETE /syslog/event
|
|
790
|
+
* Java method: org.openremote.model.syslog.SyslogResource.clearEvents
|
|
712
791
|
*/
|
|
713
|
-
|
|
714
|
-
parentId?: string;
|
|
715
|
-
}, options?: O): RestResponse<{
|
|
716
|
-
[index: string]: Model.MetaItemDescriptor;
|
|
717
|
-
}>;
|
|
792
|
+
clearEvents(options?: O): RestResponse<void>;
|
|
718
793
|
/**
|
|
719
|
-
* HTTP GET /
|
|
720
|
-
* Java method: org.openremote.model.
|
|
794
|
+
* HTTP GET /syslog/event
|
|
795
|
+
* Java method: org.openremote.model.syslog.SyslogResource.getEvents
|
|
721
796
|
*/
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
797
|
+
getEvents(queryParams?: {
|
|
798
|
+
level?: Model.SyslogLevel;
|
|
799
|
+
per_page?: number;
|
|
800
|
+
page?: number;
|
|
801
|
+
from?: number;
|
|
802
|
+
to?: number;
|
|
803
|
+
category?: Model.SyslogCategory[];
|
|
804
|
+
subCategory?: string[];
|
|
805
|
+
}, options?: O): RestResponse<any>;
|
|
727
806
|
}
|
|
728
807
|
export declare class MapResourceClient<O> {
|
|
729
808
|
protected httpClient: HttpClient<O>;
|
|
@@ -778,138 +857,50 @@ export declare class MapResourceClient<O> {
|
|
|
778
857
|
[id: string]: unknown;
|
|
779
858
|
}>;
|
|
780
859
|
}
|
|
781
|
-
export declare class
|
|
860
|
+
export declare class AppResourceClient<O> {
|
|
782
861
|
protected httpClient: HttpClient<O>;
|
|
783
862
|
constructor(httpClient: HttpClient<O>);
|
|
784
863
|
/**
|
|
785
|
-
* HTTP
|
|
786
|
-
* Java method: org.openremote.model.
|
|
787
|
-
*/
|
|
788
|
-
updateCurrentUserLocale(locale: string, options?: O): RestResponse<void>;
|
|
789
|
-
/**
|
|
790
|
-
* HTTP POST /user/query
|
|
791
|
-
* Java method: org.openremote.model.security.UserResource.query
|
|
792
|
-
*/
|
|
793
|
-
query(query: Model.UserQuery, options?: O): RestResponse<Model.User[]>;
|
|
794
|
-
/**
|
|
795
|
-
* HTTP PUT /user/request-password-reset
|
|
796
|
-
* Java method: org.openremote.model.security.UserResource.requestPasswordResetCurrent
|
|
797
|
-
*/
|
|
798
|
-
requestPasswordResetCurrent(options?: O): RestResponse<void>;
|
|
799
|
-
/**
|
|
800
|
-
* HTTP PUT /user/reset-password
|
|
801
|
-
* Java method: org.openremote.model.security.UserResource.updatePasswordCurrent
|
|
802
|
-
*/
|
|
803
|
-
updatePasswordCurrent(credential: Model.Credential, options?: O): RestResponse<void>;
|
|
804
|
-
/**
|
|
805
|
-
* HTTP PUT /user/update
|
|
806
|
-
* Java method: org.openremote.model.security.UserResource.updateCurrent
|
|
807
|
-
*/
|
|
808
|
-
updateCurrent(user: Model.User, options?: O): RestResponse<Model.User>;
|
|
809
|
-
/**
|
|
810
|
-
* HTTP GET /user/user
|
|
811
|
-
* Java method: org.openremote.model.security.UserResource.getCurrent
|
|
812
|
-
*/
|
|
813
|
-
getCurrent(options?: O): RestResponse<Model.User>;
|
|
814
|
-
/**
|
|
815
|
-
* HTTP GET /user/userRealmRoles
|
|
816
|
-
* Java method: org.openremote.model.security.UserResource.getCurrentUserRealmRoles
|
|
817
|
-
*/
|
|
818
|
-
getCurrentUserRealmRoles(options?: O): RestResponse<string[]>;
|
|
819
|
-
/**
|
|
820
|
-
* HTTP GET /user/userRoles/{clientId}
|
|
821
|
-
* Java method: org.openremote.model.security.UserResource.getCurrentUserClientRoles
|
|
822
|
-
*/
|
|
823
|
-
getCurrentUserClientRoles(clientId: string, options?: O): RestResponse<string[]>;
|
|
824
|
-
/**
|
|
825
|
-
* HTTP GET /user/{realm}/disconnect/{sessionID}
|
|
826
|
-
* Java method: org.openremote.model.security.UserResource.disconnectUserSession
|
|
827
|
-
*/
|
|
828
|
-
disconnectUserSession(realm: string, sessionID: string, options?: O): RestResponse<void>;
|
|
829
|
-
/**
|
|
830
|
-
* HTTP PUT /user/{realm}/request-password-reset/{userId}
|
|
831
|
-
* Java method: org.openremote.model.security.UserResource.requestPasswordReset
|
|
832
|
-
*/
|
|
833
|
-
requestPasswordReset(realm: string, userId: string, options?: O): RestResponse<void>;
|
|
834
|
-
/**
|
|
835
|
-
* HTTP PUT /user/{realm}/reset-password/{userId}
|
|
836
|
-
* Java method: org.openremote.model.security.UserResource.updatePassword
|
|
837
|
-
*/
|
|
838
|
-
updatePassword(realm: string, userId: string, credential: Model.Credential, options?: O): RestResponse<void>;
|
|
839
|
-
/**
|
|
840
|
-
* HTTP GET /user/{realm}/reset-secret/{userId}
|
|
841
|
-
* Java method: org.openremote.model.security.UserResource.resetSecret
|
|
842
|
-
*/
|
|
843
|
-
resetSecret(realm: string, userId: string, options?: O): RestResponse<string>;
|
|
844
|
-
/**
|
|
845
|
-
* HTTP PUT /user/{realm}/roles
|
|
846
|
-
* Java method: org.openremote.model.security.UserResource.updateRoles
|
|
847
|
-
*/
|
|
848
|
-
updateRoles(realm: string, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
849
|
-
/**
|
|
850
|
-
* HTTP GET /user/{realm}/userRealmRoles/{userId}
|
|
851
|
-
* Java method: org.openremote.model.security.UserResource.getUserRealmRoles
|
|
852
|
-
*/
|
|
853
|
-
getUserRealmRoles(realm: string, userId: string, options?: O): RestResponse<string[]>;
|
|
854
|
-
/**
|
|
855
|
-
* HTTP PUT /user/{realm}/userRealmRoles/{userId}
|
|
856
|
-
* Java method: org.openremote.model.security.UserResource.updateUserRealmRoles
|
|
857
|
-
*/
|
|
858
|
-
updateUserRealmRoles(realm: string, userId: string, roles: string[], options?: O): RestResponse<void>;
|
|
859
|
-
/**
|
|
860
|
-
* HTTP GET /user/{realm}/userRoles/{userId}/{clientId}
|
|
861
|
-
* Java method: org.openremote.model.security.UserResource.getUserClientRoles
|
|
862
|
-
*/
|
|
863
|
-
getUserClientRoles(realm: string, userId: string, clientId: string, options?: O): RestResponse<string[]>;
|
|
864
|
-
/**
|
|
865
|
-
* HTTP PUT /user/{realm}/userRoles/{userId}/{clientId}
|
|
866
|
-
* Java method: org.openremote.model.security.UserResource.updateUserClientRoles
|
|
867
|
-
*/
|
|
868
|
-
updateUserClientRoles(realm: string, userId: string, clientId: string, roles: string[], options?: O): RestResponse<void>;
|
|
869
|
-
/**
|
|
870
|
-
* HTTP GET /user/{realm}/userSessions/{userId}
|
|
871
|
-
* Java method: org.openremote.model.security.UserResource.getUserSessions
|
|
872
|
-
*/
|
|
873
|
-
getUserSessions(realm: string, userId: string, options?: O): RestResponse<Model.UserSession[]>;
|
|
874
|
-
/**
|
|
875
|
-
* HTTP POST /user/{realm}/users
|
|
876
|
-
* Java method: org.openremote.model.security.UserResource.create
|
|
877
|
-
*/
|
|
878
|
-
create(realm: string, user: Model.User, options?: O): RestResponse<Model.User>;
|
|
879
|
-
/**
|
|
880
|
-
* HTTP PUT /user/{realm}/users
|
|
881
|
-
* Java method: org.openremote.model.security.UserResource.update
|
|
864
|
+
* HTTP GET /apps
|
|
865
|
+
* Java method: org.openremote.model.apps.AppResource.getApps
|
|
882
866
|
*/
|
|
883
|
-
|
|
867
|
+
getApps(options?: O): RestResponse<string[]>;
|
|
884
868
|
/**
|
|
885
|
-
* HTTP
|
|
886
|
-
* Java method: org.openremote.model.
|
|
869
|
+
* HTTP GET /apps/consoleConfig
|
|
870
|
+
* Java method: org.openremote.model.apps.AppResource.getConsoleConfig
|
|
887
871
|
*/
|
|
888
|
-
|
|
872
|
+
getConsoleConfig(options?: O): RestResponse<any>;
|
|
889
873
|
/**
|
|
890
|
-
* HTTP GET /
|
|
891
|
-
* Java method: org.openremote.model.
|
|
874
|
+
* HTTP GET /apps/info
|
|
875
|
+
* Java method: org.openremote.model.apps.AppResource.getAppInfos
|
|
892
876
|
*/
|
|
893
|
-
|
|
877
|
+
getAppInfos(options?: O): RestResponse<any>;
|
|
878
|
+
}
|
|
879
|
+
export declare class AgentResourceClient<O> {
|
|
880
|
+
protected httpClient: HttpClient<O>;
|
|
881
|
+
constructor(httpClient: HttpClient<O>);
|
|
894
882
|
/**
|
|
895
|
-
* HTTP
|
|
896
|
-
* Java method: org.openremote.model.
|
|
883
|
+
* HTTP GET /agent/assetDiscovery/{agentId}
|
|
884
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery
|
|
897
885
|
*/
|
|
898
|
-
|
|
886
|
+
doProtocolAssetDiscovery(agentId: string, queryParams?: {
|
|
887
|
+
realm?: string;
|
|
888
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
899
889
|
/**
|
|
900
|
-
* HTTP
|
|
901
|
-
* Java method: org.openremote.model.
|
|
890
|
+
* HTTP POST /agent/assetImport/{agentId}
|
|
891
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport
|
|
902
892
|
*/
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
protected httpClient: HttpClient<O>;
|
|
907
|
-
constructor(httpClient: HttpClient<O>);
|
|
893
|
+
doProtocolAssetImport(agentId: string, fileInfo: Model.FileInfo, queryParams?: {
|
|
894
|
+
realm?: string;
|
|
895
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
908
896
|
/**
|
|
909
|
-
* HTTP
|
|
910
|
-
* Java method: org.openremote.model.
|
|
897
|
+
* HTTP GET /agent/instanceDiscovery/{agentType}
|
|
898
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery
|
|
911
899
|
*/
|
|
912
|
-
|
|
900
|
+
doProtocolInstanceDiscovery(agentType: string, queryParams?: {
|
|
901
|
+
parentId?: string;
|
|
902
|
+
realm?: string;
|
|
903
|
+
}, options?: O): RestResponse<Model.Agent[]>;
|
|
913
904
|
}
|
|
914
905
|
export declare class AlarmResourceClient<O> {
|
|
915
906
|
protected httpClient: HttpClient<O>;
|
|
@@ -964,53 +955,62 @@ export declare class AlarmResourceClient<O> {
|
|
|
964
955
|
realm?: string;
|
|
965
956
|
}, options?: O): RestResponse<Model.AlarmAssetLink[]>;
|
|
966
957
|
}
|
|
958
|
+
export declare class ConsoleResourceClient<O> {
|
|
959
|
+
protected httpClient: HttpClient<O>;
|
|
960
|
+
constructor(httpClient: HttpClient<O>);
|
|
961
|
+
/**
|
|
962
|
+
* HTTP POST /console/register
|
|
963
|
+
* Java method: org.openremote.model.console.ConsoleResource.register
|
|
964
|
+
*/
|
|
965
|
+
register(consoleRegistration: Model.ConsoleRegistration, options?: O): RestResponse<Model.ConsoleRegistration>;
|
|
966
|
+
}
|
|
967
967
|
export type RestResponse<R> = Promise<Axios.GenericAxiosResponse<R>>;
|
|
968
968
|
export declare class ApiClient {
|
|
969
|
-
protected _agentResource: AxiosAgentResourceClient;
|
|
970
|
-
protected _gatewayClientResource: AxiosGatewayClientResourceClient;
|
|
971
|
-
protected _provisioningResource: AxiosProvisioningResourceClient;
|
|
972
|
-
protected _syslogResource: AxiosSyslogResourceClient;
|
|
973
969
|
protected _configurationResource: AxiosConfigurationResourceClient;
|
|
974
|
-
protected
|
|
970
|
+
protected _gatewayClientResource: AxiosGatewayClientResourceClient;
|
|
971
|
+
protected _dashboardResource: AxiosDashboardResourceClient;
|
|
975
972
|
protected _assetResource: AxiosAssetResourceClient;
|
|
976
|
-
protected _notificationResource: AxiosNotificationResourceClient;
|
|
977
|
-
protected _externalServiceResource: AxiosExternalServiceResourceClient;
|
|
978
|
-
protected _realmResource: AxiosRealmResourceClient;
|
|
979
973
|
protected _assetPredictedDatapointResource: AxiosAssetPredictedDatapointResourceClient;
|
|
980
974
|
protected _statusResource: AxiosStatusResourceClient;
|
|
981
|
-
protected
|
|
975
|
+
protected _userResource: AxiosUserResourceClient;
|
|
976
|
+
protected _gatewayServiceResource: AxiosGatewayServiceResourceClient;
|
|
977
|
+
protected _realmResource: AxiosRealmResourceClient;
|
|
982
978
|
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
983
|
-
protected _appResource: AxiosAppResourceClient;
|
|
984
|
-
protected _rulesResource: AxiosRulesResourceClient;
|
|
985
|
-
protected _dashboardResource: AxiosDashboardResourceClient;
|
|
986
979
|
protected _assetModelResource: AxiosAssetModelResourceClient;
|
|
980
|
+
protected _notificationResource: AxiosNotificationResourceClient;
|
|
981
|
+
protected _flowResource: AxiosFlowResourceClient;
|
|
982
|
+
protected _externalServiceResource: AxiosExternalServiceResourceClient;
|
|
983
|
+
protected _provisioningResource: AxiosProvisioningResourceClient;
|
|
984
|
+
protected _rulesResource: AxiosRulesResourceClient;
|
|
985
|
+
protected _syslogResource: AxiosSyslogResourceClient;
|
|
987
986
|
protected _mapResource: AxiosMapResourceClient;
|
|
988
|
-
protected
|
|
989
|
-
protected
|
|
987
|
+
protected _appResource: AxiosAppResourceClient;
|
|
988
|
+
protected _agentResource: AxiosAgentResourceClient;
|
|
990
989
|
protected _alarmResource: AxiosAlarmResourceClient;
|
|
990
|
+
protected _consoleResource: AxiosConsoleResourceClient;
|
|
991
991
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
992
|
-
get AgentResource(): AxiosAgentResourceClient;
|
|
993
|
-
get GatewayClientResource(): AxiosGatewayClientResourceClient;
|
|
994
|
-
get ProvisioningResource(): AxiosProvisioningResourceClient;
|
|
995
|
-
get SyslogResource(): AxiosSyslogResourceClient;
|
|
996
992
|
get ConfigurationResource(): AxiosConfigurationResourceClient;
|
|
997
|
-
get
|
|
993
|
+
get GatewayClientResource(): AxiosGatewayClientResourceClient;
|
|
994
|
+
get DashboardResource(): AxiosDashboardResourceClient;
|
|
998
995
|
get AssetResource(): AxiosAssetResourceClient;
|
|
999
|
-
get NotificationResource(): AxiosNotificationResourceClient;
|
|
1000
|
-
get ExternalServiceResource(): AxiosExternalServiceResourceClient;
|
|
1001
|
-
get RealmResource(): AxiosRealmResourceClient;
|
|
1002
996
|
get AssetPredictedDatapointResource(): AxiosAssetPredictedDatapointResourceClient;
|
|
1003
997
|
get StatusResource(): AxiosStatusResourceClient;
|
|
1004
|
-
get
|
|
998
|
+
get UserResource(): AxiosUserResourceClient;
|
|
999
|
+
get GatewayServiceResource(): AxiosGatewayServiceResourceClient;
|
|
1000
|
+
get RealmResource(): AxiosRealmResourceClient;
|
|
1005
1001
|
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
1006
|
-
get AppResource(): AxiosAppResourceClient;
|
|
1007
|
-
get RulesResource(): AxiosRulesResourceClient;
|
|
1008
|
-
get DashboardResource(): AxiosDashboardResourceClient;
|
|
1009
1002
|
get AssetModelResource(): AxiosAssetModelResourceClient;
|
|
1003
|
+
get NotificationResource(): AxiosNotificationResourceClient;
|
|
1004
|
+
get FlowResource(): AxiosFlowResourceClient;
|
|
1005
|
+
get ExternalServiceResource(): AxiosExternalServiceResourceClient;
|
|
1006
|
+
get ProvisioningResource(): AxiosProvisioningResourceClient;
|
|
1007
|
+
get RulesResource(): AxiosRulesResourceClient;
|
|
1008
|
+
get SyslogResource(): AxiosSyslogResourceClient;
|
|
1010
1009
|
get MapResource(): AxiosMapResourceClient;
|
|
1011
|
-
get
|
|
1012
|
-
get
|
|
1010
|
+
get AppResource(): AxiosAppResourceClient;
|
|
1011
|
+
get AgentResource(): AxiosAgentResourceClient;
|
|
1013
1012
|
get AlarmResource(): AxiosAlarmResourceClient;
|
|
1013
|
+
get ConsoleResource(): AxiosConsoleResourceClient;
|
|
1014
1014
|
}
|
|
1015
1015
|
import * as Axios from "axios";
|
|
1016
1016
|
declare module "axios" {
|
|
@@ -1018,69 +1018,69 @@ declare module "axios" {
|
|
|
1018
1018
|
data: R;
|
|
1019
1019
|
}
|
|
1020
1020
|
}
|
|
1021
|
-
export declare class
|
|
1021
|
+
export declare class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {
|
|
1022
1022
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1023
1023
|
}
|
|
1024
1024
|
export declare class AxiosGatewayClientResourceClient extends GatewayClientResourceClient<Axios.AxiosRequestConfig> {
|
|
1025
1025
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1026
1026
|
}
|
|
1027
|
-
export declare class
|
|
1027
|
+
export declare class AxiosDashboardResourceClient extends DashboardResourceClient<Axios.AxiosRequestConfig> {
|
|
1028
1028
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1029
1029
|
}
|
|
1030
|
-
export declare class
|
|
1030
|
+
export declare class AxiosAssetResourceClient extends AssetResourceClient<Axios.AxiosRequestConfig> {
|
|
1031
1031
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1032
1032
|
}
|
|
1033
|
-
export declare class
|
|
1033
|
+
export declare class AxiosAssetPredictedDatapointResourceClient extends AssetPredictedDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
1034
1034
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1035
1035
|
}
|
|
1036
|
-
export declare class
|
|
1036
|
+
export declare class AxiosStatusResourceClient extends StatusResourceClient<Axios.AxiosRequestConfig> {
|
|
1037
1037
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1038
1038
|
}
|
|
1039
|
-
export declare class
|
|
1039
|
+
export declare class AxiosUserResourceClient extends UserResourceClient<Axios.AxiosRequestConfig> {
|
|
1040
1040
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1041
1041
|
}
|
|
1042
|
-
export declare class
|
|
1042
|
+
export declare class AxiosGatewayServiceResourceClient extends GatewayServiceResourceClient<Axios.AxiosRequestConfig> {
|
|
1043
1043
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1044
1044
|
}
|
|
1045
|
-
export declare class
|
|
1045
|
+
export declare class AxiosRealmResourceClient extends RealmResourceClient<Axios.AxiosRequestConfig> {
|
|
1046
1046
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1047
1047
|
}
|
|
1048
|
-
export declare class
|
|
1048
|
+
export declare class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
1049
1049
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1050
1050
|
}
|
|
1051
|
-
export declare class
|
|
1051
|
+
export declare class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {
|
|
1052
1052
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1053
1053
|
}
|
|
1054
|
-
export declare class
|
|
1054
|
+
export declare class AxiosNotificationResourceClient extends NotificationResourceClient<Axios.AxiosRequestConfig> {
|
|
1055
1055
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1056
1056
|
}
|
|
1057
1057
|
export declare class AxiosFlowResourceClient extends FlowResourceClient<Axios.AxiosRequestConfig> {
|
|
1058
1058
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1059
1059
|
}
|
|
1060
|
-
export declare class
|
|
1060
|
+
export declare class AxiosExternalServiceResourceClient extends ExternalServiceResourceClient<Axios.AxiosRequestConfig> {
|
|
1061
1061
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1062
1062
|
}
|
|
1063
|
-
export declare class
|
|
1063
|
+
export declare class AxiosProvisioningResourceClient extends ProvisioningResourceClient<Axios.AxiosRequestConfig> {
|
|
1064
1064
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1065
1065
|
}
|
|
1066
1066
|
export declare class AxiosRulesResourceClient extends RulesResourceClient<Axios.AxiosRequestConfig> {
|
|
1067
1067
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1068
1068
|
}
|
|
1069
|
-
export declare class
|
|
1070
|
-
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1071
|
-
}
|
|
1072
|
-
export declare class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {
|
|
1069
|
+
export declare class AxiosSyslogResourceClient extends SyslogResourceClient<Axios.AxiosRequestConfig> {
|
|
1073
1070
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1074
1071
|
}
|
|
1075
1072
|
export declare class AxiosMapResourceClient extends MapResourceClient<Axios.AxiosRequestConfig> {
|
|
1076
1073
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1077
1074
|
}
|
|
1078
|
-
export declare class
|
|
1075
|
+
export declare class AxiosAppResourceClient extends AppResourceClient<Axios.AxiosRequestConfig> {
|
|
1079
1076
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1080
1077
|
}
|
|
1081
|
-
export declare class
|
|
1078
|
+
export declare class AxiosAgentResourceClient extends AgentResourceClient<Axios.AxiosRequestConfig> {
|
|
1082
1079
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1083
1080
|
}
|
|
1084
1081
|
export declare class AxiosAlarmResourceClient extends AlarmResourceClient<Axios.AxiosRequestConfig> {
|
|
1085
1082
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1086
1083
|
}
|
|
1084
|
+
export declare class AxiosConsoleResourceClient extends ConsoleResourceClient<Axios.AxiosRequestConfig> {
|
|
1085
|
+
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1086
|
+
}
|