@ignos/api-client 20260115.0.13741-alpha → 20260116.0.13753
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 +370 -139
- package/lib/ignosportal-api.js +1574 -599
- package/package.json +1 -1
- package/src/ignosportal-api.ts +4493 -3312
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -458,6 +458,80 @@ 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 IKpiAdminClient {
|
|
462
|
+
getResourceCapacityAdmin(): Promise<ResourceGroupCapacityDto[]>;
|
|
463
|
+
updateResourceCapacityAdmin(request: UpdateResourcesCapacity): Promise<ResourceCapacityDto>;
|
|
464
|
+
getCalendarCapacityAdmin(startDate: Date | undefined, endDate: Date | undefined): Promise<CalendarDayDto[]>;
|
|
465
|
+
updateCalendarCapacityAdmin(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
|
|
466
|
+
getCalendarSettings(): Promise<CalendarSettingsDto>;
|
|
467
|
+
updateCalendarSettings(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
|
|
468
|
+
getMachineCapacityAdmin(): Promise<MachineGroupCapacityDto[]>;
|
|
469
|
+
updateMachineCapacityAdmin(request: UpdateMachinesCapacity): Promise<MachineCapacityDto>;
|
|
470
|
+
getCalendarCapacityAdmin2(startDate: Date | undefined, endDate: Date | undefined): Promise<CalendarDayDto[]>;
|
|
471
|
+
updateCalendarCapacityAdmin2(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
|
|
472
|
+
getCalendarSettings2(): Promise<CalendarSettingsDto>;
|
|
473
|
+
updateCalendarSettings2(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
|
|
474
|
+
}
|
|
475
|
+
export declare class KpiAdminClient extends AuthorizedApiBase implements IKpiAdminClient {
|
|
476
|
+
private http;
|
|
477
|
+
private baseUrl;
|
|
478
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
479
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
480
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
481
|
+
});
|
|
482
|
+
getResourceCapacityAdmin(): Promise<ResourceGroupCapacityDto[]>;
|
|
483
|
+
protected processGetResourceCapacityAdmin(response: Response): Promise<ResourceGroupCapacityDto[]>;
|
|
484
|
+
updateResourceCapacityAdmin(request: UpdateResourcesCapacity): Promise<ResourceCapacityDto>;
|
|
485
|
+
protected processUpdateResourceCapacityAdmin(response: Response): Promise<ResourceCapacityDto>;
|
|
486
|
+
getCalendarCapacityAdmin(startDate: Date | undefined, endDate: Date | undefined): Promise<CalendarDayDto[]>;
|
|
487
|
+
protected processGetCalendarCapacityAdmin(response: Response): Promise<CalendarDayDto[]>;
|
|
488
|
+
updateCalendarCapacityAdmin(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
|
|
489
|
+
protected processUpdateCalendarCapacityAdmin(response: Response): Promise<CalendarCapacityDto>;
|
|
490
|
+
getCalendarSettings(): Promise<CalendarSettingsDto>;
|
|
491
|
+
protected processGetCalendarSettings(response: Response): Promise<CalendarSettingsDto>;
|
|
492
|
+
updateCalendarSettings(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
|
|
493
|
+
protected processUpdateCalendarSettings(response: Response): Promise<CalendarSettingsDto>;
|
|
494
|
+
getMachineCapacityAdmin(): Promise<MachineGroupCapacityDto[]>;
|
|
495
|
+
protected processGetMachineCapacityAdmin(response: Response): Promise<MachineGroupCapacityDto[]>;
|
|
496
|
+
updateMachineCapacityAdmin(request: UpdateMachinesCapacity): Promise<MachineCapacityDto>;
|
|
497
|
+
protected processUpdateMachineCapacityAdmin(response: Response): Promise<MachineCapacityDto>;
|
|
498
|
+
getCalendarCapacityAdmin2(startDate: Date | undefined, endDate: Date | undefined): Promise<CalendarDayDto[]>;
|
|
499
|
+
protected processGetCalendarCapacityAdmin2(response: Response): Promise<CalendarDayDto[]>;
|
|
500
|
+
updateCalendarCapacityAdmin2(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
|
|
501
|
+
protected processUpdateCalendarCapacityAdmin2(response: Response): Promise<CalendarCapacityDto>;
|
|
502
|
+
getCalendarSettings2(): Promise<CalendarSettingsDto>;
|
|
503
|
+
protected processGetCalendarSettings2(response: Response): Promise<CalendarSettingsDto>;
|
|
504
|
+
updateCalendarSettings2(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
|
|
505
|
+
protected processUpdateCalendarSettings2(response: Response): Promise<CalendarSettingsDto>;
|
|
506
|
+
}
|
|
507
|
+
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>;
|
|
510
|
+
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>;
|
|
513
|
+
getUptimeNormalTrend2(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
|
|
514
|
+
}
|
|
515
|
+
export declare class KpiClient extends AuthorizedApiBase implements IKpiClient {
|
|
516
|
+
private http;
|
|
517
|
+
private baseUrl;
|
|
518
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
519
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
520
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
521
|
+
});
|
|
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>;
|
|
526
|
+
getUptimeNormalTrend(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
|
|
527
|
+
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>;
|
|
532
|
+
getUptimeNormalTrend2(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
|
|
533
|
+
protected processGetUptimeNormalTrend2(response: Response): Promise<UptimeTrendDataPointDto[]>;
|
|
534
|
+
}
|
|
461
535
|
export interface IResourcesClient {
|
|
462
536
|
listResources(onlyConnectedResources: boolean | undefined): Promise<ApplicationResourcesResourceDto[]>;
|
|
463
537
|
listResourceGroups(): Promise<ApplicationResourcesResourceGroupDto[]>;
|
|
@@ -548,6 +622,13 @@ export declare class PulseClient extends AuthorizedApiBase implements IPulseClie
|
|
|
548
622
|
protected processUpdatePulseSettings(response: Response): Promise<PulseSettingsDto>;
|
|
549
623
|
}
|
|
550
624
|
export interface IUtilizationClient {
|
|
625
|
+
/**
|
|
626
|
+
* @param utilizationType (optional)
|
|
627
|
+
* @param startTime (optional)
|
|
628
|
+
* @param endTime (optional)
|
|
629
|
+
* @param ianaTimeZone (optional)
|
|
630
|
+
* @deprecated
|
|
631
|
+
*/
|
|
551
632
|
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
|
|
552
633
|
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
|
|
553
634
|
/**
|
|
@@ -576,6 +657,7 @@ export interface IUtilizationClient {
|
|
|
576
657
|
* @deprecated
|
|
577
658
|
*/
|
|
578
659
|
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>;
|
|
579
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>;
|
|
580
662
|
getCompanyResourceUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDatapointListDto>;
|
|
581
663
|
getCrossCompanyResourceUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyResourceUtilizationDatapointListDto>;
|
|
@@ -587,6 +669,13 @@ export declare class UtilizationClient extends AuthorizedApiBase implements IUti
|
|
|
587
669
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
588
670
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
589
671
|
});
|
|
672
|
+
/**
|
|
673
|
+
* @param utilizationType (optional)
|
|
674
|
+
* @param startTime (optional)
|
|
675
|
+
* @param endTime (optional)
|
|
676
|
+
* @param ianaTimeZone (optional)
|
|
677
|
+
* @deprecated
|
|
678
|
+
*/
|
|
590
679
|
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
|
|
591
680
|
protected processGetCompanyUtilization(response: Response): Promise<CompanyUtilizationDto>;
|
|
592
681
|
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
|
|
@@ -620,6 +709,8 @@ export declare class UtilizationClient extends AuthorizedApiBase implements IUti
|
|
|
620
709
|
*/
|
|
621
710
|
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
622
711
|
protected processGetCrossCompanyUtilizationDatapoints(response: Response): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
712
|
+
getCompanyResourceUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDto>;
|
|
713
|
+
protected processGetCompanyResourceUtilization(response: Response): Promise<CompanyResourceUtilizationDto>;
|
|
623
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>;
|
|
624
715
|
protected processGetResourceUtilizationDatapoints(response: Response): Promise<ResourceUtilizationDatapointListDto>;
|
|
625
716
|
getCompanyResourceUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDatapointListDto>;
|
|
@@ -986,6 +1077,7 @@ export interface IDowntimeReasonsClient {
|
|
|
986
1077
|
listDowntimeReasonsHierarchyForMachine(id: number): Promise<ParentTopicDto[]>;
|
|
987
1078
|
listActiveDowntimeReasonsForMachine(id: number): Promise<DowntimePeriodReasonDto[]>;
|
|
988
1079
|
listTopDowntimeReasons(start: Date | null | undefined, end: Date | null | undefined): Promise<TopDowntimeReasonsDto>;
|
|
1080
|
+
listTopDowntimeReasonsForResources(request: ListTopDowntimeReasonsForResourcesRequest): Promise<TopDowntimeReasonsDto>;
|
|
989
1081
|
createReport(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportDto>;
|
|
990
1082
|
exportReportToCsv(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportCsvDto>;
|
|
991
1083
|
}
|
|
@@ -1010,58 +1102,13 @@ export declare class DowntimeReasonsClient extends AuthorizedApiBase implements
|
|
|
1010
1102
|
protected processListActiveDowntimeReasonsForMachine(response: Response): Promise<DowntimePeriodReasonDto[]>;
|
|
1011
1103
|
listTopDowntimeReasons(start: Date | null | undefined, end: Date | null | undefined): Promise<TopDowntimeReasonsDto>;
|
|
1012
1104
|
protected processListTopDowntimeReasons(response: Response): Promise<TopDowntimeReasonsDto>;
|
|
1105
|
+
listTopDowntimeReasonsForResources(request: ListTopDowntimeReasonsForResourcesRequest): Promise<TopDowntimeReasonsDto>;
|
|
1106
|
+
protected processListTopDowntimeReasonsForResources(response: Response): Promise<TopDowntimeReasonsDto>;
|
|
1013
1107
|
createReport(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportDto>;
|
|
1014
1108
|
protected processCreateReport(response: Response): Promise<DowntimeReasonsReportDto>;
|
|
1015
1109
|
exportReportToCsv(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportCsvDto>;
|
|
1016
1110
|
protected processExportReportToCsv(response: Response): Promise<DowntimeReasonsReportCsvDto>;
|
|
1017
1111
|
}
|
|
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
1112
|
export interface IMachinesClient {
|
|
1066
1113
|
listMachines(onlyConnectedMachines: boolean | undefined): Promise<MachineDto[]>;
|
|
1067
1114
|
listMachineGroups(): Promise<MachineGroupDto[]>;
|
|
@@ -4260,6 +4307,222 @@ export interface ICncProgramInfoDto {
|
|
|
4260
4307
|
sequence?: string | null;
|
|
4261
4308
|
line?: string | null;
|
|
4262
4309
|
}
|
|
4310
|
+
export declare class ResourceGroupCapacityDto implements IResourceGroupCapacityDto {
|
|
4311
|
+
resourceGroupName: string;
|
|
4312
|
+
resource: ResourceCapacityDto[];
|
|
4313
|
+
constructor(data?: IResourceGroupCapacityDto);
|
|
4314
|
+
init(_data?: any): void;
|
|
4315
|
+
static fromJS(data: any): ResourceGroupCapacityDto;
|
|
4316
|
+
toJSON(data?: any): any;
|
|
4317
|
+
}
|
|
4318
|
+
export interface IResourceGroupCapacityDto {
|
|
4319
|
+
resourceGroupName: string;
|
|
4320
|
+
resource: ResourceCapacityDto[];
|
|
4321
|
+
}
|
|
4322
|
+
export declare class ResourceCapacityDto implements IResourceCapacityDto {
|
|
4323
|
+
resourceExternalId: string;
|
|
4324
|
+
name: string;
|
|
4325
|
+
description?: string | null;
|
|
4326
|
+
comment?: string | null;
|
|
4327
|
+
utilizationPercent: number;
|
|
4328
|
+
capacity: ResourceCapacitySettingsDto[];
|
|
4329
|
+
created?: Date | null;
|
|
4330
|
+
updated?: Date | null;
|
|
4331
|
+
updatedBy?: string | null;
|
|
4332
|
+
updatedById?: string | null;
|
|
4333
|
+
constructor(data?: IResourceCapacityDto);
|
|
4334
|
+
init(_data?: any): void;
|
|
4335
|
+
static fromJS(data: any): ResourceCapacityDto;
|
|
4336
|
+
toJSON(data?: any): any;
|
|
4337
|
+
}
|
|
4338
|
+
export interface IResourceCapacityDto {
|
|
4339
|
+
resourceExternalId: string;
|
|
4340
|
+
name: string;
|
|
4341
|
+
description?: string | null;
|
|
4342
|
+
comment?: string | null;
|
|
4343
|
+
utilizationPercent: number;
|
|
4344
|
+
capacity: ResourceCapacitySettingsDto[];
|
|
4345
|
+
created?: Date | null;
|
|
4346
|
+
updated?: Date | null;
|
|
4347
|
+
updatedBy?: string | null;
|
|
4348
|
+
updatedById?: string | null;
|
|
4349
|
+
}
|
|
4350
|
+
export declare class ResourceCapacitySettingsDto implements IResourceCapacitySettingsDto {
|
|
4351
|
+
dayIndex: number;
|
|
4352
|
+
capacityHours: number;
|
|
4353
|
+
constructor(data?: IResourceCapacitySettingsDto);
|
|
4354
|
+
init(_data?: any): void;
|
|
4355
|
+
static fromJS(data: any): ResourceCapacitySettingsDto;
|
|
4356
|
+
toJSON(data?: any): any;
|
|
4357
|
+
}
|
|
4358
|
+
export interface IResourceCapacitySettingsDto {
|
|
4359
|
+
dayIndex: number;
|
|
4360
|
+
capacityHours: number;
|
|
4361
|
+
}
|
|
4362
|
+
export declare class UpdateResourcesCapacity implements IUpdateResourcesCapacity {
|
|
4363
|
+
resourceExternalId: string;
|
|
4364
|
+
comment?: string | null;
|
|
4365
|
+
utilizationPercent?: number | null;
|
|
4366
|
+
capacity?: ResourceCapacitySettingsDto[] | null;
|
|
4367
|
+
constructor(data?: IUpdateResourcesCapacity);
|
|
4368
|
+
init(_data?: any): void;
|
|
4369
|
+
static fromJS(data: any): UpdateResourcesCapacity;
|
|
4370
|
+
toJSON(data?: any): any;
|
|
4371
|
+
}
|
|
4372
|
+
export interface IUpdateResourcesCapacity {
|
|
4373
|
+
resourceExternalId: string;
|
|
4374
|
+
comment?: string | null;
|
|
4375
|
+
utilizationPercent?: number | null;
|
|
4376
|
+
capacity?: ResourceCapacitySettingsDto[] | null;
|
|
4377
|
+
}
|
|
4378
|
+
export declare class CalendarDayDto implements ICalendarDayDto {
|
|
4379
|
+
date?: Date;
|
|
4380
|
+
dayCapacity?: CalendarDayCapacityDto;
|
|
4381
|
+
capacityHours?: number;
|
|
4382
|
+
companyId?: string | null;
|
|
4383
|
+
constructor(data?: ICalendarDayDto);
|
|
4384
|
+
init(_data?: any): void;
|
|
4385
|
+
static fromJS(data: any): CalendarDayDto;
|
|
4386
|
+
toJSON(data?: any): any;
|
|
4387
|
+
}
|
|
4388
|
+
export interface ICalendarDayDto {
|
|
4389
|
+
date?: Date;
|
|
4390
|
+
dayCapacity?: CalendarDayCapacityDto;
|
|
4391
|
+
capacityHours?: number;
|
|
4392
|
+
companyId?: string | null;
|
|
4393
|
+
}
|
|
4394
|
+
export type CalendarDayCapacityDto = "WorkingDay" | "HalfDay" | "Holiday";
|
|
4395
|
+
export declare class CalendarCapacityDto implements ICalendarCapacityDto {
|
|
4396
|
+
date?: Date;
|
|
4397
|
+
dayCapacity?: CalendarDayCapacityDto;
|
|
4398
|
+
constructor(data?: ICalendarCapacityDto);
|
|
4399
|
+
init(_data?: any): void;
|
|
4400
|
+
static fromJS(data: any): CalendarCapacityDto;
|
|
4401
|
+
toJSON(data?: any): any;
|
|
4402
|
+
}
|
|
4403
|
+
export interface ICalendarCapacityDto {
|
|
4404
|
+
date?: Date;
|
|
4405
|
+
dayCapacity?: CalendarDayCapacityDto;
|
|
4406
|
+
}
|
|
4407
|
+
export declare class UpdateCalendarCapacity implements IUpdateCalendarCapacity {
|
|
4408
|
+
date?: Date;
|
|
4409
|
+
dayCapacity?: CalendarDayCapacityDto;
|
|
4410
|
+
constructor(data?: IUpdateCalendarCapacity);
|
|
4411
|
+
init(_data?: any): void;
|
|
4412
|
+
static fromJS(data: any): UpdateCalendarCapacity;
|
|
4413
|
+
toJSON(data?: any): any;
|
|
4414
|
+
}
|
|
4415
|
+
export interface IUpdateCalendarCapacity {
|
|
4416
|
+
date?: Date;
|
|
4417
|
+
dayCapacity?: CalendarDayCapacityDto;
|
|
4418
|
+
}
|
|
4419
|
+
export declare class CalendarSettingsDto implements ICalendarSettingsDto {
|
|
4420
|
+
defaultHoursPerWeekday?: {
|
|
4421
|
+
[key in DayOfWeek]?: number;
|
|
4422
|
+
};
|
|
4423
|
+
halfDayHours?: number;
|
|
4424
|
+
holidayHours?: number;
|
|
4425
|
+
constructor(data?: ICalendarSettingsDto);
|
|
4426
|
+
init(_data?: any): void;
|
|
4427
|
+
static fromJS(data: any): CalendarSettingsDto;
|
|
4428
|
+
toJSON(data?: any): any;
|
|
4429
|
+
}
|
|
4430
|
+
export interface ICalendarSettingsDto {
|
|
4431
|
+
defaultHoursPerWeekday?: {
|
|
4432
|
+
[key in DayOfWeek]?: number;
|
|
4433
|
+
};
|
|
4434
|
+
halfDayHours?: number;
|
|
4435
|
+
holidayHours?: number;
|
|
4436
|
+
}
|
|
4437
|
+
export type DayOfWeek = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
4438
|
+
export declare class UpdateCalendarSettingsCommand implements IUpdateCalendarSettingsCommand {
|
|
4439
|
+
defaultHoursPerWeekday?: {
|
|
4440
|
+
[key in DayOfWeek]?: number;
|
|
4441
|
+
};
|
|
4442
|
+
halfDayHours?: number;
|
|
4443
|
+
holidayHours?: number;
|
|
4444
|
+
constructor(data?: IUpdateCalendarSettingsCommand);
|
|
4445
|
+
init(_data?: any): void;
|
|
4446
|
+
static fromJS(data: any): UpdateCalendarSettingsCommand;
|
|
4447
|
+
toJSON(data?: any): any;
|
|
4448
|
+
}
|
|
4449
|
+
export interface IUpdateCalendarSettingsCommand {
|
|
4450
|
+
defaultHoursPerWeekday?: {
|
|
4451
|
+
[key in DayOfWeek]?: number;
|
|
4452
|
+
};
|
|
4453
|
+
halfDayHours?: number;
|
|
4454
|
+
holidayHours?: number;
|
|
4455
|
+
}
|
|
4456
|
+
export declare class ResourceKpiDto implements IResourceKpiDto {
|
|
4457
|
+
uptimeToNow: number;
|
|
4458
|
+
uptimeToNowPreviousPeriod: number;
|
|
4459
|
+
averageUpTime: number;
|
|
4460
|
+
uptimeTargetReached: number;
|
|
4461
|
+
days: ResourceDayKpiDto[];
|
|
4462
|
+
constructor(data?: IResourceKpiDto);
|
|
4463
|
+
init(_data?: any): void;
|
|
4464
|
+
static fromJS(data: any): ResourceKpiDto;
|
|
4465
|
+
toJSON(data?: any): any;
|
|
4466
|
+
}
|
|
4467
|
+
export interface IResourceKpiDto {
|
|
4468
|
+
uptimeToNow: number;
|
|
4469
|
+
uptimeToNowPreviousPeriod: number;
|
|
4470
|
+
averageUpTime: number;
|
|
4471
|
+
uptimeTargetReached: number;
|
|
4472
|
+
days: ResourceDayKpiDto[];
|
|
4473
|
+
}
|
|
4474
|
+
export declare class ResourceDayKpiDto implements IResourceDayKpiDto {
|
|
4475
|
+
date: Date;
|
|
4476
|
+
uptime: number;
|
|
4477
|
+
utilizationGoal: number;
|
|
4478
|
+
constructor(data?: IResourceDayKpiDto);
|
|
4479
|
+
init(_data?: any): void;
|
|
4480
|
+
static fromJS(data: any): ResourceDayKpiDto;
|
|
4481
|
+
toJSON(data?: any): any;
|
|
4482
|
+
}
|
|
4483
|
+
export interface IResourceDayKpiDto {
|
|
4484
|
+
date: Date;
|
|
4485
|
+
uptime: number;
|
|
4486
|
+
utilizationGoal: number;
|
|
4487
|
+
}
|
|
4488
|
+
export declare class ResourceDailyUptimeDto implements IResourceDailyUptimeDto {
|
|
4489
|
+
date?: Date;
|
|
4490
|
+
historicUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
4491
|
+
todayUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
4492
|
+
constructor(data?: IResourceDailyUptimeDto);
|
|
4493
|
+
init(_data?: any): void;
|
|
4494
|
+
static fromJS(data: any): ResourceDailyUptimeDto;
|
|
4495
|
+
toJSON(data?: any): any;
|
|
4496
|
+
}
|
|
4497
|
+
export interface IResourceDailyUptimeDto {
|
|
4498
|
+
date?: Date;
|
|
4499
|
+
historicUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
4500
|
+
todayUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
4501
|
+
}
|
|
4502
|
+
export declare class ResourceDailyUptimePointDto implements IResourceDailyUptimePointDto {
|
|
4503
|
+
date?: Date;
|
|
4504
|
+
uptime?: number;
|
|
4505
|
+
constructor(data?: IResourceDailyUptimePointDto);
|
|
4506
|
+
init(_data?: any): void;
|
|
4507
|
+
static fromJS(data: any): ResourceDailyUptimePointDto;
|
|
4508
|
+
toJSON(data?: any): any;
|
|
4509
|
+
}
|
|
4510
|
+
export interface IResourceDailyUptimePointDto {
|
|
4511
|
+
date?: Date;
|
|
4512
|
+
uptime?: number;
|
|
4513
|
+
}
|
|
4514
|
+
export declare class UptimeTrendDataPointDto implements IUptimeTrendDataPointDto {
|
|
4515
|
+
timestamp: Date;
|
|
4516
|
+
uptime: number;
|
|
4517
|
+
constructor(data?: IUptimeTrendDataPointDto);
|
|
4518
|
+
init(_data?: any): void;
|
|
4519
|
+
static fromJS(data: any): UptimeTrendDataPointDto;
|
|
4520
|
+
toJSON(data?: any): any;
|
|
4521
|
+
}
|
|
4522
|
+
export interface IUptimeTrendDataPointDto {
|
|
4523
|
+
timestamp: Date;
|
|
4524
|
+
uptime: number;
|
|
4525
|
+
}
|
|
4263
4526
|
export declare class ApplicationResourcesResourceDto implements IApplicationResourcesResourceDto {
|
|
4264
4527
|
id: number;
|
|
4265
4528
|
externalId: string;
|
|
@@ -5075,6 +5338,52 @@ export interface INamedCompanyUtilizationDatapointListDto extends ICompanyUtiliz
|
|
|
5075
5338
|
companyId: string;
|
|
5076
5339
|
companyName: string;
|
|
5077
5340
|
}
|
|
5341
|
+
export declare class CompanyResourceUtilizationDto implements ICompanyResourceUtilizationDto {
|
|
5342
|
+
utilizationType: UtilizationTypeDto;
|
|
5343
|
+
companyUtilization: UtilizationDetailsV2Dto;
|
|
5344
|
+
groups: ResourceGroupUtilizationV2Dto[];
|
|
5345
|
+
ungroupedResources: ResourceUtilizationV3Dto[];
|
|
5346
|
+
constructor(data?: ICompanyResourceUtilizationDto);
|
|
5347
|
+
init(_data?: any): void;
|
|
5348
|
+
static fromJS(data: any): CompanyResourceUtilizationDto;
|
|
5349
|
+
toJSON(data?: any): any;
|
|
5350
|
+
}
|
|
5351
|
+
export interface ICompanyResourceUtilizationDto {
|
|
5352
|
+
utilizationType: UtilizationTypeDto;
|
|
5353
|
+
companyUtilization: UtilizationDetailsV2Dto;
|
|
5354
|
+
groups: ResourceGroupUtilizationV2Dto[];
|
|
5355
|
+
ungroupedResources: ResourceUtilizationV3Dto[];
|
|
5356
|
+
}
|
|
5357
|
+
export declare class ResourceGroupUtilizationV2Dto implements IResourceGroupUtilizationV2Dto {
|
|
5358
|
+
name: string;
|
|
5359
|
+
utilization: UtilizationDetailsV2Dto;
|
|
5360
|
+
resources: ResourceUtilizationV3Dto[];
|
|
5361
|
+
constructor(data?: IResourceGroupUtilizationV2Dto);
|
|
5362
|
+
init(_data?: any): void;
|
|
5363
|
+
static fromJS(data: any): ResourceGroupUtilizationV2Dto;
|
|
5364
|
+
toJSON(data?: any): any;
|
|
5365
|
+
}
|
|
5366
|
+
export interface IResourceGroupUtilizationV2Dto {
|
|
5367
|
+
name: string;
|
|
5368
|
+
utilization: UtilizationDetailsV2Dto;
|
|
5369
|
+
resources: ResourceUtilizationV3Dto[];
|
|
5370
|
+
}
|
|
5371
|
+
export declare class ResourceUtilizationV3Dto implements IResourceUtilizationV3Dto {
|
|
5372
|
+
id?: number;
|
|
5373
|
+
name: string;
|
|
5374
|
+
description?: string | null;
|
|
5375
|
+
utilization: UtilizationDetailsV2Dto;
|
|
5376
|
+
constructor(data?: IResourceUtilizationV3Dto);
|
|
5377
|
+
init(_data?: any): void;
|
|
5378
|
+
static fromJS(data: any): ResourceUtilizationV3Dto;
|
|
5379
|
+
toJSON(data?: any): any;
|
|
5380
|
+
}
|
|
5381
|
+
export interface IResourceUtilizationV3Dto {
|
|
5382
|
+
id?: number;
|
|
5383
|
+
name: string;
|
|
5384
|
+
description?: string | null;
|
|
5385
|
+
utilization: UtilizationDetailsV2Dto;
|
|
5386
|
+
}
|
|
5078
5387
|
export declare class ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto implements IResourceUtilizationDatapointListDto {
|
|
5079
5388
|
externalId: string;
|
|
5080
5389
|
id: number;
|
|
@@ -7006,6 +7315,20 @@ export interface IDowntimeReasonCountDto {
|
|
|
7006
7315
|
count: number;
|
|
7007
7316
|
reason: string;
|
|
7008
7317
|
}
|
|
7318
|
+
export declare class ListTopDowntimeReasonsForResourcesRequest implements IListTopDowntimeReasonsForResourcesRequest {
|
|
7319
|
+
startTime?: Date | null;
|
|
7320
|
+
endTime?: Date | null;
|
|
7321
|
+
resourceExternalIds?: string[] | null;
|
|
7322
|
+
constructor(data?: IListTopDowntimeReasonsForResourcesRequest);
|
|
7323
|
+
init(_data?: any): void;
|
|
7324
|
+
static fromJS(data: any): ListTopDowntimeReasonsForResourcesRequest;
|
|
7325
|
+
toJSON(data?: any): any;
|
|
7326
|
+
}
|
|
7327
|
+
export interface IListTopDowntimeReasonsForResourcesRequest {
|
|
7328
|
+
startTime?: Date | null;
|
|
7329
|
+
endTime?: Date | null;
|
|
7330
|
+
resourceExternalIds?: string[] | null;
|
|
7331
|
+
}
|
|
7009
7332
|
export declare class DowntimeReasonsReportDto implements IDowntimeReasonsReportDto {
|
|
7010
7333
|
companyId?: string | null;
|
|
7011
7334
|
totalDowntimeDurationMilliseconds?: number;
|
|
@@ -7154,84 +7477,6 @@ export interface IUpdateMachinesCapacity {
|
|
|
7154
7477
|
utilizationPercent?: number | null;
|
|
7155
7478
|
capacity?: MachineCapacitySettingsDto[] | null;
|
|
7156
7479
|
}
|
|
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
7480
|
export declare class MachineKpiDto implements IMachineKpiDto {
|
|
7236
7481
|
uptimeToNow: number;
|
|
7237
7482
|
uptimeToNowPreviousPeriod: number;
|
|
@@ -7290,18 +7535,6 @@ export interface IMachineDailyUptimePointDto {
|
|
|
7290
7535
|
date?: Date;
|
|
7291
7536
|
uptime?: number;
|
|
7292
7537
|
}
|
|
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
7538
|
export declare class MachineGroupDto implements IMachineGroupDto {
|
|
7306
7539
|
id: string;
|
|
7307
7540
|
name: string;
|
|
@@ -14219,7 +14452,6 @@ export interface IValidationRuleDto {
|
|
|
14219
14452
|
export declare class SaveValueResponseDto implements ISaveValueResponseDto {
|
|
14220
14453
|
elementCompleted: boolean;
|
|
14221
14454
|
warning?: string | null;
|
|
14222
|
-
informationText?: string | null;
|
|
14223
14455
|
isOutsideTolerances: boolean;
|
|
14224
14456
|
isCloseToTolerances: boolean;
|
|
14225
14457
|
tools: MeasurementFormToolValueDto[];
|
|
@@ -14231,7 +14463,6 @@ export declare class SaveValueResponseDto implements ISaveValueResponseDto {
|
|
|
14231
14463
|
export interface ISaveValueResponseDto {
|
|
14232
14464
|
elementCompleted: boolean;
|
|
14233
14465
|
warning?: string | null;
|
|
14234
|
-
informationText?: string | null;
|
|
14235
14466
|
isOutsideTolerances: boolean;
|
|
14236
14467
|
isCloseToTolerances: boolean;
|
|
14237
14468
|
tools: MeasurementFormToolValueDto[];
|