@ignos/api-client 20260209.45.1-alpha → 20260212.46.1
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 +1419 -193
- package/lib/ignosportal-api.js +13552 -8566
- package/package.json +1 -1
- package/src/ignosportal-api.ts +19374 -13355
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -150,6 +150,80 @@ export declare class PresentationClient extends AuthorizedApiBase implements IPr
|
|
|
150
150
|
getComponentSettings(componentId: string): Promise<ComponentSettingsDto>;
|
|
151
151
|
protected processGetComponentSettings(response: Response): Promise<ComponentSettingsDto>;
|
|
152
152
|
}
|
|
153
|
+
export interface IMachineUtilizationClient {
|
|
154
|
+
/**
|
|
155
|
+
* Get machine utilization data. Historic utilizations start from now, whereas the start for current utilization is
|
|
156
|
+
calculated based on startTimeToday or utcOffset. An UTC offset is
|
|
157
|
+
obtained either from startTimeToday, utcOffset or the server's local
|
|
158
|
+
time zone. The current utilization is calculated starting from the start of the current date offset from UTC
|
|
159
|
+
by the offset used. Pass in utcOffset to avoid problems relating to clock drift between
|
|
160
|
+
client and server
|
|
161
|
+
* @param assetId (optional)
|
|
162
|
+
* @param favorites (optional)
|
|
163
|
+
* @param startTimeToday (optional) UTC offset for start of today's utilization is extracted from this value
|
|
164
|
+
* @param utcOffset (optional) Explicit UTC offset for start of today's utilization
|
|
165
|
+
*/
|
|
166
|
+
getMachineUtilizations(assetId: number | null | undefined, favorites: boolean | undefined, startTimeToday: Date | null | undefined, utcOffset: number | null | undefined): Promise<UtilizationListDto>;
|
|
167
|
+
getMachineUtilization(id: number, startTime: Date | undefined, endTime: Date | null | undefined): Promise<UtilizationDetailsDto>;
|
|
168
|
+
/**
|
|
169
|
+
* @param startTime (optional)
|
|
170
|
+
* @param endTime (optional)
|
|
171
|
+
* @deprecated
|
|
172
|
+
*/
|
|
173
|
+
getUtilizationDetailsForMachine(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
174
|
+
getResourceTimelines(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined, filter: TimelineFilterDto | undefined): Promise<TimelinesDto>;
|
|
175
|
+
listMachineStates(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStateDatapoint[]>;
|
|
176
|
+
getMachineStatesSummary(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
177
|
+
listMachineUptimesToday(request: ListMachineUptimesTodayRequest): Promise<MachineUptimesAggregateDto>;
|
|
178
|
+
listPowerOnUtilizationDatapoints(id: number | null | undefined, externalId: string | null | undefined, nDays: number | null | undefined, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<PowerOnUtilizationList>;
|
|
179
|
+
getFactoryUtilization(): Promise<PowerOnUtilizationDto>;
|
|
180
|
+
getProgramTimeline(id: string, startTime: Date | undefined, endTime: Date | undefined): Promise<ProgramDatapoint[]>;
|
|
181
|
+
}
|
|
182
|
+
export declare class MachineUtilizationClient extends AuthorizedApiBase implements IMachineUtilizationClient {
|
|
183
|
+
private http;
|
|
184
|
+
private baseUrl;
|
|
185
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
186
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
187
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
188
|
+
});
|
|
189
|
+
/**
|
|
190
|
+
* Get machine utilization data. Historic utilizations start from now, whereas the start for current utilization is
|
|
191
|
+
calculated based on startTimeToday or utcOffset. An UTC offset is
|
|
192
|
+
obtained either from startTimeToday, utcOffset or the server's local
|
|
193
|
+
time zone. The current utilization is calculated starting from the start of the current date offset from UTC
|
|
194
|
+
by the offset used. Pass in utcOffset to avoid problems relating to clock drift between
|
|
195
|
+
client and server
|
|
196
|
+
* @param assetId (optional)
|
|
197
|
+
* @param favorites (optional)
|
|
198
|
+
* @param startTimeToday (optional) UTC offset for start of today's utilization is extracted from this value
|
|
199
|
+
* @param utcOffset (optional) Explicit UTC offset for start of today's utilization
|
|
200
|
+
*/
|
|
201
|
+
getMachineUtilizations(assetId: number | null | undefined, favorites: boolean | undefined, startTimeToday: Date | null | undefined, utcOffset: number | null | undefined): Promise<UtilizationListDto>;
|
|
202
|
+
protected processGetMachineUtilizations(response: Response): Promise<UtilizationListDto>;
|
|
203
|
+
getMachineUtilization(id: number, startTime: Date | undefined, endTime: Date | null | undefined): Promise<UtilizationDetailsDto>;
|
|
204
|
+
protected processGetMachineUtilization(response: Response): Promise<UtilizationDetailsDto>;
|
|
205
|
+
/**
|
|
206
|
+
* @param startTime (optional)
|
|
207
|
+
* @param endTime (optional)
|
|
208
|
+
* @deprecated
|
|
209
|
+
*/
|
|
210
|
+
getUtilizationDetailsForMachine(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
211
|
+
protected processGetUtilizationDetailsForMachine(response: Response): Promise<MachineStatesSummaryDto>;
|
|
212
|
+
getResourceTimelines(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined, filter: TimelineFilterDto | undefined): Promise<TimelinesDto>;
|
|
213
|
+
protected processGetResourceTimelines(response: Response): Promise<TimelinesDto>;
|
|
214
|
+
listMachineStates(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStateDatapoint[]>;
|
|
215
|
+
protected processListMachineStates(response: Response): Promise<MachineStateDatapoint[]>;
|
|
216
|
+
getMachineStatesSummary(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
217
|
+
protected processGetMachineStatesSummary(response: Response): Promise<MachineStatesSummaryDto>;
|
|
218
|
+
listMachineUptimesToday(request: ListMachineUptimesTodayRequest): Promise<MachineUptimesAggregateDto>;
|
|
219
|
+
protected processListMachineUptimesToday(response: Response): Promise<MachineUptimesAggregateDto>;
|
|
220
|
+
listPowerOnUtilizationDatapoints(id: number | null | undefined, externalId: string | null | undefined, nDays: number | null | undefined, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<PowerOnUtilizationList>;
|
|
221
|
+
protected processListPowerOnUtilizationDatapoints(response: Response): Promise<PowerOnUtilizationList>;
|
|
222
|
+
getFactoryUtilization(): Promise<PowerOnUtilizationDto>;
|
|
223
|
+
protected processGetFactoryUtilization(response: Response): Promise<PowerOnUtilizationDto>;
|
|
224
|
+
getProgramTimeline(id: string, startTime: Date | undefined, endTime: Date | undefined): Promise<ProgramDatapoint[]>;
|
|
225
|
+
protected processGetProgramTimeline(response: Response): Promise<ProgramDatapoint[]>;
|
|
226
|
+
}
|
|
153
227
|
export interface IResourceUtilizationClient {
|
|
154
228
|
/**
|
|
155
229
|
* Get resource utilization data. Historic utilizations start from now, whereas the start for current utilization is
|
|
@@ -529,6 +603,10 @@ export interface IResourcesClient {
|
|
|
529
603
|
createResourceWithResource(request: CreateResourceWithMachine): Promise<void>;
|
|
530
604
|
createResourceInResourceGroup(request: CreateResourceInResourceGroup): Promise<void>;
|
|
531
605
|
deleteMachine(id: number): Promise<void>;
|
|
606
|
+
/**
|
|
607
|
+
* @deprecated
|
|
608
|
+
*/
|
|
609
|
+
listAllMachines(): Promise<MachineDto[]>;
|
|
532
610
|
listAllResources(): Promise<ApplicationResourcesResourceDto[]>;
|
|
533
611
|
}
|
|
534
612
|
export declare class ResourcesClient extends AuthorizedApiBase implements IResourcesClient {
|
|
@@ -578,10 +656,23 @@ export declare class ResourcesClient extends AuthorizedApiBase implements IResou
|
|
|
578
656
|
protected processCreateResourceInResourceGroup(response: Response): Promise<void>;
|
|
579
657
|
deleteMachine(id: number): Promise<void>;
|
|
580
658
|
protected processDeleteMachine(response: Response): Promise<void>;
|
|
659
|
+
/**
|
|
660
|
+
* @deprecated
|
|
661
|
+
*/
|
|
662
|
+
listAllMachines(): Promise<MachineDto[]>;
|
|
663
|
+
protected processListAllMachines(response: Response): Promise<MachineDto[]>;
|
|
581
664
|
listAllResources(): Promise<ApplicationResourcesResourceDto[]>;
|
|
582
665
|
protected processListAllResources(response: Response): Promise<ApplicationResourcesResourceDto[]>;
|
|
583
666
|
}
|
|
584
667
|
export interface IPulseClient {
|
|
668
|
+
/**
|
|
669
|
+
* @deprecated
|
|
670
|
+
*/
|
|
671
|
+
getPulseSettings(): Promise<PulseSettingsDto>;
|
|
672
|
+
/**
|
|
673
|
+
* @deprecated
|
|
674
|
+
*/
|
|
675
|
+
updatePulseSettings(request: UpdatePulseSettings): Promise<PulseSettingsDto>;
|
|
585
676
|
getPulseSettingsResource(): Promise<PulseSettingsResourceDto>;
|
|
586
677
|
updatePulseSettingsResource(request: UpdatePulseSettingsResource): Promise<PulseSettingsResourceDto>;
|
|
587
678
|
}
|
|
@@ -592,12 +683,64 @@ export declare class PulseClient extends AuthorizedApiBase implements IPulseClie
|
|
|
592
683
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
593
684
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
594
685
|
});
|
|
686
|
+
/**
|
|
687
|
+
* @deprecated
|
|
688
|
+
*/
|
|
689
|
+
getPulseSettings(): Promise<PulseSettingsDto>;
|
|
690
|
+
protected processGetPulseSettings(response: Response): Promise<PulseSettingsDto>;
|
|
691
|
+
/**
|
|
692
|
+
* @deprecated
|
|
693
|
+
*/
|
|
694
|
+
updatePulseSettings(request: UpdatePulseSettings): Promise<PulseSettingsDto>;
|
|
695
|
+
protected processUpdatePulseSettings(response: Response): Promise<PulseSettingsDto>;
|
|
595
696
|
getPulseSettingsResource(): Promise<PulseSettingsResourceDto>;
|
|
596
697
|
protected processGetPulseSettingsResource(response: Response): Promise<PulseSettingsResourceDto>;
|
|
597
698
|
updatePulseSettingsResource(request: UpdatePulseSettingsResource): Promise<PulseSettingsResourceDto>;
|
|
598
699
|
protected processUpdatePulseSettingsResource(response: Response): Promise<PulseSettingsResourceDto>;
|
|
599
700
|
}
|
|
600
701
|
export interface IUtilizationClient {
|
|
702
|
+
/**
|
|
703
|
+
* @param utilizationType (optional)
|
|
704
|
+
* @param startTime (optional)
|
|
705
|
+
* @param endTime (optional)
|
|
706
|
+
* @param ianaTimeZone (optional)
|
|
707
|
+
* @deprecated
|
|
708
|
+
*/
|
|
709
|
+
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
|
|
710
|
+
/**
|
|
711
|
+
* @param utilizationType (optional)
|
|
712
|
+
* @param startTime (optional)
|
|
713
|
+
* @param endTime (optional)
|
|
714
|
+
* @param ianaTimeZone (optional)
|
|
715
|
+
* @deprecated
|
|
716
|
+
*/
|
|
717
|
+
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
|
|
718
|
+
/**
|
|
719
|
+
* @param utilizationType (optional)
|
|
720
|
+
* @param startTime (optional)
|
|
721
|
+
* @param endTime (optional)
|
|
722
|
+
* @param ianaTimeZone (optional)
|
|
723
|
+
* @param assetId (optional)
|
|
724
|
+
* @param assetExternalId (optional)
|
|
725
|
+
* @deprecated
|
|
726
|
+
*/
|
|
727
|
+
getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<MachineUtilizationDatapointListDto>;
|
|
728
|
+
/**
|
|
729
|
+
* @param utilizationType (optional)
|
|
730
|
+
* @param startTime (optional)
|
|
731
|
+
* @param endTime (optional)
|
|
732
|
+
* @param ianaTimeZone (optional)
|
|
733
|
+
* @deprecated
|
|
734
|
+
*/
|
|
735
|
+
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDatapointListDto>;
|
|
736
|
+
/**
|
|
737
|
+
* @param utilizationType (optional)
|
|
738
|
+
* @param startTime (optional)
|
|
739
|
+
* @param endTime (optional)
|
|
740
|
+
* @param ianaTimeZone (optional)
|
|
741
|
+
* @deprecated
|
|
742
|
+
*/
|
|
743
|
+
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
601
744
|
getCompanyResourceUtilization(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDto>;
|
|
602
745
|
getCrossCompanyResourceUtilization(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyResourceUtilizationDto>;
|
|
603
746
|
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>;
|
|
@@ -611,6 +754,53 @@ export declare class UtilizationClient extends AuthorizedApiBase implements IUti
|
|
|
611
754
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
612
755
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
613
756
|
});
|
|
757
|
+
/**
|
|
758
|
+
* @param utilizationType (optional)
|
|
759
|
+
* @param startTime (optional)
|
|
760
|
+
* @param endTime (optional)
|
|
761
|
+
* @param ianaTimeZone (optional)
|
|
762
|
+
* @deprecated
|
|
763
|
+
*/
|
|
764
|
+
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
|
|
765
|
+
protected processGetCompanyUtilization(response: Response): Promise<CompanyUtilizationDto>;
|
|
766
|
+
/**
|
|
767
|
+
* @param utilizationType (optional)
|
|
768
|
+
* @param startTime (optional)
|
|
769
|
+
* @param endTime (optional)
|
|
770
|
+
* @param ianaTimeZone (optional)
|
|
771
|
+
* @deprecated
|
|
772
|
+
*/
|
|
773
|
+
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
|
|
774
|
+
protected processGetCrossCompanyUtilization(response: Response): Promise<CrossCompanyUtilizationDto>;
|
|
775
|
+
/**
|
|
776
|
+
* @param utilizationType (optional)
|
|
777
|
+
* @param startTime (optional)
|
|
778
|
+
* @param endTime (optional)
|
|
779
|
+
* @param ianaTimeZone (optional)
|
|
780
|
+
* @param assetId (optional)
|
|
781
|
+
* @param assetExternalId (optional)
|
|
782
|
+
* @deprecated
|
|
783
|
+
*/
|
|
784
|
+
getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<MachineUtilizationDatapointListDto>;
|
|
785
|
+
protected processGetUtilizationDatapoints(response: Response): Promise<MachineUtilizationDatapointListDto>;
|
|
786
|
+
/**
|
|
787
|
+
* @param utilizationType (optional)
|
|
788
|
+
* @param startTime (optional)
|
|
789
|
+
* @param endTime (optional)
|
|
790
|
+
* @param ianaTimeZone (optional)
|
|
791
|
+
* @deprecated
|
|
792
|
+
*/
|
|
793
|
+
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDatapointListDto>;
|
|
794
|
+
protected processGetCompanyUtilizationDatapoints(response: Response): Promise<CompanyUtilizationDatapointListDto>;
|
|
795
|
+
/**
|
|
796
|
+
* @param utilizationType (optional)
|
|
797
|
+
* @param startTime (optional)
|
|
798
|
+
* @param endTime (optional)
|
|
799
|
+
* @param ianaTimeZone (optional)
|
|
800
|
+
* @deprecated
|
|
801
|
+
*/
|
|
802
|
+
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
803
|
+
protected processGetCrossCompanyUtilizationDatapoints(response: Response): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
614
804
|
getCompanyResourceUtilization(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDto>;
|
|
615
805
|
protected processGetCompanyResourceUtilization(response: Response): Promise<CompanyResourceUtilizationDto>;
|
|
616
806
|
getCrossCompanyResourceUtilization(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyResourceUtilizationDto>;
|
|
@@ -944,8 +1134,157 @@ export declare class MeasuringToolsClient extends AuthorizedApiBase implements I
|
|
|
944
1134
|
getMeasuringToolSettings(): Promise<MeasuringToolSettingsDto>;
|
|
945
1135
|
protected processGetMeasuringToolSettings(response: Response): Promise<MeasuringToolSettingsDto>;
|
|
946
1136
|
}
|
|
1137
|
+
export interface IDowntimeReasonsAdminClient {
|
|
1138
|
+
listDowntimeReasons(): Promise<DowntimeReasonDto[]>;
|
|
1139
|
+
createDowntimeReason(request: CreateDowntimeReason): Promise<DowntimeReasonDto>;
|
|
1140
|
+
updateDowntimeReason(id: string, request: UpdateDowntimeReasonRequest): Promise<DowntimeReasonDto>;
|
|
1141
|
+
deleteDowntimeReason(id: string): Promise<void>;
|
|
1142
|
+
listMachineTypes(): Promise<MachineTypeDto[]>;
|
|
1143
|
+
listParentTopics(): Promise<ParentTopicDto[]>;
|
|
1144
|
+
createParentTopic(request: CreateParentTopicRequest): Promise<ParentTopicDto>;
|
|
1145
|
+
updateParentTopic(id: string, request: UpdateParentTopicRequest): Promise<ParentTopicDto>;
|
|
1146
|
+
deleteParentTopic(id: string): Promise<void>;
|
|
1147
|
+
}
|
|
1148
|
+
export declare class DowntimeReasonsAdminClient extends AuthorizedApiBase implements IDowntimeReasonsAdminClient {
|
|
1149
|
+
private http;
|
|
1150
|
+
private baseUrl;
|
|
1151
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1152
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1153
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1154
|
+
});
|
|
1155
|
+
listDowntimeReasons(): Promise<DowntimeReasonDto[]>;
|
|
1156
|
+
protected processListDowntimeReasons(response: Response): Promise<DowntimeReasonDto[]>;
|
|
1157
|
+
createDowntimeReason(request: CreateDowntimeReason): Promise<DowntimeReasonDto>;
|
|
1158
|
+
protected processCreateDowntimeReason(response: Response): Promise<DowntimeReasonDto>;
|
|
1159
|
+
updateDowntimeReason(id: string, request: UpdateDowntimeReasonRequest): Promise<DowntimeReasonDto>;
|
|
1160
|
+
protected processUpdateDowntimeReason(response: Response): Promise<DowntimeReasonDto>;
|
|
1161
|
+
deleteDowntimeReason(id: string): Promise<void>;
|
|
1162
|
+
protected processDeleteDowntimeReason(response: Response): Promise<void>;
|
|
1163
|
+
listMachineTypes(): Promise<MachineTypeDto[]>;
|
|
1164
|
+
protected processListMachineTypes(response: Response): Promise<MachineTypeDto[]>;
|
|
1165
|
+
listParentTopics(): Promise<ParentTopicDto[]>;
|
|
1166
|
+
protected processListParentTopics(response: Response): Promise<ParentTopicDto[]>;
|
|
1167
|
+
createParentTopic(request: CreateParentTopicRequest): Promise<ParentTopicDto>;
|
|
1168
|
+
protected processCreateParentTopic(response: Response): Promise<ParentTopicDto>;
|
|
1169
|
+
updateParentTopic(id: string, request: UpdateParentTopicRequest): Promise<ParentTopicDto>;
|
|
1170
|
+
protected processUpdateParentTopic(response: Response): Promise<ParentTopicDto>;
|
|
1171
|
+
deleteParentTopic(id: string): Promise<void>;
|
|
1172
|
+
protected processDeleteParentTopic(response: Response): Promise<void>;
|
|
1173
|
+
}
|
|
1174
|
+
export interface IDowntimeReasonsClient {
|
|
1175
|
+
createDowntimePeriodReason(request: CreateDowntimePeriodReason): Promise<DowntimePeriodReasonDto>;
|
|
1176
|
+
updateDowntimePeriodReason(id: number, request: UpdateDowntimePeriodReasonRequest): Promise<DowntimePeriodReasonDto>;
|
|
1177
|
+
deleteDowntimeReason(id: number): Promise<void>;
|
|
1178
|
+
listDowntimeReasonsForMachine(id: number): Promise<DowntimeReasonDto[]>;
|
|
1179
|
+
listDowntimeReasonsHierarchyForMachine(id: number): Promise<ParentTopicDto[]>;
|
|
1180
|
+
listActiveDowntimeReasonsForMachine(id: number): Promise<DowntimePeriodReasonDto[]>;
|
|
1181
|
+
listTopDowntimeReasons(start: Date | null | undefined, end: Date | null | undefined): Promise<TopDowntimeReasonsDto>;
|
|
1182
|
+
listTopDowntimeReasonsForResources(request: ListTopDowntimeReasonsForResourcesRequest): Promise<TopDowntimeReasonsDto>;
|
|
1183
|
+
createReport(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportDto>;
|
|
1184
|
+
exportReportToCsv(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportCsvDto>;
|
|
1185
|
+
}
|
|
1186
|
+
export declare class DowntimeReasonsClient extends AuthorizedApiBase implements IDowntimeReasonsClient {
|
|
1187
|
+
private http;
|
|
1188
|
+
private baseUrl;
|
|
1189
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1190
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1191
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1192
|
+
});
|
|
1193
|
+
createDowntimePeriodReason(request: CreateDowntimePeriodReason): Promise<DowntimePeriodReasonDto>;
|
|
1194
|
+
protected processCreateDowntimePeriodReason(response: Response): Promise<DowntimePeriodReasonDto>;
|
|
1195
|
+
updateDowntimePeriodReason(id: number, request: UpdateDowntimePeriodReasonRequest): Promise<DowntimePeriodReasonDto>;
|
|
1196
|
+
protected processUpdateDowntimePeriodReason(response: Response): Promise<DowntimePeriodReasonDto>;
|
|
1197
|
+
deleteDowntimeReason(id: number): Promise<void>;
|
|
1198
|
+
protected processDeleteDowntimeReason(response: Response): Promise<void>;
|
|
1199
|
+
listDowntimeReasonsForMachine(id: number): Promise<DowntimeReasonDto[]>;
|
|
1200
|
+
protected processListDowntimeReasonsForMachine(response: Response): Promise<DowntimeReasonDto[]>;
|
|
1201
|
+
listDowntimeReasonsHierarchyForMachine(id: number): Promise<ParentTopicDto[]>;
|
|
1202
|
+
protected processListDowntimeReasonsHierarchyForMachine(response: Response): Promise<ParentTopicDto[]>;
|
|
1203
|
+
listActiveDowntimeReasonsForMachine(id: number): Promise<DowntimePeriodReasonDto[]>;
|
|
1204
|
+
protected processListActiveDowntimeReasonsForMachine(response: Response): Promise<DowntimePeriodReasonDto[]>;
|
|
1205
|
+
listTopDowntimeReasons(start: Date | null | undefined, end: Date | null | undefined): Promise<TopDowntimeReasonsDto>;
|
|
1206
|
+
protected processListTopDowntimeReasons(response: Response): Promise<TopDowntimeReasonsDto>;
|
|
1207
|
+
listTopDowntimeReasonsForResources(request: ListTopDowntimeReasonsForResourcesRequest): Promise<TopDowntimeReasonsDto>;
|
|
1208
|
+
protected processListTopDowntimeReasonsForResources(response: Response): Promise<TopDowntimeReasonsDto>;
|
|
1209
|
+
createReport(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportDto>;
|
|
1210
|
+
protected processCreateReport(response: Response): Promise<DowntimeReasonsReportDto>;
|
|
1211
|
+
exportReportToCsv(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportCsvDto>;
|
|
1212
|
+
protected processExportReportToCsv(response: Response): Promise<DowntimeReasonsReportCsvDto>;
|
|
1213
|
+
}
|
|
1214
|
+
export interface IKpiAdminClient {
|
|
1215
|
+
getMachineCapacityAdmin(): Promise<MachineGroupCapacityDto[]>;
|
|
1216
|
+
updateMachineCapacityAdmin(request: UpdateMachinesCapacity): Promise<MachineCapacityDto>;
|
|
1217
|
+
getCalendarCapacityAdmin(startDate: Date | undefined, endDate: Date | undefined): Promise<CalendarDayDto[]>;
|
|
1218
|
+
updateCalendarCapacityAdmin(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
|
|
1219
|
+
getCalendarSettings(): Promise<CalendarSettingsDto>;
|
|
1220
|
+
updateCalendarSettings(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
|
|
1221
|
+
}
|
|
1222
|
+
export declare class KpiAdminClient extends AuthorizedApiBase implements IKpiAdminClient {
|
|
1223
|
+
private http;
|
|
1224
|
+
private baseUrl;
|
|
1225
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1226
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1227
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1228
|
+
});
|
|
1229
|
+
getMachineCapacityAdmin(): Promise<MachineGroupCapacityDto[]>;
|
|
1230
|
+
protected processGetMachineCapacityAdmin(response: Response): Promise<MachineGroupCapacityDto[]>;
|
|
1231
|
+
updateMachineCapacityAdmin(request: UpdateMachinesCapacity): Promise<MachineCapacityDto>;
|
|
1232
|
+
protected processUpdateMachineCapacityAdmin(response: Response): Promise<MachineCapacityDto>;
|
|
1233
|
+
getCalendarCapacityAdmin(startDate: Date | undefined, endDate: Date | undefined): Promise<CalendarDayDto[]>;
|
|
1234
|
+
protected processGetCalendarCapacityAdmin(response: Response): Promise<CalendarDayDto[]>;
|
|
1235
|
+
updateCalendarCapacityAdmin(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
|
|
1236
|
+
protected processUpdateCalendarCapacityAdmin(response: Response): Promise<CalendarCapacityDto>;
|
|
1237
|
+
getCalendarSettings(): Promise<CalendarSettingsDto>;
|
|
1238
|
+
protected processGetCalendarSettings(response: Response): Promise<CalendarSettingsDto>;
|
|
1239
|
+
updateCalendarSettings(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
|
|
1240
|
+
protected processUpdateCalendarSettings(response: Response): Promise<CalendarSettingsDto>;
|
|
1241
|
+
}
|
|
1242
|
+
export interface IKpiClient {
|
|
1243
|
+
getMachineKpi(machineExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<MachineKpiDto>;
|
|
1244
|
+
getMachineDailyUptime(machineExternalId: string | undefined, date: Date | undefined, utcOffset: number | undefined): Promise<MachineDailyUptimeDto>;
|
|
1245
|
+
getUptimeNormalTrend(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
|
|
1246
|
+
}
|
|
1247
|
+
export declare class KpiClient extends AuthorizedApiBase implements IKpiClient {
|
|
1248
|
+
private http;
|
|
1249
|
+
private baseUrl;
|
|
1250
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1251
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1252
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1253
|
+
});
|
|
1254
|
+
getMachineKpi(machineExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<MachineKpiDto>;
|
|
1255
|
+
protected processGetMachineKpi(response: Response): Promise<MachineKpiDto>;
|
|
1256
|
+
getMachineDailyUptime(machineExternalId: string | undefined, date: Date | undefined, utcOffset: number | undefined): Promise<MachineDailyUptimeDto>;
|
|
1257
|
+
protected processGetMachineDailyUptime(response: Response): Promise<MachineDailyUptimeDto>;
|
|
1258
|
+
getUptimeNormalTrend(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
|
|
1259
|
+
protected processGetUptimeNormalTrend(response: Response): Promise<UptimeTrendDataPointDto[]>;
|
|
1260
|
+
}
|
|
947
1261
|
export interface IMachinesClient {
|
|
1262
|
+
listMachines(onlyConnectedMachines: boolean | undefined): Promise<MachineDto[]>;
|
|
1263
|
+
listMachineGroups(): Promise<MachineGroupDto[]>;
|
|
1264
|
+
createMachineGroup(request: CreateMachineGroup): Promise<CreateMachineGroupResponse>;
|
|
1265
|
+
updateMachineGroup(id: string, request: UpdateMachineGroup): Promise<void>;
|
|
1266
|
+
deleteMachineGroup(id: string): Promise<void>;
|
|
1267
|
+
listCurrentMachineStates(assetId: number | null | undefined): Promise<MachineStateListDto>;
|
|
1268
|
+
listMachineStates(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStateDatapoint[]>;
|
|
1269
|
+
listLastDowntimeMachineStates(id: number, endTime: Date | null | undefined, maxStates: number | null | undefined): Promise<DowntimeMachineStateDto[]>;
|
|
1270
|
+
getMachineStateWithDowntimePeriods(id: number, timestamp: number | undefined): Promise<DowntimeMachineStateDto>;
|
|
1271
|
+
getMachineStatesSummary(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
1272
|
+
listMachineErpData(): Promise<MachineErpDataListDto>;
|
|
1273
|
+
getMachineErpData(id: number): Promise<MachineErpDataDto>;
|
|
1274
|
+
/**
|
|
1275
|
+
* @param startTime (optional)
|
|
1276
|
+
* @param endTime (optional)
|
|
1277
|
+
* @deprecated
|
|
1278
|
+
*/
|
|
1279
|
+
getWorkOrderTimeline(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<WorkOrderDatapoint[]>;
|
|
1280
|
+
getMachineUtilizationSummary(): Promise<UtilizationSummaryDto>;
|
|
1281
|
+
getCrossCompanyUtilizationSummary(): Promise<CrossCompanyUtilizationSummaryDto>;
|
|
948
1282
|
listCurrentMachineOperators(machineExternalId: string | null | undefined, operatorNameQuery: string | null | undefined): Promise<OperatorAndMachineDto[]>;
|
|
1283
|
+
createMachineWithoutResource(request: CreateMachineWithoutResource): Promise<void>;
|
|
1284
|
+
createResourceWithoutMachine(request: CreateResourceWithoutMachine): Promise<void>;
|
|
1285
|
+
createResourceWithMachine(request: CreateResourceWithMachine): Promise<void>;
|
|
1286
|
+
createResourceInResourceGroup(request: CreateResourceInResourceGroup): Promise<void>;
|
|
1287
|
+
deleteMachine(id: number): Promise<void>;
|
|
949
1288
|
}
|
|
950
1289
|
export declare class MachinesClient extends AuthorizedApiBase implements IMachinesClient {
|
|
951
1290
|
private http;
|
|
@@ -954,8 +1293,53 @@ export declare class MachinesClient extends AuthorizedApiBase implements IMachin
|
|
|
954
1293
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
955
1294
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
956
1295
|
});
|
|
1296
|
+
listMachines(onlyConnectedMachines: boolean | undefined): Promise<MachineDto[]>;
|
|
1297
|
+
protected processListMachines(response: Response): Promise<MachineDto[]>;
|
|
1298
|
+
listMachineGroups(): Promise<MachineGroupDto[]>;
|
|
1299
|
+
protected processListMachineGroups(response: Response): Promise<MachineGroupDto[]>;
|
|
1300
|
+
createMachineGroup(request: CreateMachineGroup): Promise<CreateMachineGroupResponse>;
|
|
1301
|
+
protected processCreateMachineGroup(response: Response): Promise<CreateMachineGroupResponse>;
|
|
1302
|
+
updateMachineGroup(id: string, request: UpdateMachineGroup): Promise<void>;
|
|
1303
|
+
protected processUpdateMachineGroup(response: Response): Promise<void>;
|
|
1304
|
+
deleteMachineGroup(id: string): Promise<void>;
|
|
1305
|
+
protected processDeleteMachineGroup(response: Response): Promise<void>;
|
|
1306
|
+
listCurrentMachineStates(assetId: number | null | undefined): Promise<MachineStateListDto>;
|
|
1307
|
+
protected processListCurrentMachineStates(response: Response): Promise<MachineStateListDto>;
|
|
1308
|
+
listMachineStates(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStateDatapoint[]>;
|
|
1309
|
+
protected processListMachineStates(response: Response): Promise<MachineStateDatapoint[]>;
|
|
1310
|
+
listLastDowntimeMachineStates(id: number, endTime: Date | null | undefined, maxStates: number | null | undefined): Promise<DowntimeMachineStateDto[]>;
|
|
1311
|
+
protected processListLastDowntimeMachineStates(response: Response): Promise<DowntimeMachineStateDto[]>;
|
|
1312
|
+
getMachineStateWithDowntimePeriods(id: number, timestamp: number | undefined): Promise<DowntimeMachineStateDto>;
|
|
1313
|
+
protected processGetMachineStateWithDowntimePeriods(response: Response): Promise<DowntimeMachineStateDto>;
|
|
1314
|
+
getMachineStatesSummary(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
|
|
1315
|
+
protected processGetMachineStatesSummary(response: Response): Promise<MachineStatesSummaryDto>;
|
|
1316
|
+
listMachineErpData(): Promise<MachineErpDataListDto>;
|
|
1317
|
+
protected processListMachineErpData(response: Response): Promise<MachineErpDataListDto>;
|
|
1318
|
+
getMachineErpData(id: number): Promise<MachineErpDataDto>;
|
|
1319
|
+
protected processGetMachineErpData(response: Response): Promise<MachineErpDataDto>;
|
|
1320
|
+
/**
|
|
1321
|
+
* @param startTime (optional)
|
|
1322
|
+
* @param endTime (optional)
|
|
1323
|
+
* @deprecated
|
|
1324
|
+
*/
|
|
1325
|
+
getWorkOrderTimeline(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<WorkOrderDatapoint[]>;
|
|
1326
|
+
protected processGetWorkOrderTimeline(response: Response): Promise<WorkOrderDatapoint[]>;
|
|
1327
|
+
getMachineUtilizationSummary(): Promise<UtilizationSummaryDto>;
|
|
1328
|
+
protected processGetMachineUtilizationSummary(response: Response): Promise<UtilizationSummaryDto>;
|
|
1329
|
+
getCrossCompanyUtilizationSummary(): Promise<CrossCompanyUtilizationSummaryDto>;
|
|
1330
|
+
protected processGetCrossCompanyUtilizationSummary(response: Response): Promise<CrossCompanyUtilizationSummaryDto>;
|
|
957
1331
|
listCurrentMachineOperators(machineExternalId: string | null | undefined, operatorNameQuery: string | null | undefined): Promise<OperatorAndMachineDto[]>;
|
|
958
1332
|
protected processListCurrentMachineOperators(response: Response): Promise<OperatorAndMachineDto[]>;
|
|
1333
|
+
createMachineWithoutResource(request: CreateMachineWithoutResource): Promise<void>;
|
|
1334
|
+
protected processCreateMachineWithoutResource(response: Response): Promise<void>;
|
|
1335
|
+
createResourceWithoutMachine(request: CreateResourceWithoutMachine): Promise<void>;
|
|
1336
|
+
protected processCreateResourceWithoutMachine(response: Response): Promise<void>;
|
|
1337
|
+
createResourceWithMachine(request: CreateResourceWithMachine): Promise<void>;
|
|
1338
|
+
protected processCreateResourceWithMachine(response: Response): Promise<void>;
|
|
1339
|
+
createResourceInResourceGroup(request: CreateResourceInResourceGroup): Promise<void>;
|
|
1340
|
+
protected processCreateResourceInResourceGroup(response: Response): Promise<void>;
|
|
1341
|
+
deleteMachine(id: number): Promise<void>;
|
|
1342
|
+
protected processDeleteMachine(response: Response): Promise<void>;
|
|
959
1343
|
}
|
|
960
1344
|
export interface ILinksClient {
|
|
961
1345
|
getAllLinks(scope: string | null | undefined): Promise<LinkDto[]>;
|
|
@@ -1512,6 +1896,10 @@ export interface IAssetsClient {
|
|
|
1512
1896
|
getAssetById(id: number): Promise<AssetDto>;
|
|
1513
1897
|
updateAsset(id: number, request: UpdateAssetRequest): Promise<AssetDto>;
|
|
1514
1898
|
getAssetStructureById(id: number): Promise<AssetStructureDto>;
|
|
1899
|
+
/**
|
|
1900
|
+
* @deprecated
|
|
1901
|
+
*/
|
|
1902
|
+
listMachines(): Promise<MachineDto[]>;
|
|
1515
1903
|
}
|
|
1516
1904
|
export declare class AssetsClient extends AuthorizedApiBase implements IAssetsClient {
|
|
1517
1905
|
private http;
|
|
@@ -1532,6 +1920,11 @@ export declare class AssetsClient extends AuthorizedApiBase implements IAssetsCl
|
|
|
1532
1920
|
protected processUpdateAsset(response: Response): Promise<AssetDto>;
|
|
1533
1921
|
getAssetStructureById(id: number): Promise<AssetStructureDto>;
|
|
1534
1922
|
protected processGetAssetStructureById(response: Response): Promise<AssetStructureDto>;
|
|
1923
|
+
/**
|
|
1924
|
+
* @deprecated
|
|
1925
|
+
*/
|
|
1926
|
+
listMachines(): Promise<MachineDto[]>;
|
|
1927
|
+
protected processListMachines(response: Response): Promise<MachineDto[]>;
|
|
1535
1928
|
}
|
|
1536
1929
|
export interface IAlertsClient {
|
|
1537
1930
|
alertNotificationAccess(): Promise<AlertNotificationAccessDto>;
|
|
@@ -2984,17 +3377,17 @@ export interface IComponentSettingsDto {
|
|
|
2984
3377
|
componentId?: string | null;
|
|
2985
3378
|
disabledFields?: string[] | null;
|
|
2986
3379
|
}
|
|
2987
|
-
export declare class
|
|
2988
|
-
|
|
2989
|
-
constructor(data?:
|
|
3380
|
+
export declare class UtilizationListDto implements IUtilizationListDto {
|
|
3381
|
+
machines?: MachineUtilizationDto[] | null;
|
|
3382
|
+
constructor(data?: IUtilizationListDto);
|
|
2990
3383
|
init(_data?: any): void;
|
|
2991
|
-
static fromJS(data: any):
|
|
3384
|
+
static fromJS(data: any): UtilizationListDto;
|
|
2992
3385
|
toJSON(data?: any): any;
|
|
2993
3386
|
}
|
|
2994
|
-
export interface
|
|
2995
|
-
|
|
3387
|
+
export interface IUtilizationListDto {
|
|
3388
|
+
machines?: MachineUtilizationDto[] | null;
|
|
2996
3389
|
}
|
|
2997
|
-
export declare class
|
|
3390
|
+
export declare class MachineUtilizationDto implements IMachineUtilizationDto {
|
|
2998
3391
|
assetId: number;
|
|
2999
3392
|
name: string;
|
|
3000
3393
|
description?: string | null;
|
|
@@ -3003,12 +3396,12 @@ export declare class ResourceUtilizationDto implements IResourceUtilizationDto {
|
|
|
3003
3396
|
startTime?: Date;
|
|
3004
3397
|
workorder?: UtilizationWorkorderDto | null;
|
|
3005
3398
|
powerOn?: PowerOnUtilizationDto | null;
|
|
3006
|
-
constructor(data?:
|
|
3399
|
+
constructor(data?: IMachineUtilizationDto);
|
|
3007
3400
|
init(_data?: any): void;
|
|
3008
|
-
static fromJS(data: any):
|
|
3401
|
+
static fromJS(data: any): MachineUtilizationDto;
|
|
3009
3402
|
toJSON(data?: any): any;
|
|
3010
3403
|
}
|
|
3011
|
-
export interface
|
|
3404
|
+
export interface IMachineUtilizationDto {
|
|
3012
3405
|
assetId: number;
|
|
3013
3406
|
name: string;
|
|
3014
3407
|
description?: string | null;
|
|
@@ -3095,26 +3488,50 @@ export interface IPowerOnUtilizationDto extends IUtilizationAveragesDto {
|
|
|
3095
3488
|
powerOnUtilization?: number | null;
|
|
3096
3489
|
comparedToAverage?: number | null;
|
|
3097
3490
|
}
|
|
3098
|
-
export declare class
|
|
3099
|
-
|
|
3100
|
-
|
|
3491
|
+
export declare class UtilizationDetailsDto implements IUtilizationDetailsDto {
|
|
3492
|
+
machineId: number;
|
|
3493
|
+
machineName: string;
|
|
3101
3494
|
machineStateText?: string | null;
|
|
3102
3495
|
machineState?: MachineState | null;
|
|
3103
3496
|
startTime?: Date | null;
|
|
3104
3497
|
powerOnUtilization?: number | null;
|
|
3105
|
-
constructor(data?:
|
|
3498
|
+
constructor(data?: IUtilizationDetailsDto);
|
|
3106
3499
|
init(_data?: any): void;
|
|
3107
|
-
static fromJS(data: any):
|
|
3500
|
+
static fromJS(data: any): UtilizationDetailsDto;
|
|
3108
3501
|
toJSON(data?: any): any;
|
|
3109
3502
|
}
|
|
3110
|
-
export interface
|
|
3111
|
-
|
|
3112
|
-
|
|
3503
|
+
export interface IUtilizationDetailsDto {
|
|
3504
|
+
machineId: number;
|
|
3505
|
+
machineName: string;
|
|
3113
3506
|
machineStateText?: string | null;
|
|
3114
3507
|
machineState?: MachineState | null;
|
|
3115
3508
|
startTime?: Date | null;
|
|
3116
3509
|
powerOnUtilization?: number | null;
|
|
3117
3510
|
}
|
|
3511
|
+
export declare class MachineStatesSummaryDto implements IMachineStatesSummaryDto {
|
|
3512
|
+
states: StateDto[];
|
|
3513
|
+
constructor(data?: IMachineStatesSummaryDto);
|
|
3514
|
+
init(_data?: any): void;
|
|
3515
|
+
static fromJS(data: any): MachineStatesSummaryDto;
|
|
3516
|
+
toJSON(data?: any): any;
|
|
3517
|
+
}
|
|
3518
|
+
export interface IMachineStatesSummaryDto {
|
|
3519
|
+
states: StateDto[];
|
|
3520
|
+
}
|
|
3521
|
+
export declare class StateDto implements IStateDto {
|
|
3522
|
+
state: string;
|
|
3523
|
+
machineState: MachineState;
|
|
3524
|
+
seconds: number;
|
|
3525
|
+
constructor(data?: IStateDto);
|
|
3526
|
+
init(_data?: any): void;
|
|
3527
|
+
static fromJS(data: any): StateDto;
|
|
3528
|
+
toJSON(data?: any): any;
|
|
3529
|
+
}
|
|
3530
|
+
export interface IStateDto {
|
|
3531
|
+
state: string;
|
|
3532
|
+
machineState: MachineState;
|
|
3533
|
+
seconds: number;
|
|
3534
|
+
}
|
|
3118
3535
|
export declare class TimelinesDto implements ITimelinesDto {
|
|
3119
3536
|
machineStateTimeline: MachineStateDatapoint[];
|
|
3120
3537
|
workorderTimeline: WorkOrderDatapoint[];
|
|
@@ -3260,78 +3677,54 @@ export interface ITimelineFilterDto {
|
|
|
3260
3677
|
includeDowntimeReasons?: boolean | null;
|
|
3261
3678
|
includeProgram?: boolean | null;
|
|
3262
3679
|
}
|
|
3263
|
-
export declare class
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
static fromJS(data: any): MachineStatesSummaryDto;
|
|
3268
|
-
toJSON(data?: any): any;
|
|
3269
|
-
}
|
|
3270
|
-
export interface IMachineStatesSummaryDto {
|
|
3271
|
-
states: StateDto[];
|
|
3272
|
-
}
|
|
3273
|
-
export declare class StateDto implements IStateDto {
|
|
3274
|
-
state: string;
|
|
3275
|
-
machineState: MachineState;
|
|
3276
|
-
seconds: number;
|
|
3277
|
-
constructor(data?: IStateDto);
|
|
3278
|
-
init(_data?: any): void;
|
|
3279
|
-
static fromJS(data: any): StateDto;
|
|
3280
|
-
toJSON(data?: any): any;
|
|
3281
|
-
}
|
|
3282
|
-
export interface IStateDto {
|
|
3283
|
-
state: string;
|
|
3284
|
-
machineState: MachineState;
|
|
3285
|
-
seconds: number;
|
|
3286
|
-
}
|
|
3287
|
-
export declare class ResourceUptimesAggregateDto implements IResourceUptimesAggregateDto {
|
|
3288
|
-
resourceUptimes: ResourceUptimeDto[];
|
|
3289
|
-
sum: ResourceUptimeSumDto;
|
|
3290
|
-
constructor(data?: IResourceUptimesAggregateDto);
|
|
3680
|
+
export declare class MachineUptimesAggregateDto implements IMachineUptimesAggregateDto {
|
|
3681
|
+
machineUptimes: MachineUptimeDto[];
|
|
3682
|
+
sum: MachineUptimeSumDto;
|
|
3683
|
+
constructor(data?: IMachineUptimesAggregateDto);
|
|
3291
3684
|
init(_data?: any): void;
|
|
3292
|
-
static fromJS(data: any):
|
|
3685
|
+
static fromJS(data: any): MachineUptimesAggregateDto;
|
|
3293
3686
|
toJSON(data?: any): any;
|
|
3294
3687
|
}
|
|
3295
|
-
export interface
|
|
3296
|
-
|
|
3297
|
-
sum:
|
|
3688
|
+
export interface IMachineUptimesAggregateDto {
|
|
3689
|
+
machineUptimes: MachineUptimeDto[];
|
|
3690
|
+
sum: MachineUptimeSumDto;
|
|
3298
3691
|
}
|
|
3299
|
-
export declare class
|
|
3692
|
+
export declare class MachineUptimeDto implements IMachineUptimeDto {
|
|
3300
3693
|
assetExternalId: string;
|
|
3301
3694
|
percent: number;
|
|
3302
3695
|
numberOfSeconds: number;
|
|
3303
|
-
constructor(data?:
|
|
3696
|
+
constructor(data?: IMachineUptimeDto);
|
|
3304
3697
|
init(_data?: any): void;
|
|
3305
|
-
static fromJS(data: any):
|
|
3698
|
+
static fromJS(data: any): MachineUptimeDto;
|
|
3306
3699
|
toJSON(data?: any): any;
|
|
3307
3700
|
}
|
|
3308
|
-
export interface
|
|
3701
|
+
export interface IMachineUptimeDto {
|
|
3309
3702
|
assetExternalId: string;
|
|
3310
3703
|
percent: number;
|
|
3311
3704
|
numberOfSeconds: number;
|
|
3312
3705
|
}
|
|
3313
|
-
export declare class
|
|
3706
|
+
export declare class MachineUptimeSumDto implements IMachineUptimeSumDto {
|
|
3314
3707
|
percent: number;
|
|
3315
3708
|
numberOfSeconds: number;
|
|
3316
|
-
constructor(data?:
|
|
3709
|
+
constructor(data?: IMachineUptimeSumDto);
|
|
3317
3710
|
init(_data?: any): void;
|
|
3318
|
-
static fromJS(data: any):
|
|
3711
|
+
static fromJS(data: any): MachineUptimeSumDto;
|
|
3319
3712
|
toJSON(data?: any): any;
|
|
3320
3713
|
}
|
|
3321
|
-
export interface
|
|
3714
|
+
export interface IMachineUptimeSumDto {
|
|
3322
3715
|
percent: number;
|
|
3323
3716
|
numberOfSeconds: number;
|
|
3324
3717
|
}
|
|
3325
|
-
export declare class
|
|
3326
|
-
|
|
3718
|
+
export declare class ListMachineUptimesTodayRequest implements IListMachineUptimesTodayRequest {
|
|
3719
|
+
machineExternalIds?: string[] | null;
|
|
3327
3720
|
utcOffset?: number;
|
|
3328
|
-
constructor(data?:
|
|
3721
|
+
constructor(data?: IListMachineUptimesTodayRequest);
|
|
3329
3722
|
init(_data?: any): void;
|
|
3330
|
-
static fromJS(data: any):
|
|
3723
|
+
static fromJS(data: any): ListMachineUptimesTodayRequest;
|
|
3331
3724
|
toJSON(data?: any): any;
|
|
3332
3725
|
}
|
|
3333
|
-
export interface
|
|
3334
|
-
|
|
3726
|
+
export interface IListMachineUptimesTodayRequest {
|
|
3727
|
+
machineExternalIds?: string[] | null;
|
|
3335
3728
|
utcOffset?: number;
|
|
3336
3729
|
}
|
|
3337
3730
|
export declare class PowerOnUtilizationList implements IPowerOnUtilizationList {
|
|
@@ -3374,6 +3767,110 @@ export interface INumericNullableValueWithTimestamp {
|
|
|
3374
3767
|
timestamp?: number;
|
|
3375
3768
|
value?: number | null;
|
|
3376
3769
|
}
|
|
3770
|
+
export declare class ResourceUtilizationListDto implements IResourceUtilizationListDto {
|
|
3771
|
+
resources?: ResourceUtilizationDto[] | null;
|
|
3772
|
+
constructor(data?: IResourceUtilizationListDto);
|
|
3773
|
+
init(_data?: any): void;
|
|
3774
|
+
static fromJS(data: any): ResourceUtilizationListDto;
|
|
3775
|
+
toJSON(data?: any): any;
|
|
3776
|
+
}
|
|
3777
|
+
export interface IResourceUtilizationListDto {
|
|
3778
|
+
resources?: ResourceUtilizationDto[] | null;
|
|
3779
|
+
}
|
|
3780
|
+
export declare class ResourceUtilizationDto implements IResourceUtilizationDto {
|
|
3781
|
+
assetId: number;
|
|
3782
|
+
name: string;
|
|
3783
|
+
description?: string | null;
|
|
3784
|
+
state: string;
|
|
3785
|
+
machineState: MachineState;
|
|
3786
|
+
startTime?: Date;
|
|
3787
|
+
workorder?: UtilizationWorkorderDto | null;
|
|
3788
|
+
powerOn?: PowerOnUtilizationDto | null;
|
|
3789
|
+
constructor(data?: IResourceUtilizationDto);
|
|
3790
|
+
init(_data?: any): void;
|
|
3791
|
+
static fromJS(data: any): ResourceUtilizationDto;
|
|
3792
|
+
toJSON(data?: any): any;
|
|
3793
|
+
}
|
|
3794
|
+
export interface IResourceUtilizationDto {
|
|
3795
|
+
assetId: number;
|
|
3796
|
+
name: string;
|
|
3797
|
+
description?: string | null;
|
|
3798
|
+
state: string;
|
|
3799
|
+
machineState: MachineState;
|
|
3800
|
+
startTime?: Date;
|
|
3801
|
+
workorder?: UtilizationWorkorderDto | null;
|
|
3802
|
+
powerOn?: PowerOnUtilizationDto | null;
|
|
3803
|
+
}
|
|
3804
|
+
export declare class ResourceUtilizationDetailsDto implements IResourceUtilizationDetailsDto {
|
|
3805
|
+
resourceId: number;
|
|
3806
|
+
resourceName: string;
|
|
3807
|
+
machineStateText?: string | null;
|
|
3808
|
+
machineState?: MachineState | null;
|
|
3809
|
+
startTime?: Date | null;
|
|
3810
|
+
powerOnUtilization?: number | null;
|
|
3811
|
+
constructor(data?: IResourceUtilizationDetailsDto);
|
|
3812
|
+
init(_data?: any): void;
|
|
3813
|
+
static fromJS(data: any): ResourceUtilizationDetailsDto;
|
|
3814
|
+
toJSON(data?: any): any;
|
|
3815
|
+
}
|
|
3816
|
+
export interface IResourceUtilizationDetailsDto {
|
|
3817
|
+
resourceId: number;
|
|
3818
|
+
resourceName: string;
|
|
3819
|
+
machineStateText?: string | null;
|
|
3820
|
+
machineState?: MachineState | null;
|
|
3821
|
+
startTime?: Date | null;
|
|
3822
|
+
powerOnUtilization?: number | null;
|
|
3823
|
+
}
|
|
3824
|
+
export declare class ResourceUptimesAggregateDto implements IResourceUptimesAggregateDto {
|
|
3825
|
+
resourceUptimes: ResourceUptimeDto[];
|
|
3826
|
+
sum: ResourceUptimeSumDto;
|
|
3827
|
+
constructor(data?: IResourceUptimesAggregateDto);
|
|
3828
|
+
init(_data?: any): void;
|
|
3829
|
+
static fromJS(data: any): ResourceUptimesAggregateDto;
|
|
3830
|
+
toJSON(data?: any): any;
|
|
3831
|
+
}
|
|
3832
|
+
export interface IResourceUptimesAggregateDto {
|
|
3833
|
+
resourceUptimes: ResourceUptimeDto[];
|
|
3834
|
+
sum: ResourceUptimeSumDto;
|
|
3835
|
+
}
|
|
3836
|
+
export declare class ResourceUptimeDto implements IResourceUptimeDto {
|
|
3837
|
+
assetExternalId: string;
|
|
3838
|
+
percent: number;
|
|
3839
|
+
numberOfSeconds: number;
|
|
3840
|
+
constructor(data?: IResourceUptimeDto);
|
|
3841
|
+
init(_data?: any): void;
|
|
3842
|
+
static fromJS(data: any): ResourceUptimeDto;
|
|
3843
|
+
toJSON(data?: any): any;
|
|
3844
|
+
}
|
|
3845
|
+
export interface IResourceUptimeDto {
|
|
3846
|
+
assetExternalId: string;
|
|
3847
|
+
percent: number;
|
|
3848
|
+
numberOfSeconds: number;
|
|
3849
|
+
}
|
|
3850
|
+
export declare class ResourceUptimeSumDto implements IResourceUptimeSumDto {
|
|
3851
|
+
percent: number;
|
|
3852
|
+
numberOfSeconds: number;
|
|
3853
|
+
constructor(data?: IResourceUptimeSumDto);
|
|
3854
|
+
init(_data?: any): void;
|
|
3855
|
+
static fromJS(data: any): ResourceUptimeSumDto;
|
|
3856
|
+
toJSON(data?: any): any;
|
|
3857
|
+
}
|
|
3858
|
+
export interface IResourceUptimeSumDto {
|
|
3859
|
+
percent: number;
|
|
3860
|
+
numberOfSeconds: number;
|
|
3861
|
+
}
|
|
3862
|
+
export declare class ListResourceUptimesTodayRequest implements IListResourceUptimesTodayRequest {
|
|
3863
|
+
resourceExternalIds?: string[] | null;
|
|
3864
|
+
utcOffset?: number;
|
|
3865
|
+
constructor(data?: IListResourceUptimesTodayRequest);
|
|
3866
|
+
init(_data?: any): void;
|
|
3867
|
+
static fromJS(data: any): ListResourceUptimesTodayRequest;
|
|
3868
|
+
toJSON(data?: any): any;
|
|
3869
|
+
}
|
|
3870
|
+
export interface IListResourceUptimesTodayRequest {
|
|
3871
|
+
resourceExternalIds?: string[] | null;
|
|
3872
|
+
utcOffset?: number;
|
|
3873
|
+
}
|
|
3377
3874
|
export declare class UserAppDto implements IUserAppDto {
|
|
3378
3875
|
key: string;
|
|
3379
3876
|
name: string;
|
|
@@ -4622,7 +5119,7 @@ export interface ICreateResourceGroup {
|
|
|
4622
5119
|
export declare class UpdateResourceGroup implements IUpdateResourceGroup {
|
|
4623
5120
|
id: string;
|
|
4624
5121
|
name: string;
|
|
4625
|
-
|
|
5122
|
+
resourceExternalIds?: string[] | null;
|
|
4626
5123
|
constructor(data?: IUpdateResourceGroup);
|
|
4627
5124
|
init(_data?: any): void;
|
|
4628
5125
|
static fromJS(data: any): UpdateResourceGroup;
|
|
@@ -4631,7 +5128,7 @@ export declare class UpdateResourceGroup implements IUpdateResourceGroup {
|
|
|
4631
5128
|
export interface IUpdateResourceGroup {
|
|
4632
5129
|
id: string;
|
|
4633
5130
|
name: string;
|
|
4634
|
-
|
|
5131
|
+
resourceExternalIds?: string[] | null;
|
|
4635
5132
|
}
|
|
4636
5133
|
export declare class MachineStateListDto implements IMachineStateListDto {
|
|
4637
5134
|
machines?: MachineStateDto[] | null;
|
|
@@ -5129,6 +5626,37 @@ export interface ICreateResourceInResourceGroup {
|
|
|
5129
5626
|
name: string;
|
|
5130
5627
|
description?: string | null;
|
|
5131
5628
|
}
|
|
5629
|
+
export declare class PulseSettingsDto implements IPulseSettingsDto {
|
|
5630
|
+
defaultUtilizationType: UtilizationTypeDto;
|
|
5631
|
+
utilizationTypeEnabling: UtilizationTypeEnablingDto;
|
|
5632
|
+
constructor(data?: IPulseSettingsDto);
|
|
5633
|
+
init(_data?: any): void;
|
|
5634
|
+
static fromJS(data: any): PulseSettingsDto;
|
|
5635
|
+
toJSON(data?: any): any;
|
|
5636
|
+
}
|
|
5637
|
+
export interface IPulseSettingsDto {
|
|
5638
|
+
defaultUtilizationType: UtilizationTypeDto;
|
|
5639
|
+
utilizationTypeEnabling: UtilizationTypeEnablingDto;
|
|
5640
|
+
}
|
|
5641
|
+
export type UtilizationTypeDto = "PowerOn" | "TwentyFourSeven" | "ActiveOrder" | "MachineCalendar" | "FactoryCalendar";
|
|
5642
|
+
export declare class UtilizationTypeEnablingDto implements IUtilizationTypeEnablingDto {
|
|
5643
|
+
powerOnEnabled: boolean;
|
|
5644
|
+
twentyFourSevenEnabled: boolean;
|
|
5645
|
+
activeOrderEnabled: boolean;
|
|
5646
|
+
machineCalendarEnabled: boolean;
|
|
5647
|
+
factoryCalendarEnabled: boolean;
|
|
5648
|
+
constructor(data?: IUtilizationTypeEnablingDto);
|
|
5649
|
+
init(_data?: any): void;
|
|
5650
|
+
static fromJS(data: any): UtilizationTypeEnablingDto;
|
|
5651
|
+
toJSON(data?: any): any;
|
|
5652
|
+
}
|
|
5653
|
+
export interface IUtilizationTypeEnablingDto {
|
|
5654
|
+
powerOnEnabled: boolean;
|
|
5655
|
+
twentyFourSevenEnabled: boolean;
|
|
5656
|
+
activeOrderEnabled: boolean;
|
|
5657
|
+
machineCalendarEnabled: boolean;
|
|
5658
|
+
factoryCalendarEnabled: boolean;
|
|
5659
|
+
}
|
|
5132
5660
|
export declare class PulseSettingsResourceDto implements IPulseSettingsResourceDto {
|
|
5133
5661
|
defaultUtilizationType: ResourceUtilizationTypeDto;
|
|
5134
5662
|
utilizationTypeEnabling: ResourceUtilizationTypeEnablingDto;
|
|
@@ -5160,6 +5688,26 @@ export interface IResourceUtilizationTypeEnablingDto {
|
|
|
5160
5688
|
resourceCalendarEnabled: boolean;
|
|
5161
5689
|
factoryCalendarEnabled: boolean;
|
|
5162
5690
|
}
|
|
5691
|
+
export declare class UpdatePulseSettings implements IUpdatePulseSettings {
|
|
5692
|
+
defaultUtilizationType: UtilizationTypeDto;
|
|
5693
|
+
powerOnEnabled: boolean;
|
|
5694
|
+
twentyfourSevenEnabled: boolean;
|
|
5695
|
+
activeOrderEnabled: boolean;
|
|
5696
|
+
machineCalendarEnabled: boolean;
|
|
5697
|
+
factoryCalendarEnabled: boolean;
|
|
5698
|
+
constructor(data?: IUpdatePulseSettings);
|
|
5699
|
+
init(_data?: any): void;
|
|
5700
|
+
static fromJS(data: any): UpdatePulseSettings;
|
|
5701
|
+
toJSON(data?: any): any;
|
|
5702
|
+
}
|
|
5703
|
+
export interface IUpdatePulseSettings {
|
|
5704
|
+
defaultUtilizationType: UtilizationTypeDto;
|
|
5705
|
+
powerOnEnabled: boolean;
|
|
5706
|
+
twentyfourSevenEnabled: boolean;
|
|
5707
|
+
activeOrderEnabled: boolean;
|
|
5708
|
+
machineCalendarEnabled: boolean;
|
|
5709
|
+
factoryCalendarEnabled: boolean;
|
|
5710
|
+
}
|
|
5163
5711
|
export declare class UpdatePulseSettingsResource implements IUpdatePulseSettingsResource {
|
|
5164
5712
|
defaultUtilizationType: ResourceUtilizationTypeDto;
|
|
5165
5713
|
powerOnEnabled: boolean;
|
|
@@ -5180,21 +5728,21 @@ export interface IUpdatePulseSettingsResource {
|
|
|
5180
5728
|
resourceCalendarEnabled: boolean;
|
|
5181
5729
|
factoryCalendarEnabled: boolean;
|
|
5182
5730
|
}
|
|
5183
|
-
export declare class
|
|
5184
|
-
utilizationType:
|
|
5731
|
+
export declare class CompanyUtilizationDto implements ICompanyUtilizationDto {
|
|
5732
|
+
utilizationType: UtilizationTypeDto;
|
|
5185
5733
|
companyUtilization: UtilizationDetailsV2Dto;
|
|
5186
|
-
groups:
|
|
5187
|
-
|
|
5188
|
-
constructor(data?:
|
|
5734
|
+
groups: MachineGroupUtilizationV2Dto[];
|
|
5735
|
+
ungroupedMachines: MachineUtilizationV3Dto[];
|
|
5736
|
+
constructor(data?: ICompanyUtilizationDto);
|
|
5189
5737
|
init(_data?: any): void;
|
|
5190
|
-
static fromJS(data: any):
|
|
5738
|
+
static fromJS(data: any): CompanyUtilizationDto;
|
|
5191
5739
|
toJSON(data?: any): any;
|
|
5192
5740
|
}
|
|
5193
|
-
export interface
|
|
5194
|
-
utilizationType:
|
|
5741
|
+
export interface ICompanyUtilizationDto {
|
|
5742
|
+
utilizationType: UtilizationTypeDto;
|
|
5195
5743
|
companyUtilization: UtilizationDetailsV2Dto;
|
|
5196
|
-
groups:
|
|
5197
|
-
|
|
5744
|
+
groups: MachineGroupUtilizationV2Dto[];
|
|
5745
|
+
ungroupedMachines: MachineUtilizationV3Dto[];
|
|
5198
5746
|
}
|
|
5199
5747
|
export declare class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
|
|
5200
5748
|
utilizationPercent?: number | null;
|
|
@@ -5220,59 +5768,59 @@ export interface IUtilizationDetailsV2Dto {
|
|
|
5220
5768
|
downtimeInMilliseconds?: number | null;
|
|
5221
5769
|
totalTimeInMilliseconds?: number | null;
|
|
5222
5770
|
}
|
|
5223
|
-
export declare class
|
|
5771
|
+
export declare class MachineGroupUtilizationV2Dto implements IMachineGroupUtilizationV2Dto {
|
|
5224
5772
|
name: string;
|
|
5225
5773
|
utilization: UtilizationDetailsV2Dto;
|
|
5226
|
-
|
|
5227
|
-
constructor(data?:
|
|
5774
|
+
machines: MachineUtilizationV3Dto[];
|
|
5775
|
+
constructor(data?: IMachineGroupUtilizationV2Dto);
|
|
5228
5776
|
init(_data?: any): void;
|
|
5229
|
-
static fromJS(data: any):
|
|
5777
|
+
static fromJS(data: any): MachineGroupUtilizationV2Dto;
|
|
5230
5778
|
toJSON(data?: any): any;
|
|
5231
5779
|
}
|
|
5232
|
-
export interface
|
|
5780
|
+
export interface IMachineGroupUtilizationV2Dto {
|
|
5233
5781
|
name: string;
|
|
5234
5782
|
utilization: UtilizationDetailsV2Dto;
|
|
5235
|
-
|
|
5783
|
+
machines: MachineUtilizationV3Dto[];
|
|
5236
5784
|
}
|
|
5237
|
-
export declare class
|
|
5785
|
+
export declare class MachineUtilizationV3Dto implements IMachineUtilizationV3Dto {
|
|
5238
5786
|
id?: number;
|
|
5239
5787
|
name: string;
|
|
5240
5788
|
description?: string | null;
|
|
5241
5789
|
utilization: UtilizationDetailsV2Dto;
|
|
5242
|
-
constructor(data?:
|
|
5790
|
+
constructor(data?: IMachineUtilizationV3Dto);
|
|
5243
5791
|
init(_data?: any): void;
|
|
5244
|
-
static fromJS(data: any):
|
|
5792
|
+
static fromJS(data: any): MachineUtilizationV3Dto;
|
|
5245
5793
|
toJSON(data?: any): any;
|
|
5246
5794
|
}
|
|
5247
|
-
export interface
|
|
5795
|
+
export interface IMachineUtilizationV3Dto {
|
|
5248
5796
|
id?: number;
|
|
5249
5797
|
name: string;
|
|
5250
5798
|
description?: string | null;
|
|
5251
5799
|
utilization: UtilizationDetailsV2Dto;
|
|
5252
5800
|
}
|
|
5253
|
-
export declare class
|
|
5254
|
-
utilizationType:
|
|
5801
|
+
export declare class CrossCompanyUtilizationDto implements ICrossCompanyUtilizationDto {
|
|
5802
|
+
utilizationType: UtilizationTypeDto;
|
|
5255
5803
|
crossCompanyUtilization: UtilizationDetailsV2Dto;
|
|
5256
|
-
companies:
|
|
5257
|
-
constructor(data?:
|
|
5804
|
+
companies: NamedCompanyUtilizationDto[];
|
|
5805
|
+
constructor(data?: ICrossCompanyUtilizationDto);
|
|
5258
5806
|
init(_data?: any): void;
|
|
5259
|
-
static fromJS(data: any):
|
|
5807
|
+
static fromJS(data: any): CrossCompanyUtilizationDto;
|
|
5260
5808
|
toJSON(data?: any): any;
|
|
5261
5809
|
}
|
|
5262
|
-
export interface
|
|
5263
|
-
utilizationType:
|
|
5810
|
+
export interface ICrossCompanyUtilizationDto {
|
|
5811
|
+
utilizationType: UtilizationTypeDto;
|
|
5264
5812
|
crossCompanyUtilization: UtilizationDetailsV2Dto;
|
|
5265
|
-
companies:
|
|
5813
|
+
companies: NamedCompanyUtilizationDto[];
|
|
5266
5814
|
}
|
|
5267
|
-
export declare class
|
|
5815
|
+
export declare class NamedCompanyUtilizationDto extends CompanyUtilizationDto implements INamedCompanyUtilizationDto {
|
|
5268
5816
|
companyId: string;
|
|
5269
5817
|
companyName: string;
|
|
5270
|
-
constructor(data?:
|
|
5818
|
+
constructor(data?: INamedCompanyUtilizationDto);
|
|
5271
5819
|
init(_data?: any): void;
|
|
5272
|
-
static fromJS(data: any):
|
|
5820
|
+
static fromJS(data: any): NamedCompanyUtilizationDto;
|
|
5273
5821
|
toJSON(data?: any): any;
|
|
5274
5822
|
}
|
|
5275
|
-
export interface
|
|
5823
|
+
export interface INamedCompanyUtilizationDto extends ICompanyUtilizationDto {
|
|
5276
5824
|
companyId: string;
|
|
5277
5825
|
companyName: string;
|
|
5278
5826
|
}
|
|
@@ -5290,83 +5838,219 @@ export interface IUtilizationDatapointListDto {
|
|
|
5290
5838
|
trendDatapoints?: NumericNullableValueWithTimestamp[];
|
|
5291
5839
|
linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
|
|
5292
5840
|
}
|
|
5293
|
-
export declare class
|
|
5841
|
+
export declare class MachineUtilizationDatapointListDto extends UtilizationDatapointListDto implements IMachineUtilizationDatapointListDto {
|
|
5294
5842
|
externalId: string;
|
|
5295
5843
|
id: number;
|
|
5296
5844
|
name: string;
|
|
5297
5845
|
description?: string | null;
|
|
5298
|
-
constructor(data?:
|
|
5846
|
+
constructor(data?: IMachineUtilizationDatapointListDto);
|
|
5299
5847
|
init(_data?: any): void;
|
|
5300
|
-
static fromJS(data: any):
|
|
5848
|
+
static fromJS(data: any): MachineUtilizationDatapointListDto;
|
|
5301
5849
|
toJSON(data?: any): any;
|
|
5302
5850
|
}
|
|
5303
|
-
export interface
|
|
5851
|
+
export interface IMachineUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
5304
5852
|
externalId: string;
|
|
5305
5853
|
id: number;
|
|
5306
5854
|
name: string;
|
|
5307
5855
|
description?: string | null;
|
|
5308
5856
|
}
|
|
5309
|
-
export declare class
|
|
5310
|
-
groups?:
|
|
5311
|
-
|
|
5312
|
-
constructor(data?:
|
|
5857
|
+
export declare class CompanyUtilizationDatapointListDto extends UtilizationDatapointListDto implements ICompanyUtilizationDatapointListDto {
|
|
5858
|
+
groups?: MachineGroupUtilizationDatapointListDto[];
|
|
5859
|
+
ungroupedMachines?: MachineUtilizationDatapointListDto[];
|
|
5860
|
+
constructor(data?: ICompanyUtilizationDatapointListDto);
|
|
5313
5861
|
init(_data?: any): void;
|
|
5314
|
-
static fromJS(data: any):
|
|
5862
|
+
static fromJS(data: any): CompanyUtilizationDatapointListDto;
|
|
5315
5863
|
toJSON(data?: any): any;
|
|
5316
5864
|
}
|
|
5317
|
-
export interface
|
|
5318
|
-
groups?:
|
|
5319
|
-
|
|
5865
|
+
export interface ICompanyUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
5866
|
+
groups?: MachineGroupUtilizationDatapointListDto[];
|
|
5867
|
+
ungroupedMachines?: MachineUtilizationDatapointListDto[];
|
|
5320
5868
|
}
|
|
5321
|
-
export declare class
|
|
5869
|
+
export declare class MachineGroupUtilizationDatapointListDto extends UtilizationDatapointListDto implements IMachineGroupUtilizationDatapointListDto {
|
|
5322
5870
|
groupId: string;
|
|
5323
5871
|
groupName: string;
|
|
5324
|
-
|
|
5325
|
-
constructor(data?:
|
|
5872
|
+
machines?: MachineUtilizationDatapointListDto[];
|
|
5873
|
+
constructor(data?: IMachineGroupUtilizationDatapointListDto);
|
|
5326
5874
|
init(_data?: any): void;
|
|
5327
|
-
static fromJS(data: any):
|
|
5875
|
+
static fromJS(data: any): MachineGroupUtilizationDatapointListDto;
|
|
5328
5876
|
toJSON(data?: any): any;
|
|
5329
5877
|
}
|
|
5330
|
-
export interface
|
|
5878
|
+
export interface IMachineGroupUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
5331
5879
|
groupId: string;
|
|
5332
5880
|
groupName: string;
|
|
5333
|
-
|
|
5881
|
+
machines?: MachineUtilizationDatapointListDto[];
|
|
5334
5882
|
}
|
|
5335
|
-
export declare class
|
|
5336
|
-
companies?:
|
|
5337
|
-
constructor(data?:
|
|
5883
|
+
export declare class CrossCompanyUtilizationDatapointListDto extends UtilizationDatapointListDto implements ICrossCompanyUtilizationDatapointListDto {
|
|
5884
|
+
companies?: NamedCompanyUtilizationDatapointListDto[];
|
|
5885
|
+
constructor(data?: ICrossCompanyUtilizationDatapointListDto);
|
|
5338
5886
|
init(_data?: any): void;
|
|
5339
|
-
static fromJS(data: any):
|
|
5887
|
+
static fromJS(data: any): CrossCompanyUtilizationDatapointListDto;
|
|
5340
5888
|
toJSON(data?: any): any;
|
|
5341
5889
|
}
|
|
5342
|
-
export interface
|
|
5343
|
-
companies?:
|
|
5890
|
+
export interface ICrossCompanyUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
5891
|
+
companies?: NamedCompanyUtilizationDatapointListDto[];
|
|
5344
5892
|
}
|
|
5345
|
-
export declare class
|
|
5893
|
+
export declare class NamedCompanyUtilizationDatapointListDto extends CompanyUtilizationDatapointListDto implements INamedCompanyUtilizationDatapointListDto {
|
|
5346
5894
|
companyId: string;
|
|
5347
5895
|
companyName: string;
|
|
5348
|
-
constructor(data?:
|
|
5896
|
+
constructor(data?: INamedCompanyUtilizationDatapointListDto);
|
|
5349
5897
|
init(_data?: any): void;
|
|
5350
|
-
static fromJS(data: any):
|
|
5898
|
+
static fromJS(data: any): NamedCompanyUtilizationDatapointListDto;
|
|
5351
5899
|
toJSON(data?: any): any;
|
|
5352
5900
|
}
|
|
5353
|
-
export interface
|
|
5901
|
+
export interface INamedCompanyUtilizationDatapointListDto extends ICompanyUtilizationDatapointListDto {
|
|
5354
5902
|
companyId: string;
|
|
5355
5903
|
companyName: string;
|
|
5356
5904
|
}
|
|
5357
|
-
export declare class
|
|
5358
|
-
|
|
5359
|
-
|
|
5360
|
-
|
|
5361
|
-
|
|
5362
|
-
|
|
5363
|
-
|
|
5364
|
-
|
|
5365
|
-
|
|
5366
|
-
|
|
5367
|
-
|
|
5368
|
-
|
|
5369
|
-
|
|
5905
|
+
export declare class CompanyResourceUtilizationDto implements ICompanyResourceUtilizationDto {
|
|
5906
|
+
utilizationType: ResourceUtilizationTypeDto;
|
|
5907
|
+
companyUtilization: UtilizationDetailsV2Dto;
|
|
5908
|
+
groups: ResourceGroupUtilizationV2Dto[];
|
|
5909
|
+
ungroupedResources: ResourceUtilizationV3Dto[];
|
|
5910
|
+
constructor(data?: ICompanyResourceUtilizationDto);
|
|
5911
|
+
init(_data?: any): void;
|
|
5912
|
+
static fromJS(data: any): CompanyResourceUtilizationDto;
|
|
5913
|
+
toJSON(data?: any): any;
|
|
5914
|
+
}
|
|
5915
|
+
export interface ICompanyResourceUtilizationDto {
|
|
5916
|
+
utilizationType: ResourceUtilizationTypeDto;
|
|
5917
|
+
companyUtilization: UtilizationDetailsV2Dto;
|
|
5918
|
+
groups: ResourceGroupUtilizationV2Dto[];
|
|
5919
|
+
ungroupedResources: ResourceUtilizationV3Dto[];
|
|
5920
|
+
}
|
|
5921
|
+
export declare class ResourceGroupUtilizationV2Dto implements IResourceGroupUtilizationV2Dto {
|
|
5922
|
+
name: string;
|
|
5923
|
+
utilization: UtilizationDetailsV2Dto;
|
|
5924
|
+
resources: ResourceUtilizationV3Dto[];
|
|
5925
|
+
constructor(data?: IResourceGroupUtilizationV2Dto);
|
|
5926
|
+
init(_data?: any): void;
|
|
5927
|
+
static fromJS(data: any): ResourceGroupUtilizationV2Dto;
|
|
5928
|
+
toJSON(data?: any): any;
|
|
5929
|
+
}
|
|
5930
|
+
export interface IResourceGroupUtilizationV2Dto {
|
|
5931
|
+
name: string;
|
|
5932
|
+
utilization: UtilizationDetailsV2Dto;
|
|
5933
|
+
resources: ResourceUtilizationV3Dto[];
|
|
5934
|
+
}
|
|
5935
|
+
export declare class ResourceUtilizationV3Dto implements IResourceUtilizationV3Dto {
|
|
5936
|
+
id?: number;
|
|
5937
|
+
name: string;
|
|
5938
|
+
description?: string | null;
|
|
5939
|
+
utilization: UtilizationDetailsV2Dto;
|
|
5940
|
+
constructor(data?: IResourceUtilizationV3Dto);
|
|
5941
|
+
init(_data?: any): void;
|
|
5942
|
+
static fromJS(data: any): ResourceUtilizationV3Dto;
|
|
5943
|
+
toJSON(data?: any): any;
|
|
5944
|
+
}
|
|
5945
|
+
export interface IResourceUtilizationV3Dto {
|
|
5946
|
+
id?: number;
|
|
5947
|
+
name: string;
|
|
5948
|
+
description?: string | null;
|
|
5949
|
+
utilization: UtilizationDetailsV2Dto;
|
|
5950
|
+
}
|
|
5951
|
+
export declare class CrossCompanyResourceUtilizationDto implements ICrossCompanyResourceUtilizationDto {
|
|
5952
|
+
utilizationType: ResourceUtilizationTypeDto;
|
|
5953
|
+
crossCompanyUtilization: UtilizationDetailsV2Dto;
|
|
5954
|
+
companies: NamedCompanyResourceUtilizationDto[];
|
|
5955
|
+
constructor(data?: ICrossCompanyResourceUtilizationDto);
|
|
5956
|
+
init(_data?: any): void;
|
|
5957
|
+
static fromJS(data: any): CrossCompanyResourceUtilizationDto;
|
|
5958
|
+
toJSON(data?: any): any;
|
|
5959
|
+
}
|
|
5960
|
+
export interface ICrossCompanyResourceUtilizationDto {
|
|
5961
|
+
utilizationType: ResourceUtilizationTypeDto;
|
|
5962
|
+
crossCompanyUtilization: UtilizationDetailsV2Dto;
|
|
5963
|
+
companies: NamedCompanyResourceUtilizationDto[];
|
|
5964
|
+
}
|
|
5965
|
+
export declare class NamedCompanyResourceUtilizationDto extends CompanyResourceUtilizationDto implements INamedCompanyResourceUtilizationDto {
|
|
5966
|
+
companyId: string;
|
|
5967
|
+
companyName: string;
|
|
5968
|
+
constructor(data?: INamedCompanyResourceUtilizationDto);
|
|
5969
|
+
init(_data?: any): void;
|
|
5970
|
+
static fromJS(data: any): NamedCompanyResourceUtilizationDto;
|
|
5971
|
+
toJSON(data?: any): any;
|
|
5972
|
+
}
|
|
5973
|
+
export interface INamedCompanyResourceUtilizationDto extends ICompanyResourceUtilizationDto {
|
|
5974
|
+
companyId: string;
|
|
5975
|
+
companyName: string;
|
|
5976
|
+
}
|
|
5977
|
+
export declare class ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto implements IResourceUtilizationDatapointListDto {
|
|
5978
|
+
externalId: string;
|
|
5979
|
+
id: number;
|
|
5980
|
+
name: string;
|
|
5981
|
+
description?: string | null;
|
|
5982
|
+
constructor(data?: IResourceUtilizationDatapointListDto);
|
|
5983
|
+
init(_data?: any): void;
|
|
5984
|
+
static fromJS(data: any): ResourceUtilizationDatapointListDto;
|
|
5985
|
+
toJSON(data?: any): any;
|
|
5986
|
+
}
|
|
5987
|
+
export interface IResourceUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
5988
|
+
externalId: string;
|
|
5989
|
+
id: number;
|
|
5990
|
+
name: string;
|
|
5991
|
+
description?: string | null;
|
|
5992
|
+
}
|
|
5993
|
+
export declare class CompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto implements ICompanyResourceUtilizationDatapointListDto {
|
|
5994
|
+
groups?: ResourceGroupUtilizationDatapointListDto[];
|
|
5995
|
+
ungroupedResources?: ResourceUtilizationDatapointListDto[];
|
|
5996
|
+
constructor(data?: ICompanyResourceUtilizationDatapointListDto);
|
|
5997
|
+
init(_data?: any): void;
|
|
5998
|
+
static fromJS(data: any): CompanyResourceUtilizationDatapointListDto;
|
|
5999
|
+
toJSON(data?: any): any;
|
|
6000
|
+
}
|
|
6001
|
+
export interface ICompanyResourceUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
6002
|
+
groups?: ResourceGroupUtilizationDatapointListDto[];
|
|
6003
|
+
ungroupedResources?: ResourceUtilizationDatapointListDto[];
|
|
6004
|
+
}
|
|
6005
|
+
export declare class ResourceGroupUtilizationDatapointListDto extends UtilizationDatapointListDto implements IResourceGroupUtilizationDatapointListDto {
|
|
6006
|
+
groupId: string;
|
|
6007
|
+
groupName: string;
|
|
6008
|
+
resources?: ResourceUtilizationDatapointListDto[];
|
|
6009
|
+
constructor(data?: IResourceGroupUtilizationDatapointListDto);
|
|
6010
|
+
init(_data?: any): void;
|
|
6011
|
+
static fromJS(data: any): ResourceGroupUtilizationDatapointListDto;
|
|
6012
|
+
toJSON(data?: any): any;
|
|
6013
|
+
}
|
|
6014
|
+
export interface IResourceGroupUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
6015
|
+
groupId: string;
|
|
6016
|
+
groupName: string;
|
|
6017
|
+
resources?: ResourceUtilizationDatapointListDto[];
|
|
6018
|
+
}
|
|
6019
|
+
export declare class CrossCompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto implements ICrossCompanyResourceUtilizationDatapointListDto {
|
|
6020
|
+
companies?: NamedCompanyResourceUtilizationDatapointListDto[];
|
|
6021
|
+
constructor(data?: ICrossCompanyResourceUtilizationDatapointListDto);
|
|
6022
|
+
init(_data?: any): void;
|
|
6023
|
+
static fromJS(data: any): CrossCompanyResourceUtilizationDatapointListDto;
|
|
6024
|
+
toJSON(data?: any): any;
|
|
6025
|
+
}
|
|
6026
|
+
export interface ICrossCompanyResourceUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
6027
|
+
companies?: NamedCompanyResourceUtilizationDatapointListDto[];
|
|
6028
|
+
}
|
|
6029
|
+
export declare class NamedCompanyResourceUtilizationDatapointListDto extends CompanyResourceUtilizationDatapointListDto implements INamedCompanyResourceUtilizationDatapointListDto {
|
|
6030
|
+
companyId: string;
|
|
6031
|
+
companyName: string;
|
|
6032
|
+
constructor(data?: INamedCompanyResourceUtilizationDatapointListDto);
|
|
6033
|
+
init(_data?: any): void;
|
|
6034
|
+
static fromJS(data: any): NamedCompanyResourceUtilizationDatapointListDto;
|
|
6035
|
+
toJSON(data?: any): any;
|
|
6036
|
+
}
|
|
6037
|
+
export interface INamedCompanyResourceUtilizationDatapointListDto extends ICompanyResourceUtilizationDatapointListDto {
|
|
6038
|
+
companyId: string;
|
|
6039
|
+
companyName: string;
|
|
6040
|
+
}
|
|
6041
|
+
export declare class MrbInstanceDto implements IMrbInstanceDto {
|
|
6042
|
+
id: string;
|
|
6043
|
+
title?: string | null;
|
|
6044
|
+
customerId?: string | null;
|
|
6045
|
+
customerName?: string | null;
|
|
6046
|
+
customerOrder: string;
|
|
6047
|
+
customerOrderLine: number;
|
|
6048
|
+
externalOrderNumber?: string | null;
|
|
6049
|
+
traces: CustomerOrderLineTraceItemDto[];
|
|
6050
|
+
mrbTemplateId?: string | null;
|
|
6051
|
+
mrbTemplateName?: string | null;
|
|
6052
|
+
mrbJobId?: string | null;
|
|
6053
|
+
mrbExportJobId?: string | null;
|
|
5370
6054
|
status?: MrbStatusDto | null;
|
|
5371
6055
|
latestRevision?: MrbInstanceRevisionDto | null;
|
|
5372
6056
|
part?: MrbPartDto | null;
|
|
@@ -7033,6 +7717,548 @@ export interface IMeasuringToolSettingsDto {
|
|
|
7033
7717
|
disableUserDefinedIdentifiersForCalibratedTools: boolean;
|
|
7034
7718
|
disableUserDefinedIdentifiersForUncalibratedTools: boolean;
|
|
7035
7719
|
}
|
|
7720
|
+
export declare class DowntimeReasonDto implements IDowntimeReasonDto {
|
|
7721
|
+
id: string;
|
|
7722
|
+
reason: string;
|
|
7723
|
+
machineTypes: string[];
|
|
7724
|
+
machineGroups: string[];
|
|
7725
|
+
reasonType: DowntimeReasonTypeDto;
|
|
7726
|
+
description?: string | null;
|
|
7727
|
+
parentId?: string | null;
|
|
7728
|
+
displayOrder?: number | null;
|
|
7729
|
+
constructor(data?: IDowntimeReasonDto);
|
|
7730
|
+
init(_data?: any): void;
|
|
7731
|
+
static fromJS(data: any): DowntimeReasonDto;
|
|
7732
|
+
toJSON(data?: any): any;
|
|
7733
|
+
}
|
|
7734
|
+
export interface IDowntimeReasonDto {
|
|
7735
|
+
id: string;
|
|
7736
|
+
reason: string;
|
|
7737
|
+
machineTypes: string[];
|
|
7738
|
+
machineGroups: string[];
|
|
7739
|
+
reasonType: DowntimeReasonTypeDto;
|
|
7740
|
+
description?: string | null;
|
|
7741
|
+
parentId?: string | null;
|
|
7742
|
+
displayOrder?: number | null;
|
|
7743
|
+
}
|
|
7744
|
+
export declare class CreateDowntimeReason implements ICreateDowntimeReason {
|
|
7745
|
+
reason: string;
|
|
7746
|
+
machineTypes: string[];
|
|
7747
|
+
machineGroups?: string[] | null;
|
|
7748
|
+
reasonType: DowntimeReasonTypeDto;
|
|
7749
|
+
description?: string | null;
|
|
7750
|
+
parentId?: string | null;
|
|
7751
|
+
displayBeforeId?: string | null;
|
|
7752
|
+
constructor(data?: ICreateDowntimeReason);
|
|
7753
|
+
init(_data?: any): void;
|
|
7754
|
+
static fromJS(data: any): CreateDowntimeReason;
|
|
7755
|
+
toJSON(data?: any): any;
|
|
7756
|
+
}
|
|
7757
|
+
export interface ICreateDowntimeReason {
|
|
7758
|
+
reason: string;
|
|
7759
|
+
machineTypes: string[];
|
|
7760
|
+
machineGroups?: string[] | null;
|
|
7761
|
+
reasonType: DowntimeReasonTypeDto;
|
|
7762
|
+
description?: string | null;
|
|
7763
|
+
parentId?: string | null;
|
|
7764
|
+
displayBeforeId?: string | null;
|
|
7765
|
+
}
|
|
7766
|
+
export declare class UpdateDowntimeReasonRequest implements IUpdateDowntimeReasonRequest {
|
|
7767
|
+
reason: string;
|
|
7768
|
+
machineTypes: string[];
|
|
7769
|
+
machineGroups?: string[] | null;
|
|
7770
|
+
reasonType: DowntimeReasonTypeDto;
|
|
7771
|
+
description?: string | null;
|
|
7772
|
+
parentId?: string | null;
|
|
7773
|
+
displayBeforeId?: string | null;
|
|
7774
|
+
constructor(data?: IUpdateDowntimeReasonRequest);
|
|
7775
|
+
init(_data?: any): void;
|
|
7776
|
+
static fromJS(data: any): UpdateDowntimeReasonRequest;
|
|
7777
|
+
toJSON(data?: any): any;
|
|
7778
|
+
}
|
|
7779
|
+
export interface IUpdateDowntimeReasonRequest {
|
|
7780
|
+
reason: string;
|
|
7781
|
+
machineTypes: string[];
|
|
7782
|
+
machineGroups?: string[] | null;
|
|
7783
|
+
reasonType: DowntimeReasonTypeDto;
|
|
7784
|
+
description?: string | null;
|
|
7785
|
+
parentId?: string | null;
|
|
7786
|
+
displayBeforeId?: string | null;
|
|
7787
|
+
}
|
|
7788
|
+
export declare class MachineTypeDto implements IMachineTypeDto {
|
|
7789
|
+
machineType: string;
|
|
7790
|
+
constructor(data?: IMachineTypeDto);
|
|
7791
|
+
init(_data?: any): void;
|
|
7792
|
+
static fromJS(data: any): MachineTypeDto;
|
|
7793
|
+
toJSON(data?: any): any;
|
|
7794
|
+
}
|
|
7795
|
+
export interface IMachineTypeDto {
|
|
7796
|
+
machineType: string;
|
|
7797
|
+
}
|
|
7798
|
+
export declare class ParentTopicDto implements IParentTopicDto {
|
|
7799
|
+
id: string;
|
|
7800
|
+
name: string;
|
|
7801
|
+
description?: string | null;
|
|
7802
|
+
displayOrder?: number;
|
|
7803
|
+
subReasons?: DowntimeReasonDto[];
|
|
7804
|
+
constructor(data?: IParentTopicDto);
|
|
7805
|
+
init(_data?: any): void;
|
|
7806
|
+
static fromJS(data: any): ParentTopicDto;
|
|
7807
|
+
toJSON(data?: any): any;
|
|
7808
|
+
}
|
|
7809
|
+
export interface IParentTopicDto {
|
|
7810
|
+
id: string;
|
|
7811
|
+
name: string;
|
|
7812
|
+
description?: string | null;
|
|
7813
|
+
displayOrder?: number;
|
|
7814
|
+
subReasons?: DowntimeReasonDto[];
|
|
7815
|
+
}
|
|
7816
|
+
export declare class CreateParentTopicRequest implements ICreateParentTopicRequest {
|
|
7817
|
+
name: string;
|
|
7818
|
+
description?: string | null;
|
|
7819
|
+
displayBeforeId?: string | null;
|
|
7820
|
+
constructor(data?: ICreateParentTopicRequest);
|
|
7821
|
+
init(_data?: any): void;
|
|
7822
|
+
static fromJS(data: any): CreateParentTopicRequest;
|
|
7823
|
+
toJSON(data?: any): any;
|
|
7824
|
+
}
|
|
7825
|
+
export interface ICreateParentTopicRequest {
|
|
7826
|
+
name: string;
|
|
7827
|
+
description?: string | null;
|
|
7828
|
+
displayBeforeId?: string | null;
|
|
7829
|
+
}
|
|
7830
|
+
export declare class UpdateParentTopicRequest implements IUpdateParentTopicRequest {
|
|
7831
|
+
name: string;
|
|
7832
|
+
description?: string | null;
|
|
7833
|
+
displayBeforeId?: string | null;
|
|
7834
|
+
constructor(data?: IUpdateParentTopicRequest);
|
|
7835
|
+
init(_data?: any): void;
|
|
7836
|
+
static fromJS(data: any): UpdateParentTopicRequest;
|
|
7837
|
+
toJSON(data?: any): any;
|
|
7838
|
+
}
|
|
7839
|
+
export interface IUpdateParentTopicRequest {
|
|
7840
|
+
name: string;
|
|
7841
|
+
description?: string | null;
|
|
7842
|
+
displayBeforeId?: string | null;
|
|
7843
|
+
}
|
|
7844
|
+
export declare class UpdateDowntimePeriodReasonRequest implements IUpdateDowntimePeriodReasonRequest {
|
|
7845
|
+
reasonId?: string | null;
|
|
7846
|
+
assetId?: number | null;
|
|
7847
|
+
startTime?: Date | null;
|
|
7848
|
+
endTime?: Date | null;
|
|
7849
|
+
autoCompleteDowntime?: boolean | null;
|
|
7850
|
+
comment?: string | null;
|
|
7851
|
+
constructor(data?: IUpdateDowntimePeriodReasonRequest);
|
|
7852
|
+
init(_data?: any): void;
|
|
7853
|
+
static fromJS(data: any): UpdateDowntimePeriodReasonRequest;
|
|
7854
|
+
toJSON(data?: any): any;
|
|
7855
|
+
}
|
|
7856
|
+
export interface IUpdateDowntimePeriodReasonRequest {
|
|
7857
|
+
reasonId?: string | null;
|
|
7858
|
+
assetId?: number | null;
|
|
7859
|
+
startTime?: Date | null;
|
|
7860
|
+
endTime?: Date | null;
|
|
7861
|
+
autoCompleteDowntime?: boolean | null;
|
|
7862
|
+
comment?: string | null;
|
|
7863
|
+
}
|
|
7864
|
+
export declare class ListTopDowntimeReasonsForResourcesRequest implements IListTopDowntimeReasonsForResourcesRequest {
|
|
7865
|
+
startTime?: Date | null;
|
|
7866
|
+
endTime?: Date | null;
|
|
7867
|
+
resourceExternalIds?: string[] | null;
|
|
7868
|
+
constructor(data?: IListTopDowntimeReasonsForResourcesRequest);
|
|
7869
|
+
init(_data?: any): void;
|
|
7870
|
+
static fromJS(data: any): ListTopDowntimeReasonsForResourcesRequest;
|
|
7871
|
+
toJSON(data?: any): any;
|
|
7872
|
+
}
|
|
7873
|
+
export interface IListTopDowntimeReasonsForResourcesRequest {
|
|
7874
|
+
startTime?: Date | null;
|
|
7875
|
+
endTime?: Date | null;
|
|
7876
|
+
resourceExternalIds?: string[] | null;
|
|
7877
|
+
}
|
|
7878
|
+
export declare class DowntimeReasonsReportDto implements IDowntimeReasonsReportDto {
|
|
7879
|
+
companyId?: string | null;
|
|
7880
|
+
totalDowntimeDurationMilliseconds?: number;
|
|
7881
|
+
downtimeReasons?: DowntimeReasonReport[];
|
|
7882
|
+
constructor(data?: IDowntimeReasonsReportDto);
|
|
7883
|
+
init(_data?: any): void;
|
|
7884
|
+
static fromJS(data: any): DowntimeReasonsReportDto;
|
|
7885
|
+
toJSON(data?: any): any;
|
|
7886
|
+
}
|
|
7887
|
+
export interface IDowntimeReasonsReportDto {
|
|
7888
|
+
companyId?: string | null;
|
|
7889
|
+
totalDowntimeDurationMilliseconds?: number;
|
|
7890
|
+
downtimeReasons?: DowntimeReasonReport[];
|
|
7891
|
+
}
|
|
7892
|
+
export declare class DowntimeReasonReport implements IDowntimeReasonReport {
|
|
7893
|
+
reasonId: string;
|
|
7894
|
+
reasonType: DowntimeReasonTypeDto;
|
|
7895
|
+
reason: string;
|
|
7896
|
+
parentReasonId: string;
|
|
7897
|
+
parentReason: string;
|
|
7898
|
+
totalDurationMilliseconds: number;
|
|
7899
|
+
count: number;
|
|
7900
|
+
details: DowntimeReasonInformation[];
|
|
7901
|
+
constructor(data?: IDowntimeReasonReport);
|
|
7902
|
+
init(_data?: any): void;
|
|
7903
|
+
static fromJS(data: any): DowntimeReasonReport;
|
|
7904
|
+
toJSON(data?: any): any;
|
|
7905
|
+
}
|
|
7906
|
+
export interface IDowntimeReasonReport {
|
|
7907
|
+
reasonId: string;
|
|
7908
|
+
reasonType: DowntimeReasonTypeDto;
|
|
7909
|
+
reason: string;
|
|
7910
|
+
parentReasonId: string;
|
|
7911
|
+
parentReason: string;
|
|
7912
|
+
totalDurationMilliseconds: number;
|
|
7913
|
+
count: number;
|
|
7914
|
+
details: DowntimeReasonInformation[];
|
|
7915
|
+
}
|
|
7916
|
+
export declare class DowntimeReasonInformation implements IDowntimeReasonInformation {
|
|
7917
|
+
downtimeReason: DowntimePeriodReasonDto;
|
|
7918
|
+
machine: string;
|
|
7919
|
+
constructor(data?: IDowntimeReasonInformation);
|
|
7920
|
+
init(_data?: any): void;
|
|
7921
|
+
static fromJS(data: any): DowntimeReasonInformation;
|
|
7922
|
+
toJSON(data?: any): any;
|
|
7923
|
+
}
|
|
7924
|
+
export interface IDowntimeReasonInformation {
|
|
7925
|
+
downtimeReason: DowntimePeriodReasonDto;
|
|
7926
|
+
machine: string;
|
|
7927
|
+
}
|
|
7928
|
+
export declare class CreateDowntimeReasonsReportRequest implements ICreateDowntimeReasonsReportRequest {
|
|
7929
|
+
machineExternalIds?: string[] | null;
|
|
7930
|
+
machineGroupNames?: string[] | null;
|
|
7931
|
+
startTime?: Date | null;
|
|
7932
|
+
endTime?: Date | null;
|
|
7933
|
+
constructor(data?: ICreateDowntimeReasonsReportRequest);
|
|
7934
|
+
init(_data?: any): void;
|
|
7935
|
+
static fromJS(data: any): CreateDowntimeReasonsReportRequest;
|
|
7936
|
+
toJSON(data?: any): any;
|
|
7937
|
+
}
|
|
7938
|
+
export interface ICreateDowntimeReasonsReportRequest {
|
|
7939
|
+
machineExternalIds?: string[] | null;
|
|
7940
|
+
machineGroupNames?: string[] | null;
|
|
7941
|
+
startTime?: Date | null;
|
|
7942
|
+
endTime?: Date | null;
|
|
7943
|
+
}
|
|
7944
|
+
export declare class MachineGroupCapacityDto implements IMachineGroupCapacityDto {
|
|
7945
|
+
machineGroupName: string;
|
|
7946
|
+
machine: MachineCapacityDto[];
|
|
7947
|
+
constructor(data?: IMachineGroupCapacityDto);
|
|
7948
|
+
init(_data?: any): void;
|
|
7949
|
+
static fromJS(data: any): MachineGroupCapacityDto;
|
|
7950
|
+
toJSON(data?: any): any;
|
|
7951
|
+
}
|
|
7952
|
+
export interface IMachineGroupCapacityDto {
|
|
7953
|
+
machineGroupName: string;
|
|
7954
|
+
machine: MachineCapacityDto[];
|
|
7955
|
+
}
|
|
7956
|
+
export declare class MachineCapacityDto implements IMachineCapacityDto {
|
|
7957
|
+
machineExternalId: string;
|
|
7958
|
+
name: string;
|
|
7959
|
+
description?: string | null;
|
|
7960
|
+
comment?: string | null;
|
|
7961
|
+
utilizationPercent: number;
|
|
7962
|
+
capacity: MachineCapacitySettingsDto[];
|
|
7963
|
+
created?: Date | null;
|
|
7964
|
+
updated?: Date | null;
|
|
7965
|
+
updatedBy?: string | null;
|
|
7966
|
+
updatedById?: string | null;
|
|
7967
|
+
constructor(data?: IMachineCapacityDto);
|
|
7968
|
+
init(_data?: any): void;
|
|
7969
|
+
static fromJS(data: any): MachineCapacityDto;
|
|
7970
|
+
toJSON(data?: any): any;
|
|
7971
|
+
}
|
|
7972
|
+
export interface IMachineCapacityDto {
|
|
7973
|
+
machineExternalId: string;
|
|
7974
|
+
name: string;
|
|
7975
|
+
description?: string | null;
|
|
7976
|
+
comment?: string | null;
|
|
7977
|
+
utilizationPercent: number;
|
|
7978
|
+
capacity: MachineCapacitySettingsDto[];
|
|
7979
|
+
created?: Date | null;
|
|
7980
|
+
updated?: Date | null;
|
|
7981
|
+
updatedBy?: string | null;
|
|
7982
|
+
updatedById?: string | null;
|
|
7983
|
+
}
|
|
7984
|
+
export declare class MachineCapacitySettingsDto implements IMachineCapacitySettingsDto {
|
|
7985
|
+
dayIndex: number;
|
|
7986
|
+
capacityHours: number;
|
|
7987
|
+
constructor(data?: IMachineCapacitySettingsDto);
|
|
7988
|
+
init(_data?: any): void;
|
|
7989
|
+
static fromJS(data: any): MachineCapacitySettingsDto;
|
|
7990
|
+
toJSON(data?: any): any;
|
|
7991
|
+
}
|
|
7992
|
+
export interface IMachineCapacitySettingsDto {
|
|
7993
|
+
dayIndex: number;
|
|
7994
|
+
capacityHours: number;
|
|
7995
|
+
}
|
|
7996
|
+
export declare class UpdateMachinesCapacity implements IUpdateMachinesCapacity {
|
|
7997
|
+
machineExternalId: string;
|
|
7998
|
+
comment?: string | null;
|
|
7999
|
+
utilizationPercent?: number | null;
|
|
8000
|
+
capacity?: MachineCapacitySettingsDto[] | null;
|
|
8001
|
+
constructor(data?: IUpdateMachinesCapacity);
|
|
8002
|
+
init(_data?: any): void;
|
|
8003
|
+
static fromJS(data: any): UpdateMachinesCapacity;
|
|
8004
|
+
toJSON(data?: any): any;
|
|
8005
|
+
}
|
|
8006
|
+
export interface IUpdateMachinesCapacity {
|
|
8007
|
+
machineExternalId: string;
|
|
8008
|
+
comment?: string | null;
|
|
8009
|
+
utilizationPercent?: number | null;
|
|
8010
|
+
capacity?: MachineCapacitySettingsDto[] | null;
|
|
8011
|
+
}
|
|
8012
|
+
export declare class MachineKpiDto implements IMachineKpiDto {
|
|
8013
|
+
uptimeToNow: number;
|
|
8014
|
+
uptimeToNowPreviousPeriod: number;
|
|
8015
|
+
averageUpTime: number;
|
|
8016
|
+
uptimeTargetReached: number;
|
|
8017
|
+
days: MachineDayKpiDto[];
|
|
8018
|
+
constructor(data?: IMachineKpiDto);
|
|
8019
|
+
init(_data?: any): void;
|
|
8020
|
+
static fromJS(data: any): MachineKpiDto;
|
|
8021
|
+
toJSON(data?: any): any;
|
|
8022
|
+
}
|
|
8023
|
+
export interface IMachineKpiDto {
|
|
8024
|
+
uptimeToNow: number;
|
|
8025
|
+
uptimeToNowPreviousPeriod: number;
|
|
8026
|
+
averageUpTime: number;
|
|
8027
|
+
uptimeTargetReached: number;
|
|
8028
|
+
days: MachineDayKpiDto[];
|
|
8029
|
+
}
|
|
8030
|
+
export declare class MachineDayKpiDto implements IMachineDayKpiDto {
|
|
8031
|
+
date: Date;
|
|
8032
|
+
uptime: number;
|
|
8033
|
+
utilizationGoal: number;
|
|
8034
|
+
constructor(data?: IMachineDayKpiDto);
|
|
8035
|
+
init(_data?: any): void;
|
|
8036
|
+
static fromJS(data: any): MachineDayKpiDto;
|
|
8037
|
+
toJSON(data?: any): any;
|
|
8038
|
+
}
|
|
8039
|
+
export interface IMachineDayKpiDto {
|
|
8040
|
+
date: Date;
|
|
8041
|
+
uptime: number;
|
|
8042
|
+
utilizationGoal: number;
|
|
8043
|
+
}
|
|
8044
|
+
export declare class MachineDailyUptimeDto implements IMachineDailyUptimeDto {
|
|
8045
|
+
date?: Date;
|
|
8046
|
+
historicUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
|
|
8047
|
+
todayUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
|
|
8048
|
+
constructor(data?: IMachineDailyUptimeDto);
|
|
8049
|
+
init(_data?: any): void;
|
|
8050
|
+
static fromJS(data: any): MachineDailyUptimeDto;
|
|
8051
|
+
toJSON(data?: any): any;
|
|
8052
|
+
}
|
|
8053
|
+
export interface IMachineDailyUptimeDto {
|
|
8054
|
+
date?: Date;
|
|
8055
|
+
historicUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
|
|
8056
|
+
todayUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
|
|
8057
|
+
}
|
|
8058
|
+
export declare class MachineDailyUptimePointDto implements IMachineDailyUptimePointDto {
|
|
8059
|
+
date?: Date;
|
|
8060
|
+
uptime?: number;
|
|
8061
|
+
constructor(data?: IMachineDailyUptimePointDto);
|
|
8062
|
+
init(_data?: any): void;
|
|
8063
|
+
static fromJS(data: any): MachineDailyUptimePointDto;
|
|
8064
|
+
toJSON(data?: any): any;
|
|
8065
|
+
}
|
|
8066
|
+
export interface IMachineDailyUptimePointDto {
|
|
8067
|
+
date?: Date;
|
|
8068
|
+
uptime?: number;
|
|
8069
|
+
}
|
|
8070
|
+
export declare class MachineGroupDto implements IMachineGroupDto {
|
|
8071
|
+
id: string;
|
|
8072
|
+
name: string;
|
|
8073
|
+
companyId?: string | null;
|
|
8074
|
+
machines: MachineGroupMemberDto[];
|
|
8075
|
+
constructor(data?: IMachineGroupDto);
|
|
8076
|
+
init(_data?: any): void;
|
|
8077
|
+
static fromJS(data: any): MachineGroupDto;
|
|
8078
|
+
toJSON(data?: any): any;
|
|
8079
|
+
}
|
|
8080
|
+
export interface IMachineGroupDto {
|
|
8081
|
+
id: string;
|
|
8082
|
+
name: string;
|
|
8083
|
+
companyId?: string | null;
|
|
8084
|
+
machines: MachineGroupMemberDto[];
|
|
8085
|
+
}
|
|
8086
|
+
export declare class MachineGroupMemberDto implements IMachineGroupMemberDto {
|
|
8087
|
+
id: number;
|
|
8088
|
+
externalId: string;
|
|
8089
|
+
name: string;
|
|
8090
|
+
description?: string | null;
|
|
8091
|
+
type?: string | null;
|
|
8092
|
+
constructor(data?: IMachineGroupMemberDto);
|
|
8093
|
+
init(_data?: any): void;
|
|
8094
|
+
static fromJS(data: any): MachineGroupMemberDto;
|
|
8095
|
+
toJSON(data?: any): any;
|
|
8096
|
+
}
|
|
8097
|
+
export interface IMachineGroupMemberDto {
|
|
8098
|
+
id: number;
|
|
8099
|
+
externalId: string;
|
|
8100
|
+
name: string;
|
|
8101
|
+
description?: string | null;
|
|
8102
|
+
type?: string | null;
|
|
8103
|
+
}
|
|
8104
|
+
export declare class CreateMachineGroupResponse implements ICreateMachineGroupResponse {
|
|
8105
|
+
id: string;
|
|
8106
|
+
constructor(data?: ICreateMachineGroupResponse);
|
|
8107
|
+
init(_data?: any): void;
|
|
8108
|
+
static fromJS(data: any): CreateMachineGroupResponse;
|
|
8109
|
+
toJSON(data?: any): any;
|
|
8110
|
+
}
|
|
8111
|
+
export interface ICreateMachineGroupResponse {
|
|
8112
|
+
id: string;
|
|
8113
|
+
}
|
|
8114
|
+
export declare class CreateMachineGroup implements ICreateMachineGroup {
|
|
8115
|
+
name: string;
|
|
8116
|
+
machineExternalIds?: string[] | null;
|
|
8117
|
+
constructor(data?: ICreateMachineGroup);
|
|
8118
|
+
init(_data?: any): void;
|
|
8119
|
+
static fromJS(data: any): CreateMachineGroup;
|
|
8120
|
+
toJSON(data?: any): any;
|
|
8121
|
+
}
|
|
8122
|
+
export interface ICreateMachineGroup {
|
|
8123
|
+
name: string;
|
|
8124
|
+
machineExternalIds?: string[] | null;
|
|
8125
|
+
}
|
|
8126
|
+
export declare class UpdateMachineGroup implements IUpdateMachineGroup {
|
|
8127
|
+
id: string;
|
|
8128
|
+
name: string;
|
|
8129
|
+
machineExternalIds?: string[] | null;
|
|
8130
|
+
constructor(data?: IUpdateMachineGroup);
|
|
8131
|
+
init(_data?: any): void;
|
|
8132
|
+
static fromJS(data: any): UpdateMachineGroup;
|
|
8133
|
+
toJSON(data?: any): any;
|
|
8134
|
+
}
|
|
8135
|
+
export interface IUpdateMachineGroup {
|
|
8136
|
+
id: string;
|
|
8137
|
+
name: string;
|
|
8138
|
+
machineExternalIds?: string[] | null;
|
|
8139
|
+
}
|
|
8140
|
+
export declare class MachineErpDataListDto implements IMachineErpDataListDto {
|
|
8141
|
+
machines: SingleMachineErpDataListDto[];
|
|
8142
|
+
constructor(data?: IMachineErpDataListDto);
|
|
8143
|
+
init(_data?: any): void;
|
|
8144
|
+
static fromJS(data: any): MachineErpDataListDto;
|
|
8145
|
+
toJSON(data?: any): any;
|
|
8146
|
+
}
|
|
8147
|
+
export interface IMachineErpDataListDto {
|
|
8148
|
+
machines: SingleMachineErpDataListDto[];
|
|
8149
|
+
}
|
|
8150
|
+
export declare class SingleMachineErpDataListDto implements ISingleMachineErpDataListDto {
|
|
8151
|
+
assetId: number;
|
|
8152
|
+
name: string;
|
|
8153
|
+
description?: string;
|
|
8154
|
+
activeOrders: MachineErpDataDto[];
|
|
8155
|
+
lastActiveEvent?: WorkorderOperationEventDto | null;
|
|
8156
|
+
downtimePeriodReason?: DowntimePeriodReasonDto | null;
|
|
8157
|
+
constructor(data?: ISingleMachineErpDataListDto);
|
|
8158
|
+
init(_data?: any): void;
|
|
8159
|
+
static fromJS(data: any): SingleMachineErpDataListDto;
|
|
8160
|
+
toJSON(data?: any): any;
|
|
8161
|
+
}
|
|
8162
|
+
export interface ISingleMachineErpDataListDto {
|
|
8163
|
+
assetId: number;
|
|
8164
|
+
name: string;
|
|
8165
|
+
description?: string;
|
|
8166
|
+
activeOrders: MachineErpDataDto[];
|
|
8167
|
+
lastActiveEvent?: WorkorderOperationEventDto | null;
|
|
8168
|
+
downtimePeriodReason?: DowntimePeriodReasonDto | null;
|
|
8169
|
+
}
|
|
8170
|
+
export declare class MachineErpDataDto implements IMachineErpDataDto {
|
|
8171
|
+
workOrderId: string;
|
|
8172
|
+
part: PartDto;
|
|
8173
|
+
quantity: number;
|
|
8174
|
+
producedQuantity: number;
|
|
8175
|
+
scrappedQuantity: number;
|
|
8176
|
+
operation: number;
|
|
8177
|
+
plannedTime: number;
|
|
8178
|
+
usedTime: number;
|
|
8179
|
+
startTime: Date;
|
|
8180
|
+
unit?: string | null;
|
|
8181
|
+
customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
|
|
8182
|
+
workOrderDescription?: string | null;
|
|
8183
|
+
operationDescription?: string;
|
|
8184
|
+
project?: WorkOrderProjectDto | null;
|
|
8185
|
+
constructor(data?: IMachineErpDataDto);
|
|
8186
|
+
init(_data?: any): void;
|
|
8187
|
+
static fromJS(data: any): MachineErpDataDto;
|
|
8188
|
+
toJSON(data?: any): any;
|
|
8189
|
+
}
|
|
8190
|
+
export interface IMachineErpDataDto {
|
|
8191
|
+
workOrderId: string;
|
|
8192
|
+
part: PartDto;
|
|
8193
|
+
quantity: number;
|
|
8194
|
+
producedQuantity: number;
|
|
8195
|
+
scrappedQuantity: number;
|
|
8196
|
+
operation: number;
|
|
8197
|
+
plannedTime: number;
|
|
8198
|
+
usedTime: number;
|
|
8199
|
+
startTime: Date;
|
|
8200
|
+
unit?: string | null;
|
|
8201
|
+
customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
|
|
8202
|
+
workOrderDescription?: string | null;
|
|
8203
|
+
operationDescription?: string;
|
|
8204
|
+
project?: WorkOrderProjectDto | null;
|
|
8205
|
+
}
|
|
8206
|
+
export declare class UtilizationSummaryDto implements IUtilizationSummaryDto {
|
|
8207
|
+
factory: FactoryUtilizationDto;
|
|
8208
|
+
groups: MachineGroupUtilizationDto[];
|
|
8209
|
+
ungroupedMachines: MachineUtilizationV2Dto[];
|
|
8210
|
+
constructor(data?: IUtilizationSummaryDto);
|
|
8211
|
+
init(_data?: any): void;
|
|
8212
|
+
static fromJS(data: any): UtilizationSummaryDto;
|
|
8213
|
+
toJSON(data?: any): any;
|
|
8214
|
+
}
|
|
8215
|
+
export interface IUtilizationSummaryDto {
|
|
8216
|
+
factory: FactoryUtilizationDto;
|
|
8217
|
+
groups: MachineGroupUtilizationDto[];
|
|
8218
|
+
ungroupedMachines: MachineUtilizationV2Dto[];
|
|
8219
|
+
}
|
|
8220
|
+
export declare class MachineGroupUtilizationDto implements IMachineGroupUtilizationDto {
|
|
8221
|
+
name: string;
|
|
8222
|
+
utilization: UtilizationDto;
|
|
8223
|
+
machines: MachineUtilizationV2Dto[];
|
|
8224
|
+
constructor(data?: IMachineGroupUtilizationDto);
|
|
8225
|
+
init(_data?: any): void;
|
|
8226
|
+
static fromJS(data: any): MachineGroupUtilizationDto;
|
|
8227
|
+
toJSON(data?: any): any;
|
|
8228
|
+
}
|
|
8229
|
+
export interface IMachineGroupUtilizationDto {
|
|
8230
|
+
name: string;
|
|
8231
|
+
utilization: UtilizationDto;
|
|
8232
|
+
machines: MachineUtilizationV2Dto[];
|
|
8233
|
+
}
|
|
8234
|
+
export declare class MachineUtilizationV2Dto implements IMachineUtilizationV2Dto {
|
|
8235
|
+
id?: number;
|
|
8236
|
+
name: string;
|
|
8237
|
+
description?: string | null;
|
|
8238
|
+
utilization: UtilizationDto;
|
|
8239
|
+
constructor(data?: IMachineUtilizationV2Dto);
|
|
8240
|
+
init(_data?: any): void;
|
|
8241
|
+
static fromJS(data: any): MachineUtilizationV2Dto;
|
|
8242
|
+
toJSON(data?: any): any;
|
|
8243
|
+
}
|
|
8244
|
+
export interface IMachineUtilizationV2Dto {
|
|
8245
|
+
id?: number;
|
|
8246
|
+
name: string;
|
|
8247
|
+
description?: string | null;
|
|
8248
|
+
utilization: UtilizationDto;
|
|
8249
|
+
}
|
|
8250
|
+
export declare class CrossCompanyUtilizationSummaryDto implements ICrossCompanyUtilizationSummaryDto {
|
|
8251
|
+
crossCompany: FactoryUtilizationDto;
|
|
8252
|
+
companies: MachineGroupUtilizationDto[];
|
|
8253
|
+
constructor(data?: ICrossCompanyUtilizationSummaryDto);
|
|
8254
|
+
init(_data?: any): void;
|
|
8255
|
+
static fromJS(data: any): CrossCompanyUtilizationSummaryDto;
|
|
8256
|
+
toJSON(data?: any): any;
|
|
8257
|
+
}
|
|
8258
|
+
export interface ICrossCompanyUtilizationSummaryDto {
|
|
8259
|
+
crossCompany: FactoryUtilizationDto;
|
|
8260
|
+
companies: MachineGroupUtilizationDto[];
|
|
8261
|
+
}
|
|
7036
8262
|
export declare class LinkDto implements ILinkDto {
|
|
7037
8263
|
id: string;
|
|
7038
8264
|
uri: string;
|
|
@@ -14927,7 +16153,7 @@ export declare class AmcResultLiteDto implements IAmcResultLiteDto {
|
|
|
14927
16153
|
purchaseOrderItem?: string | null;
|
|
14928
16154
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
14929
16155
|
purchaseOrderLot?: string | null;
|
|
14930
|
-
status:
|
|
16156
|
+
status: AmcCheckStatus;
|
|
14931
16157
|
created: Date;
|
|
14932
16158
|
createdBy: string;
|
|
14933
16159
|
createdById: string;
|
|
@@ -14956,17 +16182,17 @@ export interface IAmcResultLiteDto {
|
|
|
14956
16182
|
purchaseOrderItem?: string | null;
|
|
14957
16183
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
14958
16184
|
purchaseOrderLot?: string | null;
|
|
14959
|
-
status:
|
|
16185
|
+
status: AmcCheckStatus;
|
|
14960
16186
|
created: Date;
|
|
14961
16187
|
createdBy: string;
|
|
14962
16188
|
createdById: string;
|
|
14963
16189
|
updatedBy?: string | null;
|
|
14964
16190
|
updatedById?: string | null;
|
|
14965
16191
|
}
|
|
14966
|
-
export type
|
|
16192
|
+
export type AmcCheckStatus = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected";
|
|
14967
16193
|
export declare class AmcCheckListRequestDto implements IAmcCheckListRequestDto {
|
|
14968
16194
|
pageSize?: number | null;
|
|
14969
|
-
orderBy?:
|
|
16195
|
+
orderBy?: AmcCheckListOrderByColumn | null;
|
|
14970
16196
|
searchTerm?: string | null;
|
|
14971
16197
|
originalReportFilter?: string | null;
|
|
14972
16198
|
generatedReportFilter?: string | null;
|
|
@@ -14981,7 +16207,7 @@ export declare class AmcCheckListRequestDto implements IAmcCheckListRequestDto {
|
|
|
14981
16207
|
lotFilter?: string | null;
|
|
14982
16208
|
dateFromFilter?: Date | null;
|
|
14983
16209
|
dateToFilter?: Date | null;
|
|
14984
|
-
statusFilter:
|
|
16210
|
+
statusFilter: AmcCheckStatus[];
|
|
14985
16211
|
continuationToken?: string | null;
|
|
14986
16212
|
constructor(data?: IAmcCheckListRequestDto);
|
|
14987
16213
|
init(_data?: any): void;
|
|
@@ -14990,7 +16216,7 @@ export declare class AmcCheckListRequestDto implements IAmcCheckListRequestDto {
|
|
|
14990
16216
|
}
|
|
14991
16217
|
export interface IAmcCheckListRequestDto {
|
|
14992
16218
|
pageSize?: number | null;
|
|
14993
|
-
orderBy?:
|
|
16219
|
+
orderBy?: AmcCheckListOrderByColumn | null;
|
|
14994
16220
|
searchTerm?: string | null;
|
|
14995
16221
|
originalReportFilter?: string | null;
|
|
14996
16222
|
generatedReportFilter?: string | null;
|
|
@@ -15005,10 +16231,10 @@ export interface IAmcCheckListRequestDto {
|
|
|
15005
16231
|
lotFilter?: string | null;
|
|
15006
16232
|
dateFromFilter?: Date | null;
|
|
15007
16233
|
dateToFilter?: Date | null;
|
|
15008
|
-
statusFilter:
|
|
16234
|
+
statusFilter: AmcCheckStatus[];
|
|
15009
16235
|
continuationToken?: string | null;
|
|
15010
16236
|
}
|
|
15011
|
-
export type
|
|
16237
|
+
export type AmcCheckListOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status";
|
|
15012
16238
|
export declare class AmcResultDto implements IAmcResultDto {
|
|
15013
16239
|
resultId: string;
|
|
15014
16240
|
originalMaterialCertificate: FileDto;
|
|
@@ -15027,7 +16253,7 @@ export declare class AmcResultDto implements IAmcResultDto {
|
|
|
15027
16253
|
purchaseOrderItem?: string | null;
|
|
15028
16254
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
15029
16255
|
purchaseOrderLot?: string | null;
|
|
15030
|
-
status:
|
|
16256
|
+
status: AmcCheckStatus;
|
|
15031
16257
|
created: Date;
|
|
15032
16258
|
createdBy: string;
|
|
15033
16259
|
createdById: string;
|
|
@@ -15061,7 +16287,7 @@ export interface IAmcResultDto {
|
|
|
15061
16287
|
purchaseOrderItem?: string | null;
|
|
15062
16288
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
15063
16289
|
purchaseOrderLot?: string | null;
|
|
15064
|
-
status:
|
|
16290
|
+
status: AmcCheckStatus;
|
|
15065
16291
|
created: Date;
|
|
15066
16292
|
createdBy: string;
|
|
15067
16293
|
createdById: string;
|
|
@@ -15317,7 +16543,7 @@ export declare class AmcSpecificationResultLineDto implements IAmcSpecificationR
|
|
|
15317
16543
|
specificationValue2?: string | null;
|
|
15318
16544
|
specificationSymbol?: string | null;
|
|
15319
16545
|
readValue?: string | null;
|
|
15320
|
-
status:
|
|
16546
|
+
status: AmcSpecificationResultLineStatus;
|
|
15321
16547
|
override?: AmcResultOverrideDto | null;
|
|
15322
16548
|
constructor(data?: IAmcSpecificationResultLineDto);
|
|
15323
16549
|
init(_data?: any): void;
|
|
@@ -15330,10 +16556,10 @@ export interface IAmcSpecificationResultLineDto {
|
|
|
15330
16556
|
specificationValue2?: string | null;
|
|
15331
16557
|
specificationSymbol?: string | null;
|
|
15332
16558
|
readValue?: string | null;
|
|
15333
|
-
status:
|
|
16559
|
+
status: AmcSpecificationResultLineStatus;
|
|
15334
16560
|
override?: AmcResultOverrideDto | null;
|
|
15335
16561
|
}
|
|
15336
|
-
export type
|
|
16562
|
+
export type AmcSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok";
|
|
15337
16563
|
export declare class AmcMechanicalSpecificationResultDto implements IAmcMechanicalSpecificationResultDto {
|
|
15338
16564
|
yieldStrength?: AmcSpecificationResultLineDto | null;
|
|
15339
16565
|
tensileStrength?: AmcSpecificationResultLineDto | null;
|
|
@@ -15370,7 +16596,7 @@ export declare class AmcSpecificationResultFerriteLineDto implements IAmcSpecifi
|
|
|
15370
16596
|
specificationValue2?: string | null;
|
|
15371
16597
|
specificationSymbol?: string | null;
|
|
15372
16598
|
readValue?: string | null;
|
|
15373
|
-
status:
|
|
16599
|
+
status: AmcSpecificationResultLineStatus;
|
|
15374
16600
|
override?: AmcResultOverrideDto | null;
|
|
15375
16601
|
measurementMethod?: string | null;
|
|
15376
16602
|
constructor(data?: IAmcSpecificationResultFerriteLineDto);
|
|
@@ -15384,7 +16610,7 @@ export interface IAmcSpecificationResultFerriteLineDto {
|
|
|
15384
16610
|
specificationValue2?: string | null;
|
|
15385
16611
|
specificationSymbol?: string | null;
|
|
15386
16612
|
readValue?: string | null;
|
|
15387
|
-
status:
|
|
16613
|
+
status: AmcSpecificationResultLineStatus;
|
|
15388
16614
|
override?: AmcResultOverrideDto | null;
|
|
15389
16615
|
measurementMethod?: string | null;
|
|
15390
16616
|
}
|
|
@@ -15399,18 +16625,18 @@ export interface IAmcHeatTreatmentSpecificationResultDto {
|
|
|
15399
16625
|
heatTreatments: AmcHeatTreatmentsResultDto[];
|
|
15400
16626
|
}
|
|
15401
16627
|
export declare class AmcHeatTreatmentsResultDto implements IAmcHeatTreatmentsResultDto {
|
|
15402
|
-
heatingMethod:
|
|
16628
|
+
heatingMethod: AmcHeatingTreatmentMethod;
|
|
15403
16629
|
specificationHeatingTreatmentTemperature?: number | null;
|
|
15404
16630
|
specificationHeatingHoldingTime?: number | null;
|
|
15405
16631
|
heatingTreatmentTemperature?: number | null;
|
|
15406
16632
|
heatingHoldingTime?: number | null;
|
|
15407
|
-
specificationCoolingMethods?:
|
|
16633
|
+
specificationCoolingMethods?: AmcCoolingTreatmentMethod[] | null;
|
|
15408
16634
|
specificationCoolingTreatmentTemperature?: number | null;
|
|
15409
16635
|
specificationCoolingHoldingTime?: number | null;
|
|
15410
|
-
coolingMethod?:
|
|
16636
|
+
coolingMethod?: AmcCoolingTreatmentMethod | null;
|
|
15411
16637
|
coolingTreatmentTemperature?: number | null;
|
|
15412
16638
|
coolingHoldingTime?: number | null;
|
|
15413
|
-
status:
|
|
16639
|
+
status: AmcSpecificationResultLineStatus;
|
|
15414
16640
|
override?: AmcResultOverrideDto | null;
|
|
15415
16641
|
constructor(data?: IAmcHeatTreatmentsResultDto);
|
|
15416
16642
|
init(_data?: any): void;
|
|
@@ -15418,22 +16644,22 @@ export declare class AmcHeatTreatmentsResultDto implements IAmcHeatTreatmentsRes
|
|
|
15418
16644
|
toJSON(data?: any): any;
|
|
15419
16645
|
}
|
|
15420
16646
|
export interface IAmcHeatTreatmentsResultDto {
|
|
15421
|
-
heatingMethod:
|
|
16647
|
+
heatingMethod: AmcHeatingTreatmentMethod;
|
|
15422
16648
|
specificationHeatingTreatmentTemperature?: number | null;
|
|
15423
16649
|
specificationHeatingHoldingTime?: number | null;
|
|
15424
16650
|
heatingTreatmentTemperature?: number | null;
|
|
15425
16651
|
heatingHoldingTime?: number | null;
|
|
15426
|
-
specificationCoolingMethods?:
|
|
16652
|
+
specificationCoolingMethods?: AmcCoolingTreatmentMethod[] | null;
|
|
15427
16653
|
specificationCoolingTreatmentTemperature?: number | null;
|
|
15428
16654
|
specificationCoolingHoldingTime?: number | null;
|
|
15429
|
-
coolingMethod?:
|
|
16655
|
+
coolingMethod?: AmcCoolingTreatmentMethod | null;
|
|
15430
16656
|
coolingTreatmentTemperature?: number | null;
|
|
15431
16657
|
coolingHoldingTime?: number | null;
|
|
15432
|
-
status:
|
|
16658
|
+
status: AmcSpecificationResultLineStatus;
|
|
15433
16659
|
override?: AmcResultOverrideDto | null;
|
|
15434
16660
|
}
|
|
15435
|
-
export type
|
|
15436
|
-
export type
|
|
16661
|
+
export type AmcHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering";
|
|
16662
|
+
export type AmcCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching";
|
|
15437
16663
|
export declare class ProcessAmcCheckRequestDto implements IProcessAmcCheckRequestDto {
|
|
15438
16664
|
files: UploadFileDto[];
|
|
15439
16665
|
specificationId: string;
|
|
@@ -15459,7 +16685,7 @@ export declare class UpdateAmcResultRequestDto implements IUpdateAmcResultReques
|
|
|
15459
16685
|
project?: string | null;
|
|
15460
16686
|
purchaseOrder?: string | null;
|
|
15461
16687
|
workOrder?: string | null;
|
|
15462
|
-
|
|
16688
|
+
status: AmcCheckStatusUpdate;
|
|
15463
16689
|
certificateTypeSection: UpdateAmcTypeResultChecksDto;
|
|
15464
16690
|
chemistrySpecification: UpdateAmcChemistrySpecificationResultDto;
|
|
15465
16691
|
mechanicalSpecification: UpdateAmcMechanicalSpecificationResultDto;
|
|
@@ -15475,14 +16701,14 @@ export interface IUpdateAmcResultRequestDto {
|
|
|
15475
16701
|
project?: string | null;
|
|
15476
16702
|
purchaseOrder?: string | null;
|
|
15477
16703
|
workOrder?: string | null;
|
|
15478
|
-
|
|
16704
|
+
status: AmcCheckStatusUpdate;
|
|
15479
16705
|
certificateTypeSection: UpdateAmcTypeResultChecksDto;
|
|
15480
16706
|
chemistrySpecification: UpdateAmcChemistrySpecificationResultDto;
|
|
15481
16707
|
mechanicalSpecification: UpdateAmcMechanicalSpecificationResultDto;
|
|
15482
16708
|
ferriteSpecification: UpdateAmcFerriteSpecificationResultDto;
|
|
15483
16709
|
heatSpecification: UpdateAmcHeatTreatmentSpecificationResultDto;
|
|
15484
16710
|
}
|
|
15485
|
-
export type
|
|
16711
|
+
export type AmcCheckStatusUpdate = "Draft" | "Approve" | "Reject";
|
|
15486
16712
|
export declare class UpdateAmcTypeResultChecksDto implements IUpdateAmcTypeResultChecksDto {
|
|
15487
16713
|
manufacturer: UpdateAmcTypeManufacturerResultChecksDto;
|
|
15488
16714
|
signature: UpdateAmcTypeSignatureResultChecksDto;
|
|
@@ -15760,7 +16986,7 @@ export declare class AmcSpecificationLiteDto implements IAmcSpecificationLiteDto
|
|
|
15760
16986
|
number: string;
|
|
15761
16987
|
revision: string;
|
|
15762
16988
|
date: Date;
|
|
15763
|
-
status:
|
|
16989
|
+
status: AmcSpecificationStatus;
|
|
15764
16990
|
summary?: string | null;
|
|
15765
16991
|
relatedStandards: string[];
|
|
15766
16992
|
created: Date;
|
|
@@ -15780,7 +17006,7 @@ export interface IAmcSpecificationLiteDto {
|
|
|
15780
17006
|
number: string;
|
|
15781
17007
|
revision: string;
|
|
15782
17008
|
date: Date;
|
|
15783
|
-
status:
|
|
17009
|
+
status: AmcSpecificationStatus;
|
|
15784
17010
|
summary?: string | null;
|
|
15785
17011
|
relatedStandards: string[];
|
|
15786
17012
|
created: Date;
|
|
@@ -15789,7 +17015,7 @@ export interface IAmcSpecificationLiteDto {
|
|
|
15789
17015
|
updatedBy?: string | null;
|
|
15790
17016
|
updatedById?: string | null;
|
|
15791
17017
|
}
|
|
15792
|
-
export type
|
|
17018
|
+
export type AmcSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected";
|
|
15793
17019
|
export declare class AmcSpecificationDto implements IAmcSpecificationDto {
|
|
15794
17020
|
specificationId: string;
|
|
15795
17021
|
version: number;
|
|
@@ -15797,7 +17023,7 @@ export declare class AmcSpecificationDto implements IAmcSpecificationDto {
|
|
|
15797
17023
|
number: string;
|
|
15798
17024
|
revision: string;
|
|
15799
17025
|
date: Date;
|
|
15800
|
-
status:
|
|
17026
|
+
status: AmcSpecificationStatus;
|
|
15801
17027
|
summary?: string | null;
|
|
15802
17028
|
relatedStandards: string[];
|
|
15803
17029
|
created: Date;
|
|
@@ -15821,7 +17047,7 @@ export interface IAmcSpecificationDto {
|
|
|
15821
17047
|
number: string;
|
|
15822
17048
|
revision: string;
|
|
15823
17049
|
date: Date;
|
|
15824
|
-
status:
|
|
17050
|
+
status: AmcSpecificationStatus;
|
|
15825
17051
|
summary?: string | null;
|
|
15826
17052
|
relatedStandards: string[];
|
|
15827
17053
|
created: Date;
|
|
@@ -15867,23 +17093,23 @@ export interface IAmcChemistrySpecificationDto {
|
|
|
15867
17093
|
iron?: AmcSpecificationLineDto | null;
|
|
15868
17094
|
}
|
|
15869
17095
|
export declare class AmcSpecificationLineDto implements IAmcSpecificationLineDto {
|
|
15870
|
-
operator:
|
|
17096
|
+
operator: AmcSpecificationOperator;
|
|
15871
17097
|
value1?: number | null;
|
|
15872
17098
|
value2?: number | null;
|
|
15873
|
-
symbol:
|
|
17099
|
+
symbol: AmcSpecificationSymbol;
|
|
15874
17100
|
constructor(data?: IAmcSpecificationLineDto);
|
|
15875
17101
|
init(_data?: any): void;
|
|
15876
17102
|
static fromJS(data: any): AmcSpecificationLineDto;
|
|
15877
17103
|
toJSON(data?: any): any;
|
|
15878
17104
|
}
|
|
15879
17105
|
export interface IAmcSpecificationLineDto {
|
|
15880
|
-
operator:
|
|
17106
|
+
operator: AmcSpecificationOperator;
|
|
15881
17107
|
value1?: number | null;
|
|
15882
17108
|
value2?: number | null;
|
|
15883
|
-
symbol:
|
|
17109
|
+
symbol: AmcSpecificationSymbol;
|
|
15884
17110
|
}
|
|
15885
|
-
export type
|
|
15886
|
-
export type
|
|
17111
|
+
export type AmcSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between";
|
|
17112
|
+
export type AmcSpecificationSymbol = "None" | "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw";
|
|
15887
17113
|
export declare class AmcMechanicalSpecificationDto implements IAmcMechanicalSpecificationDto {
|
|
15888
17114
|
yieldStrength?: AmcSpecificationLineDto | null;
|
|
15889
17115
|
tensileStrength?: AmcSpecificationLineDto | null;
|
|
@@ -15925,10 +17151,10 @@ export interface IAmcHeatTreatmentSpecificationDto {
|
|
|
15925
17151
|
heatTreatments: AmcHeatTreatmentsSpecificationDto[];
|
|
15926
17152
|
}
|
|
15927
17153
|
export declare class AmcHeatTreatmentsSpecificationDto implements IAmcHeatTreatmentsSpecificationDto {
|
|
15928
|
-
heatingMethod:
|
|
17154
|
+
heatingMethod: AmcHeatingTreatmentMethod;
|
|
15929
17155
|
heatingTreatmentTemperature?: number | null;
|
|
15930
17156
|
heatingHoldingTime?: number | null;
|
|
15931
|
-
coolingMethods?:
|
|
17157
|
+
coolingMethods?: AmcCoolingTreatmentMethod[] | null;
|
|
15932
17158
|
coolingTreatmentTemperature?: number | null;
|
|
15933
17159
|
coolingHoldingTime?: number | null;
|
|
15934
17160
|
constructor(data?: IAmcHeatTreatmentsSpecificationDto);
|
|
@@ -15937,10 +17163,10 @@ export declare class AmcHeatTreatmentsSpecificationDto implements IAmcHeatTreatm
|
|
|
15937
17163
|
toJSON(data?: any): any;
|
|
15938
17164
|
}
|
|
15939
17165
|
export interface IAmcHeatTreatmentsSpecificationDto {
|
|
15940
|
-
heatingMethod:
|
|
17166
|
+
heatingMethod: AmcHeatingTreatmentMethod;
|
|
15941
17167
|
heatingTreatmentTemperature?: number | null;
|
|
15942
17168
|
heatingHoldingTime?: number | null;
|
|
15943
|
-
coolingMethods?:
|
|
17169
|
+
coolingMethods?: AmcCoolingTreatmentMethod[] | null;
|
|
15944
17170
|
coolingTreatmentTemperature?: number | null;
|
|
15945
17171
|
coolingHoldingTime?: number | null;
|
|
15946
17172
|
}
|
|
@@ -15971,7 +17197,7 @@ export interface ICreateAmcSpecificationDto {
|
|
|
15971
17197
|
export declare class UpdateAmcSpecificationDto implements IUpdateAmcSpecificationDto {
|
|
15972
17198
|
specificationId: string;
|
|
15973
17199
|
version: number;
|
|
15974
|
-
status:
|
|
17200
|
+
status: AmcSpecificationStatusUpdate;
|
|
15975
17201
|
summary?: string | null;
|
|
15976
17202
|
relatedStandards: string[];
|
|
15977
17203
|
chemistrySpecification: AmcChemistrySpecificationDto;
|
|
@@ -15986,7 +17212,7 @@ export declare class UpdateAmcSpecificationDto implements IUpdateAmcSpecificatio
|
|
|
15986
17212
|
export interface IUpdateAmcSpecificationDto {
|
|
15987
17213
|
specificationId: string;
|
|
15988
17214
|
version: number;
|
|
15989
|
-
status:
|
|
17215
|
+
status: AmcSpecificationStatusUpdate;
|
|
15990
17216
|
summary?: string | null;
|
|
15991
17217
|
relatedStandards: string[];
|
|
15992
17218
|
chemistrySpecification: AmcChemistrySpecificationDto;
|
|
@@ -15994,13 +17220,13 @@ export interface IUpdateAmcSpecificationDto {
|
|
|
15994
17220
|
ferriteSpecification: AmcFerriteSpecificationDto;
|
|
15995
17221
|
heatSpecification: AmcHeatTreatmentSpecificationDto;
|
|
15996
17222
|
}
|
|
15997
|
-
export type
|
|
17223
|
+
export type AmcSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
15998
17224
|
export declare class AmcTypeLiteDto implements IAmcTypeLiteDto {
|
|
15999
17225
|
typeId: string;
|
|
16000
17226
|
version: number;
|
|
16001
17227
|
name: string;
|
|
16002
17228
|
revision: string;
|
|
16003
|
-
status:
|
|
17229
|
+
status: AmcTypeStatus;
|
|
16004
17230
|
description?: string | null;
|
|
16005
17231
|
isStandardCertificateType: boolean;
|
|
16006
17232
|
created: Date;
|
|
@@ -16018,7 +17244,7 @@ export interface IAmcTypeLiteDto {
|
|
|
16018
17244
|
version: number;
|
|
16019
17245
|
name: string;
|
|
16020
17246
|
revision: string;
|
|
16021
|
-
status:
|
|
17247
|
+
status: AmcTypeStatus;
|
|
16022
17248
|
description?: string | null;
|
|
16023
17249
|
isStandardCertificateType: boolean;
|
|
16024
17250
|
created: Date;
|
|
@@ -16027,13 +17253,13 @@ export interface IAmcTypeLiteDto {
|
|
|
16027
17253
|
updatedBy?: string | null;
|
|
16028
17254
|
updatedById?: string | null;
|
|
16029
17255
|
}
|
|
16030
|
-
export type
|
|
17256
|
+
export type AmcTypeStatus = "Draft" | "Released" | "Expired" | "Rejected";
|
|
16031
17257
|
export declare class AmcTypeDto implements IAmcTypeDto {
|
|
16032
17258
|
typeId: string;
|
|
16033
17259
|
version: number;
|
|
16034
17260
|
name: string;
|
|
16035
17261
|
revision: string;
|
|
16036
|
-
status:
|
|
17262
|
+
status: AmcTypeStatus;
|
|
16037
17263
|
description?: string | null;
|
|
16038
17264
|
isStandardCertificateType: boolean;
|
|
16039
17265
|
created: Date;
|
|
@@ -16052,7 +17278,7 @@ export interface IAmcTypeDto {
|
|
|
16052
17278
|
version: number;
|
|
16053
17279
|
name: string;
|
|
16054
17280
|
revision: string;
|
|
16055
|
-
status:
|
|
17281
|
+
status: AmcTypeStatus;
|
|
16056
17282
|
description?: string | null;
|
|
16057
17283
|
isStandardCertificateType: boolean;
|
|
16058
17284
|
created: Date;
|
|
@@ -16259,7 +17485,7 @@ export interface ICreateAmcTypeRequestDto {
|
|
|
16259
17485
|
export declare class UpdateAmcTypeDto implements IUpdateAmcTypeDto {
|
|
16260
17486
|
typeId: string;
|
|
16261
17487
|
version: number;
|
|
16262
|
-
status:
|
|
17488
|
+
status: AmcTypeStatusUpdate;
|
|
16263
17489
|
description?: string | null;
|
|
16264
17490
|
checks: AmcTypeChecksDto;
|
|
16265
17491
|
constructor(data?: IUpdateAmcTypeDto);
|
|
@@ -16270,11 +17496,11 @@ export declare class UpdateAmcTypeDto implements IUpdateAmcTypeDto {
|
|
|
16270
17496
|
export interface IUpdateAmcTypeDto {
|
|
16271
17497
|
typeId: string;
|
|
16272
17498
|
version: number;
|
|
16273
|
-
status:
|
|
17499
|
+
status: AmcTypeStatusUpdate;
|
|
16274
17500
|
description?: string | null;
|
|
16275
17501
|
checks: AmcTypeChecksDto;
|
|
16276
17502
|
}
|
|
16277
|
-
export type
|
|
17503
|
+
export type AmcTypeStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
16278
17504
|
export interface FileParameter {
|
|
16279
17505
|
data: any;
|
|
16280
17506
|
fileName: string;
|