@robotbas/robotcloud-client 0.3.7 → 0.3.10
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-DQ1Poh9r.d.mts} +217 -1
- package/dist/{index-DzsnpJ20.d.ts → index-DQ1Poh9r.d.ts} +217 -1
- package/dist/index.d.mts +91 -3
- package/dist/index.d.ts +91 -3
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/types/alerts.d.ts +17 -0
- package/types/request-params.d.ts +9 -0
- 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 {
|
|
1
|
+
export { af as RobotCloudPermissionsHelper, ae as robotCloudPermissionsHelper, ad as tagsHelper } from '../index-DQ1Poh9r.mjs';
|
|
2
2
|
import 'axios';
|
package/dist/helpers/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { af as RobotCloudPermissionsHelper, ae as robotCloudPermissionsHelper, ad as tagsHelper } from '../index-DQ1Poh9r.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"
|
|
@@ -564,6 +771,15 @@ interface AlertAggregatedLogsRequestParams extends SubsystemTagsRequestParams {
|
|
|
564
771
|
offset?: string;
|
|
565
772
|
time_range: string;
|
|
566
773
|
}
|
|
774
|
+
|
|
775
|
+
interface AlertsByLocationRequestParams extends SubsystemTagsRequestParams, PaginableRequestParams {
|
|
776
|
+
tag_max_level?: number;
|
|
777
|
+
service_name?: string;
|
|
778
|
+
name?: string;
|
|
779
|
+
active?: boolean;
|
|
780
|
+
active_time?: string;
|
|
781
|
+
}
|
|
782
|
+
|
|
567
783
|
interface ServiceInstancesRequestParams
|
|
568
784
|
extends BaseFullPaginableRequestParams {
|
|
569
785
|
id?: string;
|
|
@@ -640,4 +856,4 @@ declare const robotCloudPermissionsHelper: RobotCloudPermissionsHelper;
|
|
|
640
856
|
|
|
641
857
|
declare const tagsHelper: TagsHelper;
|
|
642
858
|
|
|
643
|
-
export { type
|
|
859
|
+
export { type RobotCloudProject as $, type AlertsProjectStatsRequestParams as A, type ServiceDataMeasurement as B, type ServiceDataRequestParams as C, type ServiceInstanceAlertsClient as D, type ServiceInstanceAlertRequestParams as E, type ServiceAlertRequestParams as F, type ServiceInstanceHistoricClient as G, type ServiceInstanceHistoricParams as H, type HistoricAggregateFunction as I, type ServiceInstanceHistoricAggregateParams as J, type ServiceTypeClient as K, type RoomClime1AlertEventValue as L, type RoomGuestStatus1AlertEventValue as M, type AirQuality1DataEventValue as N, type AirQuality1AlertEventValue as O, type RoomConsumes1AlertEventValue as P, type ProjectClassifiersRequestParams as Q, type RobotCloudOrganizations as R, type SubsystemRequestParams as S, type TemperatureUnit as T, type RobotCloudRobotCloudDeviceCreate as U, type RobotCloudDeviceDetails as V, type RobotCloudRobotCloudDeviceModify as W, type RobotCloudDeviceConfiguration as X, type ProjectLocationsRequestParams as Y, type RobotCloudServiceType as Z, type LocationServiceInstancesRequestParams as _, type RobotCloudCreateOrganization as a, type TemporizedOutput1Data as a$, type RobotCloudCreateProject as a0, type ProjectsRequestParams as a1, type ProjectDetailsRequestParams as a2, type RobotCloudProjectDetails as a3, type RobotCloudPutProject as a4, type RobotCloudProjectUsers as a5, type RobotCloudProjectApplications as a6, type RobotCloudApplicationEnable as a7, type RobotCloudProjectInstances as a8, type RobotCloudServiceTypeDetails as a9, type ChillerHeatingPump1AlertEventValue as aA, type CoolHeatCons1DataEventValue as aB, type CoolHeatCons1AlertEventValue as aC, type CoolHeatProd1DataEventValue as aD, type CoolHeatProd1AlertEventValue as aE, type CoolHeatTemperature1DataEventValue as aF, type CoolHeatTemperature1AlertEventValue as aG, type EnergyCounter1DataEventValue as aH, type EnergyCounter1AlertEventValue as aI, type EnergyProduction1DataEventValue as aJ, type EnergyProduction1AlertEventValue as aK, type GasCounter1DataEventValue as aL, type GasCounter1AlertEventValue as aM, type GenericTemperature1DataEventValue as aN, type GenericTemperature1AlertEventValue as aO, type HeatMeter1DataEventValue as aP, type HeatMeter1AlertEventValue as aQ, type HeatProduction1DataEventValue as aR, type HeatProduction1AlertEventValue as aS, type OutdoorClime1DataEventValue as aT, type OutdoorClime1AlertEventValue as aU, type PowerMeter1DataEventValue as aV, type PowerMeter1AlertEventValue as aW, type RoomBlePairing1DataEventValue as aX, type RoomBlePairing1AlertEventValue as aY, type RoomDiagnostics1Data as aZ, type RoomDiagnostics1AlertEventValue as a_, type ServiceInstancesRequestParams as aa, type ServiceInstanceRead as ab, tagsClient as ac, tagsHelper as ad, robotCloudPermissionsHelper as ae, type RobotCloudPermissionsHelper as af, type ProjectTagTreeNode as ag, type ProjectTagsTree as ah, type ProjectTag as ai, type ProjectModifyTag as aj, type ProjectTagDetails as ak, type PaginableRequestParams as al, type SortableListRequestParams as am, type SubsystemTagsRequestParams as an, type BaseFullPaginableRequestParams as ao, type ProjectTagRequestParams as ap, type OrganizationAccessLevel as aq, type ProjectAccessLevel as ar, type AppAccessLevel as as, type FancoilSpeedState as at, type RobotCloudUserAppAccess as au, type RobotCloudCreateUser as av, type MeasurementStatus as aw, type AirHandlingUnit1AlertEventValue as ax, type AirHandlingUnit1DataEventValue as ay, type ChillerHeatingPump1DataEventValue as az, type RobotCloudOrganizationDetails as b, type TemporizedOutput1AlertEventValue as b0, type WaterCounter1Data as b1, type WaterCounter1AlertEventValue as b2, 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 AlertsByLocationRequestParams as r, type RobotCloudDescribedItem as s, type RobotCloudCreateApplication as t, type RobotCloudGetApplication as u, type RobotCloudPutApplication as v, type RegimState as w, type ServiceInstanceConfigClient as x, type ServiceInstanceDataClient as y, type ServiceInstanceDataRequestParams 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"
|
|
@@ -564,6 +771,15 @@ interface AlertAggregatedLogsRequestParams extends SubsystemTagsRequestParams {
|
|
|
564
771
|
offset?: string;
|
|
565
772
|
time_range: string;
|
|
566
773
|
}
|
|
774
|
+
|
|
775
|
+
interface AlertsByLocationRequestParams extends SubsystemTagsRequestParams, PaginableRequestParams {
|
|
776
|
+
tag_max_level?: number;
|
|
777
|
+
service_name?: string;
|
|
778
|
+
name?: string;
|
|
779
|
+
active?: boolean;
|
|
780
|
+
active_time?: string;
|
|
781
|
+
}
|
|
782
|
+
|
|
567
783
|
interface ServiceInstancesRequestParams
|
|
568
784
|
extends BaseFullPaginableRequestParams {
|
|
569
785
|
id?: string;
|
|
@@ -640,4 +856,4 @@ declare const robotCloudPermissionsHelper: RobotCloudPermissionsHelper;
|
|
|
640
856
|
|
|
641
857
|
declare const tagsHelper: TagsHelper;
|
|
642
858
|
|
|
643
|
-
export { type
|
|
859
|
+
export { type RobotCloudProject as $, type AlertsProjectStatsRequestParams as A, type ServiceDataMeasurement as B, type ServiceDataRequestParams as C, type ServiceInstanceAlertsClient as D, type ServiceInstanceAlertRequestParams as E, type ServiceAlertRequestParams as F, type ServiceInstanceHistoricClient as G, type ServiceInstanceHistoricParams as H, type HistoricAggregateFunction as I, type ServiceInstanceHistoricAggregateParams as J, type ServiceTypeClient as K, type RoomClime1AlertEventValue as L, type RoomGuestStatus1AlertEventValue as M, type AirQuality1DataEventValue as N, type AirQuality1AlertEventValue as O, type RoomConsumes1AlertEventValue as P, type ProjectClassifiersRequestParams as Q, type RobotCloudOrganizations as R, type SubsystemRequestParams as S, type TemperatureUnit as T, type RobotCloudRobotCloudDeviceCreate as U, type RobotCloudDeviceDetails as V, type RobotCloudRobotCloudDeviceModify as W, type RobotCloudDeviceConfiguration as X, type ProjectLocationsRequestParams as Y, type RobotCloudServiceType as Z, type LocationServiceInstancesRequestParams as _, type RobotCloudCreateOrganization as a, type TemporizedOutput1Data as a$, type RobotCloudCreateProject as a0, type ProjectsRequestParams as a1, type ProjectDetailsRequestParams as a2, type RobotCloudProjectDetails as a3, type RobotCloudPutProject as a4, type RobotCloudProjectUsers as a5, type RobotCloudProjectApplications as a6, type RobotCloudApplicationEnable as a7, type RobotCloudProjectInstances as a8, type RobotCloudServiceTypeDetails as a9, type ChillerHeatingPump1AlertEventValue as aA, type CoolHeatCons1DataEventValue as aB, type CoolHeatCons1AlertEventValue as aC, type CoolHeatProd1DataEventValue as aD, type CoolHeatProd1AlertEventValue as aE, type CoolHeatTemperature1DataEventValue as aF, type CoolHeatTemperature1AlertEventValue as aG, type EnergyCounter1DataEventValue as aH, type EnergyCounter1AlertEventValue as aI, type EnergyProduction1DataEventValue as aJ, type EnergyProduction1AlertEventValue as aK, type GasCounter1DataEventValue as aL, type GasCounter1AlertEventValue as aM, type GenericTemperature1DataEventValue as aN, type GenericTemperature1AlertEventValue as aO, type HeatMeter1DataEventValue as aP, type HeatMeter1AlertEventValue as aQ, type HeatProduction1DataEventValue as aR, type HeatProduction1AlertEventValue as aS, type OutdoorClime1DataEventValue as aT, type OutdoorClime1AlertEventValue as aU, type PowerMeter1DataEventValue as aV, type PowerMeter1AlertEventValue as aW, type RoomBlePairing1DataEventValue as aX, type RoomBlePairing1AlertEventValue as aY, type RoomDiagnostics1Data as aZ, type RoomDiagnostics1AlertEventValue as a_, type ServiceInstancesRequestParams as aa, type ServiceInstanceRead as ab, tagsClient as ac, tagsHelper as ad, robotCloudPermissionsHelper as ae, type RobotCloudPermissionsHelper as af, type ProjectTagTreeNode as ag, type ProjectTagsTree as ah, type ProjectTag as ai, type ProjectModifyTag as aj, type ProjectTagDetails as ak, type PaginableRequestParams as al, type SortableListRequestParams as am, type SubsystemTagsRequestParams as an, type BaseFullPaginableRequestParams as ao, type ProjectTagRequestParams as ap, type OrganizationAccessLevel as aq, type ProjectAccessLevel as ar, type AppAccessLevel as as, type FancoilSpeedState as at, type RobotCloudUserAppAccess as au, type RobotCloudCreateUser as av, type MeasurementStatus as aw, type AirHandlingUnit1AlertEventValue as ax, type AirHandlingUnit1DataEventValue as ay, type ChillerHeatingPump1DataEventValue as az, type RobotCloudOrganizationDetails as b, type TemporizedOutput1AlertEventValue as b0, type WaterCounter1Data as b1, type WaterCounter1AlertEventValue as b2, 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 AlertsByLocationRequestParams as r, type RobotCloudDescribedItem as s, type RobotCloudCreateApplication as t, type RobotCloudGetApplication as u, type RobotCloudPutApplication as v, type RegimState as w, type ServiceInstanceConfigClient as x, type ServiceInstanceDataClient as y, type ServiceInstanceDataRequestParams 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
|
|
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 AlertsByLocationRequestParams, s as RobotCloudDescribedItem, t as RobotCloudCreateApplication, u as RobotCloudGetApplication, v as RobotCloudPutApplication, w as RegimState, T as TemperatureUnit, x as ServiceInstanceConfigClient, y as ServiceInstanceDataClient, z as ServiceInstanceDataRequestParams, B as ServiceDataMeasurement, C as ServiceDataRequestParams, D as ServiceInstanceAlertsClient, E as ServiceInstanceAlertRequestParams, F as ServiceAlertRequestParams, G as ServiceInstanceHistoricClient, H as ServiceInstanceHistoricParams, I as HistoricAggregateFunction, J as ServiceInstanceHistoricAggregateParams, K as ServiceTypeClient, L as RoomClime1AlertEventValue, M as RoomGuestStatus1AlertEventValue, N as AirQuality1DataEventValue, O as AirQuality1AlertEventValue, P as RoomConsumes1AlertEventValue, Q as ProjectClassifiersRequestParams, U as RobotCloudRobotCloudDeviceCreate, V as RobotCloudDeviceDetails, W as RobotCloudRobotCloudDeviceModify, X as RobotCloudDeviceConfiguration, Y as ProjectLocationsRequestParams, Z as RobotCloudServiceType, _ as LocationServiceInstancesRequestParams, $ as RobotCloudProject, a0 as RobotCloudCreateProject, a1 as ProjectsRequestParams, a2 as ProjectDetailsRequestParams, a3 as RobotCloudProjectDetails, a4 as RobotCloudPutProject, a5 as RobotCloudProjectUsers, a6 as RobotCloudProjectApplications, a7 as RobotCloudApplicationEnable, a8 as RobotCloudProjectInstances, a9 as RobotCloudServiceTypeDetails, aa as ServiceInstancesRequestParams, ab as ServiceInstanceRead } from './index-DQ1Poh9r.mjs';
|
|
4
|
+
export { ax as AirHandlingUnit1AlertEventValue, ay as AirHandlingUnit1DataEventValue, as as AppAccessLevel, ao as BaseFullPaginableRequestParams, aA as ChillerHeatingPump1AlertEventValue, az as ChillerHeatingPump1DataEventValue, aC as CoolHeatCons1AlertEventValue, aB as CoolHeatCons1DataEventValue, aE as CoolHeatProd1AlertEventValue, aD as CoolHeatProd1DataEventValue, aG as CoolHeatTemperature1AlertEventValue, aF as CoolHeatTemperature1DataEventValue, aI as EnergyCounter1AlertEventValue, aH as EnergyCounter1DataEventValue, aK as EnergyProduction1AlertEventValue, aJ as EnergyProduction1DataEventValue, at as FancoilSpeedState, aM as GasCounter1AlertEventValue, aL as GasCounter1DataEventValue, aO as GenericTemperature1AlertEventValue, aN as GenericTemperature1DataEventValue, aQ as HeatMeter1AlertEventValue, aP as HeatMeter1DataEventValue, aS as HeatProduction1AlertEventValue, aR as HeatProduction1DataEventValue, aw as MeasurementStatus, aq as OrganizationAccessLevel, aU as OutdoorClime1AlertEventValue, aT as OutdoorClime1DataEventValue, al as PaginableRequestParams, aW as PowerMeter1AlertEventValue, aV as PowerMeter1DataEventValue, ar as ProjectAccessLevel, aj as ProjectModifyTag, ai as ProjectTag, ak as ProjectTagDetails, ap as ProjectTagRequestParams, ag as ProjectTagTreeNode, ah as ProjectTagsTree, av as RobotCloudCreateUser, af as RobotCloudPermissionsHelper, au as RobotCloudUserAppAccess, aY as RoomBlePairing1AlertEventValue, aX as RoomBlePairing1DataEventValue, a_ as RoomDiagnostics1AlertEventValue, aZ as RoomDiagnostics1Data, am as SortableListRequestParams, an as SubsystemTagsRequestParams, b0 as TemporizedOutput1AlertEventValue, a$ as TemporizedOutput1Data, b2 as WaterCounter1AlertEventValue, b1 as WaterCounter1Data, ae as robotCloudPermissionsHelper, ac as tagsClient, ad as tagsHelper } from './index-DQ1Poh9r.mjs';
|
|
5
5
|
|
|
6
6
|
declare const robotcloudApi: axios.AxiosInstance;
|
|
7
7
|
|
|
@@ -136,6 +136,21 @@ interface AlertsLogsAggregated {
|
|
|
136
136
|
alerts: AlertsLogsAggregatedAlert[];
|
|
137
137
|
}
|
|
138
138
|
|
|
139
|
+
interface AlertsByLocation {
|
|
140
|
+
total_alerts: number;
|
|
141
|
+
tags: { tag: string, activation_count: number }[];
|
|
142
|
+
locations: {
|
|
143
|
+
total_size: number;
|
|
144
|
+
initial_index: number;
|
|
145
|
+
locations: {
|
|
146
|
+
location: string;
|
|
147
|
+
classifier: string;
|
|
148
|
+
alert_name: string;
|
|
149
|
+
activation_count: number;
|
|
150
|
+
}[];
|
|
151
|
+
};
|
|
152
|
+
}
|
|
153
|
+
|
|
139
154
|
interface AlertLogAckItem {
|
|
140
155
|
id: string;
|
|
141
156
|
acknowledged: boolean;
|
|
@@ -167,6 +182,7 @@ interface AlertsClient {
|
|
|
167
182
|
): Promise<AxiosResponse<AlertsLogsAggregated>>;
|
|
168
183
|
|
|
169
184
|
getAvailableAlerts(projectId: string, params?: SubsystemRequestParams): Promise<AxiosResponse<string[]>>;
|
|
185
|
+
getAlertsByLocation(projectId: string, params?: AlertsByLocationRequestParams): Promise<AxiosResponse<AlertsByLocation>>;
|
|
170
186
|
|
|
171
187
|
getServiceTypeAlertKeys(serviceType: string): string[];
|
|
172
188
|
}
|
|
@@ -274,6 +290,66 @@ interface ChillerHeatingPumpConfigurationParams {
|
|
|
274
290
|
recovery_set_point: number
|
|
275
291
|
}
|
|
276
292
|
|
|
293
|
+
interface CoolHeatConsConfigurationParams { }
|
|
294
|
+
|
|
295
|
+
interface CoolHeatProdConfigurationParams {
|
|
296
|
+
power_consumption_limit: number,
|
|
297
|
+
cop_thermal_limit: number
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
interface CoolHeatTemperatureConfigurationParams { }
|
|
301
|
+
|
|
302
|
+
interface EnergyCounterConfigurationParams {
|
|
303
|
+
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
interface EnergyProductionConfigurationParams {
|
|
307
|
+
power_production_start_monitoring: number,
|
|
308
|
+
power_production_end_monitoring: number,
|
|
309
|
+
power_production_alert_limit: number
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
interface GasCounterConfigurationParams {
|
|
313
|
+
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
interface GenericTemperatureConfigurationParams {
|
|
317
|
+
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
interface HeatMeterConfigurationParams{
|
|
321
|
+
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
interface HeatProductionConfigurationParams {
|
|
325
|
+
output_power_limit: number,
|
|
326
|
+
efficiency_limit: number
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
interface OutdoorClimeConfigurationParams {
|
|
330
|
+
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
interface PowerMeterConfigurationParams {
|
|
334
|
+
energy_active_daily_limit: number,
|
|
335
|
+
energy_active_weekly_limit: number,
|
|
336
|
+
energy_active_monthly_limit: number,
|
|
337
|
+
power_active_limit: number,
|
|
338
|
+
power_active_phase_limit: number,
|
|
339
|
+
power_reactive_limit: number,
|
|
340
|
+
voltage_phase_nominal: number,
|
|
341
|
+
voltage_phase_limit: number,
|
|
342
|
+
current_phase_limit: number,
|
|
343
|
+
current_balance_limit: number,
|
|
344
|
+
power_factor_limit: number,
|
|
345
|
+
frequency_nominal: number,
|
|
346
|
+
frequency_limit: number
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
interface RoomBlePairingConfigurationParams {
|
|
350
|
+
pairing_key: number;
|
|
351
|
+
}
|
|
352
|
+
|
|
277
353
|
interface RoomClimeConfigurationParams {
|
|
278
354
|
temperature_set_point?: number;
|
|
279
355
|
humidity_set_point?: number;
|
|
@@ -324,6 +400,18 @@ interface RoomConsumesConfigurationParams {
|
|
|
324
400
|
co2_thermal_coefficient: number;
|
|
325
401
|
}
|
|
326
402
|
|
|
403
|
+
interface RoomDiagnosticsConfigurationParams {
|
|
404
|
+
low_peripheral_num_limit: number;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
interface TemporizedOutputConfigurationParams {
|
|
408
|
+
timeout: number;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
interface WaterCounterConfigurationParams {
|
|
412
|
+
|
|
413
|
+
}
|
|
414
|
+
|
|
327
415
|
declare class GenericInstanceConfigClient<T> implements ServiceInstanceConfigClient<T> {
|
|
328
416
|
private readonly serviceName;
|
|
329
417
|
constructor(serviceName: string);
|
|
@@ -651,4 +739,4 @@ declare const alertsClient: AlertsClient;
|
|
|
651
739
|
declare const organizationsClient: OrganizationsClient;
|
|
652
740
|
declare const usersClient: UsersClient;
|
|
653
741
|
|
|
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 };
|
|
742
|
+
export { type AirHandlingUnitConfigurationParams, AirQuality1AlertEventValue, AirQuality1DataEventValue, type AirQualityConfigurationParams, AlertAggregatedLogsRequestParams, type AlertLogAckAlerts, type AlertLogLine, AlertLogsListRequestParams, type AlertsByLocation, AlertsByLocationRequestParams, 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 };
|