@ignos/api-client 20260115.0.13741-alpha → 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.
- package/lib/ignosportal-api.d.ts +930 -300
- package/lib/ignosportal-api.js +10518 -7916
- package/package.json +1 -1
- package/src/ignosportal-api.ts +14107 -10943
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -458,6 +458,214 @@ 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
|
+
}
|
|
595
|
+
export interface IKpiAdminClient {
|
|
596
|
+
getResourceCapacityAdmin(): Promise<ResourceGroupCapacityDto[]>;
|
|
597
|
+
updateResourceCapacityAdmin(request: UpdateResourcesCapacity): Promise<ResourceCapacityDto>;
|
|
598
|
+
getCalendarCapacityAdmin(startDate: Date | undefined, endDate: Date | undefined): Promise<CalendarDayDto[]>;
|
|
599
|
+
updateCalendarCapacityAdmin(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
|
|
600
|
+
getCalendarSettings(): Promise<CalendarSettingsDto>;
|
|
601
|
+
updateCalendarSettings(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
|
|
602
|
+
getMachineCapacityAdmin(): Promise<MachineGroupCapacityDto[]>;
|
|
603
|
+
updateMachineCapacityAdmin(request: UpdateMachinesCapacity): Promise<MachineCapacityDto>;
|
|
604
|
+
getCalendarCapacityAdmin2(startDate: Date | undefined, endDate: Date | undefined): Promise<CalendarDayDto[]>;
|
|
605
|
+
updateCalendarCapacityAdmin2(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
|
|
606
|
+
getCalendarSettings2(): Promise<CalendarSettingsDto>;
|
|
607
|
+
updateCalendarSettings2(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
|
|
608
|
+
}
|
|
609
|
+
export declare class KpiAdminClient extends AuthorizedApiBase implements IKpiAdminClient {
|
|
610
|
+
private http;
|
|
611
|
+
private baseUrl;
|
|
612
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
613
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
614
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
615
|
+
});
|
|
616
|
+
getResourceCapacityAdmin(): Promise<ResourceGroupCapacityDto[]>;
|
|
617
|
+
protected processGetResourceCapacityAdmin(response: Response): Promise<ResourceGroupCapacityDto[]>;
|
|
618
|
+
updateResourceCapacityAdmin(request: UpdateResourcesCapacity): Promise<ResourceCapacityDto>;
|
|
619
|
+
protected processUpdateResourceCapacityAdmin(response: Response): Promise<ResourceCapacityDto>;
|
|
620
|
+
getCalendarCapacityAdmin(startDate: Date | undefined, endDate: Date | undefined): Promise<CalendarDayDto[]>;
|
|
621
|
+
protected processGetCalendarCapacityAdmin(response: Response): Promise<CalendarDayDto[]>;
|
|
622
|
+
updateCalendarCapacityAdmin(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
|
|
623
|
+
protected processUpdateCalendarCapacityAdmin(response: Response): Promise<CalendarCapacityDto>;
|
|
624
|
+
getCalendarSettings(): Promise<CalendarSettingsDto>;
|
|
625
|
+
protected processGetCalendarSettings(response: Response): Promise<CalendarSettingsDto>;
|
|
626
|
+
updateCalendarSettings(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
|
|
627
|
+
protected processUpdateCalendarSettings(response: Response): Promise<CalendarSettingsDto>;
|
|
628
|
+
getMachineCapacityAdmin(): Promise<MachineGroupCapacityDto[]>;
|
|
629
|
+
protected processGetMachineCapacityAdmin(response: Response): Promise<MachineGroupCapacityDto[]>;
|
|
630
|
+
updateMachineCapacityAdmin(request: UpdateMachinesCapacity): Promise<MachineCapacityDto>;
|
|
631
|
+
protected processUpdateMachineCapacityAdmin(response: Response): Promise<MachineCapacityDto>;
|
|
632
|
+
getCalendarCapacityAdmin2(startDate: Date | undefined, endDate: Date | undefined): Promise<CalendarDayDto[]>;
|
|
633
|
+
protected processGetCalendarCapacityAdmin2(response: Response): Promise<CalendarDayDto[]>;
|
|
634
|
+
updateCalendarCapacityAdmin2(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
|
|
635
|
+
protected processUpdateCalendarCapacityAdmin2(response: Response): Promise<CalendarCapacityDto>;
|
|
636
|
+
getCalendarSettings2(): Promise<CalendarSettingsDto>;
|
|
637
|
+
protected processGetCalendarSettings2(response: Response): Promise<CalendarSettingsDto>;
|
|
638
|
+
updateCalendarSettings2(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
|
|
639
|
+
protected processUpdateCalendarSettings2(response: Response): Promise<CalendarSettingsDto>;
|
|
640
|
+
}
|
|
641
|
+
export interface IKpiClient {
|
|
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>;
|
|
644
|
+
getUptimeNormalTrend(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
|
|
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>;
|
|
647
|
+
getUptimeNormalTrend2(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
|
|
648
|
+
}
|
|
649
|
+
export declare class KpiClient extends AuthorizedApiBase implements IKpiClient {
|
|
650
|
+
private http;
|
|
651
|
+
private baseUrl;
|
|
652
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
653
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
654
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
655
|
+
});
|
|
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>;
|
|
660
|
+
getUptimeNormalTrend(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
|
|
661
|
+
protected processGetUptimeNormalTrend(response: Response): Promise<UptimeTrendDataPointDto[]>;
|
|
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>;
|
|
666
|
+
getUptimeNormalTrend2(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
|
|
667
|
+
protected processGetUptimeNormalTrend2(response: Response): Promise<UptimeTrendDataPointDto[]>;
|
|
668
|
+
}
|
|
461
669
|
export interface IResourcesClient {
|
|
462
670
|
listResources(onlyConnectedResources: boolean | undefined): Promise<ApplicationResourcesResourceDto[]>;
|
|
463
671
|
listResourceGroups(): Promise<ApplicationResourcesResourceGroupDto[]>;
|
|
@@ -532,8 +740,16 @@ export declare class ResourcesClient extends AuthorizedApiBase implements IResou
|
|
|
532
740
|
protected processListAllMachines(response: Response): Promise<MachineDto[]>;
|
|
533
741
|
}
|
|
534
742
|
export interface IPulseClient {
|
|
743
|
+
/**
|
|
744
|
+
* @deprecated
|
|
745
|
+
*/
|
|
535
746
|
getPulseSettings(): Promise<PulseSettingsDto>;
|
|
747
|
+
/**
|
|
748
|
+
* @deprecated
|
|
749
|
+
*/
|
|
536
750
|
updatePulseSettings(request: UpdatePulseSettings): Promise<PulseSettingsDto>;
|
|
751
|
+
getPulseSettingsResource(): Promise<PulseSettingsResourceDto>;
|
|
752
|
+
updatePulseSettingsResource(request: UpdatePulseSettingsResource): Promise<PulseSettingsResourceDto>;
|
|
537
753
|
}
|
|
538
754
|
export declare class PulseClient extends AuthorizedApiBase implements IPulseClient {
|
|
539
755
|
private http;
|
|
@@ -542,13 +758,37 @@ export declare class PulseClient extends AuthorizedApiBase implements IPulseClie
|
|
|
542
758
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
543
759
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
544
760
|
});
|
|
761
|
+
/**
|
|
762
|
+
* @deprecated
|
|
763
|
+
*/
|
|
545
764
|
getPulseSettings(): Promise<PulseSettingsDto>;
|
|
546
765
|
protected processGetPulseSettings(response: Response): Promise<PulseSettingsDto>;
|
|
766
|
+
/**
|
|
767
|
+
* @deprecated
|
|
768
|
+
*/
|
|
547
769
|
updatePulseSettings(request: UpdatePulseSettings): Promise<PulseSettingsDto>;
|
|
548
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>;
|
|
549
775
|
}
|
|
550
776
|
export interface IUtilizationClient {
|
|
777
|
+
/**
|
|
778
|
+
* @param utilizationType (optional)
|
|
779
|
+
* @param startTime (optional)
|
|
780
|
+
* @param endTime (optional)
|
|
781
|
+
* @param ianaTimeZone (optional)
|
|
782
|
+
* @deprecated
|
|
783
|
+
*/
|
|
551
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
|
+
*/
|
|
552
792
|
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
|
|
553
793
|
/**
|
|
554
794
|
* @param utilizationType (optional)
|
|
@@ -576,9 +816,11 @@ export interface IUtilizationClient {
|
|
|
576
816
|
* @deprecated
|
|
577
817
|
*/
|
|
578
818
|
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
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>;
|
|
582
824
|
}
|
|
583
825
|
export declare class UtilizationClient extends AuthorizedApiBase implements IUtilizationClient {
|
|
584
826
|
private http;
|
|
@@ -587,8 +829,22 @@ export declare class UtilizationClient extends AuthorizedApiBase implements IUti
|
|
|
587
829
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
588
830
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
589
831
|
});
|
|
832
|
+
/**
|
|
833
|
+
* @param utilizationType (optional)
|
|
834
|
+
* @param startTime (optional)
|
|
835
|
+
* @param endTime (optional)
|
|
836
|
+
* @param ianaTimeZone (optional)
|
|
837
|
+
* @deprecated
|
|
838
|
+
*/
|
|
590
839
|
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
|
|
591
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
|
+
*/
|
|
592
848
|
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
|
|
593
849
|
protected processGetCrossCompanyUtilization(response: Response): Promise<CrossCompanyUtilizationDto>;
|
|
594
850
|
/**
|
|
@@ -620,11 +876,15 @@ export declare class UtilizationClient extends AuthorizedApiBase implements IUti
|
|
|
620
876
|
*/
|
|
621
877
|
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
622
878
|
protected processGetCrossCompanyUtilizationDatapoints(response: Response): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
623
|
-
|
|
879
|
+
getCompanyResourceUtilization(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDto>;
|
|
880
|
+
protected processGetCompanyResourceUtilization(response: Response): Promise<CompanyResourceUtilizationDto>;
|
|
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>;
|
|
624
884
|
protected processGetResourceUtilizationDatapoints(response: Response): Promise<ResourceUtilizationDatapointListDto>;
|
|
625
|
-
getCompanyResourceUtilizationDatapoints(utilizationType:
|
|
885
|
+
getCompanyResourceUtilizationDatapoints(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDatapointListDto>;
|
|
626
886
|
protected processGetCompanyResourceUtilizationDatapoints(response: Response): Promise<CompanyResourceUtilizationDatapointListDto>;
|
|
627
|
-
getCrossCompanyResourceUtilizationDatapoints(utilizationType:
|
|
887
|
+
getCrossCompanyResourceUtilizationDatapoints(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyResourceUtilizationDatapointListDto>;
|
|
628
888
|
protected processGetCrossCompanyResourceUtilizationDatapoints(response: Response): Promise<CrossCompanyResourceUtilizationDatapointListDto>;
|
|
629
889
|
}
|
|
630
890
|
export interface IMrbClient {
|
|
@@ -941,127 +1201,6 @@ export declare class MeasuringToolsClient extends AuthorizedApiBase implements I
|
|
|
941
1201
|
getMeasuringToolSettings(): Promise<MeasuringToolSettingsDto>;
|
|
942
1202
|
protected processGetMeasuringToolSettings(response: Response): Promise<MeasuringToolSettingsDto>;
|
|
943
1203
|
}
|
|
944
|
-
export interface IDowntimeReasonsAdminClient {
|
|
945
|
-
listDowntimeReasons(): Promise<DowntimeReasonDto[]>;
|
|
946
|
-
createDowntimeReason(request: CreateDowntimeReason): Promise<DowntimeReasonDto>;
|
|
947
|
-
updateDowntimeReason(id: string, request: UpdateDowntimeReasonRequest): Promise<DowntimeReasonDto>;
|
|
948
|
-
deleteDowntimeReason(id: string): Promise<void>;
|
|
949
|
-
listMachineTypes(): Promise<MachineTypeDto[]>;
|
|
950
|
-
listParentTopics(): Promise<ParentTopicDto[]>;
|
|
951
|
-
createParentTopic(request: CreateParentTopicRequest): Promise<ParentTopicDto>;
|
|
952
|
-
updateParentTopic(id: string, request: UpdateParentTopicRequest): Promise<ParentTopicDto>;
|
|
953
|
-
deleteParentTopic(id: string): Promise<void>;
|
|
954
|
-
}
|
|
955
|
-
export declare class DowntimeReasonsAdminClient extends AuthorizedApiBase implements IDowntimeReasonsAdminClient {
|
|
956
|
-
private http;
|
|
957
|
-
private baseUrl;
|
|
958
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
959
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
960
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
961
|
-
});
|
|
962
|
-
listDowntimeReasons(): Promise<DowntimeReasonDto[]>;
|
|
963
|
-
protected processListDowntimeReasons(response: Response): Promise<DowntimeReasonDto[]>;
|
|
964
|
-
createDowntimeReason(request: CreateDowntimeReason): Promise<DowntimeReasonDto>;
|
|
965
|
-
protected processCreateDowntimeReason(response: Response): Promise<DowntimeReasonDto>;
|
|
966
|
-
updateDowntimeReason(id: string, request: UpdateDowntimeReasonRequest): Promise<DowntimeReasonDto>;
|
|
967
|
-
protected processUpdateDowntimeReason(response: Response): Promise<DowntimeReasonDto>;
|
|
968
|
-
deleteDowntimeReason(id: string): Promise<void>;
|
|
969
|
-
protected processDeleteDowntimeReason(response: Response): Promise<void>;
|
|
970
|
-
listMachineTypes(): Promise<MachineTypeDto[]>;
|
|
971
|
-
protected processListMachineTypes(response: Response): Promise<MachineTypeDto[]>;
|
|
972
|
-
listParentTopics(): Promise<ParentTopicDto[]>;
|
|
973
|
-
protected processListParentTopics(response: Response): Promise<ParentTopicDto[]>;
|
|
974
|
-
createParentTopic(request: CreateParentTopicRequest): Promise<ParentTopicDto>;
|
|
975
|
-
protected processCreateParentTopic(response: Response): Promise<ParentTopicDto>;
|
|
976
|
-
updateParentTopic(id: string, request: UpdateParentTopicRequest): Promise<ParentTopicDto>;
|
|
977
|
-
protected processUpdateParentTopic(response: Response): Promise<ParentTopicDto>;
|
|
978
|
-
deleteParentTopic(id: string): Promise<void>;
|
|
979
|
-
protected processDeleteParentTopic(response: Response): Promise<void>;
|
|
980
|
-
}
|
|
981
|
-
export interface IDowntimeReasonsClient {
|
|
982
|
-
createDowntimePeriodReason(request: CreateDowntimePeriodReason): Promise<DowntimePeriodReasonDto>;
|
|
983
|
-
updateDowntimePeriodReason(id: number, request: UpdateDowntimePeriodReasonRequest): Promise<DowntimePeriodReasonDto>;
|
|
984
|
-
deleteDowntimeReason(id: number): Promise<void>;
|
|
985
|
-
listDowntimeReasonsForMachine(id: number): Promise<DowntimeReasonDto[]>;
|
|
986
|
-
listDowntimeReasonsHierarchyForMachine(id: number): Promise<ParentTopicDto[]>;
|
|
987
|
-
listActiveDowntimeReasonsForMachine(id: number): Promise<DowntimePeriodReasonDto[]>;
|
|
988
|
-
listTopDowntimeReasons(start: Date | null | undefined, end: Date | null | undefined): Promise<TopDowntimeReasonsDto>;
|
|
989
|
-
createReport(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportDto>;
|
|
990
|
-
exportReportToCsv(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportCsvDto>;
|
|
991
|
-
}
|
|
992
|
-
export declare class DowntimeReasonsClient extends AuthorizedApiBase implements IDowntimeReasonsClient {
|
|
993
|
-
private http;
|
|
994
|
-
private baseUrl;
|
|
995
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
996
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
997
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
998
|
-
});
|
|
999
|
-
createDowntimePeriodReason(request: CreateDowntimePeriodReason): Promise<DowntimePeriodReasonDto>;
|
|
1000
|
-
protected processCreateDowntimePeriodReason(response: Response): Promise<DowntimePeriodReasonDto>;
|
|
1001
|
-
updateDowntimePeriodReason(id: number, request: UpdateDowntimePeriodReasonRequest): Promise<DowntimePeriodReasonDto>;
|
|
1002
|
-
protected processUpdateDowntimePeriodReason(response: Response): Promise<DowntimePeriodReasonDto>;
|
|
1003
|
-
deleteDowntimeReason(id: number): Promise<void>;
|
|
1004
|
-
protected processDeleteDowntimeReason(response: Response): Promise<void>;
|
|
1005
|
-
listDowntimeReasonsForMachine(id: number): Promise<DowntimeReasonDto[]>;
|
|
1006
|
-
protected processListDowntimeReasonsForMachine(response: Response): Promise<DowntimeReasonDto[]>;
|
|
1007
|
-
listDowntimeReasonsHierarchyForMachine(id: number): Promise<ParentTopicDto[]>;
|
|
1008
|
-
protected processListDowntimeReasonsHierarchyForMachine(response: Response): Promise<ParentTopicDto[]>;
|
|
1009
|
-
listActiveDowntimeReasonsForMachine(id: number): Promise<DowntimePeriodReasonDto[]>;
|
|
1010
|
-
protected processListActiveDowntimeReasonsForMachine(response: Response): Promise<DowntimePeriodReasonDto[]>;
|
|
1011
|
-
listTopDowntimeReasons(start: Date | null | undefined, end: Date | null | undefined): Promise<TopDowntimeReasonsDto>;
|
|
1012
|
-
protected processListTopDowntimeReasons(response: Response): Promise<TopDowntimeReasonsDto>;
|
|
1013
|
-
createReport(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportDto>;
|
|
1014
|
-
protected processCreateReport(response: Response): Promise<DowntimeReasonsReportDto>;
|
|
1015
|
-
exportReportToCsv(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportCsvDto>;
|
|
1016
|
-
protected processExportReportToCsv(response: Response): Promise<DowntimeReasonsReportCsvDto>;
|
|
1017
|
-
}
|
|
1018
|
-
export interface IKpiAdminClient {
|
|
1019
|
-
getMachineCapacityAdmin(): Promise<MachineGroupCapacityDto[]>;
|
|
1020
|
-
updateMachineCapacityAdmin(request: UpdateMachinesCapacity): Promise<MachineCapacityDto>;
|
|
1021
|
-
getCalendarCapacityAdmin(startDate: Date | undefined, endDate: Date | undefined): Promise<CalendarDayDto[]>;
|
|
1022
|
-
updateCalendarCapacityAdmin(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
|
|
1023
|
-
getCalendarSettings(): Promise<CalendarSettingsDto>;
|
|
1024
|
-
updateCalendarSettings(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
|
|
1025
|
-
}
|
|
1026
|
-
export declare class KpiAdminClient extends AuthorizedApiBase implements IKpiAdminClient {
|
|
1027
|
-
private http;
|
|
1028
|
-
private baseUrl;
|
|
1029
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1030
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1031
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1032
|
-
});
|
|
1033
|
-
getMachineCapacityAdmin(): Promise<MachineGroupCapacityDto[]>;
|
|
1034
|
-
protected processGetMachineCapacityAdmin(response: Response): Promise<MachineGroupCapacityDto[]>;
|
|
1035
|
-
updateMachineCapacityAdmin(request: UpdateMachinesCapacity): Promise<MachineCapacityDto>;
|
|
1036
|
-
protected processUpdateMachineCapacityAdmin(response: Response): Promise<MachineCapacityDto>;
|
|
1037
|
-
getCalendarCapacityAdmin(startDate: Date | undefined, endDate: Date | undefined): Promise<CalendarDayDto[]>;
|
|
1038
|
-
protected processGetCalendarCapacityAdmin(response: Response): Promise<CalendarDayDto[]>;
|
|
1039
|
-
updateCalendarCapacityAdmin(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
|
|
1040
|
-
protected processUpdateCalendarCapacityAdmin(response: Response): Promise<CalendarCapacityDto>;
|
|
1041
|
-
getCalendarSettings(): Promise<CalendarSettingsDto>;
|
|
1042
|
-
protected processGetCalendarSettings(response: Response): Promise<CalendarSettingsDto>;
|
|
1043
|
-
updateCalendarSettings(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
|
|
1044
|
-
protected processUpdateCalendarSettings(response: Response): Promise<CalendarSettingsDto>;
|
|
1045
|
-
}
|
|
1046
|
-
export interface IKpiClient {
|
|
1047
|
-
getMachineKpi(machineExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<MachineKpiDto>;
|
|
1048
|
-
getMachineDailyUptime(machineExternalId: string | undefined, date: Date | undefined, utcOffset: number | undefined): Promise<MachineDailyUptimeDto>;
|
|
1049
|
-
getUptimeNormalTrend(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
|
|
1050
|
-
}
|
|
1051
|
-
export declare class KpiClient extends AuthorizedApiBase implements IKpiClient {
|
|
1052
|
-
private http;
|
|
1053
|
-
private baseUrl;
|
|
1054
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1055
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1056
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1057
|
-
});
|
|
1058
|
-
getMachineKpi(machineExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<MachineKpiDto>;
|
|
1059
|
-
protected processGetMachineKpi(response: Response): Promise<MachineKpiDto>;
|
|
1060
|
-
getMachineDailyUptime(machineExternalId: string | undefined, date: Date | undefined, utcOffset: number | undefined): Promise<MachineDailyUptimeDto>;
|
|
1061
|
-
protected processGetMachineDailyUptime(response: Response): Promise<MachineDailyUptimeDto>;
|
|
1062
|
-
getUptimeNormalTrend(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
|
|
1063
|
-
protected processGetUptimeNormalTrend(response: Response): Promise<UptimeTrendDataPointDto[]>;
|
|
1064
|
-
}
|
|
1065
1204
|
export interface IMachinesClient {
|
|
1066
1205
|
listMachines(onlyConnectedMachines: boolean | undefined): Promise<MachineDto[]>;
|
|
1067
1206
|
listMachineGroups(): Promise<MachineGroupDto[]>;
|
|
@@ -4260,40 +4399,538 @@ export interface ICncProgramInfoDto {
|
|
|
4260
4399
|
sequence?: string | null;
|
|
4261
4400
|
line?: string | null;
|
|
4262
4401
|
}
|
|
4263
|
-
export declare class
|
|
4264
|
-
id:
|
|
4265
|
-
|
|
4266
|
-
|
|
4402
|
+
export declare class DowntimeReasonResourceDto implements IDowntimeReasonResourceDto {
|
|
4403
|
+
id: string;
|
|
4404
|
+
reason: string;
|
|
4405
|
+
resourceTypes: string[];
|
|
4406
|
+
resourceGroups: string[];
|
|
4407
|
+
reasonType: DowntimeReasonTypeDto;
|
|
4267
4408
|
description?: string | null;
|
|
4268
|
-
|
|
4269
|
-
|
|
4270
|
-
|
|
4271
|
-
companyId?: string | null;
|
|
4272
|
-
resourceId: string;
|
|
4273
|
-
constructor(data?: IApplicationResourcesResourceDto);
|
|
4409
|
+
parentId?: string | null;
|
|
4410
|
+
displayOrder?: number | null;
|
|
4411
|
+
constructor(data?: IDowntimeReasonResourceDto);
|
|
4274
4412
|
init(_data?: any): void;
|
|
4275
|
-
static fromJS(data: any):
|
|
4413
|
+
static fromJS(data: any): DowntimeReasonResourceDto;
|
|
4276
4414
|
toJSON(data?: any): any;
|
|
4277
4415
|
}
|
|
4278
|
-
export interface
|
|
4279
|
-
id:
|
|
4280
|
-
|
|
4281
|
-
|
|
4416
|
+
export interface IDowntimeReasonResourceDto {
|
|
4417
|
+
id: string;
|
|
4418
|
+
reason: string;
|
|
4419
|
+
resourceTypes: string[];
|
|
4420
|
+
resourceGroups: string[];
|
|
4421
|
+
reasonType: DowntimeReasonTypeDto;
|
|
4282
4422
|
description?: string | null;
|
|
4283
|
-
|
|
4284
|
-
|
|
4285
|
-
hasLiveMachineState: boolean;
|
|
4286
|
-
companyId?: string | null;
|
|
4287
|
-
resourceId: string;
|
|
4423
|
+
parentId?: string | null;
|
|
4424
|
+
displayOrder?: number | null;
|
|
4288
4425
|
}
|
|
4289
|
-
export declare class
|
|
4290
|
-
|
|
4291
|
-
|
|
4292
|
-
|
|
4293
|
-
|
|
4294
|
-
|
|
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);
|
|
4295
4435
|
init(_data?: any): void;
|
|
4296
|
-
static fromJS(data: any):
|
|
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
|
+
}
|
|
4684
|
+
export declare class ResourceGroupCapacityDto implements IResourceGroupCapacityDto {
|
|
4685
|
+
resourceGroupName: string;
|
|
4686
|
+
resource: ResourceCapacityDto[];
|
|
4687
|
+
constructor(data?: IResourceGroupCapacityDto);
|
|
4688
|
+
init(_data?: any): void;
|
|
4689
|
+
static fromJS(data: any): ResourceGroupCapacityDto;
|
|
4690
|
+
toJSON(data?: any): any;
|
|
4691
|
+
}
|
|
4692
|
+
export interface IResourceGroupCapacityDto {
|
|
4693
|
+
resourceGroupName: string;
|
|
4694
|
+
resource: ResourceCapacityDto[];
|
|
4695
|
+
}
|
|
4696
|
+
export declare class ResourceCapacityDto implements IResourceCapacityDto {
|
|
4697
|
+
resourceExternalId: string;
|
|
4698
|
+
name: string;
|
|
4699
|
+
description?: string | null;
|
|
4700
|
+
comment?: string | null;
|
|
4701
|
+
utilizationPercent: number;
|
|
4702
|
+
capacity: ResourceCapacitySettingsDto[];
|
|
4703
|
+
created?: Date | null;
|
|
4704
|
+
updated?: Date | null;
|
|
4705
|
+
updatedBy?: string | null;
|
|
4706
|
+
updatedById?: string | null;
|
|
4707
|
+
constructor(data?: IResourceCapacityDto);
|
|
4708
|
+
init(_data?: any): void;
|
|
4709
|
+
static fromJS(data: any): ResourceCapacityDto;
|
|
4710
|
+
toJSON(data?: any): any;
|
|
4711
|
+
}
|
|
4712
|
+
export interface IResourceCapacityDto {
|
|
4713
|
+
resourceExternalId: string;
|
|
4714
|
+
name: string;
|
|
4715
|
+
description?: string | null;
|
|
4716
|
+
comment?: string | null;
|
|
4717
|
+
utilizationPercent: number;
|
|
4718
|
+
capacity: ResourceCapacitySettingsDto[];
|
|
4719
|
+
created?: Date | null;
|
|
4720
|
+
updated?: Date | null;
|
|
4721
|
+
updatedBy?: string | null;
|
|
4722
|
+
updatedById?: string | null;
|
|
4723
|
+
}
|
|
4724
|
+
export declare class ResourceCapacitySettingsDto implements IResourceCapacitySettingsDto {
|
|
4725
|
+
dayIndex: number;
|
|
4726
|
+
capacityHours: number;
|
|
4727
|
+
constructor(data?: IResourceCapacitySettingsDto);
|
|
4728
|
+
init(_data?: any): void;
|
|
4729
|
+
static fromJS(data: any): ResourceCapacitySettingsDto;
|
|
4730
|
+
toJSON(data?: any): any;
|
|
4731
|
+
}
|
|
4732
|
+
export interface IResourceCapacitySettingsDto {
|
|
4733
|
+
dayIndex: number;
|
|
4734
|
+
capacityHours: number;
|
|
4735
|
+
}
|
|
4736
|
+
export declare class UpdateResourcesCapacity implements IUpdateResourcesCapacity {
|
|
4737
|
+
resourceExternalId: string;
|
|
4738
|
+
comment?: string | null;
|
|
4739
|
+
utilizationPercent?: number | null;
|
|
4740
|
+
capacity?: ResourceCapacitySettingsDto[] | null;
|
|
4741
|
+
constructor(data?: IUpdateResourcesCapacity);
|
|
4742
|
+
init(_data?: any): void;
|
|
4743
|
+
static fromJS(data: any): UpdateResourcesCapacity;
|
|
4744
|
+
toJSON(data?: any): any;
|
|
4745
|
+
}
|
|
4746
|
+
export interface IUpdateResourcesCapacity {
|
|
4747
|
+
resourceExternalId: string;
|
|
4748
|
+
comment?: string | null;
|
|
4749
|
+
utilizationPercent?: number | null;
|
|
4750
|
+
capacity?: ResourceCapacitySettingsDto[] | null;
|
|
4751
|
+
}
|
|
4752
|
+
export declare class CalendarDayDto implements ICalendarDayDto {
|
|
4753
|
+
date?: Date;
|
|
4754
|
+
dayCapacity?: CalendarDayCapacityDto;
|
|
4755
|
+
capacityHours?: number;
|
|
4756
|
+
companyId?: string | null;
|
|
4757
|
+
constructor(data?: ICalendarDayDto);
|
|
4758
|
+
init(_data?: any): void;
|
|
4759
|
+
static fromJS(data: any): CalendarDayDto;
|
|
4760
|
+
toJSON(data?: any): any;
|
|
4761
|
+
}
|
|
4762
|
+
export interface ICalendarDayDto {
|
|
4763
|
+
date?: Date;
|
|
4764
|
+
dayCapacity?: CalendarDayCapacityDto;
|
|
4765
|
+
capacityHours?: number;
|
|
4766
|
+
companyId?: string | null;
|
|
4767
|
+
}
|
|
4768
|
+
export type CalendarDayCapacityDto = "WorkingDay" | "HalfDay" | "Holiday";
|
|
4769
|
+
export declare class CalendarCapacityDto implements ICalendarCapacityDto {
|
|
4770
|
+
date?: Date;
|
|
4771
|
+
dayCapacity?: CalendarDayCapacityDto;
|
|
4772
|
+
constructor(data?: ICalendarCapacityDto);
|
|
4773
|
+
init(_data?: any): void;
|
|
4774
|
+
static fromJS(data: any): CalendarCapacityDto;
|
|
4775
|
+
toJSON(data?: any): any;
|
|
4776
|
+
}
|
|
4777
|
+
export interface ICalendarCapacityDto {
|
|
4778
|
+
date?: Date;
|
|
4779
|
+
dayCapacity?: CalendarDayCapacityDto;
|
|
4780
|
+
}
|
|
4781
|
+
export declare class UpdateCalendarCapacity implements IUpdateCalendarCapacity {
|
|
4782
|
+
date?: Date;
|
|
4783
|
+
dayCapacity?: CalendarDayCapacityDto;
|
|
4784
|
+
constructor(data?: IUpdateCalendarCapacity);
|
|
4785
|
+
init(_data?: any): void;
|
|
4786
|
+
static fromJS(data: any): UpdateCalendarCapacity;
|
|
4787
|
+
toJSON(data?: any): any;
|
|
4788
|
+
}
|
|
4789
|
+
export interface IUpdateCalendarCapacity {
|
|
4790
|
+
date?: Date;
|
|
4791
|
+
dayCapacity?: CalendarDayCapacityDto;
|
|
4792
|
+
}
|
|
4793
|
+
export declare class CalendarSettingsDto implements ICalendarSettingsDto {
|
|
4794
|
+
defaultHoursPerWeekday?: {
|
|
4795
|
+
[key in DayOfWeek]?: number;
|
|
4796
|
+
};
|
|
4797
|
+
halfDayHours?: number;
|
|
4798
|
+
holidayHours?: number;
|
|
4799
|
+
constructor(data?: ICalendarSettingsDto);
|
|
4800
|
+
init(_data?: any): void;
|
|
4801
|
+
static fromJS(data: any): CalendarSettingsDto;
|
|
4802
|
+
toJSON(data?: any): any;
|
|
4803
|
+
}
|
|
4804
|
+
export interface ICalendarSettingsDto {
|
|
4805
|
+
defaultHoursPerWeekday?: {
|
|
4806
|
+
[key in DayOfWeek]?: number;
|
|
4807
|
+
};
|
|
4808
|
+
halfDayHours?: number;
|
|
4809
|
+
holidayHours?: number;
|
|
4810
|
+
}
|
|
4811
|
+
export type DayOfWeek = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
4812
|
+
export declare class UpdateCalendarSettingsCommand implements IUpdateCalendarSettingsCommand {
|
|
4813
|
+
defaultHoursPerWeekday?: {
|
|
4814
|
+
[key in DayOfWeek]?: number;
|
|
4815
|
+
};
|
|
4816
|
+
halfDayHours?: number;
|
|
4817
|
+
holidayHours?: number;
|
|
4818
|
+
constructor(data?: IUpdateCalendarSettingsCommand);
|
|
4819
|
+
init(_data?: any): void;
|
|
4820
|
+
static fromJS(data: any): UpdateCalendarSettingsCommand;
|
|
4821
|
+
toJSON(data?: any): any;
|
|
4822
|
+
}
|
|
4823
|
+
export interface IUpdateCalendarSettingsCommand {
|
|
4824
|
+
defaultHoursPerWeekday?: {
|
|
4825
|
+
[key in DayOfWeek]?: number;
|
|
4826
|
+
};
|
|
4827
|
+
halfDayHours?: number;
|
|
4828
|
+
holidayHours?: number;
|
|
4829
|
+
}
|
|
4830
|
+
export declare class ResourceKpiDto implements IResourceKpiDto {
|
|
4831
|
+
uptimeToNow: number;
|
|
4832
|
+
uptimeToNowPreviousPeriod: number;
|
|
4833
|
+
averageUpTime: number;
|
|
4834
|
+
uptimeTargetReached: number;
|
|
4835
|
+
days: ResourceDayKpiDto[];
|
|
4836
|
+
constructor(data?: IResourceKpiDto);
|
|
4837
|
+
init(_data?: any): void;
|
|
4838
|
+
static fromJS(data: any): ResourceKpiDto;
|
|
4839
|
+
toJSON(data?: any): any;
|
|
4840
|
+
}
|
|
4841
|
+
export interface IResourceKpiDto {
|
|
4842
|
+
uptimeToNow: number;
|
|
4843
|
+
uptimeToNowPreviousPeriod: number;
|
|
4844
|
+
averageUpTime: number;
|
|
4845
|
+
uptimeTargetReached: number;
|
|
4846
|
+
days: ResourceDayKpiDto[];
|
|
4847
|
+
}
|
|
4848
|
+
export declare class ResourceDayKpiDto implements IResourceDayKpiDto {
|
|
4849
|
+
date: Date;
|
|
4850
|
+
uptime: number;
|
|
4851
|
+
utilizationGoal: number;
|
|
4852
|
+
constructor(data?: IResourceDayKpiDto);
|
|
4853
|
+
init(_data?: any): void;
|
|
4854
|
+
static fromJS(data: any): ResourceDayKpiDto;
|
|
4855
|
+
toJSON(data?: any): any;
|
|
4856
|
+
}
|
|
4857
|
+
export interface IResourceDayKpiDto {
|
|
4858
|
+
date: Date;
|
|
4859
|
+
uptime: number;
|
|
4860
|
+
utilizationGoal: number;
|
|
4861
|
+
}
|
|
4862
|
+
export declare class ResourceDailyUptimeDto implements IResourceDailyUptimeDto {
|
|
4863
|
+
date?: Date;
|
|
4864
|
+
historicUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
4865
|
+
todayUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
4866
|
+
constructor(data?: IResourceDailyUptimeDto);
|
|
4867
|
+
init(_data?: any): void;
|
|
4868
|
+
static fromJS(data: any): ResourceDailyUptimeDto;
|
|
4869
|
+
toJSON(data?: any): any;
|
|
4870
|
+
}
|
|
4871
|
+
export interface IResourceDailyUptimeDto {
|
|
4872
|
+
date?: Date;
|
|
4873
|
+
historicUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
4874
|
+
todayUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
4875
|
+
}
|
|
4876
|
+
export declare class ResourceDailyUptimePointDto implements IResourceDailyUptimePointDto {
|
|
4877
|
+
date?: Date;
|
|
4878
|
+
uptime?: number;
|
|
4879
|
+
constructor(data?: IResourceDailyUptimePointDto);
|
|
4880
|
+
init(_data?: any): void;
|
|
4881
|
+
static fromJS(data: any): ResourceDailyUptimePointDto;
|
|
4882
|
+
toJSON(data?: any): any;
|
|
4883
|
+
}
|
|
4884
|
+
export interface IResourceDailyUptimePointDto {
|
|
4885
|
+
date?: Date;
|
|
4886
|
+
uptime?: number;
|
|
4887
|
+
}
|
|
4888
|
+
export declare class UptimeTrendDataPointDto implements IUptimeTrendDataPointDto {
|
|
4889
|
+
timestamp: Date;
|
|
4890
|
+
uptime: number;
|
|
4891
|
+
constructor(data?: IUptimeTrendDataPointDto);
|
|
4892
|
+
init(_data?: any): void;
|
|
4893
|
+
static fromJS(data: any): UptimeTrendDataPointDto;
|
|
4894
|
+
toJSON(data?: any): any;
|
|
4895
|
+
}
|
|
4896
|
+
export interface IUptimeTrendDataPointDto {
|
|
4897
|
+
timestamp: Date;
|
|
4898
|
+
uptime: number;
|
|
4899
|
+
}
|
|
4900
|
+
export declare class ApplicationResourcesResourceDto implements IApplicationResourcesResourceDto {
|
|
4901
|
+
id: number;
|
|
4902
|
+
externalId: string;
|
|
4903
|
+
name: string;
|
|
4904
|
+
description?: string | null;
|
|
4905
|
+
type?: string | null;
|
|
4906
|
+
workOrderAssetExternalIds?: string[];
|
|
4907
|
+
hasLiveMachineState: boolean;
|
|
4908
|
+
companyId?: string | null;
|
|
4909
|
+
resourceId: string;
|
|
4910
|
+
constructor(data?: IApplicationResourcesResourceDto);
|
|
4911
|
+
init(_data?: any): void;
|
|
4912
|
+
static fromJS(data: any): ApplicationResourcesResourceDto;
|
|
4913
|
+
toJSON(data?: any): any;
|
|
4914
|
+
}
|
|
4915
|
+
export interface IApplicationResourcesResourceDto {
|
|
4916
|
+
id: number;
|
|
4917
|
+
externalId: string;
|
|
4918
|
+
name: string;
|
|
4919
|
+
description?: string | null;
|
|
4920
|
+
type?: string | null;
|
|
4921
|
+
workOrderAssetExternalIds?: string[];
|
|
4922
|
+
hasLiveMachineState: boolean;
|
|
4923
|
+
companyId?: string | null;
|
|
4924
|
+
resourceId: string;
|
|
4925
|
+
}
|
|
4926
|
+
export declare class ApplicationResourcesResourceGroupDto implements IApplicationResourcesResourceGroupDto {
|
|
4927
|
+
id: string;
|
|
4928
|
+
name: string;
|
|
4929
|
+
companyId?: string | null;
|
|
4930
|
+
resources: ResourceGroupMemberDto[];
|
|
4931
|
+
constructor(data?: IApplicationResourcesResourceGroupDto);
|
|
4932
|
+
init(_data?: any): void;
|
|
4933
|
+
static fromJS(data: any): ApplicationResourcesResourceGroupDto;
|
|
4297
4934
|
toJSON(data?: any): any;
|
|
4298
4935
|
}
|
|
4299
4936
|
export interface IApplicationResourcesResourceGroupDto {
|
|
@@ -4881,6 +5518,36 @@ export interface IUtilizationTypeEnablingDto {
|
|
|
4881
5518
|
machineCalendarEnabled: boolean;
|
|
4882
5519
|
factoryCalendarEnabled: boolean;
|
|
4883
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
|
+
}
|
|
4884
5551
|
export declare class UpdatePulseSettings implements IUpdatePulseSettings {
|
|
4885
5552
|
defaultUtilizationType: UtilizationTypeDto;
|
|
4886
5553
|
powerOnEnabled: boolean;
|
|
@@ -4901,6 +5568,26 @@ export interface IUpdatePulseSettings {
|
|
|
4901
5568
|
machineCalendarEnabled: boolean;
|
|
4902
5569
|
factoryCalendarEnabled: boolean;
|
|
4903
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
|
+
}
|
|
4904
5591
|
export declare class CompanyUtilizationDto implements ICompanyUtilizationDto {
|
|
4905
5592
|
utilizationType: UtilizationTypeDto;
|
|
4906
5593
|
companyUtilization: UtilizationDetailsV2Dto;
|
|
@@ -5075,6 +5762,79 @@ export interface INamedCompanyUtilizationDatapointListDto extends ICompanyUtiliz
|
|
|
5075
5762
|
companyId: string;
|
|
5076
5763
|
companyName: string;
|
|
5077
5764
|
}
|
|
5765
|
+
export declare class CompanyResourceUtilizationDto implements ICompanyResourceUtilizationDto {
|
|
5766
|
+
utilizationType: ResourceUtilizationTypeDto;
|
|
5767
|
+
companyUtilization: UtilizationDetailsV2Dto;
|
|
5768
|
+
groups: ResourceGroupUtilizationV2Dto[];
|
|
5769
|
+
ungroupedResources: ResourceUtilizationV3Dto[];
|
|
5770
|
+
constructor(data?: ICompanyResourceUtilizationDto);
|
|
5771
|
+
init(_data?: any): void;
|
|
5772
|
+
static fromJS(data: any): CompanyResourceUtilizationDto;
|
|
5773
|
+
toJSON(data?: any): any;
|
|
5774
|
+
}
|
|
5775
|
+
export interface ICompanyResourceUtilizationDto {
|
|
5776
|
+
utilizationType: ResourceUtilizationTypeDto;
|
|
5777
|
+
companyUtilization: UtilizationDetailsV2Dto;
|
|
5778
|
+
groups: ResourceGroupUtilizationV2Dto[];
|
|
5779
|
+
ungroupedResources: ResourceUtilizationV3Dto[];
|
|
5780
|
+
}
|
|
5781
|
+
export type ResourceUtilizationTypeDto = "PowerOn" | "TwentyFourSeven" | "ActiveOrder" | "ResourceCalendar" | "FactoryCalendar";
|
|
5782
|
+
export declare class ResourceGroupUtilizationV2Dto implements IResourceGroupUtilizationV2Dto {
|
|
5783
|
+
name: string;
|
|
5784
|
+
utilization: UtilizationDetailsV2Dto;
|
|
5785
|
+
resources: ResourceUtilizationV3Dto[];
|
|
5786
|
+
constructor(data?: IResourceGroupUtilizationV2Dto);
|
|
5787
|
+
init(_data?: any): void;
|
|
5788
|
+
static fromJS(data: any): ResourceGroupUtilizationV2Dto;
|
|
5789
|
+
toJSON(data?: any): any;
|
|
5790
|
+
}
|
|
5791
|
+
export interface IResourceGroupUtilizationV2Dto {
|
|
5792
|
+
name: string;
|
|
5793
|
+
utilization: UtilizationDetailsV2Dto;
|
|
5794
|
+
resources: ResourceUtilizationV3Dto[];
|
|
5795
|
+
}
|
|
5796
|
+
export declare class ResourceUtilizationV3Dto implements IResourceUtilizationV3Dto {
|
|
5797
|
+
id?: number;
|
|
5798
|
+
name: string;
|
|
5799
|
+
description?: string | null;
|
|
5800
|
+
utilization: UtilizationDetailsV2Dto;
|
|
5801
|
+
constructor(data?: IResourceUtilizationV3Dto);
|
|
5802
|
+
init(_data?: any): void;
|
|
5803
|
+
static fromJS(data: any): ResourceUtilizationV3Dto;
|
|
5804
|
+
toJSON(data?: any): any;
|
|
5805
|
+
}
|
|
5806
|
+
export interface IResourceUtilizationV3Dto {
|
|
5807
|
+
id?: number;
|
|
5808
|
+
name: string;
|
|
5809
|
+
description?: string | null;
|
|
5810
|
+
utilization: UtilizationDetailsV2Dto;
|
|
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
|
+
}
|
|
5078
5838
|
export declare class ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto implements IResourceUtilizationDatapointListDto {
|
|
5079
5839
|
externalId: string;
|
|
5080
5840
|
id: number;
|
|
@@ -6942,26 +7702,6 @@ export interface IUpdateParentTopicRequest {
|
|
|
6942
7702
|
description?: string | null;
|
|
6943
7703
|
displayBeforeId?: string | null;
|
|
6944
7704
|
}
|
|
6945
|
-
export declare class CreateDowntimePeriodReason implements ICreateDowntimePeriodReason {
|
|
6946
|
-
reasonId: string;
|
|
6947
|
-
assetId: number;
|
|
6948
|
-
startTime: Date;
|
|
6949
|
-
endTime?: Date | null;
|
|
6950
|
-
autoCompleteDowntime?: boolean | null;
|
|
6951
|
-
comment?: string | null;
|
|
6952
|
-
constructor(data?: ICreateDowntimePeriodReason);
|
|
6953
|
-
init(_data?: any): void;
|
|
6954
|
-
static fromJS(data: any): CreateDowntimePeriodReason;
|
|
6955
|
-
toJSON(data?: any): any;
|
|
6956
|
-
}
|
|
6957
|
-
export interface ICreateDowntimePeriodReason {
|
|
6958
|
-
reasonId: string;
|
|
6959
|
-
assetId: number;
|
|
6960
|
-
startTime: Date;
|
|
6961
|
-
endTime?: Date | null;
|
|
6962
|
-
autoCompleteDowntime?: boolean | null;
|
|
6963
|
-
comment?: string | null;
|
|
6964
|
-
}
|
|
6965
7705
|
export declare class UpdateDowntimePeriodReasonRequest implements IUpdateDowntimePeriodReasonRequest {
|
|
6966
7706
|
reasonId?: string | null;
|
|
6967
7707
|
assetId?: number | null;
|
|
@@ -6982,29 +7722,19 @@ export interface IUpdateDowntimePeriodReasonRequest {
|
|
|
6982
7722
|
autoCompleteDowntime?: boolean | null;
|
|
6983
7723
|
comment?: string | null;
|
|
6984
7724
|
}
|
|
6985
|
-
export declare class
|
|
6986
|
-
|
|
6987
|
-
|
|
6988
|
-
|
|
6989
|
-
|
|
6990
|
-
static fromJS(data: any): TopDowntimeReasonsDto;
|
|
6991
|
-
toJSON(data?: any): any;
|
|
6992
|
-
}
|
|
6993
|
-
export interface ITopDowntimeReasonsDto {
|
|
6994
|
-
planned: DowntimeReasonCountDto[];
|
|
6995
|
-
unplanned: DowntimeReasonCountDto[];
|
|
6996
|
-
}
|
|
6997
|
-
export declare class DowntimeReasonCountDto implements IDowntimeReasonCountDto {
|
|
6998
|
-
count: number;
|
|
6999
|
-
reason: string;
|
|
7000
|
-
constructor(data?: IDowntimeReasonCountDto);
|
|
7725
|
+
export declare class ListTopDowntimeReasonsForResourcesRequest implements IListTopDowntimeReasonsForResourcesRequest {
|
|
7726
|
+
startTime?: Date | null;
|
|
7727
|
+
endTime?: Date | null;
|
|
7728
|
+
resourceExternalIds?: string[] | null;
|
|
7729
|
+
constructor(data?: IListTopDowntimeReasonsForResourcesRequest);
|
|
7001
7730
|
init(_data?: any): void;
|
|
7002
|
-
static fromJS(data: any):
|
|
7731
|
+
static fromJS(data: any): ListTopDowntimeReasonsForResourcesRequest;
|
|
7003
7732
|
toJSON(data?: any): any;
|
|
7004
7733
|
}
|
|
7005
|
-
export interface
|
|
7006
|
-
|
|
7007
|
-
|
|
7734
|
+
export interface IListTopDowntimeReasonsForResourcesRequest {
|
|
7735
|
+
startTime?: Date | null;
|
|
7736
|
+
endTime?: Date | null;
|
|
7737
|
+
resourceExternalIds?: string[] | null;
|
|
7008
7738
|
}
|
|
7009
7739
|
export declare class DowntimeReasonsReportDto implements IDowntimeReasonsReportDto {
|
|
7010
7740
|
companyId?: string | null;
|
|
@@ -7072,20 +7802,6 @@ export interface ICreateDowntimeReasonsReportRequest {
|
|
|
7072
7802
|
startTime?: Date | null;
|
|
7073
7803
|
endTime?: Date | null;
|
|
7074
7804
|
}
|
|
7075
|
-
export declare class DowntimeReasonsReportCsvDto implements IDowntimeReasonsReportCsvDto {
|
|
7076
|
-
downtimeCsv?: DownloadDto | null;
|
|
7077
|
-
eventsCsv?: DownloadDto | null;
|
|
7078
|
-
programsCsv?: DownloadDto | null;
|
|
7079
|
-
constructor(data?: IDowntimeReasonsReportCsvDto);
|
|
7080
|
-
init(_data?: any): void;
|
|
7081
|
-
static fromJS(data: any): DowntimeReasonsReportCsvDto;
|
|
7082
|
-
toJSON(data?: any): any;
|
|
7083
|
-
}
|
|
7084
|
-
export interface IDowntimeReasonsReportCsvDto {
|
|
7085
|
-
downtimeCsv?: DownloadDto | null;
|
|
7086
|
-
eventsCsv?: DownloadDto | null;
|
|
7087
|
-
programsCsv?: DownloadDto | null;
|
|
7088
|
-
}
|
|
7089
7805
|
export declare class MachineGroupCapacityDto implements IMachineGroupCapacityDto {
|
|
7090
7806
|
machineGroupName: string;
|
|
7091
7807
|
machine: MachineCapacityDto[];
|
|
@@ -7154,84 +7870,6 @@ export interface IUpdateMachinesCapacity {
|
|
|
7154
7870
|
utilizationPercent?: number | null;
|
|
7155
7871
|
capacity?: MachineCapacitySettingsDto[] | null;
|
|
7156
7872
|
}
|
|
7157
|
-
export declare class CalendarDayDto implements ICalendarDayDto {
|
|
7158
|
-
date?: Date;
|
|
7159
|
-
dayCapacity?: CalendarDayCapacityDto;
|
|
7160
|
-
capacityHours?: number;
|
|
7161
|
-
companyId?: string | null;
|
|
7162
|
-
constructor(data?: ICalendarDayDto);
|
|
7163
|
-
init(_data?: any): void;
|
|
7164
|
-
static fromJS(data: any): CalendarDayDto;
|
|
7165
|
-
toJSON(data?: any): any;
|
|
7166
|
-
}
|
|
7167
|
-
export interface ICalendarDayDto {
|
|
7168
|
-
date?: Date;
|
|
7169
|
-
dayCapacity?: CalendarDayCapacityDto;
|
|
7170
|
-
capacityHours?: number;
|
|
7171
|
-
companyId?: string | null;
|
|
7172
|
-
}
|
|
7173
|
-
export type CalendarDayCapacityDto = "WorkingDay" | "HalfDay" | "Holiday";
|
|
7174
|
-
export declare class CalendarCapacityDto implements ICalendarCapacityDto {
|
|
7175
|
-
date?: Date;
|
|
7176
|
-
dayCapacity?: CalendarDayCapacityDto;
|
|
7177
|
-
constructor(data?: ICalendarCapacityDto);
|
|
7178
|
-
init(_data?: any): void;
|
|
7179
|
-
static fromJS(data: any): CalendarCapacityDto;
|
|
7180
|
-
toJSON(data?: any): any;
|
|
7181
|
-
}
|
|
7182
|
-
export interface ICalendarCapacityDto {
|
|
7183
|
-
date?: Date;
|
|
7184
|
-
dayCapacity?: CalendarDayCapacityDto;
|
|
7185
|
-
}
|
|
7186
|
-
export declare class UpdateCalendarCapacity implements IUpdateCalendarCapacity {
|
|
7187
|
-
date?: Date;
|
|
7188
|
-
dayCapacity?: CalendarDayCapacityDto;
|
|
7189
|
-
constructor(data?: IUpdateCalendarCapacity);
|
|
7190
|
-
init(_data?: any): void;
|
|
7191
|
-
static fromJS(data: any): UpdateCalendarCapacity;
|
|
7192
|
-
toJSON(data?: any): any;
|
|
7193
|
-
}
|
|
7194
|
-
export interface IUpdateCalendarCapacity {
|
|
7195
|
-
date?: Date;
|
|
7196
|
-
dayCapacity?: CalendarDayCapacityDto;
|
|
7197
|
-
}
|
|
7198
|
-
export declare class CalendarSettingsDto implements ICalendarSettingsDto {
|
|
7199
|
-
defaultHoursPerWeekday?: {
|
|
7200
|
-
[key in DayOfWeek]?: number;
|
|
7201
|
-
};
|
|
7202
|
-
halfDayHours?: number;
|
|
7203
|
-
holidayHours?: number;
|
|
7204
|
-
constructor(data?: ICalendarSettingsDto);
|
|
7205
|
-
init(_data?: any): void;
|
|
7206
|
-
static fromJS(data: any): CalendarSettingsDto;
|
|
7207
|
-
toJSON(data?: any): any;
|
|
7208
|
-
}
|
|
7209
|
-
export interface ICalendarSettingsDto {
|
|
7210
|
-
defaultHoursPerWeekday?: {
|
|
7211
|
-
[key in DayOfWeek]?: number;
|
|
7212
|
-
};
|
|
7213
|
-
halfDayHours?: number;
|
|
7214
|
-
holidayHours?: number;
|
|
7215
|
-
}
|
|
7216
|
-
export type DayOfWeek = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
7217
|
-
export declare class UpdateCalendarSettingsCommand implements IUpdateCalendarSettingsCommand {
|
|
7218
|
-
defaultHoursPerWeekday?: {
|
|
7219
|
-
[key in DayOfWeek]?: number;
|
|
7220
|
-
};
|
|
7221
|
-
halfDayHours?: number;
|
|
7222
|
-
holidayHours?: number;
|
|
7223
|
-
constructor(data?: IUpdateCalendarSettingsCommand);
|
|
7224
|
-
init(_data?: any): void;
|
|
7225
|
-
static fromJS(data: any): UpdateCalendarSettingsCommand;
|
|
7226
|
-
toJSON(data?: any): any;
|
|
7227
|
-
}
|
|
7228
|
-
export interface IUpdateCalendarSettingsCommand {
|
|
7229
|
-
defaultHoursPerWeekday?: {
|
|
7230
|
-
[key in DayOfWeek]?: number;
|
|
7231
|
-
};
|
|
7232
|
-
halfDayHours?: number;
|
|
7233
|
-
holidayHours?: number;
|
|
7234
|
-
}
|
|
7235
7873
|
export declare class MachineKpiDto implements IMachineKpiDto {
|
|
7236
7874
|
uptimeToNow: number;
|
|
7237
7875
|
uptimeToNowPreviousPeriod: number;
|
|
@@ -7290,18 +7928,6 @@ export interface IMachineDailyUptimePointDto {
|
|
|
7290
7928
|
date?: Date;
|
|
7291
7929
|
uptime?: number;
|
|
7292
7930
|
}
|
|
7293
|
-
export declare class UptimeTrendDataPointDto implements IUptimeTrendDataPointDto {
|
|
7294
|
-
timestamp: Date;
|
|
7295
|
-
uptime: number;
|
|
7296
|
-
constructor(data?: IUptimeTrendDataPointDto);
|
|
7297
|
-
init(_data?: any): void;
|
|
7298
|
-
static fromJS(data: any): UptimeTrendDataPointDto;
|
|
7299
|
-
toJSON(data?: any): any;
|
|
7300
|
-
}
|
|
7301
|
-
export interface IUptimeTrendDataPointDto {
|
|
7302
|
-
timestamp: Date;
|
|
7303
|
-
uptime: number;
|
|
7304
|
-
}
|
|
7305
7931
|
export declare class MachineGroupDto implements IMachineGroupDto {
|
|
7306
7932
|
id: string;
|
|
7307
7933
|
name: string;
|
|
@@ -12656,6 +13282,7 @@ export declare class MeasurementFormSchemaDto implements IMeasurementFormSchemaD
|
|
|
12656
13282
|
customerId?: string | null;
|
|
12657
13283
|
customerName?: string | null;
|
|
12658
13284
|
excludeFromCustomerDocumentation: boolean;
|
|
13285
|
+
excludeDrawingFromCustomerDocumentation: boolean;
|
|
12659
13286
|
specification?: string | null;
|
|
12660
13287
|
isUsed: boolean;
|
|
12661
13288
|
status: MeasurementFormStatus;
|
|
@@ -12688,6 +13315,7 @@ export interface IMeasurementFormSchemaDto {
|
|
|
12688
13315
|
customerId?: string | null;
|
|
12689
13316
|
customerName?: string | null;
|
|
12690
13317
|
excludeFromCustomerDocumentation: boolean;
|
|
13318
|
+
excludeDrawingFromCustomerDocumentation: boolean;
|
|
12691
13319
|
specification?: string | null;
|
|
12692
13320
|
isUsed: boolean;
|
|
12693
13321
|
status: MeasurementFormStatus;
|
|
@@ -12900,6 +13528,7 @@ export interface ICreateMeasurementFormSchema {
|
|
|
12900
13528
|
}
|
|
12901
13529
|
export declare class UpdateMeasurementFormSchemaRequest implements IUpdateMeasurementFormSchemaRequest {
|
|
12902
13530
|
excludeFromCustomerDocumentation: boolean;
|
|
13531
|
+
excludeDrawingFromCustomerDocumentation: boolean;
|
|
12903
13532
|
specification?: string | null;
|
|
12904
13533
|
constructor(data?: IUpdateMeasurementFormSchemaRequest);
|
|
12905
13534
|
init(_data?: any): void;
|
|
@@ -12908,6 +13537,7 @@ export declare class UpdateMeasurementFormSchemaRequest implements IUpdateMeasur
|
|
|
12908
13537
|
}
|
|
12909
13538
|
export interface IUpdateMeasurementFormSchemaRequest {
|
|
12910
13539
|
excludeFromCustomerDocumentation: boolean;
|
|
13540
|
+
excludeDrawingFromCustomerDocumentation: boolean;
|
|
12911
13541
|
specification?: string | null;
|
|
12912
13542
|
}
|
|
12913
13543
|
export declare class CopyMeasurementFormSchema implements ICopyMeasurementFormSchema {
|
|
@@ -13778,6 +14408,7 @@ export declare class MeasurementFormWorkorderSchemaDto implements IMeasurementFo
|
|
|
13778
14408
|
drawingUrl?: string | null;
|
|
13779
14409
|
markedDrawingUrl?: string | null;
|
|
13780
14410
|
excludeFromCustomerDocumentation: boolean;
|
|
14411
|
+
excludeDrawingFromCustomerDocumentation: boolean;
|
|
13781
14412
|
versionId: number;
|
|
13782
14413
|
specification?: string | null;
|
|
13783
14414
|
progress: MeasurementFormProgressDto;
|
|
@@ -13796,6 +14427,7 @@ export interface IMeasurementFormWorkorderSchemaDto {
|
|
|
13796
14427
|
drawingUrl?: string | null;
|
|
13797
14428
|
markedDrawingUrl?: string | null;
|
|
13798
14429
|
excludeFromCustomerDocumentation: boolean;
|
|
14430
|
+
excludeDrawingFromCustomerDocumentation: boolean;
|
|
13799
14431
|
versionId: number;
|
|
13800
14432
|
specification?: string | null;
|
|
13801
14433
|
progress: MeasurementFormProgressDto;
|
|
@@ -14219,7 +14851,6 @@ export interface IValidationRuleDto {
|
|
|
14219
14851
|
export declare class SaveValueResponseDto implements ISaveValueResponseDto {
|
|
14220
14852
|
elementCompleted: boolean;
|
|
14221
14853
|
warning?: string | null;
|
|
14222
|
-
informationText?: string | null;
|
|
14223
14854
|
isOutsideTolerances: boolean;
|
|
14224
14855
|
isCloseToTolerances: boolean;
|
|
14225
14856
|
tools: MeasurementFormToolValueDto[];
|
|
@@ -14231,7 +14862,6 @@ export declare class SaveValueResponseDto implements ISaveValueResponseDto {
|
|
|
14231
14862
|
export interface ISaveValueResponseDto {
|
|
14232
14863
|
elementCompleted: boolean;
|
|
14233
14864
|
warning?: string | null;
|
|
14234
|
-
informationText?: string | null;
|
|
14235
14865
|
isOutsideTolerances: boolean;
|
|
14236
14866
|
isCloseToTolerances: boolean;
|
|
14237
14867
|
tools: MeasurementFormToolValueDto[];
|