@openremote/rest 1.12.0-snapshot.20251204103102 → 1.12.0-snapshot.20251209124232
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 +477 -477
- 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,59 +9,6 @@ export interface HttpClient<O> {
|
|
|
9
9
|
options?: O;
|
|
10
10
|
}): RestResponse<R>;
|
|
11
11
|
}
|
|
12
|
-
export declare class AlarmResourceClient<O> {
|
|
13
|
-
protected httpClient: HttpClient<O>;
|
|
14
|
-
constructor(httpClient: HttpClient<O>);
|
|
15
|
-
/**
|
|
16
|
-
* HTTP POST /alarm
|
|
17
|
-
* Java method: org.openremote.model.alarm.AlarmResource.createAlarm
|
|
18
|
-
*/
|
|
19
|
-
createAlarm(alarm: Model.Alarm, queryParams?: {
|
|
20
|
-
assetIds?: string[];
|
|
21
|
-
}, options?: O): RestResponse<Model.SentAlarm>;
|
|
22
|
-
/**
|
|
23
|
-
* HTTP GET /alarm
|
|
24
|
-
* Java method: org.openremote.model.alarm.AlarmResource.getAlarms
|
|
25
|
-
*/
|
|
26
|
-
getAlarms(queryParams?: {
|
|
27
|
-
realm?: string;
|
|
28
|
-
status?: Model.AlarmStatus;
|
|
29
|
-
assetId?: string;
|
|
30
|
-
assigneeId?: string;
|
|
31
|
-
}, options?: O): RestResponse<Model.SentAlarm[]>;
|
|
32
|
-
/**
|
|
33
|
-
* HTTP DELETE /alarm
|
|
34
|
-
* Java method: org.openremote.model.alarm.AlarmResource.removeAlarms
|
|
35
|
-
*/
|
|
36
|
-
removeAlarms(ids: number[], options?: O): RestResponse<void>;
|
|
37
|
-
/**
|
|
38
|
-
* HTTP PUT /alarm/assets
|
|
39
|
-
* Java method: org.openremote.model.alarm.AlarmResource.setAssetLinks
|
|
40
|
-
*/
|
|
41
|
-
setAssetLinks(links: Model.AlarmAssetLink[], options?: O): RestResponse<void>;
|
|
42
|
-
/**
|
|
43
|
-
* HTTP GET /alarm/{alarmId}
|
|
44
|
-
* Java method: org.openremote.model.alarm.AlarmResource.getAlarm
|
|
45
|
-
*/
|
|
46
|
-
getAlarm(alarmId: number, options?: O): RestResponse<Model.SentAlarm>;
|
|
47
|
-
/**
|
|
48
|
-
* HTTP DELETE /alarm/{alarmId}
|
|
49
|
-
* Java method: org.openremote.model.alarm.AlarmResource.removeAlarm
|
|
50
|
-
*/
|
|
51
|
-
removeAlarm(alarmId: number, options?: O): RestResponse<void>;
|
|
52
|
-
/**
|
|
53
|
-
* HTTP PUT /alarm/{alarmId}
|
|
54
|
-
* Java method: org.openremote.model.alarm.AlarmResource.updateAlarm
|
|
55
|
-
*/
|
|
56
|
-
updateAlarm(alarmId: number, alarm: Model.SentAlarm, options?: O): RestResponse<void>;
|
|
57
|
-
/**
|
|
58
|
-
* HTTP GET /alarm/{alarmId}/assets
|
|
59
|
-
* Java method: org.openremote.model.alarm.AlarmResource.getAssetLinks
|
|
60
|
-
*/
|
|
61
|
-
getAssetLinks(alarmId: number, queryParams?: {
|
|
62
|
-
realm?: string;
|
|
63
|
-
}, options?: O): RestResponse<Model.AlarmAssetLink[]>;
|
|
64
|
-
}
|
|
65
12
|
export declare class AssetModelResourceClient<O> {
|
|
66
13
|
protected httpClient: HttpClient<O>;
|
|
67
14
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -115,32 +62,6 @@ export declare class AssetModelResourceClient<O> {
|
|
|
115
62
|
[index: string]: Model.ValueDescriptor;
|
|
116
63
|
}>;
|
|
117
64
|
}
|
|
118
|
-
export declare class AssetDatapointResourceClient<O> {
|
|
119
|
-
protected httpClient: HttpClient<O>;
|
|
120
|
-
constructor(httpClient: HttpClient<O>);
|
|
121
|
-
/**
|
|
122
|
-
* HTTP GET /asset/datapoint/export
|
|
123
|
-
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport
|
|
124
|
-
*/
|
|
125
|
-
getDatapointExport(queryParams?: {
|
|
126
|
-
attributeRefs?: string;
|
|
127
|
-
fromTimestamp?: number;
|
|
128
|
-
toTimestamp?: number;
|
|
129
|
-
}, options?: O): RestResponse<any>;
|
|
130
|
-
/**
|
|
131
|
-
* HTTP GET /asset/datapoint/periods
|
|
132
|
-
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
|
|
133
|
-
*/
|
|
134
|
-
getDatapointPeriod(queryParams?: {
|
|
135
|
-
assetId?: string;
|
|
136
|
-
attributeName?: string;
|
|
137
|
-
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
138
|
-
/**
|
|
139
|
-
* HTTP POST /asset/datapoint/{assetId}/{attributeName}
|
|
140
|
-
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
|
|
141
|
-
*/
|
|
142
|
-
getDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
143
|
-
}
|
|
144
65
|
export declare class SyslogResourceClient<O> {
|
|
145
66
|
protected httpClient: HttpClient<O>;
|
|
146
67
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -173,65 +94,45 @@ export declare class SyslogResourceClient<O> {
|
|
|
173
94
|
subCategory?: string[];
|
|
174
95
|
}, options?: O): RestResponse<any>;
|
|
175
96
|
}
|
|
176
|
-
export declare class
|
|
97
|
+
export declare class AgentResourceClient<O> {
|
|
177
98
|
protected httpClient: HttpClient<O>;
|
|
178
99
|
constructor(httpClient: HttpClient<O>);
|
|
179
100
|
/**
|
|
180
|
-
* HTTP
|
|
181
|
-
* Java method: org.openremote.model.
|
|
182
|
-
*/
|
|
183
|
-
create(realm: Model.Realm, options?: O): RestResponse<void>;
|
|
184
|
-
/**
|
|
185
|
-
* HTTP GET /realm
|
|
186
|
-
* Java method: org.openremote.model.security.RealmResource.getAll
|
|
187
|
-
*/
|
|
188
|
-
getAll(options?: O): RestResponse<Model.Realm[]>;
|
|
189
|
-
/**
|
|
190
|
-
* HTTP GET /realm/accessible
|
|
191
|
-
* Java method: org.openremote.model.security.RealmResource.getAccessible
|
|
192
|
-
*/
|
|
193
|
-
getAccessible(options?: O): RestResponse<Model.Realm[]>;
|
|
194
|
-
/**
|
|
195
|
-
* HTTP DELETE /realm/{name}
|
|
196
|
-
* Java method: org.openremote.model.security.RealmResource.delete
|
|
101
|
+
* HTTP GET /agent/assetDiscovery/{agentId}
|
|
102
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery
|
|
197
103
|
*/
|
|
198
|
-
|
|
104
|
+
doProtocolAssetDiscovery(agentId: string, queryParams?: {
|
|
105
|
+
realm?: string;
|
|
106
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
199
107
|
/**
|
|
200
|
-
* HTTP
|
|
201
|
-
* Java method: org.openremote.model.
|
|
108
|
+
* HTTP POST /agent/assetImport/{agentId}
|
|
109
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport
|
|
202
110
|
*/
|
|
203
|
-
|
|
111
|
+
doProtocolAssetImport(agentId: string, fileInfo: Model.FileInfo, queryParams?: {
|
|
112
|
+
realm?: string;
|
|
113
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
204
114
|
/**
|
|
205
|
-
* HTTP
|
|
206
|
-
* Java method: org.openremote.model.
|
|
115
|
+
* HTTP GET /agent/instanceDiscovery/{agentType}
|
|
116
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery
|
|
207
117
|
*/
|
|
208
|
-
|
|
118
|
+
doProtocolInstanceDiscovery(agentType: string, queryParams?: {
|
|
119
|
+
parentId?: string;
|
|
120
|
+
realm?: string;
|
|
121
|
+
}, options?: O): RestResponse<Model.Agent[]>;
|
|
209
122
|
}
|
|
210
|
-
export declare class
|
|
123
|
+
export declare class AssetPredictedDatapointResourceClient<O> {
|
|
211
124
|
protected httpClient: HttpClient<O>;
|
|
212
125
|
constructor(httpClient: HttpClient<O>);
|
|
213
126
|
/**
|
|
214
|
-
* HTTP
|
|
215
|
-
* Java method: org.openremote.model.
|
|
216
|
-
*/
|
|
217
|
-
getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
218
|
-
/**
|
|
219
|
-
* HTTP PUT /configuration/manager
|
|
220
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.update
|
|
221
|
-
*/
|
|
222
|
-
update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
223
|
-
/**
|
|
224
|
-
* HTTP POST /configuration/manager/file
|
|
225
|
-
* Java method: org.openremote.model.manager.ConfigurationResource.fileUpload
|
|
127
|
+
* HTTP POST /asset/predicted/{assetId}/{attributeName}
|
|
128
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints
|
|
226
129
|
*/
|
|
227
|
-
|
|
228
|
-
path?: string;
|
|
229
|
-
}, options?: O): RestResponse<string>;
|
|
130
|
+
getPredictedDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
230
131
|
/**
|
|
231
|
-
* HTTP
|
|
232
|
-
* Java method: org.openremote.model.
|
|
132
|
+
* HTTP PUT /asset/predicted/{assetId}/{attributeName}
|
|
133
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
|
|
233
134
|
*/
|
|
234
|
-
|
|
135
|
+
writePredictedDatapoints(assetId: string, attributeName: string, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void>;
|
|
235
136
|
}
|
|
236
137
|
export declare class ConsoleResourceClient<O> {
|
|
237
138
|
protected httpClient: HttpClient<O>;
|
|
@@ -242,6 +143,25 @@ export declare class ConsoleResourceClient<O> {
|
|
|
242
143
|
*/
|
|
243
144
|
register(consoleRegistration: Model.ConsoleRegistration, options?: O): RestResponse<Model.ConsoleRegistration>;
|
|
244
145
|
}
|
|
146
|
+
export declare class AppResourceClient<O> {
|
|
147
|
+
protected httpClient: HttpClient<O>;
|
|
148
|
+
constructor(httpClient: HttpClient<O>);
|
|
149
|
+
/**
|
|
150
|
+
* HTTP GET /apps
|
|
151
|
+
* Java method: org.openremote.model.apps.AppResource.getApps
|
|
152
|
+
*/
|
|
153
|
+
getApps(options?: O): RestResponse<string[]>;
|
|
154
|
+
/**
|
|
155
|
+
* HTTP GET /apps/consoleConfig
|
|
156
|
+
* Java method: org.openremote.model.apps.AppResource.getConsoleConfig
|
|
157
|
+
*/
|
|
158
|
+
getConsoleConfig(options?: O): RestResponse<any>;
|
|
159
|
+
/**
|
|
160
|
+
* HTTP GET /apps/info
|
|
161
|
+
* Java method: org.openremote.model.apps.AppResource.getAppInfos
|
|
162
|
+
*/
|
|
163
|
+
getAppInfos(options?: O): RestResponse<any>;
|
|
164
|
+
}
|
|
245
165
|
export declare class FlowResourceClient<O> {
|
|
246
166
|
protected httpClient: HttpClient<O>;
|
|
247
167
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -261,166 +181,102 @@ export declare class FlowResourceClient<O> {
|
|
|
261
181
|
*/
|
|
262
182
|
getAllNodeDefinitionsByType(type: Model.NodeType, options?: O): RestResponse<Model.Node[]>;
|
|
263
183
|
}
|
|
264
|
-
export declare class
|
|
184
|
+
export declare class AlarmResourceClient<O> {
|
|
265
185
|
protected httpClient: HttpClient<O>;
|
|
266
186
|
constructor(httpClient: HttpClient<O>);
|
|
267
187
|
/**
|
|
268
|
-
* HTTP POST /
|
|
269
|
-
* Java method: org.openremote.model.
|
|
188
|
+
* HTTP POST /alarm
|
|
189
|
+
* Java method: org.openremote.model.alarm.AlarmResource.createAlarm
|
|
270
190
|
*/
|
|
271
|
-
|
|
191
|
+
createAlarm(alarm: Model.Alarm, queryParams?: {
|
|
192
|
+
assetIds?: string[];
|
|
193
|
+
}, options?: O): RestResponse<Model.SentAlarm>;
|
|
272
194
|
/**
|
|
273
|
-
* HTTP GET /
|
|
274
|
-
* Java method: org.openremote.model.
|
|
195
|
+
* HTTP GET /alarm
|
|
196
|
+
* Java method: org.openremote.model.alarm.AlarmResource.getAlarms
|
|
275
197
|
*/
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
198
|
+
getAlarms(queryParams?: {
|
|
199
|
+
realm?: string;
|
|
200
|
+
status?: Model.AlarmStatus;
|
|
201
|
+
assetId?: string;
|
|
202
|
+
assigneeId?: string;
|
|
203
|
+
}, options?: O): RestResponse<Model.SentAlarm[]>;
|
|
280
204
|
/**
|
|
281
|
-
* HTTP
|
|
282
|
-
* Java method: org.openremote.model.
|
|
205
|
+
* HTTP DELETE /alarm
|
|
206
|
+
* Java method: org.openremote.model.alarm.AlarmResource.removeAlarms
|
|
283
207
|
*/
|
|
284
|
-
|
|
208
|
+
removeAlarms(ids: number[], options?: O): RestResponse<void>;
|
|
285
209
|
/**
|
|
286
|
-
* HTTP
|
|
287
|
-
* Java method: org.openremote.model.
|
|
210
|
+
* HTTP PUT /alarm/assets
|
|
211
|
+
* Java method: org.openremote.model.alarm.AlarmResource.setAssetLinks
|
|
288
212
|
*/
|
|
289
|
-
|
|
290
|
-
language?: Model.RulesetLang[];
|
|
291
|
-
fullyPopulate?: boolean;
|
|
292
|
-
}, options?: O): RestResponse<Model.AssetRuleset[]>;
|
|
213
|
+
setAssetLinks(links: Model.AlarmAssetLink[], options?: O): RestResponse<void>;
|
|
293
214
|
/**
|
|
294
|
-
* HTTP
|
|
295
|
-
* Java method: org.openremote.model.
|
|
215
|
+
* HTTP GET /alarm/{alarmId}
|
|
216
|
+
* Java method: org.openremote.model.alarm.AlarmResource.getAlarm
|
|
296
217
|
*/
|
|
297
|
-
|
|
218
|
+
getAlarm(alarmId: number, options?: O): RestResponse<Model.SentAlarm>;
|
|
298
219
|
/**
|
|
299
|
-
* HTTP
|
|
300
|
-
* Java method: org.openremote.model.
|
|
220
|
+
* HTTP DELETE /alarm/{alarmId}
|
|
221
|
+
* Java method: org.openremote.model.alarm.AlarmResource.removeAlarm
|
|
301
222
|
*/
|
|
302
|
-
|
|
223
|
+
removeAlarm(alarmId: number, options?: O): RestResponse<void>;
|
|
303
224
|
/**
|
|
304
|
-
* HTTP PUT /
|
|
305
|
-
* Java method: org.openremote.model.
|
|
225
|
+
* HTTP PUT /alarm/{alarmId}
|
|
226
|
+
* Java method: org.openremote.model.alarm.AlarmResource.updateAlarm
|
|
306
227
|
*/
|
|
307
|
-
|
|
228
|
+
updateAlarm(alarmId: number, alarm: Model.SentAlarm, options?: O): RestResponse<void>;
|
|
308
229
|
/**
|
|
309
|
-
* HTTP GET /
|
|
310
|
-
* Java method: org.openremote.model.
|
|
230
|
+
* HTTP GET /alarm/{alarmId}/assets
|
|
231
|
+
* Java method: org.openremote.model.alarm.AlarmResource.getAssetLinks
|
|
311
232
|
*/
|
|
312
|
-
|
|
233
|
+
getAssetLinks(alarmId: number, queryParams?: {
|
|
234
|
+
realm?: string;
|
|
235
|
+
}, options?: O): RestResponse<Model.AlarmAssetLink[]>;
|
|
236
|
+
}
|
|
237
|
+
export declare class StatusResourceClient<O> {
|
|
238
|
+
protected httpClient: HttpClient<O>;
|
|
239
|
+
constructor(httpClient: HttpClient<O>);
|
|
313
240
|
/**
|
|
314
|
-
* HTTP GET /
|
|
315
|
-
* Java method: org.openremote.model.
|
|
241
|
+
* HTTP GET /health
|
|
242
|
+
* Java method: org.openremote.model.system.StatusResource.getHealthStatus
|
|
316
243
|
*/
|
|
317
|
-
|
|
244
|
+
getHealthStatus(options?: O): RestResponse<{
|
|
245
|
+
[index: string]: any;
|
|
246
|
+
}>;
|
|
318
247
|
/**
|
|
319
|
-
* HTTP GET /
|
|
320
|
-
* Java method: org.openremote.model.
|
|
248
|
+
* HTTP GET /info
|
|
249
|
+
* Java method: org.openremote.model.system.StatusResource.getInfo
|
|
321
250
|
*/
|
|
322
|
-
|
|
251
|
+
getInfo(options?: O): RestResponse<{
|
|
252
|
+
[index: string]: any;
|
|
253
|
+
}>;
|
|
254
|
+
}
|
|
255
|
+
export declare class ConfigurationResourceClient<O> {
|
|
256
|
+
protected httpClient: HttpClient<O>;
|
|
257
|
+
constructor(httpClient: HttpClient<O>);
|
|
323
258
|
/**
|
|
324
|
-
* HTTP GET /
|
|
325
|
-
* Java method: org.openremote.model.
|
|
326
|
-
*/
|
|
327
|
-
getRealmEngineInfo(realm: string, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
328
|
-
/**
|
|
329
|
-
* HTTP POST /rules/realm
|
|
330
|
-
* Java method: org.openremote.model.rules.RulesResource.createRealmRuleset
|
|
331
|
-
*/
|
|
332
|
-
createRealmRuleset(ruleset: Model.RealmRuleset, options?: O): RestResponse<number>;
|
|
333
|
-
/**
|
|
334
|
-
* HTTP GET /rules/realm/for/{realm}
|
|
335
|
-
* Java method: org.openremote.model.rules.RulesResource.getRealmRulesets
|
|
336
|
-
*/
|
|
337
|
-
getRealmRulesets(realm: string, queryParams?: {
|
|
338
|
-
language?: Model.RulesetLang[];
|
|
339
|
-
fullyPopulate?: boolean;
|
|
340
|
-
}, options?: O): RestResponse<Model.RealmRuleset[]>;
|
|
341
|
-
/**
|
|
342
|
-
* HTTP DELETE /rules/realm/{id}
|
|
343
|
-
* Java method: org.openremote.model.rules.RulesResource.deleteRealmRuleset
|
|
344
|
-
*/
|
|
345
|
-
deleteRealmRuleset(id: number, options?: O): RestResponse<void>;
|
|
346
|
-
/**
|
|
347
|
-
* HTTP GET /rules/realm/{id}
|
|
348
|
-
* Java method: org.openremote.model.rules.RulesResource.getRealmRuleset
|
|
349
|
-
*/
|
|
350
|
-
getRealmRuleset(id: number, options?: O): RestResponse<Model.RealmRuleset>;
|
|
351
|
-
/**
|
|
352
|
-
* HTTP PUT /rules/realm/{id}
|
|
353
|
-
* Java method: org.openremote.model.rules.RulesResource.updateRealmRuleset
|
|
354
|
-
*/
|
|
355
|
-
updateRealmRuleset(id: number, ruleset: Model.RealmRuleset, options?: O): RestResponse<void>;
|
|
356
|
-
/**
|
|
357
|
-
* HTTP DELETE /rules/{id}
|
|
358
|
-
* Java method: org.openremote.model.rules.RulesResource.deleteGlobalRuleset
|
|
359
|
-
*/
|
|
360
|
-
deleteGlobalRuleset(id: number, options?: O): RestResponse<void>;
|
|
361
|
-
/**
|
|
362
|
-
* HTTP GET /rules/{id}
|
|
363
|
-
* Java method: org.openremote.model.rules.RulesResource.getGlobalRuleset
|
|
364
|
-
*/
|
|
365
|
-
getGlobalRuleset(id: number, options?: O): RestResponse<Model.GlobalRuleset>;
|
|
366
|
-
/**
|
|
367
|
-
* HTTP PUT /rules/{id}
|
|
368
|
-
* Java method: org.openremote.model.rules.RulesResource.updateGlobalRuleset
|
|
369
|
-
*/
|
|
370
|
-
updateGlobalRuleset(id: number, ruleset: Model.GlobalRuleset, options?: O): RestResponse<void>;
|
|
371
|
-
}
|
|
372
|
-
export declare class MapResourceClient<O> {
|
|
373
|
-
protected httpClient: HttpClient<O>;
|
|
374
|
-
constructor(httpClient: HttpClient<O>);
|
|
375
|
-
/**
|
|
376
|
-
* HTTP GET /map
|
|
377
|
-
* Java method: org.openremote.model.map.MapResource.getSettings
|
|
378
|
-
*/
|
|
379
|
-
getSettings(options?: O): RestResponse<{
|
|
380
|
-
[id: string]: unknown;
|
|
381
|
-
}>;
|
|
382
|
-
/**
|
|
383
|
-
* HTTP PUT /map
|
|
384
|
-
* Java method: org.openremote.model.map.MapResource.saveSettings
|
|
385
|
-
*/
|
|
386
|
-
saveSettings(mapConfig: Model.MapConfig, options?: O): RestResponse<{
|
|
387
|
-
[id: string]: unknown;
|
|
388
|
-
}>;
|
|
389
|
-
/**
|
|
390
|
-
* HTTP DELETE /map/deleteMap
|
|
391
|
-
* Java method: org.openremote.model.map.MapResource.deleteMap
|
|
392
|
-
*/
|
|
393
|
-
deleteMap(options?: O): RestResponse<{
|
|
394
|
-
[id: string]: unknown;
|
|
395
|
-
}>;
|
|
396
|
-
/**
|
|
397
|
-
* HTTP GET /map/getCustomMapInfo
|
|
398
|
-
* Java method: org.openremote.model.map.MapResource.getCustomMapInfo
|
|
259
|
+
* HTTP GET /configuration/manager
|
|
260
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfig
|
|
399
261
|
*/
|
|
400
|
-
|
|
401
|
-
[id: string]: unknown;
|
|
402
|
-
}>;
|
|
262
|
+
getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
403
263
|
/**
|
|
404
|
-
* HTTP
|
|
405
|
-
* Java method: org.openremote.model.
|
|
264
|
+
* HTTP PUT /configuration/manager
|
|
265
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.update
|
|
406
266
|
*/
|
|
407
|
-
|
|
408
|
-
[id: string]: unknown;
|
|
409
|
-
}>;
|
|
267
|
+
update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig>;
|
|
410
268
|
/**
|
|
411
|
-
* HTTP
|
|
412
|
-
* Java method: org.openremote.model.
|
|
269
|
+
* HTTP POST /configuration/manager/file
|
|
270
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.fileUpload
|
|
413
271
|
*/
|
|
414
|
-
|
|
272
|
+
fileUpload(fileInfo: Model.FileInfo, queryParams?: {
|
|
273
|
+
path?: string;
|
|
274
|
+
}, options?: O): RestResponse<string>;
|
|
415
275
|
/**
|
|
416
|
-
* HTTP
|
|
417
|
-
* Java method: org.openremote.model.
|
|
276
|
+
* HTTP GET /configuration/manager/image/{filename: .+}
|
|
277
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfigImage
|
|
418
278
|
*/
|
|
419
|
-
|
|
420
|
-
filename?: string;
|
|
421
|
-
}, options?: O): RestResponse<{
|
|
422
|
-
[id: string]: unknown;
|
|
423
|
-
}>;
|
|
279
|
+
getManagerConfigImage(filename: string, options?: O): RestResponse<any>;
|
|
424
280
|
}
|
|
425
281
|
export declare class AssetResourceClient<O> {
|
|
426
282
|
protected httpClient: HttpClient<O>;
|
|
@@ -531,6 +387,145 @@ export declare class AssetResourceClient<O> {
|
|
|
531
387
|
assetIds?: string[];
|
|
532
388
|
}, options?: O): RestResponse<void>;
|
|
533
389
|
}
|
|
390
|
+
export declare class DashboardResourceClient<O> {
|
|
391
|
+
protected httpClient: HttpClient<O>;
|
|
392
|
+
constructor(httpClient: HttpClient<O>);
|
|
393
|
+
/**
|
|
394
|
+
* HTTP POST /dashboard
|
|
395
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.create
|
|
396
|
+
*/
|
|
397
|
+
create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
398
|
+
/**
|
|
399
|
+
* HTTP PUT /dashboard
|
|
400
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.update
|
|
401
|
+
*/
|
|
402
|
+
update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
403
|
+
/**
|
|
404
|
+
* HTTP GET /dashboard/all/{realm}
|
|
405
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards
|
|
406
|
+
*/
|
|
407
|
+
getAllRealmDashboards(realm: string, options?: O): RestResponse<Model.Dashboard[]>;
|
|
408
|
+
/**
|
|
409
|
+
* HTTP POST /dashboard/query
|
|
410
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.query
|
|
411
|
+
*/
|
|
412
|
+
query(dashboardQuery: Model.DashboardQuery, options?: O): RestResponse<Model.Dashboard[]>;
|
|
413
|
+
/**
|
|
414
|
+
* HTTP DELETE /dashboard/{realm}/{dashboardId}
|
|
415
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.delete
|
|
416
|
+
*/
|
|
417
|
+
delete(realm: string, dashboardId: string, options?: O): RestResponse<void>;
|
|
418
|
+
/**
|
|
419
|
+
* HTTP GET /dashboard/{realm}/{dashboardId}
|
|
420
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.get
|
|
421
|
+
*/
|
|
422
|
+
get(realm: string, dashboardId: string, options?: O): RestResponse<Model.Dashboard>;
|
|
423
|
+
}
|
|
424
|
+
export declare class ExternalServiceResourceClient<O> {
|
|
425
|
+
protected httpClient: HttpClient<O>;
|
|
426
|
+
constructor(httpClient: HttpClient<O>);
|
|
427
|
+
/**
|
|
428
|
+
* Response code 200 - List of registered external services
|
|
429
|
+
* HTTP GET /service
|
|
430
|
+
* Java method: org.openremote.model.services.ExternalServiceResource.getServices
|
|
431
|
+
*/
|
|
432
|
+
getServices(queryParams?: {
|
|
433
|
+
realm?: string;
|
|
434
|
+
}, options?: O): RestResponse<Model.ExternalService[]>;
|
|
435
|
+
/**
|
|
436
|
+
* Response code 200 - Service registered successfully
|
|
437
|
+
* Response code 400 - Invalid external service object
|
|
438
|
+
* Response code 409 - ExternalService instance already registered
|
|
439
|
+
* HTTP POST /service
|
|
440
|
+
* Java method: org.openremote.model.services.ExternalServiceResource.registerService
|
|
441
|
+
*/
|
|
442
|
+
registerService(service: Model.ExternalService, options?: O): RestResponse<Model.ExternalService>;
|
|
443
|
+
/**
|
|
444
|
+
* Response code 200 - List of registered external services
|
|
445
|
+
* HTTP GET /service/global
|
|
446
|
+
* Java method: org.openremote.model.services.ExternalServiceResource.getGlobalServices
|
|
447
|
+
*/
|
|
448
|
+
getGlobalServices(options?: O): RestResponse<Model.ExternalService[]>;
|
|
449
|
+
/**
|
|
450
|
+
* Response code 200 - Service registered successfully
|
|
451
|
+
* Response code 400 - Invalid external service object
|
|
452
|
+
* Response code 409 - ExternalService instance already registered
|
|
453
|
+
* HTTP POST /service/global
|
|
454
|
+
* Java method: org.openremote.model.services.ExternalServiceResource.registerGlobalService
|
|
455
|
+
*/
|
|
456
|
+
registerGlobalService(service: Model.ExternalService, options?: O): RestResponse<Model.ExternalService>;
|
|
457
|
+
/**
|
|
458
|
+
* Response code 204 - Service deregistered successfully
|
|
459
|
+
* Response code 404 - Service instance not found
|
|
460
|
+
* HTTP DELETE /service/{serviceId}/{instanceId}
|
|
461
|
+
* Java method: org.openremote.model.services.ExternalServiceResource.deregisterService
|
|
462
|
+
*/
|
|
463
|
+
deregisterService(serviceId: string, instanceId: number, options?: O): RestResponse<void>;
|
|
464
|
+
/**
|
|
465
|
+
* Response code 200 - ExternalService retrieved successfully
|
|
466
|
+
* Response code 404 - ExternalService not found
|
|
467
|
+
* HTTP GET /service/{serviceId}/{instanceId}
|
|
468
|
+
* Java method: org.openremote.model.services.ExternalServiceResource.getService
|
|
469
|
+
*/
|
|
470
|
+
getService(serviceId: string, instanceId: number, options?: O): RestResponse<Model.ExternalService>;
|
|
471
|
+
/**
|
|
472
|
+
* Response code 204 - Heartbeat sent successfully
|
|
473
|
+
* Response code 404 - Service instance not found
|
|
474
|
+
* HTTP PUT /service/{serviceId}/{instanceId}
|
|
475
|
+
* Java method: org.openremote.model.services.ExternalServiceResource.heartbeat
|
|
476
|
+
*/
|
|
477
|
+
heartbeat(serviceId: string, instanceId: number, options?: O): RestResponse<void>;
|
|
478
|
+
}
|
|
479
|
+
export declare class ProvisioningResourceClient<O> {
|
|
480
|
+
protected httpClient: HttpClient<O>;
|
|
481
|
+
constructor(httpClient: HttpClient<O>);
|
|
482
|
+
/**
|
|
483
|
+
* HTTP POST /provisioning
|
|
484
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
|
|
485
|
+
*/
|
|
486
|
+
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
487
|
+
/**
|
|
488
|
+
* HTTP GET /provisioning
|
|
489
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
490
|
+
*/
|
|
491
|
+
getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
|
|
492
|
+
/**
|
|
493
|
+
* HTTP DELETE /provisioning/{id}
|
|
494
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
|
|
495
|
+
*/
|
|
496
|
+
deleteProvisioningConfig(id: number, options?: O): RestResponse<void>;
|
|
497
|
+
/**
|
|
498
|
+
* HTTP PUT /provisioning/{id}
|
|
499
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
|
|
500
|
+
*/
|
|
501
|
+
updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
|
|
502
|
+
}
|
|
503
|
+
export declare class AssetDatapointResourceClient<O> {
|
|
504
|
+
protected httpClient: HttpClient<O>;
|
|
505
|
+
constructor(httpClient: HttpClient<O>);
|
|
506
|
+
/**
|
|
507
|
+
* HTTP GET /asset/datapoint/export
|
|
508
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport
|
|
509
|
+
*/
|
|
510
|
+
getDatapointExport(queryParams?: {
|
|
511
|
+
attributeRefs?: string;
|
|
512
|
+
fromTimestamp?: number;
|
|
513
|
+
toTimestamp?: number;
|
|
514
|
+
}, options?: O): RestResponse<any>;
|
|
515
|
+
/**
|
|
516
|
+
* HTTP GET /asset/datapoint/periods
|
|
517
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
|
|
518
|
+
*/
|
|
519
|
+
getDatapointPeriod(queryParams?: {
|
|
520
|
+
assetId?: string;
|
|
521
|
+
attributeName?: string;
|
|
522
|
+
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
523
|
+
/**
|
|
524
|
+
* HTTP POST /asset/datapoint/{assetId}/{attributeName}
|
|
525
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
|
|
526
|
+
*/
|
|
527
|
+
getDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
528
|
+
}
|
|
534
529
|
export declare class UserResourceClient<O> {
|
|
535
530
|
protected httpClient: HttpClient<O>;
|
|
536
531
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -655,88 +650,14 @@ export declare class UserResourceClient<O> {
|
|
|
655
650
|
*/
|
|
656
651
|
get(realm: string, userId: string, options?: O): RestResponse<Model.User>;
|
|
657
652
|
}
|
|
658
|
-
export declare class
|
|
653
|
+
export declare class GatewayServiceResourceClient<O> {
|
|
659
654
|
protected httpClient: HttpClient<O>;
|
|
660
655
|
constructor(httpClient: HttpClient<O>);
|
|
661
656
|
/**
|
|
662
|
-
*
|
|
663
|
-
*
|
|
664
|
-
* Java method: org.openremote.model.services.ExternalServiceResource.getServices
|
|
657
|
+
* HTTP POST /gateway/tunnel
|
|
658
|
+
* Java method: org.openremote.model.gateway.GatewayServiceResource.startTunnel
|
|
665
659
|
*/
|
|
666
|
-
|
|
667
|
-
realm?: string;
|
|
668
|
-
}, options?: O): RestResponse<Model.ExternalService[]>;
|
|
669
|
-
/**
|
|
670
|
-
* Response code 200 - Service registered successfully
|
|
671
|
-
* Response code 400 - Invalid external service object
|
|
672
|
-
* Response code 409 - ExternalService instance already registered
|
|
673
|
-
* HTTP POST /service
|
|
674
|
-
* Java method: org.openremote.model.services.ExternalServiceResource.registerService
|
|
675
|
-
*/
|
|
676
|
-
registerService(service: Model.ExternalService, options?: O): RestResponse<Model.ExternalService>;
|
|
677
|
-
/**
|
|
678
|
-
* Response code 200 - List of registered external services
|
|
679
|
-
* HTTP GET /service/global
|
|
680
|
-
* Java method: org.openremote.model.services.ExternalServiceResource.getGlobalServices
|
|
681
|
-
*/
|
|
682
|
-
getGlobalServices(options?: O): RestResponse<Model.ExternalService[]>;
|
|
683
|
-
/**
|
|
684
|
-
* Response code 200 - Service registered successfully
|
|
685
|
-
* Response code 400 - Invalid external service object
|
|
686
|
-
* Response code 409 - ExternalService instance already registered
|
|
687
|
-
* HTTP POST /service/global
|
|
688
|
-
* Java method: org.openremote.model.services.ExternalServiceResource.registerGlobalService
|
|
689
|
-
*/
|
|
690
|
-
registerGlobalService(service: Model.ExternalService, options?: O): RestResponse<Model.ExternalService>;
|
|
691
|
-
/**
|
|
692
|
-
* Response code 204 - Service deregistered successfully
|
|
693
|
-
* Response code 404 - Service instance not found
|
|
694
|
-
* HTTP DELETE /service/{serviceId}/{instanceId}
|
|
695
|
-
* Java method: org.openremote.model.services.ExternalServiceResource.deregisterService
|
|
696
|
-
*/
|
|
697
|
-
deregisterService(serviceId: string, instanceId: number, options?: O): RestResponse<void>;
|
|
698
|
-
/**
|
|
699
|
-
* Response code 200 - ExternalService retrieved successfully
|
|
700
|
-
* Response code 404 - ExternalService not found
|
|
701
|
-
* HTTP GET /service/{serviceId}/{instanceId}
|
|
702
|
-
* Java method: org.openremote.model.services.ExternalServiceResource.getService
|
|
703
|
-
*/
|
|
704
|
-
getService(serviceId: string, instanceId: number, options?: O): RestResponse<Model.ExternalService>;
|
|
705
|
-
/**
|
|
706
|
-
* Response code 204 - Heartbeat sent successfully
|
|
707
|
-
* Response code 404 - Service instance not found
|
|
708
|
-
* HTTP PUT /service/{serviceId}/{instanceId}
|
|
709
|
-
* Java method: org.openremote.model.services.ExternalServiceResource.heartbeat
|
|
710
|
-
*/
|
|
711
|
-
heartbeat(serviceId: string, instanceId: number, options?: O): RestResponse<void>;
|
|
712
|
-
}
|
|
713
|
-
export declare class AppResourceClient<O> {
|
|
714
|
-
protected httpClient: HttpClient<O>;
|
|
715
|
-
constructor(httpClient: HttpClient<O>);
|
|
716
|
-
/**
|
|
717
|
-
* HTTP GET /apps
|
|
718
|
-
* Java method: org.openremote.model.apps.AppResource.getApps
|
|
719
|
-
*/
|
|
720
|
-
getApps(options?: O): RestResponse<string[]>;
|
|
721
|
-
/**
|
|
722
|
-
* HTTP GET /apps/consoleConfig
|
|
723
|
-
* Java method: org.openremote.model.apps.AppResource.getConsoleConfig
|
|
724
|
-
*/
|
|
725
|
-
getConsoleConfig(options?: O): RestResponse<any>;
|
|
726
|
-
/**
|
|
727
|
-
* HTTP GET /apps/info
|
|
728
|
-
* Java method: org.openremote.model.apps.AppResource.getAppInfos
|
|
729
|
-
*/
|
|
730
|
-
getAppInfos(options?: O): RestResponse<any>;
|
|
731
|
-
}
|
|
732
|
-
export declare class GatewayServiceResourceClient<O> {
|
|
733
|
-
protected httpClient: HttpClient<O>;
|
|
734
|
-
constructor(httpClient: HttpClient<O>);
|
|
735
|
-
/**
|
|
736
|
-
* HTTP POST /gateway/tunnel
|
|
737
|
-
* Java method: org.openremote.model.gateway.GatewayServiceResource.startTunnel
|
|
738
|
-
*/
|
|
739
|
-
startTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
660
|
+
startTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
740
661
|
/**
|
|
741
662
|
* HTTP DELETE /gateway/tunnel
|
|
742
663
|
* Java method: org.openremote.model.gateway.GatewayServiceResource.stopTunnel
|
|
@@ -758,30 +679,6 @@ export declare class GatewayServiceResourceClient<O> {
|
|
|
758
679
|
*/
|
|
759
680
|
getActiveTunnelInfo(realm: string, id: string, target: string, targetPort: number, options?: O): RestResponse<Model.GatewayTunnelInfo>;
|
|
760
681
|
}
|
|
761
|
-
export declare class ProvisioningResourceClient<O> {
|
|
762
|
-
protected httpClient: HttpClient<O>;
|
|
763
|
-
constructor(httpClient: HttpClient<O>);
|
|
764
|
-
/**
|
|
765
|
-
* HTTP POST /provisioning
|
|
766
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
|
|
767
|
-
*/
|
|
768
|
-
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
769
|
-
/**
|
|
770
|
-
* HTTP GET /provisioning
|
|
771
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
772
|
-
*/
|
|
773
|
-
getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
|
|
774
|
-
/**
|
|
775
|
-
* HTTP DELETE /provisioning/{id}
|
|
776
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
|
|
777
|
-
*/
|
|
778
|
-
deleteProvisioningConfig(id: number, options?: O): RestResponse<void>;
|
|
779
|
-
/**
|
|
780
|
-
* HTTP PUT /provisioning/{id}
|
|
781
|
-
* Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
|
|
782
|
-
*/
|
|
783
|
-
updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
|
|
784
|
-
}
|
|
785
682
|
export declare class NotificationResourceClient<O> {
|
|
786
683
|
protected httpClient: HttpClient<O>;
|
|
787
684
|
constructor(httpClient: HttpClient<O>);
|
|
@@ -836,36 +733,199 @@ export declare class NotificationResourceClient<O> {
|
|
|
836
733
|
targetId?: string;
|
|
837
734
|
}, options?: O): RestResponse<void>;
|
|
838
735
|
}
|
|
839
|
-
export declare class
|
|
736
|
+
export declare class RealmResourceClient<O> {
|
|
840
737
|
protected httpClient: HttpClient<O>;
|
|
841
738
|
constructor(httpClient: HttpClient<O>);
|
|
842
739
|
/**
|
|
843
|
-
* HTTP POST /
|
|
844
|
-
* Java method: org.openremote.model.
|
|
740
|
+
* HTTP POST /realm
|
|
741
|
+
* Java method: org.openremote.model.security.RealmResource.create
|
|
845
742
|
*/
|
|
846
|
-
|
|
743
|
+
create(realm: Model.Realm, options?: O): RestResponse<void>;
|
|
847
744
|
/**
|
|
848
|
-
* HTTP
|
|
849
|
-
* Java method: org.openremote.model.
|
|
745
|
+
* HTTP GET /realm
|
|
746
|
+
* Java method: org.openremote.model.security.RealmResource.getAll
|
|
850
747
|
*/
|
|
851
|
-
|
|
748
|
+
getAll(options?: O): RestResponse<Model.Realm[]>;
|
|
749
|
+
/**
|
|
750
|
+
* HTTP GET /realm/accessible
|
|
751
|
+
* Java method: org.openremote.model.security.RealmResource.getAccessible
|
|
752
|
+
*/
|
|
753
|
+
getAccessible(options?: O): RestResponse<Model.Realm[]>;
|
|
754
|
+
/**
|
|
755
|
+
* HTTP DELETE /realm/{name}
|
|
756
|
+
* Java method: org.openremote.model.security.RealmResource.delete
|
|
757
|
+
*/
|
|
758
|
+
delete(name: string, options?: O): RestResponse<void>;
|
|
759
|
+
/**
|
|
760
|
+
* HTTP GET /realm/{name}
|
|
761
|
+
* Java method: org.openremote.model.security.RealmResource.get
|
|
762
|
+
*/
|
|
763
|
+
get(name: string, options?: O): RestResponse<Model.Realm>;
|
|
764
|
+
/**
|
|
765
|
+
* HTTP PUT /realm/{name}
|
|
766
|
+
* Java method: org.openremote.model.security.RealmResource.update
|
|
767
|
+
*/
|
|
768
|
+
update(name: string, realm: Model.Realm, options?: O): RestResponse<void>;
|
|
852
769
|
}
|
|
853
|
-
export declare class
|
|
770
|
+
export declare class RulesResourceClient<O> {
|
|
854
771
|
protected httpClient: HttpClient<O>;
|
|
855
772
|
constructor(httpClient: HttpClient<O>);
|
|
856
773
|
/**
|
|
857
|
-
* HTTP
|
|
858
|
-
* Java method: org.openremote.model.
|
|
774
|
+
* HTTP POST /rules
|
|
775
|
+
* Java method: org.openremote.model.rules.RulesResource.createGlobalRuleset
|
|
859
776
|
*/
|
|
860
|
-
|
|
861
|
-
|
|
777
|
+
createGlobalRuleset(ruleset: Model.GlobalRuleset, options?: O): RestResponse<number>;
|
|
778
|
+
/**
|
|
779
|
+
* HTTP GET /rules
|
|
780
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalRulesets
|
|
781
|
+
*/
|
|
782
|
+
getGlobalRulesets(queryParams?: {
|
|
783
|
+
language?: Model.RulesetLang[];
|
|
784
|
+
fullyPopulate?: boolean;
|
|
785
|
+
}, options?: O): RestResponse<Model.GlobalRuleset[]>;
|
|
786
|
+
/**
|
|
787
|
+
* HTTP POST /rules/asset
|
|
788
|
+
* Java method: org.openremote.model.rules.RulesResource.createAssetRuleset
|
|
789
|
+
*/
|
|
790
|
+
createAssetRuleset(ruleset: Model.AssetRuleset, options?: O): RestResponse<number>;
|
|
791
|
+
/**
|
|
792
|
+
* HTTP GET /rules/asset/for/{assetId}
|
|
793
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetRulesets
|
|
794
|
+
*/
|
|
795
|
+
getAssetRulesets(assetId: string, queryParams?: {
|
|
796
|
+
language?: Model.RulesetLang[];
|
|
797
|
+
fullyPopulate?: boolean;
|
|
798
|
+
}, options?: O): RestResponse<Model.AssetRuleset[]>;
|
|
799
|
+
/**
|
|
800
|
+
* HTTP DELETE /rules/asset/{id}
|
|
801
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteAssetRuleset
|
|
802
|
+
*/
|
|
803
|
+
deleteAssetRuleset(id: number, options?: O): RestResponse<void>;
|
|
804
|
+
/**
|
|
805
|
+
* HTTP GET /rules/asset/{id}
|
|
806
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetRuleset
|
|
807
|
+
*/
|
|
808
|
+
getAssetRuleset(id: number, options?: O): RestResponse<Model.AssetRuleset>;
|
|
809
|
+
/**
|
|
810
|
+
* HTTP PUT /rules/asset/{id}
|
|
811
|
+
* Java method: org.openremote.model.rules.RulesResource.updateAssetRuleset
|
|
812
|
+
*/
|
|
813
|
+
updateAssetRuleset(id: number, ruleset: Model.AssetRuleset, options?: O): RestResponse<void>;
|
|
814
|
+
/**
|
|
815
|
+
* HTTP GET /rules/geofences/{assetId}
|
|
816
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetGeofences
|
|
817
|
+
*/
|
|
818
|
+
getAssetGeofences(assetId: string, options?: O): RestResponse<Model.GeofenceDefinition[]>;
|
|
819
|
+
/**
|
|
820
|
+
* HTTP GET /rules/info/asset/{assetId}
|
|
821
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetEngineInfo
|
|
822
|
+
*/
|
|
823
|
+
getAssetEngineInfo(assetId: string, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
824
|
+
/**
|
|
825
|
+
* HTTP GET /rules/info/global
|
|
826
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalEngineInfo
|
|
827
|
+
*/
|
|
828
|
+
getGlobalEngineInfo(options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
829
|
+
/**
|
|
830
|
+
* HTTP GET /rules/info/realm/{realm}
|
|
831
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmEngineInfo
|
|
832
|
+
*/
|
|
833
|
+
getRealmEngineInfo(realm: string, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
834
|
+
/**
|
|
835
|
+
* HTTP POST /rules/realm
|
|
836
|
+
* Java method: org.openremote.model.rules.RulesResource.createRealmRuleset
|
|
837
|
+
*/
|
|
838
|
+
createRealmRuleset(ruleset: Model.RealmRuleset, options?: O): RestResponse<number>;
|
|
839
|
+
/**
|
|
840
|
+
* HTTP GET /rules/realm/for/{realm}
|
|
841
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmRulesets
|
|
842
|
+
*/
|
|
843
|
+
getRealmRulesets(realm: string, queryParams?: {
|
|
844
|
+
language?: Model.RulesetLang[];
|
|
845
|
+
fullyPopulate?: boolean;
|
|
846
|
+
}, options?: O): RestResponse<Model.RealmRuleset[]>;
|
|
847
|
+
/**
|
|
848
|
+
* HTTP DELETE /rules/realm/{id}
|
|
849
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteRealmRuleset
|
|
850
|
+
*/
|
|
851
|
+
deleteRealmRuleset(id: number, options?: O): RestResponse<void>;
|
|
852
|
+
/**
|
|
853
|
+
* HTTP GET /rules/realm/{id}
|
|
854
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmRuleset
|
|
855
|
+
*/
|
|
856
|
+
getRealmRuleset(id: number, options?: O): RestResponse<Model.RealmRuleset>;
|
|
857
|
+
/**
|
|
858
|
+
* HTTP PUT /rules/realm/{id}
|
|
859
|
+
* Java method: org.openremote.model.rules.RulesResource.updateRealmRuleset
|
|
860
|
+
*/
|
|
861
|
+
updateRealmRuleset(id: number, ruleset: Model.RealmRuleset, options?: O): RestResponse<void>;
|
|
862
|
+
/**
|
|
863
|
+
* HTTP DELETE /rules/{id}
|
|
864
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteGlobalRuleset
|
|
865
|
+
*/
|
|
866
|
+
deleteGlobalRuleset(id: number, options?: O): RestResponse<void>;
|
|
867
|
+
/**
|
|
868
|
+
* HTTP GET /rules/{id}
|
|
869
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalRuleset
|
|
870
|
+
*/
|
|
871
|
+
getGlobalRuleset(id: number, options?: O): RestResponse<Model.GlobalRuleset>;
|
|
872
|
+
/**
|
|
873
|
+
* HTTP PUT /rules/{id}
|
|
874
|
+
* Java method: org.openremote.model.rules.RulesResource.updateGlobalRuleset
|
|
875
|
+
*/
|
|
876
|
+
updateGlobalRuleset(id: number, ruleset: Model.GlobalRuleset, options?: O): RestResponse<void>;
|
|
877
|
+
}
|
|
878
|
+
export declare class MapResourceClient<O> {
|
|
879
|
+
protected httpClient: HttpClient<O>;
|
|
880
|
+
constructor(httpClient: HttpClient<O>);
|
|
881
|
+
/**
|
|
882
|
+
* HTTP GET /map
|
|
883
|
+
* Java method: org.openremote.model.map.MapResource.getSettings
|
|
884
|
+
*/
|
|
885
|
+
getSettings(options?: O): RestResponse<{
|
|
886
|
+
[id: string]: unknown;
|
|
862
887
|
}>;
|
|
863
888
|
/**
|
|
864
|
-
* HTTP
|
|
865
|
-
* Java method: org.openremote.model.
|
|
889
|
+
* HTTP PUT /map
|
|
890
|
+
* Java method: org.openremote.model.map.MapResource.saveSettings
|
|
866
891
|
*/
|
|
867
|
-
|
|
868
|
-
[
|
|
892
|
+
saveSettings(mapConfig: Model.MapConfig, options?: O): RestResponse<{
|
|
893
|
+
[id: string]: unknown;
|
|
894
|
+
}>;
|
|
895
|
+
/**
|
|
896
|
+
* HTTP DELETE /map/deleteMap
|
|
897
|
+
* Java method: org.openremote.model.map.MapResource.deleteMap
|
|
898
|
+
*/
|
|
899
|
+
deleteMap(options?: O): RestResponse<{
|
|
900
|
+
[id: string]: unknown;
|
|
901
|
+
}>;
|
|
902
|
+
/**
|
|
903
|
+
* HTTP GET /map/getCustomMapInfo
|
|
904
|
+
* Java method: org.openremote.model.map.MapResource.getCustomMapInfo
|
|
905
|
+
*/
|
|
906
|
+
getCustomMapInfo(options?: O): RestResponse<{
|
|
907
|
+
[id: string]: unknown;
|
|
908
|
+
}>;
|
|
909
|
+
/**
|
|
910
|
+
* HTTP GET /map/js
|
|
911
|
+
* Java method: org.openremote.model.map.MapResource.getSettingsJs
|
|
912
|
+
*/
|
|
913
|
+
getSettingsJs(options?: O): RestResponse<{
|
|
914
|
+
[id: string]: unknown;
|
|
915
|
+
}>;
|
|
916
|
+
/**
|
|
917
|
+
* HTTP GET /map/tile/{zoom}/{column}/{row}
|
|
918
|
+
* Java method: org.openremote.model.map.MapResource.getTile
|
|
919
|
+
*/
|
|
920
|
+
getTile(zoom: number, column: number, row: number, options?: O): RestResponse<any>;
|
|
921
|
+
/**
|
|
922
|
+
* HTTP POST /map/upload
|
|
923
|
+
* Java method: org.openremote.model.map.MapResource.uploadMap
|
|
924
|
+
*/
|
|
925
|
+
uploadMap(queryParams?: {
|
|
926
|
+
filename?: string;
|
|
927
|
+
}, options?: O): RestResponse<{
|
|
928
|
+
[id: string]: unknown;
|
|
869
929
|
}>;
|
|
870
930
|
}
|
|
871
931
|
export declare class GatewayClientResourceClient<O> {
|
|
@@ -904,113 +964,53 @@ export declare class GatewayClientResourceClient<O> {
|
|
|
904
964
|
*/
|
|
905
965
|
getConnectionStatus(realm: string, options?: O): RestResponse<Model.ConnectionStatus>;
|
|
906
966
|
}
|
|
907
|
-
export declare class DashboardResourceClient<O> {
|
|
908
|
-
protected httpClient: HttpClient<O>;
|
|
909
|
-
constructor(httpClient: HttpClient<O>);
|
|
910
|
-
/**
|
|
911
|
-
* HTTP POST /dashboard
|
|
912
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.create
|
|
913
|
-
*/
|
|
914
|
-
create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
915
|
-
/**
|
|
916
|
-
* HTTP PUT /dashboard
|
|
917
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.update
|
|
918
|
-
*/
|
|
919
|
-
update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
920
|
-
/**
|
|
921
|
-
* HTTP GET /dashboard/all/{realm}
|
|
922
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards
|
|
923
|
-
*/
|
|
924
|
-
getAllRealmDashboards(realm: string, options?: O): RestResponse<Model.Dashboard[]>;
|
|
925
|
-
/**
|
|
926
|
-
* HTTP POST /dashboard/query
|
|
927
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.query
|
|
928
|
-
*/
|
|
929
|
-
query(dashboardQuery: Model.DashboardQuery, options?: O): RestResponse<Model.Dashboard[]>;
|
|
930
|
-
/**
|
|
931
|
-
* HTTP DELETE /dashboard/{realm}/{dashboardId}
|
|
932
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.delete
|
|
933
|
-
*/
|
|
934
|
-
delete(realm: string, dashboardId: string, options?: O): RestResponse<void>;
|
|
935
|
-
/**
|
|
936
|
-
* HTTP GET /dashboard/{realm}/{dashboardId}
|
|
937
|
-
* Java method: org.openremote.model.dashboard.DashboardResource.get
|
|
938
|
-
*/
|
|
939
|
-
get(realm: string, dashboardId: string, options?: O): RestResponse<Model.Dashboard>;
|
|
940
|
-
}
|
|
941
|
-
export declare class AgentResourceClient<O> {
|
|
942
|
-
protected httpClient: HttpClient<O>;
|
|
943
|
-
constructor(httpClient: HttpClient<O>);
|
|
944
|
-
/**
|
|
945
|
-
* HTTP GET /agent/assetDiscovery/{agentId}
|
|
946
|
-
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery
|
|
947
|
-
*/
|
|
948
|
-
doProtocolAssetDiscovery(agentId: string, queryParams?: {
|
|
949
|
-
realm?: string;
|
|
950
|
-
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
951
|
-
/**
|
|
952
|
-
* HTTP POST /agent/assetImport/{agentId}
|
|
953
|
-
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport
|
|
954
|
-
*/
|
|
955
|
-
doProtocolAssetImport(agentId: string, fileInfo: Model.FileInfo, queryParams?: {
|
|
956
|
-
realm?: string;
|
|
957
|
-
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
958
|
-
/**
|
|
959
|
-
* HTTP GET /agent/instanceDiscovery/{agentType}
|
|
960
|
-
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery
|
|
961
|
-
*/
|
|
962
|
-
doProtocolInstanceDiscovery(agentType: string, queryParams?: {
|
|
963
|
-
parentId?: string;
|
|
964
|
-
realm?: string;
|
|
965
|
-
}, options?: O): RestResponse<Model.Agent[]>;
|
|
966
|
-
}
|
|
967
967
|
export type RestResponse<R> = Promise<Axios.GenericAxiosResponse<R>>;
|
|
968
968
|
export declare class ApiClient {
|
|
969
|
-
protected _alarmResource: AxiosAlarmResourceClient;
|
|
970
969
|
protected _assetModelResource: AxiosAssetModelResourceClient;
|
|
971
|
-
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
972
970
|
protected _syslogResource: AxiosSyslogResourceClient;
|
|
973
|
-
protected
|
|
974
|
-
protected
|
|
971
|
+
protected _agentResource: AxiosAgentResourceClient;
|
|
972
|
+
protected _assetPredictedDatapointResource: AxiosAssetPredictedDatapointResourceClient;
|
|
975
973
|
protected _consoleResource: AxiosConsoleResourceClient;
|
|
974
|
+
protected _appResource: AxiosAppResourceClient;
|
|
976
975
|
protected _flowResource: AxiosFlowResourceClient;
|
|
977
|
-
protected
|
|
978
|
-
protected
|
|
976
|
+
protected _alarmResource: AxiosAlarmResourceClient;
|
|
977
|
+
protected _statusResource: AxiosStatusResourceClient;
|
|
978
|
+
protected _configurationResource: AxiosConfigurationResourceClient;
|
|
979
979
|
protected _assetResource: AxiosAssetResourceClient;
|
|
980
|
-
protected
|
|
980
|
+
protected _dashboardResource: AxiosDashboardResourceClient;
|
|
981
981
|
protected _externalServiceResource: AxiosExternalServiceResourceClient;
|
|
982
|
-
protected _appResource: AxiosAppResourceClient;
|
|
983
|
-
protected _gatewayServiceResource: AxiosGatewayServiceResourceClient;
|
|
984
982
|
protected _provisioningResource: AxiosProvisioningResourceClient;
|
|
983
|
+
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
984
|
+
protected _userResource: AxiosUserResourceClient;
|
|
985
|
+
protected _gatewayServiceResource: AxiosGatewayServiceResourceClient;
|
|
985
986
|
protected _notificationResource: AxiosNotificationResourceClient;
|
|
986
|
-
protected
|
|
987
|
-
protected
|
|
987
|
+
protected _realmResource: AxiosRealmResourceClient;
|
|
988
|
+
protected _rulesResource: AxiosRulesResourceClient;
|
|
989
|
+
protected _mapResource: AxiosMapResourceClient;
|
|
988
990
|
protected _gatewayClientResource: AxiosGatewayClientResourceClient;
|
|
989
|
-
protected _dashboardResource: AxiosDashboardResourceClient;
|
|
990
|
-
protected _agentResource: AxiosAgentResourceClient;
|
|
991
991
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
992
|
-
get AlarmResource(): AxiosAlarmResourceClient;
|
|
993
992
|
get AssetModelResource(): AxiosAssetModelResourceClient;
|
|
994
|
-
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
995
993
|
get SyslogResource(): AxiosSyslogResourceClient;
|
|
996
|
-
get
|
|
997
|
-
get
|
|
994
|
+
get AgentResource(): AxiosAgentResourceClient;
|
|
995
|
+
get AssetPredictedDatapointResource(): AxiosAssetPredictedDatapointResourceClient;
|
|
998
996
|
get ConsoleResource(): AxiosConsoleResourceClient;
|
|
997
|
+
get AppResource(): AxiosAppResourceClient;
|
|
999
998
|
get FlowResource(): AxiosFlowResourceClient;
|
|
1000
|
-
get
|
|
1001
|
-
get
|
|
999
|
+
get AlarmResource(): AxiosAlarmResourceClient;
|
|
1000
|
+
get StatusResource(): AxiosStatusResourceClient;
|
|
1001
|
+
get ConfigurationResource(): AxiosConfigurationResourceClient;
|
|
1002
1002
|
get AssetResource(): AxiosAssetResourceClient;
|
|
1003
|
-
get
|
|
1003
|
+
get DashboardResource(): AxiosDashboardResourceClient;
|
|
1004
1004
|
get ExternalServiceResource(): AxiosExternalServiceResourceClient;
|
|
1005
|
-
get AppResource(): AxiosAppResourceClient;
|
|
1006
|
-
get GatewayServiceResource(): AxiosGatewayServiceResourceClient;
|
|
1007
1005
|
get ProvisioningResource(): AxiosProvisioningResourceClient;
|
|
1006
|
+
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
1007
|
+
get UserResource(): AxiosUserResourceClient;
|
|
1008
|
+
get GatewayServiceResource(): AxiosGatewayServiceResourceClient;
|
|
1008
1009
|
get NotificationResource(): AxiosNotificationResourceClient;
|
|
1009
|
-
get
|
|
1010
|
-
get
|
|
1010
|
+
get RealmResource(): AxiosRealmResourceClient;
|
|
1011
|
+
get RulesResource(): AxiosRulesResourceClient;
|
|
1012
|
+
get MapResource(): AxiosMapResourceClient;
|
|
1011
1013
|
get GatewayClientResource(): AxiosGatewayClientResourceClient;
|
|
1012
|
-
get DashboardResource(): AxiosDashboardResourceClient;
|
|
1013
|
-
get AgentResource(): AxiosAgentResourceClient;
|
|
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 AxiosAlarmResourceClient extends AlarmResourceClient<Axios.AxiosRequestConfig> {
|
|
1022
|
-
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1023
|
-
}
|
|
1024
1021
|
export declare class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {
|
|
1025
1022
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1026
1023
|
}
|
|
1027
|
-
export declare class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
1028
|
-
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1029
|
-
}
|
|
1030
1024
|
export declare class AxiosSyslogResourceClient extends SyslogResourceClient<Axios.AxiosRequestConfig> {
|
|
1031
1025
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1032
1026
|
}
|
|
1033
|
-
export declare class
|
|
1027
|
+
export declare class AxiosAgentResourceClient extends AgentResourceClient<Axios.AxiosRequestConfig> {
|
|
1034
1028
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1035
1029
|
}
|
|
1036
|
-
export declare class
|
|
1030
|
+
export declare class AxiosAssetPredictedDatapointResourceClient extends AssetPredictedDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
1037
1031
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1038
1032
|
}
|
|
1039
1033
|
export declare class AxiosConsoleResourceClient extends ConsoleResourceClient<Axios.AxiosRequestConfig> {
|
|
1040
1034
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1041
1035
|
}
|
|
1036
|
+
export declare class AxiosAppResourceClient extends AppResourceClient<Axios.AxiosRequestConfig> {
|
|
1037
|
+
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1038
|
+
}
|
|
1042
1039
|
export declare class AxiosFlowResourceClient extends FlowResourceClient<Axios.AxiosRequestConfig> {
|
|
1043
1040
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1044
1041
|
}
|
|
1045
|
-
export declare class
|
|
1042
|
+
export declare class AxiosAlarmResourceClient extends AlarmResourceClient<Axios.AxiosRequestConfig> {
|
|
1046
1043
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1047
1044
|
}
|
|
1048
|
-
export declare class
|
|
1045
|
+
export declare class AxiosStatusResourceClient extends StatusResourceClient<Axios.AxiosRequestConfig> {
|
|
1046
|
+
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1047
|
+
}
|
|
1048
|
+
export declare class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {
|
|
1049
1049
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1050
1050
|
}
|
|
1051
1051
|
export declare class AxiosAssetResourceClient extends AssetResourceClient<Axios.AxiosRequestConfig> {
|
|
1052
1052
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1053
1053
|
}
|
|
1054
|
-
export declare class
|
|
1054
|
+
export declare class AxiosDashboardResourceClient extends DashboardResourceClient<Axios.AxiosRequestConfig> {
|
|
1055
1055
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1056
1056
|
}
|
|
1057
1057
|
export declare class AxiosExternalServiceResourceClient extends ExternalServiceResourceClient<Axios.AxiosRequestConfig> {
|
|
1058
1058
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1059
1059
|
}
|
|
1060
|
-
export declare class
|
|
1060
|
+
export declare class AxiosProvisioningResourceClient extends ProvisioningResourceClient<Axios.AxiosRequestConfig> {
|
|
1061
1061
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1062
1062
|
}
|
|
1063
|
-
export declare class
|
|
1063
|
+
export declare class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
1064
1064
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1065
1065
|
}
|
|
1066
|
-
export declare class
|
|
1066
|
+
export declare class AxiosUserResourceClient extends UserResourceClient<Axios.AxiosRequestConfig> {
|
|
1067
1067
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1068
1068
|
}
|
|
1069
|
-
export declare class
|
|
1069
|
+
export declare class AxiosGatewayServiceResourceClient extends GatewayServiceResourceClient<Axios.AxiosRequestConfig> {
|
|
1070
1070
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1071
1071
|
}
|
|
1072
|
-
export declare class
|
|
1072
|
+
export declare class AxiosNotificationResourceClient extends NotificationResourceClient<Axios.AxiosRequestConfig> {
|
|
1073
1073
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1074
1074
|
}
|
|
1075
|
-
export declare class
|
|
1075
|
+
export declare class AxiosRealmResourceClient extends RealmResourceClient<Axios.AxiosRequestConfig> {
|
|
1076
1076
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1077
1077
|
}
|
|
1078
|
-
export declare class
|
|
1078
|
+
export declare class AxiosRulesResourceClient extends RulesResourceClient<Axios.AxiosRequestConfig> {
|
|
1079
1079
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1080
1080
|
}
|
|
1081
|
-
export declare class
|
|
1081
|
+
export declare class AxiosMapResourceClient extends MapResourceClient<Axios.AxiosRequestConfig> {
|
|
1082
1082
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1083
1083
|
}
|
|
1084
|
-
export declare class
|
|
1084
|
+
export declare class AxiosGatewayClientResourceClient extends GatewayClientResourceClient<Axios.AxiosRequestConfig> {
|
|
1085
1085
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
1086
1086
|
}
|