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