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