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