@openremote/rest 1.12.0-snapshot.20251212161717 → 1.12.0-snapshot.20251215083628

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.
@@ -9,43 +9,31 @@ export interface HttpClient<O> {
9
9
  options?: O;
10
10
  }): RestResponse<R>;
11
11
  }
12
- export declare class AssetPredictedDatapointResourceClient<O> {
13
- protected httpClient: HttpClient<O>;
14
- constructor(httpClient: HttpClient<O>);
15
- /**
16
- * HTTP POST /asset/predicted/{assetId}/{attributeName}
17
- * Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints
18
- */
19
- getPredictedDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
20
- /**
21
- * HTTP PUT /asset/predicted/{assetId}/{attributeName}
22
- * Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
23
- */
24
- writePredictedDatapoints(assetId: string, attributeName: string, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void>;
25
- }
26
- export declare class ProvisioningResourceClient<O> {
12
+ export declare class ConfigurationResourceClient<O> {
27
13
  protected httpClient: HttpClient<O>;
28
14
  constructor(httpClient: HttpClient<O>);
29
15
  /**
30
- * HTTP POST /provisioning
31
- * Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
16
+ * HTTP GET /configuration/manager
17
+ * Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfig
32
18
  */
33
- createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
19
+ getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig>;
34
20
  /**
35
- * HTTP GET /provisioning
36
- * Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
21
+ * HTTP PUT /configuration/manager
22
+ * Java method: org.openremote.model.manager.ConfigurationResource.update
37
23
  */
38
- getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
24
+ update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig>;
39
25
  /**
40
- * HTTP DELETE /provisioning/{id}
41
- * Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
26
+ * HTTP POST /configuration/manager/file
27
+ * Java method: org.openremote.model.manager.ConfigurationResource.fileUpload
42
28
  */
43
- deleteProvisioningConfig(id: number, options?: O): RestResponse<void>;
29
+ fileUpload(fileInfo: Model.FileInfo, queryParams?: {
30
+ path?: string;
31
+ }, options?: O): RestResponse<string>;
44
32
  /**
45
- * HTTP PUT /provisioning/{id}
46
- * Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
33
+ * HTTP GET /configuration/manager/image/{filename: .+}
34
+ * Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfigImage
47
35
  */
48
- updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
36
+ getManagerConfigImage(filename: string, options?: O): RestResponse<any>;
49
37
  }
50
38
  export declare class MapResourceClient<O> {
51
39
  protected httpClient: HttpClient<O>;
@@ -100,35 +88,6 @@ export declare class MapResourceClient<O> {
100
88
  [id: string]: unknown;
101
89
  }>;
102
90
  }
103
- export declare class GatewayServiceResourceClient<O> {
104
- protected httpClient: HttpClient<O>;
105
- constructor(httpClient: HttpClient<O>);
106
- /**
107
- * HTTP POST /gateway/tunnel
108
- * Java method: org.openremote.model.gateway.GatewayServiceResource.startTunnel
109
- */
110
- startTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<Model.GatewayTunnelInfo>;
111
- /**
112
- * HTTP DELETE /gateway/tunnel
113
- * Java method: org.openremote.model.gateway.GatewayServiceResource.stopTunnel
114
- */
115
- stopTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<void>;
116
- /**
117
- * HTTP GET /gateway/tunnel/{realm}
118
- * Java method: org.openremote.model.gateway.GatewayServiceResource.getAllActiveTunnelInfos
119
- */
120
- getAllActiveTunnelInfos(realm: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
121
- /**
122
- * HTTP GET /gateway/tunnel/{realm}/{id}
123
- * Java method: org.openremote.model.gateway.GatewayServiceResource.getGatewayActiveTunnelInfos
124
- */
125
- getGatewayActiveTunnelInfos(realm: string, id: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
126
- /**
127
- * HTTP GET /gateway/tunnel/{realm}/{id}/{target}/{targetPort}
128
- * Java method: org.openremote.model.gateway.GatewayServiceResource.getActiveTunnelInfo
129
- */
130
- getActiveTunnelInfo(realm: string, id: string, target: string, targetPort: number, options?: O): RestResponse<Model.GatewayTunnelInfo>;
131
- }
132
91
  export declare class RulesResourceClient<O> {
133
92
  protected httpClient: HttpClient<O>;
134
93
  constructor(httpClient: HttpClient<O>);
@@ -237,42 +196,98 @@ export declare class RulesResourceClient<O> {
237
196
  */
238
197
  updateGlobalRuleset(id: number, ruleset: Model.GlobalRuleset, options?: O): RestResponse<void>;
239
198
  }
240
- export declare class StatusResourceClient<O> {
199
+ export declare class AgentResourceClient<O> {
241
200
  protected httpClient: HttpClient<O>;
242
201
  constructor(httpClient: HttpClient<O>);
243
202
  /**
244
- * HTTP GET /health
245
- * Java method: org.openremote.model.system.StatusResource.getHealthStatus
203
+ * HTTP GET /agent/assetDiscovery/{agentId}
204
+ * Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery
246
205
  */
247
- getHealthStatus(options?: O): RestResponse<{
248
- [index: string]: any;
249
- }>;
206
+ doProtocolAssetDiscovery(agentId: string, queryParams?: {
207
+ realm?: string;
208
+ }, options?: O): RestResponse<Model.AssetTreeNode[]>;
250
209
  /**
251
- * HTTP GET /info
252
- * Java method: org.openremote.model.system.StatusResource.getInfo
210
+ * HTTP POST /agent/assetImport/{agentId}
211
+ * Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport
253
212
  */
254
- getInfo(options?: O): RestResponse<{
255
- [index: string]: any;
256
- }>;
213
+ doProtocolAssetImport(agentId: string, fileInfo: Model.FileInfo, queryParams?: {
214
+ realm?: string;
215
+ }, options?: O): RestResponse<Model.AssetTreeNode[]>;
216
+ /**
217
+ * HTTP GET /agent/instanceDiscovery/{agentType}
218
+ * Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery
219
+ */
220
+ doProtocolInstanceDiscovery(agentType: string, queryParams?: {
221
+ parentId?: string;
222
+ realm?: string;
223
+ }, options?: O): RestResponse<Model.Agent[]>;
257
224
  }
258
- export declare class AppResourceClient<O> {
225
+ export declare class ProvisioningResourceClient<O> {
259
226
  protected httpClient: HttpClient<O>;
260
227
  constructor(httpClient: HttpClient<O>);
261
228
  /**
262
- * HTTP GET /apps
263
- * Java method: org.openremote.model.apps.AppResource.getApps
229
+ * HTTP POST /provisioning
230
+ * Java method: org.openremote.model.provisioning.ProvisioningResource.createProvisioningConfig
264
231
  */
265
- getApps(options?: O): RestResponse<string[]>;
232
+ createProvisioningConfig(provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<number>;
266
233
  /**
267
- * HTTP GET /apps/consoleConfig
268
- * Java method: org.openremote.model.apps.AppResource.getConsoleConfig
234
+ * HTTP GET /provisioning
235
+ * Java method: org.openremote.model.provisioning.ProvisioningResource.getProvisioningConfigs
269
236
  */
270
- getConsoleConfig(options?: O): RestResponse<any>;
237
+ getProvisioningConfigs(options?: O): RestResponse<Model.ProvisioningConfigUnion<any, any>[]>;
271
238
  /**
272
- * HTTP GET /apps/info
273
- * Java method: org.openremote.model.apps.AppResource.getAppInfos
239
+ * HTTP DELETE /provisioning/{id}
240
+ * Java method: org.openremote.model.provisioning.ProvisioningResource.deleteProvisioningConfig
274
241
  */
275
- getAppInfos(options?: O): RestResponse<any>;
242
+ deleteProvisioningConfig(id: number, options?: O): RestResponse<void>;
243
+ /**
244
+ * HTTP PUT /provisioning/{id}
245
+ * Java method: org.openremote.model.provisioning.ProvisioningResource.updateProvisioningConfig
246
+ */
247
+ updateProvisioningConfig(id: number, provisioningConfig: Model.ProvisioningConfigUnion<any, any>, options?: O): RestResponse<void>;
248
+ }
249
+ export declare class ConsoleResourceClient<O> {
250
+ protected httpClient: HttpClient<O>;
251
+ constructor(httpClient: HttpClient<O>);
252
+ /**
253
+ * HTTP POST /console/register
254
+ * Java method: org.openremote.model.console.ConsoleResource.register
255
+ */
256
+ register(consoleRegistration: Model.ConsoleRegistration, options?: O): RestResponse<Model.ConsoleRegistration>;
257
+ }
258
+ export declare class RealmResourceClient<O> {
259
+ protected httpClient: HttpClient<O>;
260
+ constructor(httpClient: HttpClient<O>);
261
+ /**
262
+ * HTTP POST /realm
263
+ * Java method: org.openremote.model.security.RealmResource.create
264
+ */
265
+ create(realm: Model.Realm, options?: O): RestResponse<void>;
266
+ /**
267
+ * HTTP GET /realm
268
+ * Java method: org.openremote.model.security.RealmResource.getAll
269
+ */
270
+ getAll(options?: O): RestResponse<Model.Realm[]>;
271
+ /**
272
+ * HTTP GET /realm/accessible
273
+ * Java method: org.openremote.model.security.RealmResource.getAccessible
274
+ */
275
+ getAccessible(options?: O): RestResponse<Model.Realm[]>;
276
+ /**
277
+ * HTTP DELETE /realm/{name}
278
+ * Java method: org.openremote.model.security.RealmResource.delete
279
+ */
280
+ delete(name: string, options?: O): RestResponse<void>;
281
+ /**
282
+ * HTTP GET /realm/{name}
283
+ * Java method: org.openremote.model.security.RealmResource.get
284
+ */
285
+ get(name: string, options?: O): RestResponse<Model.Realm>;
286
+ /**
287
+ * HTTP PUT /realm/{name}
288
+ * Java method: org.openremote.model.security.RealmResource.update
289
+ */
290
+ update(name: string, realm: Model.Realm, options?: O): RestResponse<void>;
276
291
  }
277
292
  export declare class AlarmResourceClient<O> {
278
293
  protected httpClient: HttpClient<O>;
@@ -327,6 +342,61 @@ export declare class AlarmResourceClient<O> {
327
342
  realm?: string;
328
343
  }, options?: O): RestResponse<Model.AlarmAssetLink[]>;
329
344
  }
345
+ export declare class GatewayServiceResourceClient<O> {
346
+ protected httpClient: HttpClient<O>;
347
+ constructor(httpClient: HttpClient<O>);
348
+ /**
349
+ * HTTP POST /gateway/tunnel
350
+ * Java method: org.openremote.model.gateway.GatewayServiceResource.startTunnel
351
+ */
352
+ startTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<Model.GatewayTunnelInfo>;
353
+ /**
354
+ * HTTP DELETE /gateway/tunnel
355
+ * Java method: org.openremote.model.gateway.GatewayServiceResource.stopTunnel
356
+ */
357
+ stopTunnel(tunnelInfo: Model.GatewayTunnelInfo, options?: O): RestResponse<void>;
358
+ /**
359
+ * HTTP GET /gateway/tunnel/{realm}
360
+ * Java method: org.openremote.model.gateway.GatewayServiceResource.getAllActiveTunnelInfos
361
+ */
362
+ getAllActiveTunnelInfos(realm: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
363
+ /**
364
+ * HTTP GET /gateway/tunnel/{realm}/{id}
365
+ * Java method: org.openremote.model.gateway.GatewayServiceResource.getGatewayActiveTunnelInfos
366
+ */
367
+ getGatewayActiveTunnelInfos(realm: string, id: string, options?: O): RestResponse<Model.GatewayTunnelInfo[]>;
368
+ /**
369
+ * HTTP GET /gateway/tunnel/{realm}/{id}/{target}/{targetPort}
370
+ * Java method: org.openremote.model.gateway.GatewayServiceResource.getActiveTunnelInfo
371
+ */
372
+ getActiveTunnelInfo(realm: string, id: string, target: string, targetPort: number, options?: O): RestResponse<Model.GatewayTunnelInfo>;
373
+ }
374
+ export declare class AssetDatapointResourceClient<O> {
375
+ protected httpClient: HttpClient<O>;
376
+ constructor(httpClient: HttpClient<O>);
377
+ /**
378
+ * HTTP GET /asset/datapoint/export
379
+ * Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport
380
+ */
381
+ getDatapointExport(queryParams?: {
382
+ attributeRefs?: string;
383
+ fromTimestamp?: number;
384
+ toTimestamp?: number;
385
+ }, options?: O): RestResponse<any>;
386
+ /**
387
+ * HTTP GET /asset/datapoint/periods
388
+ * Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
389
+ */
390
+ getDatapointPeriod(queryParams?: {
391
+ assetId?: string;
392
+ attributeName?: string;
393
+ }, options?: O): RestResponse<Model.DatapointPeriod>;
394
+ /**
395
+ * HTTP POST /asset/datapoint/{assetId}/{attributeName}
396
+ * Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
397
+ */
398
+ getDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
399
+ }
330
400
  export declare class FlowResourceClient<O> {
331
401
  protected httpClient: HttpClient<O>;
332
402
  constructor(httpClient: HttpClient<O>);
@@ -346,65 +416,97 @@ export declare class FlowResourceClient<O> {
346
416
  */
347
417
  getAllNodeDefinitionsByType(type: Model.NodeType, options?: O): RestResponse<Model.Node[]>;
348
418
  }
349
- export declare class DashboardResourceClient<O> {
419
+ export declare class StatusResourceClient<O> {
350
420
  protected httpClient: HttpClient<O>;
351
421
  constructor(httpClient: HttpClient<O>);
352
422
  /**
353
- * HTTP POST /dashboard
354
- * Java method: org.openremote.model.dashboard.DashboardResource.create
423
+ * HTTP GET /health
424
+ * Java method: org.openremote.model.system.StatusResource.getHealthStatus
355
425
  */
356
- create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
426
+ getHealthStatus(options?: O): RestResponse<{
427
+ [index: string]: any;
428
+ }>;
357
429
  /**
358
- * HTTP PUT /dashboard
359
- * Java method: org.openremote.model.dashboard.DashboardResource.update
430
+ * HTTP GET /info
431
+ * Java method: org.openremote.model.system.StatusResource.getInfo
360
432
  */
361
- update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
433
+ getInfo(options?: O): RestResponse<{
434
+ [index: string]: any;
435
+ }>;
436
+ }
437
+ export declare class AppResourceClient<O> {
438
+ protected httpClient: HttpClient<O>;
439
+ constructor(httpClient: HttpClient<O>);
362
440
  /**
363
- * HTTP GET /dashboard/all/{realm}
364
- * Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards
441
+ * HTTP GET /apps
442
+ * Java method: org.openremote.model.apps.AppResource.getApps
365
443
  */
366
- getAllRealmDashboards(realm: string, options?: O): RestResponse<Model.Dashboard[]>;
444
+ getApps(options?: O): RestResponse<string[]>;
367
445
  /**
368
- * HTTP POST /dashboard/query
369
- * Java method: org.openremote.model.dashboard.DashboardResource.query
446
+ * HTTP GET /apps/consoleConfig
447
+ * Java method: org.openremote.model.apps.AppResource.getConsoleConfig
370
448
  */
371
- query(dashboardQuery: Model.DashboardQuery, options?: O): RestResponse<Model.Dashboard[]>;
372
- /**
373
- * HTTP DELETE /dashboard/{realm}/{dashboardId}
374
- * Java method: org.openremote.model.dashboard.DashboardResource.delete
375
- */
376
- delete(realm: string, dashboardId: string, options?: O): RestResponse<void>;
449
+ getConsoleConfig(options?: O): RestResponse<any>;
377
450
  /**
378
- * HTTP GET /dashboard/{realm}/{dashboardId}
379
- * Java method: org.openremote.model.dashboard.DashboardResource.get
451
+ * HTTP GET /apps/info
452
+ * Java method: org.openremote.model.apps.AppResource.getAppInfos
380
453
  */
381
- get(realm: string, dashboardId: string, options?: O): RestResponse<Model.Dashboard>;
454
+ getAppInfos(options?: O): RestResponse<any>;
382
455
  }
383
- export declare class ConfigurationResourceClient<O> {
456
+ export declare class ExternalServiceResourceClient<O> {
384
457
  protected httpClient: HttpClient<O>;
385
458
  constructor(httpClient: HttpClient<O>);
386
459
  /**
387
- * HTTP GET /configuration/manager
388
- * Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfig
460
+ * Response code 200 - List of registered external services
461
+ * HTTP GET /service
462
+ * Java method: org.openremote.model.services.ExternalServiceResource.getServices
389
463
  */
390
- getManagerConfig(options?: O): RestResponse<Model.ManagerAppConfig>;
464
+ getServices(queryParams?: {
465
+ realm?: string;
466
+ }, options?: O): RestResponse<Model.ExternalService[]>;
391
467
  /**
392
- * HTTP PUT /configuration/manager
393
- * Java method: org.openremote.model.manager.ConfigurationResource.update
468
+ * Response code 200 - Service registered successfully
469
+ * Response code 400 - Invalid external service object
470
+ * Response code 409 - ExternalService instance already registered
471
+ * HTTP POST /service
472
+ * Java method: org.openremote.model.services.ExternalServiceResource.registerService
394
473
  */
395
- update(managerConfiguration: Model.ManagerAppConfig, options?: O): RestResponse<Model.ManagerAppConfig>;
474
+ registerService(service: Model.ExternalService, options?: O): RestResponse<Model.ExternalService>;
396
475
  /**
397
- * HTTP POST /configuration/manager/file
398
- * Java method: org.openremote.model.manager.ConfigurationResource.fileUpload
476
+ * Response code 200 - List of registered external services
477
+ * HTTP GET /service/global
478
+ * Java method: org.openremote.model.services.ExternalServiceResource.getGlobalServices
399
479
  */
400
- fileUpload(fileInfo: Model.FileInfo, queryParams?: {
401
- path?: string;
402
- }, options?: O): RestResponse<string>;
480
+ getGlobalServices(options?: O): RestResponse<Model.ExternalService[]>;
403
481
  /**
404
- * HTTP GET /configuration/manager/image/{filename: .+}
405
- * Java method: org.openremote.model.manager.ConfigurationResource.getManagerConfigImage
482
+ * Response code 200 - Service registered successfully
483
+ * Response code 400 - Invalid external service object
484
+ * Response code 409 - ExternalService instance already registered
485
+ * HTTP POST /service/global
486
+ * Java method: org.openremote.model.services.ExternalServiceResource.registerGlobalService
406
487
  */
407
- getManagerConfigImage(filename: string, options?: O): RestResponse<any>;
488
+ registerGlobalService(service: Model.ExternalService, options?: O): RestResponse<Model.ExternalService>;
489
+ /**
490
+ * Response code 204 - Service deregistered successfully
491
+ * Response code 404 - Service instance not found
492
+ * HTTP DELETE /service/{serviceId}/{instanceId}
493
+ * Java method: org.openremote.model.services.ExternalServiceResource.deregisterService
494
+ */
495
+ deregisterService(serviceId: string, instanceId: number, options?: O): RestResponse<void>;
496
+ /**
497
+ * Response code 200 - ExternalService retrieved successfully
498
+ * Response code 404 - ExternalService not found
499
+ * HTTP GET /service/{serviceId}/{instanceId}
500
+ * Java method: org.openremote.model.services.ExternalServiceResource.getService
501
+ */
502
+ getService(serviceId: string, instanceId: number, options?: O): RestResponse<Model.ExternalService>;
503
+ /**
504
+ * Response code 204 - Heartbeat sent successfully
505
+ * Response code 404 - Service instance not found
506
+ * HTTP PUT /service/{serviceId}/{instanceId}
507
+ * Java method: org.openremote.model.services.ExternalServiceResource.heartbeat
508
+ */
509
+ heartbeat(serviceId: string, instanceId: number, options?: O): RestResponse<void>;
408
510
  }
409
511
  export declare class UserResourceClient<O> {
410
512
  protected httpClient: HttpClient<O>;
@@ -675,39 +777,53 @@ export declare class AssetResourceClient<O> {
675
777
  assetIds?: string[];
676
778
  }, options?: O): RestResponse<void>;
677
779
  }
678
- export declare class RealmResourceClient<O> {
780
+ export declare class DashboardResourceClient<O> {
679
781
  protected httpClient: HttpClient<O>;
680
782
  constructor(httpClient: HttpClient<O>);
681
783
  /**
682
- * HTTP POST /realm
683
- * Java method: org.openremote.model.security.RealmResource.create
784
+ * HTTP POST /dashboard
785
+ * Java method: org.openremote.model.dashboard.DashboardResource.create
684
786
  */
685
- create(realm: Model.Realm, options?: O): RestResponse<void>;
787
+ create(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
686
788
  /**
687
- * HTTP GET /realm
688
- * Java method: org.openremote.model.security.RealmResource.getAll
789
+ * HTTP PUT /dashboard
790
+ * Java method: org.openremote.model.dashboard.DashboardResource.update
689
791
  */
690
- getAll(options?: O): RestResponse<Model.Realm[]>;
792
+ update(dashboard: Model.Dashboard, options?: O): RestResponse<Model.Dashboard>;
691
793
  /**
692
- * HTTP GET /realm/accessible
693
- * Java method: org.openremote.model.security.RealmResource.getAccessible
794
+ * HTTP GET /dashboard/all/{realm}
795
+ * Java method: org.openremote.model.dashboard.DashboardResource.getAllRealmDashboards
694
796
  */
695
- getAccessible(options?: O): RestResponse<Model.Realm[]>;
797
+ getAllRealmDashboards(realm: string, options?: O): RestResponse<Model.Dashboard[]>;
696
798
  /**
697
- * HTTP DELETE /realm/{name}
698
- * Java method: org.openremote.model.security.RealmResource.delete
799
+ * HTTP POST /dashboard/query
800
+ * Java method: org.openremote.model.dashboard.DashboardResource.query
699
801
  */
700
- delete(name: string, options?: O): RestResponse<void>;
802
+ query(dashboardQuery: Model.DashboardQuery, options?: O): RestResponse<Model.Dashboard[]>;
701
803
  /**
702
- * HTTP GET /realm/{name}
703
- * Java method: org.openremote.model.security.RealmResource.get
804
+ * HTTP DELETE /dashboard/{realm}/{dashboardId}
805
+ * Java method: org.openremote.model.dashboard.DashboardResource.delete
704
806
  */
705
- get(name: string, options?: O): RestResponse<Model.Realm>;
807
+ delete(realm: string, dashboardId: string, options?: O): RestResponse<void>;
706
808
  /**
707
- * HTTP PUT /realm/{name}
708
- * Java method: org.openremote.model.security.RealmResource.update
809
+ * HTTP GET /dashboard/{realm}/{dashboardId}
810
+ * Java method: org.openremote.model.dashboard.DashboardResource.get
709
811
  */
710
- update(name: string, realm: Model.Realm, options?: O): RestResponse<void>;
812
+ get(realm: string, dashboardId: string, options?: O): RestResponse<Model.Dashboard>;
813
+ }
814
+ export declare class AssetPredictedDatapointResourceClient<O> {
815
+ protected httpClient: HttpClient<O>;
816
+ constructor(httpClient: HttpClient<O>);
817
+ /**
818
+ * HTTP POST /asset/predicted/{assetId}/{attributeName}
819
+ * Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.getPredictedDatapoints
820
+ */
821
+ getPredictedDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
822
+ /**
823
+ * HTTP PUT /asset/predicted/{assetId}/{attributeName}
824
+ * Java method: org.openremote.model.datapoint.AssetPredictedDatapointResource.writePredictedDatapoints
825
+ */
826
+ writePredictedDatapoints(assetId: string, attributeName: string, predictedDatapoints: Model.ValueDatapoint<any>[], options?: O): RestResponse<void>;
711
827
  }
712
828
  export declare class SyslogResourceClient<O> {
713
829
  protected httpClient: HttpClient<O>;
@@ -741,112 +857,59 @@ export declare class SyslogResourceClient<O> {
741
857
  subCategory?: string[];
742
858
  }, options?: O): RestResponse<any>;
743
859
  }
744
- export declare class ExternalServiceResourceClient<O> {
745
- protected httpClient: HttpClient<O>;
746
- constructor(httpClient: HttpClient<O>);
747
- /**
748
- * Response code 200 - List of registered external services
749
- * HTTP GET /service
750
- * Java method: org.openremote.model.services.ExternalServiceResource.getServices
751
- */
752
- getServices(queryParams?: {
753
- realm?: string;
754
- }, options?: O): RestResponse<Model.ExternalService[]>;
755
- /**
756
- * Response code 200 - Service registered successfully
757
- * Response code 400 - Invalid external service object
758
- * Response code 409 - ExternalService instance already registered
759
- * HTTP POST /service
760
- * Java method: org.openremote.model.services.ExternalServiceResource.registerService
761
- */
762
- registerService(service: Model.ExternalService, options?: O): RestResponse<Model.ExternalService>;
763
- /**
764
- * Response code 200 - List of registered external services
765
- * HTTP GET /service/global
766
- * Java method: org.openremote.model.services.ExternalServiceResource.getGlobalServices
767
- */
768
- getGlobalServices(options?: O): RestResponse<Model.ExternalService[]>;
769
- /**
770
- * Response code 200 - Service registered successfully
771
- * Response code 400 - Invalid external service object
772
- * Response code 409 - ExternalService instance already registered
773
- * HTTP POST /service/global
774
- * Java method: org.openremote.model.services.ExternalServiceResource.registerGlobalService
775
- */
776
- registerGlobalService(service: Model.ExternalService, options?: O): RestResponse<Model.ExternalService>;
777
- /**
778
- * Response code 204 - Service deregistered successfully
779
- * Response code 404 - Service instance not found
780
- * HTTP DELETE /service/{serviceId}/{instanceId}
781
- * Java method: org.openremote.model.services.ExternalServiceResource.deregisterService
782
- */
783
- deregisterService(serviceId: string, instanceId: number, options?: O): RestResponse<void>;
784
- /**
785
- * Response code 200 - ExternalService retrieved successfully
786
- * Response code 404 - ExternalService not found
787
- * HTTP GET /service/{serviceId}/{instanceId}
788
- * Java method: org.openremote.model.services.ExternalServiceResource.getService
789
- */
790
- getService(serviceId: string, instanceId: number, options?: O): RestResponse<Model.ExternalService>;
791
- /**
792
- * Response code 204 - Heartbeat sent successfully
793
- * Response code 404 - Service instance not found
794
- * HTTP PUT /service/{serviceId}/{instanceId}
795
- * Java method: org.openremote.model.services.ExternalServiceResource.heartbeat
796
- */
797
- heartbeat(serviceId: string, instanceId: number, options?: O): RestResponse<void>;
798
- }
799
- export declare class AssetDatapointResourceClient<O> {
860
+ export declare class NotificationResourceClient<O> {
800
861
  protected httpClient: HttpClient<O>;
801
862
  constructor(httpClient: HttpClient<O>);
802
863
  /**
803
- * HTTP GET /asset/datapoint/export
804
- * Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointExport
864
+ * HTTP GET /notification
865
+ * Java method: org.openremote.model.notification.NotificationResource.getNotifications
805
866
  */
806
- getDatapointExport(queryParams?: {
807
- attributeRefs?: string;
808
- fromTimestamp?: number;
809
- toTimestamp?: number;
810
- }, options?: O): RestResponse<any>;
867
+ getNotifications(queryParams?: {
868
+ id?: number;
869
+ type?: string;
870
+ from?: number;
871
+ to?: number;
872
+ realmId?: string;
873
+ userId?: string;
874
+ assetId?: string;
875
+ }, options?: O): RestResponse<Model.SentNotification[]>;
811
876
  /**
812
- * HTTP GET /asset/datapoint/periods
813
- * Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapointPeriod
877
+ * HTTP DELETE /notification
878
+ * Java method: org.openremote.model.notification.NotificationResource.removeNotifications
814
879
  */
815
- getDatapointPeriod(queryParams?: {
880
+ removeNotifications(queryParams?: {
881
+ id?: number;
882
+ type?: string;
883
+ from?: number;
884
+ to?: number;
885
+ realmId?: string;
886
+ userId?: string;
816
887
  assetId?: string;
817
- attributeName?: string;
818
- }, options?: O): RestResponse<Model.DatapointPeriod>;
888
+ }, options?: O): RestResponse<void>;
819
889
  /**
820
- * HTTP POST /asset/datapoint/{assetId}/{attributeName}
821
- * Java method: org.openremote.model.datapoint.AssetDatapointResource.getDatapoints
890
+ * HTTP POST /notification/alert
891
+ * Java method: org.openremote.model.notification.NotificationResource.sendNotification
822
892
  */
823
- getDatapoints(assetId: string, attributeName: string, query: Model.AssetDatapointQueryUnion, options?: O): RestResponse<Model.ValueDatapoint<any>[]>;
824
- }
825
- export declare class AgentResourceClient<O> {
826
- protected httpClient: HttpClient<O>;
827
- constructor(httpClient: HttpClient<O>);
893
+ sendNotification(notification: Model.Notification, options?: O): RestResponse<void>;
828
894
  /**
829
- * HTTP GET /agent/assetDiscovery/{agentId}
830
- * Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetDiscovery
895
+ * HTTP DELETE /notification/{notificationId}
896
+ * Java method: org.openremote.model.notification.NotificationResource.removeNotification
831
897
  */
832
- doProtocolAssetDiscovery(agentId: string, queryParams?: {
833
- realm?: string;
834
- }, options?: O): RestResponse<Model.AssetTreeNode[]>;
898
+ removeNotification(notificationId: number, options?: O): RestResponse<void>;
835
899
  /**
836
- * HTTP POST /agent/assetImport/{agentId}
837
- * Java method: org.openremote.model.asset.agent.AgentResource.doProtocolAssetImport
900
+ * HTTP PUT /notification/{notificationId}/acknowledged
901
+ * Java method: org.openremote.model.notification.NotificationResource.notificationAcknowledged
838
902
  */
839
- doProtocolAssetImport(agentId: string, fileInfo: Model.FileInfo, queryParams?: {
840
- realm?: string;
841
- }, options?: O): RestResponse<Model.AssetTreeNode[]>;
903
+ notificationAcknowledged(notificationId: number, acknowledgement: any, queryParams?: {
904
+ targetId?: string;
905
+ }, options?: O): RestResponse<void>;
842
906
  /**
843
- * HTTP GET /agent/instanceDiscovery/{agentType}
844
- * Java method: org.openremote.model.asset.agent.AgentResource.doProtocolInstanceDiscovery
907
+ * HTTP PUT /notification/{notificationId}/delivered
908
+ * Java method: org.openremote.model.notification.NotificationResource.notificationDelivered
845
909
  */
846
- doProtocolInstanceDiscovery(agentType: string, queryParams?: {
847
- parentId?: string;
848
- realm?: string;
849
- }, options?: O): RestResponse<Model.Agent[]>;
910
+ notificationDelivered(notificationId: number, queryParams?: {
911
+ targetId?: string;
912
+ }, options?: O): RestResponse<void>;
850
913
  }
851
914
  export declare class AssetModelResourceClient<O> {
852
915
  protected httpClient: HttpClient<O>;
@@ -901,116 +964,53 @@ export declare class AssetModelResourceClient<O> {
901
964
  [index: string]: Model.ValueDescriptor;
902
965
  }>;
903
966
  }
904
- export declare class ConsoleResourceClient<O> {
905
- protected httpClient: HttpClient<O>;
906
- constructor(httpClient: HttpClient<O>);
907
- /**
908
- * HTTP POST /console/register
909
- * Java method: org.openremote.model.console.ConsoleResource.register
910
- */
911
- register(consoleRegistration: Model.ConsoleRegistration, options?: O): RestResponse<Model.ConsoleRegistration>;
912
- }
913
- export declare class NotificationResourceClient<O> {
914
- protected httpClient: HttpClient<O>;
915
- constructor(httpClient: HttpClient<O>);
916
- /**
917
- * HTTP GET /notification
918
- * Java method: org.openremote.model.notification.NotificationResource.getNotifications
919
- */
920
- getNotifications(queryParams?: {
921
- id?: number;
922
- type?: string;
923
- from?: number;
924
- to?: number;
925
- realmId?: string;
926
- userId?: string;
927
- assetId?: string;
928
- }, options?: O): RestResponse<Model.SentNotification[]>;
929
- /**
930
- * HTTP DELETE /notification
931
- * Java method: org.openremote.model.notification.NotificationResource.removeNotifications
932
- */
933
- removeNotifications(queryParams?: {
934
- id?: number;
935
- type?: string;
936
- from?: number;
937
- to?: number;
938
- realmId?: string;
939
- userId?: string;
940
- assetId?: string;
941
- }, options?: O): RestResponse<void>;
942
- /**
943
- * HTTP POST /notification/alert
944
- * Java method: org.openremote.model.notification.NotificationResource.sendNotification
945
- */
946
- sendNotification(notification: Model.Notification, options?: O): RestResponse<void>;
947
- /**
948
- * HTTP DELETE /notification/{notificationId}
949
- * Java method: org.openremote.model.notification.NotificationResource.removeNotification
950
- */
951
- removeNotification(notificationId: number, options?: O): RestResponse<void>;
952
- /**
953
- * HTTP PUT /notification/{notificationId}/acknowledged
954
- * Java method: org.openremote.model.notification.NotificationResource.notificationAcknowledged
955
- */
956
- notificationAcknowledged(notificationId: number, acknowledgement: any, queryParams?: {
957
- targetId?: string;
958
- }, options?: O): RestResponse<void>;
959
- /**
960
- * HTTP PUT /notification/{notificationId}/delivered
961
- * Java method: org.openremote.model.notification.NotificationResource.notificationDelivered
962
- */
963
- notificationDelivered(notificationId: number, queryParams?: {
964
- targetId?: string;
965
- }, options?: O): RestResponse<void>;
966
- }
967
967
  export type RestResponse<R> = Promise<Axios.GenericAxiosResponse<R>>;
968
968
  export declare class ApiClient {
969
- protected _assetPredictedDatapointResource: AxiosAssetPredictedDatapointResourceClient;
970
- protected _provisioningResource: AxiosProvisioningResourceClient;
969
+ protected _configurationResource: AxiosConfigurationResourceClient;
971
970
  protected _mapResource: AxiosMapResourceClient;
972
- protected _gatewayServiceResource: AxiosGatewayServiceResourceClient;
973
971
  protected _rulesResource: AxiosRulesResourceClient;
974
- protected _statusResource: AxiosStatusResourceClient;
975
- protected _appResource: AxiosAppResourceClient;
972
+ protected _agentResource: AxiosAgentResourceClient;
973
+ protected _provisioningResource: AxiosProvisioningResourceClient;
974
+ protected _consoleResource: AxiosConsoleResourceClient;
975
+ protected _realmResource: AxiosRealmResourceClient;
976
976
  protected _alarmResource: AxiosAlarmResourceClient;
977
+ protected _gatewayServiceResource: AxiosGatewayServiceResourceClient;
978
+ protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
977
979
  protected _flowResource: AxiosFlowResourceClient;
978
- protected _dashboardResource: AxiosDashboardResourceClient;
979
- protected _configurationResource: AxiosConfigurationResourceClient;
980
+ protected _statusResource: AxiosStatusResourceClient;
981
+ protected _appResource: AxiosAppResourceClient;
982
+ protected _externalServiceResource: AxiosExternalServiceResourceClient;
980
983
  protected _userResource: AxiosUserResourceClient;
981
984
  protected _gatewayClientResource: AxiosGatewayClientResourceClient;
982
985
  protected _assetResource: AxiosAssetResourceClient;
983
- protected _realmResource: AxiosRealmResourceClient;
986
+ protected _dashboardResource: AxiosDashboardResourceClient;
987
+ protected _assetPredictedDatapointResource: AxiosAssetPredictedDatapointResourceClient;
984
988
  protected _syslogResource: AxiosSyslogResourceClient;
985
- protected _externalServiceResource: AxiosExternalServiceResourceClient;
986
- protected _assetDatapointResource: AxiosAssetDatapointResourceClient;
987
- protected _agentResource: AxiosAgentResourceClient;
988
- protected _assetModelResource: AxiosAssetModelResourceClient;
989
- protected _consoleResource: AxiosConsoleResourceClient;
990
989
  protected _notificationResource: AxiosNotificationResourceClient;
990
+ protected _assetModelResource: AxiosAssetModelResourceClient;
991
991
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
992
- get AssetPredictedDatapointResource(): AxiosAssetPredictedDatapointResourceClient;
993
- get ProvisioningResource(): AxiosProvisioningResourceClient;
992
+ get ConfigurationResource(): AxiosConfigurationResourceClient;
994
993
  get MapResource(): AxiosMapResourceClient;
995
- get GatewayServiceResource(): AxiosGatewayServiceResourceClient;
996
994
  get RulesResource(): AxiosRulesResourceClient;
997
- get StatusResource(): AxiosStatusResourceClient;
998
- get AppResource(): AxiosAppResourceClient;
995
+ get AgentResource(): AxiosAgentResourceClient;
996
+ get ProvisioningResource(): AxiosProvisioningResourceClient;
997
+ get ConsoleResource(): AxiosConsoleResourceClient;
998
+ get RealmResource(): AxiosRealmResourceClient;
999
999
  get AlarmResource(): AxiosAlarmResourceClient;
1000
+ get GatewayServiceResource(): AxiosGatewayServiceResourceClient;
1001
+ get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
1000
1002
  get FlowResource(): AxiosFlowResourceClient;
1001
- get DashboardResource(): AxiosDashboardResourceClient;
1002
- get ConfigurationResource(): AxiosConfigurationResourceClient;
1003
+ get StatusResource(): AxiosStatusResourceClient;
1004
+ get AppResource(): AxiosAppResourceClient;
1005
+ get ExternalServiceResource(): AxiosExternalServiceResourceClient;
1003
1006
  get UserResource(): AxiosUserResourceClient;
1004
1007
  get GatewayClientResource(): AxiosGatewayClientResourceClient;
1005
1008
  get AssetResource(): AxiosAssetResourceClient;
1006
- get RealmResource(): AxiosRealmResourceClient;
1009
+ get DashboardResource(): AxiosDashboardResourceClient;
1010
+ get AssetPredictedDatapointResource(): AxiosAssetPredictedDatapointResourceClient;
1007
1011
  get SyslogResource(): AxiosSyslogResourceClient;
1008
- get ExternalServiceResource(): AxiosExternalServiceResourceClient;
1009
- get AssetDatapointResource(): AxiosAssetDatapointResourceClient;
1010
- get AgentResource(): AxiosAgentResourceClient;
1011
- get AssetModelResource(): AxiosAssetModelResourceClient;
1012
- get ConsoleResource(): AxiosConsoleResourceClient;
1013
1012
  get NotificationResource(): AxiosNotificationResourceClient;
1013
+ get AssetModelResource(): AxiosAssetModelResourceClient;
1014
1014
  }
1015
1015
  import * as Axios from "axios";
1016
1016
  declare module "axios" {
@@ -1018,70 +1018,70 @@ declare module "axios" {
1018
1018
  data: R;
1019
1019
  }
1020
1020
  }
1021
- export declare class AxiosAssetPredictedDatapointResourceClient extends AssetPredictedDatapointResourceClient<Axios.AxiosRequestConfig> {
1021
+ export declare class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {
1022
1022
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1023
1023
  }
1024
- export declare class AxiosProvisioningResourceClient extends ProvisioningResourceClient<Axios.AxiosRequestConfig> {
1024
+ export declare class AxiosMapResourceClient extends MapResourceClient<Axios.AxiosRequestConfig> {
1025
1025
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1026
1026
  }
1027
- export declare class AxiosMapResourceClient extends MapResourceClient<Axios.AxiosRequestConfig> {
1027
+ export declare class AxiosRulesResourceClient extends RulesResourceClient<Axios.AxiosRequestConfig> {
1028
1028
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1029
1029
  }
1030
- export declare class AxiosGatewayServiceResourceClient extends GatewayServiceResourceClient<Axios.AxiosRequestConfig> {
1030
+ export declare class AxiosAgentResourceClient extends AgentResourceClient<Axios.AxiosRequestConfig> {
1031
1031
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1032
1032
  }
1033
- export declare class AxiosRulesResourceClient extends RulesResourceClient<Axios.AxiosRequestConfig> {
1033
+ export declare class AxiosProvisioningResourceClient extends ProvisioningResourceClient<Axios.AxiosRequestConfig> {
1034
1034
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1035
1035
  }
1036
- export declare class AxiosStatusResourceClient extends StatusResourceClient<Axios.AxiosRequestConfig> {
1036
+ export declare class AxiosConsoleResourceClient extends ConsoleResourceClient<Axios.AxiosRequestConfig> {
1037
1037
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1038
1038
  }
1039
- export declare class AxiosAppResourceClient extends AppResourceClient<Axios.AxiosRequestConfig> {
1039
+ export declare class AxiosRealmResourceClient extends RealmResourceClient<Axios.AxiosRequestConfig> {
1040
1040
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1041
1041
  }
1042
1042
  export declare class AxiosAlarmResourceClient extends AlarmResourceClient<Axios.AxiosRequestConfig> {
1043
1043
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1044
1044
  }
1045
- export declare class AxiosFlowResourceClient extends FlowResourceClient<Axios.AxiosRequestConfig> {
1045
+ export declare class AxiosGatewayServiceResourceClient extends GatewayServiceResourceClient<Axios.AxiosRequestConfig> {
1046
1046
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1047
1047
  }
1048
- export declare class AxiosDashboardResourceClient extends DashboardResourceClient<Axios.AxiosRequestConfig> {
1048
+ export declare class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {
1049
1049
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1050
1050
  }
1051
- export declare class AxiosConfigurationResourceClient extends ConfigurationResourceClient<Axios.AxiosRequestConfig> {
1051
+ export declare class AxiosFlowResourceClient extends FlowResourceClient<Axios.AxiosRequestConfig> {
1052
1052
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1053
1053
  }
1054
- export declare class AxiosUserResourceClient extends UserResourceClient<Axios.AxiosRequestConfig> {
1054
+ export declare class AxiosStatusResourceClient extends StatusResourceClient<Axios.AxiosRequestConfig> {
1055
1055
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1056
1056
  }
1057
- export declare class AxiosGatewayClientResourceClient extends GatewayClientResourceClient<Axios.AxiosRequestConfig> {
1057
+ export declare class AxiosAppResourceClient extends AppResourceClient<Axios.AxiosRequestConfig> {
1058
1058
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1059
1059
  }
1060
- export declare class AxiosAssetResourceClient extends AssetResourceClient<Axios.AxiosRequestConfig> {
1060
+ export declare class AxiosExternalServiceResourceClient extends ExternalServiceResourceClient<Axios.AxiosRequestConfig> {
1061
1061
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1062
1062
  }
1063
- export declare class AxiosRealmResourceClient extends RealmResourceClient<Axios.AxiosRequestConfig> {
1063
+ export declare class AxiosUserResourceClient extends UserResourceClient<Axios.AxiosRequestConfig> {
1064
1064
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1065
1065
  }
1066
- export declare class AxiosSyslogResourceClient extends SyslogResourceClient<Axios.AxiosRequestConfig> {
1066
+ export declare class AxiosGatewayClientResourceClient extends GatewayClientResourceClient<Axios.AxiosRequestConfig> {
1067
1067
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1068
1068
  }
1069
- export declare class AxiosExternalServiceResourceClient extends ExternalServiceResourceClient<Axios.AxiosRequestConfig> {
1069
+ export declare class AxiosAssetResourceClient extends AssetResourceClient<Axios.AxiosRequestConfig> {
1070
1070
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1071
1071
  }
1072
- export declare class AxiosAssetDatapointResourceClient extends AssetDatapointResourceClient<Axios.AxiosRequestConfig> {
1072
+ export declare class AxiosDashboardResourceClient extends DashboardResourceClient<Axios.AxiosRequestConfig> {
1073
1073
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1074
1074
  }
1075
- export declare class AxiosAgentResourceClient extends AgentResourceClient<Axios.AxiosRequestConfig> {
1075
+ export declare class AxiosAssetPredictedDatapointResourceClient extends AssetPredictedDatapointResourceClient<Axios.AxiosRequestConfig> {
1076
1076
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1077
1077
  }
1078
- export declare class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {
1078
+ export declare class AxiosSyslogResourceClient extends SyslogResourceClient<Axios.AxiosRequestConfig> {
1079
1079
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1080
1080
  }
1081
- export declare class AxiosConsoleResourceClient extends ConsoleResourceClient<Axios.AxiosRequestConfig> {
1081
+ export declare class AxiosNotificationResourceClient extends NotificationResourceClient<Axios.AxiosRequestConfig> {
1082
1082
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1083
1083
  }
1084
- export declare class AxiosNotificationResourceClient extends NotificationResourceClient<Axios.AxiosRequestConfig> {
1084
+ export declare class AxiosAssetModelResourceClient extends AssetModelResourceClient<Axios.AxiosRequestConfig> {
1085
1085
  constructor(baseURL: string, axiosInstance?: Axios.AxiosInstance);
1086
1086
  }
1087
1087
  //# sourceMappingURL=restclient.d.ts.map