@openremote/rest 1.9.0-snapshot.20250911121739 → 1.9.0-snapshot.20250915103826
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 +483 -483
- 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,6 +9,51 @@ export interface HttpClient<O> {
|
|
|
9
9
|
options?: O;
|
|
10
10
|
}): RestResponse<R>;
|
|
11
11
|
}
|
|
12
|
+
export declare class AssetModelResourceClient<O> {
|
|
13
|
+
protected httpClient: HttpClient<O>;
|
|
14
|
+
constructor(httpClient: HttpClient<O>);
|
|
15
|
+
/**
|
|
16
|
+
* HTTP GET /model/assetDescriptors
|
|
17
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetDescriptors
|
|
18
|
+
*/
|
|
19
|
+
getAssetDescriptors(queryParams?: {
|
|
20
|
+
parentId?: string;
|
|
21
|
+
parentType?: string;
|
|
22
|
+
}, options?: O): RestResponse<Model.AssetDescriptor[]>;
|
|
23
|
+
/**
|
|
24
|
+
* HTTP GET /model/assetInfo/{assetType}
|
|
25
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfo
|
|
26
|
+
*/
|
|
27
|
+
getAssetInfo(assetType: string, queryParams?: {
|
|
28
|
+
parentId?: string;
|
|
29
|
+
}, options?: O): RestResponse<Model.AssetTypeInfo>;
|
|
30
|
+
/**
|
|
31
|
+
* HTTP GET /model/assetInfos
|
|
32
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfos
|
|
33
|
+
*/
|
|
34
|
+
getAssetInfos(queryParams?: {
|
|
35
|
+
parentId?: string;
|
|
36
|
+
parentType?: string;
|
|
37
|
+
}, options?: O): RestResponse<Model.AssetTypeInfo[]>;
|
|
38
|
+
/**
|
|
39
|
+
* HTTP GET /model/metaItemDescriptors
|
|
40
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getMetaItemDescriptors
|
|
41
|
+
*/
|
|
42
|
+
getMetaItemDescriptors(queryParams?: {
|
|
43
|
+
parentId?: string;
|
|
44
|
+
}, options?: O): RestResponse<{
|
|
45
|
+
[index: string]: Model.MetaItemDescriptor;
|
|
46
|
+
}>;
|
|
47
|
+
/**
|
|
48
|
+
* HTTP GET /model/valueDescriptors
|
|
49
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getValueDescriptors
|
|
50
|
+
*/
|
|
51
|
+
getValueDescriptors(queryParams?: {
|
|
52
|
+
parentId?: string;
|
|
53
|
+
}, options?: O): RestResponse<{
|
|
54
|
+
[index: string]: Model.ValueDescriptor;
|
|
55
|
+
}>;
|
|
56
|
+
}
|
|
12
57
|
export declare class AssetResourceClient<O> {
|
|
13
58
|
protected httpClient: HttpClient<O>;
|
|
14
59
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -113,6 +158,24 @@ export declare class AssetResourceClient<O> {
|
|
|
113
158
|
assetIds?: string[];
|
|
114
159
|
}, options?: O): RestResponse<void>;
|
|
115
160
|
}
|
|
161
|
+
export declare class StatusResourceClient<O> {
|
|
162
|
+
protected httpClient: HttpClient<O>;
|
|
163
|
+
constructor(httpClient: HttpClient<O>);
|
|
164
|
+
/**
|
|
165
|
+
* HTTP GET /health
|
|
166
|
+
* Java method: org.openremote.model.system.StatusResource.getHealthStatus
|
|
167
|
+
*/
|
|
168
|
+
getHealthStatus(options?: O): RestResponse<{
|
|
169
|
+
[index: string]: any;
|
|
170
|
+
}>;
|
|
171
|
+
/**
|
|
172
|
+
* HTTP GET /info
|
|
173
|
+
* Java method: org.openremote.model.system.StatusResource.getInfo
|
|
174
|
+
*/
|
|
175
|
+
getInfo(options?: O): RestResponse<{
|
|
176
|
+
[index: string]: any;
|
|
177
|
+
}>;
|
|
178
|
+
}
|
|
116
179
|
export declare class ConfigurationResourceClient<O> {
|
|
117
180
|
protected httpClient: HttpClient<O>;
|
|
118
181
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -139,264 +202,230 @@ export declare class ConfigurationResourceClient<O> {
|
|
|
139
202
|
*/
|
|
140
203
|
getManagerConfigImage(filename: string, options?: O): RestResponse<any>;
|
|
141
204
|
}
|
|
142
|
-
export declare class
|
|
205
|
+
export declare class AgentResourceClient<O> {
|
|
143
206
|
protected httpClient: HttpClient<O>;
|
|
144
207
|
constructor(httpClient: HttpClient<O>);
|
|
145
208
|
/**
|
|
146
|
-
* HTTP GET /
|
|
147
|
-
* Java method: org.openremote.model.
|
|
209
|
+
* HTTP GET /agent/assetDiscovery/{agentId}
|
|
210
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery
|
|
148
211
|
*/
|
|
149
|
-
|
|
212
|
+
doProtocolAssetDiscovery(agentId: string, queryParams?: {
|
|
213
|
+
realm?: string;
|
|
214
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
150
215
|
/**
|
|
151
|
-
* HTTP
|
|
152
|
-
* Java method: org.openremote.model.
|
|
216
|
+
* HTTP POST /agent/assetImport/{agentId}
|
|
217
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport
|
|
153
218
|
*/
|
|
154
|
-
|
|
219
|
+
doProtocolAssetImport(agentId: string, fileInfo: Model.FileInfo, queryParams?: {
|
|
220
|
+
realm?: string;
|
|
221
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
155
222
|
/**
|
|
156
|
-
* HTTP GET /
|
|
157
|
-
* Java method: org.openremote.model.
|
|
223
|
+
* HTTP GET /agent/instanceDiscovery/{agentType}
|
|
224
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery
|
|
158
225
|
*/
|
|
159
|
-
|
|
226
|
+
doProtocolInstanceDiscovery(agentType: string, queryParams?: {
|
|
227
|
+
parentId?: string;
|
|
228
|
+
realm?: string;
|
|
229
|
+
}, options?: O): RestResponse<Model.Agent[]>;
|
|
160
230
|
}
|
|
161
|
-
export declare class
|
|
231
|
+
export declare class GatewayClientResourceClient<O> {
|
|
162
232
|
protected httpClient: HttpClient<O>;
|
|
163
233
|
constructor(httpClient: HttpClient<O>);
|
|
164
234
|
/**
|
|
165
|
-
* HTTP
|
|
166
|
-
* Java method: org.openremote.model.
|
|
235
|
+
* HTTP DELETE /gateway/connection
|
|
236
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnections
|
|
167
237
|
*/
|
|
168
|
-
|
|
238
|
+
deleteConnections(queryParams?: {
|
|
239
|
+
realm?: string[];
|
|
240
|
+
}, options?: O): RestResponse<void>;
|
|
169
241
|
/**
|
|
170
|
-
* HTTP
|
|
171
|
-
* Java method: org.openremote.model.
|
|
242
|
+
* HTTP GET /gateway/connection
|
|
243
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnections
|
|
172
244
|
*/
|
|
173
|
-
|
|
245
|
+
getConnections(options?: O): RestResponse<Model.GatewayConnection[]>;
|
|
174
246
|
/**
|
|
175
|
-
* HTTP
|
|
176
|
-
* Java method: org.openremote.model.
|
|
247
|
+
* HTTP DELETE /gateway/connection/{realm}
|
|
248
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnection
|
|
177
249
|
*/
|
|
178
|
-
|
|
250
|
+
deleteConnection(realm: string, options?: O): RestResponse<void>;
|
|
179
251
|
/**
|
|
180
|
-
* HTTP
|
|
181
|
-
* Java method: org.openremote.model.
|
|
252
|
+
* HTTP GET /gateway/connection/{realm}
|
|
253
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnection
|
|
182
254
|
*/
|
|
183
|
-
|
|
255
|
+
getConnection(realm: string, options?: O): RestResponse<Model.GatewayConnection>;
|
|
184
256
|
/**
|
|
185
|
-
* HTTP PUT /
|
|
186
|
-
* Java method: org.openremote.model.
|
|
257
|
+
* HTTP PUT /gateway/connection/{realm}
|
|
258
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.setConnection
|
|
187
259
|
*/
|
|
188
|
-
|
|
260
|
+
setConnection(realm: string, connection: Model.GatewayConnection, options?: O): RestResponse<void>;
|
|
189
261
|
/**
|
|
190
|
-
* HTTP GET /
|
|
191
|
-
* Java method: org.openremote.model.
|
|
262
|
+
* HTTP GET /gateway/status/{realm}
|
|
263
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnectionStatus
|
|
192
264
|
*/
|
|
193
|
-
|
|
265
|
+
getConnectionStatus(realm: string, options?: O): RestResponse<Model.ConnectionStatus>;
|
|
266
|
+
}
|
|
267
|
+
export declare class SyslogResourceClient<O> {
|
|
268
|
+
protected httpClient: HttpClient<O>;
|
|
269
|
+
constructor(httpClient: HttpClient<O>);
|
|
194
270
|
/**
|
|
195
|
-
* HTTP GET /
|
|
196
|
-
* Java method: org.openremote.model.
|
|
271
|
+
* HTTP GET /syslog/config
|
|
272
|
+
* Java method: org.openremote.model.syslog.SyslogResource.getConfig
|
|
197
273
|
*/
|
|
198
|
-
|
|
274
|
+
getConfig(options?: O): RestResponse<Model.SyslogConfig>;
|
|
199
275
|
/**
|
|
200
|
-
* HTTP
|
|
201
|
-
* Java method: org.openremote.model.
|
|
276
|
+
* HTTP PUT /syslog/config
|
|
277
|
+
* Java method: org.openremote.model.syslog.SyslogResource.updateConfig
|
|
202
278
|
*/
|
|
203
|
-
|
|
279
|
+
updateConfig(config: Model.SyslogConfig, options?: O): RestResponse<void>;
|
|
204
280
|
/**
|
|
205
|
-
* HTTP
|
|
206
|
-
* Java method: org.openremote.model.
|
|
281
|
+
* HTTP DELETE /syslog/event
|
|
282
|
+
* Java method: org.openremote.model.syslog.SyslogResource.clearEvents
|
|
207
283
|
*/
|
|
208
|
-
|
|
284
|
+
clearEvents(options?: O): RestResponse<void>;
|
|
209
285
|
/**
|
|
210
|
-
* HTTP
|
|
211
|
-
* Java method: org.openremote.model.
|
|
286
|
+
* HTTP GET /syslog/event
|
|
287
|
+
* Java method: org.openremote.model.syslog.SyslogResource.getEvents
|
|
212
288
|
*/
|
|
213
|
-
|
|
289
|
+
getEvents(queryParams?: {
|
|
290
|
+
level?: Model.SyslogLevel;
|
|
291
|
+
per_page?: number;
|
|
292
|
+
page?: number;
|
|
293
|
+
from?: number;
|
|
294
|
+
to?: number;
|
|
295
|
+
category?: Model.SyslogCategory[];
|
|
296
|
+
subCategory?: string[];
|
|
297
|
+
}, options?: O): RestResponse<any>;
|
|
298
|
+
}
|
|
299
|
+
export declare class RulesResourceClient<O> {
|
|
300
|
+
protected httpClient: HttpClient<O>;
|
|
301
|
+
constructor(httpClient: HttpClient<O>);
|
|
214
302
|
/**
|
|
215
|
-
* HTTP
|
|
216
|
-
* Java method: org.openremote.model.
|
|
303
|
+
* HTTP POST /rules
|
|
304
|
+
* Java method: org.openremote.model.rules.RulesResource.createGlobalRuleset
|
|
217
305
|
*/
|
|
218
|
-
|
|
306
|
+
createGlobalRuleset(ruleset: Model.GlobalRuleset, options?: O): RestResponse<number>;
|
|
219
307
|
/**
|
|
220
|
-
* HTTP GET /
|
|
221
|
-
* Java method: org.openremote.model.
|
|
308
|
+
* HTTP GET /rules
|
|
309
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalRulesets
|
|
222
310
|
*/
|
|
223
|
-
|
|
311
|
+
getGlobalRulesets(queryParams?: {
|
|
312
|
+
language?: Model.RulesetLang[];
|
|
313
|
+
fullyPopulate?: boolean;
|
|
314
|
+
}, options?: O): RestResponse<Model.GlobalRuleset[]>;
|
|
224
315
|
/**
|
|
225
|
-
* HTTP
|
|
226
|
-
* Java method: org.openremote.model.
|
|
316
|
+
* HTTP POST /rules/asset
|
|
317
|
+
* Java method: org.openremote.model.rules.RulesResource.createAssetRuleset
|
|
227
318
|
*/
|
|
228
|
-
|
|
319
|
+
createAssetRuleset(ruleset: Model.AssetRuleset, options?: O): RestResponse<number>;
|
|
229
320
|
/**
|
|
230
|
-
* HTTP GET /
|
|
231
|
-
* Java method: org.openremote.model.
|
|
321
|
+
* HTTP GET /rules/asset/for/{assetId}
|
|
322
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetRulesets
|
|
232
323
|
*/
|
|
233
|
-
|
|
324
|
+
getAssetRulesets(assetId: string, queryParams?: {
|
|
325
|
+
language?: Model.RulesetLang[];
|
|
326
|
+
fullyPopulate?: boolean;
|
|
327
|
+
}, options?: O): RestResponse<Model.AssetRuleset[]>;
|
|
234
328
|
/**
|
|
235
|
-
* HTTP
|
|
236
|
-
* Java method: org.openremote.model.
|
|
329
|
+
* HTTP DELETE /rules/asset/{id}
|
|
330
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteAssetRuleset
|
|
237
331
|
*/
|
|
238
|
-
|
|
332
|
+
deleteAssetRuleset(id: number, options?: O): RestResponse<void>;
|
|
239
333
|
/**
|
|
240
|
-
* HTTP GET /
|
|
241
|
-
* Java method: org.openremote.model.
|
|
334
|
+
* HTTP GET /rules/asset/{id}
|
|
335
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetRuleset
|
|
242
336
|
*/
|
|
243
|
-
|
|
337
|
+
getAssetRuleset(id: number, options?: O): RestResponse<Model.AssetRuleset>;
|
|
244
338
|
/**
|
|
245
|
-
* HTTP PUT /
|
|
246
|
-
* Java method: org.openremote.model.
|
|
339
|
+
* HTTP PUT /rules/asset/{id}
|
|
340
|
+
* Java method: org.openremote.model.rules.RulesResource.updateAssetRuleset
|
|
247
341
|
*/
|
|
248
|
-
|
|
342
|
+
updateAssetRuleset(id: number, ruleset: Model.AssetRuleset, options?: O): RestResponse<void>;
|
|
249
343
|
/**
|
|
250
|
-
* HTTP GET /
|
|
251
|
-
* Java method: org.openremote.model.
|
|
344
|
+
* HTTP GET /rules/geofences/{assetId}
|
|
345
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetGeofences
|
|
252
346
|
*/
|
|
253
|
-
|
|
347
|
+
getAssetGeofences(assetId: string, options?: O): RestResponse<Model.GeofenceDefinition[]>;
|
|
254
348
|
/**
|
|
255
|
-
* HTTP
|
|
256
|
-
* Java method: org.openremote.model.
|
|
349
|
+
* HTTP GET /rules/info/asset/{assetId}
|
|
350
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetEngineInfo
|
|
257
351
|
*/
|
|
258
|
-
|
|
352
|
+
getAssetEngineInfo(assetId: string, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
259
353
|
/**
|
|
260
|
-
* HTTP
|
|
261
|
-
* Java method: org.openremote.model.
|
|
354
|
+
* HTTP GET /rules/info/global
|
|
355
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalEngineInfo
|
|
262
356
|
*/
|
|
263
|
-
|
|
357
|
+
getGlobalEngineInfo(options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
264
358
|
/**
|
|
265
|
-
* HTTP
|
|
266
|
-
* Java method: org.openremote.model.
|
|
359
|
+
* HTTP GET /rules/info/realm/{realm}
|
|
360
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmEngineInfo
|
|
267
361
|
*/
|
|
268
|
-
|
|
362
|
+
getRealmEngineInfo(realm: string, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
269
363
|
/**
|
|
270
|
-
* HTTP
|
|
271
|
-
* Java method: org.openremote.model.
|
|
364
|
+
* HTTP POST /rules/realm
|
|
365
|
+
* Java method: org.openremote.model.rules.RulesResource.createRealmRuleset
|
|
272
366
|
*/
|
|
273
|
-
|
|
367
|
+
createRealmRuleset(ruleset: Model.RealmRuleset, options?: O): RestResponse<number>;
|
|
274
368
|
/**
|
|
275
|
-
* HTTP
|
|
276
|
-
* Java method: org.openremote.model.
|
|
369
|
+
* HTTP GET /rules/realm/for/{realm}
|
|
370
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmRulesets
|
|
277
371
|
*/
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
*/
|
|
283
|
-
get(realm: string, userId: string, options?: O): RestResponse<Model.User>;
|
|
284
|
-
}
|
|
285
|
-
export declare class FlowResourceClient<O> {
|
|
286
|
-
protected httpClient: HttpClient<O>;
|
|
287
|
-
constructor(httpClient: HttpClient<O>);
|
|
288
|
-
/**
|
|
289
|
-
* HTTP GET /flow
|
|
290
|
-
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitions
|
|
291
|
-
*/
|
|
292
|
-
getAllNodeDefinitions(options?: O): RestResponse<Model.Node[]>;
|
|
293
|
-
/**
|
|
294
|
-
* HTTP GET /flow/{name}
|
|
295
|
-
* Java method: org.openremote.model.rules.flow.FlowResource.getNodeDefinition
|
|
296
|
-
*/
|
|
297
|
-
getNodeDefinition(name: string, options?: O): RestResponse<Model.Node>;
|
|
298
|
-
/**
|
|
299
|
-
* HTTP GET /flow/{type}
|
|
300
|
-
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitionsByType
|
|
301
|
-
*/
|
|
302
|
-
getAllNodeDefinitionsByType(type: Model.NodeType, options?: O): RestResponse<Model.Node[]>;
|
|
303
|
-
}
|
|
304
|
-
export declare class StatusResourceClient<O> {
|
|
305
|
-
protected httpClient: HttpClient<O>;
|
|
306
|
-
constructor(httpClient: HttpClient<O>);
|
|
372
|
+
getRealmRulesets(realm: string, queryParams?: {
|
|
373
|
+
language?: Model.RulesetLang[];
|
|
374
|
+
fullyPopulate?: boolean;
|
|
375
|
+
}, options?: O): RestResponse<Model.RealmRuleset[]>;
|
|
307
376
|
/**
|
|
308
|
-
* HTTP
|
|
309
|
-
* Java method: org.openremote.model.
|
|
377
|
+
* HTTP DELETE /rules/realm/{id}
|
|
378
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteRealmRuleset
|
|
310
379
|
*/
|
|
311
|
-
|
|
312
|
-
[index: string]: any;
|
|
313
|
-
}>;
|
|
380
|
+
deleteRealmRuleset(id: number, options?: O): RestResponse<void>;
|
|
314
381
|
/**
|
|
315
|
-
* HTTP GET /
|
|
316
|
-
* Java method: org.openremote.model.
|
|
382
|
+
* HTTP GET /rules/realm/{id}
|
|
383
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmRuleset
|
|
317
384
|
*/
|
|
318
|
-
|
|
319
|
-
[index: string]: any;
|
|
320
|
-
}>;
|
|
321
|
-
}
|
|
322
|
-
export declare class ProvisioningResourceClient<O> {
|
|
323
|
-
protected httpClient: HttpClient<O>;
|
|
324
|
-
constructor(httpClient: HttpClient<O>);
|
|
385
|
+
getRealmRuleset(id: number, options?: O): RestResponse<Model.RealmRuleset>;
|
|
325
386
|
/**
|
|
326
|
-
* HTTP
|
|
327
|
-
* Java method: org.openremote.model.
|
|
387
|
+
* HTTP PUT /rules/realm/{id}
|
|
388
|
+
* Java method: org.openremote.model.rules.RulesResource.updateRealmRuleset
|
|
328
389
|
*/
|
|
329
|
-
|
|
390
|
+
updateRealmRuleset(id: number, ruleset: Model.RealmRuleset, options?: O): RestResponse<void>;
|
|
330
391
|
/**
|
|
331
|
-
* HTTP
|
|
332
|
-
* Java method: org.openremote.model.
|
|
392
|
+
* HTTP DELETE /rules/{id}
|
|
393
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteGlobalRuleset
|
|
333
394
|
*/
|
|
334
|
-
|
|
395
|
+
deleteGlobalRuleset(id: number, options?: O): RestResponse<void>;
|
|
335
396
|
/**
|
|
336
|
-
* HTTP
|
|
337
|
-
* Java method: org.openremote.model.
|
|
397
|
+
* HTTP GET /rules/{id}
|
|
398
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalRuleset
|
|
338
399
|
*/
|
|
339
|
-
|
|
400
|
+
getGlobalRuleset(id: number, options?: O): RestResponse<Model.GlobalRuleset>;
|
|
340
401
|
/**
|
|
341
|
-
* HTTP PUT /
|
|
342
|
-
* Java method: org.openremote.model.
|
|
402
|
+
* HTTP PUT /rules/{id}
|
|
403
|
+
* Java method: org.openremote.model.rules.RulesResource.updateGlobalRuleset
|
|
343
404
|
*/
|
|
344
|
-
|
|
405
|
+
updateGlobalRuleset(id: number, ruleset: Model.GlobalRuleset, options?: O): RestResponse<void>;
|
|
345
406
|
}
|
|
346
|
-
export declare class
|
|
407
|
+
export declare class ConsoleResourceClient<O> {
|
|
347
408
|
protected httpClient: HttpClient<O>;
|
|
348
409
|
constructor(httpClient: HttpClient<O>);
|
|
349
410
|
/**
|
|
350
|
-
* HTTP POST /
|
|
351
|
-
* Java method: org.openremote.model.
|
|
352
|
-
*/
|
|
353
|
-
startTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
354
|
-
/**
|
|
355
|
-
* HTTP DELETE /gateway/tunnel
|
|
356
|
-
* Java method: org.openremote.model.gateway.GatewayServiceResource.stopTunnel
|
|
357
|
-
*/
|
|
358
|
-
stopTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<void>;
|
|
359
|
-
/**
|
|
360
|
-
* HTTP GET /gateway/tunnel/{realm}
|
|
361
|
-
* Java method: org.openremote.model.gateway.GatewayServiceResource.getAllActiveTunnelInfos
|
|
362
|
-
*/
|
|
363
|
-
getAllActiveTunnelInfos(realm: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
364
|
-
/**
|
|
365
|
-
* HTTP GET /gateway/tunnel/{realm}/{id}
|
|
366
|
-
* Java method: org.openremote.model.gateway.GatewayServiceResource.getGatewayActiveTunnelInfos
|
|
367
|
-
*/
|
|
368
|
-
getGatewayActiveTunnelInfos(realm: string, id: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
369
|
-
/**
|
|
370
|
-
* HTTP GET /gateway/tunnel/{realm}/{id}/{target}/{targetPort}
|
|
371
|
-
* Java method: org.openremote.model.gateway.GatewayServiceResource.getActiveTunnelInfo
|
|
411
|
+
* HTTP POST /console/register
|
|
412
|
+
* Java method: org.openremote.model.console.ConsoleResource.register
|
|
372
413
|
*/
|
|
373
|
-
|
|
414
|
+
register(consoleRegistration: Model.ConsoleRegistration, options?: O): RestResponse<Model.ConsoleRegistration>;
|
|
374
415
|
}
|
|
375
|
-
export declare class
|
|
416
|
+
export declare class AssetPredictedDatapointResourceClient<O> {
|
|
376
417
|
protected httpClient: HttpClient<O>;
|
|
377
418
|
constructor(httpClient: HttpClient<O>);
|
|
378
419
|
/**
|
|
379
|
-
* HTTP
|
|
380
|
-
* Java method: org.openremote.model.datapoint.
|
|
381
|
-
*/
|
|
382
|
-
getDatapointExport(queryParams?: {
|
|
383
|
-
attributeRefs?: string;
|
|
384
|
-
fromTimestamp?: number;
|
|
385
|
-
toTimestamp?: number;
|
|
386
|
-
}, options?: O): RestResponse<any>;
|
|
387
|
-
/**
|
|
388
|
-
* HTTP GET /asset/datapoint/periods
|
|
389
|
-
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
|
|
420
|
+
* HTTP POST /asset/predicted/{assetId}/{attributeName}
|
|
421
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints
|
|
390
422
|
*/
|
|
391
|
-
|
|
392
|
-
assetId?: string;
|
|
393
|
-
attributeName?: string;
|
|
394
|
-
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
423
|
+
getPredictedDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
395
424
|
/**
|
|
396
|
-
* HTTP
|
|
397
|
-
* Java method: org.openremote.model.datapoint.
|
|
425
|
+
* HTTP PUT /asset/predicted/{assetId}/{attributeName}
|
|
426
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
|
|
398
427
|
*/
|
|
399
|
-
|
|
428
|
+
writePredictedDatapoints(assetId: string, attributeName: string, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void>;
|
|
400
429
|
}
|
|
401
430
|
export declare class AlarmResourceClient<O> {
|
|
402
431
|
protected httpClient: HttpClient<O>;
|
|
@@ -451,19 +480,88 @@ export declare class AlarmResourceClient<O> {
|
|
|
451
480
|
realm?: string;
|
|
452
481
|
}, options?: O): RestResponse<Model.AlarmAssetLink[]>;
|
|
453
482
|
}
|
|
454
|
-
export declare class
|
|
483
|
+
export declare class NotificationResourceClient<O> {
|
|
455
484
|
protected httpClient: HttpClient<O>;
|
|
456
485
|
constructor(httpClient: HttpClient<O>);
|
|
457
486
|
/**
|
|
458
|
-
* HTTP
|
|
459
|
-
* Java method: org.openremote.model.
|
|
487
|
+
* HTTP GET /notification
|
|
488
|
+
* Java method: org.openremote.model.notification.NotificationResource.getNotifications
|
|
460
489
|
*/
|
|
461
|
-
|
|
490
|
+
getNotifications(queryParams?: {
|
|
491
|
+
id?: number;
|
|
492
|
+
type?: string;
|
|
493
|
+
from?: number;
|
|
494
|
+
to?: number;
|
|
495
|
+
realmId?: string;
|
|
496
|
+
userId?: string;
|
|
497
|
+
assetId?: string;
|
|
498
|
+
}, options?: O): RestResponse<Model.SentNotification[]>;
|
|
462
499
|
/**
|
|
463
|
-
* HTTP
|
|
464
|
-
* Java method: org.openremote.model.
|
|
500
|
+
* HTTP DELETE /notification
|
|
501
|
+
* Java method: org.openremote.model.notification.NotificationResource.removeNotifications
|
|
465
502
|
*/
|
|
466
|
-
|
|
503
|
+
removeNotifications(queryParams?: {
|
|
504
|
+
id?: number;
|
|
505
|
+
type?: string;
|
|
506
|
+
from?: number;
|
|
507
|
+
to?: number;
|
|
508
|
+
realmId?: string;
|
|
509
|
+
userId?: string;
|
|
510
|
+
assetId?: string;
|
|
511
|
+
}, options?: O): RestResponse<void>;
|
|
512
|
+
/**
|
|
513
|
+
* HTTP POST /notification/alert
|
|
514
|
+
* Java method: org.openremote.model.notification.NotificationResource.sendNotification
|
|
515
|
+
*/
|
|
516
|
+
sendNotification(notification: Model.Notification, options?: O): RestResponse<void>;
|
|
517
|
+
/**
|
|
518
|
+
* HTTP DELETE /notification/{notificationId}
|
|
519
|
+
* Java method: org.openremote.model.notification.NotificationResource.removeNotification
|
|
520
|
+
*/
|
|
521
|
+
removeNotification(notificationId: number, options?: O): RestResponse<void>;
|
|
522
|
+
/**
|
|
523
|
+
* HTTP PUT /notification/{notificationId}/acknowledged
|
|
524
|
+
* Java method: org.openremote.model.notification.NotificationResource.notificationAcknowledged
|
|
525
|
+
*/
|
|
526
|
+
notificationAcknowledged(notificationId: number, acknowledgement: any, queryParams?: {
|
|
527
|
+
targetId?: string;
|
|
528
|
+
}, options?: O): RestResponse<void>;
|
|
529
|
+
/**
|
|
530
|
+
* HTTP PUT /notification/{notificationId}/delivered
|
|
531
|
+
* Java method: org.openremote.model.notification.NotificationResource.notificationDelivered
|
|
532
|
+
*/
|
|
533
|
+
notificationDelivered(notificationId: number, queryParams?: {
|
|
534
|
+
targetId?: string;
|
|
535
|
+
}, options?: O): RestResponse<void>;
|
|
536
|
+
}
|
|
537
|
+
export declare class GatewayServiceResourceClient<O> {
|
|
538
|
+
protected httpClient: HttpClient<O>;
|
|
539
|
+
constructor(httpClient: HttpClient<O>);
|
|
540
|
+
/**
|
|
541
|
+
* HTTP POST /gateway/tunnel
|
|
542
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.startTunnel
|
|
543
|
+
*/
|
|
544
|
+
startTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
545
|
+
/**
|
|
546
|
+
* HTTP DELETE /gateway/tunnel
|
|
547
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.stopTunnel
|
|
548
|
+
*/
|
|
549
|
+
stopTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<void>;
|
|
550
|
+
/**
|
|
551
|
+
* HTTP GET /gateway/tunnel/{realm}
|
|
552
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getAllActiveTunnelInfos
|
|
553
|
+
*/
|
|
554
|
+
getAllActiveTunnelInfos(realm: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
555
|
+
/**
|
|
556
|
+
* HTTP GET /gateway/tunnel/{realm}/{id}
|
|
557
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getGatewayActiveTunnelInfos
|
|
558
|
+
*/
|
|
559
|
+
getGatewayActiveTunnelInfos(realm: string, id: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
|
|
560
|
+
/**
|
|
561
|
+
* HTTP GET /gateway/tunnel/{realm}/{id}/{target}/{targetPort}
|
|
562
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.getActiveTunnelInfo
|
|
563
|
+
*/
|
|
564
|
+
getActiveTunnelInfo(realm: string, id: string, target: string, targetPort: number, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
467
565
|
}
|
|
468
566
|
export declare class MapResourceClient<O> {
|
|
469
567
|
protected httpClient: HttpClient<O>;
|
|
@@ -518,51 +616,57 @@ export declare class MapResourceClient<O> {
|
|
|
518
616
|
[id: string]: unknown;
|
|
519
617
|
}>;
|
|
520
618
|
}
|
|
521
|
-
export declare class
|
|
619
|
+
export declare class FlowResourceClient<O> {
|
|
522
620
|
protected httpClient: HttpClient<O>;
|
|
523
621
|
constructor(httpClient: HttpClient<O>);
|
|
524
622
|
/**
|
|
525
|
-
* HTTP GET /
|
|
526
|
-
* Java method: org.openremote.model.
|
|
527
|
-
*/
|
|
528
|
-
getConfig(options?: O): RestResponse<Model.SyslogConfig>;
|
|
529
|
-
/**
|
|
530
|
-
* HTTP PUT /syslog/config
|
|
531
|
-
* Java method: org.openremote.model.syslog.SyslogResource.updateConfig
|
|
623
|
+
* HTTP GET /flow
|
|
624
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitions
|
|
532
625
|
*/
|
|
533
|
-
|
|
626
|
+
getAllNodeDefinitions(options?: O): RestResponse<Model.Node[]>;
|
|
534
627
|
/**
|
|
535
|
-
* HTTP
|
|
536
|
-
* Java method: org.openremote.model.
|
|
628
|
+
* HTTP GET /flow/{name}
|
|
629
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getNodeDefinition
|
|
537
630
|
*/
|
|
538
|
-
|
|
631
|
+
getNodeDefinition(name: string, options?: O): RestResponse<Model.Node>;
|
|
539
632
|
/**
|
|
540
|
-
* HTTP GET /
|
|
541
|
-
* Java method: org.openremote.model.
|
|
633
|
+
* HTTP GET /flow/{type}
|
|
634
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitionsByType
|
|
542
635
|
*/
|
|
543
|
-
|
|
544
|
-
level?: Model.SyslogLevel;
|
|
545
|
-
per_page?: number;
|
|
546
|
-
page?: number;
|
|
547
|
-
from?: number;
|
|
548
|
-
to?: number;
|
|
549
|
-
category?: Model.SyslogCategory[];
|
|
550
|
-
subCategory?: string[];
|
|
551
|
-
}, options?: O): RestResponse<any>;
|
|
636
|
+
getAllNodeDefinitionsByType(type: Model.NodeType, options?: O): RestResponse<Model.Node[]>;
|
|
552
637
|
}
|
|
553
|
-
export declare class
|
|
638
|
+
export declare class AppResourceClient<O> {
|
|
554
639
|
protected httpClient: HttpClient<O>;
|
|
555
640
|
constructor(httpClient: HttpClient<O>);
|
|
556
641
|
/**
|
|
557
|
-
* HTTP
|
|
558
|
-
* Java method: org.openremote.model.
|
|
642
|
+
* HTTP GET /apps
|
|
643
|
+
* Java method: org.openremote.model.apps.AppResource.getApps
|
|
559
644
|
*/
|
|
560
|
-
|
|
645
|
+
getApps(options?: O): RestResponse<string[]>;
|
|
561
646
|
/**
|
|
562
|
-
* HTTP
|
|
563
|
-
* Java method: org.openremote.model.
|
|
647
|
+
* HTTP GET /apps/consoleConfig
|
|
648
|
+
* Java method: org.openremote.model.apps.AppResource.getConsoleConfig
|
|
564
649
|
*/
|
|
565
|
-
|
|
650
|
+
getConsoleConfig(options?: O): RestResponse<any>;
|
|
651
|
+
/**
|
|
652
|
+
* HTTP GET /apps/info
|
|
653
|
+
* Java method: org.openremote.model.apps.AppResource.getAppInfos
|
|
654
|
+
*/
|
|
655
|
+
getAppInfos(options?: O): RestResponse<any>;
|
|
656
|
+
}
|
|
657
|
+
export declare class DashboardResourceClient<O> {
|
|
658
|
+
protected httpClient: HttpClient<O>;
|
|
659
|
+
constructor(httpClient: HttpClient<O>);
|
|
660
|
+
/**
|
|
661
|
+
* HTTP POST /dashboard
|
|
662
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.create
|
|
663
|
+
*/
|
|
664
|
+
create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
665
|
+
/**
|
|
666
|
+
* HTTP PUT /dashboard
|
|
667
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.update
|
|
668
|
+
*/
|
|
669
|
+
update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
566
670
|
/**
|
|
567
671
|
* HTTP GET /dashboard/all/{realm}
|
|
568
672
|
* Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards
|
|
@@ -584,283 +688,155 @@ export declare class DashboardResourceClient<O> {
|
|
|
584
688
|
*/
|
|
585
689
|
get(realm: string, dashboardId: string, options?: O): RestResponse<Model.Dashboard>;
|
|
586
690
|
}
|
|
587
|
-
export declare class
|
|
588
|
-
protected httpClient: HttpClient<O>;
|
|
589
|
-
constructor(httpClient: HttpClient<O>);
|
|
590
|
-
/**
|
|
591
|
-
* HTTP GET /notification
|
|
592
|
-
* Java method: org.openremote.model.notification.NotificationResource.getNotifications
|
|
593
|
-
*/
|
|
594
|
-
getNotifications(queryParams?: {
|
|
595
|
-
id?: number;
|
|
596
|
-
type?: string;
|
|
597
|
-
from?: number;
|
|
598
|
-
to?: number;
|
|
599
|
-
realmId?: string;
|
|
600
|
-
userId?: string;
|
|
601
|
-
assetId?: string;
|
|
602
|
-
}, options?: O): RestResponse<Model.SentNotification[]>;
|
|
603
|
-
/**
|
|
604
|
-
* HTTP DELETE /notification
|
|
605
|
-
* Java method: org.openremote.model.notification.NotificationResource.removeNotifications
|
|
606
|
-
*/
|
|
607
|
-
removeNotifications(queryParams?: {
|
|
608
|
-
id?: number;
|
|
609
|
-
type?: string;
|
|
610
|
-
from?: number;
|
|
611
|
-
to?: number;
|
|
612
|
-
realmId?: string;
|
|
613
|
-
userId?: string;
|
|
614
|
-
assetId?: string;
|
|
615
|
-
}, options?: O): RestResponse<void>;
|
|
616
|
-
/**
|
|
617
|
-
* HTTP POST /notification/alert
|
|
618
|
-
* Java method: org.openremote.model.notification.NotificationResource.sendNotification
|
|
619
|
-
*/
|
|
620
|
-
sendNotification(notification: Model.Notification, options?: O): RestResponse<void>;
|
|
621
|
-
/**
|
|
622
|
-
* HTTP DELETE /notification/{notificationId}
|
|
623
|
-
* Java method: org.openremote.model.notification.NotificationResource.removeNotification
|
|
624
|
-
*/
|
|
625
|
-
removeNotification(notificationId: number, options?: O): RestResponse<void>;
|
|
626
|
-
/**
|
|
627
|
-
* HTTP PUT /notification/{notificationId}/acknowledged
|
|
628
|
-
* Java method: org.openremote.model.notification.NotificationResource.notificationAcknowledged
|
|
629
|
-
*/
|
|
630
|
-
notificationAcknowledged(notificationId: number, acknowledgement: any, queryParams?: {
|
|
631
|
-
targetId?: string;
|
|
632
|
-
}, options?: O): RestResponse<void>;
|
|
633
|
-
/**
|
|
634
|
-
* HTTP PUT /notification/{notificationId}/delivered
|
|
635
|
-
* Java method: org.openremote.model.notification.NotificationResource.notificationDelivered
|
|
636
|
-
*/
|
|
637
|
-
notificationDelivered(notificationId: number, queryParams?: {
|
|
638
|
-
targetId?: string;
|
|
639
|
-
}, options?: O): RestResponse<void>;
|
|
640
|
-
}
|
|
641
|
-
export declare class RulesResourceClient<O> {
|
|
691
|
+
export declare class UserResourceClient<O> {
|
|
642
692
|
protected httpClient: HttpClient<O>;
|
|
643
693
|
constructor(httpClient: HttpClient<O>);
|
|
644
694
|
/**
|
|
645
|
-
* HTTP
|
|
646
|
-
* Java method: org.openremote.model.
|
|
647
|
-
*/
|
|
648
|
-
createGlobalRuleset(ruleset: Model.GlobalRuleset, options?: O): RestResponse<number>;
|
|
649
|
-
/**
|
|
650
|
-
* HTTP GET /rules
|
|
651
|
-
* Java method: org.openremote.model.rules.RulesResource.getGlobalRulesets
|
|
652
|
-
*/
|
|
653
|
-
getGlobalRulesets(queryParams?: {
|
|
654
|
-
language?: Model.RulesetLang[];
|
|
655
|
-
fullyPopulate?: boolean;
|
|
656
|
-
}, options?: O): RestResponse<Model.GlobalRuleset[]>;
|
|
657
|
-
/**
|
|
658
|
-
* HTTP POST /rules/asset
|
|
659
|
-
* Java method: org.openremote.model.rules.RulesResource.createAssetRuleset
|
|
660
|
-
*/
|
|
661
|
-
createAssetRuleset(ruleset: Model.AssetRuleset, options?: O): RestResponse<number>;
|
|
662
|
-
/**
|
|
663
|
-
* HTTP GET /rules/asset/for/{assetId}
|
|
664
|
-
* Java method: org.openremote.model.rules.RulesResource.getAssetRulesets
|
|
665
|
-
*/
|
|
666
|
-
getAssetRulesets(assetId: string, queryParams?: {
|
|
667
|
-
language?: Model.RulesetLang[];
|
|
668
|
-
fullyPopulate?: boolean;
|
|
669
|
-
}, options?: O): RestResponse<Model.AssetRuleset[]>;
|
|
670
|
-
/**
|
|
671
|
-
* HTTP DELETE /rules/asset/{id}
|
|
672
|
-
* Java method: org.openremote.model.rules.RulesResource.deleteAssetRuleset
|
|
673
|
-
*/
|
|
674
|
-
deleteAssetRuleset(id: number, options?: O): RestResponse<void>;
|
|
675
|
-
/**
|
|
676
|
-
* HTTP GET /rules/asset/{id}
|
|
677
|
-
* Java method: org.openremote.model.rules.RulesResource.getAssetRuleset
|
|
695
|
+
* HTTP PUT /user/locale
|
|
696
|
+
* Java method: org.openremote.model.security.UserResource.updateCurrentUserLocale
|
|
678
697
|
*/
|
|
679
|
-
|
|
698
|
+
updateCurrentUserLocale(locale: string, options?: O): RestResponse<void>;
|
|
680
699
|
/**
|
|
681
|
-
* HTTP
|
|
682
|
-
* Java method: org.openremote.model.
|
|
700
|
+
* HTTP POST /user/query
|
|
701
|
+
* Java method: org.openremote.model.security.UserResource.query
|
|
683
702
|
*/
|
|
684
|
-
|
|
703
|
+
query(query: Model.UserQuery, options?: O): RestResponse<Model.User[]>;
|
|
685
704
|
/**
|
|
686
|
-
* HTTP
|
|
687
|
-
* Java method: org.openremote.model.
|
|
705
|
+
* HTTP PUT /user/request-password-reset
|
|
706
|
+
* Java method: org.openremote.model.security.UserResource.requestPasswordResetCurrent
|
|
688
707
|
*/
|
|
689
|
-
|
|
708
|
+
requestPasswordResetCurrent(options?: O): RestResponse<void>;
|
|
690
709
|
/**
|
|
691
|
-
* HTTP
|
|
692
|
-
* Java method: org.openremote.model.
|
|
710
|
+
* HTTP PUT /user/reset-password
|
|
711
|
+
* Java method: org.openremote.model.security.UserResource.updatePasswordCurrent
|
|
693
712
|
*/
|
|
694
|
-
|
|
713
|
+
updatePasswordCurrent(credential: Model.Credential, options?: O): RestResponse<void>;
|
|
695
714
|
/**
|
|
696
|
-
* HTTP
|
|
697
|
-
* Java method: org.openremote.model.
|
|
715
|
+
* HTTP PUT /user/update
|
|
716
|
+
* Java method: org.openremote.model.security.UserResource.updateCurrent
|
|
698
717
|
*/
|
|
699
|
-
|
|
718
|
+
updateCurrent(user: Model.User, options?: O): RestResponse<Model.User>;
|
|
700
719
|
/**
|
|
701
|
-
* HTTP GET /
|
|
702
|
-
* Java method: org.openremote.model.
|
|
720
|
+
* HTTP GET /user/user
|
|
721
|
+
* Java method: org.openremote.model.security.UserResource.getCurrent
|
|
703
722
|
*/
|
|
704
|
-
|
|
723
|
+
getCurrent(options?: O): RestResponse<Model.User>;
|
|
705
724
|
/**
|
|
706
|
-
* HTTP
|
|
707
|
-
* Java method: org.openremote.model.
|
|
725
|
+
* HTTP GET /user/userRealmRoles
|
|
726
|
+
* Java method: org.openremote.model.security.UserResource.getCurrentUserRealmRoles
|
|
708
727
|
*/
|
|
709
|
-
|
|
728
|
+
getCurrentUserRealmRoles(options?: O): RestResponse<string[]>;
|
|
710
729
|
/**
|
|
711
|
-
* HTTP GET /
|
|
712
|
-
* Java method: org.openremote.model.
|
|
730
|
+
* HTTP GET /user/userRoles/{clientId}
|
|
731
|
+
* Java method: org.openremote.model.security.UserResource.getCurrentUserClientRoles
|
|
713
732
|
*/
|
|
714
|
-
|
|
715
|
-
language?: Model.RulesetLang[];
|
|
716
|
-
fullyPopulate?: boolean;
|
|
717
|
-
}, options?: O): RestResponse<Model.RealmRuleset[]>;
|
|
733
|
+
getCurrentUserClientRoles(clientId: string, options?: O): RestResponse<string[]>;
|
|
718
734
|
/**
|
|
719
|
-
* HTTP
|
|
720
|
-
* Java method: org.openremote.model.
|
|
735
|
+
* HTTP GET /user/{realm}/disconnect/{sessionID}
|
|
736
|
+
* Java method: org.openremote.model.security.UserResource.disconnectUserSession
|
|
721
737
|
*/
|
|
722
|
-
|
|
738
|
+
disconnectUserSession(realm: string, sessionID: string, options?: O): RestResponse<void>;
|
|
723
739
|
/**
|
|
724
|
-
* HTTP
|
|
725
|
-
* Java method: org.openremote.model.
|
|
740
|
+
* HTTP PUT /user/{realm}/request-password-reset/{userId}
|
|
741
|
+
* Java method: org.openremote.model.security.UserResource.requestPasswordReset
|
|
726
742
|
*/
|
|
727
|
-
|
|
743
|
+
requestPasswordReset(realm: string, userId: string, options?: O): RestResponse<void>;
|
|
728
744
|
/**
|
|
729
|
-
* HTTP PUT /
|
|
730
|
-
* Java method: org.openremote.model.
|
|
745
|
+
* HTTP PUT /user/{realm}/reset-password/{userId}
|
|
746
|
+
* Java method: org.openremote.model.security.UserResource.updatePassword
|
|
731
747
|
*/
|
|
732
|
-
|
|
748
|
+
updatePassword(realm: string, userId: string, credential: Model.Credential, options?: O): RestResponse<void>;
|
|
733
749
|
/**
|
|
734
|
-
* HTTP
|
|
735
|
-
* Java method: org.openremote.model.
|
|
750
|
+
* HTTP GET /user/{realm}/reset-secret/{userId}
|
|
751
|
+
* Java method: org.openremote.model.security.UserResource.resetSecret
|
|
736
752
|
*/
|
|
737
|
-
|
|
753
|
+
resetSecret(realm: string, userId: string, options?: O): RestResponse<string>;
|
|
738
754
|
/**
|
|
739
|
-
* HTTP
|
|
740
|
-
* Java method: org.openremote.model.
|
|
755
|
+
* HTTP PUT /user/{realm}/roles
|
|
756
|
+
* Java method: org.openremote.model.security.UserResource.updateRoles
|
|
741
757
|
*/
|
|
742
|
-
|
|
758
|
+
updateRoles(realm: string, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
743
759
|
/**
|
|
744
|
-
* HTTP
|
|
745
|
-
* Java method: org.openremote.model.
|
|
760
|
+
* HTTP GET /user/{realm}/userRealmRoles/{userId}
|
|
761
|
+
* Java method: org.openremote.model.security.UserResource.getUserRealmRoles
|
|
746
762
|
*/
|
|
747
|
-
|
|
748
|
-
}
|
|
749
|
-
export declare class GatewayClientResourceClient<O> {
|
|
750
|
-
protected httpClient: HttpClient<O>;
|
|
751
|
-
constructor(httpClient: HttpClient<O>);
|
|
763
|
+
getUserRealmRoles(realm: string, userId: string, options?: O): RestResponse<string[]>;
|
|
752
764
|
/**
|
|
753
|
-
* HTTP
|
|
754
|
-
* Java method: org.openremote.model.
|
|
765
|
+
* HTTP PUT /user/{realm}/userRealmRoles/{userId}
|
|
766
|
+
* Java method: org.openremote.model.security.UserResource.updateUserRealmRoles
|
|
755
767
|
*/
|
|
756
|
-
|
|
757
|
-
realm?: string[];
|
|
758
|
-
}, options?: O): RestResponse<void>;
|
|
768
|
+
updateUserRealmRoles(realm: string, userId: string, roles: string[], options?: O): RestResponse<void>;
|
|
759
769
|
/**
|
|
760
|
-
* HTTP GET /
|
|
761
|
-
* Java method: org.openremote.model.
|
|
770
|
+
* HTTP GET /user/{realm}/userRoles/{userId}/{clientId}
|
|
771
|
+
* Java method: org.openremote.model.security.UserResource.getUserClientRoles
|
|
762
772
|
*/
|
|
763
|
-
|
|
773
|
+
getUserClientRoles(realm: string, userId: string, clientId: string, options?: O): RestResponse<string[]>;
|
|
764
774
|
/**
|
|
765
|
-
* HTTP
|
|
766
|
-
* Java method: org.openremote.model.
|
|
775
|
+
* HTTP PUT /user/{realm}/userRoles/{userId}/{clientId}
|
|
776
|
+
* Java method: org.openremote.model.security.UserResource.updateUserClientRoles
|
|
767
777
|
*/
|
|
768
|
-
|
|
778
|
+
updateUserClientRoles(realm: string, userId: string, clientId: string, roles: string[], options?: O): RestResponse<void>;
|
|
769
779
|
/**
|
|
770
|
-
* HTTP GET /
|
|
771
|
-
* Java method: org.openremote.model.
|
|
780
|
+
* HTTP GET /user/{realm}/userSessions/{userId}
|
|
781
|
+
* Java method: org.openremote.model.security.UserResource.getUserSessions
|
|
772
782
|
*/
|
|
773
|
-
|
|
783
|
+
getUserSessions(realm: string, userId: string, options?: O): RestResponse<Model.UserSession[]>;
|
|
774
784
|
/**
|
|
775
|
-
* HTTP
|
|
776
|
-
* Java method: org.openremote.model.
|
|
785
|
+
* HTTP POST /user/{realm}/users
|
|
786
|
+
* Java method: org.openremote.model.security.UserResource.create
|
|
777
787
|
*/
|
|
778
|
-
|
|
788
|
+
create(realm: string, user: Model.User, options?: O): RestResponse<Model.User>;
|
|
779
789
|
/**
|
|
780
|
-
* HTTP
|
|
781
|
-
* Java method: org.openremote.model.
|
|
790
|
+
* HTTP PUT /user/{realm}/users
|
|
791
|
+
* Java method: org.openremote.model.security.UserResource.update
|
|
782
792
|
*/
|
|
783
|
-
|
|
784
|
-
}
|
|
785
|
-
export declare class ConsoleResourceClient<O> {
|
|
786
|
-
protected httpClient: HttpClient<O>;
|
|
787
|
-
constructor(httpClient: HttpClient<O>);
|
|
793
|
+
update(realm: string, user: Model.User, options?: O): RestResponse<Model.User>;
|
|
788
794
|
/**
|
|
789
|
-
* HTTP
|
|
790
|
-
* Java method: org.openremote.model.
|
|
795
|
+
* HTTP DELETE /user/{realm}/users/{userId}
|
|
796
|
+
* Java method: org.openremote.model.security.UserResource.delete
|
|
791
797
|
*/
|
|
792
|
-
|
|
793
|
-
}
|
|
794
|
-
export declare class AgentResourceClient<O> {
|
|
795
|
-
protected httpClient: HttpClient<O>;
|
|
796
|
-
constructor(httpClient: HttpClient<O>);
|
|
798
|
+
delete(realm: string, userId: string, options?: O): RestResponse<void>;
|
|
797
799
|
/**
|
|
798
|
-
* HTTP GET /
|
|
799
|
-
* Java method: org.openremote.model.
|
|
800
|
+
* HTTP GET /user/{realm}/{clientId}/roles
|
|
801
|
+
* Java method: org.openremote.model.security.UserResource.getClientRoles
|
|
800
802
|
*/
|
|
801
|
-
|
|
802
|
-
realm?: string;
|
|
803
|
-
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
803
|
+
getClientRoles(realm: string, clientId: string, options?: O): RestResponse<Model.Role[]>;
|
|
804
804
|
/**
|
|
805
|
-
* HTTP
|
|
806
|
-
* Java method: org.openremote.model.
|
|
805
|
+
* HTTP PUT /user/{realm}/{clientId}/roles
|
|
806
|
+
* Java method: org.openremote.model.security.UserResource.updateClientRoles
|
|
807
807
|
*/
|
|
808
|
-
|
|
809
|
-
realm?: string;
|
|
810
|
-
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
808
|
+
updateClientRoles(realm: string, clientId: string, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
811
809
|
/**
|
|
812
|
-
* HTTP GET /
|
|
813
|
-
* Java method: org.openremote.model.
|
|
810
|
+
* HTTP GET /user/{realm}/{userId}
|
|
811
|
+
* Java method: org.openremote.model.security.UserResource.get
|
|
814
812
|
*/
|
|
815
|
-
|
|
816
|
-
parentId?: string;
|
|
817
|
-
realm?: string;
|
|
818
|
-
}, options?: O): RestResponse<Model.Agent[]>;
|
|
813
|
+
get(realm: string, userId: string, options?: O): RestResponse<Model.User>;
|
|
819
814
|
}
|
|
820
|
-
export declare class
|
|
815
|
+
export declare class AssetDatapointResourceClient<O> {
|
|
821
816
|
protected httpClient: HttpClient<O>;
|
|
822
817
|
constructor(httpClient: HttpClient<O>);
|
|
823
818
|
/**
|
|
824
|
-
* HTTP GET /
|
|
825
|
-
* Java method: org.openremote.model.
|
|
826
|
-
*/
|
|
827
|
-
getAssetDescriptors(queryParams?: {
|
|
828
|
-
parentId?: string;
|
|
829
|
-
parentType?: string;
|
|
830
|
-
}, options?: O): RestResponse<Model.AssetDescriptor[]>;
|
|
831
|
-
/**
|
|
832
|
-
* HTTP GET /model/assetInfo/{assetType}
|
|
833
|
-
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfo
|
|
834
|
-
*/
|
|
835
|
-
getAssetInfo(assetType: string, queryParams?: {
|
|
836
|
-
parentId?: string;
|
|
837
|
-
}, options?: O): RestResponse<Model.AssetTypeInfo>;
|
|
838
|
-
/**
|
|
839
|
-
* HTTP GET /model/assetInfos
|
|
840
|
-
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfos
|
|
819
|
+
* HTTP GET /asset/datapoint/export
|
|
820
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport
|
|
841
821
|
*/
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
822
|
+
getDatapointExport(queryParams?: {
|
|
823
|
+
attributeRefs?: string;
|
|
824
|
+
fromTimestamp?: number;
|
|
825
|
+
toTimestamp?: number;
|
|
826
|
+
}, options?: O): RestResponse<any>;
|
|
846
827
|
/**
|
|
847
|
-
* HTTP GET /
|
|
848
|
-
* Java method: org.openremote.model.
|
|
828
|
+
* HTTP GET /asset/datapoint/periods
|
|
829
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
|
|
849
830
|
*/
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
}>;
|
|
831
|
+
getDatapointPeriod(queryParams?: {
|
|
832
|
+
assetId?: string;
|
|
833
|
+
attributeName?: string;
|
|
834
|
+
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
855
835
|
/**
|
|
856
|
-
* HTTP
|
|
857
|
-
* Java method: org.openremote.model.
|
|
836
|
+
* HTTP POST /asset/datapoint/{assetId}/{attributeName}
|
|
837
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
|
|
858
838
|
*/
|
|
859
|
-
|
|
860
|
-
parentId?: string;
|
|
861
|
-
}, options?: O): RestResponse<{
|
|
862
|
-
[index: string]: Model.ValueDescriptor;
|
|
863
|
-
}>;
|
|
839
|
+
getDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
864
840
|
}
|
|
865
841
|
export declare class RealmResourceClient<O> {
|
|
866
842
|
protected httpClient: HttpClient<O>;
|
|
@@ -896,51 +872,75 @@ export declare class RealmResourceClient<O> {
|
|
|
896
872
|
*/
|
|
897
873
|
update(name: string, realm: Model.Realm, options?: O): RestResponse<void>;
|
|
898
874
|
}
|
|
875
|
+
export declare class ProvisioningResourceClient<O> {
|
|
876
|
+
protected httpClient: HttpClient<O>;
|
|
877
|
+
constructor(httpClient: HttpClient<O>);
|
|
878
|
+
/**
|
|
879
|
+
* HTTP POST /provisioning
|
|
880
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
|
|
881
|
+
*/
|
|
882
|
+
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
883
|
+
/**
|
|
884
|
+
* HTTP GET /provisioning
|
|
885
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
886
|
+
*/
|
|
887
|
+
getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
|
|
888
|
+
/**
|
|
889
|
+
* HTTP DELETE /provisioning/{id}
|
|
890
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
|
|
891
|
+
*/
|
|
892
|
+
deleteProvisioningConfig(id: number, options?: O): RestResponse<void>;
|
|
893
|
+
/**
|
|
894
|
+
* HTTP PUT /provisioning/{id}
|
|
895
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
|
|
896
|
+
*/
|
|
897
|
+
updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
|
|
898
|
+
}
|
|
899
899
|
export type RestResponse<R> = Promise<Axios.GenericAxiosResponse<R>>;
|
|
900
900
|
export declare class ApiClient {
|
|
901
|
+
protected _assetModelResource: AxiosAssetModelResourceClient;
|
|
901
902
|
protected _assetResource: AxiosAssetResourceClient;
|
|
902
|
-
protected _configurationResource: AxiosConfigurationResourceClient;
|
|
903
|
-
protected _appResource: AxiosAppResourceClient;
|
|
904
|
-
protected _userResource: AxiosUserResourceClient;
|
|
905
|
-
protected _flowResource: AxiosFlowResourceClient;
|
|
906
903
|
protected _statusResource: AxiosStatusResourceClient;
|
|
907
|
-
protected
|
|
908
|
-
protected
|
|
909
|
-
protected
|
|
910
|
-
protected _alarmResource: AxiosAlarmResourceClient;
|
|
911
|
-
protected _assetPredictedDatapointResource: AxiosAssetPredictedDatapointResourceClient;
|
|
912
|
-
protected _mapResource: AxiosMapResourceClient;
|
|
904
|
+
protected _configurationResource: AxiosConfigurationResourceClient;
|
|
905
|
+
protected _agentResource: AxiosAgentResourceClient;
|
|
906
|
+
protected _gatewayClientResource: AxiosGatewayClientResourceClient;
|
|
913
907
|
protected _syslogResource: AxiosSyslogResourceClient;
|
|
914
|
-
protected _dashboardResource: AxiosDashboardResourceClient;
|
|
915
|
-
protected _notificationResource: AxiosNotificationResourceClient;
|
|
916
908
|
protected _rulesResource: AxiosRulesResourceClient;
|
|
917
|
-
protected _gatewayClientResource: AxiosGatewayClientResourceClient;
|
|
918
909
|
protected _consoleResource: AxiosConsoleResourceClient;
|
|
919
|
-
protected
|
|
920
|
-
protected
|
|
910
|
+
protected _assetPredictedDatapointResource: AxiosAssetPredictedDatapointResourceClient;
|
|
911
|
+
protected _alarmResource: AxiosAlarmResourceClient;
|
|
912
|
+
protected _notificationResource: AxiosNotificationResourceClient;
|
|
913
|
+
protected _gatewayServiceResource: AxiosGatewayServiceResourceClient;
|
|
914
|
+
protected _mapResource: AxiosMapResourceClient;
|
|
915
|
+
protected _flowResource: AxiosFlowResourceClient;
|
|
916
|
+
protected _appResource: AxiosAppResourceClient;
|
|
917
|
+
protected _dashboardResource: AxiosDashboardResourceClient;
|
|
918
|
+
protected _userResource: AxiosUserResourceClient;
|
|
919
|
+
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
921
920
|
protected _realmResource: AxiosRealmResourceClient;
|
|
921
|
+
protected _provisioningResource: AxiosProvisioningResourceClient;
|
|
922
922
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
923
|
+
get AssetModelResource(): AxiosAssetModelResourceClient;
|
|
923
924
|
get AssetResource(): AxiosAssetResourceClient;
|
|
924
|
-
get ConfigurationResource(): AxiosConfigurationResourceClient;
|
|
925
|
-
get AppResource(): AxiosAppResourceClient;
|
|
926
|
-
get UserResource(): AxiosUserResourceClient;
|
|
927
|
-
get FlowResource(): AxiosFlowResourceClient;
|
|
928
925
|
get StatusResource(): AxiosStatusResourceClient;
|
|
929
|
-
get
|
|
930
|
-
get
|
|
931
|
-
get
|
|
932
|
-
get AlarmResource(): AxiosAlarmResourceClient;
|
|
933
|
-
get AssetPredictedDatapointResource(): AxiosAssetPredictedDatapointResourceClient;
|
|
934
|
-
get MapResource(): AxiosMapResourceClient;
|
|
926
|
+
get ConfigurationResource(): AxiosConfigurationResourceClient;
|
|
927
|
+
get AgentResource(): AxiosAgentResourceClient;
|
|
928
|
+
get GatewayClientResource(): AxiosGatewayClientResourceClient;
|
|
935
929
|
get SyslogResource(): AxiosSyslogResourceClient;
|
|
936
|
-
get DashboardResource(): AxiosDashboardResourceClient;
|
|
937
|
-
get NotificationResource(): AxiosNotificationResourceClient;
|
|
938
930
|
get RulesResource(): AxiosRulesResourceClient;
|
|
939
|
-
get GatewayClientResource(): AxiosGatewayClientResourceClient;
|
|
940
931
|
get ConsoleResource(): AxiosConsoleResourceClient;
|
|
941
|
-
get
|
|
942
|
-
get
|
|
932
|
+
get AssetPredictedDatapointResource(): AxiosAssetPredictedDatapointResourceClient;
|
|
933
|
+
get AlarmResource(): AxiosAlarmResourceClient;
|
|
934
|
+
get NotificationResource(): AxiosNotificationResourceClient;
|
|
935
|
+
get GatewayServiceResource(): AxiosGatewayServiceResourceClient;
|
|
936
|
+
get MapResource(): AxiosMapResourceClient;
|
|
937
|
+
get FlowResource(): AxiosFlowResourceClient;
|
|
938
|
+
get AppResource(): AxiosAppResourceClient;
|
|
939
|
+
get DashboardResource(): AxiosDashboardResourceClient;
|
|
940
|
+
get UserResource(): AxiosUserResourceClient;
|
|
941
|
+
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
943
942
|
get RealmResource(): AxiosRealmResourceClient;
|
|
943
|
+
get ProvisioningResource(): AxiosProvisioningResourceClient;
|
|
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
|
|
952
|
-
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
953
|
-
}
|
|
954
|
-
export declare class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {
|
|
951
|
+
export declare class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {
|
|
955
952
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
956
953
|
}
|
|
957
|
-
export declare class
|
|
954
|
+
export declare class AxiosAssetResourceClient extends AssetResourceClient<Axios.AxiosRequestConfig> {
|
|
958
955
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
959
956
|
}
|
|
960
|
-
export declare class
|
|
957
|
+
export declare class AxiosStatusResourceClient extends StatusResourceClient<Axios.AxiosRequestConfig> {
|
|
961
958
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
962
959
|
}
|
|
963
|
-
export declare class
|
|
960
|
+
export declare class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {
|
|
964
961
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
965
962
|
}
|
|
966
|
-
export declare class
|
|
963
|
+
export declare class AxiosAgentResourceClient extends AgentResourceClient<Axios.AxiosRequestConfig> {
|
|
967
964
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
968
965
|
}
|
|
969
|
-
export declare class
|
|
966
|
+
export declare class AxiosGatewayClientResourceClient extends GatewayClientResourceClient<Axios.AxiosRequestConfig> {
|
|
970
967
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
971
968
|
}
|
|
972
|
-
export declare class
|
|
969
|
+
export declare class AxiosSyslogResourceClient extends SyslogResourceClient<Axios.AxiosRequestConfig> {
|
|
973
970
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
974
971
|
}
|
|
975
|
-
export declare class
|
|
972
|
+
export declare class AxiosRulesResourceClient extends RulesResourceClient<Axios.AxiosRequestConfig> {
|
|
976
973
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
977
974
|
}
|
|
978
|
-
export declare class
|
|
975
|
+
export declare class AxiosConsoleResourceClient extends ConsoleResourceClient<Axios.AxiosRequestConfig> {
|
|
979
976
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
980
977
|
}
|
|
981
978
|
export declare class AxiosAssetPredictedDatapointResourceClient extends AssetPredictedDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
982
979
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
983
980
|
}
|
|
984
|
-
export declare class
|
|
981
|
+
export declare class AxiosAlarmResourceClient extends AlarmResourceClient<Axios.AxiosRequestConfig> {
|
|
985
982
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
986
983
|
}
|
|
987
|
-
export declare class
|
|
984
|
+
export declare class AxiosNotificationResourceClient extends NotificationResourceClient<Axios.AxiosRequestConfig> {
|
|
988
985
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
989
986
|
}
|
|
990
|
-
export declare class
|
|
987
|
+
export declare class AxiosGatewayServiceResourceClient extends GatewayServiceResourceClient<Axios.AxiosRequestConfig> {
|
|
991
988
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
992
989
|
}
|
|
993
|
-
export declare class
|
|
990
|
+
export declare class AxiosMapResourceClient extends MapResourceClient<Axios.AxiosRequestConfig> {
|
|
994
991
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
995
992
|
}
|
|
996
|
-
export declare class
|
|
993
|
+
export declare class AxiosFlowResourceClient extends FlowResourceClient<Axios.AxiosRequestConfig> {
|
|
997
994
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
998
995
|
}
|
|
999
|
-
export declare class
|
|
996
|
+
export declare class AxiosAppResourceClient extends AppResourceClient<Axios.AxiosRequestConfig> {
|
|
1000
997
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1001
998
|
}
|
|
1002
|
-
export declare class
|
|
999
|
+
export declare class AxiosDashboardResourceClient extends DashboardResourceClient<Axios.AxiosRequestConfig> {
|
|
1003
1000
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1004
1001
|
}
|
|
1005
|
-
export declare class
|
|
1002
|
+
export declare class AxiosUserResourceClient extends UserResourceClient<Axios.AxiosRequestConfig> {
|
|
1006
1003
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1007
1004
|
}
|
|
1008
|
-
export declare class
|
|
1005
|
+
export declare class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
1009
1006
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1010
1007
|
}
|
|
1011
1008
|
export declare class AxiosRealmResourceClient extends RealmResourceClient<Axios.AxiosRequestConfig> {
|
|
1012
1009
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1013
1010
|
}
|
|
1011
|
+
export declare class AxiosProvisioningResourceClient extends ProvisioningResourceClient<Axios.AxiosRequestConfig> {
|
|
1012
|
+
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1013
|
+
}
|