@robotbas/robotcloud-client 0.3.0 → 0.3.1
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/helpers/index.d.mts +1 -1
- package/dist/helpers/index.d.ts +1 -1
- package/dist/helpers/index.js +84 -36
- package/dist/helpers/index.js.map +1 -1
- package/dist/helpers/index.mjs +84 -36
- package/dist/helpers/index.mjs.map +1 -1
- package/dist/{index-BsViQoY8.d.mts → index-9RfDay_a.d.mts} +24 -16
- package/dist/{index-BsViQoY8.d.ts → index-9RfDay_a.d.ts} +24 -16
- package/dist/index.d.mts +153 -105
- package/dist/index.d.ts +153 -105
- package/dist/index.js +142 -58
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +141 -58
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/types/RobotCloudClient.d.ts +13 -5
- package/types/ServiceInstance.d.ts +13 -0
- package/types/services-configuration.d.ts +35 -26
- package/types/services-data.d.ts +38 -38
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as axios from 'axios';
|
|
2
2
|
import { AxiosResponse, AxiosInstance } from 'axios';
|
|
3
|
-
import { R as RobotCloudOrganizations, a as RobotCloudCreateOrganization, b as RobotCloudOrganizationDetails, c as RobotCloudPutOrganization, d as RobotCloudDelete, e as
|
|
4
|
-
export {
|
|
3
|
+
import { R as RobotCloudOrganizations, a as RobotCloudCreateOrganization, b as RobotCloudOrganizationDetails, c as RobotCloudPutOrganization, d as RobotCloudDelete, e as RobotCloudOrganizationUsers, f as RobotCloudOrganizationCreateUser, g as RobotCloudUsers, h as RobotCloudUserDetails, i as RobotCloudPutUserDetails, j as RobotCloudUserOrganization, k as RobotCloudUserProject, l as RobotCloudPostUserProject, m as RobotCloudPutProjectUser, A as AlertsProjectStatsRequestParams, n as AlertLogsListRequestParams, o as RobotCloudNamedItem, p as RobotCloudUserSimple, q as AlertAggregatedLogsRequestParams, S as SubsystemRequestParams, r as RobotCloudDescribedItem, s as RobotCloudCreateApplication, t as RobotCloudGetApplication, u as RobotCloudPutApplication, v as RegimState, T as TemperatureUnit, w as ServiceInstanceConfigClient, x as ServiceTypeClient, y as RoomClime1AlertEventValue, z as ServiceDataRequestParams, B as ServiceDataMeasurement, C as ServiceInstanceDataRequestParams, D as ServiceInstanceHistoricParams, H as HistoricAggregateFunction, E as ServiceInstanceHistoricAggregateParams, F as RoomGuestStatus1AlertEventValue, G as AirQuality1AlertEventValue, I as AirQuality1DataEventValue, J as RoomConsumes1AlertEventValue, P as ProjectClassifiersRequestParams, K as RobotCloudRobotCloudDeviceCreate, L as RobotCloudDeviceDetails, M as RobotCloudRobotCloudDeviceModify, N as RobotCloudDeviceConfiguration, O as ProjectLocationsRequestParams, Q as RobotCloudProject, U as RobotCloudCreateProject, V as ProjectsRequestParams, W as ProjectDetailsRequestParams, X as RobotCloudProjectDetails, Y as RobotCloudPutProject, Z as RobotCloudProjectUsers, _ as RobotCloudProjectApplications, $ as RobotCloudApplicationEnable, a0 as ServiceInstancesRequestParams, a1 as RobotCloudServiceTypeDetails, a2 as LocationServiceInstancesRequestParams, a3 as ServiceInstanceRead } from './index-9RfDay_a.mjs';
|
|
4
|
+
export { ak as AppAccessLevel, ag as BaseFullPaginableRequestParams, am as FancoilSpeedState, aq as MeasurementStatus, ai as OrganizationAccessLevel, ad as PaginableRequestParams, aj as ProjectAccessLevel, ab as ProjectModifyTag, aa as ProjectTag, ac as ProjectTagDetails, ah as ProjectTagRequestParams, a8 as ProjectTagTreeNode, a9 as ProjectTagsTree, ao as RobotCloudCreateUser, a7 as RobotCloudPermissionsHelper, ap as RobotCloudProjectInstances, al as RobotCloudServiceType, an as RobotCloudUserAppAccess, ae as SortableListRequestParams, af as SubsystemTagsRequestParams, a6 as robotCloudPermissionsHelper, a4 as tagsClient, a5 as tagsHelper } from './index-9RfDay_a.mjs';
|
|
5
5
|
|
|
6
6
|
declare const robotcloudApi: axios.AxiosInstance;
|
|
7
7
|
|
|
@@ -71,16 +71,14 @@ declare class OrganizationsClient {
|
|
|
71
71
|
getOrganization: (organizationId: string) => Promise<AxiosResponse<RobotCloudOrganizationDetails>>;
|
|
72
72
|
putOrganization: (organizationId: string) => Promise<AxiosResponse<RobotCloudPutOrganization>>;
|
|
73
73
|
deleteOrganization: (organizationId: string) => Promise<AxiosResponse<RobotCloudDelete>>;
|
|
74
|
-
getOrganizationProjects: (organizationId: string) => Promise<AxiosResponse<RobotCloudProject[]>>;
|
|
75
|
-
postOrganizationProjects: (organizationId: string) => Promise<AxiosResponse<RobotCloudOrganizationCreateUser>>;
|
|
76
|
-
getOrganizationUsers: (organizationId: string) => Promise<AxiosResponse<RobotCloudOrganizationUsers[]>>;
|
|
77
|
-
postOrganizationUsers: (organizationId: string) => Promise<AxiosResponse<RobotCloudOrganizationCreateUser>>;
|
|
78
74
|
}
|
|
79
75
|
|
|
80
76
|
declare class UsersClient {
|
|
81
77
|
private robotcloudApi;
|
|
82
78
|
private logger;
|
|
83
79
|
constructor(robotcloudApi: AxiosInstance);
|
|
80
|
+
getOrganizationUsers: (organizationId: string) => Promise<AxiosResponse<RobotCloudOrganizationUsers[]>>;
|
|
81
|
+
postOrganizationUsers: (organizationId: string) => Promise<AxiosResponse<RobotCloudOrganizationCreateUser>>;
|
|
84
82
|
getUsers: () => Promise<AxiosResponse<RobotCloudUsers[]>>;
|
|
85
83
|
getUser: (username: string) => Promise<AxiosResponse<RobotCloudUserDetails>>;
|
|
86
84
|
putUser: (username: string) => Promise<AxiosResponse<RobotCloudPutUserDetails>>;
|
|
@@ -185,53 +183,53 @@ declare class ApplicationsClient {
|
|
|
185
183
|
}
|
|
186
184
|
|
|
187
185
|
interface RoomClime1Data {
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
186
|
+
demandRF: boolean;
|
|
187
|
+
eco_mode: "STANDBY" | "ECO" | "VIP";
|
|
188
|
+
fancoil_manual: boolean;
|
|
189
|
+
fancoil_speed: number;
|
|
190
|
+
humidity: number;
|
|
191
|
+
humidity_set_point: number;
|
|
192
|
+
|
|
193
|
+
on: boolean;
|
|
194
|
+
onRF: boolean;
|
|
197
195
|
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
196
|
+
temperature: number;
|
|
197
|
+
temperature_set_point: number;
|
|
198
|
+
regim: RegimState;
|
|
201
199
|
}
|
|
202
200
|
|
|
203
201
|
interface RoomConsumes1Data {
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
202
|
+
energy_electric: number;
|
|
203
|
+
energy_thermal: number;
|
|
204
|
+
hot_water: number;
|
|
205
|
+
cold_water: number;
|
|
206
|
+
|
|
207
|
+
daily_energy_electric: number;
|
|
208
|
+
daily_energy_thermal: number;
|
|
209
|
+
daily_hot_water: number;
|
|
210
|
+
daily_cold_water: number;
|
|
211
|
+
daily_co2_footprint: number;
|
|
212
|
+
daily_tree_equivalent: number;
|
|
213
|
+
|
|
214
|
+
guest_energy_electric: number;
|
|
215
|
+
guest_energy_thermal: number;
|
|
216
|
+
guest_hot_water: number;
|
|
217
|
+
guest_cold_water: number;
|
|
218
|
+
guest_co2_footprint: number;
|
|
219
|
+
guest_tree_equivalent: number;
|
|
222
220
|
}
|
|
223
221
|
|
|
224
222
|
interface RoomGuestStatus1Data {
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
223
|
+
sold: boolean;
|
|
224
|
+
vip: boolean;
|
|
225
|
+
occupied: boolean;
|
|
226
|
+
do_not_disturb: boolean;
|
|
227
|
+
make_up_room: boolean;
|
|
228
|
+
tray_status: "IDLE" | 'READY' | 'FINISH';
|
|
229
|
+
remote_occupation: boolean;
|
|
230
|
+
door_open: boolean;
|
|
231
|
+
window_open: boolean;
|
|
232
|
+
medical_alarm: boolean;
|
|
235
233
|
}
|
|
236
234
|
|
|
237
235
|
interface ServiceInstanceDeviceConfig {
|
|
@@ -252,35 +250,44 @@ interface RoomGrouping1DataEventValue {
|
|
|
252
250
|
}
|
|
253
251
|
|
|
254
252
|
interface RoomClimeConfigurationParams {
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
253
|
+
temperature_set_point?: number;
|
|
254
|
+
humidity_set_point?: number;
|
|
255
|
+
regim?: RegimState;
|
|
256
|
+
eco_mode?: "STANDBY" | "ECO" | "VIP";
|
|
257
|
+
fancoil_speed?: 0 | 1 | 2 | 3;
|
|
258
|
+
on?: boolean;
|
|
259
|
+
|
|
260
|
+
hasFC?: boolean;
|
|
261
|
+
hasRF?: boolean;
|
|
262
|
+
isRFLinked?: boolean;
|
|
263
|
+
|
|
264
|
+
onRF?: boolean;
|
|
265
|
+
|
|
266
|
+
high_temperature_level?: number;
|
|
267
|
+
low_temperature_level?: number;
|
|
268
|
+
high_humidity_level?: number;
|
|
269
|
+
fancoil_on_time_limit?: number;
|
|
270
|
+
temperature_units?: TemperatureUnit;
|
|
273
271
|
}
|
|
274
272
|
|
|
275
273
|
interface RoomGuestStatusConfigurationParams {
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
274
|
+
sold?: boolean;
|
|
275
|
+
vip?: boolean;
|
|
276
|
+
do_not_disturb?: boolean;
|
|
277
|
+
make_up_room?: boolean;
|
|
278
|
+
remote_occupation?: boolean;
|
|
279
|
+
door_open_time_limit?: number;
|
|
280
|
+
window_open_time_limit?: number;
|
|
281
|
+
medical_alarm?: boolean;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
interface RoomGroupingConfigurationParams {
|
|
286
|
+
replica_1_active: boolean;
|
|
287
|
+
replica_2_active: boolean;
|
|
288
|
+
replica_3_active: boolean;
|
|
289
|
+
associate_clime: boolean;
|
|
290
|
+
associate_presence: boolean;
|
|
284
291
|
}
|
|
285
292
|
|
|
286
293
|
declare class GenericInstanceConfigClient<T> implements ServiceInstanceConfigClient<T> {
|
|
@@ -351,6 +358,21 @@ declare class RoomConsumesClient implements ServiceTypeClient<RoomConsumes1Alert
|
|
|
351
358
|
}
|
|
352
359
|
declare const roomConsumesClient: RoomConsumesClient;
|
|
353
360
|
|
|
361
|
+
declare class RoomGroupingConfigClient extends GenericInstanceConfigClient<RoomGroupingConfigurationParams> {
|
|
362
|
+
constructor();
|
|
363
|
+
}
|
|
364
|
+
declare class RoomGroupingClient implements ServiceTypeClient<any, RoomGrouping1DataEventValue> {
|
|
365
|
+
private _configurationClient;
|
|
366
|
+
get configuration(): RoomGroupingConfigClient;
|
|
367
|
+
constructor();
|
|
368
|
+
getAlerts(prjId: string, params?: ServiceDataRequestParams): Promise<AxiosResponse<ServiceDataMeasurement<any>[]>>;
|
|
369
|
+
getData(prjId: string, params?: ServiceDataRequestParams): Promise<AxiosResponse<ServiceDataMeasurement<RoomGrouping1DataEventValue>[]>>;
|
|
370
|
+
getInstanceData: (prjId: string, instanceId: string, params?: ServiceInstanceDataRequestParams) => Promise<AxiosResponse<ServiceDataMeasurement<RoomGrouping1DataEventValue>>>;
|
|
371
|
+
getInstanceHistoric(prjId: string, instanceId: string, startTime: Date, endTime: Date, params: ServiceInstanceHistoricParams): Promise<AxiosResponse<ServiceDataMeasurement<RoomGrouping1DataEventValue>[]>>;
|
|
372
|
+
getInstanceHistoricAggregate(prjId: string, instanceId: string, startTime: Date, endTime: Date, aggFunction: HistoricAggregateFunction, periode: string, params: ServiceInstanceHistoricAggregateParams): Promise<AxiosResponse<ServiceDataMeasurement<RoomGrouping1DataEventValue>[]>>;
|
|
373
|
+
}
|
|
374
|
+
declare const roomGroupingClient: RoomGroupingClient;
|
|
375
|
+
|
|
354
376
|
interface Classifier {
|
|
355
377
|
id: string;
|
|
356
378
|
name: string;
|
|
@@ -390,32 +412,6 @@ declare class DevicesClient {
|
|
|
390
412
|
}
|
|
391
413
|
declare const devicesClient: DevicesClient;
|
|
392
414
|
|
|
393
|
-
interface ServiceInstanceDevicesInfo {
|
|
394
|
-
device: string;
|
|
395
|
-
index?: number;
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
interface RobotCloudServiceInstance extends RobotCloudNamedItem {
|
|
399
|
-
service: string;
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
interface ServiceInstanceDetails extends RobotCloudServiceInstance {
|
|
404
|
-
description?: string;
|
|
405
|
-
location?: string;
|
|
406
|
-
tags?: string[];
|
|
407
|
-
subsystems?: string[];
|
|
408
|
-
classifier?: string;
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
interface CreateServiceInstance extends RobotCloudServiceInstance {
|
|
412
|
-
description?: string;
|
|
413
|
-
name: string
|
|
414
|
-
tags?: string[];
|
|
415
|
-
subsystems?: string[];
|
|
416
|
-
classifier?: string;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
415
|
interface ProjectLocations {
|
|
420
416
|
id: string
|
|
421
417
|
name: string
|
|
@@ -442,8 +438,6 @@ interface RobotCloudLocationDetails {
|
|
|
442
438
|
}
|
|
443
439
|
|
|
444
440
|
declare class LocationsClient {
|
|
445
|
-
getLocationServiceInstances: (prjId: string, locId: string, service_type: RobotCloudServiceType, params?: LocationServiceInstancesRequestParams) => Promise<AxiosResponse<RobotCloudServiceInstance[]>>;
|
|
446
|
-
postLocationServiceInstances: (prjId: string, locId: string, service_type: RobotCloudServiceType, params?: LocationServiceInstancesRequestParams) => Promise<AxiosResponse<CreateServiceInstance[]>>;
|
|
447
441
|
getLocations: (prjId: string, params?: ProjectLocationsRequestParams) => Promise<AxiosResponse<RobotCloudNamedItem[]>>;
|
|
448
442
|
postLocations: (prjId: string, params?: ProjectLocationsRequestParams) => Promise<AxiosResponse<RobotCloudLocationCreate[]>>;
|
|
449
443
|
getLocation: (locationId: string) => Promise<AxiosResponse<RobotCloudLocationDetails>>;
|
|
@@ -453,26 +447,80 @@ declare class LocationsClient {
|
|
|
453
447
|
declare const locationsClient: LocationsClient;
|
|
454
448
|
|
|
455
449
|
declare class ProjectsClient {
|
|
450
|
+
getOrganizationProjects: (organizationId: string) => Promise<AxiosResponse<RobotCloudProject[]>>;
|
|
451
|
+
postOrganizationProjects: (organizationId: string) => Promise<AxiosResponse<RobotCloudCreateProject>>;
|
|
456
452
|
getProjects: (params?: ProjectsRequestParams) => Promise<AxiosResponse<RobotCloudProject[]>>;
|
|
457
453
|
getProjectDetails: (prjId: string, params?: ProjectDetailsRequestParams) => Promise<AxiosResponse<RobotCloudProjectDetails>>;
|
|
458
454
|
putProjectDetails: (prjId: string, params?: ProjectDetailsRequestParams) => Promise<AxiosResponse<RobotCloudPutProject>>;
|
|
459
455
|
deleteProject: (prjId: string, params?: ProjectDetailsRequestParams) => Promise<AxiosResponse<RobotCloudDelete>>;
|
|
460
456
|
getProjectUsers: (prjId: string, params?: ProjectDetailsRequestParams) => Promise<AxiosResponse<RobotCloudProjectUsers>>;
|
|
461
|
-
getProjectInstances: (prjId: string, params?: ProjectDetailsRequestParams) => Promise<AxiosResponse<RobotCloudProjectInstances[]>>;
|
|
462
|
-
getProjectServiceTypes: (prjId: string, params?: ProjectDetailsRequestParams) => Promise<AxiosResponse<RobotCloudServiceTypeDetails[]>>;
|
|
463
457
|
getProjectApplications: (prjId: string, params?: ProjectDetailsRequestParams) => Promise<AxiosResponse<RobotCloudProjectApplications[]>>;
|
|
464
458
|
getProjectApplication: (prjId: string, appId: string) => Promise<AxiosResponse<RobotCloudProjectApplications>>;
|
|
465
459
|
putProjectApplication: (prjId: string, appId: string) => Promise<AxiosResponse<RobotCloudApplicationEnable>>;
|
|
466
460
|
}
|
|
467
461
|
declare const projectsClient: ProjectsClient;
|
|
468
462
|
|
|
463
|
+
interface ServiceInstanceDevicesInfo {
|
|
464
|
+
device: string;
|
|
465
|
+
index?: number;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
interface RobotCloudServiceInstance extends RobotCloudNamedItem {
|
|
469
|
+
service: string;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
interface ServiceInstanceDetails extends RobotCloudServiceInstance {
|
|
474
|
+
description?: string;
|
|
475
|
+
location?: string;
|
|
476
|
+
tags?: string[];
|
|
477
|
+
subsystems?: string[];
|
|
478
|
+
classifier?: string;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
interface ModifyServiceInstanceDetails {
|
|
482
|
+
description?: string;
|
|
483
|
+
name?: string;
|
|
484
|
+
tags?: string[];
|
|
485
|
+
subsystems?: string[];
|
|
486
|
+
classifier?: string;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
interface CreateServiceInstance extends RobotCloudServiceInstance {
|
|
490
|
+
description?: string;
|
|
491
|
+
name: string
|
|
492
|
+
tags?: string[];
|
|
493
|
+
subsystems?: string[];
|
|
494
|
+
classifier?: string;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
interface ProjectSizeInstances {
|
|
498
|
+
total: number
|
|
499
|
+
filtered: number
|
|
500
|
+
}
|
|
501
|
+
|
|
469
502
|
declare class ServiceInstancesClient {
|
|
470
503
|
getAll: (prjId: string, params?: ServiceInstancesRequestParams) => Promise<AxiosResponse<RobotCloudServiceInstance[]>>;
|
|
471
504
|
getServiceInstances: (prjId: string, service_type: string, params?: ServiceInstancesRequestParams) => Promise<AxiosResponse<RobotCloudServiceInstance[]>>;
|
|
472
|
-
|
|
473
|
-
|
|
505
|
+
getProjectServiceTypes: (prjId: string, params?: ProjectDetailsRequestParams) => Promise<AxiosResponse<RobotCloudServiceTypeDetails[]>>;
|
|
506
|
+
getLocationServiceInstances: (prjId: string, locId: string, service_type: string, params?: LocationServiceInstancesRequestParams) => Promise<AxiosResponse<RobotCloudServiceInstance[]>>;
|
|
507
|
+
postLocationServiceInstances: (prjId: string, locId: string, service_type: string, params?: LocationServiceInstancesRequestParams) => Promise<AxiosResponse<CreateServiceInstance>>;
|
|
508
|
+
getServiceInstance: (prjId: string, service_type: string, instance_id: string) => Promise<AxiosResponse<ServiceInstanceDetails, any, {}>>;
|
|
509
|
+
putServiceInstance: (prjId: string, service_type: string, instance_id: string) => Promise<AxiosResponse<ModifyServiceInstanceDetails, any, {}>>;
|
|
510
|
+
deleteServiceInstance: (prjId: string, service_type: string, instance_id: string) => Promise<AxiosResponse<RobotCloudDelete, any, {}>>;
|
|
511
|
+
getServiceInstanceDevicesInfo: (prjId: string, service_type: string, instance_id: string) => Promise<AxiosResponse<Record<string, ServiceInstanceDevicesInfo>, any, {}>>;
|
|
512
|
+
putServiceInstanceDevicesInfo: (prjId: string, service_type: string, instance_id: string) => Promise<AxiosResponse<Record<string, ServiceInstanceDevicesInfo>, any, {}>>;
|
|
474
513
|
getServiceAllInstancesData(prjId: string, service_type: string): Promise<AxiosResponse<ServiceDataMeasurement<any>[]>>;
|
|
514
|
+
getServiceInstancesData(prjId: string, service_type: string, instance_id: string): Promise<AxiosResponse<ServiceDataMeasurement<any>[]>>;
|
|
475
515
|
getServiceAllInstancesAlerts(prjId: string, service_type: string): Promise<AxiosResponse<ServiceInstanceRead<any>[]>>;
|
|
516
|
+
getServiceInstancesAlerts(prjId: string, service_type: string, instance_id: string): Promise<AxiosResponse<ServiceDataMeasurement<any>[]>>;
|
|
517
|
+
getServiceInstancesConfiguration(prjId: string, service_type: string, instance_id: string): Promise<AxiosResponse<ServiceDataMeasurement<any>[]>>;
|
|
518
|
+
putServiceInstancesConfiguration(prjId: string, service_type: string, instance_id: string): Promise<AxiosResponse<ServiceDataMeasurement<any>[]>>;
|
|
519
|
+
getServiceInstancesHistoricData(prjId: string, service_type: string, instance_id: string): Promise<AxiosResponse<ServiceDataMeasurement<any>[]>>;
|
|
520
|
+
getServiceInstancesHistoricDataAggregate(prjId: string, service_type: string, instance_id: string): Promise<AxiosResponse<ServiceDataMeasurement<any>[]>>;
|
|
521
|
+
getServiceLocation(prjId: string, locationId: string): Promise<AxiosResponse<RobotCloudServiceTypeDetails[]>>;
|
|
522
|
+
getSizeProjectInstances(prjId: string): Promise<AxiosResponse<ProjectSizeInstances>>;
|
|
523
|
+
getSizeProjectServicesInstances(prjId: string, service_type: string): Promise<AxiosResponse<ProjectSizeInstances>>;
|
|
476
524
|
}
|
|
477
525
|
declare const serviceInstancesClient: ServiceInstancesClient;
|
|
478
526
|
|
|
@@ -497,4 +545,4 @@ declare const alertsClient: AlertsClient;
|
|
|
497
545
|
declare const organizationsClient: OrganizationsClient;
|
|
498
546
|
declare const usersClient: UsersClient;
|
|
499
547
|
|
|
500
|
-
export { AirQuality1AlertEventValue, AirQuality1DataEventValue, AlertAggregatedLogsRequestParams, type AlertLogAckAlerts, type AlertLogLine, AlertLogsListRequestParams, type AlertsClient, type AlertsLogsAggregated, type AlertsLogsList, type AlertsLogsStats, AlertsProjectStatsRequestParams, ApplicationsClient, type CheckTokenResponse, type Classifier, type ClassifierCreate, type ClassifierDetails, type ClassifierModify, type CreateServiceInstance, HistoricAggregateFunction, LocationServiceInstancesRequestParams, type LoginClient, OrganizationsClient, ProjectClassifiersRequestParams, ProjectDetailsRequestParams, ProjectLocationsRequestParams, ProjectsRequestParams, RegimState, RobotCloudApplicationEnable, RobotCloudClientConfig, RobotCloudCreateApplication, RobotCloudCreateOrganization, RobotCloudDelete, RobotCloudDescribedItem, RobotCloudDeviceConfiguration, RobotCloudDeviceDetails, RobotCloudGetApplication, type RobotCloudJWTPayload, RobotCloudNamedItem, RobotCloudOrganizationCreateUser, RobotCloudOrganizationDetails, RobotCloudOrganizationUsers, RobotCloudOrganizations, RobotCloudPostUserProject, RobotCloudProject, RobotCloudProjectApplications, RobotCloudProjectDetails,
|
|
548
|
+
export { AirQuality1AlertEventValue, AirQuality1DataEventValue, AlertAggregatedLogsRequestParams, type AlertLogAckAlerts, type AlertLogLine, AlertLogsListRequestParams, type AlertsClient, type AlertsLogsAggregated, type AlertsLogsList, type AlertsLogsStats, AlertsProjectStatsRequestParams, ApplicationsClient, type CheckTokenResponse, type Classifier, type ClassifierCreate, type ClassifierDetails, type ClassifierModify, type CreateServiceInstance, HistoricAggregateFunction, LocationServiceInstancesRequestParams, type LoginClient, type ModifyServiceInstanceDetails, OrganizationsClient, ProjectClassifiersRequestParams, ProjectDetailsRequestParams, ProjectLocationsRequestParams, type ProjectSizeInstances, ProjectsRequestParams, RegimState, RobotCloudApplicationEnable, RobotCloudClientConfig, RobotCloudCreateApplication, RobotCloudCreateOrganization, RobotCloudCreateProject, RobotCloudDelete, RobotCloudDescribedItem, RobotCloudDeviceConfiguration, RobotCloudDeviceDetails, RobotCloudGetApplication, type RobotCloudJWTPayload, RobotCloudNamedItem, RobotCloudOrganizationCreateUser, RobotCloudOrganizationDetails, RobotCloudOrganizationUsers, RobotCloudOrganizations, RobotCloudPostUserProject, RobotCloudProject, RobotCloudProjectApplications, RobotCloudProjectDetails, RobotCloudProjectUsers, RobotCloudPutApplication, RobotCloudPutOrganization, RobotCloudPutProject, RobotCloudPutProjectUser, RobotCloudPutUserDetails, RobotCloudRobotCloudDeviceCreate, RobotCloudRobotCloudDeviceModify, type RobotCloudServiceInstance, RobotCloudServiceTypeDetails, RobotCloudUserDetails, RobotCloudUserOrganization, RobotCloudUserProject, RobotCloudUserSimple, RobotCloudUsers, RoomClime1AlertEventValue, type RoomClime1Data, type RoomClimeAlertsKeys, RoomClimeClient, type RoomClimeConfigurationParams, RoomConsumes1AlertEventValue, type RoomConsumes1Data, type RoomGrouping1DataEventValue, type RoomGrouping1InstanceDeviceConfig, type RoomGroupingConfigurationParams, RoomGuestStatus1AlertEventValue, type RoomGuestStatus1Data, type RoomGuestStatusConfigurationParams, ServiceDataMeasurement, ServiceDataRequestParams, ServiceInstanceConfigClient, ServiceInstanceDataRequestParams, type ServiceInstanceDetails, type ServiceInstanceDeviceConfig, type ServiceInstanceDevicesInfo, ServiceInstanceHistoricAggregateParams, ServiceInstanceHistoricParams, ServiceInstanceRead, ServiceInstancesRequestParams, ServiceTypeClient, type SessionTokenResponse, SubsystemRequestParams, TemperatureUnit, type TokenResponse, UsersClient, airQualityClient, alertsClient, applicationsClient, classifiersClient, clientConfig, devicesClient, locationsClient, loginClient, organizationsClient, projectsClient, robotCloudToken, robotcloudApi, roomClimeClient, roomConsumesClient, roomGroupingClient, roomGuestStatusClient, serviceInstancesClient, subsystemsClient, usersClient };
|