@robotbas/robotcloud-client 0.3.7 → 0.3.8
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/{index-DzsnpJ20.d.mts → index-B4EMC1Af.d.mts} +208 -1
- package/dist/{index-DzsnpJ20.d.ts → index-B4EMC1Af.d.ts} +208 -1
- package/dist/index.d.mts +75 -3
- package/dist/index.d.ts +75 -3
- package/package.json +1 -1
- package/types/services-configuration.d.ts +72 -0
- package/types/services.d.ts +207 -0
package/dist/helpers/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { ae as RobotCloudPermissionsHelper, ad as robotCloudPermissionsHelper, ac as tagsHelper } from '../index-
|
|
1
|
+
export { ae as RobotCloudPermissionsHelper, ad as robotCloudPermissionsHelper, ac as tagsHelper } from '../index-B4EMC1Af.mjs';
|
|
2
2
|
import 'axios';
|
package/dist/helpers/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { ae as RobotCloudPermissionsHelper, ad as robotCloudPermissionsHelper, ac as tagsHelper } from '../index-
|
|
1
|
+
export { ae as RobotCloudPermissionsHelper, ad as robotCloudPermissionsHelper, ac as tagsHelper } from '../index-B4EMC1Af.js';
|
|
2
2
|
import 'axios';
|
|
@@ -379,12 +379,218 @@ interface ChillerHeatingPump1AlertEventValue {
|
|
|
379
379
|
alarm_general?: boolean;
|
|
380
380
|
}
|
|
381
381
|
|
|
382
|
+
interface CoolHeatCons1DataEventValue {
|
|
383
|
+
total_power?: number;
|
|
384
|
+
thermal_power?: number;
|
|
385
|
+
total_energy?: number;
|
|
386
|
+
thermal_energy?: number;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
interface CoolHeatCons1AlertEventValue {}
|
|
390
|
+
|
|
391
|
+
interface CoolHeatProd1DataEventValue {
|
|
392
|
+
output_temperature?: number;
|
|
393
|
+
return_temperature?: number;
|
|
394
|
+
compressor_power?: number;
|
|
395
|
+
condenser_power?: number;
|
|
396
|
+
transport_power?: number;
|
|
397
|
+
output_power?: number;
|
|
398
|
+
cop_thermal?: number;
|
|
399
|
+
cop_global?: number;
|
|
400
|
+
regime?: "COOL" | "HEAT";
|
|
401
|
+
compressor_energy?: number;
|
|
402
|
+
condenser_energy?: number;
|
|
403
|
+
transport_energy?: number;
|
|
404
|
+
output_energy?: number;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
interface CoolHeatProd1AlertEventValue {
|
|
408
|
+
power_consumption_alert: number,
|
|
409
|
+
cop_thermal_alert: number
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
interface CoolHeatTemperature1DataEventValue {
|
|
413
|
+
input_temperature?: number;
|
|
414
|
+
output_temperature?: number;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
interface CoolHeatTemperature1AlertEventValue {
|
|
418
|
+
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
interface EnergyCounter1DataEventValue {
|
|
422
|
+
consumed_energy?: number;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
interface EnergyCounter1AlertEventValue {
|
|
426
|
+
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
interface EnergyProduction1DataEventValue {
|
|
430
|
+
energy_delivered?: number;
|
|
431
|
+
energy_received?: number;
|
|
432
|
+
energy_selfconsumption?: number;
|
|
433
|
+
energy_consumed?: number;
|
|
434
|
+
energy_produced?: number;
|
|
435
|
+
power_produced?: number;
|
|
436
|
+
power_consumed?: number;
|
|
437
|
+
power_selfconsumption?: number;
|
|
438
|
+
power_delivered?: number;
|
|
439
|
+
power_received?: number;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
interface EnergyProduction1AlertEventValue {
|
|
443
|
+
power_production_alert: boolean;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
interface GasCounter1DataEventValue {
|
|
447
|
+
consumed_volume?: number;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
interface GasCounter1AlertEventValue {
|
|
451
|
+
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
interface GenericTemperature1DataEventValue {
|
|
455
|
+
temperature?: number;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
interface GenericTemperature1AlertEventValue {
|
|
459
|
+
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
interface HeatMeter1DataEventValue {
|
|
463
|
+
temperature_1?: number;
|
|
464
|
+
temperature_2?: number;
|
|
465
|
+
flow?: number;
|
|
466
|
+
volume?: number;
|
|
467
|
+
power?: number;
|
|
468
|
+
heat_energy?: number;
|
|
469
|
+
refrigeration_energy?: number;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
interface HeatMeter1AlertEventValue {
|
|
473
|
+
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
interface HeatProduction1DataEventValue {
|
|
477
|
+
output_temperature?: number;
|
|
478
|
+
return_temperature?: number;
|
|
479
|
+
output_power?: number;
|
|
480
|
+
consumed_power?: number;
|
|
481
|
+
efficiency?: number;
|
|
482
|
+
output_energy?: number;
|
|
483
|
+
consumed_energy?: number;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
interface HeatProduction1AlertEventValue {
|
|
487
|
+
output_power_alert: boolean;
|
|
488
|
+
efficiency_alert: boolean;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
interface OutdoorClime1DataEventValue {
|
|
492
|
+
temperature?: number;
|
|
493
|
+
humidity_relative?: number;
|
|
494
|
+
humidity_absolute?: number;
|
|
495
|
+
enthalpy?: number;
|
|
496
|
+
luminosity?: number;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
interface OutdoorClime1AlertEventValue {
|
|
500
|
+
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
interface PowerMeter1DataEventValue {
|
|
504
|
+
power_active?: number;
|
|
505
|
+
power_reactive?: number;
|
|
506
|
+
power_apparent?: number;
|
|
507
|
+
voltage_1_2?: number;
|
|
508
|
+
voltage_2_3?: number;
|
|
509
|
+
voltage_3_1?: number;
|
|
510
|
+
voltage_1?: number;
|
|
511
|
+
voltage_2?: number;
|
|
512
|
+
voltage_3?: number;
|
|
513
|
+
current_1?: number;
|
|
514
|
+
current_2?: number;
|
|
515
|
+
current_3?: number;
|
|
516
|
+
current?: number;
|
|
517
|
+
energy_active?: number;
|
|
518
|
+
energy_reactive?: number;
|
|
519
|
+
energy_apparent?: number;
|
|
520
|
+
energy_active_received?: number;
|
|
521
|
+
energy_reactive_received?: number;
|
|
522
|
+
energy_apparent_received?: number;
|
|
523
|
+
energy_active_delivered?: number;
|
|
524
|
+
energy_reactive_delivered?: number;
|
|
525
|
+
energy_apparent_delivered?: number;
|
|
526
|
+
power_factor?: number;
|
|
527
|
+
power_factor_1?: number;
|
|
528
|
+
power_factor_2?: number;
|
|
529
|
+
power_factor_3?: number;
|
|
530
|
+
frequency?: number;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
interface PowerMeter1AlertEventValue {
|
|
534
|
+
power_active_alert: boolean;
|
|
535
|
+
power_active_phase_1_alert: boolean;
|
|
536
|
+
power_active_phase_2_alert: boolean;
|
|
537
|
+
power_active_phase_3_alert: boolean;
|
|
538
|
+
power_reactive_alert: boolean;
|
|
539
|
+
voltage_phase_1_alert: boolean;
|
|
540
|
+
voltage_phase_2_alert: boolean;
|
|
541
|
+
voltage_phase_3_alert: boolean;
|
|
542
|
+
current_phase_1_alert: boolean;
|
|
543
|
+
current_phase_2_alert: boolean;
|
|
544
|
+
current_phase_3_alert: boolean;
|
|
545
|
+
current_phase_1_balance_alert: boolean;
|
|
546
|
+
current_phase_2_balance_alert: boolean;
|
|
547
|
+
current_phase_3_balance_alert: boolean;
|
|
548
|
+
power_factor_alert: boolean;
|
|
549
|
+
power_factor_phase_1_alert: boolean;
|
|
550
|
+
power_factor_phase_2_alert: boolean;
|
|
551
|
+
power_factor_phase_3_alert: boolean;
|
|
552
|
+
frequency_alert: boolean;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
interface RoomBlePairing1DataEventValue {
|
|
556
|
+
installation_id?: number;
|
|
557
|
+
pairing_key?: number;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
interface RoomBlePairing1AlertEventValue {
|
|
561
|
+
|
|
562
|
+
}
|
|
563
|
+
|
|
382
564
|
interface RoomGuestStatus1AlertEventValue {
|
|
383
565
|
door_open_overtime: boolean;
|
|
384
566
|
window_open_overtime: boolean;
|
|
385
567
|
medical_alarm: boolean;
|
|
386
568
|
}
|
|
387
569
|
|
|
570
|
+
interface RoomDiagnostics1Data {
|
|
571
|
+
peripheral_num?: number;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
interface RoomDiagnostics1AlertEventValue {
|
|
575
|
+
low_peripheral_num: boolean;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
interface TemporizedOutput1Data {
|
|
579
|
+
on: boolean;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
interface TemporizedOutput1AlertEventValue {
|
|
583
|
+
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
interface WaterCounter1Data {
|
|
587
|
+
consumed_volume?: number;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
interface WaterCounter1AlertEventValue {
|
|
591
|
+
|
|
592
|
+
}
|
|
593
|
+
|
|
388
594
|
|
|
389
595
|
////
|
|
390
596
|
// Generic interface types
|
|
@@ -393,6 +599,7 @@ interface RoomGuestStatus1AlertEventValue {
|
|
|
393
599
|
type HistoricAggregateFunction =
|
|
394
600
|
| "count"
|
|
395
601
|
| "increase"
|
|
602
|
+
| "pincrease"
|
|
396
603
|
| "mean"
|
|
397
604
|
| "first"
|
|
398
605
|
| "last"
|
|
@@ -640,4 +847,4 @@ declare const robotCloudPermissionsHelper: RobotCloudPermissionsHelper;
|
|
|
640
847
|
|
|
641
848
|
declare const tagsHelper: TagsHelper;
|
|
642
849
|
|
|
643
|
-
export { type RobotCloudCreateProject as $, type AlertsProjectStatsRequestParams as A, type ServiceDataRequestParams as B, type ServiceInstanceAlertsClient as C, type ServiceInstanceAlertRequestParams as D, type ServiceAlertRequestParams as E, type ServiceInstanceHistoricClient as F, type ServiceInstanceHistoricParams as G, type HistoricAggregateFunction as H, type ServiceInstanceHistoricAggregateParams as I, type ServiceTypeClient as J, type RoomClime1AlertEventValue as K, type RoomGuestStatus1AlertEventValue as L, type AirQuality1DataEventValue as M, type AirQuality1AlertEventValue as N, type RoomConsumes1AlertEventValue as O, type ProjectClassifiersRequestParams as P, type RobotCloudRobotCloudDeviceCreate as Q, type RobotCloudOrganizations as R, type SubsystemRequestParams as S, type TemperatureUnit as T, type RobotCloudDeviceDetails as U, type RobotCloudRobotCloudDeviceModify as V, type RobotCloudDeviceConfiguration as W, type ProjectLocationsRequestParams as X, type RobotCloudServiceType as Y, type LocationServiceInstancesRequestParams as Z, type RobotCloudProject as _, type RobotCloudCreateOrganization as a, type ProjectsRequestParams as a0, type ProjectDetailsRequestParams as a1, type RobotCloudProjectDetails as a2, type RobotCloudPutProject as a3, type RobotCloudProjectUsers as a4, type RobotCloudProjectApplications as a5, type RobotCloudApplicationEnable as a6, type RobotCloudProjectInstances as a7, type RobotCloudServiceTypeDetails as a8, type ServiceInstancesRequestParams as a9, type ServiceInstanceRead as aa, tagsClient as ab, tagsHelper as ac, robotCloudPermissionsHelper as ad, type RobotCloudPermissionsHelper as ae, type ProjectTagTreeNode as af, type ProjectTagsTree as ag, type ProjectTag as ah, type ProjectModifyTag as ai, type ProjectTagDetails as aj, type PaginableRequestParams as ak, type SortableListRequestParams as al, type SubsystemTagsRequestParams as am, type BaseFullPaginableRequestParams as an, type ProjectTagRequestParams as ao, type OrganizationAccessLevel as ap, type ProjectAccessLevel as aq, type AppAccessLevel as ar, type FancoilSpeedState as as, type RobotCloudUserAppAccess as at, type RobotCloudCreateUser as au, type MeasurementStatus as av, type AirHandlingUnit1AlertEventValue as aw, type AirHandlingUnit1DataEventValue as ax, type ChillerHeatingPump1DataEventValue as ay, type ChillerHeatingPump1AlertEventValue as az, type RobotCloudOrganizationDetails as b, type RobotCloudPutOrganization as c, type RobotCloudDelete as d, type RobotCloudOrganizationUsers as e, type RobotCloudOrganizationCreateUser as f, type RobotCloudUsers as g, type RobotCloudUserDetails as h, type RobotCloudPutUserDetails as i, type RobotCloudUserOrganization as j, type RobotCloudUserProject as k, type RobotCloudPostUserProject as l, type RobotCloudPutProjectUser as m, type AlertLogsListRequestParams as n, type RobotCloudNamedItem as o, type RobotCloudUserSimple as p, type AlertAggregatedLogsRequestParams as q, type RobotCloudDescribedItem as r, type RobotCloudCreateApplication as s, type RobotCloudGetApplication as t, type RobotCloudPutApplication as u, type RegimState as v, type ServiceInstanceConfigClient as w, type ServiceInstanceDataClient as x, type ServiceInstanceDataRequestParams as y, type ServiceDataMeasurement as z };
|
|
850
|
+
export { type RobotCloudCreateProject as $, type AlertsProjectStatsRequestParams as A, type ServiceDataRequestParams as B, type ServiceInstanceAlertsClient as C, type ServiceInstanceAlertRequestParams as D, type ServiceAlertRequestParams as E, type ServiceInstanceHistoricClient as F, type ServiceInstanceHistoricParams as G, type HistoricAggregateFunction as H, type ServiceInstanceHistoricAggregateParams as I, type ServiceTypeClient as J, type RoomClime1AlertEventValue as K, type RoomGuestStatus1AlertEventValue as L, type AirQuality1DataEventValue as M, type AirQuality1AlertEventValue as N, type RoomConsumes1AlertEventValue as O, type ProjectClassifiersRequestParams as P, type RobotCloudRobotCloudDeviceCreate as Q, type RobotCloudOrganizations as R, type SubsystemRequestParams as S, type TemperatureUnit as T, type RobotCloudDeviceDetails as U, type RobotCloudRobotCloudDeviceModify as V, type RobotCloudDeviceConfiguration as W, type ProjectLocationsRequestParams as X, type RobotCloudServiceType as Y, type LocationServiceInstancesRequestParams as Z, type RobotCloudProject as _, type RobotCloudCreateOrganization as a, type TemporizedOutput1AlertEventValue as a$, type ProjectsRequestParams as a0, type ProjectDetailsRequestParams as a1, type RobotCloudProjectDetails as a2, type RobotCloudPutProject as a3, type RobotCloudProjectUsers as a4, type RobotCloudProjectApplications as a5, type RobotCloudApplicationEnable as a6, type RobotCloudProjectInstances as a7, type RobotCloudServiceTypeDetails as a8, type ServiceInstancesRequestParams as a9, type CoolHeatCons1DataEventValue as aA, type CoolHeatCons1AlertEventValue as aB, type CoolHeatProd1DataEventValue as aC, type CoolHeatProd1AlertEventValue as aD, type CoolHeatTemperature1DataEventValue as aE, type CoolHeatTemperature1AlertEventValue as aF, type EnergyCounter1DataEventValue as aG, type EnergyCounter1AlertEventValue as aH, type EnergyProduction1DataEventValue as aI, type EnergyProduction1AlertEventValue as aJ, type GasCounter1DataEventValue as aK, type GasCounter1AlertEventValue as aL, type GenericTemperature1DataEventValue as aM, type GenericTemperature1AlertEventValue as aN, type HeatMeter1DataEventValue as aO, type HeatMeter1AlertEventValue as aP, type HeatProduction1DataEventValue as aQ, type HeatProduction1AlertEventValue as aR, type OutdoorClime1DataEventValue as aS, type OutdoorClime1AlertEventValue as aT, type PowerMeter1DataEventValue as aU, type PowerMeter1AlertEventValue as aV, type RoomBlePairing1DataEventValue as aW, type RoomBlePairing1AlertEventValue as aX, type RoomDiagnostics1Data as aY, type RoomDiagnostics1AlertEventValue as aZ, type TemporizedOutput1Data as a_, type ServiceInstanceRead as aa, tagsClient as ab, tagsHelper as ac, robotCloudPermissionsHelper as ad, type RobotCloudPermissionsHelper as ae, type ProjectTagTreeNode as af, type ProjectTagsTree as ag, type ProjectTag as ah, type ProjectModifyTag as ai, type ProjectTagDetails as aj, type PaginableRequestParams as ak, type SortableListRequestParams as al, type SubsystemTagsRequestParams as am, type BaseFullPaginableRequestParams as an, type ProjectTagRequestParams as ao, type OrganizationAccessLevel as ap, type ProjectAccessLevel as aq, type AppAccessLevel as ar, type FancoilSpeedState as as, type RobotCloudUserAppAccess as at, type RobotCloudCreateUser as au, type MeasurementStatus as av, type AirHandlingUnit1AlertEventValue as aw, type AirHandlingUnit1DataEventValue as ax, type ChillerHeatingPump1DataEventValue as ay, type ChillerHeatingPump1AlertEventValue as az, type RobotCloudOrganizationDetails as b, type WaterCounter1Data as b0, type WaterCounter1AlertEventValue as b1, type RobotCloudPutOrganization as c, type RobotCloudDelete as d, type RobotCloudOrganizationUsers as e, type RobotCloudOrganizationCreateUser as f, type RobotCloudUsers as g, type RobotCloudUserDetails as h, type RobotCloudPutUserDetails as i, type RobotCloudUserOrganization as j, type RobotCloudUserProject as k, type RobotCloudPostUserProject as l, type RobotCloudPutProjectUser as m, type AlertLogsListRequestParams as n, type RobotCloudNamedItem as o, type RobotCloudUserSimple as p, type AlertAggregatedLogsRequestParams as q, type RobotCloudDescribedItem as r, type RobotCloudCreateApplication as s, type RobotCloudGetApplication as t, type RobotCloudPutApplication as u, type RegimState as v, type ServiceInstanceConfigClient as w, type ServiceInstanceDataClient as x, type ServiceInstanceDataRequestParams as y, type ServiceDataMeasurement as z };
|
|
@@ -379,12 +379,218 @@ interface ChillerHeatingPump1AlertEventValue {
|
|
|
379
379
|
alarm_general?: boolean;
|
|
380
380
|
}
|
|
381
381
|
|
|
382
|
+
interface CoolHeatCons1DataEventValue {
|
|
383
|
+
total_power?: number;
|
|
384
|
+
thermal_power?: number;
|
|
385
|
+
total_energy?: number;
|
|
386
|
+
thermal_energy?: number;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
interface CoolHeatCons1AlertEventValue {}
|
|
390
|
+
|
|
391
|
+
interface CoolHeatProd1DataEventValue {
|
|
392
|
+
output_temperature?: number;
|
|
393
|
+
return_temperature?: number;
|
|
394
|
+
compressor_power?: number;
|
|
395
|
+
condenser_power?: number;
|
|
396
|
+
transport_power?: number;
|
|
397
|
+
output_power?: number;
|
|
398
|
+
cop_thermal?: number;
|
|
399
|
+
cop_global?: number;
|
|
400
|
+
regime?: "COOL" | "HEAT";
|
|
401
|
+
compressor_energy?: number;
|
|
402
|
+
condenser_energy?: number;
|
|
403
|
+
transport_energy?: number;
|
|
404
|
+
output_energy?: number;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
interface CoolHeatProd1AlertEventValue {
|
|
408
|
+
power_consumption_alert: number,
|
|
409
|
+
cop_thermal_alert: number
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
interface CoolHeatTemperature1DataEventValue {
|
|
413
|
+
input_temperature?: number;
|
|
414
|
+
output_temperature?: number;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
interface CoolHeatTemperature1AlertEventValue {
|
|
418
|
+
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
interface EnergyCounter1DataEventValue {
|
|
422
|
+
consumed_energy?: number;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
interface EnergyCounter1AlertEventValue {
|
|
426
|
+
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
interface EnergyProduction1DataEventValue {
|
|
430
|
+
energy_delivered?: number;
|
|
431
|
+
energy_received?: number;
|
|
432
|
+
energy_selfconsumption?: number;
|
|
433
|
+
energy_consumed?: number;
|
|
434
|
+
energy_produced?: number;
|
|
435
|
+
power_produced?: number;
|
|
436
|
+
power_consumed?: number;
|
|
437
|
+
power_selfconsumption?: number;
|
|
438
|
+
power_delivered?: number;
|
|
439
|
+
power_received?: number;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
interface EnergyProduction1AlertEventValue {
|
|
443
|
+
power_production_alert: boolean;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
interface GasCounter1DataEventValue {
|
|
447
|
+
consumed_volume?: number;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
interface GasCounter1AlertEventValue {
|
|
451
|
+
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
interface GenericTemperature1DataEventValue {
|
|
455
|
+
temperature?: number;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
interface GenericTemperature1AlertEventValue {
|
|
459
|
+
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
interface HeatMeter1DataEventValue {
|
|
463
|
+
temperature_1?: number;
|
|
464
|
+
temperature_2?: number;
|
|
465
|
+
flow?: number;
|
|
466
|
+
volume?: number;
|
|
467
|
+
power?: number;
|
|
468
|
+
heat_energy?: number;
|
|
469
|
+
refrigeration_energy?: number;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
interface HeatMeter1AlertEventValue {
|
|
473
|
+
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
interface HeatProduction1DataEventValue {
|
|
477
|
+
output_temperature?: number;
|
|
478
|
+
return_temperature?: number;
|
|
479
|
+
output_power?: number;
|
|
480
|
+
consumed_power?: number;
|
|
481
|
+
efficiency?: number;
|
|
482
|
+
output_energy?: number;
|
|
483
|
+
consumed_energy?: number;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
interface HeatProduction1AlertEventValue {
|
|
487
|
+
output_power_alert: boolean;
|
|
488
|
+
efficiency_alert: boolean;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
interface OutdoorClime1DataEventValue {
|
|
492
|
+
temperature?: number;
|
|
493
|
+
humidity_relative?: number;
|
|
494
|
+
humidity_absolute?: number;
|
|
495
|
+
enthalpy?: number;
|
|
496
|
+
luminosity?: number;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
interface OutdoorClime1AlertEventValue {
|
|
500
|
+
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
interface PowerMeter1DataEventValue {
|
|
504
|
+
power_active?: number;
|
|
505
|
+
power_reactive?: number;
|
|
506
|
+
power_apparent?: number;
|
|
507
|
+
voltage_1_2?: number;
|
|
508
|
+
voltage_2_3?: number;
|
|
509
|
+
voltage_3_1?: number;
|
|
510
|
+
voltage_1?: number;
|
|
511
|
+
voltage_2?: number;
|
|
512
|
+
voltage_3?: number;
|
|
513
|
+
current_1?: number;
|
|
514
|
+
current_2?: number;
|
|
515
|
+
current_3?: number;
|
|
516
|
+
current?: number;
|
|
517
|
+
energy_active?: number;
|
|
518
|
+
energy_reactive?: number;
|
|
519
|
+
energy_apparent?: number;
|
|
520
|
+
energy_active_received?: number;
|
|
521
|
+
energy_reactive_received?: number;
|
|
522
|
+
energy_apparent_received?: number;
|
|
523
|
+
energy_active_delivered?: number;
|
|
524
|
+
energy_reactive_delivered?: number;
|
|
525
|
+
energy_apparent_delivered?: number;
|
|
526
|
+
power_factor?: number;
|
|
527
|
+
power_factor_1?: number;
|
|
528
|
+
power_factor_2?: number;
|
|
529
|
+
power_factor_3?: number;
|
|
530
|
+
frequency?: number;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
interface PowerMeter1AlertEventValue {
|
|
534
|
+
power_active_alert: boolean;
|
|
535
|
+
power_active_phase_1_alert: boolean;
|
|
536
|
+
power_active_phase_2_alert: boolean;
|
|
537
|
+
power_active_phase_3_alert: boolean;
|
|
538
|
+
power_reactive_alert: boolean;
|
|
539
|
+
voltage_phase_1_alert: boolean;
|
|
540
|
+
voltage_phase_2_alert: boolean;
|
|
541
|
+
voltage_phase_3_alert: boolean;
|
|
542
|
+
current_phase_1_alert: boolean;
|
|
543
|
+
current_phase_2_alert: boolean;
|
|
544
|
+
current_phase_3_alert: boolean;
|
|
545
|
+
current_phase_1_balance_alert: boolean;
|
|
546
|
+
current_phase_2_balance_alert: boolean;
|
|
547
|
+
current_phase_3_balance_alert: boolean;
|
|
548
|
+
power_factor_alert: boolean;
|
|
549
|
+
power_factor_phase_1_alert: boolean;
|
|
550
|
+
power_factor_phase_2_alert: boolean;
|
|
551
|
+
power_factor_phase_3_alert: boolean;
|
|
552
|
+
frequency_alert: boolean;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
interface RoomBlePairing1DataEventValue {
|
|
556
|
+
installation_id?: number;
|
|
557
|
+
pairing_key?: number;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
interface RoomBlePairing1AlertEventValue {
|
|
561
|
+
|
|
562
|
+
}
|
|
563
|
+
|
|
382
564
|
interface RoomGuestStatus1AlertEventValue {
|
|
383
565
|
door_open_overtime: boolean;
|
|
384
566
|
window_open_overtime: boolean;
|
|
385
567
|
medical_alarm: boolean;
|
|
386
568
|
}
|
|
387
569
|
|
|
570
|
+
interface RoomDiagnostics1Data {
|
|
571
|
+
peripheral_num?: number;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
interface RoomDiagnostics1AlertEventValue {
|
|
575
|
+
low_peripheral_num: boolean;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
interface TemporizedOutput1Data {
|
|
579
|
+
on: boolean;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
interface TemporizedOutput1AlertEventValue {
|
|
583
|
+
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
interface WaterCounter1Data {
|
|
587
|
+
consumed_volume?: number;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
interface WaterCounter1AlertEventValue {
|
|
591
|
+
|
|
592
|
+
}
|
|
593
|
+
|
|
388
594
|
|
|
389
595
|
////
|
|
390
596
|
// Generic interface types
|
|
@@ -393,6 +599,7 @@ interface RoomGuestStatus1AlertEventValue {
|
|
|
393
599
|
type HistoricAggregateFunction =
|
|
394
600
|
| "count"
|
|
395
601
|
| "increase"
|
|
602
|
+
| "pincrease"
|
|
396
603
|
| "mean"
|
|
397
604
|
| "first"
|
|
398
605
|
| "last"
|
|
@@ -640,4 +847,4 @@ declare const robotCloudPermissionsHelper: RobotCloudPermissionsHelper;
|
|
|
640
847
|
|
|
641
848
|
declare const tagsHelper: TagsHelper;
|
|
642
849
|
|
|
643
|
-
export { type RobotCloudCreateProject as $, type AlertsProjectStatsRequestParams as A, type ServiceDataRequestParams as B, type ServiceInstanceAlertsClient as C, type ServiceInstanceAlertRequestParams as D, type ServiceAlertRequestParams as E, type ServiceInstanceHistoricClient as F, type ServiceInstanceHistoricParams as G, type HistoricAggregateFunction as H, type ServiceInstanceHistoricAggregateParams as I, type ServiceTypeClient as J, type RoomClime1AlertEventValue as K, type RoomGuestStatus1AlertEventValue as L, type AirQuality1DataEventValue as M, type AirQuality1AlertEventValue as N, type RoomConsumes1AlertEventValue as O, type ProjectClassifiersRequestParams as P, type RobotCloudRobotCloudDeviceCreate as Q, type RobotCloudOrganizations as R, type SubsystemRequestParams as S, type TemperatureUnit as T, type RobotCloudDeviceDetails as U, type RobotCloudRobotCloudDeviceModify as V, type RobotCloudDeviceConfiguration as W, type ProjectLocationsRequestParams as X, type RobotCloudServiceType as Y, type LocationServiceInstancesRequestParams as Z, type RobotCloudProject as _, type RobotCloudCreateOrganization as a, type ProjectsRequestParams as a0, type ProjectDetailsRequestParams as a1, type RobotCloudProjectDetails as a2, type RobotCloudPutProject as a3, type RobotCloudProjectUsers as a4, type RobotCloudProjectApplications as a5, type RobotCloudApplicationEnable as a6, type RobotCloudProjectInstances as a7, type RobotCloudServiceTypeDetails as a8, type ServiceInstancesRequestParams as a9, type ServiceInstanceRead as aa, tagsClient as ab, tagsHelper as ac, robotCloudPermissionsHelper as ad, type RobotCloudPermissionsHelper as ae, type ProjectTagTreeNode as af, type ProjectTagsTree as ag, type ProjectTag as ah, type ProjectModifyTag as ai, type ProjectTagDetails as aj, type PaginableRequestParams as ak, type SortableListRequestParams as al, type SubsystemTagsRequestParams as am, type BaseFullPaginableRequestParams as an, type ProjectTagRequestParams as ao, type OrganizationAccessLevel as ap, type ProjectAccessLevel as aq, type AppAccessLevel as ar, type FancoilSpeedState as as, type RobotCloudUserAppAccess as at, type RobotCloudCreateUser as au, type MeasurementStatus as av, type AirHandlingUnit1AlertEventValue as aw, type AirHandlingUnit1DataEventValue as ax, type ChillerHeatingPump1DataEventValue as ay, type ChillerHeatingPump1AlertEventValue as az, type RobotCloudOrganizationDetails as b, type RobotCloudPutOrganization as c, type RobotCloudDelete as d, type RobotCloudOrganizationUsers as e, type RobotCloudOrganizationCreateUser as f, type RobotCloudUsers as g, type RobotCloudUserDetails as h, type RobotCloudPutUserDetails as i, type RobotCloudUserOrganization as j, type RobotCloudUserProject as k, type RobotCloudPostUserProject as l, type RobotCloudPutProjectUser as m, type AlertLogsListRequestParams as n, type RobotCloudNamedItem as o, type RobotCloudUserSimple as p, type AlertAggregatedLogsRequestParams as q, type RobotCloudDescribedItem as r, type RobotCloudCreateApplication as s, type RobotCloudGetApplication as t, type RobotCloudPutApplication as u, type RegimState as v, type ServiceInstanceConfigClient as w, type ServiceInstanceDataClient as x, type ServiceInstanceDataRequestParams as y, type ServiceDataMeasurement as z };
|
|
850
|
+
export { type RobotCloudCreateProject as $, type AlertsProjectStatsRequestParams as A, type ServiceDataRequestParams as B, type ServiceInstanceAlertsClient as C, type ServiceInstanceAlertRequestParams as D, type ServiceAlertRequestParams as E, type ServiceInstanceHistoricClient as F, type ServiceInstanceHistoricParams as G, type HistoricAggregateFunction as H, type ServiceInstanceHistoricAggregateParams as I, type ServiceTypeClient as J, type RoomClime1AlertEventValue as K, type RoomGuestStatus1AlertEventValue as L, type AirQuality1DataEventValue as M, type AirQuality1AlertEventValue as N, type RoomConsumes1AlertEventValue as O, type ProjectClassifiersRequestParams as P, type RobotCloudRobotCloudDeviceCreate as Q, type RobotCloudOrganizations as R, type SubsystemRequestParams as S, type TemperatureUnit as T, type RobotCloudDeviceDetails as U, type RobotCloudRobotCloudDeviceModify as V, type RobotCloudDeviceConfiguration as W, type ProjectLocationsRequestParams as X, type RobotCloudServiceType as Y, type LocationServiceInstancesRequestParams as Z, type RobotCloudProject as _, type RobotCloudCreateOrganization as a, type TemporizedOutput1AlertEventValue as a$, type ProjectsRequestParams as a0, type ProjectDetailsRequestParams as a1, type RobotCloudProjectDetails as a2, type RobotCloudPutProject as a3, type RobotCloudProjectUsers as a4, type RobotCloudProjectApplications as a5, type RobotCloudApplicationEnable as a6, type RobotCloudProjectInstances as a7, type RobotCloudServiceTypeDetails as a8, type ServiceInstancesRequestParams as a9, type CoolHeatCons1DataEventValue as aA, type CoolHeatCons1AlertEventValue as aB, type CoolHeatProd1DataEventValue as aC, type CoolHeatProd1AlertEventValue as aD, type CoolHeatTemperature1DataEventValue as aE, type CoolHeatTemperature1AlertEventValue as aF, type EnergyCounter1DataEventValue as aG, type EnergyCounter1AlertEventValue as aH, type EnergyProduction1DataEventValue as aI, type EnergyProduction1AlertEventValue as aJ, type GasCounter1DataEventValue as aK, type GasCounter1AlertEventValue as aL, type GenericTemperature1DataEventValue as aM, type GenericTemperature1AlertEventValue as aN, type HeatMeter1DataEventValue as aO, type HeatMeter1AlertEventValue as aP, type HeatProduction1DataEventValue as aQ, type HeatProduction1AlertEventValue as aR, type OutdoorClime1DataEventValue as aS, type OutdoorClime1AlertEventValue as aT, type PowerMeter1DataEventValue as aU, type PowerMeter1AlertEventValue as aV, type RoomBlePairing1DataEventValue as aW, type RoomBlePairing1AlertEventValue as aX, type RoomDiagnostics1Data as aY, type RoomDiagnostics1AlertEventValue as aZ, type TemporizedOutput1Data as a_, type ServiceInstanceRead as aa, tagsClient as ab, tagsHelper as ac, robotCloudPermissionsHelper as ad, type RobotCloudPermissionsHelper as ae, type ProjectTagTreeNode as af, type ProjectTagsTree as ag, type ProjectTag as ah, type ProjectModifyTag as ai, type ProjectTagDetails as aj, type PaginableRequestParams as ak, type SortableListRequestParams as al, type SubsystemTagsRequestParams as am, type BaseFullPaginableRequestParams as an, type ProjectTagRequestParams as ao, type OrganizationAccessLevel as ap, type ProjectAccessLevel as aq, type AppAccessLevel as ar, type FancoilSpeedState as as, type RobotCloudUserAppAccess as at, type RobotCloudCreateUser as au, type MeasurementStatus as av, type AirHandlingUnit1AlertEventValue as aw, type AirHandlingUnit1DataEventValue as ax, type ChillerHeatingPump1DataEventValue as ay, type ChillerHeatingPump1AlertEventValue as az, type RobotCloudOrganizationDetails as b, type WaterCounter1Data as b0, type WaterCounter1AlertEventValue as b1, type RobotCloudPutOrganization as c, type RobotCloudDelete as d, type RobotCloudOrganizationUsers as e, type RobotCloudOrganizationCreateUser as f, type RobotCloudUsers as g, type RobotCloudUserDetails as h, type RobotCloudPutUserDetails as i, type RobotCloudUserOrganization as j, type RobotCloudUserProject as k, type RobotCloudPostUserProject as l, type RobotCloudPutProjectUser as m, type AlertLogsListRequestParams as n, type RobotCloudNamedItem as o, type RobotCloudUserSimple as p, type AlertAggregatedLogsRequestParams as q, type RobotCloudDescribedItem as r, type RobotCloudCreateApplication as s, type RobotCloudGetApplication as t, type RobotCloudPutApplication as u, type RegimState as v, type ServiceInstanceConfigClient as w, type ServiceInstanceDataClient as x, type ServiceInstanceDataRequestParams as y, type ServiceDataMeasurement as z };
|
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 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 ServiceInstanceDataClient, y as ServiceInstanceDataRequestParams, z as ServiceDataMeasurement, B as ServiceDataRequestParams, C as ServiceInstanceAlertsClient, D as ServiceInstanceAlertRequestParams, E as ServiceAlertRequestParams, F as ServiceInstanceHistoricClient, G as ServiceInstanceHistoricParams, H as HistoricAggregateFunction, I as ServiceInstanceHistoricAggregateParams, J as ServiceTypeClient, K as RoomClime1AlertEventValue, L as RoomGuestStatus1AlertEventValue, M as AirQuality1DataEventValue, N as AirQuality1AlertEventValue, O as RoomConsumes1AlertEventValue, P as ProjectClassifiersRequestParams, Q as RobotCloudRobotCloudDeviceCreate, U as RobotCloudDeviceDetails, V as RobotCloudRobotCloudDeviceModify, W as RobotCloudDeviceConfiguration, X as ProjectLocationsRequestParams, Y as RobotCloudServiceType, Z as LocationServiceInstancesRequestParams, _ as RobotCloudProject, $ as RobotCloudCreateProject, a0 as ProjectsRequestParams, a1 as ProjectDetailsRequestParams, a2 as RobotCloudProjectDetails, a3 as RobotCloudPutProject, a4 as RobotCloudProjectUsers, a5 as RobotCloudProjectApplications, a6 as RobotCloudApplicationEnable, a7 as RobotCloudProjectInstances, a8 as RobotCloudServiceTypeDetails, a9 as ServiceInstancesRequestParams, aa as ServiceInstanceRead } from './index-
|
|
4
|
-
export { aw as AirHandlingUnit1AlertEventValue, ax as AirHandlingUnit1DataEventValue, ar as AppAccessLevel, an as BaseFullPaginableRequestParams, az as ChillerHeatingPump1AlertEventValue, ay as ChillerHeatingPump1DataEventValue, as as FancoilSpeedState, av as MeasurementStatus, ap as OrganizationAccessLevel, ak as PaginableRequestParams, aq as ProjectAccessLevel, ai as ProjectModifyTag, ah as ProjectTag, aj as ProjectTagDetails, ao as ProjectTagRequestParams, af as ProjectTagTreeNode, ag as ProjectTagsTree, au as RobotCloudCreateUser, ae as RobotCloudPermissionsHelper, at as RobotCloudUserAppAccess, al as SortableListRequestParams, am as SubsystemTagsRequestParams, ad as robotCloudPermissionsHelper, ab as tagsClient, ac as tagsHelper } from './index-
|
|
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 ServiceInstanceDataClient, y as ServiceInstanceDataRequestParams, z as ServiceDataMeasurement, B as ServiceDataRequestParams, C as ServiceInstanceAlertsClient, D as ServiceInstanceAlertRequestParams, E as ServiceAlertRequestParams, F as ServiceInstanceHistoricClient, G as ServiceInstanceHistoricParams, H as HistoricAggregateFunction, I as ServiceInstanceHistoricAggregateParams, J as ServiceTypeClient, K as RoomClime1AlertEventValue, L as RoomGuestStatus1AlertEventValue, M as AirQuality1DataEventValue, N as AirQuality1AlertEventValue, O as RoomConsumes1AlertEventValue, P as ProjectClassifiersRequestParams, Q as RobotCloudRobotCloudDeviceCreate, U as RobotCloudDeviceDetails, V as RobotCloudRobotCloudDeviceModify, W as RobotCloudDeviceConfiguration, X as ProjectLocationsRequestParams, Y as RobotCloudServiceType, Z as LocationServiceInstancesRequestParams, _ as RobotCloudProject, $ as RobotCloudCreateProject, a0 as ProjectsRequestParams, a1 as ProjectDetailsRequestParams, a2 as RobotCloudProjectDetails, a3 as RobotCloudPutProject, a4 as RobotCloudProjectUsers, a5 as RobotCloudProjectApplications, a6 as RobotCloudApplicationEnable, a7 as RobotCloudProjectInstances, a8 as RobotCloudServiceTypeDetails, a9 as ServiceInstancesRequestParams, aa as ServiceInstanceRead } from './index-B4EMC1Af.mjs';
|
|
4
|
+
export { aw as AirHandlingUnit1AlertEventValue, ax as AirHandlingUnit1DataEventValue, ar as AppAccessLevel, an as BaseFullPaginableRequestParams, az as ChillerHeatingPump1AlertEventValue, ay as ChillerHeatingPump1DataEventValue, aB as CoolHeatCons1AlertEventValue, aA as CoolHeatCons1DataEventValue, aD as CoolHeatProd1AlertEventValue, aC as CoolHeatProd1DataEventValue, aF as CoolHeatTemperature1AlertEventValue, aE as CoolHeatTemperature1DataEventValue, aH as EnergyCounter1AlertEventValue, aG as EnergyCounter1DataEventValue, aJ as EnergyProduction1AlertEventValue, aI as EnergyProduction1DataEventValue, as as FancoilSpeedState, aL as GasCounter1AlertEventValue, aK as GasCounter1DataEventValue, aN as GenericTemperature1AlertEventValue, aM as GenericTemperature1DataEventValue, aP as HeatMeter1AlertEventValue, aO as HeatMeter1DataEventValue, aR as HeatProduction1AlertEventValue, aQ as HeatProduction1DataEventValue, av as MeasurementStatus, ap as OrganizationAccessLevel, aT as OutdoorClime1AlertEventValue, aS as OutdoorClime1DataEventValue, ak as PaginableRequestParams, aV as PowerMeter1AlertEventValue, aU as PowerMeter1DataEventValue, aq as ProjectAccessLevel, ai as ProjectModifyTag, ah as ProjectTag, aj as ProjectTagDetails, ao as ProjectTagRequestParams, af as ProjectTagTreeNode, ag as ProjectTagsTree, au as RobotCloudCreateUser, ae as RobotCloudPermissionsHelper, at as RobotCloudUserAppAccess, aX as RoomBlePairing1AlertEventValue, aW as RoomBlePairing1DataEventValue, aZ as RoomDiagnostics1AlertEventValue, aY as RoomDiagnostics1Data, al as SortableListRequestParams, am as SubsystemTagsRequestParams, a$ as TemporizedOutput1AlertEventValue, a_ as TemporizedOutput1Data, b1 as WaterCounter1AlertEventValue, b0 as WaterCounter1Data, ad as robotCloudPermissionsHelper, ab as tagsClient, ac as tagsHelper } from './index-B4EMC1Af.mjs';
|
|
5
5
|
|
|
6
6
|
declare const robotcloudApi: axios.AxiosInstance;
|
|
7
7
|
|
|
@@ -274,6 +274,66 @@ interface ChillerHeatingPumpConfigurationParams {
|
|
|
274
274
|
recovery_set_point: number
|
|
275
275
|
}
|
|
276
276
|
|
|
277
|
+
interface CoolHeatConsConfigurationParams { }
|
|
278
|
+
|
|
279
|
+
interface CoolHeatProdConfigurationParams {
|
|
280
|
+
power_consumption_limit: number,
|
|
281
|
+
cop_thermal_limit: number
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
interface CoolHeatTemperatureConfigurationParams { }
|
|
285
|
+
|
|
286
|
+
interface EnergyCounterConfigurationParams {
|
|
287
|
+
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
interface EnergyProductionConfigurationParams {
|
|
291
|
+
power_production_start_monitoring: number,
|
|
292
|
+
power_production_end_monitoring: number,
|
|
293
|
+
power_production_alert_limit: number
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
interface GasCounterConfigurationParams {
|
|
297
|
+
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
interface GenericTemperatureConfigurationParams {
|
|
301
|
+
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
interface HeatMeterConfigurationParams{
|
|
305
|
+
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
interface HeatProductionConfigurationParams {
|
|
309
|
+
output_power_limit: number,
|
|
310
|
+
efficiency_limit: number
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
interface OutdoorClimeConfigurationParams {
|
|
314
|
+
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
interface PowerMeterConfigurationParams {
|
|
318
|
+
energy_active_daily_limit: number,
|
|
319
|
+
energy_active_weekly_limit: number,
|
|
320
|
+
energy_active_monthly_limit: number,
|
|
321
|
+
power_active_limit: number,
|
|
322
|
+
power_active_phase_limit: number,
|
|
323
|
+
power_reactive_limit: number,
|
|
324
|
+
voltage_phase_nominal: number,
|
|
325
|
+
voltage_phase_limit: number,
|
|
326
|
+
current_phase_limit: number,
|
|
327
|
+
current_balance_limit: number,
|
|
328
|
+
power_factor_limit: number,
|
|
329
|
+
frequency_nominal: number,
|
|
330
|
+
frequency_limit: number
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
interface RoomBlePairingConfigurationParams {
|
|
334
|
+
pairing_key: number;
|
|
335
|
+
}
|
|
336
|
+
|
|
277
337
|
interface RoomClimeConfigurationParams {
|
|
278
338
|
temperature_set_point?: number;
|
|
279
339
|
humidity_set_point?: number;
|
|
@@ -324,6 +384,18 @@ interface RoomConsumesConfigurationParams {
|
|
|
324
384
|
co2_thermal_coefficient: number;
|
|
325
385
|
}
|
|
326
386
|
|
|
387
|
+
interface RoomDiagnosticsConfigurationParams {
|
|
388
|
+
low_peripheral_num_limit: number;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
interface TemporizedOutputConfigurationParams {
|
|
392
|
+
timeout: number;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
interface WaterCounterConfigurationParams {
|
|
396
|
+
|
|
397
|
+
}
|
|
398
|
+
|
|
327
399
|
declare class GenericInstanceConfigClient<T> implements ServiceInstanceConfigClient<T> {
|
|
328
400
|
private readonly serviceName;
|
|
329
401
|
constructor(serviceName: string);
|
|
@@ -651,4 +723,4 @@ declare const alertsClient: AlertsClient;
|
|
|
651
723
|
declare const organizationsClient: OrganizationsClient;
|
|
652
724
|
declare const usersClient: UsersClient;
|
|
653
725
|
|
|
654
|
-
export { type AirHandlingUnitConfigurationParams, AirQuality1AlertEventValue, AirQuality1DataEventValue, type AirQualityConfigurationParams, AlertAggregatedLogsRequestParams, type AlertLogAckAlerts, type AlertLogLine, AlertLogsListRequestParams, type AlertsClient, type AlertsLogsAggregated, type AlertsLogsList, type AlertsLogsStats, AlertsProjectStatsRequestParams, ApplicationsClient, type CheckTokenResponse, type ChillerHeatingPumpConfigurationParams, 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, RobotCloudProjectInstances, RobotCloudProjectUsers, RobotCloudPutApplication, RobotCloudPutOrganization, RobotCloudPutProject, RobotCloudPutProjectUser, RobotCloudPutUserDetails, RobotCloudRobotCloudDeviceCreate, RobotCloudRobotCloudDeviceModify, type RobotCloudServiceInstance, RobotCloudServiceType, RobotCloudServiceTypeDetails, RobotCloudUserDetails, RobotCloudUserOrganization, RobotCloudUserProject, RobotCloudUserSimple, RobotCloudUsers, RoomClime1AlertEventValue, type RoomClime1Data, type RoomClimeAlertsKeys, RoomClimeClient, type RoomClimeConfigurationParams, RoomConsumes1AlertEventValue, type RoomConsumes1Data, type RoomConsumesConfigurationParams, type RoomGrouping1DataEventValue, type RoomGrouping1InstanceDeviceConfig, type RoomGroupingConfigurationParams, RoomGuestStatus1AlertEventValue, type RoomGuestStatus1Data, type RoomGuestStatusConfigurationParams, ServiceAlertRequestParams, ServiceDataMeasurement, ServiceDataRequestParams, ServiceInstanceAlertRequestParams, ServiceInstanceAlertsClient, ServiceInstanceConfigClient, ServiceInstanceDataClient, ServiceInstanceDataRequestParams, type ServiceInstanceDetails, type ServiceInstanceDeviceConfig, type ServiceInstanceDevicesInfo, ServiceInstanceHistoricAggregateParams, ServiceInstanceHistoricClient, 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 };
|
|
726
|
+
export { type AirHandlingUnitConfigurationParams, AirQuality1AlertEventValue, AirQuality1DataEventValue, type AirQualityConfigurationParams, AlertAggregatedLogsRequestParams, type AlertLogAckAlerts, type AlertLogLine, AlertLogsListRequestParams, type AlertsClient, type AlertsLogsAggregated, type AlertsLogsList, type AlertsLogsStats, AlertsProjectStatsRequestParams, ApplicationsClient, type CheckTokenResponse, type ChillerHeatingPumpConfigurationParams, type Classifier, type ClassifierCreate, type ClassifierDetails, type ClassifierModify, type CoolHeatConsConfigurationParams, type CoolHeatProdConfigurationParams, type CoolHeatTemperatureConfigurationParams, type CreateServiceInstance, type EnergyCounterConfigurationParams, type EnergyProductionConfigurationParams, type GasCounterConfigurationParams, type GenericTemperatureConfigurationParams, type HeatMeterConfigurationParams, type HeatProductionConfigurationParams, HistoricAggregateFunction, LocationServiceInstancesRequestParams, type LoginClient, type ModifyServiceInstanceDetails, OrganizationsClient, type OutdoorClimeConfigurationParams, type PowerMeterConfigurationParams, 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, RobotCloudProjectInstances, RobotCloudProjectUsers, RobotCloudPutApplication, RobotCloudPutOrganization, RobotCloudPutProject, RobotCloudPutProjectUser, RobotCloudPutUserDetails, RobotCloudRobotCloudDeviceCreate, RobotCloudRobotCloudDeviceModify, type RobotCloudServiceInstance, RobotCloudServiceType, RobotCloudServiceTypeDetails, RobotCloudUserDetails, RobotCloudUserOrganization, RobotCloudUserProject, RobotCloudUserSimple, RobotCloudUsers, type RoomBlePairingConfigurationParams, RoomClime1AlertEventValue, type RoomClime1Data, type RoomClimeAlertsKeys, RoomClimeClient, type RoomClimeConfigurationParams, RoomConsumes1AlertEventValue, type RoomConsumes1Data, type RoomConsumesConfigurationParams, type RoomDiagnosticsConfigurationParams, type RoomGrouping1DataEventValue, type RoomGrouping1InstanceDeviceConfig, type RoomGroupingConfigurationParams, RoomGuestStatus1AlertEventValue, type RoomGuestStatus1Data, type RoomGuestStatusConfigurationParams, ServiceAlertRequestParams, ServiceDataMeasurement, ServiceDataRequestParams, ServiceInstanceAlertRequestParams, ServiceInstanceAlertsClient, ServiceInstanceConfigClient, ServiceInstanceDataClient, ServiceInstanceDataRequestParams, type ServiceInstanceDetails, type ServiceInstanceDeviceConfig, type ServiceInstanceDevicesInfo, ServiceInstanceHistoricAggregateParams, ServiceInstanceHistoricClient, ServiceInstanceHistoricParams, ServiceInstanceRead, ServiceInstancesRequestParams, ServiceTypeClient, type SessionTokenResponse, SubsystemRequestParams, TemperatureUnit, type TemporizedOutputConfigurationParams, type TokenResponse, UsersClient, type WaterCounterConfigurationParams, airQualityClient, alertsClient, applicationsClient, classifiersClient, clientConfig, devicesClient, locationsClient, loginClient, organizationsClient, projectsClient, robotCloudToken, robotcloudApi, roomClimeClient, roomConsumesClient, roomGroupingClient, roomGuestStatusClient, serviceInstancesClient, subsystemsClient, usersClient };
|
package/dist/index.d.ts
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 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 ServiceInstanceDataClient, y as ServiceInstanceDataRequestParams, z as ServiceDataMeasurement, B as ServiceDataRequestParams, C as ServiceInstanceAlertsClient, D as ServiceInstanceAlertRequestParams, E as ServiceAlertRequestParams, F as ServiceInstanceHistoricClient, G as ServiceInstanceHistoricParams, H as HistoricAggregateFunction, I as ServiceInstanceHistoricAggregateParams, J as ServiceTypeClient, K as RoomClime1AlertEventValue, L as RoomGuestStatus1AlertEventValue, M as AirQuality1DataEventValue, N as AirQuality1AlertEventValue, O as RoomConsumes1AlertEventValue, P as ProjectClassifiersRequestParams, Q as RobotCloudRobotCloudDeviceCreate, U as RobotCloudDeviceDetails, V as RobotCloudRobotCloudDeviceModify, W as RobotCloudDeviceConfiguration, X as ProjectLocationsRequestParams, Y as RobotCloudServiceType, Z as LocationServiceInstancesRequestParams, _ as RobotCloudProject, $ as RobotCloudCreateProject, a0 as ProjectsRequestParams, a1 as ProjectDetailsRequestParams, a2 as RobotCloudProjectDetails, a3 as RobotCloudPutProject, a4 as RobotCloudProjectUsers, a5 as RobotCloudProjectApplications, a6 as RobotCloudApplicationEnable, a7 as RobotCloudProjectInstances, a8 as RobotCloudServiceTypeDetails, a9 as ServiceInstancesRequestParams, aa as ServiceInstanceRead } from './index-
|
|
4
|
-
export { aw as AirHandlingUnit1AlertEventValue, ax as AirHandlingUnit1DataEventValue, ar as AppAccessLevel, an as BaseFullPaginableRequestParams, az as ChillerHeatingPump1AlertEventValue, ay as ChillerHeatingPump1DataEventValue, as as FancoilSpeedState, av as MeasurementStatus, ap as OrganizationAccessLevel, ak as PaginableRequestParams, aq as ProjectAccessLevel, ai as ProjectModifyTag, ah as ProjectTag, aj as ProjectTagDetails, ao as ProjectTagRequestParams, af as ProjectTagTreeNode, ag as ProjectTagsTree, au as RobotCloudCreateUser, ae as RobotCloudPermissionsHelper, at as RobotCloudUserAppAccess, al as SortableListRequestParams, am as SubsystemTagsRequestParams, ad as robotCloudPermissionsHelper, ab as tagsClient, ac as tagsHelper } from './index-
|
|
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 ServiceInstanceDataClient, y as ServiceInstanceDataRequestParams, z as ServiceDataMeasurement, B as ServiceDataRequestParams, C as ServiceInstanceAlertsClient, D as ServiceInstanceAlertRequestParams, E as ServiceAlertRequestParams, F as ServiceInstanceHistoricClient, G as ServiceInstanceHistoricParams, H as HistoricAggregateFunction, I as ServiceInstanceHistoricAggregateParams, J as ServiceTypeClient, K as RoomClime1AlertEventValue, L as RoomGuestStatus1AlertEventValue, M as AirQuality1DataEventValue, N as AirQuality1AlertEventValue, O as RoomConsumes1AlertEventValue, P as ProjectClassifiersRequestParams, Q as RobotCloudRobotCloudDeviceCreate, U as RobotCloudDeviceDetails, V as RobotCloudRobotCloudDeviceModify, W as RobotCloudDeviceConfiguration, X as ProjectLocationsRequestParams, Y as RobotCloudServiceType, Z as LocationServiceInstancesRequestParams, _ as RobotCloudProject, $ as RobotCloudCreateProject, a0 as ProjectsRequestParams, a1 as ProjectDetailsRequestParams, a2 as RobotCloudProjectDetails, a3 as RobotCloudPutProject, a4 as RobotCloudProjectUsers, a5 as RobotCloudProjectApplications, a6 as RobotCloudApplicationEnable, a7 as RobotCloudProjectInstances, a8 as RobotCloudServiceTypeDetails, a9 as ServiceInstancesRequestParams, aa as ServiceInstanceRead } from './index-B4EMC1Af.js';
|
|
4
|
+
export { aw as AirHandlingUnit1AlertEventValue, ax as AirHandlingUnit1DataEventValue, ar as AppAccessLevel, an as BaseFullPaginableRequestParams, az as ChillerHeatingPump1AlertEventValue, ay as ChillerHeatingPump1DataEventValue, aB as CoolHeatCons1AlertEventValue, aA as CoolHeatCons1DataEventValue, aD as CoolHeatProd1AlertEventValue, aC as CoolHeatProd1DataEventValue, aF as CoolHeatTemperature1AlertEventValue, aE as CoolHeatTemperature1DataEventValue, aH as EnergyCounter1AlertEventValue, aG as EnergyCounter1DataEventValue, aJ as EnergyProduction1AlertEventValue, aI as EnergyProduction1DataEventValue, as as FancoilSpeedState, aL as GasCounter1AlertEventValue, aK as GasCounter1DataEventValue, aN as GenericTemperature1AlertEventValue, aM as GenericTemperature1DataEventValue, aP as HeatMeter1AlertEventValue, aO as HeatMeter1DataEventValue, aR as HeatProduction1AlertEventValue, aQ as HeatProduction1DataEventValue, av as MeasurementStatus, ap as OrganizationAccessLevel, aT as OutdoorClime1AlertEventValue, aS as OutdoorClime1DataEventValue, ak as PaginableRequestParams, aV as PowerMeter1AlertEventValue, aU as PowerMeter1DataEventValue, aq as ProjectAccessLevel, ai as ProjectModifyTag, ah as ProjectTag, aj as ProjectTagDetails, ao as ProjectTagRequestParams, af as ProjectTagTreeNode, ag as ProjectTagsTree, au as RobotCloudCreateUser, ae as RobotCloudPermissionsHelper, at as RobotCloudUserAppAccess, aX as RoomBlePairing1AlertEventValue, aW as RoomBlePairing1DataEventValue, aZ as RoomDiagnostics1AlertEventValue, aY as RoomDiagnostics1Data, al as SortableListRequestParams, am as SubsystemTagsRequestParams, a$ as TemporizedOutput1AlertEventValue, a_ as TemporizedOutput1Data, b1 as WaterCounter1AlertEventValue, b0 as WaterCounter1Data, ad as robotCloudPermissionsHelper, ab as tagsClient, ac as tagsHelper } from './index-B4EMC1Af.js';
|
|
5
5
|
|
|
6
6
|
declare const robotcloudApi: axios.AxiosInstance;
|
|
7
7
|
|
|
@@ -274,6 +274,66 @@ interface ChillerHeatingPumpConfigurationParams {
|
|
|
274
274
|
recovery_set_point: number
|
|
275
275
|
}
|
|
276
276
|
|
|
277
|
+
interface CoolHeatConsConfigurationParams { }
|
|
278
|
+
|
|
279
|
+
interface CoolHeatProdConfigurationParams {
|
|
280
|
+
power_consumption_limit: number,
|
|
281
|
+
cop_thermal_limit: number
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
interface CoolHeatTemperatureConfigurationParams { }
|
|
285
|
+
|
|
286
|
+
interface EnergyCounterConfigurationParams {
|
|
287
|
+
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
interface EnergyProductionConfigurationParams {
|
|
291
|
+
power_production_start_monitoring: number,
|
|
292
|
+
power_production_end_monitoring: number,
|
|
293
|
+
power_production_alert_limit: number
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
interface GasCounterConfigurationParams {
|
|
297
|
+
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
interface GenericTemperatureConfigurationParams {
|
|
301
|
+
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
interface HeatMeterConfigurationParams{
|
|
305
|
+
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
interface HeatProductionConfigurationParams {
|
|
309
|
+
output_power_limit: number,
|
|
310
|
+
efficiency_limit: number
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
interface OutdoorClimeConfigurationParams {
|
|
314
|
+
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
interface PowerMeterConfigurationParams {
|
|
318
|
+
energy_active_daily_limit: number,
|
|
319
|
+
energy_active_weekly_limit: number,
|
|
320
|
+
energy_active_monthly_limit: number,
|
|
321
|
+
power_active_limit: number,
|
|
322
|
+
power_active_phase_limit: number,
|
|
323
|
+
power_reactive_limit: number,
|
|
324
|
+
voltage_phase_nominal: number,
|
|
325
|
+
voltage_phase_limit: number,
|
|
326
|
+
current_phase_limit: number,
|
|
327
|
+
current_balance_limit: number,
|
|
328
|
+
power_factor_limit: number,
|
|
329
|
+
frequency_nominal: number,
|
|
330
|
+
frequency_limit: number
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
interface RoomBlePairingConfigurationParams {
|
|
334
|
+
pairing_key: number;
|
|
335
|
+
}
|
|
336
|
+
|
|
277
337
|
interface RoomClimeConfigurationParams {
|
|
278
338
|
temperature_set_point?: number;
|
|
279
339
|
humidity_set_point?: number;
|
|
@@ -324,6 +384,18 @@ interface RoomConsumesConfigurationParams {
|
|
|
324
384
|
co2_thermal_coefficient: number;
|
|
325
385
|
}
|
|
326
386
|
|
|
387
|
+
interface RoomDiagnosticsConfigurationParams {
|
|
388
|
+
low_peripheral_num_limit: number;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
interface TemporizedOutputConfigurationParams {
|
|
392
|
+
timeout: number;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
interface WaterCounterConfigurationParams {
|
|
396
|
+
|
|
397
|
+
}
|
|
398
|
+
|
|
327
399
|
declare class GenericInstanceConfigClient<T> implements ServiceInstanceConfigClient<T> {
|
|
328
400
|
private readonly serviceName;
|
|
329
401
|
constructor(serviceName: string);
|
|
@@ -651,4 +723,4 @@ declare const alertsClient: AlertsClient;
|
|
|
651
723
|
declare const organizationsClient: OrganizationsClient;
|
|
652
724
|
declare const usersClient: UsersClient;
|
|
653
725
|
|
|
654
|
-
export { type AirHandlingUnitConfigurationParams, AirQuality1AlertEventValue, AirQuality1DataEventValue, type AirQualityConfigurationParams, AlertAggregatedLogsRequestParams, type AlertLogAckAlerts, type AlertLogLine, AlertLogsListRequestParams, type AlertsClient, type AlertsLogsAggregated, type AlertsLogsList, type AlertsLogsStats, AlertsProjectStatsRequestParams, ApplicationsClient, type CheckTokenResponse, type ChillerHeatingPumpConfigurationParams, 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, RobotCloudProjectInstances, RobotCloudProjectUsers, RobotCloudPutApplication, RobotCloudPutOrganization, RobotCloudPutProject, RobotCloudPutProjectUser, RobotCloudPutUserDetails, RobotCloudRobotCloudDeviceCreate, RobotCloudRobotCloudDeviceModify, type RobotCloudServiceInstance, RobotCloudServiceType, RobotCloudServiceTypeDetails, RobotCloudUserDetails, RobotCloudUserOrganization, RobotCloudUserProject, RobotCloudUserSimple, RobotCloudUsers, RoomClime1AlertEventValue, type RoomClime1Data, type RoomClimeAlertsKeys, RoomClimeClient, type RoomClimeConfigurationParams, RoomConsumes1AlertEventValue, type RoomConsumes1Data, type RoomConsumesConfigurationParams, type RoomGrouping1DataEventValue, type RoomGrouping1InstanceDeviceConfig, type RoomGroupingConfigurationParams, RoomGuestStatus1AlertEventValue, type RoomGuestStatus1Data, type RoomGuestStatusConfigurationParams, ServiceAlertRequestParams, ServiceDataMeasurement, ServiceDataRequestParams, ServiceInstanceAlertRequestParams, ServiceInstanceAlertsClient, ServiceInstanceConfigClient, ServiceInstanceDataClient, ServiceInstanceDataRequestParams, type ServiceInstanceDetails, type ServiceInstanceDeviceConfig, type ServiceInstanceDevicesInfo, ServiceInstanceHistoricAggregateParams, ServiceInstanceHistoricClient, 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 };
|
|
726
|
+
export { type AirHandlingUnitConfigurationParams, AirQuality1AlertEventValue, AirQuality1DataEventValue, type AirQualityConfigurationParams, AlertAggregatedLogsRequestParams, type AlertLogAckAlerts, type AlertLogLine, AlertLogsListRequestParams, type AlertsClient, type AlertsLogsAggregated, type AlertsLogsList, type AlertsLogsStats, AlertsProjectStatsRequestParams, ApplicationsClient, type CheckTokenResponse, type ChillerHeatingPumpConfigurationParams, type Classifier, type ClassifierCreate, type ClassifierDetails, type ClassifierModify, type CoolHeatConsConfigurationParams, type CoolHeatProdConfigurationParams, type CoolHeatTemperatureConfigurationParams, type CreateServiceInstance, type EnergyCounterConfigurationParams, type EnergyProductionConfigurationParams, type GasCounterConfigurationParams, type GenericTemperatureConfigurationParams, type HeatMeterConfigurationParams, type HeatProductionConfigurationParams, HistoricAggregateFunction, LocationServiceInstancesRequestParams, type LoginClient, type ModifyServiceInstanceDetails, OrganizationsClient, type OutdoorClimeConfigurationParams, type PowerMeterConfigurationParams, 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, RobotCloudProjectInstances, RobotCloudProjectUsers, RobotCloudPutApplication, RobotCloudPutOrganization, RobotCloudPutProject, RobotCloudPutProjectUser, RobotCloudPutUserDetails, RobotCloudRobotCloudDeviceCreate, RobotCloudRobotCloudDeviceModify, type RobotCloudServiceInstance, RobotCloudServiceType, RobotCloudServiceTypeDetails, RobotCloudUserDetails, RobotCloudUserOrganization, RobotCloudUserProject, RobotCloudUserSimple, RobotCloudUsers, type RoomBlePairingConfigurationParams, RoomClime1AlertEventValue, type RoomClime1Data, type RoomClimeAlertsKeys, RoomClimeClient, type RoomClimeConfigurationParams, RoomConsumes1AlertEventValue, type RoomConsumes1Data, type RoomConsumesConfigurationParams, type RoomDiagnosticsConfigurationParams, type RoomGrouping1DataEventValue, type RoomGrouping1InstanceDeviceConfig, type RoomGroupingConfigurationParams, RoomGuestStatus1AlertEventValue, type RoomGuestStatus1Data, type RoomGuestStatusConfigurationParams, ServiceAlertRequestParams, ServiceDataMeasurement, ServiceDataRequestParams, ServiceInstanceAlertRequestParams, ServiceInstanceAlertsClient, ServiceInstanceConfigClient, ServiceInstanceDataClient, ServiceInstanceDataRequestParams, type ServiceInstanceDetails, type ServiceInstanceDeviceConfig, type ServiceInstanceDevicesInfo, ServiceInstanceHistoricAggregateParams, ServiceInstanceHistoricClient, ServiceInstanceHistoricParams, ServiceInstanceRead, ServiceInstancesRequestParams, ServiceTypeClient, type SessionTokenResponse, SubsystemRequestParams, TemperatureUnit, type TemporizedOutputConfigurationParams, type TokenResponse, UsersClient, type WaterCounterConfigurationParams, airQualityClient, alertsClient, applicationsClient, classifiersClient, clientConfig, devicesClient, locationsClient, loginClient, organizationsClient, projectsClient, robotCloudToken, robotcloudApi, roomClimeClient, roomConsumesClient, roomGroupingClient, roomGuestStatusClient, serviceInstancesClient, subsystemsClient, usersClient };
|
package/package.json
CHANGED
|
@@ -25,6 +25,66 @@ export interface ChillerHeatingPumpConfigurationParams {
|
|
|
25
25
|
recovery_set_point: number
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
+
export interface CoolHeatConsConfigurationParams { }
|
|
29
|
+
|
|
30
|
+
export interface CoolHeatProdConfigurationParams {
|
|
31
|
+
power_consumption_limit: number,
|
|
32
|
+
cop_thermal_limit: number
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface CoolHeatTemperatureConfigurationParams { }
|
|
36
|
+
|
|
37
|
+
export interface EnergyCounterConfigurationParams {
|
|
38
|
+
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export interface EnergyProductionConfigurationParams {
|
|
42
|
+
power_production_start_monitoring: number,
|
|
43
|
+
power_production_end_monitoring: number,
|
|
44
|
+
power_production_alert_limit: number
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export interface GasCounterConfigurationParams {
|
|
48
|
+
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export interface GenericTemperatureConfigurationParams {
|
|
52
|
+
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export interface HeatMeterConfigurationParams{
|
|
56
|
+
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export interface HeatProductionConfigurationParams {
|
|
60
|
+
output_power_limit: number,
|
|
61
|
+
efficiency_limit: number
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export interface OutdoorClimeConfigurationParams {
|
|
65
|
+
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export interface PowerMeterConfigurationParams {
|
|
69
|
+
energy_active_daily_limit: number,
|
|
70
|
+
energy_active_weekly_limit: number,
|
|
71
|
+
energy_active_monthly_limit: number,
|
|
72
|
+
power_active_limit: number,
|
|
73
|
+
power_active_phase_limit: number,
|
|
74
|
+
power_reactive_limit: number,
|
|
75
|
+
voltage_phase_nominal: number,
|
|
76
|
+
voltage_phase_limit: number,
|
|
77
|
+
current_phase_limit: number,
|
|
78
|
+
current_balance_limit: number,
|
|
79
|
+
power_factor_limit: number,
|
|
80
|
+
frequency_nominal: number,
|
|
81
|
+
frequency_limit: number
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export interface RoomBlePairingConfigurationParams {
|
|
85
|
+
pairing_key: number;
|
|
86
|
+
}
|
|
87
|
+
|
|
28
88
|
export interface RoomClimeConfigurationParams {
|
|
29
89
|
temperature_set_point?: number;
|
|
30
90
|
humidity_set_point?: number;
|
|
@@ -73,4 +133,16 @@ export interface RoomConsumesConfigurationParams {
|
|
|
73
133
|
daily_cold_water_limit: number;
|
|
74
134
|
co2_electric_coefficient: number;
|
|
75
135
|
co2_thermal_coefficient: number;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export interface RoomDiagnosticsConfigurationParams {
|
|
139
|
+
low_peripheral_num_limit: number;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
export interface TemporizedOutputConfigurationParams {
|
|
143
|
+
timeout: number;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export interface WaterCounterConfigurationParams {
|
|
147
|
+
|
|
76
148
|
}
|
package/types/services.d.ts
CHANGED
|
@@ -82,12 +82,218 @@ export interface ChillerHeatingPump1AlertEventValue {
|
|
|
82
82
|
alarm_general?: boolean;
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
+
export interface CoolHeatCons1DataEventValue {
|
|
86
|
+
total_power?: number;
|
|
87
|
+
thermal_power?: number;
|
|
88
|
+
total_energy?: number;
|
|
89
|
+
thermal_energy?: number;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export interface CoolHeatCons1AlertEventValue {}
|
|
93
|
+
|
|
94
|
+
export interface CoolHeatProd1DataEventValue {
|
|
95
|
+
output_temperature?: number;
|
|
96
|
+
return_temperature?: number;
|
|
97
|
+
compressor_power?: number;
|
|
98
|
+
condenser_power?: number;
|
|
99
|
+
transport_power?: number;
|
|
100
|
+
output_power?: number;
|
|
101
|
+
cop_thermal?: number;
|
|
102
|
+
cop_global?: number;
|
|
103
|
+
regime?: "COOL" | "HEAT";
|
|
104
|
+
compressor_energy?: number;
|
|
105
|
+
condenser_energy?: number;
|
|
106
|
+
transport_energy?: number;
|
|
107
|
+
output_energy?: number;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
export interface CoolHeatProd1AlertEventValue {
|
|
111
|
+
power_consumption_alert: number,
|
|
112
|
+
cop_thermal_alert: number
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
export interface CoolHeatTemperature1DataEventValue {
|
|
116
|
+
input_temperature?: number;
|
|
117
|
+
output_temperature?: number;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
export interface CoolHeatTemperature1AlertEventValue {
|
|
121
|
+
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
export interface EnergyCounter1DataEventValue {
|
|
125
|
+
consumed_energy?: number;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
export interface EnergyCounter1AlertEventValue {
|
|
129
|
+
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
export interface EnergyProduction1DataEventValue {
|
|
133
|
+
energy_delivered?: number;
|
|
134
|
+
energy_received?: number;
|
|
135
|
+
energy_selfconsumption?: number;
|
|
136
|
+
energy_consumed?: number;
|
|
137
|
+
energy_produced?: number;
|
|
138
|
+
power_produced?: number;
|
|
139
|
+
power_consumed?: number;
|
|
140
|
+
power_selfconsumption?: number;
|
|
141
|
+
power_delivered?: number;
|
|
142
|
+
power_received?: number;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export interface EnergyProduction1AlertEventValue {
|
|
146
|
+
power_production_alert: boolean;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
export interface GasCounter1DataEventValue {
|
|
150
|
+
consumed_volume?: number;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export interface GasCounter1AlertEventValue {
|
|
154
|
+
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
export interface GenericTemperature1DataEventValue {
|
|
158
|
+
temperature?: number;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
export interface GenericTemperature1AlertEventValue {
|
|
162
|
+
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export interface HeatMeter1DataEventValue {
|
|
166
|
+
temperature_1?: number;
|
|
167
|
+
temperature_2?: number;
|
|
168
|
+
flow?: number;
|
|
169
|
+
volume?: number;
|
|
170
|
+
power?: number;
|
|
171
|
+
heat_energy?: number;
|
|
172
|
+
refrigeration_energy?: number;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
export interface HeatMeter1AlertEventValue {
|
|
176
|
+
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
export interface HeatProduction1DataEventValue {
|
|
180
|
+
output_temperature?: number;
|
|
181
|
+
return_temperature?: number;
|
|
182
|
+
output_power?: number;
|
|
183
|
+
consumed_power?: number;
|
|
184
|
+
efficiency?: number;
|
|
185
|
+
output_energy?: number;
|
|
186
|
+
consumed_energy?: number;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
export interface HeatProduction1AlertEventValue {
|
|
190
|
+
output_power_alert: boolean;
|
|
191
|
+
efficiency_alert: boolean;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
export interface OutdoorClime1DataEventValue {
|
|
195
|
+
temperature?: number;
|
|
196
|
+
humidity_relative?: number;
|
|
197
|
+
humidity_absolute?: number;
|
|
198
|
+
enthalpy?: number;
|
|
199
|
+
luminosity?: number;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
export interface OutdoorClime1AlertEventValue {
|
|
203
|
+
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
export interface PowerMeter1DataEventValue {
|
|
207
|
+
power_active?: number;
|
|
208
|
+
power_reactive?: number;
|
|
209
|
+
power_apparent?: number;
|
|
210
|
+
voltage_1_2?: number;
|
|
211
|
+
voltage_2_3?: number;
|
|
212
|
+
voltage_3_1?: number;
|
|
213
|
+
voltage_1?: number;
|
|
214
|
+
voltage_2?: number;
|
|
215
|
+
voltage_3?: number;
|
|
216
|
+
current_1?: number;
|
|
217
|
+
current_2?: number;
|
|
218
|
+
current_3?: number;
|
|
219
|
+
current?: number;
|
|
220
|
+
energy_active?: number;
|
|
221
|
+
energy_reactive?: number;
|
|
222
|
+
energy_apparent?: number;
|
|
223
|
+
energy_active_received?: number;
|
|
224
|
+
energy_reactive_received?: number;
|
|
225
|
+
energy_apparent_received?: number;
|
|
226
|
+
energy_active_delivered?: number;
|
|
227
|
+
energy_reactive_delivered?: number;
|
|
228
|
+
energy_apparent_delivered?: number;
|
|
229
|
+
power_factor?: number;
|
|
230
|
+
power_factor_1?: number;
|
|
231
|
+
power_factor_2?: number;
|
|
232
|
+
power_factor_3?: number;
|
|
233
|
+
frequency?: number;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
export interface PowerMeter1AlertEventValue {
|
|
237
|
+
power_active_alert: boolean;
|
|
238
|
+
power_active_phase_1_alert: boolean;
|
|
239
|
+
power_active_phase_2_alert: boolean;
|
|
240
|
+
power_active_phase_3_alert: boolean;
|
|
241
|
+
power_reactive_alert: boolean;
|
|
242
|
+
voltage_phase_1_alert: boolean;
|
|
243
|
+
voltage_phase_2_alert: boolean;
|
|
244
|
+
voltage_phase_3_alert: boolean;
|
|
245
|
+
current_phase_1_alert: boolean;
|
|
246
|
+
current_phase_2_alert: boolean;
|
|
247
|
+
current_phase_3_alert: boolean;
|
|
248
|
+
current_phase_1_balance_alert: boolean;
|
|
249
|
+
current_phase_2_balance_alert: boolean;
|
|
250
|
+
current_phase_3_balance_alert: boolean;
|
|
251
|
+
power_factor_alert: boolean;
|
|
252
|
+
power_factor_phase_1_alert: boolean;
|
|
253
|
+
power_factor_phase_2_alert: boolean;
|
|
254
|
+
power_factor_phase_3_alert: boolean;
|
|
255
|
+
frequency_alert: boolean;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
export interface RoomBlePairing1DataEventValue {
|
|
259
|
+
installation_id?: number;
|
|
260
|
+
pairing_key?: number;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
export interface RoomBlePairing1AlertEventValue {
|
|
264
|
+
|
|
265
|
+
}
|
|
266
|
+
|
|
85
267
|
export interface RoomGuestStatus1AlertEventValue {
|
|
86
268
|
door_open_overtime: boolean;
|
|
87
269
|
window_open_overtime: boolean;
|
|
88
270
|
medical_alarm: boolean;
|
|
89
271
|
}
|
|
90
272
|
|
|
273
|
+
export interface RoomDiagnostics1Data {
|
|
274
|
+
peripheral_num?: number;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
export interface RoomDiagnostics1AlertEventValue {
|
|
278
|
+
low_peripheral_num: boolean;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
export interface TemporizedOutput1Data {
|
|
282
|
+
on: boolean;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
export interface TemporizedOutput1AlertEventValue {
|
|
286
|
+
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
export interface WaterCounter1Data {
|
|
290
|
+
consumed_volume?: number;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
export interface WaterCounter1AlertEventValue {
|
|
294
|
+
|
|
295
|
+
}
|
|
296
|
+
|
|
91
297
|
|
|
92
298
|
////
|
|
93
299
|
// Generic interface types
|
|
@@ -96,6 +302,7 @@ export interface RoomGuestStatus1AlertEventValue {
|
|
|
96
302
|
export type HistoricAggregateFunction =
|
|
97
303
|
| "count"
|
|
98
304
|
| "increase"
|
|
305
|
+
| "pincrease"
|
|
99
306
|
| "mean"
|
|
100
307
|
| "first"
|
|
101
308
|
| "last"
|