@ignos/api-client 20260116.0.13753 → 20260119.0.13783-alpha

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.
@@ -458,6 +458,140 @@ export declare class MachineAlarmsClient extends AuthorizedApiBase implements IM
458
458
  getMachineAlarmDetails(id: number): Promise<MachineAlarmDetailsDto>;
459
459
  protected processGetMachineAlarmDetails(response: Response): Promise<MachineAlarmDetailsDto>;
460
460
  }
461
+ export interface IDowntimeReasonsAdminClient {
462
+ listDowntimeReasons(): Promise<DowntimeReasonResourceDto[]>;
463
+ createDowntimeReason(request: CreateDowntimeReasonResource): Promise<DowntimeReasonResourceDto>;
464
+ updateDowntimeReason(id: string, request: IgnosPortalControllersResourcesApiModelsUpdateDowntimeReasonRequest): Promise<DowntimeReasonResourceDto>;
465
+ deleteDowntimeReason(id: string): Promise<void>;
466
+ listMachineTypes(): Promise<ResourceTypeDto[]>;
467
+ listParentTopics(): Promise<ParentTopicResourceDto[]>;
468
+ createParentTopic(request: IgnosPortalControllersResourcesApiModelsCreateParentTopicRequest): Promise<ParentTopicResourceDto>;
469
+ updateParentTopic(id: string, request: IgnosPortalControllersResourcesApiModelsUpdateParentTopicRequest): Promise<ParentTopicResourceDto>;
470
+ deleteParentTopic(id: string): Promise<void>;
471
+ listDowntimeReasons2(): Promise<DowntimeReasonDto[]>;
472
+ createDowntimeReason2(request: CreateDowntimeReason): Promise<DowntimeReasonDto>;
473
+ updateDowntimeReason2(id: string, request: UpdateDowntimeReasonRequest): Promise<DowntimeReasonDto>;
474
+ deleteDowntimeReason2(id: string): Promise<void>;
475
+ listMachineTypes2(): Promise<MachineTypeDto[]>;
476
+ listParentTopics2(): Promise<ParentTopicDto[]>;
477
+ createParentTopic2(request: CreateParentTopicRequest): Promise<ParentTopicDto>;
478
+ updateParentTopic2(id: string, request: UpdateParentTopicRequest): Promise<ParentTopicDto>;
479
+ deleteParentTopic2(id: string): Promise<void>;
480
+ }
481
+ export declare class DowntimeReasonsAdminClient extends AuthorizedApiBase implements IDowntimeReasonsAdminClient {
482
+ private http;
483
+ private baseUrl;
484
+ protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
485
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
486
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
487
+ });
488
+ listDowntimeReasons(): Promise<DowntimeReasonResourceDto[]>;
489
+ protected processListDowntimeReasons(response: Response): Promise<DowntimeReasonResourceDto[]>;
490
+ createDowntimeReason(request: CreateDowntimeReasonResource): Promise<DowntimeReasonResourceDto>;
491
+ protected processCreateDowntimeReason(response: Response): Promise<DowntimeReasonResourceDto>;
492
+ updateDowntimeReason(id: string, request: IgnosPortalControllersResourcesApiModelsUpdateDowntimeReasonRequest): Promise<DowntimeReasonResourceDto>;
493
+ protected processUpdateDowntimeReason(response: Response): Promise<DowntimeReasonResourceDto>;
494
+ deleteDowntimeReason(id: string): Promise<void>;
495
+ protected processDeleteDowntimeReason(response: Response): Promise<void>;
496
+ listMachineTypes(): Promise<ResourceTypeDto[]>;
497
+ protected processListMachineTypes(response: Response): Promise<ResourceTypeDto[]>;
498
+ listParentTopics(): Promise<ParentTopicResourceDto[]>;
499
+ protected processListParentTopics(response: Response): Promise<ParentTopicResourceDto[]>;
500
+ createParentTopic(request: IgnosPortalControllersResourcesApiModelsCreateParentTopicRequest): Promise<ParentTopicResourceDto>;
501
+ protected processCreateParentTopic(response: Response): Promise<ParentTopicResourceDto>;
502
+ updateParentTopic(id: string, request: IgnosPortalControllersResourcesApiModelsUpdateParentTopicRequest): Promise<ParentTopicResourceDto>;
503
+ protected processUpdateParentTopic(response: Response): Promise<ParentTopicResourceDto>;
504
+ deleteParentTopic(id: string): Promise<void>;
505
+ protected processDeleteParentTopic(response: Response): Promise<void>;
506
+ listDowntimeReasons2(): Promise<DowntimeReasonDto[]>;
507
+ protected processListDowntimeReasons2(response: Response): Promise<DowntimeReasonDto[]>;
508
+ createDowntimeReason2(request: CreateDowntimeReason): Promise<DowntimeReasonDto>;
509
+ protected processCreateDowntimeReason2(response: Response): Promise<DowntimeReasonDto>;
510
+ updateDowntimeReason2(id: string, request: UpdateDowntimeReasonRequest): Promise<DowntimeReasonDto>;
511
+ protected processUpdateDowntimeReason2(response: Response): Promise<DowntimeReasonDto>;
512
+ deleteDowntimeReason2(id: string): Promise<void>;
513
+ protected processDeleteDowntimeReason2(response: Response): Promise<void>;
514
+ listMachineTypes2(): Promise<MachineTypeDto[]>;
515
+ protected processListMachineTypes2(response: Response): Promise<MachineTypeDto[]>;
516
+ listParentTopics2(): Promise<ParentTopicDto[]>;
517
+ protected processListParentTopics2(response: Response): Promise<ParentTopicDto[]>;
518
+ createParentTopic2(request: CreateParentTopicRequest): Promise<ParentTopicDto>;
519
+ protected processCreateParentTopic2(response: Response): Promise<ParentTopicDto>;
520
+ updateParentTopic2(id: string, request: UpdateParentTopicRequest): Promise<ParentTopicDto>;
521
+ protected processUpdateParentTopic2(response: Response): Promise<ParentTopicDto>;
522
+ deleteParentTopic2(id: string): Promise<void>;
523
+ protected processDeleteParentTopic2(response: Response): Promise<void>;
524
+ }
525
+ export interface IDowntimeReasonsClient {
526
+ createDowntimePeriodReason(request: CreateDowntimePeriodReason): Promise<DowntimePeriodReasonDto>;
527
+ updateDowntimePeriodReason(id: number, request: IgnosPortalControllersResourcesApiModelsUpdateDowntimePeriodReasonRequest): Promise<DowntimePeriodReasonDto>;
528
+ deleteDowntimeReason(id: number): Promise<void>;
529
+ listDowntimeReasonsForMachine(id: number): Promise<DowntimeReasonResourceDto[]>;
530
+ listDowntimeReasonsHierarchyForMachine(id: number): Promise<ParentTopicResourceDto[]>;
531
+ listActiveDowntimeReasonsForMachine(id: number): Promise<DowntimePeriodReasonDto[]>;
532
+ listTopDowntimeReasons(start: Date | null | undefined, end: Date | null | undefined): Promise<TopDowntimeReasonsDto>;
533
+ listTopDowntimeReasonsForResources(request: IgnosPortalControllersResourcesApiModelsListTopDowntimeReasonsForResourcesRequest): Promise<TopDowntimeReasonsDto>;
534
+ createReport(request: IgnosPortalControllersResourcesApiModelsCreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportResourceDto>;
535
+ exportReportToCsv(request: IgnosPortalControllersResourcesApiModelsCreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportCsvDto>;
536
+ createDowntimePeriodReason2(request: CreateDowntimePeriodReason): Promise<DowntimePeriodReasonDto>;
537
+ updateDowntimePeriodReason2(id: number, request: UpdateDowntimePeriodReasonRequest): Promise<DowntimePeriodReasonDto>;
538
+ deleteDowntimeReason2(id: number): Promise<void>;
539
+ listDowntimeReasonsForMachine2(id: number): Promise<DowntimeReasonDto[]>;
540
+ listDowntimeReasonsHierarchyForMachine2(id: number): Promise<ParentTopicDto[]>;
541
+ listActiveDowntimeReasonsForMachine2(id: number): Promise<DowntimePeriodReasonDto[]>;
542
+ listTopDowntimeReasons2(start: Date | null | undefined, end: Date | null | undefined): Promise<TopDowntimeReasonsDto>;
543
+ listTopDowntimeReasonsForResources2(request: ListTopDowntimeReasonsForResourcesRequest): Promise<TopDowntimeReasonsDto>;
544
+ createReport2(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportDto>;
545
+ exportReportToCsv2(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportCsvDto>;
546
+ }
547
+ export declare class DowntimeReasonsClient extends AuthorizedApiBase implements IDowntimeReasonsClient {
548
+ private http;
549
+ private baseUrl;
550
+ protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
551
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
552
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
553
+ });
554
+ createDowntimePeriodReason(request: CreateDowntimePeriodReason): Promise<DowntimePeriodReasonDto>;
555
+ protected processCreateDowntimePeriodReason(response: Response): Promise<DowntimePeriodReasonDto>;
556
+ updateDowntimePeriodReason(id: number, request: IgnosPortalControllersResourcesApiModelsUpdateDowntimePeriodReasonRequest): Promise<DowntimePeriodReasonDto>;
557
+ protected processUpdateDowntimePeriodReason(response: Response): Promise<DowntimePeriodReasonDto>;
558
+ deleteDowntimeReason(id: number): Promise<void>;
559
+ protected processDeleteDowntimeReason(response: Response): Promise<void>;
560
+ listDowntimeReasonsForMachine(id: number): Promise<DowntimeReasonResourceDto[]>;
561
+ protected processListDowntimeReasonsForMachine(response: Response): Promise<DowntimeReasonResourceDto[]>;
562
+ listDowntimeReasonsHierarchyForMachine(id: number): Promise<ParentTopicResourceDto[]>;
563
+ protected processListDowntimeReasonsHierarchyForMachine(response: Response): Promise<ParentTopicResourceDto[]>;
564
+ listActiveDowntimeReasonsForMachine(id: number): Promise<DowntimePeriodReasonDto[]>;
565
+ protected processListActiveDowntimeReasonsForMachine(response: Response): Promise<DowntimePeriodReasonDto[]>;
566
+ listTopDowntimeReasons(start: Date | null | undefined, end: Date | null | undefined): Promise<TopDowntimeReasonsDto>;
567
+ protected processListTopDowntimeReasons(response: Response): Promise<TopDowntimeReasonsDto>;
568
+ listTopDowntimeReasonsForResources(request: IgnosPortalControllersResourcesApiModelsListTopDowntimeReasonsForResourcesRequest): Promise<TopDowntimeReasonsDto>;
569
+ protected processListTopDowntimeReasonsForResources(response: Response): Promise<TopDowntimeReasonsDto>;
570
+ createReport(request: IgnosPortalControllersResourcesApiModelsCreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportResourceDto>;
571
+ protected processCreateReport(response: Response): Promise<DowntimeReasonsReportResourceDto>;
572
+ exportReportToCsv(request: IgnosPortalControllersResourcesApiModelsCreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportCsvDto>;
573
+ protected processExportReportToCsv(response: Response): Promise<DowntimeReasonsReportCsvDto>;
574
+ createDowntimePeriodReason2(request: CreateDowntimePeriodReason): Promise<DowntimePeriodReasonDto>;
575
+ protected processCreateDowntimePeriodReason2(response: Response): Promise<DowntimePeriodReasonDto>;
576
+ updateDowntimePeriodReason2(id: number, request: UpdateDowntimePeriodReasonRequest): Promise<DowntimePeriodReasonDto>;
577
+ protected processUpdateDowntimePeriodReason2(response: Response): Promise<DowntimePeriodReasonDto>;
578
+ deleteDowntimeReason2(id: number): Promise<void>;
579
+ protected processDeleteDowntimeReason2(response: Response): Promise<void>;
580
+ listDowntimeReasonsForMachine2(id: number): Promise<DowntimeReasonDto[]>;
581
+ protected processListDowntimeReasonsForMachine2(response: Response): Promise<DowntimeReasonDto[]>;
582
+ listDowntimeReasonsHierarchyForMachine2(id: number): Promise<ParentTopicDto[]>;
583
+ protected processListDowntimeReasonsHierarchyForMachine2(response: Response): Promise<ParentTopicDto[]>;
584
+ listActiveDowntimeReasonsForMachine2(id: number): Promise<DowntimePeriodReasonDto[]>;
585
+ protected processListActiveDowntimeReasonsForMachine2(response: Response): Promise<DowntimePeriodReasonDto[]>;
586
+ listTopDowntimeReasons2(start: Date | null | undefined, end: Date | null | undefined): Promise<TopDowntimeReasonsDto>;
587
+ protected processListTopDowntimeReasons2(response: Response): Promise<TopDowntimeReasonsDto>;
588
+ listTopDowntimeReasonsForResources2(request: ListTopDowntimeReasonsForResourcesRequest): Promise<TopDowntimeReasonsDto>;
589
+ protected processListTopDowntimeReasonsForResources2(response: Response): Promise<TopDowntimeReasonsDto>;
590
+ createReport2(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportDto>;
591
+ protected processCreateReport2(response: Response): Promise<DowntimeReasonsReportDto>;
592
+ exportReportToCsv2(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportCsvDto>;
593
+ protected processExportReportToCsv2(response: Response): Promise<DowntimeReasonsReportCsvDto>;
594
+ }
461
595
  export interface IKpiAdminClient {
462
596
  getResourceCapacityAdmin(): Promise<ResourceGroupCapacityDto[]>;
463
597
  updateResourceCapacityAdmin(request: UpdateResourcesCapacity): Promise<ResourceCapacityDto>;
@@ -505,11 +639,11 @@ export declare class KpiAdminClient extends AuthorizedApiBase implements IKpiAdm
505
639
  protected processUpdateCalendarSettings2(response: Response): Promise<CalendarSettingsDto>;
506
640
  }
507
641
  export interface IKpiClient {
508
- getMachineKpi(machineExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<ResourceKpiDto>;
509
- getMachineDailyUptime(machineExternalId: string | undefined, date: Date | undefined, utcOffset: number | undefined): Promise<ResourceDailyUptimeDto>;
642
+ getResourceKpi(resourceExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<ResourceKpiDto>;
643
+ getResourceDailyUptime(resourceExternalId: string | undefined, date: Date | undefined, utcOffset: number | undefined): Promise<ResourceDailyUptimeDto>;
510
644
  getUptimeNormalTrend(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
511
- getMachineKpi2(machineExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<MachineKpiDto>;
512
- getMachineDailyUptime2(machineExternalId: string | undefined, date: Date | undefined, utcOffset: number | undefined): Promise<MachineDailyUptimeDto>;
645
+ getMachineKpi(machineExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<MachineKpiDto>;
646
+ getMachineDailyUptime(machineExternalId: string | undefined, date: Date | undefined, utcOffset: number | undefined): Promise<MachineDailyUptimeDto>;
513
647
  getUptimeNormalTrend2(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
514
648
  }
515
649
  export declare class KpiClient extends AuthorizedApiBase implements IKpiClient {
@@ -519,16 +653,16 @@ export declare class KpiClient extends AuthorizedApiBase implements IKpiClient {
519
653
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
520
654
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
521
655
  });
522
- getMachineKpi(machineExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<ResourceKpiDto>;
523
- protected processGetMachineKpi(response: Response): Promise<ResourceKpiDto>;
524
- getMachineDailyUptime(machineExternalId: string | undefined, date: Date | undefined, utcOffset: number | undefined): Promise<ResourceDailyUptimeDto>;
525
- protected processGetMachineDailyUptime(response: Response): Promise<ResourceDailyUptimeDto>;
656
+ getResourceKpi(resourceExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<ResourceKpiDto>;
657
+ protected processGetResourceKpi(response: Response): Promise<ResourceKpiDto>;
658
+ getResourceDailyUptime(resourceExternalId: string | undefined, date: Date | undefined, utcOffset: number | undefined): Promise<ResourceDailyUptimeDto>;
659
+ protected processGetResourceDailyUptime(response: Response): Promise<ResourceDailyUptimeDto>;
526
660
  getUptimeNormalTrend(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
527
661
  protected processGetUptimeNormalTrend(response: Response): Promise<UptimeTrendDataPointDto[]>;
528
- getMachineKpi2(machineExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<MachineKpiDto>;
529
- protected processGetMachineKpi2(response: Response): Promise<MachineKpiDto>;
530
- getMachineDailyUptime2(machineExternalId: string | undefined, date: Date | undefined, utcOffset: number | undefined): Promise<MachineDailyUptimeDto>;
531
- protected processGetMachineDailyUptime2(response: Response): Promise<MachineDailyUptimeDto>;
662
+ getMachineKpi(machineExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<MachineKpiDto>;
663
+ protected processGetMachineKpi(response: Response): Promise<MachineKpiDto>;
664
+ getMachineDailyUptime(machineExternalId: string | undefined, date: Date | undefined, utcOffset: number | undefined): Promise<MachineDailyUptimeDto>;
665
+ protected processGetMachineDailyUptime(response: Response): Promise<MachineDailyUptimeDto>;
532
666
  getUptimeNormalTrend2(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
533
667
  protected processGetUptimeNormalTrend2(response: Response): Promise<UptimeTrendDataPointDto[]>;
534
668
  }
@@ -606,8 +740,16 @@ export declare class ResourcesClient extends AuthorizedApiBase implements IResou
606
740
  protected processListAllMachines(response: Response): Promise<MachineDto[]>;
607
741
  }
608
742
  export interface IPulseClient {
743
+ /**
744
+ * @deprecated
745
+ */
609
746
  getPulseSettings(): Promise<PulseSettingsDto>;
747
+ /**
748
+ * @deprecated
749
+ */
610
750
  updatePulseSettings(request: UpdatePulseSettings): Promise<PulseSettingsDto>;
751
+ getPulseSettingsResource(): Promise<PulseSettingsResourceDto>;
752
+ updatePulseSettingsResource(request: UpdatePulseSettingsResource): Promise<PulseSettingsResourceDto>;
611
753
  }
612
754
  export declare class PulseClient extends AuthorizedApiBase implements IPulseClient {
613
755
  private http;
@@ -616,10 +758,20 @@ export declare class PulseClient extends AuthorizedApiBase implements IPulseClie
616
758
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
617
759
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
618
760
  });
761
+ /**
762
+ * @deprecated
763
+ */
619
764
  getPulseSettings(): Promise<PulseSettingsDto>;
620
765
  protected processGetPulseSettings(response: Response): Promise<PulseSettingsDto>;
766
+ /**
767
+ * @deprecated
768
+ */
621
769
  updatePulseSettings(request: UpdatePulseSettings): Promise<PulseSettingsDto>;
622
770
  protected processUpdatePulseSettings(response: Response): Promise<PulseSettingsDto>;
771
+ getPulseSettingsResource(): Promise<PulseSettingsResourceDto>;
772
+ protected processGetPulseSettingsResource(response: Response): Promise<PulseSettingsResourceDto>;
773
+ updatePulseSettingsResource(request: UpdatePulseSettingsResource): Promise<PulseSettingsResourceDto>;
774
+ protected processUpdatePulseSettingsResource(response: Response): Promise<PulseSettingsResourceDto>;
623
775
  }
624
776
  export interface IUtilizationClient {
625
777
  /**
@@ -630,6 +782,13 @@ export interface IUtilizationClient {
630
782
  * @deprecated
631
783
  */
632
784
  getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
785
+ /**
786
+ * @param utilizationType (optional)
787
+ * @param startTime (optional)
788
+ * @param endTime (optional)
789
+ * @param ianaTimeZone (optional)
790
+ * @deprecated
791
+ */
633
792
  getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
634
793
  /**
635
794
  * @param utilizationType (optional)
@@ -657,10 +816,11 @@ export interface IUtilizationClient {
657
816
  * @deprecated
658
817
  */
659
818
  getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
660
- getCompanyResourceUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDto>;
661
- getResourceUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<ResourceUtilizationDatapointListDto>;
662
- getCompanyResourceUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDatapointListDto>;
663
- getCrossCompanyResourceUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyResourceUtilizationDatapointListDto>;
819
+ getCompanyResourceUtilization(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDto>;
820
+ getCrossCompanyResourceUtilization(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyResourceUtilizationDto>;
821
+ getResourceUtilizationDatapoints(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<ResourceUtilizationDatapointListDto>;
822
+ getCompanyResourceUtilizationDatapoints(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDatapointListDto>;
823
+ getCrossCompanyResourceUtilizationDatapoints(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyResourceUtilizationDatapointListDto>;
664
824
  }
665
825
  export declare class UtilizationClient extends AuthorizedApiBase implements IUtilizationClient {
666
826
  private http;
@@ -678,6 +838,13 @@ export declare class UtilizationClient extends AuthorizedApiBase implements IUti
678
838
  */
679
839
  getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
680
840
  protected processGetCompanyUtilization(response: Response): Promise<CompanyUtilizationDto>;
841
+ /**
842
+ * @param utilizationType (optional)
843
+ * @param startTime (optional)
844
+ * @param endTime (optional)
845
+ * @param ianaTimeZone (optional)
846
+ * @deprecated
847
+ */
681
848
  getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
682
849
  protected processGetCrossCompanyUtilization(response: Response): Promise<CrossCompanyUtilizationDto>;
683
850
  /**
@@ -709,13 +876,15 @@ export declare class UtilizationClient extends AuthorizedApiBase implements IUti
709
876
  */
710
877
  getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
711
878
  protected processGetCrossCompanyUtilizationDatapoints(response: Response): Promise<CrossCompanyUtilizationDatapointListDto>;
712
- getCompanyResourceUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDto>;
879
+ getCompanyResourceUtilization(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDto>;
713
880
  protected processGetCompanyResourceUtilization(response: Response): Promise<CompanyResourceUtilizationDto>;
714
- getResourceUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<ResourceUtilizationDatapointListDto>;
881
+ getCrossCompanyResourceUtilization(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyResourceUtilizationDto>;
882
+ protected processGetCrossCompanyResourceUtilization(response: Response): Promise<CrossCompanyResourceUtilizationDto>;
883
+ getResourceUtilizationDatapoints(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<ResourceUtilizationDatapointListDto>;
715
884
  protected processGetResourceUtilizationDatapoints(response: Response): Promise<ResourceUtilizationDatapointListDto>;
716
- getCompanyResourceUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDatapointListDto>;
885
+ getCompanyResourceUtilizationDatapoints(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDatapointListDto>;
717
886
  protected processGetCompanyResourceUtilizationDatapoints(response: Response): Promise<CompanyResourceUtilizationDatapointListDto>;
718
- getCrossCompanyResourceUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyResourceUtilizationDatapointListDto>;
887
+ getCrossCompanyResourceUtilizationDatapoints(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyResourceUtilizationDatapointListDto>;
719
888
  protected processGetCrossCompanyResourceUtilizationDatapoints(response: Response): Promise<CrossCompanyResourceUtilizationDatapointListDto>;
720
889
  }
721
890
  export interface IMrbClient {
@@ -1032,83 +1201,6 @@ export declare class MeasuringToolsClient extends AuthorizedApiBase implements I
1032
1201
  getMeasuringToolSettings(): Promise<MeasuringToolSettingsDto>;
1033
1202
  protected processGetMeasuringToolSettings(response: Response): Promise<MeasuringToolSettingsDto>;
1034
1203
  }
1035
- export interface IDowntimeReasonsAdminClient {
1036
- listDowntimeReasons(): Promise<DowntimeReasonDto[]>;
1037
- createDowntimeReason(request: CreateDowntimeReason): Promise<DowntimeReasonDto>;
1038
- updateDowntimeReason(id: string, request: UpdateDowntimeReasonRequest): Promise<DowntimeReasonDto>;
1039
- deleteDowntimeReason(id: string): Promise<void>;
1040
- listMachineTypes(): Promise<MachineTypeDto[]>;
1041
- listParentTopics(): Promise<ParentTopicDto[]>;
1042
- createParentTopic(request: CreateParentTopicRequest): Promise<ParentTopicDto>;
1043
- updateParentTopic(id: string, request: UpdateParentTopicRequest): Promise<ParentTopicDto>;
1044
- deleteParentTopic(id: string): Promise<void>;
1045
- }
1046
- export declare class DowntimeReasonsAdminClient extends AuthorizedApiBase implements IDowntimeReasonsAdminClient {
1047
- private http;
1048
- private baseUrl;
1049
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
1050
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1051
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1052
- });
1053
- listDowntimeReasons(): Promise<DowntimeReasonDto[]>;
1054
- protected processListDowntimeReasons(response: Response): Promise<DowntimeReasonDto[]>;
1055
- createDowntimeReason(request: CreateDowntimeReason): Promise<DowntimeReasonDto>;
1056
- protected processCreateDowntimeReason(response: Response): Promise<DowntimeReasonDto>;
1057
- updateDowntimeReason(id: string, request: UpdateDowntimeReasonRequest): Promise<DowntimeReasonDto>;
1058
- protected processUpdateDowntimeReason(response: Response): Promise<DowntimeReasonDto>;
1059
- deleteDowntimeReason(id: string): Promise<void>;
1060
- protected processDeleteDowntimeReason(response: Response): Promise<void>;
1061
- listMachineTypes(): Promise<MachineTypeDto[]>;
1062
- protected processListMachineTypes(response: Response): Promise<MachineTypeDto[]>;
1063
- listParentTopics(): Promise<ParentTopicDto[]>;
1064
- protected processListParentTopics(response: Response): Promise<ParentTopicDto[]>;
1065
- createParentTopic(request: CreateParentTopicRequest): Promise<ParentTopicDto>;
1066
- protected processCreateParentTopic(response: Response): Promise<ParentTopicDto>;
1067
- updateParentTopic(id: string, request: UpdateParentTopicRequest): Promise<ParentTopicDto>;
1068
- protected processUpdateParentTopic(response: Response): Promise<ParentTopicDto>;
1069
- deleteParentTopic(id: string): Promise<void>;
1070
- protected processDeleteParentTopic(response: Response): Promise<void>;
1071
- }
1072
- export interface IDowntimeReasonsClient {
1073
- createDowntimePeriodReason(request: CreateDowntimePeriodReason): Promise<DowntimePeriodReasonDto>;
1074
- updateDowntimePeriodReason(id: number, request: UpdateDowntimePeriodReasonRequest): Promise<DowntimePeriodReasonDto>;
1075
- deleteDowntimeReason(id: number): Promise<void>;
1076
- listDowntimeReasonsForMachine(id: number): Promise<DowntimeReasonDto[]>;
1077
- listDowntimeReasonsHierarchyForMachine(id: number): Promise<ParentTopicDto[]>;
1078
- listActiveDowntimeReasonsForMachine(id: number): Promise<DowntimePeriodReasonDto[]>;
1079
- listTopDowntimeReasons(start: Date | null | undefined, end: Date | null | undefined): Promise<TopDowntimeReasonsDto>;
1080
- listTopDowntimeReasonsForResources(request: ListTopDowntimeReasonsForResourcesRequest): Promise<TopDowntimeReasonsDto>;
1081
- createReport(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportDto>;
1082
- exportReportToCsv(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportCsvDto>;
1083
- }
1084
- export declare class DowntimeReasonsClient extends AuthorizedApiBase implements IDowntimeReasonsClient {
1085
- private http;
1086
- private baseUrl;
1087
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
1088
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1089
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1090
- });
1091
- createDowntimePeriodReason(request: CreateDowntimePeriodReason): Promise<DowntimePeriodReasonDto>;
1092
- protected processCreateDowntimePeriodReason(response: Response): Promise<DowntimePeriodReasonDto>;
1093
- updateDowntimePeriodReason(id: number, request: UpdateDowntimePeriodReasonRequest): Promise<DowntimePeriodReasonDto>;
1094
- protected processUpdateDowntimePeriodReason(response: Response): Promise<DowntimePeriodReasonDto>;
1095
- deleteDowntimeReason(id: number): Promise<void>;
1096
- protected processDeleteDowntimeReason(response: Response): Promise<void>;
1097
- listDowntimeReasonsForMachine(id: number): Promise<DowntimeReasonDto[]>;
1098
- protected processListDowntimeReasonsForMachine(response: Response): Promise<DowntimeReasonDto[]>;
1099
- listDowntimeReasonsHierarchyForMachine(id: number): Promise<ParentTopicDto[]>;
1100
- protected processListDowntimeReasonsHierarchyForMachine(response: Response): Promise<ParentTopicDto[]>;
1101
- listActiveDowntimeReasonsForMachine(id: number): Promise<DowntimePeriodReasonDto[]>;
1102
- protected processListActiveDowntimeReasonsForMachine(response: Response): Promise<DowntimePeriodReasonDto[]>;
1103
- listTopDowntimeReasons(start: Date | null | undefined, end: Date | null | undefined): Promise<TopDowntimeReasonsDto>;
1104
- protected processListTopDowntimeReasons(response: Response): Promise<TopDowntimeReasonsDto>;
1105
- listTopDowntimeReasonsForResources(request: ListTopDowntimeReasonsForResourcesRequest): Promise<TopDowntimeReasonsDto>;
1106
- protected processListTopDowntimeReasonsForResources(response: Response): Promise<TopDowntimeReasonsDto>;
1107
- createReport(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportDto>;
1108
- protected processCreateReport(response: Response): Promise<DowntimeReasonsReportDto>;
1109
- exportReportToCsv(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportCsvDto>;
1110
- protected processExportReportToCsv(response: Response): Promise<DowntimeReasonsReportCsvDto>;
1111
- }
1112
1204
  export interface IMachinesClient {
1113
1205
  listMachines(onlyConnectedMachines: boolean | undefined): Promise<MachineDto[]>;
1114
1206
  listMachineGroups(): Promise<MachineGroupDto[]>;
@@ -4307,6 +4399,288 @@ export interface ICncProgramInfoDto {
4307
4399
  sequence?: string | null;
4308
4400
  line?: string | null;
4309
4401
  }
4402
+ export declare class DowntimeReasonResourceDto implements IDowntimeReasonResourceDto {
4403
+ id: string;
4404
+ reason: string;
4405
+ resourceTypes: string[];
4406
+ resourceGroups: string[];
4407
+ reasonType: DowntimeReasonTypeDto;
4408
+ description?: string | null;
4409
+ parentId?: string | null;
4410
+ displayOrder?: number | null;
4411
+ constructor(data?: IDowntimeReasonResourceDto);
4412
+ init(_data?: any): void;
4413
+ static fromJS(data: any): DowntimeReasonResourceDto;
4414
+ toJSON(data?: any): any;
4415
+ }
4416
+ export interface IDowntimeReasonResourceDto {
4417
+ id: string;
4418
+ reason: string;
4419
+ resourceTypes: string[];
4420
+ resourceGroups: string[];
4421
+ reasonType: DowntimeReasonTypeDto;
4422
+ description?: string | null;
4423
+ parentId?: string | null;
4424
+ displayOrder?: number | null;
4425
+ }
4426
+ export declare class CreateDowntimeReasonResource implements ICreateDowntimeReasonResource {
4427
+ reason: string;
4428
+ resourceTypes: string[];
4429
+ resourceGroups?: string[] | null;
4430
+ reasonType: DowntimeReasonTypeDto;
4431
+ description?: string | null;
4432
+ parentId?: string | null;
4433
+ displayBeforeId?: string | null;
4434
+ constructor(data?: ICreateDowntimeReasonResource);
4435
+ init(_data?: any): void;
4436
+ static fromJS(data: any): CreateDowntimeReasonResource;
4437
+ toJSON(data?: any): any;
4438
+ }
4439
+ export interface ICreateDowntimeReasonResource {
4440
+ reason: string;
4441
+ resourceTypes: string[];
4442
+ resourceGroups?: string[] | null;
4443
+ reasonType: DowntimeReasonTypeDto;
4444
+ description?: string | null;
4445
+ parentId?: string | null;
4446
+ displayBeforeId?: string | null;
4447
+ }
4448
+ export declare class IgnosPortalControllersResourcesApiModelsUpdateDowntimeReasonRequest implements IIgnosPortalControllersResourcesApiModelsUpdateDowntimeReasonRequest {
4449
+ reason: string;
4450
+ resourceTypes: string[];
4451
+ resourceGroups?: string[] | null;
4452
+ reasonType: DowntimeReasonTypeDto;
4453
+ description?: string | null;
4454
+ parentId?: string | null;
4455
+ displayBeforeId?: string | null;
4456
+ constructor(data?: IIgnosPortalControllersResourcesApiModelsUpdateDowntimeReasonRequest);
4457
+ init(_data?: any): void;
4458
+ static fromJS(data: any): IgnosPortalControllersResourcesApiModelsUpdateDowntimeReasonRequest;
4459
+ toJSON(data?: any): any;
4460
+ }
4461
+ export interface IIgnosPortalControllersResourcesApiModelsUpdateDowntimeReasonRequest {
4462
+ reason: string;
4463
+ resourceTypes: string[];
4464
+ resourceGroups?: string[] | null;
4465
+ reasonType: DowntimeReasonTypeDto;
4466
+ description?: string | null;
4467
+ parentId?: string | null;
4468
+ displayBeforeId?: string | null;
4469
+ }
4470
+ export declare class ResourceTypeDto implements IResourceTypeDto {
4471
+ resourceType: string;
4472
+ constructor(data?: IResourceTypeDto);
4473
+ init(_data?: any): void;
4474
+ static fromJS(data: any): ResourceTypeDto;
4475
+ toJSON(data?: any): any;
4476
+ }
4477
+ export interface IResourceTypeDto {
4478
+ resourceType: string;
4479
+ }
4480
+ export declare class ParentTopicResourceDto implements IParentTopicResourceDto {
4481
+ id: string;
4482
+ name: string;
4483
+ description?: string | null;
4484
+ displayOrder?: number;
4485
+ subReasons?: DowntimeReasonResourceDto[];
4486
+ constructor(data?: IParentTopicResourceDto);
4487
+ init(_data?: any): void;
4488
+ static fromJS(data: any): ParentTopicResourceDto;
4489
+ toJSON(data?: any): any;
4490
+ }
4491
+ export interface IParentTopicResourceDto {
4492
+ id: string;
4493
+ name: string;
4494
+ description?: string | null;
4495
+ displayOrder?: number;
4496
+ subReasons?: DowntimeReasonResourceDto[];
4497
+ }
4498
+ export declare class IgnosPortalControllersResourcesApiModelsCreateParentTopicRequest implements IIgnosPortalControllersResourcesApiModelsCreateParentTopicRequest {
4499
+ name: string;
4500
+ description?: string | null;
4501
+ displayBeforeId?: string | null;
4502
+ constructor(data?: IIgnosPortalControllersResourcesApiModelsCreateParentTopicRequest);
4503
+ init(_data?: any): void;
4504
+ static fromJS(data: any): IgnosPortalControllersResourcesApiModelsCreateParentTopicRequest;
4505
+ toJSON(data?: any): any;
4506
+ }
4507
+ export interface IIgnosPortalControllersResourcesApiModelsCreateParentTopicRequest {
4508
+ name: string;
4509
+ description?: string | null;
4510
+ displayBeforeId?: string | null;
4511
+ }
4512
+ export declare class IgnosPortalControllersResourcesApiModelsUpdateParentTopicRequest implements IIgnosPortalControllersResourcesApiModelsUpdateParentTopicRequest {
4513
+ name: string;
4514
+ description?: string | null;
4515
+ displayBeforeId?: string | null;
4516
+ constructor(data?: IIgnosPortalControllersResourcesApiModelsUpdateParentTopicRequest);
4517
+ init(_data?: any): void;
4518
+ static fromJS(data: any): IgnosPortalControllersResourcesApiModelsUpdateParentTopicRequest;
4519
+ toJSON(data?: any): any;
4520
+ }
4521
+ export interface IIgnosPortalControllersResourcesApiModelsUpdateParentTopicRequest {
4522
+ name: string;
4523
+ description?: string | null;
4524
+ displayBeforeId?: string | null;
4525
+ }
4526
+ export declare class CreateDowntimePeriodReason implements ICreateDowntimePeriodReason {
4527
+ reasonId: string;
4528
+ assetId: number;
4529
+ startTime: Date;
4530
+ endTime?: Date | null;
4531
+ autoCompleteDowntime?: boolean | null;
4532
+ comment?: string | null;
4533
+ constructor(data?: ICreateDowntimePeriodReason);
4534
+ init(_data?: any): void;
4535
+ static fromJS(data: any): CreateDowntimePeriodReason;
4536
+ toJSON(data?: any): any;
4537
+ }
4538
+ export interface ICreateDowntimePeriodReason {
4539
+ reasonId: string;
4540
+ assetId: number;
4541
+ startTime: Date;
4542
+ endTime?: Date | null;
4543
+ autoCompleteDowntime?: boolean | null;
4544
+ comment?: string | null;
4545
+ }
4546
+ export declare class IgnosPortalControllersResourcesApiModelsUpdateDowntimePeriodReasonRequest implements IIgnosPortalControllersResourcesApiModelsUpdateDowntimePeriodReasonRequest {
4547
+ reasonId?: string | null;
4548
+ assetId?: number | null;
4549
+ startTime?: Date | null;
4550
+ endTime?: Date | null;
4551
+ autoCompleteDowntime?: boolean | null;
4552
+ comment?: string | null;
4553
+ constructor(data?: IIgnosPortalControllersResourcesApiModelsUpdateDowntimePeriodReasonRequest);
4554
+ init(_data?: any): void;
4555
+ static fromJS(data: any): IgnosPortalControllersResourcesApiModelsUpdateDowntimePeriodReasonRequest;
4556
+ toJSON(data?: any): any;
4557
+ }
4558
+ export interface IIgnosPortalControllersResourcesApiModelsUpdateDowntimePeriodReasonRequest {
4559
+ reasonId?: string | null;
4560
+ assetId?: number | null;
4561
+ startTime?: Date | null;
4562
+ endTime?: Date | null;
4563
+ autoCompleteDowntime?: boolean | null;
4564
+ comment?: string | null;
4565
+ }
4566
+ export declare class TopDowntimeReasonsDto implements ITopDowntimeReasonsDto {
4567
+ planned: DowntimeReasonCountDto[];
4568
+ unplanned: DowntimeReasonCountDto[];
4569
+ constructor(data?: ITopDowntimeReasonsDto);
4570
+ init(_data?: any): void;
4571
+ static fromJS(data: any): TopDowntimeReasonsDto;
4572
+ toJSON(data?: any): any;
4573
+ }
4574
+ export interface ITopDowntimeReasonsDto {
4575
+ planned: DowntimeReasonCountDto[];
4576
+ unplanned: DowntimeReasonCountDto[];
4577
+ }
4578
+ export declare class DowntimeReasonCountDto implements IDowntimeReasonCountDto {
4579
+ count: number;
4580
+ reason: string;
4581
+ constructor(data?: IDowntimeReasonCountDto);
4582
+ init(_data?: any): void;
4583
+ static fromJS(data: any): DowntimeReasonCountDto;
4584
+ toJSON(data?: any): any;
4585
+ }
4586
+ export interface IDowntimeReasonCountDto {
4587
+ count: number;
4588
+ reason: string;
4589
+ }
4590
+ export declare class IgnosPortalControllersResourcesApiModelsListTopDowntimeReasonsForResourcesRequest implements IIgnosPortalControllersResourcesApiModelsListTopDowntimeReasonsForResourcesRequest {
4591
+ startTime?: Date | null;
4592
+ endTime?: Date | null;
4593
+ resourceExternalIds?: string[] | null;
4594
+ constructor(data?: IIgnosPortalControllersResourcesApiModelsListTopDowntimeReasonsForResourcesRequest);
4595
+ init(_data?: any): void;
4596
+ static fromJS(data: any): IgnosPortalControllersResourcesApiModelsListTopDowntimeReasonsForResourcesRequest;
4597
+ toJSON(data?: any): any;
4598
+ }
4599
+ export interface IIgnosPortalControllersResourcesApiModelsListTopDowntimeReasonsForResourcesRequest {
4600
+ startTime?: Date | null;
4601
+ endTime?: Date | null;
4602
+ resourceExternalIds?: string[] | null;
4603
+ }
4604
+ export declare class DowntimeReasonsReportResourceDto implements IDowntimeReasonsReportResourceDto {
4605
+ companyId?: string | null;
4606
+ totalDowntimeDurationMilliseconds?: number;
4607
+ downtimeReasons?: DowntimeReasonReportResource[];
4608
+ constructor(data?: IDowntimeReasonsReportResourceDto);
4609
+ init(_data?: any): void;
4610
+ static fromJS(data: any): DowntimeReasonsReportResourceDto;
4611
+ toJSON(data?: any): any;
4612
+ }
4613
+ export interface IDowntimeReasonsReportResourceDto {
4614
+ companyId?: string | null;
4615
+ totalDowntimeDurationMilliseconds?: number;
4616
+ downtimeReasons?: DowntimeReasonReportResource[];
4617
+ }
4618
+ export declare class DowntimeReasonReportResource implements IDowntimeReasonReportResource {
4619
+ reasonId: string;
4620
+ reasonType: DowntimeReasonTypeDto;
4621
+ reason: string;
4622
+ parentReasonId: string;
4623
+ parentReason: string;
4624
+ totalDurationMilliseconds: number;
4625
+ count: number;
4626
+ details: DowntimeReasonInformationResource[];
4627
+ constructor(data?: IDowntimeReasonReportResource);
4628
+ init(_data?: any): void;
4629
+ static fromJS(data: any): DowntimeReasonReportResource;
4630
+ toJSON(data?: any): any;
4631
+ }
4632
+ export interface IDowntimeReasonReportResource {
4633
+ reasonId: string;
4634
+ reasonType: DowntimeReasonTypeDto;
4635
+ reason: string;
4636
+ parentReasonId: string;
4637
+ parentReason: string;
4638
+ totalDurationMilliseconds: number;
4639
+ count: number;
4640
+ details: DowntimeReasonInformationResource[];
4641
+ }
4642
+ export declare class DowntimeReasonInformationResource implements IDowntimeReasonInformationResource {
4643
+ downtimeReason: DowntimePeriodReasonDto;
4644
+ resource: string;
4645
+ constructor(data?: IDowntimeReasonInformationResource);
4646
+ init(_data?: any): void;
4647
+ static fromJS(data: any): DowntimeReasonInformationResource;
4648
+ toJSON(data?: any): any;
4649
+ }
4650
+ export interface IDowntimeReasonInformationResource {
4651
+ downtimeReason: DowntimePeriodReasonDto;
4652
+ resource: string;
4653
+ }
4654
+ export declare class IgnosPortalControllersResourcesApiModelsCreateDowntimeReasonsReportRequest implements IIgnosPortalControllersResourcesApiModelsCreateDowntimeReasonsReportRequest {
4655
+ resourceExternalIds?: string[] | null;
4656
+ resourceGroupNames?: string[] | null;
4657
+ startTime?: Date | null;
4658
+ endTime?: Date | null;
4659
+ constructor(data?: IIgnosPortalControllersResourcesApiModelsCreateDowntimeReasonsReportRequest);
4660
+ init(_data?: any): void;
4661
+ static fromJS(data: any): IgnosPortalControllersResourcesApiModelsCreateDowntimeReasonsReportRequest;
4662
+ toJSON(data?: any): any;
4663
+ }
4664
+ export interface IIgnosPortalControllersResourcesApiModelsCreateDowntimeReasonsReportRequest {
4665
+ resourceExternalIds?: string[] | null;
4666
+ resourceGroupNames?: string[] | null;
4667
+ startTime?: Date | null;
4668
+ endTime?: Date | null;
4669
+ }
4670
+ export declare class DowntimeReasonsReportCsvDto implements IDowntimeReasonsReportCsvDto {
4671
+ downtimeCsv?: DownloadDto | null;
4672
+ eventsCsv?: DownloadDto | null;
4673
+ programsCsv?: DownloadDto | null;
4674
+ constructor(data?: IDowntimeReasonsReportCsvDto);
4675
+ init(_data?: any): void;
4676
+ static fromJS(data: any): DowntimeReasonsReportCsvDto;
4677
+ toJSON(data?: any): any;
4678
+ }
4679
+ export interface IDowntimeReasonsReportCsvDto {
4680
+ downtimeCsv?: DownloadDto | null;
4681
+ eventsCsv?: DownloadDto | null;
4682
+ programsCsv?: DownloadDto | null;
4683
+ }
4310
4684
  export declare class ResourceGroupCapacityDto implements IResourceGroupCapacityDto {
4311
4685
  resourceGroupName: string;
4312
4686
  resource: ResourceCapacityDto[];
@@ -5144,6 +5518,36 @@ export interface IUtilizationTypeEnablingDto {
5144
5518
  machineCalendarEnabled: boolean;
5145
5519
  factoryCalendarEnabled: boolean;
5146
5520
  }
5521
+ export declare class PulseSettingsResourceDto implements IPulseSettingsResourceDto {
5522
+ defaultUtilizationType: UtilizationTypeDto;
5523
+ utilizationTypeEnabling: ResourceUtilizationTypeEnablingDto;
5524
+ constructor(data?: IPulseSettingsResourceDto);
5525
+ init(_data?: any): void;
5526
+ static fromJS(data: any): PulseSettingsResourceDto;
5527
+ toJSON(data?: any): any;
5528
+ }
5529
+ export interface IPulseSettingsResourceDto {
5530
+ defaultUtilizationType: UtilizationTypeDto;
5531
+ utilizationTypeEnabling: ResourceUtilizationTypeEnablingDto;
5532
+ }
5533
+ export declare class ResourceUtilizationTypeEnablingDto implements IResourceUtilizationTypeEnablingDto {
5534
+ powerOnEnabled: boolean;
5535
+ twentyFourSevenEnabled: boolean;
5536
+ activeOrderEnabled: boolean;
5537
+ resourceCalendarEnabled: boolean;
5538
+ factoryCalendarEnabled: boolean;
5539
+ constructor(data?: IResourceUtilizationTypeEnablingDto);
5540
+ init(_data?: any): void;
5541
+ static fromJS(data: any): ResourceUtilizationTypeEnablingDto;
5542
+ toJSON(data?: any): any;
5543
+ }
5544
+ export interface IResourceUtilizationTypeEnablingDto {
5545
+ powerOnEnabled: boolean;
5546
+ twentyFourSevenEnabled: boolean;
5547
+ activeOrderEnabled: boolean;
5548
+ resourceCalendarEnabled: boolean;
5549
+ factoryCalendarEnabled: boolean;
5550
+ }
5147
5551
  export declare class UpdatePulseSettings implements IUpdatePulseSettings {
5148
5552
  defaultUtilizationType: UtilizationTypeDto;
5149
5553
  powerOnEnabled: boolean;
@@ -5164,6 +5568,26 @@ export interface IUpdatePulseSettings {
5164
5568
  machineCalendarEnabled: boolean;
5165
5569
  factoryCalendarEnabled: boolean;
5166
5570
  }
5571
+ export declare class UpdatePulseSettingsResource implements IUpdatePulseSettingsResource {
5572
+ defaultUtilizationType: UtilizationTypeDto;
5573
+ powerOnEnabled: boolean;
5574
+ twentyfourSevenEnabled: boolean;
5575
+ activeOrderEnabled: boolean;
5576
+ resourceCalendarEnabled: boolean;
5577
+ factoryCalendarEnabled: boolean;
5578
+ constructor(data?: IUpdatePulseSettingsResource);
5579
+ init(_data?: any): void;
5580
+ static fromJS(data: any): UpdatePulseSettingsResource;
5581
+ toJSON(data?: any): any;
5582
+ }
5583
+ export interface IUpdatePulseSettingsResource {
5584
+ defaultUtilizationType: UtilizationTypeDto;
5585
+ powerOnEnabled: boolean;
5586
+ twentyfourSevenEnabled: boolean;
5587
+ activeOrderEnabled: boolean;
5588
+ resourceCalendarEnabled: boolean;
5589
+ factoryCalendarEnabled: boolean;
5590
+ }
5167
5591
  export declare class CompanyUtilizationDto implements ICompanyUtilizationDto {
5168
5592
  utilizationType: UtilizationTypeDto;
5169
5593
  companyUtilization: UtilizationDetailsV2Dto;
@@ -5339,7 +5763,7 @@ export interface INamedCompanyUtilizationDatapointListDto extends ICompanyUtiliz
5339
5763
  companyName: string;
5340
5764
  }
5341
5765
  export declare class CompanyResourceUtilizationDto implements ICompanyResourceUtilizationDto {
5342
- utilizationType: UtilizationTypeDto;
5766
+ utilizationType: ResourceUtilizationTypeDto;
5343
5767
  companyUtilization: UtilizationDetailsV2Dto;
5344
5768
  groups: ResourceGroupUtilizationV2Dto[];
5345
5769
  ungroupedResources: ResourceUtilizationV3Dto[];
@@ -5349,11 +5773,12 @@ export declare class CompanyResourceUtilizationDto implements ICompanyResourceUt
5349
5773
  toJSON(data?: any): any;
5350
5774
  }
5351
5775
  export interface ICompanyResourceUtilizationDto {
5352
- utilizationType: UtilizationTypeDto;
5776
+ utilizationType: ResourceUtilizationTypeDto;
5353
5777
  companyUtilization: UtilizationDetailsV2Dto;
5354
5778
  groups: ResourceGroupUtilizationV2Dto[];
5355
5779
  ungroupedResources: ResourceUtilizationV3Dto[];
5356
5780
  }
5781
+ export type ResourceUtilizationTypeDto = "PowerOn" | "TwentyFourSeven" | "ActiveOrder" | "ResourceCalendar" | "FactoryCalendar";
5357
5782
  export declare class ResourceGroupUtilizationV2Dto implements IResourceGroupUtilizationV2Dto {
5358
5783
  name: string;
5359
5784
  utilization: UtilizationDetailsV2Dto;
@@ -5384,6 +5809,32 @@ export interface IResourceUtilizationV3Dto {
5384
5809
  description?: string | null;
5385
5810
  utilization: UtilizationDetailsV2Dto;
5386
5811
  }
5812
+ export declare class CrossCompanyResourceUtilizationDto implements ICrossCompanyResourceUtilizationDto {
5813
+ utilizationType: ResourceUtilizationTypeDto;
5814
+ crossCompanyUtilization: UtilizationDetailsV2Dto;
5815
+ companies: NamedCompanyResourceUtilizationDto[];
5816
+ constructor(data?: ICrossCompanyResourceUtilizationDto);
5817
+ init(_data?: any): void;
5818
+ static fromJS(data: any): CrossCompanyResourceUtilizationDto;
5819
+ toJSON(data?: any): any;
5820
+ }
5821
+ export interface ICrossCompanyResourceUtilizationDto {
5822
+ utilizationType: ResourceUtilizationTypeDto;
5823
+ crossCompanyUtilization: UtilizationDetailsV2Dto;
5824
+ companies: NamedCompanyResourceUtilizationDto[];
5825
+ }
5826
+ export declare class NamedCompanyResourceUtilizationDto extends CompanyResourceUtilizationDto implements INamedCompanyResourceUtilizationDto {
5827
+ companyId: string;
5828
+ companyName: string;
5829
+ constructor(data?: INamedCompanyResourceUtilizationDto);
5830
+ init(_data?: any): void;
5831
+ static fromJS(data: any): NamedCompanyResourceUtilizationDto;
5832
+ toJSON(data?: any): any;
5833
+ }
5834
+ export interface INamedCompanyResourceUtilizationDto extends ICompanyResourceUtilizationDto {
5835
+ companyId: string;
5836
+ companyName: string;
5837
+ }
5387
5838
  export declare class ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto implements IResourceUtilizationDatapointListDto {
5388
5839
  externalId: string;
5389
5840
  id: number;
@@ -7251,26 +7702,6 @@ export interface IUpdateParentTopicRequest {
7251
7702
  description?: string | null;
7252
7703
  displayBeforeId?: string | null;
7253
7704
  }
7254
- export declare class CreateDowntimePeriodReason implements ICreateDowntimePeriodReason {
7255
- reasonId: string;
7256
- assetId: number;
7257
- startTime: Date;
7258
- endTime?: Date | null;
7259
- autoCompleteDowntime?: boolean | null;
7260
- comment?: string | null;
7261
- constructor(data?: ICreateDowntimePeriodReason);
7262
- init(_data?: any): void;
7263
- static fromJS(data: any): CreateDowntimePeriodReason;
7264
- toJSON(data?: any): any;
7265
- }
7266
- export interface ICreateDowntimePeriodReason {
7267
- reasonId: string;
7268
- assetId: number;
7269
- startTime: Date;
7270
- endTime?: Date | null;
7271
- autoCompleteDowntime?: boolean | null;
7272
- comment?: string | null;
7273
- }
7274
7705
  export declare class UpdateDowntimePeriodReasonRequest implements IUpdateDowntimePeriodReasonRequest {
7275
7706
  reasonId?: string | null;
7276
7707
  assetId?: number | null;
@@ -7291,30 +7722,6 @@ export interface IUpdateDowntimePeriodReasonRequest {
7291
7722
  autoCompleteDowntime?: boolean | null;
7292
7723
  comment?: string | null;
7293
7724
  }
7294
- export declare class TopDowntimeReasonsDto implements ITopDowntimeReasonsDto {
7295
- planned: DowntimeReasonCountDto[];
7296
- unplanned: DowntimeReasonCountDto[];
7297
- constructor(data?: ITopDowntimeReasonsDto);
7298
- init(_data?: any): void;
7299
- static fromJS(data: any): TopDowntimeReasonsDto;
7300
- toJSON(data?: any): any;
7301
- }
7302
- export interface ITopDowntimeReasonsDto {
7303
- planned: DowntimeReasonCountDto[];
7304
- unplanned: DowntimeReasonCountDto[];
7305
- }
7306
- export declare class DowntimeReasonCountDto implements IDowntimeReasonCountDto {
7307
- count: number;
7308
- reason: string;
7309
- constructor(data?: IDowntimeReasonCountDto);
7310
- init(_data?: any): void;
7311
- static fromJS(data: any): DowntimeReasonCountDto;
7312
- toJSON(data?: any): any;
7313
- }
7314
- export interface IDowntimeReasonCountDto {
7315
- count: number;
7316
- reason: string;
7317
- }
7318
7725
  export declare class ListTopDowntimeReasonsForResourcesRequest implements IListTopDowntimeReasonsForResourcesRequest {
7319
7726
  startTime?: Date | null;
7320
7727
  endTime?: Date | null;
@@ -7395,20 +7802,6 @@ export interface ICreateDowntimeReasonsReportRequest {
7395
7802
  startTime?: Date | null;
7396
7803
  endTime?: Date | null;
7397
7804
  }
7398
- export declare class DowntimeReasonsReportCsvDto implements IDowntimeReasonsReportCsvDto {
7399
- downtimeCsv?: DownloadDto | null;
7400
- eventsCsv?: DownloadDto | null;
7401
- programsCsv?: DownloadDto | null;
7402
- constructor(data?: IDowntimeReasonsReportCsvDto);
7403
- init(_data?: any): void;
7404
- static fromJS(data: any): DowntimeReasonsReportCsvDto;
7405
- toJSON(data?: any): any;
7406
- }
7407
- export interface IDowntimeReasonsReportCsvDto {
7408
- downtimeCsv?: DownloadDto | null;
7409
- eventsCsv?: DownloadDto | null;
7410
- programsCsv?: DownloadDto | null;
7411
- }
7412
7805
  export declare class MachineGroupCapacityDto implements IMachineGroupCapacityDto {
7413
7806
  machineGroupName: string;
7414
7807
  machine: MachineCapacityDto[];
@@ -12889,6 +13282,7 @@ export declare class MeasurementFormSchemaDto implements IMeasurementFormSchemaD
12889
13282
  customerId?: string | null;
12890
13283
  customerName?: string | null;
12891
13284
  excludeFromCustomerDocumentation: boolean;
13285
+ excludeDrawingFromCustomerDocumentation: boolean;
12892
13286
  specification?: string | null;
12893
13287
  isUsed: boolean;
12894
13288
  status: MeasurementFormStatus;
@@ -12921,6 +13315,7 @@ export interface IMeasurementFormSchemaDto {
12921
13315
  customerId?: string | null;
12922
13316
  customerName?: string | null;
12923
13317
  excludeFromCustomerDocumentation: boolean;
13318
+ excludeDrawingFromCustomerDocumentation: boolean;
12924
13319
  specification?: string | null;
12925
13320
  isUsed: boolean;
12926
13321
  status: MeasurementFormStatus;
@@ -13133,6 +13528,7 @@ export interface ICreateMeasurementFormSchema {
13133
13528
  }
13134
13529
  export declare class UpdateMeasurementFormSchemaRequest implements IUpdateMeasurementFormSchemaRequest {
13135
13530
  excludeFromCustomerDocumentation: boolean;
13531
+ excludeDrawingFromCustomerDocumentation: boolean;
13136
13532
  specification?: string | null;
13137
13533
  constructor(data?: IUpdateMeasurementFormSchemaRequest);
13138
13534
  init(_data?: any): void;
@@ -13141,6 +13537,7 @@ export declare class UpdateMeasurementFormSchemaRequest implements IUpdateMeasur
13141
13537
  }
13142
13538
  export interface IUpdateMeasurementFormSchemaRequest {
13143
13539
  excludeFromCustomerDocumentation: boolean;
13540
+ excludeDrawingFromCustomerDocumentation: boolean;
13144
13541
  specification?: string | null;
13145
13542
  }
13146
13543
  export declare class CopyMeasurementFormSchema implements ICopyMeasurementFormSchema {
@@ -14011,6 +14408,7 @@ export declare class MeasurementFormWorkorderSchemaDto implements IMeasurementFo
14011
14408
  drawingUrl?: string | null;
14012
14409
  markedDrawingUrl?: string | null;
14013
14410
  excludeFromCustomerDocumentation: boolean;
14411
+ excludeDrawingFromCustomerDocumentation: boolean;
14014
14412
  versionId: number;
14015
14413
  specification?: string | null;
14016
14414
  progress: MeasurementFormProgressDto;
@@ -14029,6 +14427,7 @@ export interface IMeasurementFormWorkorderSchemaDto {
14029
14427
  drawingUrl?: string | null;
14030
14428
  markedDrawingUrl?: string | null;
14031
14429
  excludeFromCustomerDocumentation: boolean;
14430
+ excludeDrawingFromCustomerDocumentation: boolean;
14032
14431
  versionId: number;
14033
14432
  specification?: string | null;
14034
14433
  progress: MeasurementFormProgressDto;