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