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