@ignos/api-client 20260205.43.1 → 20260209.45.1-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/ignosportal-api.d.ts +125 -1351
- package/lib/ignosportal-api.js +8660 -13646
- package/package.json +1 -1
- package/src/ignosportal-api.ts +13255 -19274
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -150,80 +150,6 @@ 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
|
-
}
|
|
227
153
|
export interface IResourceUtilizationClient {
|
|
228
154
|
/**
|
|
229
155
|
* Get resource utilization data. Historic utilizations start from now, whereas the start for current utilization is
|
|
@@ -603,10 +529,6 @@ export interface IResourcesClient {
|
|
|
603
529
|
createResourceWithResource(request: CreateResourceWithMachine): Promise<void>;
|
|
604
530
|
createResourceInResourceGroup(request: CreateResourceInResourceGroup): Promise<void>;
|
|
605
531
|
deleteMachine(id: number): Promise<void>;
|
|
606
|
-
/**
|
|
607
|
-
* @deprecated
|
|
608
|
-
*/
|
|
609
|
-
listAllMachines(): Promise<MachineDto[]>;
|
|
610
532
|
listAllResources(): Promise<ApplicationResourcesResourceDto[]>;
|
|
611
533
|
}
|
|
612
534
|
export declare class ResourcesClient extends AuthorizedApiBase implements IResourcesClient {
|
|
@@ -656,23 +578,10 @@ export declare class ResourcesClient extends AuthorizedApiBase implements IResou
|
|
|
656
578
|
protected processCreateResourceInResourceGroup(response: Response): Promise<void>;
|
|
657
579
|
deleteMachine(id: number): Promise<void>;
|
|
658
580
|
protected processDeleteMachine(response: Response): Promise<void>;
|
|
659
|
-
/**
|
|
660
|
-
* @deprecated
|
|
661
|
-
*/
|
|
662
|
-
listAllMachines(): Promise<MachineDto[]>;
|
|
663
|
-
protected processListAllMachines(response: Response): Promise<MachineDto[]>;
|
|
664
581
|
listAllResources(): Promise<ApplicationResourcesResourceDto[]>;
|
|
665
582
|
protected processListAllResources(response: Response): Promise<ApplicationResourcesResourceDto[]>;
|
|
666
583
|
}
|
|
667
584
|
export interface IPulseClient {
|
|
668
|
-
/**
|
|
669
|
-
* @deprecated
|
|
670
|
-
*/
|
|
671
|
-
getPulseSettings(): Promise<PulseSettingsDto>;
|
|
672
|
-
/**
|
|
673
|
-
* @deprecated
|
|
674
|
-
*/
|
|
675
|
-
updatePulseSettings(request: UpdatePulseSettings): Promise<PulseSettingsDto>;
|
|
676
585
|
getPulseSettingsResource(): Promise<PulseSettingsResourceDto>;
|
|
677
586
|
updatePulseSettingsResource(request: UpdatePulseSettingsResource): Promise<PulseSettingsResourceDto>;
|
|
678
587
|
}
|
|
@@ -683,64 +592,12 @@ export declare class PulseClient extends AuthorizedApiBase implements IPulseClie
|
|
|
683
592
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
684
593
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
685
594
|
});
|
|
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>;
|
|
696
595
|
getPulseSettingsResource(): Promise<PulseSettingsResourceDto>;
|
|
697
596
|
protected processGetPulseSettingsResource(response: Response): Promise<PulseSettingsResourceDto>;
|
|
698
597
|
updatePulseSettingsResource(request: UpdatePulseSettingsResource): Promise<PulseSettingsResourceDto>;
|
|
699
598
|
protected processUpdatePulseSettingsResource(response: Response): Promise<PulseSettingsResourceDto>;
|
|
700
599
|
}
|
|
701
600
|
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>;
|
|
744
601
|
getCompanyResourceUtilization(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDto>;
|
|
745
602
|
getCrossCompanyResourceUtilization(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyResourceUtilizationDto>;
|
|
746
603
|
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>;
|
|
@@ -754,53 +611,6 @@ export declare class UtilizationClient extends AuthorizedApiBase implements IUti
|
|
|
754
611
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
755
612
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
756
613
|
});
|
|
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>;
|
|
804
614
|
getCompanyResourceUtilization(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyResourceUtilizationDto>;
|
|
805
615
|
protected processGetCompanyResourceUtilization(response: Response): Promise<CompanyResourceUtilizationDto>;
|
|
806
616
|
getCrossCompanyResourceUtilization(utilizationType: ResourceUtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyResourceUtilizationDto>;
|
|
@@ -1134,157 +944,8 @@ export declare class MeasuringToolsClient extends AuthorizedApiBase implements I
|
|
|
1134
944
|
getMeasuringToolSettings(): Promise<MeasuringToolSettingsDto>;
|
|
1135
945
|
protected processGetMeasuringToolSettings(response: Response): Promise<MeasuringToolSettingsDto>;
|
|
1136
946
|
}
|
|
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
|
-
}
|
|
1261
947
|
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>;
|
|
1282
948
|
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>;
|
|
1288
949
|
}
|
|
1289
950
|
export declare class MachinesClient extends AuthorizedApiBase implements IMachinesClient {
|
|
1290
951
|
private http;
|
|
@@ -1293,53 +954,8 @@ export declare class MachinesClient extends AuthorizedApiBase implements IMachin
|
|
|
1293
954
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1294
955
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1295
956
|
});
|
|
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>;
|
|
1331
957
|
listCurrentMachineOperators(machineExternalId: string | null | undefined, operatorNameQuery: string | null | undefined): Promise<OperatorAndMachineDto[]>;
|
|
1332
958
|
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>;
|
|
1343
959
|
}
|
|
1344
960
|
export interface ILinksClient {
|
|
1345
961
|
getAllLinks(scope: string | null | undefined): Promise<LinkDto[]>;
|
|
@@ -1896,10 +1512,6 @@ export interface IAssetsClient {
|
|
|
1896
1512
|
getAssetById(id: number): Promise<AssetDto>;
|
|
1897
1513
|
updateAsset(id: number, request: UpdateAssetRequest): Promise<AssetDto>;
|
|
1898
1514
|
getAssetStructureById(id: number): Promise<AssetStructureDto>;
|
|
1899
|
-
/**
|
|
1900
|
-
* @deprecated
|
|
1901
|
-
*/
|
|
1902
|
-
listMachines(): Promise<MachineDto[]>;
|
|
1903
1515
|
}
|
|
1904
1516
|
export declare class AssetsClient extends AuthorizedApiBase implements IAssetsClient {
|
|
1905
1517
|
private http;
|
|
@@ -1920,11 +1532,6 @@ export declare class AssetsClient extends AuthorizedApiBase implements IAssetsCl
|
|
|
1920
1532
|
protected processUpdateAsset(response: Response): Promise<AssetDto>;
|
|
1921
1533
|
getAssetStructureById(id: number): Promise<AssetStructureDto>;
|
|
1922
1534
|
protected processGetAssetStructureById(response: Response): Promise<AssetStructureDto>;
|
|
1923
|
-
/**
|
|
1924
|
-
* @deprecated
|
|
1925
|
-
*/
|
|
1926
|
-
listMachines(): Promise<MachineDto[]>;
|
|
1927
|
-
protected processListMachines(response: Response): Promise<MachineDto[]>;
|
|
1928
1535
|
}
|
|
1929
1536
|
export interface IAlertsClient {
|
|
1930
1537
|
alertNotificationAccess(): Promise<AlertNotificationAccessDto>;
|
|
@@ -3377,17 +2984,17 @@ export interface IComponentSettingsDto {
|
|
|
3377
2984
|
componentId?: string | null;
|
|
3378
2985
|
disabledFields?: string[] | null;
|
|
3379
2986
|
}
|
|
3380
|
-
export declare class
|
|
3381
|
-
|
|
3382
|
-
constructor(data?:
|
|
2987
|
+
export declare class ResourceUtilizationListDto implements IResourceUtilizationListDto {
|
|
2988
|
+
resources?: ResourceUtilizationDto[] | null;
|
|
2989
|
+
constructor(data?: IResourceUtilizationListDto);
|
|
3383
2990
|
init(_data?: any): void;
|
|
3384
|
-
static fromJS(data: any):
|
|
2991
|
+
static fromJS(data: any): ResourceUtilizationListDto;
|
|
3385
2992
|
toJSON(data?: any): any;
|
|
3386
2993
|
}
|
|
3387
|
-
export interface
|
|
3388
|
-
|
|
2994
|
+
export interface IResourceUtilizationListDto {
|
|
2995
|
+
resources?: ResourceUtilizationDto[] | null;
|
|
3389
2996
|
}
|
|
3390
|
-
export declare class
|
|
2997
|
+
export declare class ResourceUtilizationDto implements IResourceUtilizationDto {
|
|
3391
2998
|
assetId: number;
|
|
3392
2999
|
name: string;
|
|
3393
3000
|
description?: string | null;
|
|
@@ -3396,12 +3003,12 @@ export declare class MachineUtilizationDto implements IMachineUtilizationDto {
|
|
|
3396
3003
|
startTime?: Date;
|
|
3397
3004
|
workorder?: UtilizationWorkorderDto | null;
|
|
3398
3005
|
powerOn?: PowerOnUtilizationDto | null;
|
|
3399
|
-
constructor(data?:
|
|
3006
|
+
constructor(data?: IResourceUtilizationDto);
|
|
3400
3007
|
init(_data?: any): void;
|
|
3401
|
-
static fromJS(data: any):
|
|
3008
|
+
static fromJS(data: any): ResourceUtilizationDto;
|
|
3402
3009
|
toJSON(data?: any): any;
|
|
3403
3010
|
}
|
|
3404
|
-
export interface
|
|
3011
|
+
export interface IResourceUtilizationDto {
|
|
3405
3012
|
assetId: number;
|
|
3406
3013
|
name: string;
|
|
3407
3014
|
description?: string | null;
|
|
@@ -3488,50 +3095,26 @@ export interface IPowerOnUtilizationDto extends IUtilizationAveragesDto {
|
|
|
3488
3095
|
powerOnUtilization?: number | null;
|
|
3489
3096
|
comparedToAverage?: number | null;
|
|
3490
3097
|
}
|
|
3491
|
-
export declare class
|
|
3492
|
-
|
|
3493
|
-
|
|
3098
|
+
export declare class ResourceUtilizationDetailsDto implements IResourceUtilizationDetailsDto {
|
|
3099
|
+
resourceId: number;
|
|
3100
|
+
resourceName: string;
|
|
3494
3101
|
machineStateText?: string | null;
|
|
3495
3102
|
machineState?: MachineState | null;
|
|
3496
3103
|
startTime?: Date | null;
|
|
3497
3104
|
powerOnUtilization?: number | null;
|
|
3498
|
-
constructor(data?:
|
|
3105
|
+
constructor(data?: IResourceUtilizationDetailsDto);
|
|
3499
3106
|
init(_data?: any): void;
|
|
3500
|
-
static fromJS(data: any):
|
|
3107
|
+
static fromJS(data: any): ResourceUtilizationDetailsDto;
|
|
3501
3108
|
toJSON(data?: any): any;
|
|
3502
3109
|
}
|
|
3503
|
-
export interface
|
|
3504
|
-
|
|
3505
|
-
|
|
3110
|
+
export interface IResourceUtilizationDetailsDto {
|
|
3111
|
+
resourceId: number;
|
|
3112
|
+
resourceName: string;
|
|
3506
3113
|
machineStateText?: string | null;
|
|
3507
3114
|
machineState?: MachineState | null;
|
|
3508
3115
|
startTime?: Date | null;
|
|
3509
3116
|
powerOnUtilization?: number | null;
|
|
3510
3117
|
}
|
|
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
|
-
}
|
|
3535
3118
|
export declare class TimelinesDto implements ITimelinesDto {
|
|
3536
3119
|
machineStateTimeline: MachineStateDatapoint[];
|
|
3537
3120
|
workorderTimeline: WorkOrderDatapoint[];
|
|
@@ -3677,54 +3260,78 @@ export interface ITimelineFilterDto {
|
|
|
3677
3260
|
includeDowntimeReasons?: boolean | null;
|
|
3678
3261
|
includeProgram?: boolean | null;
|
|
3679
3262
|
}
|
|
3680
|
-
export declare class
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
|
|
3263
|
+
export declare class MachineStatesSummaryDto implements IMachineStatesSummaryDto {
|
|
3264
|
+
states: StateDto[];
|
|
3265
|
+
constructor(data?: IMachineStatesSummaryDto);
|
|
3266
|
+
init(_data?: any): void;
|
|
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);
|
|
3291
|
+
init(_data?: any): void;
|
|
3292
|
+
static fromJS(data: any): ResourceUptimesAggregateDto;
|
|
3686
3293
|
toJSON(data?: any): any;
|
|
3687
3294
|
}
|
|
3688
|
-
export interface
|
|
3689
|
-
|
|
3690
|
-
sum:
|
|
3295
|
+
export interface IResourceUptimesAggregateDto {
|
|
3296
|
+
resourceUptimes: ResourceUptimeDto[];
|
|
3297
|
+
sum: ResourceUptimeSumDto;
|
|
3691
3298
|
}
|
|
3692
|
-
export declare class
|
|
3299
|
+
export declare class ResourceUptimeDto implements IResourceUptimeDto {
|
|
3693
3300
|
assetExternalId: string;
|
|
3694
3301
|
percent: number;
|
|
3695
3302
|
numberOfSeconds: number;
|
|
3696
|
-
constructor(data?:
|
|
3303
|
+
constructor(data?: IResourceUptimeDto);
|
|
3697
3304
|
init(_data?: any): void;
|
|
3698
|
-
static fromJS(data: any):
|
|
3305
|
+
static fromJS(data: any): ResourceUptimeDto;
|
|
3699
3306
|
toJSON(data?: any): any;
|
|
3700
3307
|
}
|
|
3701
|
-
export interface
|
|
3308
|
+
export interface IResourceUptimeDto {
|
|
3702
3309
|
assetExternalId: string;
|
|
3703
3310
|
percent: number;
|
|
3704
3311
|
numberOfSeconds: number;
|
|
3705
3312
|
}
|
|
3706
|
-
export declare class
|
|
3313
|
+
export declare class ResourceUptimeSumDto implements IResourceUptimeSumDto {
|
|
3707
3314
|
percent: number;
|
|
3708
3315
|
numberOfSeconds: number;
|
|
3709
|
-
constructor(data?:
|
|
3316
|
+
constructor(data?: IResourceUptimeSumDto);
|
|
3710
3317
|
init(_data?: any): void;
|
|
3711
|
-
static fromJS(data: any):
|
|
3318
|
+
static fromJS(data: any): ResourceUptimeSumDto;
|
|
3712
3319
|
toJSON(data?: any): any;
|
|
3713
3320
|
}
|
|
3714
|
-
export interface
|
|
3321
|
+
export interface IResourceUptimeSumDto {
|
|
3715
3322
|
percent: number;
|
|
3716
3323
|
numberOfSeconds: number;
|
|
3717
3324
|
}
|
|
3718
|
-
export declare class
|
|
3719
|
-
|
|
3325
|
+
export declare class ListResourceUptimesTodayRequest implements IListResourceUptimesTodayRequest {
|
|
3326
|
+
resourceExternalIds?: string[] | null;
|
|
3720
3327
|
utcOffset?: number;
|
|
3721
|
-
constructor(data?:
|
|
3328
|
+
constructor(data?: IListResourceUptimesTodayRequest);
|
|
3722
3329
|
init(_data?: any): void;
|
|
3723
|
-
static fromJS(data: any):
|
|
3330
|
+
static fromJS(data: any): ListResourceUptimesTodayRequest;
|
|
3724
3331
|
toJSON(data?: any): any;
|
|
3725
3332
|
}
|
|
3726
|
-
export interface
|
|
3727
|
-
|
|
3333
|
+
export interface IListResourceUptimesTodayRequest {
|
|
3334
|
+
resourceExternalIds?: string[] | null;
|
|
3728
3335
|
utcOffset?: number;
|
|
3729
3336
|
}
|
|
3730
3337
|
export declare class PowerOnUtilizationList implements IPowerOnUtilizationList {
|
|
@@ -3767,110 +3374,6 @@ export interface INumericNullableValueWithTimestamp {
|
|
|
3767
3374
|
timestamp?: number;
|
|
3768
3375
|
value?: number | null;
|
|
3769
3376
|
}
|
|
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
|
-
}
|
|
3874
3377
|
export declare class UserAppDto implements IUserAppDto {
|
|
3875
3378
|
key: string;
|
|
3876
3379
|
name: string;
|
|
@@ -5626,37 +5129,6 @@ export interface ICreateResourceInResourceGroup {
|
|
|
5626
5129
|
name: string;
|
|
5627
5130
|
description?: string | null;
|
|
5628
5131
|
}
|
|
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
|
-
}
|
|
5660
5132
|
export declare class PulseSettingsResourceDto implements IPulseSettingsResourceDto {
|
|
5661
5133
|
defaultUtilizationType: ResourceUtilizationTypeDto;
|
|
5662
5134
|
utilizationTypeEnabling: ResourceUtilizationTypeEnablingDto;
|
|
@@ -5688,26 +5160,6 @@ export interface IResourceUtilizationTypeEnablingDto {
|
|
|
5688
5160
|
resourceCalendarEnabled: boolean;
|
|
5689
5161
|
factoryCalendarEnabled: boolean;
|
|
5690
5162
|
}
|
|
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
|
-
}
|
|
5711
5163
|
export declare class UpdatePulseSettingsResource implements IUpdatePulseSettingsResource {
|
|
5712
5164
|
defaultUtilizationType: ResourceUtilizationTypeDto;
|
|
5713
5165
|
powerOnEnabled: boolean;
|
|
@@ -5728,21 +5180,21 @@ export interface IUpdatePulseSettingsResource {
|
|
|
5728
5180
|
resourceCalendarEnabled: boolean;
|
|
5729
5181
|
factoryCalendarEnabled: boolean;
|
|
5730
5182
|
}
|
|
5731
|
-
export declare class
|
|
5732
|
-
utilizationType:
|
|
5183
|
+
export declare class CompanyResourceUtilizationDto implements ICompanyResourceUtilizationDto {
|
|
5184
|
+
utilizationType: ResourceUtilizationTypeDto;
|
|
5733
5185
|
companyUtilization: UtilizationDetailsV2Dto;
|
|
5734
|
-
groups:
|
|
5735
|
-
|
|
5736
|
-
constructor(data?:
|
|
5186
|
+
groups: ResourceGroupUtilizationV2Dto[];
|
|
5187
|
+
ungroupedResources: ResourceUtilizationV3Dto[];
|
|
5188
|
+
constructor(data?: ICompanyResourceUtilizationDto);
|
|
5737
5189
|
init(_data?: any): void;
|
|
5738
|
-
static fromJS(data: any):
|
|
5190
|
+
static fromJS(data: any): CompanyResourceUtilizationDto;
|
|
5739
5191
|
toJSON(data?: any): any;
|
|
5740
5192
|
}
|
|
5741
|
-
export interface
|
|
5742
|
-
utilizationType:
|
|
5193
|
+
export interface ICompanyResourceUtilizationDto {
|
|
5194
|
+
utilizationType: ResourceUtilizationTypeDto;
|
|
5743
5195
|
companyUtilization: UtilizationDetailsV2Dto;
|
|
5744
|
-
groups:
|
|
5745
|
-
|
|
5196
|
+
groups: ResourceGroupUtilizationV2Dto[];
|
|
5197
|
+
ungroupedResources: ResourceUtilizationV3Dto[];
|
|
5746
5198
|
}
|
|
5747
5199
|
export declare class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
|
|
5748
5200
|
utilizationPercent?: number | null;
|
|
@@ -5768,59 +5220,59 @@ export interface IUtilizationDetailsV2Dto {
|
|
|
5768
5220
|
downtimeInMilliseconds?: number | null;
|
|
5769
5221
|
totalTimeInMilliseconds?: number | null;
|
|
5770
5222
|
}
|
|
5771
|
-
export declare class
|
|
5223
|
+
export declare class ResourceGroupUtilizationV2Dto implements IResourceGroupUtilizationV2Dto {
|
|
5772
5224
|
name: string;
|
|
5773
5225
|
utilization: UtilizationDetailsV2Dto;
|
|
5774
|
-
|
|
5775
|
-
constructor(data?:
|
|
5226
|
+
resources: ResourceUtilizationV3Dto[];
|
|
5227
|
+
constructor(data?: IResourceGroupUtilizationV2Dto);
|
|
5776
5228
|
init(_data?: any): void;
|
|
5777
|
-
static fromJS(data: any):
|
|
5229
|
+
static fromJS(data: any): ResourceGroupUtilizationV2Dto;
|
|
5778
5230
|
toJSON(data?: any): any;
|
|
5779
5231
|
}
|
|
5780
|
-
export interface
|
|
5232
|
+
export interface IResourceGroupUtilizationV2Dto {
|
|
5781
5233
|
name: string;
|
|
5782
5234
|
utilization: UtilizationDetailsV2Dto;
|
|
5783
|
-
|
|
5235
|
+
resources: ResourceUtilizationV3Dto[];
|
|
5784
5236
|
}
|
|
5785
|
-
export declare class
|
|
5237
|
+
export declare class ResourceUtilizationV3Dto implements IResourceUtilizationV3Dto {
|
|
5786
5238
|
id?: number;
|
|
5787
5239
|
name: string;
|
|
5788
5240
|
description?: string | null;
|
|
5789
5241
|
utilization: UtilizationDetailsV2Dto;
|
|
5790
|
-
constructor(data?:
|
|
5242
|
+
constructor(data?: IResourceUtilizationV3Dto);
|
|
5791
5243
|
init(_data?: any): void;
|
|
5792
|
-
static fromJS(data: any):
|
|
5244
|
+
static fromJS(data: any): ResourceUtilizationV3Dto;
|
|
5793
5245
|
toJSON(data?: any): any;
|
|
5794
5246
|
}
|
|
5795
|
-
export interface
|
|
5247
|
+
export interface IResourceUtilizationV3Dto {
|
|
5796
5248
|
id?: number;
|
|
5797
5249
|
name: string;
|
|
5798
5250
|
description?: string | null;
|
|
5799
5251
|
utilization: UtilizationDetailsV2Dto;
|
|
5800
5252
|
}
|
|
5801
|
-
export declare class
|
|
5802
|
-
utilizationType:
|
|
5253
|
+
export declare class CrossCompanyResourceUtilizationDto implements ICrossCompanyResourceUtilizationDto {
|
|
5254
|
+
utilizationType: ResourceUtilizationTypeDto;
|
|
5803
5255
|
crossCompanyUtilization: UtilizationDetailsV2Dto;
|
|
5804
|
-
companies:
|
|
5805
|
-
constructor(data?:
|
|
5256
|
+
companies: NamedCompanyResourceUtilizationDto[];
|
|
5257
|
+
constructor(data?: ICrossCompanyResourceUtilizationDto);
|
|
5806
5258
|
init(_data?: any): void;
|
|
5807
|
-
static fromJS(data: any):
|
|
5259
|
+
static fromJS(data: any): CrossCompanyResourceUtilizationDto;
|
|
5808
5260
|
toJSON(data?: any): any;
|
|
5809
5261
|
}
|
|
5810
|
-
export interface
|
|
5811
|
-
utilizationType:
|
|
5262
|
+
export interface ICrossCompanyResourceUtilizationDto {
|
|
5263
|
+
utilizationType: ResourceUtilizationTypeDto;
|
|
5812
5264
|
crossCompanyUtilization: UtilizationDetailsV2Dto;
|
|
5813
|
-
companies:
|
|
5265
|
+
companies: NamedCompanyResourceUtilizationDto[];
|
|
5814
5266
|
}
|
|
5815
|
-
export declare class
|
|
5267
|
+
export declare class NamedCompanyResourceUtilizationDto extends CompanyResourceUtilizationDto implements INamedCompanyResourceUtilizationDto {
|
|
5816
5268
|
companyId: string;
|
|
5817
5269
|
companyName: string;
|
|
5818
|
-
constructor(data?:
|
|
5270
|
+
constructor(data?: INamedCompanyResourceUtilizationDto);
|
|
5819
5271
|
init(_data?: any): void;
|
|
5820
|
-
static fromJS(data: any):
|
|
5272
|
+
static fromJS(data: any): NamedCompanyResourceUtilizationDto;
|
|
5821
5273
|
toJSON(data?: any): any;
|
|
5822
5274
|
}
|
|
5823
|
-
export interface
|
|
5275
|
+
export interface INamedCompanyResourceUtilizationDto extends ICompanyResourceUtilizationDto {
|
|
5824
5276
|
companyId: string;
|
|
5825
5277
|
companyName: string;
|
|
5826
5278
|
}
|
|
@@ -5838,203 +5290,67 @@ export interface IUtilizationDatapointListDto {
|
|
|
5838
5290
|
trendDatapoints?: NumericNullableValueWithTimestamp[];
|
|
5839
5291
|
linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
|
|
5840
5292
|
}
|
|
5841
|
-
export declare class
|
|
5293
|
+
export declare class ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto implements IResourceUtilizationDatapointListDto {
|
|
5842
5294
|
externalId: string;
|
|
5843
5295
|
id: number;
|
|
5844
5296
|
name: string;
|
|
5845
5297
|
description?: string | null;
|
|
5846
|
-
constructor(data?:
|
|
5298
|
+
constructor(data?: IResourceUtilizationDatapointListDto);
|
|
5847
5299
|
init(_data?: any): void;
|
|
5848
|
-
static fromJS(data: any):
|
|
5300
|
+
static fromJS(data: any): ResourceUtilizationDatapointListDto;
|
|
5849
5301
|
toJSON(data?: any): any;
|
|
5850
5302
|
}
|
|
5851
|
-
export interface
|
|
5303
|
+
export interface IResourceUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
5852
5304
|
externalId: string;
|
|
5853
5305
|
id: number;
|
|
5854
5306
|
name: string;
|
|
5855
5307
|
description?: string | null;
|
|
5856
5308
|
}
|
|
5857
|
-
export declare class
|
|
5858
|
-
groups?:
|
|
5859
|
-
|
|
5860
|
-
constructor(data?:
|
|
5309
|
+
export declare class CompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto implements ICompanyResourceUtilizationDatapointListDto {
|
|
5310
|
+
groups?: ResourceGroupUtilizationDatapointListDto[];
|
|
5311
|
+
ungroupedResources?: ResourceUtilizationDatapointListDto[];
|
|
5312
|
+
constructor(data?: ICompanyResourceUtilizationDatapointListDto);
|
|
5861
5313
|
init(_data?: any): void;
|
|
5862
|
-
static fromJS(data: any):
|
|
5314
|
+
static fromJS(data: any): CompanyResourceUtilizationDatapointListDto;
|
|
5863
5315
|
toJSON(data?: any): any;
|
|
5864
5316
|
}
|
|
5865
|
-
export interface
|
|
5866
|
-
groups?:
|
|
5867
|
-
|
|
5317
|
+
export interface ICompanyResourceUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
5318
|
+
groups?: ResourceGroupUtilizationDatapointListDto[];
|
|
5319
|
+
ungroupedResources?: ResourceUtilizationDatapointListDto[];
|
|
5868
5320
|
}
|
|
5869
|
-
export declare class
|
|
5321
|
+
export declare class ResourceGroupUtilizationDatapointListDto extends UtilizationDatapointListDto implements IResourceGroupUtilizationDatapointListDto {
|
|
5870
5322
|
groupId: string;
|
|
5871
5323
|
groupName: string;
|
|
5872
|
-
|
|
5873
|
-
constructor(data?:
|
|
5324
|
+
resources?: ResourceUtilizationDatapointListDto[];
|
|
5325
|
+
constructor(data?: IResourceGroupUtilizationDatapointListDto);
|
|
5874
5326
|
init(_data?: any): void;
|
|
5875
|
-
static fromJS(data: any):
|
|
5327
|
+
static fromJS(data: any): ResourceGroupUtilizationDatapointListDto;
|
|
5876
5328
|
toJSON(data?: any): any;
|
|
5877
5329
|
}
|
|
5878
|
-
export interface
|
|
5330
|
+
export interface IResourceGroupUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
5879
5331
|
groupId: string;
|
|
5880
5332
|
groupName: string;
|
|
5881
|
-
|
|
5333
|
+
resources?: ResourceUtilizationDatapointListDto[];
|
|
5882
5334
|
}
|
|
5883
|
-
export declare class
|
|
5884
|
-
companies?:
|
|
5885
|
-
constructor(data?:
|
|
5335
|
+
export declare class CrossCompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto implements ICrossCompanyResourceUtilizationDatapointListDto {
|
|
5336
|
+
companies?: NamedCompanyResourceUtilizationDatapointListDto[];
|
|
5337
|
+
constructor(data?: ICrossCompanyResourceUtilizationDatapointListDto);
|
|
5886
5338
|
init(_data?: any): void;
|
|
5887
|
-
static fromJS(data: any):
|
|
5339
|
+
static fromJS(data: any): CrossCompanyResourceUtilizationDatapointListDto;
|
|
5888
5340
|
toJSON(data?: any): any;
|
|
5889
5341
|
}
|
|
5890
|
-
export interface
|
|
5891
|
-
companies?:
|
|
5342
|
+
export interface ICrossCompanyResourceUtilizationDatapointListDto extends IUtilizationDatapointListDto {
|
|
5343
|
+
companies?: NamedCompanyResourceUtilizationDatapointListDto[];
|
|
5892
5344
|
}
|
|
5893
|
-
export declare class
|
|
5345
|
+
export declare class NamedCompanyResourceUtilizationDatapointListDto extends CompanyResourceUtilizationDatapointListDto implements INamedCompanyResourceUtilizationDatapointListDto {
|
|
5894
5346
|
companyId: string;
|
|
5895
5347
|
companyName: string;
|
|
5896
|
-
constructor(data?:
|
|
5348
|
+
constructor(data?: INamedCompanyResourceUtilizationDatapointListDto);
|
|
5897
5349
|
init(_data?: any): void;
|
|
5898
|
-
static fromJS(data: any):
|
|
5350
|
+
static fromJS(data: any): NamedCompanyResourceUtilizationDatapointListDto;
|
|
5899
5351
|
toJSON(data?: any): any;
|
|
5900
5352
|
}
|
|
5901
|
-
export interface
|
|
5902
|
-
companyId: string;
|
|
5903
|
-
companyName: string;
|
|
5904
|
-
}
|
|
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 {
|
|
5353
|
+
export interface INamedCompanyResourceUtilizationDatapointListDto extends ICompanyResourceUtilizationDatapointListDto {
|
|
6038
5354
|
companyId: string;
|
|
6039
5355
|
companyName: string;
|
|
6040
5356
|
}
|
|
@@ -7717,548 +7033,6 @@ export interface IMeasuringToolSettingsDto {
|
|
|
7717
7033
|
disableUserDefinedIdentifiersForCalibratedTools: boolean;
|
|
7718
7034
|
disableUserDefinedIdentifiersForUncalibratedTools: boolean;
|
|
7719
7035
|
}
|
|
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
|
-
}
|
|
8262
7036
|
export declare class LinkDto implements ILinkDto {
|
|
8263
7037
|
id: string;
|
|
8264
7038
|
uri: string;
|