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