@openremote/rest 1.0.3 → 1.2.0-snapshot.20240512155932
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 -8
- package/dist/umd/index.js +1 -1
- package/{dist → lib}/index.d.ts +6 -2
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -0
- package/{dist → lib}/restclient.d.ts +574 -380
- package/lib/restclient.js +1 -0
- package/lib/restclient.js.map +1 -0
- package/package.json +20 -16
- package/LICENSE.txt +0 -2359
- package/dist/.tsbuildinfo +0 -9118
- package/dist/index.js +0 -30
- package/dist/index.js.map +0 -1
- package/dist/restclient.js +0 -901
- package/dist/restclient.js.map +0 -1
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
import * as Model from "@openremote/model";
|
|
2
|
-
export interface HasUniqueResourceName {
|
|
3
|
-
urn: string;
|
|
4
|
-
}
|
|
5
2
|
export interface HttpClient<O> {
|
|
6
3
|
request<R>(requestConfig: {
|
|
7
4
|
method: string;
|
|
@@ -12,154 +9,153 @@ export interface HttpClient<O> {
|
|
|
12
9
|
options?: O;
|
|
13
10
|
}): RestResponse<R>;
|
|
14
11
|
}
|
|
15
|
-
export declare class
|
|
12
|
+
export declare class DashboardResourceClient<O> {
|
|
16
13
|
protected httpClient: HttpClient<O>;
|
|
17
14
|
constructor(httpClient: HttpClient<O>);
|
|
18
15
|
/**
|
|
19
|
-
* HTTP
|
|
20
|
-
* Java method: org.openremote.model.
|
|
16
|
+
* HTTP POST /dashboard
|
|
17
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.create
|
|
21
18
|
*/
|
|
22
|
-
|
|
19
|
+
create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
23
20
|
/**
|
|
24
|
-
* HTTP
|
|
25
|
-
* Java method: org.openremote.model.
|
|
21
|
+
* HTTP PUT /dashboard
|
|
22
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.update
|
|
26
23
|
*/
|
|
27
|
-
|
|
24
|
+
update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
|
|
28
25
|
/**
|
|
29
|
-
* HTTP GET /
|
|
30
|
-
* Java method: org.openremote.model.
|
|
26
|
+
* HTTP GET /dashboard/all/{realm}
|
|
27
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards
|
|
31
28
|
*/
|
|
32
|
-
|
|
33
|
-
}
|
|
34
|
-
export declare class StatusResourceClient<O> {
|
|
35
|
-
protected httpClient: HttpClient<O>;
|
|
36
|
-
constructor(httpClient: HttpClient<O>);
|
|
29
|
+
getAllRealmDashboards(realm: any, options?: O): RestResponse<Model.Dashboard[]>;
|
|
37
30
|
/**
|
|
38
|
-
* HTTP
|
|
39
|
-
* Java method: org.openremote.model.
|
|
31
|
+
* HTTP DELETE /dashboard/{realm}/{dashboardId}
|
|
32
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.delete
|
|
40
33
|
*/
|
|
41
|
-
|
|
42
|
-
[id: string]: any;
|
|
43
|
-
}>;
|
|
34
|
+
delete(realm: any, dashboardId: any, options?: O): RestResponse<void>;
|
|
44
35
|
/**
|
|
45
|
-
* HTTP GET /
|
|
46
|
-
* Java method: org.openremote.model.
|
|
36
|
+
* HTTP GET /dashboard/{realm}/{dashboardId}
|
|
37
|
+
* Java method: org.openremote.model.dashboard.DashboardResource.get
|
|
47
38
|
*/
|
|
48
|
-
|
|
49
|
-
[id: string]: any;
|
|
50
|
-
}>;
|
|
39
|
+
get(realm: any, dashboardId: any, options?: O): RestResponse<Model.Dashboard>;
|
|
51
40
|
}
|
|
52
|
-
export declare class
|
|
41
|
+
export declare class UserResourceClient<O> {
|
|
53
42
|
protected httpClient: HttpClient<O>;
|
|
54
43
|
constructor(httpClient: HttpClient<O>);
|
|
55
44
|
/**
|
|
56
|
-
* HTTP
|
|
57
|
-
* Java method: org.openremote.model.
|
|
45
|
+
* HTTP POST /user/query
|
|
46
|
+
* Java method: org.openremote.model.security.UserResource.query
|
|
58
47
|
*/
|
|
59
|
-
|
|
60
|
-
interval?: Model.DatapointInterval;
|
|
61
|
-
fromTimestamp?: number;
|
|
62
|
-
toTimestamp?: number;
|
|
63
|
-
}, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
64
|
-
}
|
|
65
|
-
export declare class MapResourceClient<O> {
|
|
66
|
-
protected httpClient: HttpClient<O>;
|
|
67
|
-
constructor(httpClient: HttpClient<O>);
|
|
48
|
+
query(query: Model.UserQuery, options?: O): RestResponse<Model.User[]>;
|
|
68
49
|
/**
|
|
69
|
-
* HTTP GET /
|
|
70
|
-
* Java method: org.openremote.model.
|
|
50
|
+
* HTTP GET /user/user
|
|
51
|
+
* Java method: org.openremote.model.security.UserResource.getCurrent
|
|
71
52
|
*/
|
|
72
|
-
|
|
73
|
-
[id: string]: any;
|
|
74
|
-
}>;
|
|
53
|
+
getCurrent(options?: O): RestResponse<Model.User>;
|
|
75
54
|
/**
|
|
76
|
-
* HTTP GET /
|
|
77
|
-
* Java method: org.openremote.model.
|
|
55
|
+
* HTTP GET /user/userRealmRoles
|
|
56
|
+
* Java method: org.openremote.model.security.UserResource.getCurrentUserRealmRoles
|
|
78
57
|
*/
|
|
79
|
-
|
|
80
|
-
[id: string]: any;
|
|
81
|
-
}>;
|
|
58
|
+
getCurrentUserRealmRoles(options?: O): RestResponse<Model.Role[]>;
|
|
82
59
|
/**
|
|
83
|
-
* HTTP GET /
|
|
84
|
-
* Java method: org.openremote.model.
|
|
60
|
+
* HTTP GET /user/userRoles
|
|
61
|
+
* Java method: org.openremote.model.security.UserResource.getCurrentUserRoles
|
|
85
62
|
*/
|
|
86
|
-
|
|
87
|
-
}
|
|
88
|
-
export declare class AssetDatapointResourceClient<O> {
|
|
89
|
-
protected httpClient: HttpClient<O>;
|
|
90
|
-
constructor(httpClient: HttpClient<O>);
|
|
63
|
+
getCurrentUserRoles(options?: O): RestResponse<Model.Role[]>;
|
|
91
64
|
/**
|
|
92
|
-
* HTTP GET /
|
|
93
|
-
* Java method: org.openremote.model.
|
|
65
|
+
* HTTP GET /user/userRoles/{clientId}
|
|
66
|
+
* Java method: org.openremote.model.security.UserResource.getCurrentUserClientRoles
|
|
94
67
|
*/
|
|
95
|
-
|
|
96
|
-
interval?: Model.DatapointInterval;
|
|
97
|
-
fromTimestamp?: number;
|
|
98
|
-
toTimestamp?: number;
|
|
99
|
-
}, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
100
|
-
}
|
|
101
|
-
export declare class UserResourceClient<O> {
|
|
102
|
-
protected httpClient: HttpClient<O>;
|
|
103
|
-
constructor(httpClient: HttpClient<O>);
|
|
68
|
+
getCurrentUserClientRoles(clientId: any, options?: O): RestResponse<Model.Role[]>;
|
|
104
69
|
/**
|
|
105
|
-
* HTTP GET /user
|
|
106
|
-
* Java method: org.openremote.model.security.UserResource.
|
|
70
|
+
* HTTP GET /user/{realm}/disconnect/{sessionID}
|
|
71
|
+
* Java method: org.openremote.model.security.UserResource.disconnectUserSession
|
|
107
72
|
*/
|
|
108
|
-
|
|
73
|
+
disconnectUserSession(realm: any, sessionID: any, options?: O): RestResponse<void>;
|
|
109
74
|
/**
|
|
110
|
-
* HTTP
|
|
111
|
-
* Java method: org.openremote.model.security.UserResource.
|
|
75
|
+
* HTTP PUT /user/{realm}/reset-password/{userId}
|
|
76
|
+
* Java method: org.openremote.model.security.UserResource.resetPassword
|
|
112
77
|
*/
|
|
113
|
-
|
|
78
|
+
resetPassword(realm: any, userId: any, credential: Model.Credential, options?: O): RestResponse<void>;
|
|
114
79
|
/**
|
|
115
|
-
* HTTP
|
|
116
|
-
* Java method: org.openremote.model.security.UserResource.
|
|
80
|
+
* HTTP GET /user/{realm}/reset-secret/{userId}
|
|
81
|
+
* Java method: org.openremote.model.security.UserResource.resetSecret
|
|
117
82
|
*/
|
|
118
|
-
|
|
83
|
+
resetSecret(realm: any, userId: any, options?: O): RestResponse<any>;
|
|
119
84
|
/**
|
|
120
|
-
* HTTP GET /user/{realm}
|
|
121
|
-
* Java method: org.openremote.model.security.UserResource.
|
|
85
|
+
* HTTP GET /user/{realm}/roles
|
|
86
|
+
* Java method: org.openremote.model.security.UserResource.getRoles
|
|
122
87
|
*/
|
|
123
|
-
|
|
88
|
+
getRoles(realm: any, options?: O): RestResponse<Model.Role[]>;
|
|
124
89
|
/**
|
|
125
|
-
* HTTP PUT /user/{realm}/
|
|
90
|
+
* HTTP PUT /user/{realm}/roles
|
|
126
91
|
* Java method: org.openremote.model.security.UserResource.updateRoles
|
|
127
92
|
*/
|
|
128
|
-
updateRoles(realm:
|
|
93
|
+
updateRoles(realm: any, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
129
94
|
/**
|
|
130
|
-
* HTTP
|
|
131
|
-
* Java method: org.openremote.model.security.UserResource.
|
|
95
|
+
* HTTP GET /user/{realm}/userRealmRoles/{userId}
|
|
96
|
+
* Java method: org.openremote.model.security.UserResource.getUserRealmRoles
|
|
132
97
|
*/
|
|
133
|
-
|
|
98
|
+
getUserRealmRoles(realm: any, userId: any, options?: O): RestResponse<Model.Role[]>;
|
|
134
99
|
/**
|
|
135
|
-
* HTTP
|
|
136
|
-
* Java method: org.openremote.model.security.UserResource.
|
|
100
|
+
* HTTP PUT /user/{realm}/userRealmRoles/{userId}
|
|
101
|
+
* Java method: org.openremote.model.security.UserResource.updateUserRealmRoles
|
|
102
|
+
*/
|
|
103
|
+
updateUserRealmRoles(realm: any, userId: any, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
104
|
+
/**
|
|
105
|
+
* HTTP GET /user/{realm}/userRoles/{userId}
|
|
106
|
+
* Java method: org.openremote.model.security.UserResource.getUserRoles
|
|
107
|
+
*/
|
|
108
|
+
getUserRoles(realm: any, userId: any, options?: O): RestResponse<Model.Role[]>;
|
|
109
|
+
/**
|
|
110
|
+
* HTTP PUT /user/{realm}/userRoles/{userId}
|
|
111
|
+
* Java method: org.openremote.model.security.UserResource.updateUserRoles
|
|
112
|
+
*/
|
|
113
|
+
updateUserRoles(realm: any, userId: any, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
114
|
+
/**
|
|
115
|
+
* HTTP GET /user/{realm}/userRoles/{userId}/{clientId}
|
|
116
|
+
* Java method: org.openremote.model.security.UserResource.getUserClientRoles
|
|
137
117
|
*/
|
|
138
|
-
|
|
118
|
+
getUserClientRoles(realm: any, userId: any, clientId: any, options?: O): RestResponse<Model.Role[]>;
|
|
139
119
|
/**
|
|
140
|
-
* HTTP PUT /user/{realm}/{userId}
|
|
120
|
+
* HTTP PUT /user/{realm}/userRoles/{userId}/{clientId}
|
|
121
|
+
* Java method: org.openremote.model.security.UserResource.updateUserClientRoles
|
|
122
|
+
*/
|
|
123
|
+
updateUserClientRoles(realm: any, userId: any, clientId: any, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
124
|
+
/**
|
|
125
|
+
* HTTP GET /user/{realm}/userSessions/{userId}
|
|
126
|
+
* Java method: org.openremote.model.security.UserResource.getUserSessions
|
|
127
|
+
*/
|
|
128
|
+
getUserSessions(realm: any, userId: any, options?: O): RestResponse<Model.UserSession[]>;
|
|
129
|
+
/**
|
|
130
|
+
* HTTP POST /user/{realm}/users
|
|
131
|
+
* Java method: org.openremote.model.security.UserResource.create
|
|
132
|
+
*/
|
|
133
|
+
create(realm: any, user: Model.User, options?: O): RestResponse<Model.User>;
|
|
134
|
+
/**
|
|
135
|
+
* HTTP PUT /user/{realm}/users
|
|
141
136
|
* Java method: org.openremote.model.security.UserResource.update
|
|
142
137
|
*/
|
|
143
|
-
update(realm:
|
|
138
|
+
update(realm: any, user: Model.User, options?: O): RestResponse<Model.User>;
|
|
144
139
|
/**
|
|
145
|
-
* HTTP
|
|
146
|
-
* Java method: org.openremote.model.security.UserResource.
|
|
140
|
+
* HTTP DELETE /user/{realm}/users/{userId}
|
|
141
|
+
* Java method: org.openremote.model.security.UserResource.delete
|
|
147
142
|
*/
|
|
148
|
-
|
|
143
|
+
delete(realm: any, userId: any, options?: O): RestResponse<void>;
|
|
149
144
|
/**
|
|
150
|
-
* HTTP GET /user/{realm}/{
|
|
151
|
-
* Java method: org.openremote.model.security.UserResource.
|
|
145
|
+
* HTTP GET /user/{realm}/{clientId}/roles
|
|
146
|
+
* Java method: org.openremote.model.security.UserResource.getClientRoles
|
|
152
147
|
*/
|
|
153
|
-
|
|
154
|
-
}
|
|
155
|
-
export declare class ConsoleResourceClient<O> {
|
|
156
|
-
protected httpClient: HttpClient<O>;
|
|
157
|
-
constructor(httpClient: HttpClient<O>);
|
|
148
|
+
getClientRoles(realm: any, clientId: any, options?: O): RestResponse<Model.Role[]>;
|
|
158
149
|
/**
|
|
159
|
-
* HTTP
|
|
160
|
-
* Java method: org.openremote.model.
|
|
150
|
+
* HTTP PUT /user/{realm}/{clientId}/roles
|
|
151
|
+
* Java method: org.openremote.model.security.UserResource.updateClientRoles
|
|
161
152
|
*/
|
|
162
|
-
|
|
153
|
+
updateClientRoles(realm: any, clientId: any, roles: Model.Role[], options?: O): RestResponse<void>;
|
|
154
|
+
/**
|
|
155
|
+
* HTTP GET /user/{realm}/{userId}
|
|
156
|
+
* Java method: org.openremote.model.security.UserResource.get
|
|
157
|
+
*/
|
|
158
|
+
get(realm: any, userId: any, options?: O): RestResponse<Model.User>;
|
|
163
159
|
}
|
|
164
160
|
export declare class SyslogResourceClient<O> {
|
|
165
161
|
protected httpClient: HttpClient<O>;
|
|
@@ -185,181 +181,82 @@ export declare class SyslogResourceClient<O> {
|
|
|
185
181
|
*/
|
|
186
182
|
getEvents(queryParams?: {
|
|
187
183
|
level?: Model.SyslogLevel;
|
|
188
|
-
per_page?:
|
|
189
|
-
page?:
|
|
190
|
-
from?:
|
|
191
|
-
to?:
|
|
184
|
+
per_page?: any;
|
|
185
|
+
page?: any;
|
|
186
|
+
from?: any;
|
|
187
|
+
to?: any;
|
|
192
188
|
category?: Model.SyslogCategory[];
|
|
193
|
-
subCategory?:
|
|
189
|
+
subCategory?: any[];
|
|
194
190
|
}, options?: O): RestResponse<any>;
|
|
195
191
|
}
|
|
196
|
-
export declare class
|
|
192
|
+
export declare class ProvisioningResourceClient<O> {
|
|
197
193
|
protected httpClient: HttpClient<O>;
|
|
198
194
|
constructor(httpClient: HttpClient<O>);
|
|
199
195
|
/**
|
|
200
|
-
* HTTP POST /
|
|
201
|
-
* Java method: org.openremote.model.
|
|
202
|
-
*/
|
|
203
|
-
createGlobalRuleset(ruleset: Model.GlobalRuleset, options?: O): RestResponse<number>;
|
|
204
|
-
/**
|
|
205
|
-
* HTTP GET /rules
|
|
206
|
-
* Java method: org.openremote.model.rules.RulesResource.getGlobalRulesets
|
|
207
|
-
*/
|
|
208
|
-
getGlobalRulesets(queryParams?: {
|
|
209
|
-
language?: Model.RulesetLang[];
|
|
210
|
-
fullyPopulate?: boolean;
|
|
211
|
-
}, options?: O): RestResponse<Model.GlobalRuleset[]>;
|
|
212
|
-
/**
|
|
213
|
-
* HTTP POST /rules/asset
|
|
214
|
-
* Java method: org.openremote.model.rules.RulesResource.createAssetRuleset
|
|
215
|
-
*/
|
|
216
|
-
createAssetRuleset(ruleset: Model.AssetRuleset, options?: O): RestResponse<number>;
|
|
217
|
-
/**
|
|
218
|
-
* HTTP GET /rules/asset/for/{assetId}
|
|
219
|
-
* Java method: org.openremote.model.rules.RulesResource.getAssetRulesets
|
|
220
|
-
*/
|
|
221
|
-
getAssetRulesets(assetId: string, queryParams?: {
|
|
222
|
-
language?: Model.RulesetLang[];
|
|
223
|
-
fullyPopulate?: boolean;
|
|
224
|
-
}, options?: O): RestResponse<Model.AssetRuleset[]>;
|
|
225
|
-
/**
|
|
226
|
-
* HTTP DELETE /rules/asset/{id}
|
|
227
|
-
* Java method: org.openremote.model.rules.RulesResource.deleteAssetRuleset
|
|
228
|
-
*/
|
|
229
|
-
deleteAssetRuleset(id: number, options?: O): RestResponse<void>;
|
|
230
|
-
/**
|
|
231
|
-
* HTTP GET /rules/asset/{id}
|
|
232
|
-
* Java method: org.openremote.model.rules.RulesResource.getAssetRuleset
|
|
233
|
-
*/
|
|
234
|
-
getAssetRuleset(id: number, options?: O): RestResponse<Model.AssetRuleset>;
|
|
235
|
-
/**
|
|
236
|
-
* HTTP PUT /rules/asset/{id}
|
|
237
|
-
* Java method: org.openremote.model.rules.RulesResource.updateAssetRuleset
|
|
196
|
+
* HTTP POST /provisioning
|
|
197
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
|
|
238
198
|
*/
|
|
239
|
-
|
|
199
|
+
createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
|
|
240
200
|
/**
|
|
241
|
-
* HTTP GET /
|
|
242
|
-
* Java method: org.openremote.model.
|
|
201
|
+
* HTTP GET /provisioning
|
|
202
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
|
|
243
203
|
*/
|
|
244
|
-
|
|
245
|
-
/**
|
|
246
|
-
* HTTP GET /rules/info/asset/{assetId}
|
|
247
|
-
* Java method: org.openremote.model.rules.RulesResource.getAssetEngineInfo
|
|
248
|
-
*/
|
|
249
|
-
getAssetEngineInfo(assetId: string, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
250
|
-
/**
|
|
251
|
-
* HTTP GET /rules/info/global
|
|
252
|
-
* Java method: org.openremote.model.rules.RulesResource.getGlobalEngineInfo
|
|
253
|
-
*/
|
|
254
|
-
getGlobalEngineInfo(options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
255
|
-
/**
|
|
256
|
-
* HTTP GET /rules/info/tenant/{realm}
|
|
257
|
-
* Java method: org.openremote.model.rules.RulesResource.getTenantEngineInfo
|
|
258
|
-
*/
|
|
259
|
-
getTenantEngineInfo(realm: string, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
260
|
-
/**
|
|
261
|
-
* HTTP POST /rules/tenant
|
|
262
|
-
* Java method: org.openremote.model.rules.RulesResource.createTenantRuleset
|
|
263
|
-
*/
|
|
264
|
-
createTenantRuleset(ruleset: Model.TenantRuleset, options?: O): RestResponse<number>;
|
|
265
|
-
/**
|
|
266
|
-
* HTTP GET /rules/tenant/for/{realm}
|
|
267
|
-
* Java method: org.openremote.model.rules.RulesResource.getTenantRulesets
|
|
268
|
-
*/
|
|
269
|
-
getTenantRulesets(realm: string, queryParams?: {
|
|
270
|
-
language?: Model.RulesetLang[];
|
|
271
|
-
fullyPopulate?: boolean;
|
|
272
|
-
}, options?: O): RestResponse<Model.TenantRuleset[]>;
|
|
204
|
+
getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
|
|
273
205
|
/**
|
|
274
|
-
* HTTP DELETE /
|
|
275
|
-
* Java method: org.openremote.model.
|
|
206
|
+
* HTTP DELETE /provisioning/{id}
|
|
207
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
|
|
276
208
|
*/
|
|
277
|
-
|
|
209
|
+
deleteProvisioningConfig(id: any, options?: O): RestResponse<void>;
|
|
278
210
|
/**
|
|
279
|
-
* HTTP
|
|
280
|
-
* Java method: org.openremote.model.
|
|
211
|
+
* HTTP PUT /provisioning/{id}
|
|
212
|
+
* Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
|
|
281
213
|
*/
|
|
282
|
-
|
|
283
|
-
/**
|
|
284
|
-
* HTTP PUT /rules/tenant/{id}
|
|
285
|
-
* Java method: org.openremote.model.rules.RulesResource.updateTenantRuleset
|
|
286
|
-
*/
|
|
287
|
-
updateTenantRuleset(id: number, ruleset: Model.TenantRuleset, options?: O): RestResponse<void>;
|
|
288
|
-
/**
|
|
289
|
-
* HTTP DELETE /rules/{id}
|
|
290
|
-
* Java method: org.openremote.model.rules.RulesResource.deleteGlobalRuleset
|
|
291
|
-
*/
|
|
292
|
-
deleteGlobalRuleset(id: number, options?: O): RestResponse<void>;
|
|
293
|
-
/**
|
|
294
|
-
* HTTP GET /rules/{id}
|
|
295
|
-
* Java method: org.openremote.model.rules.RulesResource.getGlobalRuleset
|
|
296
|
-
*/
|
|
297
|
-
getGlobalRuleset(id: number, options?: O): RestResponse<Model.GlobalRuleset>;
|
|
298
|
-
/**
|
|
299
|
-
* HTTP PUT /rules/{id}
|
|
300
|
-
* Java method: org.openremote.model.rules.RulesResource.updateGlobalRuleset
|
|
301
|
-
*/
|
|
302
|
-
updateGlobalRuleset(id: number, ruleset: Model.GlobalRuleset, options?: O): RestResponse<void>;
|
|
214
|
+
updateProvisioningConfig(id: any, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
|
|
303
215
|
}
|
|
304
216
|
export declare class AssetModelResourceClient<O> {
|
|
305
217
|
protected httpClient: HttpClient<O>;
|
|
306
218
|
constructor(httpClient: HttpClient<O>);
|
|
307
219
|
/**
|
|
308
|
-
* HTTP GET /model/
|
|
220
|
+
* HTTP GET /model/assetDescriptors
|
|
309
221
|
* Java method: org.openremote.model.asset.AssetModelResource.getAssetDescriptors
|
|
310
222
|
*/
|
|
311
|
-
getAssetDescriptors(
|
|
223
|
+
getAssetDescriptors(queryParams?: {
|
|
224
|
+
parentId?: any;
|
|
225
|
+
parentType?: any;
|
|
226
|
+
}, options?: O): RestResponse<Model.AssetDescriptor[]>;
|
|
312
227
|
/**
|
|
313
|
-
* HTTP GET /model/
|
|
314
|
-
* Java method: org.openremote.model.asset.AssetModelResource.
|
|
228
|
+
* HTTP GET /model/assetInfo/{assetType}
|
|
229
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfo
|
|
315
230
|
*/
|
|
316
|
-
|
|
231
|
+
getAssetInfo(assetType: any, queryParams?: {
|
|
232
|
+
parentId?: any;
|
|
233
|
+
}, options?: O): RestResponse<Model.AssetTypeInfo>;
|
|
317
234
|
/**
|
|
318
|
-
* HTTP GET /model/
|
|
319
|
-
* Java method: org.openremote.model.asset.AssetModelResource.
|
|
235
|
+
* HTTP GET /model/assetInfos
|
|
236
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getAssetInfos
|
|
320
237
|
*/
|
|
321
|
-
|
|
238
|
+
getAssetInfos(queryParams?: {
|
|
239
|
+
parentId?: any;
|
|
240
|
+
parentType?: any;
|
|
241
|
+
}, options?: O): RestResponse<Model.AssetTypeInfo[]>;
|
|
322
242
|
/**
|
|
323
|
-
* HTTP GET /model/
|
|
243
|
+
* HTTP GET /model/metaItemDescriptors
|
|
324
244
|
* Java method: org.openremote.model.asset.AssetModelResource.getMetaItemDescriptors
|
|
325
245
|
*/
|
|
326
|
-
getMetaItemDescriptors(
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
/**
|
|
332
|
-
* HTTP DELETE /gateway/connection
|
|
333
|
-
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnections
|
|
334
|
-
*/
|
|
335
|
-
deleteConnections(queryParams?: {
|
|
336
|
-
realm?: string[];
|
|
337
|
-
}, options?: O): RestResponse<void>;
|
|
338
|
-
/**
|
|
339
|
-
* HTTP GET /gateway/connection
|
|
340
|
-
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnections
|
|
341
|
-
*/
|
|
342
|
-
getConnections(options?: O): RestResponse<Model.GatewayConnection[]>;
|
|
343
|
-
/**
|
|
344
|
-
* HTTP DELETE /gateway/connection/{realm}
|
|
345
|
-
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnection
|
|
346
|
-
*/
|
|
347
|
-
deleteConnection(realm: string, options?: O): RestResponse<void>;
|
|
348
|
-
/**
|
|
349
|
-
* HTTP GET /gateway/connection/{realm}
|
|
350
|
-
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnection
|
|
351
|
-
*/
|
|
352
|
-
getConnection(realm: string, options?: O): RestResponse<Model.GatewayConnection>;
|
|
353
|
-
/**
|
|
354
|
-
* HTTP PUT /gateway/connection/{realm}
|
|
355
|
-
* Java method: org.openremote.model.gateway.GatewayClientResource.setConnection
|
|
356
|
-
*/
|
|
357
|
-
setConnection(realm: string, connection: Model.GatewayConnection, options?: O): RestResponse<void>;
|
|
246
|
+
getMetaItemDescriptors(queryParams?: {
|
|
247
|
+
parentId?: any;
|
|
248
|
+
}, options?: O): RestResponse<{
|
|
249
|
+
[index: string]: Model.MetaItemDescriptor;
|
|
250
|
+
}>;
|
|
358
251
|
/**
|
|
359
|
-
* HTTP GET /
|
|
360
|
-
* Java method: org.openremote.model.
|
|
252
|
+
* HTTP GET /model/valueDescriptors
|
|
253
|
+
* Java method: org.openremote.model.asset.AssetModelResource.getValueDescriptors
|
|
361
254
|
*/
|
|
362
|
-
|
|
255
|
+
getValueDescriptors(queryParams?: {
|
|
256
|
+
parentId?: any;
|
|
257
|
+
}, options?: O): RestResponse<{
|
|
258
|
+
[index: string]: Model.ValueDescriptor;
|
|
259
|
+
}>;
|
|
363
260
|
}
|
|
364
261
|
export declare class NotificationResourceClient<O> {
|
|
365
262
|
protected httpClient: HttpClient<O>;
|
|
@@ -369,26 +266,26 @@ export declare class NotificationResourceClient<O> {
|
|
|
369
266
|
* Java method: org.openremote.model.notification.NotificationResource.getNotifications
|
|
370
267
|
*/
|
|
371
268
|
getNotifications(queryParams?: {
|
|
372
|
-
id?:
|
|
373
|
-
type?:
|
|
374
|
-
from?:
|
|
375
|
-
to?:
|
|
376
|
-
|
|
377
|
-
userId?:
|
|
378
|
-
assetId?:
|
|
269
|
+
id?: any;
|
|
270
|
+
type?: any;
|
|
271
|
+
from?: any;
|
|
272
|
+
to?: any;
|
|
273
|
+
realmId?: any;
|
|
274
|
+
userId?: any;
|
|
275
|
+
assetId?: any;
|
|
379
276
|
}, options?: O): RestResponse<Model.SentNotification[]>;
|
|
380
277
|
/**
|
|
381
278
|
* HTTP DELETE /notification
|
|
382
279
|
* Java method: org.openremote.model.notification.NotificationResource.removeNotifications
|
|
383
280
|
*/
|
|
384
281
|
removeNotifications(queryParams?: {
|
|
385
|
-
id?:
|
|
386
|
-
type?:
|
|
387
|
-
from?:
|
|
388
|
-
to?:
|
|
389
|
-
|
|
390
|
-
userId?:
|
|
391
|
-
assetId?:
|
|
282
|
+
id?: any;
|
|
283
|
+
type?: any;
|
|
284
|
+
from?: any;
|
|
285
|
+
to?: any;
|
|
286
|
+
realmId?: any;
|
|
287
|
+
userId?: any;
|
|
288
|
+
assetId?: any;
|
|
392
289
|
}, options?: O): RestResponse<void>;
|
|
393
290
|
/**
|
|
394
291
|
* HTTP POST /notification/alert
|
|
@@ -399,50 +296,83 @@ export declare class NotificationResourceClient<O> {
|
|
|
399
296
|
* HTTP DELETE /notification/{notificationId}
|
|
400
297
|
* Java method: org.openremote.model.notification.NotificationResource.removeNotification
|
|
401
298
|
*/
|
|
402
|
-
removeNotification(notificationId:
|
|
299
|
+
removeNotification(notificationId: any, options?: O): RestResponse<void>;
|
|
403
300
|
/**
|
|
404
301
|
* HTTP PUT /notification/{notificationId}/acknowledged
|
|
405
302
|
* Java method: org.openremote.model.notification.NotificationResource.notificationAcknowledged
|
|
406
303
|
*/
|
|
407
|
-
notificationAcknowledged(notificationId:
|
|
408
|
-
targetId?:
|
|
304
|
+
notificationAcknowledged(notificationId: any, acknowledgement: any, queryParams?: {
|
|
305
|
+
targetId?: any;
|
|
409
306
|
}, options?: O): RestResponse<void>;
|
|
410
307
|
/**
|
|
411
308
|
* HTTP PUT /notification/{notificationId}/delivered
|
|
412
309
|
* Java method: org.openremote.model.notification.NotificationResource.notificationDelivered
|
|
413
310
|
*/
|
|
414
|
-
notificationDelivered(notificationId:
|
|
415
|
-
targetId?:
|
|
311
|
+
notificationDelivered(notificationId: any, queryParams?: {
|
|
312
|
+
targetId?: any;
|
|
416
313
|
}, options?: O): RestResponse<void>;
|
|
417
314
|
}
|
|
418
|
-
export declare class
|
|
315
|
+
export declare class GatewayClientResourceClient<O> {
|
|
419
316
|
protected httpClient: HttpClient<O>;
|
|
420
317
|
constructor(httpClient: HttpClient<O>);
|
|
421
318
|
/**
|
|
422
|
-
* HTTP
|
|
423
|
-
* Java method: org.openremote.model.
|
|
319
|
+
* HTTP DELETE /gateway/connection
|
|
320
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnections
|
|
321
|
+
*/
|
|
322
|
+
deleteConnections(queryParams?: {
|
|
323
|
+
realm?: any[];
|
|
324
|
+
}, options?: O): RestResponse<void>;
|
|
325
|
+
/**
|
|
326
|
+
* HTTP GET /gateway/connection
|
|
327
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnections
|
|
328
|
+
*/
|
|
329
|
+
getConnections(options?: O): RestResponse<Model.GatewayConnection[]>;
|
|
330
|
+
/**
|
|
331
|
+
* HTTP DELETE /gateway/connection/{realm}
|
|
332
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.deleteConnection
|
|
333
|
+
*/
|
|
334
|
+
deleteConnection(realm: any, options?: O): RestResponse<void>;
|
|
335
|
+
/**
|
|
336
|
+
* HTTP GET /gateway/connection/{realm}
|
|
337
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnection
|
|
424
338
|
*/
|
|
425
|
-
|
|
339
|
+
getConnection(realm: any, options?: O): RestResponse<Model.GatewayConnection>;
|
|
426
340
|
/**
|
|
427
|
-
* HTTP
|
|
428
|
-
* Java method: org.openremote.model.
|
|
341
|
+
* HTTP PUT /gateway/connection/{realm}
|
|
342
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.setConnection
|
|
429
343
|
*/
|
|
430
|
-
|
|
344
|
+
setConnection(realm: any, connection: Model.GatewayConnection, options?: O): RestResponse<void>;
|
|
431
345
|
/**
|
|
432
|
-
* HTTP
|
|
433
|
-
* Java method: org.openremote.model.
|
|
346
|
+
* HTTP GET /gateway/status/{realm}
|
|
347
|
+
* Java method: org.openremote.model.gateway.GatewayClientResource.getConnectionStatus
|
|
434
348
|
*/
|
|
435
|
-
|
|
349
|
+
getConnectionStatus(realm: any, options?: O): RestResponse<Model.ConnectionStatus>;
|
|
350
|
+
}
|
|
351
|
+
export declare class AssetDatapointResourceClient<O> {
|
|
352
|
+
protected httpClient: HttpClient<O>;
|
|
353
|
+
constructor(httpClient: HttpClient<O>);
|
|
354
|
+
/**
|
|
355
|
+
* HTTP GET /asset/datapoint/export
|
|
356
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport
|
|
357
|
+
*/
|
|
358
|
+
getDatapointExport(queryParams?: {
|
|
359
|
+
attributeRefs?: any;
|
|
360
|
+
fromTimestamp?: number;
|
|
361
|
+
toTimestamp?: number;
|
|
362
|
+
}, options?: O): RestResponse<any>;
|
|
436
363
|
/**
|
|
437
|
-
* HTTP GET /
|
|
438
|
-
* Java method: org.openremote.model.
|
|
364
|
+
* HTTP GET /asset/datapoint/periods
|
|
365
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
|
|
439
366
|
*/
|
|
440
|
-
|
|
367
|
+
getDatapointPeriod(queryParams?: {
|
|
368
|
+
assetId?: any;
|
|
369
|
+
attributeName?: any;
|
|
370
|
+
}, options?: O): RestResponse<Model.DatapointPeriod>;
|
|
441
371
|
/**
|
|
442
|
-
* HTTP
|
|
443
|
-
* Java method: org.openremote.model.
|
|
372
|
+
* HTTP POST /asset/datapoint/{assetId}/{attributeName}
|
|
373
|
+
* Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
|
|
444
374
|
*/
|
|
445
|
-
|
|
375
|
+
getDatapoints(assetId: any, attributeName: any, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
446
376
|
}
|
|
447
377
|
export declare class AssetResourceClient<O> {
|
|
448
378
|
protected httpClient: HttpClient<O>;
|
|
@@ -457,30 +387,25 @@ export declare class AssetResourceClient<O> {
|
|
|
457
387
|
* Java method: org.openremote.model.asset.AssetResource.delete
|
|
458
388
|
*/
|
|
459
389
|
delete(queryParams?: {
|
|
460
|
-
assetId?:
|
|
390
|
+
assetId?: any[];
|
|
461
391
|
}, options?: O): RestResponse<void>;
|
|
462
392
|
/**
|
|
463
|
-
* HTTP
|
|
464
|
-
* Java method: org.openremote.model.asset.AssetResource.
|
|
465
|
-
*/
|
|
466
|
-
deleteUserAsset(realm: string, userId: string, assetId: string, options?: O): RestResponse<void>;
|
|
467
|
-
/**
|
|
468
|
-
* HTTP GET /asset/partial/{assetId}
|
|
469
|
-
* Java method: org.openremote.model.asset.AssetResource.getPartial
|
|
393
|
+
* HTTP PUT /asset/attributes
|
|
394
|
+
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValues
|
|
470
395
|
*/
|
|
471
|
-
|
|
396
|
+
writeAttributeValues(attributeStates: Model.AttributeState[], options?: O): RestResponse<Model.AttributeWriteResult[]>;
|
|
472
397
|
/**
|
|
473
|
-
* HTTP
|
|
474
|
-
* Java method: org.openremote.model.asset.AssetResource.
|
|
398
|
+
* HTTP DELETE /asset/parent
|
|
399
|
+
* Java method: org.openremote.model.asset.AssetResource.updateNoneParent
|
|
475
400
|
*/
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
}, options?: O): RestResponse<
|
|
401
|
+
updateNoneParent(queryParams?: {
|
|
402
|
+
assetIds?: any[];
|
|
403
|
+
}, options?: O): RestResponse<void>;
|
|
479
404
|
/**
|
|
480
|
-
* HTTP
|
|
481
|
-
* Java method: org.openremote.model.asset.AssetResource.
|
|
405
|
+
* HTTP GET /asset/partial/{assetId}
|
|
406
|
+
* Java method: org.openremote.model.asset.AssetResource.getPartial
|
|
482
407
|
*/
|
|
483
|
-
|
|
408
|
+
getPartial(assetId: any, options?: O): RestResponse<Model.Asset>;
|
|
484
409
|
/**
|
|
485
410
|
* HTTP POST /asset/query
|
|
486
411
|
* Java method: org.openremote.model.asset.AssetResource.queryAssets
|
|
@@ -493,131 +418,391 @@ export declare class AssetResourceClient<O> {
|
|
|
493
418
|
getCurrentUserAssets(options?: O): RestResponse<Model.Asset[]>;
|
|
494
419
|
/**
|
|
495
420
|
* HTTP POST /asset/user/link
|
|
496
|
-
* Java method: org.openremote.model.asset.AssetResource.
|
|
421
|
+
* Java method: org.openremote.model.asset.AssetResource.createUserAssetLinks
|
|
497
422
|
*/
|
|
498
|
-
|
|
423
|
+
createUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void>;
|
|
499
424
|
/**
|
|
500
425
|
* HTTP GET /asset/user/link
|
|
501
426
|
* Java method: org.openremote.model.asset.AssetResource.getUserAssetLinks
|
|
502
427
|
*/
|
|
503
428
|
getUserAssetLinks(queryParams?: {
|
|
504
|
-
realm?:
|
|
505
|
-
userId?:
|
|
506
|
-
assetId?:
|
|
507
|
-
}, options?: O): RestResponse<Model.
|
|
429
|
+
realm?: any;
|
|
430
|
+
userId?: any;
|
|
431
|
+
assetId?: any;
|
|
432
|
+
}, options?: O): RestResponse<Model.UserAssetLink[]>;
|
|
433
|
+
/**
|
|
434
|
+
* HTTP POST /asset/user/link/delete
|
|
435
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLinks
|
|
436
|
+
*/
|
|
437
|
+
deleteUserAssetLinks(userAssets: Model.UserAssetLink[], options?: O): RestResponse<void>;
|
|
438
|
+
/**
|
|
439
|
+
* HTTP DELETE /asset/user/link/{realm}/{userId}
|
|
440
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteAllUserAssetLinks
|
|
441
|
+
*/
|
|
442
|
+
deleteAllUserAssetLinks(realm: any, userId: any, options?: O): RestResponse<void>;
|
|
443
|
+
/**
|
|
444
|
+
* HTTP DELETE /asset/user/link/{realm}/{userId}/{assetId}
|
|
445
|
+
* Java method: org.openremote.model.asset.AssetResource.deleteUserAssetLink
|
|
446
|
+
*/
|
|
447
|
+
deleteUserAssetLink(realm: any, userId: any, assetId: any, options?: O): RestResponse<void>;
|
|
508
448
|
/**
|
|
509
449
|
* HTTP GET /asset/{assetId}
|
|
510
450
|
* Java method: org.openremote.model.asset.AssetResource.get
|
|
511
451
|
*/
|
|
512
|
-
get(assetId:
|
|
452
|
+
get(assetId: any, options?: O): RestResponse<Model.Asset>;
|
|
513
453
|
/**
|
|
514
454
|
* HTTP PUT /asset/{assetId}
|
|
515
455
|
* Java method: org.openremote.model.asset.AssetResource.update
|
|
516
456
|
*/
|
|
517
|
-
update(assetId:
|
|
457
|
+
update(assetId: any, asset: Model.Asset, options?: O): RestResponse<Model.Asset>;
|
|
518
458
|
/**
|
|
459
|
+
* Write to a single attribute
|
|
519
460
|
* HTTP PUT /asset/{assetId}/attribute/{attributeName}
|
|
520
461
|
* Java method: org.openremote.model.asset.AssetResource.writeAttributeValue
|
|
521
462
|
*/
|
|
522
|
-
writeAttributeValue(assetId:
|
|
463
|
+
writeAttributeValue(assetId: any, attributeName: any, value: any, options?: O): RestResponse<Model.AttributeWriteResult>;
|
|
464
|
+
/**
|
|
465
|
+
* HTTP PUT /asset/{parentAssetId}/child
|
|
466
|
+
* Java method: org.openremote.model.asset.AssetResource.updateParent
|
|
467
|
+
*/
|
|
468
|
+
updateParent(parentAssetId: any, queryParams?: {
|
|
469
|
+
assetIds?: any[];
|
|
470
|
+
}, options?: O): RestResponse<void>;
|
|
523
471
|
}
|
|
524
|
-
export declare class
|
|
472
|
+
export declare class AppResourceClient<O> {
|
|
525
473
|
protected httpClient: HttpClient<O>;
|
|
526
474
|
constructor(httpClient: HttpClient<O>);
|
|
527
475
|
/**
|
|
528
|
-
* HTTP GET /
|
|
529
|
-
* Java method: org.openremote.model.
|
|
476
|
+
* HTTP GET /apps
|
|
477
|
+
* Java method: org.openremote.model.apps.AppResource.getApps
|
|
530
478
|
*/
|
|
531
|
-
|
|
479
|
+
getApps(options?: O): RestResponse<any[]>;
|
|
532
480
|
/**
|
|
533
|
-
* HTTP
|
|
534
|
-
* Java method: org.openremote.model.
|
|
481
|
+
* HTTP GET /apps/consoleConfig
|
|
482
|
+
* Java method: org.openremote.model.apps.AppResource.getConsoleConfig
|
|
535
483
|
*/
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
484
|
+
getConsoleConfig(options?: O): RestResponse<any>;
|
|
485
|
+
/**
|
|
486
|
+
* HTTP GET /apps/info
|
|
487
|
+
* Java method: org.openremote.model.apps.AppResource.getAppInfos
|
|
488
|
+
*/
|
|
489
|
+
getAppInfos(options?: O): RestResponse<any>;
|
|
490
|
+
}
|
|
491
|
+
export declare class MapResourceClient<O> {
|
|
492
|
+
protected httpClient: HttpClient<O>;
|
|
493
|
+
constructor(httpClient: HttpClient<O>);
|
|
540
494
|
/**
|
|
541
|
-
* HTTP GET /
|
|
542
|
-
* Java method: org.openremote.model.
|
|
495
|
+
* HTTP GET /map
|
|
496
|
+
* Java method: org.openremote.model.map.MapResource.getSettings
|
|
543
497
|
*/
|
|
544
|
-
|
|
545
|
-
[
|
|
498
|
+
getSettings(options?: O): RestResponse<{
|
|
499
|
+
[id: string]: any;
|
|
546
500
|
}>;
|
|
547
501
|
/**
|
|
548
|
-
* HTTP
|
|
549
|
-
* Java method: org.openremote.model.
|
|
502
|
+
* HTTP PUT /map
|
|
503
|
+
* Java method: org.openremote.model.map.MapResource.saveSettings
|
|
550
504
|
*/
|
|
551
|
-
|
|
505
|
+
saveSettings(mapConfig: {
|
|
506
|
+
[index: string]: Model.MapRealmConfig;
|
|
507
|
+
}, options?: O): RestResponse<any>;
|
|
552
508
|
/**
|
|
553
|
-
* HTTP GET /
|
|
554
|
-
* Java method: org.openremote.model.
|
|
509
|
+
* HTTP GET /map/js
|
|
510
|
+
* Java method: org.openremote.model.map.MapResource.getSettingsJs
|
|
555
511
|
*/
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
512
|
+
getSettingsJs(options?: O): RestResponse<{
|
|
513
|
+
[id: string]: any;
|
|
514
|
+
}>;
|
|
515
|
+
/**
|
|
516
|
+
* HTTP GET /map/tile/{zoom}/{column}/{row}
|
|
517
|
+
* Java method: org.openremote.model.map.MapResource.getTile
|
|
518
|
+
*/
|
|
519
|
+
getTile(zoom: number, column: number, row: number, options?: O): RestResponse<any>;
|
|
520
|
+
}
|
|
521
|
+
export declare class ConsoleResourceClient<O> {
|
|
522
|
+
protected httpClient: HttpClient<O>;
|
|
523
|
+
constructor(httpClient: HttpClient<O>);
|
|
524
|
+
/**
|
|
525
|
+
* HTTP POST /console/register
|
|
526
|
+
* Java method: org.openremote.model.console.ConsoleResource.register
|
|
527
|
+
*/
|
|
528
|
+
register(consoleRegistration: Model.ConsoleRegistration, options?: O): RestResponse<Model.ConsoleRegistration>;
|
|
529
|
+
}
|
|
530
|
+
export declare class StatusResourceClient<O> {
|
|
531
|
+
protected httpClient: HttpClient<O>;
|
|
532
|
+
constructor(httpClient: HttpClient<O>);
|
|
533
|
+
/**
|
|
534
|
+
* HTTP GET /health
|
|
535
|
+
* Java method: org.openremote.model.system.StatusResource.getHealthStatus
|
|
536
|
+
*/
|
|
537
|
+
getHealthStatus(options?: O): RestResponse<{
|
|
538
|
+
[index: string]: any;
|
|
539
|
+
}>;
|
|
540
|
+
/**
|
|
541
|
+
* HTTP GET /info
|
|
542
|
+
* Java method: org.openremote.model.system.StatusResource.getInfo
|
|
543
|
+
*/
|
|
544
|
+
getInfo(options?: O): RestResponse<{
|
|
545
|
+
[index: string]: any;
|
|
546
|
+
}>;
|
|
547
|
+
}
|
|
548
|
+
export declare class RealmResourceClient<O> {
|
|
549
|
+
protected httpClient: HttpClient<O>;
|
|
550
|
+
constructor(httpClient: HttpClient<O>);
|
|
551
|
+
/**
|
|
552
|
+
* HTTP POST /realm
|
|
553
|
+
* Java method: org.openremote.model.security.RealmResource.create
|
|
554
|
+
*/
|
|
555
|
+
create(realm: Model.Realm, options?: O): RestResponse<void>;
|
|
556
|
+
/**
|
|
557
|
+
* HTTP GET /realm
|
|
558
|
+
* Java method: org.openremote.model.security.RealmResource.getAll
|
|
559
|
+
*/
|
|
560
|
+
getAll(options?: O): RestResponse<Model.Realm[]>;
|
|
561
|
+
/**
|
|
562
|
+
* HTTP GET /realm/accessible
|
|
563
|
+
* Java method: org.openremote.model.security.RealmResource.getAccessible
|
|
564
|
+
*/
|
|
565
|
+
getAccessible(options?: O): RestResponse<Model.Realm[]>;
|
|
566
|
+
/**
|
|
567
|
+
* HTTP DELETE /realm/{name}
|
|
568
|
+
* Java method: org.openremote.model.security.RealmResource.delete
|
|
569
|
+
*/
|
|
570
|
+
delete(name: any, options?: O): RestResponse<void>;
|
|
571
|
+
/**
|
|
572
|
+
* HTTP GET /realm/{name}
|
|
573
|
+
* Java method: org.openremote.model.security.RealmResource.get
|
|
574
|
+
*/
|
|
575
|
+
get(name: any, options?: O): RestResponse<Model.Realm>;
|
|
576
|
+
/**
|
|
577
|
+
* HTTP PUT /realm/{name}
|
|
578
|
+
* Java method: org.openremote.model.security.RealmResource.update
|
|
579
|
+
*/
|
|
580
|
+
update(name: any, realm: Model.Realm, options?: O): RestResponse<void>;
|
|
581
|
+
}
|
|
582
|
+
export declare class FlowResourceClient<O> {
|
|
583
|
+
protected httpClient: HttpClient<O>;
|
|
584
|
+
constructor(httpClient: HttpClient<O>);
|
|
585
|
+
/**
|
|
586
|
+
* HTTP GET /flow
|
|
587
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitions
|
|
588
|
+
*/
|
|
589
|
+
getAllNodeDefinitions(options?: O): RestResponse<Model.Node[]>;
|
|
590
|
+
/**
|
|
591
|
+
* HTTP GET /flow/{name}
|
|
592
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getNodeDefinition
|
|
593
|
+
*/
|
|
594
|
+
getNodeDefinition(name: any, options?: O): RestResponse<Model.Node>;
|
|
595
|
+
/**
|
|
596
|
+
* HTTP GET /flow/{type}
|
|
597
|
+
* Java method: org.openremote.model.rules.flow.FlowResource.getAllNodeDefinitionsByType
|
|
598
|
+
*/
|
|
599
|
+
getAllNodeDefinitionsByType(type: Model.NodeType, options?: O): RestResponse<Model.Node[]>;
|
|
600
|
+
}
|
|
601
|
+
export declare class AssetPredictedDatapointResourceClient<O> {
|
|
602
|
+
protected httpClient: HttpClient<O>;
|
|
603
|
+
constructor(httpClient: HttpClient<O>);
|
|
604
|
+
/**
|
|
605
|
+
* HTTP POST /asset/predicted/{assetId}/{attributeName}
|
|
606
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints
|
|
607
|
+
*/
|
|
608
|
+
getPredictedDatapoints(assetId: any, attributeName: any, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
|
|
609
|
+
/**
|
|
610
|
+
* HTTP PUT /asset/predicted/{assetId}/{attributeName}
|
|
611
|
+
* Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
|
|
612
|
+
*/
|
|
613
|
+
writePredictedDatapoints(assetId: any, attributeName: any, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void>;
|
|
614
|
+
}
|
|
615
|
+
export declare class ConfigurationResourceClient<O> {
|
|
616
|
+
protected httpClient: HttpClient<O>;
|
|
617
|
+
constructor(httpClient: HttpClient<O>);
|
|
618
|
+
/**
|
|
619
|
+
* HTTP PUT /configuration/manager
|
|
620
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.update
|
|
621
|
+
*/
|
|
622
|
+
update(managerConfiguration: any, options?: O): RestResponse<any>;
|
|
623
|
+
/**
|
|
624
|
+
* HTTP POST /configuration/manager/file
|
|
625
|
+
* Java method: org.openremote.model.manager.ConfigurationResource.fileUpload
|
|
626
|
+
*/
|
|
627
|
+
fileUpload(fileInfo: Model.FileInfo, queryParams?: {
|
|
628
|
+
path?: any;
|
|
629
|
+
}, options?: O): RestResponse<any>;
|
|
630
|
+
}
|
|
631
|
+
export declare class AgentResourceClient<O> {
|
|
632
|
+
protected httpClient: HttpClient<O>;
|
|
633
|
+
constructor(httpClient: HttpClient<O>);
|
|
634
|
+
/**
|
|
635
|
+
* HTTP GET /agent/assetDiscovery/{agentId}
|
|
636
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery
|
|
637
|
+
*/
|
|
638
|
+
doProtocolAssetDiscovery(agentId: any, queryParams?: {
|
|
639
|
+
realm?: any;
|
|
559
640
|
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
560
641
|
/**
|
|
561
|
-
* HTTP
|
|
562
|
-
* Java method: org.openremote.model.asset.agent.AgentResource.
|
|
642
|
+
* HTTP POST /agent/assetImport/{agentId}
|
|
643
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport
|
|
563
644
|
*/
|
|
564
|
-
|
|
645
|
+
doProtocolAssetImport(agentId: any, fileInfo: Model.FileInfo, queryParams?: {
|
|
646
|
+
realm?: any;
|
|
647
|
+
}, options?: O): RestResponse<Model.AssetTreeNode[]>;
|
|
565
648
|
/**
|
|
566
|
-
* HTTP
|
|
567
|
-
* Java method: org.openremote.model.asset.agent.AgentResource.
|
|
649
|
+
* HTTP GET /agent/instanceDiscovery/{agentType}
|
|
650
|
+
* Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery
|
|
568
651
|
*/
|
|
569
|
-
|
|
652
|
+
doProtocolInstanceDiscovery(agentType: any, queryParams?: {
|
|
653
|
+
parentId?: any;
|
|
654
|
+
realm?: any;
|
|
655
|
+
}, options?: O): RestResponse<Model.Agent[]>;
|
|
570
656
|
}
|
|
571
|
-
export declare class
|
|
657
|
+
export declare class RulesResourceClient<O> {
|
|
572
658
|
protected httpClient: HttpClient<O>;
|
|
573
659
|
constructor(httpClient: HttpClient<O>);
|
|
574
660
|
/**
|
|
575
|
-
* HTTP
|
|
576
|
-
* Java method: org.openremote.model.
|
|
661
|
+
* HTTP POST /rules
|
|
662
|
+
* Java method: org.openremote.model.rules.RulesResource.createGlobalRuleset
|
|
663
|
+
*/
|
|
664
|
+
createGlobalRuleset(ruleset: Model.GlobalRuleset, options?: O): RestResponse<number>;
|
|
665
|
+
/**
|
|
666
|
+
* HTTP GET /rules
|
|
667
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalRulesets
|
|
668
|
+
*/
|
|
669
|
+
getGlobalRulesets(queryParams?: {
|
|
670
|
+
language?: Model.RulesetLang[];
|
|
671
|
+
fullyPopulate?: boolean;
|
|
672
|
+
}, options?: O): RestResponse<Model.GlobalRuleset[]>;
|
|
673
|
+
/**
|
|
674
|
+
* HTTP POST /rules/asset
|
|
675
|
+
* Java method: org.openremote.model.rules.RulesResource.createAssetRuleset
|
|
676
|
+
*/
|
|
677
|
+
createAssetRuleset(ruleset: Model.AssetRuleset, options?: O): RestResponse<number>;
|
|
678
|
+
/**
|
|
679
|
+
* HTTP GET /rules/asset/for/{assetId}
|
|
680
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetRulesets
|
|
681
|
+
*/
|
|
682
|
+
getAssetRulesets(assetId: any, queryParams?: {
|
|
683
|
+
language?: Model.RulesetLang[];
|
|
684
|
+
fullyPopulate?: boolean;
|
|
685
|
+
}, options?: O): RestResponse<Model.AssetRuleset[]>;
|
|
686
|
+
/**
|
|
687
|
+
* HTTP DELETE /rules/asset/{id}
|
|
688
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteAssetRuleset
|
|
577
689
|
*/
|
|
578
|
-
|
|
690
|
+
deleteAssetRuleset(id: any, options?: O): RestResponse<void>;
|
|
579
691
|
/**
|
|
580
|
-
* HTTP GET /
|
|
581
|
-
* Java method: org.openremote.model.
|
|
692
|
+
* HTTP GET /rules/asset/{id}
|
|
693
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetRuleset
|
|
582
694
|
*/
|
|
583
|
-
|
|
695
|
+
getAssetRuleset(id: any, options?: O): RestResponse<Model.AssetRuleset>;
|
|
696
|
+
/**
|
|
697
|
+
* HTTP PUT /rules/asset/{id}
|
|
698
|
+
* Java method: org.openremote.model.rules.RulesResource.updateAssetRuleset
|
|
699
|
+
*/
|
|
700
|
+
updateAssetRuleset(id: any, ruleset: Model.AssetRuleset, options?: O): RestResponse<void>;
|
|
701
|
+
/**
|
|
702
|
+
* HTTP GET /rules/geofences/{assetId}
|
|
703
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetGeofences
|
|
704
|
+
*/
|
|
705
|
+
getAssetGeofences(assetId: any, options?: O): RestResponse<Model.GeofenceDefinition[]>;
|
|
706
|
+
/**
|
|
707
|
+
* HTTP GET /rules/info/asset/{assetId}
|
|
708
|
+
* Java method: org.openremote.model.rules.RulesResource.getAssetEngineInfo
|
|
709
|
+
*/
|
|
710
|
+
getAssetEngineInfo(assetId: any, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
711
|
+
/**
|
|
712
|
+
* HTTP GET /rules/info/global
|
|
713
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalEngineInfo
|
|
714
|
+
*/
|
|
715
|
+
getGlobalEngineInfo(options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
716
|
+
/**
|
|
717
|
+
* HTTP GET /rules/info/realm/{realm}
|
|
718
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmEngineInfo
|
|
719
|
+
*/
|
|
720
|
+
getRealmEngineInfo(realm: any, options?: O): RestResponse<Model.RulesEngineInfo>;
|
|
721
|
+
/**
|
|
722
|
+
* HTTP POST /rules/realm
|
|
723
|
+
* Java method: org.openremote.model.rules.RulesResource.createRealmRuleset
|
|
724
|
+
*/
|
|
725
|
+
createRealmRuleset(ruleset: Model.RealmRuleset, options?: O): RestResponse<number>;
|
|
726
|
+
/**
|
|
727
|
+
* HTTP GET /rules/realm/for/{realm}
|
|
728
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmRulesets
|
|
729
|
+
*/
|
|
730
|
+
getRealmRulesets(realm: any, queryParams?: {
|
|
731
|
+
language?: Model.RulesetLang[];
|
|
732
|
+
fullyPopulate?: boolean;
|
|
733
|
+
}, options?: O): RestResponse<Model.RealmRuleset[]>;
|
|
734
|
+
/**
|
|
735
|
+
* HTTP DELETE /rules/realm/{id}
|
|
736
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteRealmRuleset
|
|
737
|
+
*/
|
|
738
|
+
deleteRealmRuleset(id: any, options?: O): RestResponse<void>;
|
|
739
|
+
/**
|
|
740
|
+
* HTTP GET /rules/realm/{id}
|
|
741
|
+
* Java method: org.openremote.model.rules.RulesResource.getRealmRuleset
|
|
742
|
+
*/
|
|
743
|
+
getRealmRuleset(id: any, options?: O): RestResponse<Model.RealmRuleset>;
|
|
744
|
+
/**
|
|
745
|
+
* HTTP PUT /rules/realm/{id}
|
|
746
|
+
* Java method: org.openremote.model.rules.RulesResource.updateRealmRuleset
|
|
747
|
+
*/
|
|
748
|
+
updateRealmRuleset(id: any, ruleset: Model.RealmRuleset, options?: O): RestResponse<void>;
|
|
749
|
+
/**
|
|
750
|
+
* HTTP DELETE /rules/{id}
|
|
751
|
+
* Java method: org.openremote.model.rules.RulesResource.deleteGlobalRuleset
|
|
752
|
+
*/
|
|
753
|
+
deleteGlobalRuleset(id: any, options?: O): RestResponse<void>;
|
|
754
|
+
/**
|
|
755
|
+
* HTTP GET /rules/{id}
|
|
756
|
+
* Java method: org.openremote.model.rules.RulesResource.getGlobalRuleset
|
|
757
|
+
*/
|
|
758
|
+
getGlobalRuleset(id: any, options?: O): RestResponse<Model.GlobalRuleset>;
|
|
759
|
+
/**
|
|
760
|
+
* HTTP PUT /rules/{id}
|
|
761
|
+
* Java method: org.openremote.model.rules.RulesResource.updateGlobalRuleset
|
|
762
|
+
*/
|
|
763
|
+
updateGlobalRuleset(id: any, ruleset: Model.GlobalRuleset, options?: O): RestResponse<void>;
|
|
584
764
|
}
|
|
585
|
-
export
|
|
586
|
-
export declare type DateAsNumber = number;
|
|
765
|
+
export type RestResponse<R> = Promise<Axios.GenericAxiosResponse<R>>;
|
|
587
766
|
export declare class ApiClient {
|
|
588
|
-
protected
|
|
589
|
-
protected _statusResource: AxiosStatusResourceClient;
|
|
590
|
-
protected _assetPredictedDatapointResource: AxiosAssetPredictedDatapointResourceClient;
|
|
591
|
-
protected _mapResource: AxiosMapResourceClient;
|
|
592
|
-
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
767
|
+
protected _dashboardResource: AxiosDashboardResourceClient;
|
|
593
768
|
protected _userResource: AxiosUserResourceClient;
|
|
594
|
-
protected _consoleResource: AxiosConsoleResourceClient;
|
|
595
769
|
protected _syslogResource: AxiosSyslogResourceClient;
|
|
596
|
-
protected
|
|
770
|
+
protected _provisioningResource: AxiosProvisioningResourceClient;
|
|
597
771
|
protected _assetModelResource: AxiosAssetModelResourceClient;
|
|
598
|
-
protected _gatewayClientResource: AxiosGatewayClientResourceClient;
|
|
599
772
|
protected _notificationResource: AxiosNotificationResourceClient;
|
|
600
|
-
protected
|
|
773
|
+
protected _gatewayClientResource: AxiosGatewayClientResourceClient;
|
|
774
|
+
protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
|
|
601
775
|
protected _assetResource: AxiosAssetResourceClient;
|
|
776
|
+
protected _appResource: AxiosAppResourceClient;
|
|
777
|
+
protected _mapResource: AxiosMapResourceClient;
|
|
778
|
+
protected _consoleResource: AxiosConsoleResourceClient;
|
|
779
|
+
protected _statusResource: AxiosStatusResourceClient;
|
|
780
|
+
protected _realmResource: AxiosRealmResourceClient;
|
|
781
|
+
protected _flowResource: AxiosFlowResourceClient;
|
|
782
|
+
protected _assetPredictedDatapointResource: AxiosAssetPredictedDatapointResourceClient;
|
|
783
|
+
protected _configurationResource: AxiosConfigurationResourceClient;
|
|
602
784
|
protected _agentResource: AxiosAgentResourceClient;
|
|
603
|
-
protected
|
|
785
|
+
protected _rulesResource: AxiosRulesResourceClient;
|
|
604
786
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
605
|
-
get
|
|
606
|
-
get StatusResource(): AxiosStatusResourceClient;
|
|
607
|
-
get AssetPredictedDatapointResource(): AxiosAssetPredictedDatapointResourceClient;
|
|
608
|
-
get MapResource(): AxiosMapResourceClient;
|
|
609
|
-
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
787
|
+
get DashboardResource(): AxiosDashboardResourceClient;
|
|
610
788
|
get UserResource(): AxiosUserResourceClient;
|
|
611
|
-
get ConsoleResource(): AxiosConsoleResourceClient;
|
|
612
789
|
get SyslogResource(): AxiosSyslogResourceClient;
|
|
613
|
-
get
|
|
790
|
+
get ProvisioningResource(): AxiosProvisioningResourceClient;
|
|
614
791
|
get AssetModelResource(): AxiosAssetModelResourceClient;
|
|
615
|
-
get GatewayClientResource(): AxiosGatewayClientResourceClient;
|
|
616
792
|
get NotificationResource(): AxiosNotificationResourceClient;
|
|
617
|
-
get
|
|
793
|
+
get GatewayClientResource(): AxiosGatewayClientResourceClient;
|
|
794
|
+
get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
|
|
618
795
|
get AssetResource(): AxiosAssetResourceClient;
|
|
796
|
+
get AppResource(): AxiosAppResourceClient;
|
|
797
|
+
get MapResource(): AxiosMapResourceClient;
|
|
798
|
+
get ConsoleResource(): AxiosConsoleResourceClient;
|
|
799
|
+
get StatusResource(): AxiosStatusResourceClient;
|
|
800
|
+
get RealmResource(): AxiosRealmResourceClient;
|
|
801
|
+
get FlowResource(): AxiosFlowResourceClient;
|
|
802
|
+
get AssetPredictedDatapointResource(): AxiosAssetPredictedDatapointResourceClient;
|
|
803
|
+
get ConfigurationResource(): AxiosConfigurationResourceClient;
|
|
619
804
|
get AgentResource(): AxiosAgentResourceClient;
|
|
620
|
-
get
|
|
805
|
+
get RulesResource(): AxiosRulesResourceClient;
|
|
621
806
|
}
|
|
622
807
|
import * as Axios from "axios";
|
|
623
808
|
declare module "axios" {
|
|
@@ -625,51 +810,60 @@ declare module "axios" {
|
|
|
625
810
|
data: R;
|
|
626
811
|
}
|
|
627
812
|
}
|
|
628
|
-
export declare class
|
|
813
|
+
export declare class AxiosDashboardResourceClient extends DashboardResourceClient<Axios.AxiosRequestConfig> {
|
|
629
814
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
630
815
|
}
|
|
631
|
-
export declare class
|
|
816
|
+
export declare class AxiosUserResourceClient extends UserResourceClient<Axios.AxiosRequestConfig> {
|
|
632
817
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
633
818
|
}
|
|
634
|
-
export declare class
|
|
819
|
+
export declare class AxiosSyslogResourceClient extends SyslogResourceClient<Axios.AxiosRequestConfig> {
|
|
635
820
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
636
821
|
}
|
|
637
|
-
export declare class
|
|
822
|
+
export declare class AxiosProvisioningResourceClient extends ProvisioningResourceClient<Axios.AxiosRequestConfig> {
|
|
823
|
+
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
824
|
+
}
|
|
825
|
+
export declare class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {
|
|
826
|
+
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
827
|
+
}
|
|
828
|
+
export declare class AxiosNotificationResourceClient extends NotificationResourceClient<Axios.AxiosRequestConfig> {
|
|
829
|
+
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
830
|
+
}
|
|
831
|
+
export declare class AxiosGatewayClientResourceClient extends GatewayClientResourceClient<Axios.AxiosRequestConfig> {
|
|
638
832
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
639
833
|
}
|
|
640
834
|
export declare class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
641
835
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
642
836
|
}
|
|
643
|
-
export declare class
|
|
837
|
+
export declare class AxiosAssetResourceClient extends AssetResourceClient<Axios.AxiosRequestConfig> {
|
|
644
838
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
645
839
|
}
|
|
646
|
-
export declare class
|
|
840
|
+
export declare class AxiosAppResourceClient extends AppResourceClient<Axios.AxiosRequestConfig> {
|
|
647
841
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
648
842
|
}
|
|
649
|
-
export declare class
|
|
843
|
+
export declare class AxiosMapResourceClient extends MapResourceClient<Axios.AxiosRequestConfig> {
|
|
650
844
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
651
845
|
}
|
|
652
|
-
export declare class
|
|
846
|
+
export declare class AxiosConsoleResourceClient extends ConsoleResourceClient<Axios.AxiosRequestConfig> {
|
|
653
847
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
654
848
|
}
|
|
655
|
-
export declare class
|
|
849
|
+
export declare class AxiosStatusResourceClient extends StatusResourceClient<Axios.AxiosRequestConfig> {
|
|
656
850
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
657
851
|
}
|
|
658
|
-
export declare class
|
|
852
|
+
export declare class AxiosRealmResourceClient extends RealmResourceClient<Axios.AxiosRequestConfig> {
|
|
659
853
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
660
854
|
}
|
|
661
|
-
export declare class
|
|
855
|
+
export declare class AxiosFlowResourceClient extends FlowResourceClient<Axios.AxiosRequestConfig> {
|
|
662
856
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
663
857
|
}
|
|
664
|
-
export declare class
|
|
858
|
+
export declare class AxiosAssetPredictedDatapointResourceClient extends AssetPredictedDatapointResourceClient<Axios.AxiosRequestConfig> {
|
|
665
859
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
666
860
|
}
|
|
667
|
-
export declare class
|
|
861
|
+
export declare class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {
|
|
668
862
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
669
863
|
}
|
|
670
864
|
export declare class AxiosAgentResourceClient extends AgentResourceClient<Axios.AxiosRequestConfig> {
|
|
671
865
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
672
866
|
}
|
|
673
|
-
export declare class
|
|
867
|
+
export declare class AxiosRulesResourceClient extends RulesResourceClient<Axios.AxiosRequestConfig> {
|
|
674
868
|
constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
|
|
675
869
|
}
|