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