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