@openremote/rest 1.8.0-snapshot.20250818114025 → 1.8.0-snapshot.20250818122707
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 +515 -515
- package/lib/restclient.js +1 -1
- package/lib/restclient.js.map +1 -1
- package/package.json +3 -3
package/lib/restclient.d.ts
CHANGED
|
@@ -9,109 +9,383 @@ export interface HttpClient<O> {
|
|
|
9
9
|
options?: O;
|
|
10
10
|
}): RestResponse<R>;
|
|
11
11
|
}
|
|
12
|
-
export declare class
|
|
12
|
+
export declare class GatewayClientResourceClient<O> {
|
|
13
13
|
protected httpClient: HttpClient<O>;
|
|
14
14
|
constructor(httpClient: HttpClient<O>);
|
|
15
15
|
/**
|
|
16
|
-
* HTTP
|
|
17
|
-
* Java method: org.openremote.model.
|
|
16
|
+
* HTTP DELETE /gateway/connection
|
|
17
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnections
|
|
18
18
|
*/
|
|
19
|
-
|
|
19
|
+
deleteConnections(queryParams?: {
|
|
20
|
+
realm?: string[];
|
|
21
|
+
}, options?: O): RestResponse<void>;
|
|
20
22
|
/**
|
|
21
|
-
* HTTP
|
|
22
|
-
* Java method: org.openremote.model.
|
|
23
|
+
* HTTP GET /gateway/connection
|
|
24
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnections
|
|
23
25
|
*/
|
|
24
|
-
|
|
25
|
-
assetId?: string[];
|
|
26
|
-
}, options?: O): RestResponse<void>;
|
|
26
|
+
getConnections(options?: O): RestResponse<Model.GatewayConnection[]>;
|
|
27
27
|
/**
|
|
28
|
-
* HTTP
|
|
29
|
-
* Java method: org.openremote.model.
|
|
28
|
+
* HTTP DELETE /gateway/connection/{realm}
|
|
29
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnection
|
|
30
30
|
*/
|
|
31
|
-
|
|
31
|
+
deleteConnection(realm: string, options?: O): RestResponse<void>;
|
|
32
32
|
/**
|
|
33
|
-
* HTTP
|
|
34
|
-
* Java method: org.openremote.model.
|
|
33
|
+
* HTTP GET /gateway/connection/{realm}
|
|
34
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnection
|
|
35
|
+
*/
|
|
36
|
+
getConnection(realm: string, options?: O): RestResponse<Model.GatewayConnection>;
|
|
37
|
+
/**
|
|
38
|
+
* HTTP PUT /gateway/connection/{realm}
|
|
39
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.setConnection
|
|
40
|
+
*/
|
|
41
|
+
setConnection(realm: string, connection: Model.GatewayConnection, options?: O): RestResponse<void>;
|
|
42
|
+
/**
|
|
43
|
+
* HTTP GET /gateway/status/{realm}
|
|
44
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnectionStatus
|
|
45
|
+
*/
|
|
46
|
+
getConnectionStatus(realm: string, options?: O): RestResponse<Model.ConnectionStatus>;
|
|
47
|
+
}
|
|
48
|
+
export declare class SyslogResourceClient<O> {
|
|
49
|
+
protected httpClient: HttpClient<O>;
|
|
50
|
+
constructor(httpClient: HttpClient<O>);
|
|
51
|
+
/**
|
|
52
|
+
* HTTP GET /syslog/config
|
|
53
|
+
* Java method: org.openremote.model.syslog.SyslogResource.getConfig
|
|
54
|
+
*/
|
|
55
|
+
getConfig(options?: O): RestResponse<Model.SyslogConfig>;
|
|
56
|
+
/**
|
|
57
|
+
* HTTP PUT /syslog/config
|
|
58
|
+
* Java method: org.openremote.model.syslog.SyslogResource.updateConfig
|
|
59
|
+
*/
|
|
60
|
+
updateConfig(config: Model.SyslogConfig, options?: O): RestResponse<void>;
|
|
61
|
+
/**
|
|
62
|
+
* HTTP DELETE /syslog/event
|
|
63
|
+
* Java method: org.openremote.model.syslog.SyslogResource.clearEvents
|
|
64
|
+
*/
|
|
65
|
+
clearEvents(options?: O): RestResponse<void>;
|
|
66
|
+
/**
|
|
67
|
+
* HTTP GET /syslog/event
|
|
68
|
+
* Java method: org.openremote.model.syslog.SyslogResource.getEvents
|
|
69
|
+
*/
|
|
70
|
+
getEvents(queryParams?: {
|
|
71
|
+
level?: Model.SyslogLevel;
|
|
72
|
+
per_page?: number;
|
|
73
|
+
page?: number;
|
|
74
|
+
from?: number;
|
|
75
|
+
to?: number;
|
|
76
|
+
category?: Model.SyslogCategory[];
|
|
77
|
+
subCategory?: string[];
|
|
78
|
+
}, options?: O): RestResponse<any>;
|
|
79
|
+
}
|
|
80
|
+
export declare class ProvisioningResourceClient<O> {
|
|
81
|
+
protected httpClient: HttpClient<O>;
|
|
82
|
+
constructor(httpClient: HttpClient<O>);
|
|
83
|
+
/**
|
|
84
|
+
* HTTP POST /provisioning
|
|
85
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
|
|
86
|
+
*/
|
|
87
|
+
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
88
|
+
/**
|
|
89
|
+
* HTTP GET /provisioning
|
|
90
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
91
|
+
*/
|
|
92
|
+
getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
|
|
93
|
+
/**
|
|
94
|
+
* HTTP DELETE /provisioning/{id}
|
|
95
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
|
|
96
|
+
*/
|
|
97
|
+
deleteProvisioningConfig(id: number, options?: O): RestResponse<void>;
|
|
98
|
+
/**
|
|
99
|
+
* HTTP PUT /provisioning/{id}
|
|
100
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
|
|
101
|
+
*/
|
|
102
|
+
updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
|
|
103
|
+
}
|
|
104
|
+
export declare class GatewayServiceResourceClient<O> {
|
|
105
|
+
protected httpClient: HttpClient<O>;
|
|
106
|
+
constructor(httpClient: HttpClient<O>);
|
|
107
|
+
/**
|
|
108
|
+
* HTTP POST /gateway/tunnel
|
|
109
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.startTunnel
|
|
110
|
+
*/
|
|
111
|
+
startTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
112
|
+
/**
|
|
113
|
+
* HTTP DELETE /gateway/tunnel
|
|
114
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.stopTunnel
|
|
115
|
+
*/
|
|
116
|
+
stopTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<void>;
|
|
117
|
+
/**
|
|
118
|
+
* HTTP GET /gateway/tunnel/{realm}
|
|
119
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getAllActiveTunnelInfos
|
|
120
|
+
*/
|
|
121
|
+
getAllActiveTunnelInfos(realm: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
122
|
+
/**
|
|
123
|
+
* HTTP GET /gateway/tunnel/{realm}/{id}
|
|
124
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getGatewayActiveTunnelInfos
|
|
125
|
+
*/
|
|
126
|
+
getGatewayActiveTunnelInfos(realm: string, id: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
127
|
+
/**
|
|
128
|
+
* HTTP GET /gateway/tunnel/{realm}/{id}/{target}/{targetPort}
|
|
129
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getActiveTunnelInfo
|
|
130
|
+
*/
|
|
131
|
+
getActiveTunnelInfo(realm: string, id: string, target: string, targetPort: number, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
132
|
+
}
|
|
133
|
+
export declare class RulesResourceClient<O> {
|
|
134
|
+
protected httpClient: HttpClient<O>;
|
|
135
|
+
constructor(httpClient: HttpClient<O>);
|
|
136
|
+
/**
|
|
137
|
+
* HTTP POST /rules
|
|
138
|
+
* Java method: org.openremote.model.rules.RulesResource.createGlobalRuleset
|
|
139
|
+
*/
|
|
140
|
+
createGlobalRuleset(ruleset: Model.GlobalRuleset, options?: O): RestResponse<number>;
|
|
141
|
+
/**
|
|
142
|
+
* HTTP GET /rules
|
|
143
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalRulesets
|
|
144
|
+
*/
|
|
145
|
+
getGlobalRulesets(queryParams?: {
|
|
146
|
+
language?: Model.RulesetLang[];
|
|
147
|
+
fullyPopulate?: boolean;
|
|
148
|
+
}, options?: O): RestResponse<Model.GlobalRuleset[]>;
|
|
149
|
+
/**
|
|
150
|
+
* HTTP POST /rules/asset
|
|
151
|
+
* Java method: org.openremote.model.rules.RulesResource.createAssetRuleset
|
|
152
|
+
*/
|
|
153
|
+
createAssetRuleset(ruleset: Model.AssetRuleset, options?: O): RestResponse<number>;
|
|
154
|
+
/**
|
|
155
|
+
* HTTP GET /rules/asset/for/{assetId}
|
|
156
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetRulesets
|
|
157
|
+
*/
|
|
158
|
+
getAssetRulesets(assetId: string, queryParams?: {
|
|
159
|
+
language?: Model.RulesetLang[];
|
|
160
|
+
fullyPopulate?: boolean;
|
|
161
|
+
}, options?: O): RestResponse<Model.AssetRuleset[]>;
|
|
162
|
+
/**
|
|
163
|
+
* HTTP DELETE /rules/asset/{id}
|
|
164
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteAssetRuleset
|
|
165
|
+
*/
|
|
166
|
+
deleteAssetRuleset(id: number, options?: O): RestResponse<void>;
|
|
167
|
+
/**
|
|
168
|
+
* HTTP GET /rules/asset/{id}
|
|
169
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetRuleset
|
|
170
|
+
*/
|
|
171
|
+
getAssetRuleset(id: number, options?: O): RestResponse<Model.AssetRuleset>;
|
|
172
|
+
/**
|
|
173
|
+
* HTTP PUT /rules/asset/{id}
|
|
174
|
+
* Java method: org.openremote.model.rules.RulesResource.updateAssetRuleset
|
|
175
|
+
*/
|
|
176
|
+
updateAssetRuleset(id: number, ruleset: Model.AssetRuleset, options?: O): RestResponse<void>;
|
|
177
|
+
/**
|
|
178
|
+
* HTTP GET /rules/geofences/{assetId}
|
|
179
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetGeofences
|
|
180
|
+
*/
|
|
181
|
+
getAssetGeofences(assetId: string, options?: O): RestResponse<Model.GeofenceDefinition[]>;
|
|
182
|
+
/**
|
|
183
|
+
* HTTP GET /rules/info/asset/{assetId}
|
|
184
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetEngineInfo
|
|
185
|
+
*/
|
|
186
|
+
getAssetEngineInfo(assetId: string, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
187
|
+
/**
|
|
188
|
+
* HTTP GET /rules/info/global
|
|
189
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalEngineInfo
|
|
190
|
+
*/
|
|
191
|
+
getGlobalEngineInfo(options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
192
|
+
/**
|
|
193
|
+
* HTTP GET /rules/info/realm/{realm}
|
|
194
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmEngineInfo
|
|
195
|
+
*/
|
|
196
|
+
getRealmEngineInfo(realm: string, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
197
|
+
/**
|
|
198
|
+
* HTTP POST /rules/realm
|
|
199
|
+
* Java method: org.openremote.model.rules.RulesResource.createRealmRuleset
|
|
200
|
+
*/
|
|
201
|
+
createRealmRuleset(ruleset: Model.RealmRuleset, options?: O): RestResponse<number>;
|
|
202
|
+
/**
|
|
203
|
+
* HTTP GET /rules/realm/for/{realm}
|
|
204
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmRulesets
|
|
205
|
+
*/
|
|
206
|
+
getRealmRulesets(realm: string, queryParams?: {
|
|
207
|
+
language?: Model.RulesetLang[];
|
|
208
|
+
fullyPopulate?: boolean;
|
|
209
|
+
}, options?: O): RestResponse<Model.RealmRuleset[]>;
|
|
210
|
+
/**
|
|
211
|
+
* HTTP DELETE /rules/realm/{id}
|
|
212
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteRealmRuleset
|
|
213
|
+
*/
|
|
214
|
+
deleteRealmRuleset(id: number, options?: O): RestResponse<void>;
|
|
215
|
+
/**
|
|
216
|
+
* HTTP GET /rules/realm/{id}
|
|
217
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmRuleset
|
|
218
|
+
*/
|
|
219
|
+
getRealmRuleset(id: number, options?: O): RestResponse<Model.RealmRuleset>;
|
|
220
|
+
/**
|
|
221
|
+
* HTTP PUT /rules/realm/{id}
|
|
222
|
+
* Java method: org.openremote.model.rules.RulesResource.updateRealmRuleset
|
|
223
|
+
*/
|
|
224
|
+
updateRealmRuleset(id: number, ruleset: Model.RealmRuleset, options?: O): RestResponse<void>;
|
|
225
|
+
/**
|
|
226
|
+
* HTTP DELETE /rules/{id}
|
|
227
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteGlobalRuleset
|
|
228
|
+
*/
|
|
229
|
+
deleteGlobalRuleset(id: number, options?: O): RestResponse<void>;
|
|
230
|
+
/**
|
|
231
|
+
* HTTP GET /rules/{id}
|
|
232
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalRuleset
|
|
233
|
+
*/
|
|
234
|
+
getGlobalRuleset(id: number, options?: O): RestResponse<Model.GlobalRuleset>;
|
|
235
|
+
/**
|
|
236
|
+
* HTTP PUT /rules/{id}
|
|
237
|
+
* Java method: org.openremote.model.rules.RulesResource.updateGlobalRuleset
|
|
238
|
+
*/
|
|
239
|
+
updateGlobalRuleset(id: number, ruleset: Model.GlobalRuleset, options?: O): RestResponse<void>;
|
|
240
|
+
}
|
|
241
|
+
export declare class RealmResourceClient<O> {
|
|
242
|
+
protected httpClient: HttpClient<O>;
|
|
243
|
+
constructor(httpClient: HttpClient<O>);
|
|
244
|
+
/**
|
|
245
|
+
* HTTP POST /realm
|
|
246
|
+
* Java method: org.openremote.model.security.RealmResource.create
|
|
247
|
+
*/
|
|
248
|
+
create(realm: Model.Realm, options?: O): RestResponse<void>;
|
|
249
|
+
/**
|
|
250
|
+
* HTTP GET /realm
|
|
251
|
+
* Java method: org.openremote.model.security.RealmResource.getAll
|
|
252
|
+
*/
|
|
253
|
+
getAll(options?: O): RestResponse<Model.Realm[]>;
|
|
254
|
+
/**
|
|
255
|
+
* HTTP GET /realm/accessible
|
|
256
|
+
* Java method: org.openremote.model.security.RealmResource.getAccessible
|
|
257
|
+
*/
|
|
258
|
+
getAccessible(options?: O): RestResponse<Model.Realm[]>;
|
|
259
|
+
/**
|
|
260
|
+
* HTTP DELETE /realm/{name}
|
|
261
|
+
* Java method: org.openremote.model.security.RealmResource.delete
|
|
262
|
+
*/
|
|
263
|
+
delete(name: string, options?: O): RestResponse<void>;
|
|
264
|
+
/**
|
|
265
|
+
* HTTP GET /realm/{name}
|
|
266
|
+
* Java method: org.openremote.model.security.RealmResource.get
|
|
267
|
+
*/
|
|
268
|
+
get(name: string, options?: O): RestResponse<Model.Realm>;
|
|
269
|
+
/**
|
|
270
|
+
* HTTP PUT /realm/{name}
|
|
271
|
+
* Java method: org.openremote.model.security.RealmResource.update
|
|
35
272
|
*/
|
|
36
|
-
|
|
273
|
+
update(name: string, realm: Model.Realm, options?: O): RestResponse<void>;
|
|
274
|
+
}
|
|
275
|
+
export declare class ConsoleResourceClient<O> {
|
|
276
|
+
protected httpClient: HttpClient<O>;
|
|
277
|
+
constructor(httpClient: HttpClient<O>);
|
|
37
278
|
/**
|
|
38
|
-
* HTTP
|
|
39
|
-
* Java method: org.openremote.model.
|
|
279
|
+
* HTTP POST /console/register
|
|
280
|
+
* Java method: org.openremote.model.console.ConsoleResource.register
|
|
40
281
|
*/
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
282
|
+
register(consoleRegistration: Model.ConsoleRegistration, options?: O): RestResponse<Model.ConsoleRegistration>;
|
|
283
|
+
}
|
|
284
|
+
export declare class ConfigurationResourceClient<O> {
|
|
285
|
+
protected httpClient: HttpClient<O>;
|
|
286
|
+
constructor(httpClient: HttpClient<O>);
|
|
44
287
|
/**
|
|
45
|
-
* HTTP GET /
|
|
46
|
-
* Java method: org.openremote.model.
|
|
288
|
+
* HTTP GET /configuration/manager
|
|
289
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfig
|
|
47
290
|
*/
|
|
48
|
-
|
|
291
|
+
getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
49
292
|
/**
|
|
50
|
-
* HTTP
|
|
51
|
-
* Java method: org.openremote.model.
|
|
293
|
+
* HTTP PUT /configuration/manager
|
|
294
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.update
|
|
52
295
|
*/
|
|
53
|
-
|
|
296
|
+
update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
54
297
|
/**
|
|
55
|
-
* HTTP
|
|
56
|
-
* Java method: org.openremote.model.
|
|
298
|
+
* HTTP POST /configuration/manager/file
|
|
299
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.fileUpload
|
|
57
300
|
*/
|
|
58
|
-
|
|
301
|
+
fileUpload(fileInfo: Model.FileInfo, queryParams?: {
|
|
302
|
+
path?: string;
|
|
303
|
+
}, options?: O): RestResponse<string>;
|
|
59
304
|
/**
|
|
60
|
-
* HTTP
|
|
61
|
-
* Java method: org.openremote.model.
|
|
305
|
+
* HTTP GET /configuration/manager/image/{filename: .+}
|
|
306
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfigImage
|
|
62
307
|
*/
|
|
63
|
-
|
|
308
|
+
getManagerConfigImage(filename: string, options?: O): RestResponse<any>;
|
|
309
|
+
}
|
|
310
|
+
export declare class NotificationResourceClient<O> {
|
|
311
|
+
protected httpClient: HttpClient<O>;
|
|
312
|
+
constructor(httpClient: HttpClient<O>);
|
|
64
313
|
/**
|
|
65
|
-
* HTTP GET /
|
|
66
|
-
* Java method: org.openremote.model.
|
|
314
|
+
* HTTP GET /notification
|
|
315
|
+
* Java method: org.openremote.model.notification.NotificationResource.getNotifications
|
|
67
316
|
*/
|
|
68
|
-
|
|
69
|
-
|
|
317
|
+
getNotifications(queryParams?: {
|
|
318
|
+
id?: number;
|
|
319
|
+
type?: string;
|
|
320
|
+
from?: number;
|
|
321
|
+
to?: number;
|
|
322
|
+
realmId?: string;
|
|
70
323
|
userId?: string;
|
|
71
324
|
assetId?: string;
|
|
72
|
-
}, options?: O): RestResponse<Model.
|
|
325
|
+
}, options?: O): RestResponse<Model.SentNotification[]>;
|
|
73
326
|
/**
|
|
74
|
-
* HTTP
|
|
75
|
-
* Java method: org.openremote.model.
|
|
327
|
+
* HTTP DELETE /notification
|
|
328
|
+
* Java method: org.openremote.model.notification.NotificationResource.removeNotifications
|
|
76
329
|
*/
|
|
77
|
-
|
|
330
|
+
removeNotifications(queryParams?: {
|
|
331
|
+
id?: number;
|
|
332
|
+
type?: string;
|
|
333
|
+
from?: number;
|
|
334
|
+
to?: number;
|
|
335
|
+
realmId?: string;
|
|
336
|
+
userId?: string;
|
|
337
|
+
assetId?: string;
|
|
338
|
+
}, options?: O): RestResponse<void>;
|
|
78
339
|
/**
|
|
79
|
-
* HTTP
|
|
80
|
-
* Java method: org.openremote.model.
|
|
340
|
+
* HTTP POST /notification/alert
|
|
341
|
+
* Java method: org.openremote.model.notification.NotificationResource.sendNotification
|
|
81
342
|
*/
|
|
82
|
-
|
|
343
|
+
sendNotification(notification: Model.Notification, options?: O): RestResponse<void>;
|
|
83
344
|
/**
|
|
84
|
-
* HTTP DELETE /
|
|
85
|
-
* Java method: org.openremote.model.
|
|
345
|
+
* HTTP DELETE /notification/{notificationId}
|
|
346
|
+
* Java method: org.openremote.model.notification.NotificationResource.removeNotification
|
|
86
347
|
*/
|
|
87
|
-
|
|
348
|
+
removeNotification(notificationId: number, options?: O): RestResponse<void>;
|
|
88
349
|
/**
|
|
89
|
-
* HTTP
|
|
90
|
-
* Java method: org.openremote.model.
|
|
350
|
+
* HTTP PUT /notification/{notificationId}/acknowledged
|
|
351
|
+
* Java method: org.openremote.model.notification.NotificationResource.notificationAcknowledged
|
|
91
352
|
*/
|
|
92
|
-
|
|
353
|
+
notificationAcknowledged(notificationId: number, acknowledgement: any, queryParams?: {
|
|
354
|
+
targetId?: string;
|
|
355
|
+
}, options?: O): RestResponse<void>;
|
|
93
356
|
/**
|
|
94
|
-
* HTTP PUT /
|
|
95
|
-
* Java method: org.openremote.model.
|
|
357
|
+
* HTTP PUT /notification/{notificationId}/delivered
|
|
358
|
+
* Java method: org.openremote.model.notification.NotificationResource.notificationDelivered
|
|
96
359
|
*/
|
|
97
|
-
|
|
360
|
+
notificationDelivered(notificationId: number, queryParams?: {
|
|
361
|
+
targetId?: string;
|
|
362
|
+
}, options?: O): RestResponse<void>;
|
|
363
|
+
}
|
|
364
|
+
export declare class AssetDatapointResourceClient<O> {
|
|
365
|
+
protected httpClient: HttpClient<O>;
|
|
366
|
+
constructor(httpClient: HttpClient<O>);
|
|
98
367
|
/**
|
|
99
|
-
* HTTP
|
|
100
|
-
* Java method: org.openremote.model.
|
|
368
|
+
* HTTP GET /asset/datapoint/export
|
|
369
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport
|
|
101
370
|
*/
|
|
102
|
-
|
|
371
|
+
getDatapointExport(queryParams?: {
|
|
372
|
+
attributeRefs?: string;
|
|
373
|
+
fromTimestamp?: number;
|
|
374
|
+
toTimestamp?: number;
|
|
375
|
+
}, options?: O): RestResponse<any>;
|
|
103
376
|
/**
|
|
104
|
-
* HTTP
|
|
105
|
-
* Java method: org.openremote.model.
|
|
377
|
+
* HTTP GET /asset/datapoint/periods
|
|
378
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
|
|
106
379
|
*/
|
|
107
|
-
|
|
380
|
+
getDatapointPeriod(queryParams?: {
|
|
381
|
+
assetId?: string;
|
|
382
|
+
attributeName?: string;
|
|
383
|
+
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
108
384
|
/**
|
|
109
|
-
* HTTP
|
|
110
|
-
* Java method: org.openremote.model.
|
|
385
|
+
* HTTP POST /asset/datapoint/{assetId}/{attributeName}
|
|
386
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
|
|
111
387
|
*/
|
|
112
|
-
|
|
113
|
-
assetIds?: string[];
|
|
114
|
-
}, options?: O): RestResponse<void>;
|
|
388
|
+
getDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
115
389
|
}
|
|
116
390
|
export declare class UserResourceClient<O> {
|
|
117
391
|
protected httpClient: HttpClient<O>;
|
|
@@ -237,40 +511,6 @@ export declare class UserResourceClient<O> {
|
|
|
237
511
|
*/
|
|
238
512
|
get(realm: string, userId: string, options?: O): RestResponse<Model.User>;
|
|
239
513
|
}
|
|
240
|
-
export declare class DashboardResourceClient<O> {
|
|
241
|
-
protected httpClient: HttpClient<O>;
|
|
242
|
-
constructor(httpClient: HttpClient<O>);
|
|
243
|
-
/**
|
|
244
|
-
* HTTP POST /dashboard
|
|
245
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.create
|
|
246
|
-
*/
|
|
247
|
-
create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
248
|
-
/**
|
|
249
|
-
* HTTP PUT /dashboard
|
|
250
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.update
|
|
251
|
-
*/
|
|
252
|
-
update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
253
|
-
/**
|
|
254
|
-
* HTTP GET /dashboard/all/{realm}
|
|
255
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards
|
|
256
|
-
*/
|
|
257
|
-
getAllRealmDashboards(realm: string, options?: O): RestResponse<Model.Dashboard[]>;
|
|
258
|
-
/**
|
|
259
|
-
* HTTP POST /dashboard/query
|
|
260
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.query
|
|
261
|
-
*/
|
|
262
|
-
query(dashboardQuery: Model.DashboardQuery, options?: O): RestResponse<Model.Dashboard[]>;
|
|
263
|
-
/**
|
|
264
|
-
* HTTP DELETE /dashboard/{realm}/{dashboardId}
|
|
265
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.delete
|
|
266
|
-
*/
|
|
267
|
-
delete(realm: string, dashboardId: string, options?: O): RestResponse<void>;
|
|
268
|
-
/**
|
|
269
|
-
* HTTP GET /dashboard/{realm}/{dashboardId}
|
|
270
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.get
|
|
271
|
-
*/
|
|
272
|
-
get(realm: string, dashboardId: string, options?: O): RestResponse<Model.Dashboard>;
|
|
273
|
-
}
|
|
274
514
|
export declare class AlarmResourceClient<O> {
|
|
275
515
|
protected httpClient: HttpClient<O>;
|
|
276
516
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -324,198 +564,109 @@ export declare class AlarmResourceClient<O> {
|
|
|
324
564
|
realm?: string;
|
|
325
565
|
}, options?: O): RestResponse<Model.AlarmAssetLink[]>;
|
|
326
566
|
}
|
|
327
|
-
export declare class
|
|
567
|
+
export declare class AssetResourceClient<O> {
|
|
328
568
|
protected httpClient: HttpClient<O>;
|
|
329
569
|
constructor(httpClient: HttpClient<O>);
|
|
330
570
|
/**
|
|
331
|
-
* HTTP POST /
|
|
332
|
-
* Java method: org.openremote.model.
|
|
333
|
-
*/
|
|
334
|
-
createGlobalRuleset(ruleset: Model.GlobalRuleset, options?: O): RestResponse<number>;
|
|
335
|
-
/**
|
|
336
|
-
* HTTP GET /rules
|
|
337
|
-
* Java method: org.openremote.model.rules.RulesResource.getGlobalRulesets
|
|
338
|
-
*/
|
|
339
|
-
getGlobalRulesets(queryParams?: {
|
|
340
|
-
language?: Model.RulesetLang[];
|
|
341
|
-
fullyPopulate?: boolean;
|
|
342
|
-
}, options?: O): RestResponse<Model.GlobalRuleset[]>;
|
|
343
|
-
/**
|
|
344
|
-
* HTTP POST /rules/asset
|
|
345
|
-
* Java method: org.openremote.model.rules.RulesResource.createAssetRuleset
|
|
346
|
-
*/
|
|
347
|
-
createAssetRuleset(ruleset: Model.AssetRuleset, options?: O): RestResponse<number>;
|
|
348
|
-
/**
|
|
349
|
-
* HTTP GET /rules/asset/for/{assetId}
|
|
350
|
-
* Java method: org.openremote.model.rules.RulesResource.getAssetRulesets
|
|
351
|
-
*/
|
|
352
|
-
getAssetRulesets(assetId: string, queryParams?: {
|
|
353
|
-
language?: Model.RulesetLang[];
|
|
354
|
-
fullyPopulate?: boolean;
|
|
355
|
-
}, options?: O): RestResponse<Model.AssetRuleset[]>;
|
|
356
|
-
/**
|
|
357
|
-
* HTTP DELETE /rules/asset/{id}
|
|
358
|
-
* Java method: org.openremote.model.rules.RulesResource.deleteAssetRuleset
|
|
359
|
-
*/
|
|
360
|
-
deleteAssetRuleset(id: number, options?: O): RestResponse<void>;
|
|
361
|
-
/**
|
|
362
|
-
* HTTP GET /rules/asset/{id}
|
|
363
|
-
* Java method: org.openremote.model.rules.RulesResource.getAssetRuleset
|
|
364
|
-
*/
|
|
365
|
-
getAssetRuleset(id: number, options?: O): RestResponse<Model.AssetRuleset>;
|
|
366
|
-
/**
|
|
367
|
-
* HTTP PUT /rules/asset/{id}
|
|
368
|
-
* Java method: org.openremote.model.rules.RulesResource.updateAssetRuleset
|
|
369
|
-
*/
|
|
370
|
-
updateAssetRuleset(id: number, ruleset: Model.AssetRuleset, options?: O): RestResponse<void>;
|
|
371
|
-
/**
|
|
372
|
-
* HTTP GET /rules/geofences/{assetId}
|
|
373
|
-
* Java method: org.openremote.model.rules.RulesResource.getAssetGeofences
|
|
374
|
-
*/
|
|
375
|
-
getAssetGeofences(assetId: string, options?: O): RestResponse<Model.GeofenceDefinition[]>;
|
|
376
|
-
/**
|
|
377
|
-
* HTTP GET /rules/info/asset/{assetId}
|
|
378
|
-
* Java method: org.openremote.model.rules.RulesResource.getAssetEngineInfo
|
|
379
|
-
*/
|
|
380
|
-
getAssetEngineInfo(assetId: string, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
381
|
-
/**
|
|
382
|
-
* HTTP GET /rules/info/global
|
|
383
|
-
* Java method: org.openremote.model.rules.RulesResource.getGlobalEngineInfo
|
|
384
|
-
*/
|
|
385
|
-
getGlobalEngineInfo(options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
386
|
-
/**
|
|
387
|
-
* HTTP GET /rules/info/realm/{realm}
|
|
388
|
-
* Java method: org.openremote.model.rules.RulesResource.getRealmEngineInfo
|
|
389
|
-
*/
|
|
390
|
-
getRealmEngineInfo(realm: string, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
391
|
-
/**
|
|
392
|
-
* HTTP POST /rules/realm
|
|
393
|
-
* Java method: org.openremote.model.rules.RulesResource.createRealmRuleset
|
|
394
|
-
*/
|
|
395
|
-
createRealmRuleset(ruleset: Model.RealmRuleset, options?: O): RestResponse<number>;
|
|
396
|
-
/**
|
|
397
|
-
* HTTP GET /rules/realm/for/{realm}
|
|
398
|
-
* Java method: org.openremote.model.rules.RulesResource.getRealmRulesets
|
|
399
|
-
*/
|
|
400
|
-
getRealmRulesets(realm: string, queryParams?: {
|
|
401
|
-
language?: Model.RulesetLang[];
|
|
402
|
-
fullyPopulate?: boolean;
|
|
403
|
-
}, options?: O): RestResponse<Model.RealmRuleset[]>;
|
|
404
|
-
/**
|
|
405
|
-
* HTTP DELETE /rules/realm/{id}
|
|
406
|
-
* Java method: org.openremote.model.rules.RulesResource.deleteRealmRuleset
|
|
571
|
+
* HTTP POST /asset
|
|
572
|
+
* Java method: org.openremote.model.asset.AssetResource.create
|
|
407
573
|
*/
|
|
408
|
-
|
|
574
|
+
create(asset: Model.Asset, options?: O): RestResponse<Model.Asset>;
|
|
409
575
|
/**
|
|
410
|
-
* HTTP
|
|
411
|
-
* Java method: org.openremote.model.
|
|
576
|
+
* HTTP DELETE /asset
|
|
577
|
+
* Java method: org.openremote.model.asset.AssetResource.delete
|
|
412
578
|
*/
|
|
413
|
-
|
|
579
|
+
delete(queryParams?: {
|
|
580
|
+
assetId?: string[];
|
|
581
|
+
}, options?: O): RestResponse<void>;
|
|
414
582
|
/**
|
|
415
|
-
* HTTP PUT /
|
|
416
|
-
* Java method: org.openremote.model.
|
|
583
|
+
* HTTP PUT /asset/attributes
|
|
584
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValues
|
|
417
585
|
*/
|
|
418
|
-
|
|
586
|
+
writeAttributeValues(attributeStates: Model.AttributeState[], options?: O): RestResponse<Model.AttributeWriteResult[]>;
|
|
419
587
|
/**
|
|
420
|
-
* HTTP
|
|
421
|
-
* Java method: org.openremote.model.
|
|
588
|
+
* HTTP PUT /asset/attributes/timestamp
|
|
589
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeEvents
|
|
422
590
|
*/
|
|
423
|
-
|
|
591
|
+
writeAttributeEvents(attributeEvents: Model.AttributeEvent[], options?: O): RestResponse<Model.AttributeWriteResult[]>;
|
|
424
592
|
/**
|
|
425
|
-
* HTTP
|
|
426
|
-
* Java method: org.openremote.model.
|
|
593
|
+
* HTTP DELETE /asset/parent
|
|
594
|
+
* Java method: org.openremote.model.asset.AssetResource.updateNoneParent
|
|
427
595
|
*/
|
|
428
|
-
|
|
596
|
+
updateNoneParent(queryParams?: {
|
|
597
|
+
assetIds?: string[];
|
|
598
|
+
}, options?: O): RestResponse<void>;
|
|
429
599
|
/**
|
|
430
|
-
* HTTP
|
|
431
|
-
* Java method: org.openremote.model.
|
|
600
|
+
* HTTP GET /asset/partial/{assetId}
|
|
601
|
+
* Java method: org.openremote.model.asset.AssetResource.getPartial
|
|
432
602
|
*/
|
|
433
|
-
|
|
434
|
-
}
|
|
435
|
-
export declare class ConsoleResourceClient<O> {
|
|
436
|
-
protected httpClient: HttpClient<O>;
|
|
437
|
-
constructor(httpClient: HttpClient<O>);
|
|
603
|
+
getPartial(assetId: string, options?: O): RestResponse<Model.Asset>;
|
|
438
604
|
/**
|
|
439
|
-
* HTTP POST /
|
|
440
|
-
* Java method: org.openremote.model.
|
|
605
|
+
* HTTP POST /asset/query
|
|
606
|
+
* Java method: org.openremote.model.asset.AssetResource.queryAssets
|
|
441
607
|
*/
|
|
442
|
-
|
|
443
|
-
}
|
|
444
|
-
export declare class AgentResourceClient<O> {
|
|
445
|
-
protected httpClient: HttpClient<O>;
|
|
446
|
-
constructor(httpClient: HttpClient<O>);
|
|
608
|
+
queryAssets(query: Model.AssetQuery, options?: O): RestResponse<Model.Asset[]>;
|
|
447
609
|
/**
|
|
448
|
-
* HTTP GET /
|
|
449
|
-
* Java method: org.openremote.model.asset.
|
|
610
|
+
* HTTP GET /asset/user/current
|
|
611
|
+
* Java method: org.openremote.model.asset.AssetResource.getCurrentUserAssets
|
|
450
612
|
*/
|
|
451
|
-
|
|
452
|
-
realm?: string;
|
|
453
|
-
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
613
|
+
getCurrentUserAssets(options?: O): RestResponse<Model.Asset[]>;
|
|
454
614
|
/**
|
|
455
|
-
* HTTP POST /
|
|
456
|
-
* Java method: org.openremote.model.asset.
|
|
615
|
+
* HTTP POST /asset/user/link
|
|
616
|
+
* Java method: org.openremote.model.asset.AssetResource.createUserAssetLinks
|
|
457
617
|
*/
|
|
458
|
-
|
|
459
|
-
realm?: string;
|
|
460
|
-
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
618
|
+
createUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void>;
|
|
461
619
|
/**
|
|
462
|
-
* HTTP GET /
|
|
463
|
-
* Java method: org.openremote.model.asset.
|
|
620
|
+
* HTTP GET /asset/user/link
|
|
621
|
+
* Java method: org.openremote.model.asset.AssetResource.getUserAssetLinks
|
|
464
622
|
*/
|
|
465
|
-
|
|
466
|
-
parentId?: string;
|
|
623
|
+
getUserAssetLinks(queryParams?: {
|
|
467
624
|
realm?: string;
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
protected httpClient: HttpClient<O>;
|
|
472
|
-
constructor(httpClient: HttpClient<O>);
|
|
625
|
+
userId?: string;
|
|
626
|
+
assetId?: string;
|
|
627
|
+
}, options?: O): RestResponse<Model.UserAssetLink[]>;
|
|
473
628
|
/**
|
|
474
|
-
* HTTP POST /
|
|
475
|
-
* Java method: org.openremote.model.
|
|
629
|
+
* HTTP POST /asset/user/link/delete
|
|
630
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLinks
|
|
476
631
|
*/
|
|
477
|
-
|
|
632
|
+
deleteUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void>;
|
|
478
633
|
/**
|
|
479
|
-
* HTTP
|
|
480
|
-
* Java method: org.openremote.model.
|
|
634
|
+
* HTTP DELETE /asset/user/link/{realm}/{userId}
|
|
635
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteAllUserAssetLinks
|
|
481
636
|
*/
|
|
482
|
-
|
|
637
|
+
deleteAllUserAssetLinks(realm: string, userId: string, options?: O): RestResponse<void>;
|
|
483
638
|
/**
|
|
484
|
-
* HTTP DELETE /
|
|
485
|
-
* Java method: org.openremote.model.
|
|
639
|
+
* HTTP DELETE /asset/user/link/{realm}/{userId}/{assetId}
|
|
640
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLink
|
|
486
641
|
*/
|
|
487
|
-
|
|
642
|
+
deleteUserAssetLink(realm: string, userId: string, assetId: string, options?: O): RestResponse<void>;
|
|
488
643
|
/**
|
|
489
|
-
* HTTP
|
|
490
|
-
* Java method: org.openremote.model.
|
|
644
|
+
* HTTP GET /asset/{assetId}
|
|
645
|
+
* Java method: org.openremote.model.asset.AssetResource.get
|
|
491
646
|
*/
|
|
492
|
-
|
|
493
|
-
}
|
|
494
|
-
export declare class ConfigurationResourceClient<O> {
|
|
495
|
-
protected httpClient: HttpClient<O>;
|
|
496
|
-
constructor(httpClient: HttpClient<O>);
|
|
647
|
+
get(assetId: string, options?: O): RestResponse<Model.Asset>;
|
|
497
648
|
/**
|
|
498
|
-
* HTTP
|
|
499
|
-
* Java method: org.openremote.model.
|
|
649
|
+
* HTTP PUT /asset/{assetId}
|
|
650
|
+
* Java method: org.openremote.model.asset.AssetResource.update
|
|
500
651
|
*/
|
|
501
|
-
|
|
652
|
+
update(assetId: string, asset: Model.Asset, options?: O): RestResponse<Model.Asset>;
|
|
502
653
|
/**
|
|
503
|
-
* HTTP PUT /
|
|
504
|
-
* Java method: org.openremote.model.
|
|
654
|
+
* HTTP PUT /asset/{assetId}/attribute/{attributeName}
|
|
655
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValue
|
|
505
656
|
*/
|
|
506
|
-
|
|
657
|
+
writeAttributeValue$PUT$asset_assetId_attribute_attributeName(assetId: string, attributeName: string, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
507
658
|
/**
|
|
508
|
-
* HTTP
|
|
509
|
-
* Java method: org.openremote.model.
|
|
659
|
+
* HTTP PUT /asset/{assetId}/attribute/{attributeName}/{timestamp}
|
|
660
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValue
|
|
510
661
|
*/
|
|
511
|
-
|
|
512
|
-
path?: string;
|
|
513
|
-
}, options?: O): RestResponse<string>;
|
|
662
|
+
writeAttributeValue$PUT$asset_assetId_attribute_attributeName_timestamp(assetId: string, attributeName: string, timestamp: number, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
514
663
|
/**
|
|
515
|
-
* HTTP
|
|
516
|
-
* Java method: org.openremote.model.
|
|
664
|
+
* HTTP PUT /asset/{parentAssetId}/child
|
|
665
|
+
* Java method: org.openremote.model.asset.AssetResource.updateParent
|
|
517
666
|
*/
|
|
518
|
-
|
|
667
|
+
updateParent(parentAssetId: string, queryParams?: {
|
|
668
|
+
assetIds?: string[];
|
|
669
|
+
}, options?: O): RestResponse<void>;
|
|
519
670
|
}
|
|
520
671
|
export declare class AssetModelResourceClient<O> {
|
|
521
672
|
protected httpClient: HttpClient<O>;
|
|
@@ -562,138 +713,83 @@ export declare class AssetModelResourceClient<O> {
|
|
|
562
713
|
[index: string]: Model.ValueDescriptor;
|
|
563
714
|
}>;
|
|
564
715
|
}
|
|
565
|
-
export declare class
|
|
716
|
+
export declare class AssetPredictedDatapointResourceClient<O> {
|
|
566
717
|
protected httpClient: HttpClient<O>;
|
|
567
718
|
constructor(httpClient: HttpClient<O>);
|
|
568
719
|
/**
|
|
569
|
-
* HTTP
|
|
570
|
-
* Java method: org.openremote.model.
|
|
571
|
-
*/
|
|
572
|
-
getNotifications(queryParams?: {
|
|
573
|
-
id?: number;
|
|
574
|
-
type?: string;
|
|
575
|
-
from?: number;
|
|
576
|
-
to?: number;
|
|
577
|
-
realmId?: string;
|
|
578
|
-
userId?: string;
|
|
579
|
-
assetId?: string;
|
|
580
|
-
}, options?: O): RestResponse<Model.SentNotification[]>;
|
|
581
|
-
/**
|
|
582
|
-
* HTTP DELETE /notification
|
|
583
|
-
* Java method: org.openremote.model.notification.NotificationResource.removeNotifications
|
|
584
|
-
*/
|
|
585
|
-
removeNotifications(queryParams?: {
|
|
586
|
-
id?: number;
|
|
587
|
-
type?: string;
|
|
588
|
-
from?: number;
|
|
589
|
-
to?: number;
|
|
590
|
-
realmId?: string;
|
|
591
|
-
userId?: string;
|
|
592
|
-
assetId?: string;
|
|
593
|
-
}, options?: O): RestResponse<void>;
|
|
594
|
-
/**
|
|
595
|
-
* HTTP POST /notification/alert
|
|
596
|
-
* Java method: org.openremote.model.notification.NotificationResource.sendNotification
|
|
597
|
-
*/
|
|
598
|
-
sendNotification(notification: Model.Notification, options?: O): RestResponse<void>;
|
|
599
|
-
/**
|
|
600
|
-
* HTTP DELETE /notification/{notificationId}
|
|
601
|
-
* Java method: org.openremote.model.notification.NotificationResource.removeNotification
|
|
602
|
-
*/
|
|
603
|
-
removeNotification(notificationId: number, options?: O): RestResponse<void>;
|
|
604
|
-
/**
|
|
605
|
-
* HTTP PUT /notification/{notificationId}/acknowledged
|
|
606
|
-
* Java method: org.openremote.model.notification.NotificationResource.notificationAcknowledged
|
|
720
|
+
* HTTP POST /asset/predicted/{assetId}/{attributeName}
|
|
721
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints
|
|
607
722
|
*/
|
|
608
|
-
|
|
609
|
-
targetId?: string;
|
|
610
|
-
}, options?: O): RestResponse<void>;
|
|
723
|
+
getPredictedDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
611
724
|
/**
|
|
612
|
-
* HTTP PUT /
|
|
613
|
-
* Java method: org.openremote.model.
|
|
725
|
+
* HTTP PUT /asset/predicted/{assetId}/{attributeName}
|
|
726
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
|
|
614
727
|
*/
|
|
615
|
-
|
|
616
|
-
targetId?: string;
|
|
617
|
-
}, options?: O): RestResponse<void>;
|
|
728
|
+
writePredictedDatapoints(assetId: string, attributeName: string, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void>;
|
|
618
729
|
}
|
|
619
|
-
export declare class
|
|
730
|
+
export declare class AgentResourceClient<O> {
|
|
620
731
|
protected httpClient: HttpClient<O>;
|
|
621
732
|
constructor(httpClient: HttpClient<O>);
|
|
622
733
|
/**
|
|
623
|
-
* HTTP
|
|
624
|
-
* Java method: org.openremote.model.
|
|
625
|
-
*/
|
|
626
|
-
deleteConnections(queryParams?: {
|
|
627
|
-
realm?: string[];
|
|
628
|
-
}, options?: O): RestResponse<void>;
|
|
629
|
-
/**
|
|
630
|
-
* HTTP GET /gateway/connection
|
|
631
|
-
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnections
|
|
632
|
-
*/
|
|
633
|
-
getConnections(options?: O): RestResponse<Model.GatewayConnection[]>;
|
|
634
|
-
/**
|
|
635
|
-
* HTTP DELETE /gateway/connection/{realm}
|
|
636
|
-
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnection
|
|
637
|
-
*/
|
|
638
|
-
deleteConnection(realm: string, options?: O): RestResponse<void>;
|
|
639
|
-
/**
|
|
640
|
-
* HTTP GET /gateway/connection/{realm}
|
|
641
|
-
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnection
|
|
734
|
+
* HTTP GET /agent/assetDiscovery/{agentId}
|
|
735
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery
|
|
642
736
|
*/
|
|
643
|
-
|
|
737
|
+
doProtocolAssetDiscovery(agentId: string, queryParams?: {
|
|
738
|
+
realm?: string;
|
|
739
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
644
740
|
/**
|
|
645
|
-
* HTTP
|
|
646
|
-
* Java method: org.openremote.model.
|
|
741
|
+
* HTTP POST /agent/assetImport/{agentId}
|
|
742
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport
|
|
647
743
|
*/
|
|
648
|
-
|
|
744
|
+
doProtocolAssetImport(agentId: string, fileInfo: Model.FileInfo, queryParams?: {
|
|
745
|
+
realm?: string;
|
|
746
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
649
747
|
/**
|
|
650
|
-
* HTTP GET /
|
|
651
|
-
* Java method: org.openremote.model.
|
|
748
|
+
* HTTP GET /agent/instanceDiscovery/{agentType}
|
|
749
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery
|
|
652
750
|
*/
|
|
653
|
-
|
|
751
|
+
doProtocolInstanceDiscovery(agentType: string, queryParams?: {
|
|
752
|
+
parentId?: string;
|
|
753
|
+
realm?: string;
|
|
754
|
+
}, options?: O): RestResponse<Model.Agent[]>;
|
|
654
755
|
}
|
|
655
|
-
export declare class
|
|
756
|
+
export declare class FlowResourceClient<O> {
|
|
656
757
|
protected httpClient: HttpClient<O>;
|
|
657
758
|
constructor(httpClient: HttpClient<O>);
|
|
658
759
|
/**
|
|
659
|
-
* HTTP
|
|
660
|
-
* Java method: org.openremote.model.
|
|
661
|
-
*/
|
|
662
|
-
getPredictedDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
663
|
-
/**
|
|
664
|
-
* HTTP PUT /asset/predicted/{assetId}/{attributeName}
|
|
665
|
-
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
|
|
760
|
+
* HTTP GET /flow
|
|
761
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitions
|
|
666
762
|
*/
|
|
667
|
-
|
|
668
|
-
}
|
|
669
|
-
export declare class GatewayServiceResourceClient<O> {
|
|
670
|
-
protected httpClient: HttpClient<O>;
|
|
671
|
-
constructor(httpClient: HttpClient<O>);
|
|
763
|
+
getAllNodeDefinitions(options?: O): RestResponse<Model.Node[]>;
|
|
672
764
|
/**
|
|
673
|
-
* HTTP
|
|
674
|
-
* Java method: org.openremote.model.
|
|
765
|
+
* HTTP GET /flow/{name}
|
|
766
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getNodeDefinition
|
|
675
767
|
*/
|
|
676
|
-
|
|
768
|
+
getNodeDefinition(name: string, options?: O): RestResponse<Model.Node>;
|
|
677
769
|
/**
|
|
678
|
-
* HTTP
|
|
679
|
-
* Java method: org.openremote.model.
|
|
770
|
+
* HTTP GET /flow/{type}
|
|
771
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitionsByType
|
|
680
772
|
*/
|
|
681
|
-
|
|
773
|
+
getAllNodeDefinitionsByType(type: Model.NodeType, options?: O): RestResponse<Model.Node[]>;
|
|
774
|
+
}
|
|
775
|
+
export declare class AppResourceClient<O> {
|
|
776
|
+
protected httpClient: HttpClient<O>;
|
|
777
|
+
constructor(httpClient: HttpClient<O>);
|
|
682
778
|
/**
|
|
683
|
-
* HTTP GET /
|
|
684
|
-
* Java method: org.openremote.model.
|
|
779
|
+
* HTTP GET /apps
|
|
780
|
+
* Java method: org.openremote.model.apps.AppResource.getApps
|
|
685
781
|
*/
|
|
686
|
-
|
|
782
|
+
getApps(options?: O): RestResponse<string[]>;
|
|
687
783
|
/**
|
|
688
|
-
* HTTP GET /
|
|
689
|
-
* Java method: org.openremote.model.
|
|
784
|
+
* HTTP GET /apps/consoleConfig
|
|
785
|
+
* Java method: org.openremote.model.apps.AppResource.getConsoleConfig
|
|
690
786
|
*/
|
|
691
|
-
|
|
787
|
+
getConsoleConfig(options?: O): RestResponse<any>;
|
|
692
788
|
/**
|
|
693
|
-
* HTTP GET /
|
|
694
|
-
* Java method: org.openremote.model.
|
|
789
|
+
* HTTP GET /apps/info
|
|
790
|
+
* Java method: org.openremote.model.apps.AppResource.getAppInfos
|
|
695
791
|
*/
|
|
696
|
-
|
|
792
|
+
getAppInfos(options?: O): RestResponse<any>;
|
|
697
793
|
}
|
|
698
794
|
export declare class StatusResourceClient<O> {
|
|
699
795
|
protected httpClient: HttpClient<O>;
|
|
@@ -766,181 +862,85 @@ export declare class MapResourceClient<O> {
|
|
|
766
862
|
[id: string]: unknown;
|
|
767
863
|
}>;
|
|
768
864
|
}
|
|
769
|
-
export declare class
|
|
770
|
-
protected httpClient: HttpClient<O>;
|
|
771
|
-
constructor(httpClient: HttpClient<O>);
|
|
772
|
-
/**
|
|
773
|
-
* HTTP GET /apps
|
|
774
|
-
* Java method: org.openremote.model.apps.AppResource.getApps
|
|
775
|
-
*/
|
|
776
|
-
getApps(options?: O): RestResponse<string[]>;
|
|
777
|
-
/**
|
|
778
|
-
* HTTP GET /apps/consoleConfig
|
|
779
|
-
* Java method: org.openremote.model.apps.AppResource.getConsoleConfig
|
|
780
|
-
*/
|
|
781
|
-
getConsoleConfig(options?: O): RestResponse<any>;
|
|
782
|
-
/**
|
|
783
|
-
* HTTP GET /apps/info
|
|
784
|
-
* Java method: org.openremote.model.apps.AppResource.getAppInfos
|
|
785
|
-
*/
|
|
786
|
-
getAppInfos(options?: O): RestResponse<any>;
|
|
787
|
-
}
|
|
788
|
-
export declare class SyslogResourceClient<O> {
|
|
789
|
-
protected httpClient: HttpClient<O>;
|
|
790
|
-
constructor(httpClient: HttpClient<O>);
|
|
791
|
-
/**
|
|
792
|
-
* HTTP GET /syslog/config
|
|
793
|
-
* Java method: org.openremote.model.syslog.SyslogResource.getConfig
|
|
794
|
-
*/
|
|
795
|
-
getConfig(options?: O): RestResponse<Model.SyslogConfig>;
|
|
796
|
-
/**
|
|
797
|
-
* HTTP PUT /syslog/config
|
|
798
|
-
* Java method: org.openremote.model.syslog.SyslogResource.updateConfig
|
|
799
|
-
*/
|
|
800
|
-
updateConfig(config: Model.SyslogConfig, options?: O): RestResponse<void>;
|
|
801
|
-
/**
|
|
802
|
-
* HTTP DELETE /syslog/event
|
|
803
|
-
* Java method: org.openremote.model.syslog.SyslogResource.clearEvents
|
|
804
|
-
*/
|
|
805
|
-
clearEvents(options?: O): RestResponse<void>;
|
|
806
|
-
/**
|
|
807
|
-
* HTTP GET /syslog/event
|
|
808
|
-
* Java method: org.openremote.model.syslog.SyslogResource.getEvents
|
|
809
|
-
*/
|
|
810
|
-
getEvents(queryParams?: {
|
|
811
|
-
level?: Model.SyslogLevel;
|
|
812
|
-
per_page?: number;
|
|
813
|
-
page?: number;
|
|
814
|
-
from?: number;
|
|
815
|
-
to?: number;
|
|
816
|
-
category?: Model.SyslogCategory[];
|
|
817
|
-
subCategory?: string[];
|
|
818
|
-
}, options?: O): RestResponse<any>;
|
|
819
|
-
}
|
|
820
|
-
export declare class RealmResourceClient<O> {
|
|
821
|
-
protected httpClient: HttpClient<O>;
|
|
822
|
-
constructor(httpClient: HttpClient<O>);
|
|
823
|
-
/**
|
|
824
|
-
* HTTP POST /realm
|
|
825
|
-
* Java method: org.openremote.model.security.RealmResource.create
|
|
826
|
-
*/
|
|
827
|
-
create(realm: Model.Realm, options?: O): RestResponse<void>;
|
|
828
|
-
/**
|
|
829
|
-
* HTTP GET /realm
|
|
830
|
-
* Java method: org.openremote.model.security.RealmResource.getAll
|
|
831
|
-
*/
|
|
832
|
-
getAll(options?: O): RestResponse<Model.Realm[]>;
|
|
833
|
-
/**
|
|
834
|
-
* HTTP GET /realm/accessible
|
|
835
|
-
* Java method: org.openremote.model.security.RealmResource.getAccessible
|
|
836
|
-
*/
|
|
837
|
-
getAccessible(options?: O): RestResponse<Model.Realm[]>;
|
|
838
|
-
/**
|
|
839
|
-
* HTTP DELETE /realm/{name}
|
|
840
|
-
* Java method: org.openremote.model.security.RealmResource.delete
|
|
841
|
-
*/
|
|
842
|
-
delete(name: string, options?: O): RestResponse<void>;
|
|
843
|
-
/**
|
|
844
|
-
* HTTP GET /realm/{name}
|
|
845
|
-
* Java method: org.openremote.model.security.RealmResource.get
|
|
846
|
-
*/
|
|
847
|
-
get(name: string, options?: O): RestResponse<Model.Realm>;
|
|
848
|
-
/**
|
|
849
|
-
* HTTP PUT /realm/{name}
|
|
850
|
-
* Java method: org.openremote.model.security.RealmResource.update
|
|
851
|
-
*/
|
|
852
|
-
update(name: string, realm: Model.Realm, options?: O): RestResponse<void>;
|
|
853
|
-
}
|
|
854
|
-
export declare class AssetDatapointResourceClient<O> {
|
|
865
|
+
export declare class DashboardResourceClient<O> {
|
|
855
866
|
protected httpClient: HttpClient<O>;
|
|
856
867
|
constructor(httpClient: HttpClient<O>);
|
|
857
868
|
/**
|
|
858
|
-
* HTTP
|
|
859
|
-
* Java method: org.openremote.model.
|
|
869
|
+
* HTTP POST /dashboard
|
|
870
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.create
|
|
860
871
|
*/
|
|
861
|
-
|
|
862
|
-
attributeRefs?: string;
|
|
863
|
-
fromTimestamp?: number;
|
|
864
|
-
toTimestamp?: number;
|
|
865
|
-
}, options?: O): RestResponse<any>;
|
|
872
|
+
create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
866
873
|
/**
|
|
867
|
-
* HTTP
|
|
868
|
-
* Java method: org.openremote.model.
|
|
874
|
+
* HTTP PUT /dashboard
|
|
875
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.update
|
|
869
876
|
*/
|
|
870
|
-
|
|
871
|
-
assetId?: string;
|
|
872
|
-
attributeName?: string;
|
|
873
|
-
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
877
|
+
update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
874
878
|
/**
|
|
875
|
-
* HTTP
|
|
876
|
-
* Java method: org.openremote.model.
|
|
879
|
+
* HTTP GET /dashboard/all/{realm}
|
|
880
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards
|
|
877
881
|
*/
|
|
878
|
-
|
|
879
|
-
}
|
|
880
|
-
export declare class FlowResourceClient<O> {
|
|
881
|
-
protected httpClient: HttpClient<O>;
|
|
882
|
-
constructor(httpClient: HttpClient<O>);
|
|
882
|
+
getAllRealmDashboards(realm: string, options?: O): RestResponse<Model.Dashboard[]>;
|
|
883
883
|
/**
|
|
884
|
-
* HTTP
|
|
885
|
-
* Java method: org.openremote.model.
|
|
884
|
+
* HTTP POST /dashboard/query
|
|
885
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.query
|
|
886
886
|
*/
|
|
887
|
-
|
|
887
|
+
query(dashboardQuery: Model.DashboardQuery, options?: O): RestResponse<Model.Dashboard[]>;
|
|
888
888
|
/**
|
|
889
|
-
* HTTP
|
|
890
|
-
* Java method: org.openremote.model.
|
|
889
|
+
* HTTP DELETE /dashboard/{realm}/{dashboardId}
|
|
890
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.delete
|
|
891
891
|
*/
|
|
892
|
-
|
|
892
|
+
delete(realm: string, dashboardId: string, options?: O): RestResponse<void>;
|
|
893
893
|
/**
|
|
894
|
-
* HTTP GET /
|
|
895
|
-
* Java method: org.openremote.model.
|
|
894
|
+
* HTTP GET /dashboard/{realm}/{dashboardId}
|
|
895
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.get
|
|
896
896
|
*/
|
|
897
|
-
|
|
897
|
+
get(realm: string, dashboardId: string, options?: O): RestResponse<Model.Dashboard>;
|
|
898
898
|
}
|
|
899
899
|
export type RestResponse<R> = Promise<Axios.GenericAxiosResponse<R>>;
|
|
900
900
|
export declare class ApiClient {
|
|
901
|
-
protected
|
|
902
|
-
protected
|
|
903
|
-
protected
|
|
904
|
-
protected
|
|
901
|
+
protected _gatewayClientResource: AxiosGatewayClientResourceClient;
|
|
902
|
+
protected _syslogResource: AxiosSyslogResourceClient;
|
|
903
|
+
protected _provisioningResource: AxiosProvisioningResourceClient;
|
|
904
|
+
protected _gatewayServiceResource: AxiosGatewayServiceResourceClient;
|
|
905
905
|
protected _rulesResource: AxiosRulesResourceClient;
|
|
906
|
+
protected _realmResource: AxiosRealmResourceClient;
|
|
906
907
|
protected _consoleResource: AxiosConsoleResourceClient;
|
|
907
|
-
protected _agentResource: AxiosAgentResourceClient;
|
|
908
|
-
protected _provisioningResource: AxiosProvisioningResourceClient;
|
|
909
908
|
protected _configurationResource: AxiosConfigurationResourceClient;
|
|
910
|
-
protected _assetModelResource: AxiosAssetModelResourceClient;
|
|
911
909
|
protected _notificationResource: AxiosNotificationResourceClient;
|
|
912
|
-
protected
|
|
910
|
+
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
911
|
+
protected _userResource: AxiosUserResourceClient;
|
|
912
|
+
protected _alarmResource: AxiosAlarmResourceClient;
|
|
913
|
+
protected _assetResource: AxiosAssetResourceClient;
|
|
914
|
+
protected _assetModelResource: AxiosAssetModelResourceClient;
|
|
913
915
|
protected _assetPredictedDatapointResource: AxiosAssetPredictedDatapointResourceClient;
|
|
914
|
-
protected
|
|
916
|
+
protected _agentResource: AxiosAgentResourceClient;
|
|
917
|
+
protected _flowResource: AxiosFlowResourceClient;
|
|
918
|
+
protected _appResource: AxiosAppResourceClient;
|
|
915
919
|
protected _statusResource: AxiosStatusResourceClient;
|
|
916
920
|
protected _mapResource: AxiosMapResourceClient;
|
|
917
|
-
protected
|
|
918
|
-
protected _syslogResource: AxiosSyslogResourceClient;
|
|
919
|
-
protected _realmResource: AxiosRealmResourceClient;
|
|
920
|
-
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
921
|
-
protected _flowResource: AxiosFlowResourceClient;
|
|
921
|
+
protected _dashboardResource: AxiosDashboardResourceClient;
|
|
922
922
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
923
|
-
get
|
|
924
|
-
get
|
|
925
|
-
get
|
|
926
|
-
get
|
|
923
|
+
get GatewayClientResource(): AxiosGatewayClientResourceClient;
|
|
924
|
+
get SyslogResource(): AxiosSyslogResourceClient;
|
|
925
|
+
get ProvisioningResource(): AxiosProvisioningResourceClient;
|
|
926
|
+
get GatewayServiceResource(): AxiosGatewayServiceResourceClient;
|
|
927
927
|
get RulesResource(): AxiosRulesResourceClient;
|
|
928
|
+
get RealmResource(): AxiosRealmResourceClient;
|
|
928
929
|
get ConsoleResource(): AxiosConsoleResourceClient;
|
|
929
|
-
get AgentResource(): AxiosAgentResourceClient;
|
|
930
|
-
get ProvisioningResource(): AxiosProvisioningResourceClient;
|
|
931
930
|
get ConfigurationResource(): AxiosConfigurationResourceClient;
|
|
932
|
-
get AssetModelResource(): AxiosAssetModelResourceClient;
|
|
933
931
|
get NotificationResource(): AxiosNotificationResourceClient;
|
|
934
|
-
get
|
|
932
|
+
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
933
|
+
get UserResource(): AxiosUserResourceClient;
|
|
934
|
+
get AlarmResource(): AxiosAlarmResourceClient;
|
|
935
|
+
get AssetResource(): AxiosAssetResourceClient;
|
|
936
|
+
get AssetModelResource(): AxiosAssetModelResourceClient;
|
|
935
937
|
get AssetPredictedDatapointResource(): AxiosAssetPredictedDatapointResourceClient;
|
|
936
|
-
get
|
|
938
|
+
get AgentResource(): AxiosAgentResourceClient;
|
|
939
|
+
get FlowResource(): AxiosFlowResourceClient;
|
|
940
|
+
get AppResource(): AxiosAppResourceClient;
|
|
937
941
|
get StatusResource(): AxiosStatusResourceClient;
|
|
938
942
|
get MapResource(): AxiosMapResourceClient;
|
|
939
|
-
get
|
|
940
|
-
get SyslogResource(): AxiosSyslogResourceClient;
|
|
941
|
-
get RealmResource(): AxiosRealmResourceClient;
|
|
942
|
-
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
943
|
-
get FlowResource(): AxiosFlowResourceClient;
|
|
943
|
+
get DashboardResource(): AxiosDashboardResourceClient;
|
|
944
944
|
}
|
|
945
945
|
import * as Axios from "axios";
|
|
946
946
|
declare module "axios" {
|
|
@@ -948,66 +948,66 @@ declare module "axios" {
|
|
|
948
948
|
data: R;
|
|
949
949
|
}
|
|
950
950
|
}
|
|
951
|
-
export declare class
|
|
951
|
+
export declare class AxiosGatewayClientResourceClient extends GatewayClientResourceClient<Axios.AxiosRequestConfig> {
|
|
952
952
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
953
953
|
}
|
|
954
|
-
export declare class
|
|
954
|
+
export declare class AxiosSyslogResourceClient extends SyslogResourceClient<Axios.AxiosRequestConfig> {
|
|
955
955
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
956
956
|
}
|
|
957
|
-
export declare class
|
|
957
|
+
export declare class AxiosProvisioningResourceClient extends ProvisioningResourceClient<Axios.AxiosRequestConfig> {
|
|
958
958
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
959
959
|
}
|
|
960
|
-
export declare class
|
|
960
|
+
export declare class AxiosGatewayServiceResourceClient extends GatewayServiceResourceClient<Axios.AxiosRequestConfig> {
|
|
961
961
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
962
962
|
}
|
|
963
963
|
export declare class AxiosRulesResourceClient extends RulesResourceClient<Axios.AxiosRequestConfig> {
|
|
964
964
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
965
965
|
}
|
|
966
|
-
export declare class
|
|
966
|
+
export declare class AxiosRealmResourceClient extends RealmResourceClient<Axios.AxiosRequestConfig> {
|
|
967
967
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
968
968
|
}
|
|
969
|
-
export declare class
|
|
969
|
+
export declare class AxiosConsoleResourceClient extends ConsoleResourceClient<Axios.AxiosRequestConfig> {
|
|
970
970
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
971
971
|
}
|
|
972
|
-
export declare class
|
|
972
|
+
export declare class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {
|
|
973
973
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
974
974
|
}
|
|
975
|
-
export declare class
|
|
975
|
+
export declare class AxiosNotificationResourceClient extends NotificationResourceClient<Axios.AxiosRequestConfig> {
|
|
976
976
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
977
977
|
}
|
|
978
|
-
export declare class
|
|
978
|
+
export declare class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
979
979
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
980
980
|
}
|
|
981
|
-
export declare class
|
|
981
|
+
export declare class AxiosUserResourceClient extends UserResourceClient<Axios.AxiosRequestConfig> {
|
|
982
982
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
983
983
|
}
|
|
984
|
-
export declare class
|
|
984
|
+
export declare class AxiosAlarmResourceClient extends AlarmResourceClient<Axios.AxiosRequestConfig> {
|
|
985
985
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
986
986
|
}
|
|
987
|
-
export declare class
|
|
987
|
+
export declare class AxiosAssetResourceClient extends AssetResourceClient<Axios.AxiosRequestConfig> {
|
|
988
988
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
989
989
|
}
|
|
990
|
-
export declare class
|
|
990
|
+
export declare class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {
|
|
991
991
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
992
992
|
}
|
|
993
|
-
export declare class
|
|
993
|
+
export declare class AxiosAssetPredictedDatapointResourceClient extends AssetPredictedDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
994
994
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
995
995
|
}
|
|
996
|
-
export declare class
|
|
996
|
+
export declare class AxiosAgentResourceClient extends AgentResourceClient<Axios.AxiosRequestConfig> {
|
|
997
997
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
998
998
|
}
|
|
999
|
-
export declare class
|
|
999
|
+
export declare class AxiosFlowResourceClient extends FlowResourceClient<Axios.AxiosRequestConfig> {
|
|
1000
1000
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1001
1001
|
}
|
|
1002
|
-
export declare class
|
|
1002
|
+
export declare class AxiosAppResourceClient extends AppResourceClient<Axios.AxiosRequestConfig> {
|
|
1003
1003
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1004
1004
|
}
|
|
1005
|
-
export declare class
|
|
1005
|
+
export declare class AxiosStatusResourceClient extends StatusResourceClient<Axios.AxiosRequestConfig> {
|
|
1006
1006
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1007
1007
|
}
|
|
1008
|
-
export declare class
|
|
1008
|
+
export declare class AxiosMapResourceClient extends MapResourceClient<Axios.AxiosRequestConfig> {
|
|
1009
1009
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1010
1010
|
}
|
|
1011
|
-
export declare class
|
|
1011
|
+
export declare class AxiosDashboardResourceClient extends DashboardResourceClient<Axios.AxiosRequestConfig> {
|
|
1012
1012
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1013
1013
|
}
|