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