@ignos/api-client 20260129.0.13918-alpha → 20260130.0.13921-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.
@@ -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>;
@@ -1126,157 +936,8 @@ export declare class MeasuringToolsClient extends AuthorizedApiBase implements I
1126
936
  getMeasuringToolSettings(): Promise<MeasuringToolSettingsDto>;
1127
937
  protected processGetMeasuringToolSettings(response: Response): Promise<MeasuringToolSettingsDto>;
1128
938
  }
1129
- export interface IDowntimeReasonsAdminClient {
1130
- listDowntimeReasons(): Promise<DowntimeReasonDto[]>;
1131
- createDowntimeReason(request: CreateDowntimeReason): Promise<DowntimeReasonDto>;
1132
- updateDowntimeReason(id: string, request: UpdateDowntimeReasonRequest): Promise<DowntimeReasonDto>;
1133
- deleteDowntimeReason(id: string): Promise<void>;
1134
- listMachineTypes(): Promise<MachineTypeDto[]>;
1135
- listParentTopics(): Promise<ParentTopicDto[]>;
1136
- createParentTopic(request: CreateParentTopicRequest): Promise<ParentTopicDto>;
1137
- updateParentTopic(id: string, request: UpdateParentTopicRequest): Promise<ParentTopicDto>;
1138
- deleteParentTopic(id: string): Promise<void>;
1139
- }
1140
- export declare class DowntimeReasonsAdminClient extends AuthorizedApiBase implements IDowntimeReasonsAdminClient {
1141
- private http;
1142
- private baseUrl;
1143
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
1144
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1145
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1146
- });
1147
- listDowntimeReasons(): Promise<DowntimeReasonDto[]>;
1148
- protected processListDowntimeReasons(response: Response): Promise<DowntimeReasonDto[]>;
1149
- createDowntimeReason(request: CreateDowntimeReason): Promise<DowntimeReasonDto>;
1150
- protected processCreateDowntimeReason(response: Response): Promise<DowntimeReasonDto>;
1151
- updateDowntimeReason(id: string, request: UpdateDowntimeReasonRequest): Promise<DowntimeReasonDto>;
1152
- protected processUpdateDowntimeReason(response: Response): Promise<DowntimeReasonDto>;
1153
- deleteDowntimeReason(id: string): Promise<void>;
1154
- protected processDeleteDowntimeReason(response: Response): Promise<void>;
1155
- listMachineTypes(): Promise<MachineTypeDto[]>;
1156
- protected processListMachineTypes(response: Response): Promise<MachineTypeDto[]>;
1157
- listParentTopics(): Promise<ParentTopicDto[]>;
1158
- protected processListParentTopics(response: Response): Promise<ParentTopicDto[]>;
1159
- createParentTopic(request: CreateParentTopicRequest): Promise<ParentTopicDto>;
1160
- protected processCreateParentTopic(response: Response): Promise<ParentTopicDto>;
1161
- updateParentTopic(id: string, request: UpdateParentTopicRequest): Promise<ParentTopicDto>;
1162
- protected processUpdateParentTopic(response: Response): Promise<ParentTopicDto>;
1163
- deleteParentTopic(id: string): Promise<void>;
1164
- protected processDeleteParentTopic(response: Response): Promise<void>;
1165
- }
1166
- export interface IDowntimeReasonsClient {
1167
- createDowntimePeriodReason(request: CreateDowntimePeriodReason): Promise<DowntimePeriodReasonDto>;
1168
- updateDowntimePeriodReason(id: number, request: UpdateDowntimePeriodReasonRequest): Promise<DowntimePeriodReasonDto>;
1169
- deleteDowntimeReason(id: number): Promise<void>;
1170
- listDowntimeReasonsForMachine(id: number): Promise<DowntimeReasonDto[]>;
1171
- listDowntimeReasonsHierarchyForMachine(id: number): Promise<ParentTopicDto[]>;
1172
- listActiveDowntimeReasonsForMachine(id: number): Promise<DowntimePeriodReasonDto[]>;
1173
- listTopDowntimeReasons(start: Date | null | undefined, end: Date | null | undefined): Promise<TopDowntimeReasonsDto>;
1174
- listTopDowntimeReasonsForResources(request: ListTopDowntimeReasonsForResourcesRequest): Promise<TopDowntimeReasonsDto>;
1175
- createReport(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportDto>;
1176
- exportReportToCsv(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportCsvDto>;
1177
- }
1178
- export declare class DowntimeReasonsClient extends AuthorizedApiBase implements IDowntimeReasonsClient {
1179
- private http;
1180
- private baseUrl;
1181
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
1182
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1183
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1184
- });
1185
- createDowntimePeriodReason(request: CreateDowntimePeriodReason): Promise<DowntimePeriodReasonDto>;
1186
- protected processCreateDowntimePeriodReason(response: Response): Promise<DowntimePeriodReasonDto>;
1187
- updateDowntimePeriodReason(id: number, request: UpdateDowntimePeriodReasonRequest): Promise<DowntimePeriodReasonDto>;
1188
- protected processUpdateDowntimePeriodReason(response: Response): Promise<DowntimePeriodReasonDto>;
1189
- deleteDowntimeReason(id: number): Promise<void>;
1190
- protected processDeleteDowntimeReason(response: Response): Promise<void>;
1191
- listDowntimeReasonsForMachine(id: number): Promise<DowntimeReasonDto[]>;
1192
- protected processListDowntimeReasonsForMachine(response: Response): Promise<DowntimeReasonDto[]>;
1193
- listDowntimeReasonsHierarchyForMachine(id: number): Promise<ParentTopicDto[]>;
1194
- protected processListDowntimeReasonsHierarchyForMachine(response: Response): Promise<ParentTopicDto[]>;
1195
- listActiveDowntimeReasonsForMachine(id: number): Promise<DowntimePeriodReasonDto[]>;
1196
- protected processListActiveDowntimeReasonsForMachine(response: Response): Promise<DowntimePeriodReasonDto[]>;
1197
- listTopDowntimeReasons(start: Date | null | undefined, end: Date | null | undefined): Promise<TopDowntimeReasonsDto>;
1198
- protected processListTopDowntimeReasons(response: Response): Promise<TopDowntimeReasonsDto>;
1199
- listTopDowntimeReasonsForResources(request: ListTopDowntimeReasonsForResourcesRequest): Promise<TopDowntimeReasonsDto>;
1200
- protected processListTopDowntimeReasonsForResources(response: Response): Promise<TopDowntimeReasonsDto>;
1201
- createReport(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportDto>;
1202
- protected processCreateReport(response: Response): Promise<DowntimeReasonsReportDto>;
1203
- exportReportToCsv(request: CreateDowntimeReasonsReportRequest | undefined): Promise<DowntimeReasonsReportCsvDto>;
1204
- protected processExportReportToCsv(response: Response): Promise<DowntimeReasonsReportCsvDto>;
1205
- }
1206
- export interface IKpiAdminClient {
1207
- getMachineCapacityAdmin(): Promise<MachineGroupCapacityDto[]>;
1208
- updateMachineCapacityAdmin(request: UpdateMachinesCapacity): Promise<MachineCapacityDto>;
1209
- getCalendarCapacityAdmin(startDate: Date | undefined, endDate: Date | undefined): Promise<CalendarDayDto[]>;
1210
- updateCalendarCapacityAdmin(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
1211
- getCalendarSettings(): Promise<CalendarSettingsDto>;
1212
- updateCalendarSettings(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
1213
- }
1214
- export declare class KpiAdminClient extends AuthorizedApiBase implements IKpiAdminClient {
1215
- private http;
1216
- private baseUrl;
1217
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
1218
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1219
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1220
- });
1221
- getMachineCapacityAdmin(): Promise<MachineGroupCapacityDto[]>;
1222
- protected processGetMachineCapacityAdmin(response: Response): Promise<MachineGroupCapacityDto[]>;
1223
- updateMachineCapacityAdmin(request: UpdateMachinesCapacity): Promise<MachineCapacityDto>;
1224
- protected processUpdateMachineCapacityAdmin(response: Response): Promise<MachineCapacityDto>;
1225
- getCalendarCapacityAdmin(startDate: Date | undefined, endDate: Date | undefined): Promise<CalendarDayDto[]>;
1226
- protected processGetCalendarCapacityAdmin(response: Response): Promise<CalendarDayDto[]>;
1227
- updateCalendarCapacityAdmin(request: UpdateCalendarCapacity): Promise<CalendarCapacityDto>;
1228
- protected processUpdateCalendarCapacityAdmin(response: Response): Promise<CalendarCapacityDto>;
1229
- getCalendarSettings(): Promise<CalendarSettingsDto>;
1230
- protected processGetCalendarSettings(response: Response): Promise<CalendarSettingsDto>;
1231
- updateCalendarSettings(cmd: UpdateCalendarSettingsCommand): Promise<CalendarSettingsDto>;
1232
- protected processUpdateCalendarSettings(response: Response): Promise<CalendarSettingsDto>;
1233
- }
1234
- export interface IKpiClient {
1235
- getMachineKpi(machineExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<MachineKpiDto>;
1236
- getMachineDailyUptime(machineExternalId: string | undefined, date: Date | undefined, utcOffset: number | undefined): Promise<MachineDailyUptimeDto>;
1237
- getUptimeNormalTrend(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
1238
- }
1239
- export declare class KpiClient extends AuthorizedApiBase implements IKpiClient {
1240
- private http;
1241
- private baseUrl;
1242
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
1243
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1244
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1245
- });
1246
- getMachineKpi(machineExternalId: string | undefined, previousPeriodStartDate: Date | undefined, startDate: Date | undefined, endDate: Date | undefined, utcOffset: number | undefined): Promise<MachineKpiDto>;
1247
- protected processGetMachineKpi(response: Response): Promise<MachineKpiDto>;
1248
- getMachineDailyUptime(machineExternalId: string | undefined, date: Date | undefined, utcOffset: number | undefined): Promise<MachineDailyUptimeDto>;
1249
- protected processGetMachineDailyUptime(response: Response): Promise<MachineDailyUptimeDto>;
1250
- getUptimeNormalTrend(assetId: number | null | undefined, assetExternalId: string | null | undefined, date: Date | null | undefined, utcOffset: number | null | undefined): Promise<UptimeTrendDataPointDto[]>;
1251
- protected processGetUptimeNormalTrend(response: Response): Promise<UptimeTrendDataPointDto[]>;
1252
- }
1253
939
  export interface IMachinesClient {
1254
- listMachines(onlyConnectedMachines: boolean | undefined): Promise<MachineDto[]>;
1255
- listMachineGroups(): Promise<MachineGroupDto[]>;
1256
- createMachineGroup(request: CreateMachineGroup): Promise<CreateMachineGroupResponse>;
1257
- updateMachineGroup(id: string, request: UpdateMachineGroup): Promise<void>;
1258
- deleteMachineGroup(id: string): Promise<void>;
1259
- listCurrentMachineStates(assetId: number | null | undefined): Promise<MachineStateListDto>;
1260
- listMachineStates(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStateDatapoint[]>;
1261
- listLastDowntimeMachineStates(id: number, endTime: Date | null | undefined, maxStates: number | null | undefined): Promise<DowntimeMachineStateDto[]>;
1262
- getMachineStateWithDowntimePeriods(id: number, timestamp: number | undefined): Promise<DowntimeMachineStateDto>;
1263
- getMachineStatesSummary(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
1264
- listMachineErpData(): Promise<MachineErpDataListDto>;
1265
- getMachineErpData(id: number): Promise<MachineErpDataDto>;
1266
- /**
1267
- * @param startTime (optional)
1268
- * @param endTime (optional)
1269
- * @deprecated
1270
- */
1271
- getWorkOrderTimeline(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<WorkOrderDatapoint[]>;
1272
- getMachineUtilizationSummary(): Promise<UtilizationSummaryDto>;
1273
- getCrossCompanyUtilizationSummary(): Promise<CrossCompanyUtilizationSummaryDto>;
1274
940
  listCurrentMachineOperators(machineExternalId: string | null | undefined, operatorNameQuery: string | null | undefined): Promise<OperatorAndMachineDto[]>;
1275
- createMachineWithoutResource(request: CreateMachineWithoutResource): Promise<void>;
1276
- createResourceWithoutMachine(request: CreateResourceWithoutMachine): Promise<void>;
1277
- createResourceWithMachine(request: CreateResourceWithMachine): Promise<void>;
1278
- createResourceInResourceGroup(request: CreateResourceInResourceGroup): Promise<void>;
1279
- deleteMachine(id: number): Promise<void>;
1280
941
  }
1281
942
  export declare class MachinesClient extends AuthorizedApiBase implements IMachinesClient {
1282
943
  private http;
@@ -1285,53 +946,8 @@ export declare class MachinesClient extends AuthorizedApiBase implements IMachin
1285
946
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1286
947
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1287
948
  });
1288
- listMachines(onlyConnectedMachines: boolean | undefined): Promise<MachineDto[]>;
1289
- protected processListMachines(response: Response): Promise<MachineDto[]>;
1290
- listMachineGroups(): Promise<MachineGroupDto[]>;
1291
- protected processListMachineGroups(response: Response): Promise<MachineGroupDto[]>;
1292
- createMachineGroup(request: CreateMachineGroup): Promise<CreateMachineGroupResponse>;
1293
- protected processCreateMachineGroup(response: Response): Promise<CreateMachineGroupResponse>;
1294
- updateMachineGroup(id: string, request: UpdateMachineGroup): Promise<void>;
1295
- protected processUpdateMachineGroup(response: Response): Promise<void>;
1296
- deleteMachineGroup(id: string): Promise<void>;
1297
- protected processDeleteMachineGroup(response: Response): Promise<void>;
1298
- listCurrentMachineStates(assetId: number | null | undefined): Promise<MachineStateListDto>;
1299
- protected processListCurrentMachineStates(response: Response): Promise<MachineStateListDto>;
1300
- listMachineStates(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStateDatapoint[]>;
1301
- protected processListMachineStates(response: Response): Promise<MachineStateDatapoint[]>;
1302
- listLastDowntimeMachineStates(id: number, endTime: Date | null | undefined, maxStates: number | null | undefined): Promise<DowntimeMachineStateDto[]>;
1303
- protected processListLastDowntimeMachineStates(response: Response): Promise<DowntimeMachineStateDto[]>;
1304
- getMachineStateWithDowntimePeriods(id: number, timestamp: number | undefined): Promise<DowntimeMachineStateDto>;
1305
- protected processGetMachineStateWithDowntimePeriods(response: Response): Promise<DowntimeMachineStateDto>;
1306
- getMachineStatesSummary(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<MachineStatesSummaryDto>;
1307
- protected processGetMachineStatesSummary(response: Response): Promise<MachineStatesSummaryDto>;
1308
- listMachineErpData(): Promise<MachineErpDataListDto>;
1309
- protected processListMachineErpData(response: Response): Promise<MachineErpDataListDto>;
1310
- getMachineErpData(id: number): Promise<MachineErpDataDto>;
1311
- protected processGetMachineErpData(response: Response): Promise<MachineErpDataDto>;
1312
- /**
1313
- * @param startTime (optional)
1314
- * @param endTime (optional)
1315
- * @deprecated
1316
- */
1317
- getWorkOrderTimeline(id: number, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<WorkOrderDatapoint[]>;
1318
- protected processGetWorkOrderTimeline(response: Response): Promise<WorkOrderDatapoint[]>;
1319
- getMachineUtilizationSummary(): Promise<UtilizationSummaryDto>;
1320
- protected processGetMachineUtilizationSummary(response: Response): Promise<UtilizationSummaryDto>;
1321
- getCrossCompanyUtilizationSummary(): Promise<CrossCompanyUtilizationSummaryDto>;
1322
- protected processGetCrossCompanyUtilizationSummary(response: Response): Promise<CrossCompanyUtilizationSummaryDto>;
1323
949
  listCurrentMachineOperators(machineExternalId: string | null | undefined, operatorNameQuery: string | null | undefined): Promise<OperatorAndMachineDto[]>;
1324
950
  protected processListCurrentMachineOperators(response: Response): Promise<OperatorAndMachineDto[]>;
1325
- createMachineWithoutResource(request: CreateMachineWithoutResource): Promise<void>;
1326
- protected processCreateMachineWithoutResource(response: Response): Promise<void>;
1327
- createResourceWithoutMachine(request: CreateResourceWithoutMachine): Promise<void>;
1328
- protected processCreateResourceWithoutMachine(response: Response): Promise<void>;
1329
- createResourceWithMachine(request: CreateResourceWithMachine): Promise<void>;
1330
- protected processCreateResourceWithMachine(response: Response): Promise<void>;
1331
- createResourceInResourceGroup(request: CreateResourceInResourceGroup): Promise<void>;
1332
- protected processCreateResourceInResourceGroup(response: Response): Promise<void>;
1333
- deleteMachine(id: number): Promise<void>;
1334
- protected processDeleteMachine(response: Response): Promise<void>;
1335
951
  }
1336
952
  export interface ILinksClient {
1337
953
  getAllLinks(scope: string | null | undefined): Promise<LinkDto[]>;
@@ -1447,43 +1063,139 @@ export declare class DocumentTypesClient extends AuthorizedApiBase implements ID
1447
1063
  listDocumentGenerators(): Promise<DocumentGeneratorTypeDto[]>;
1448
1064
  protected processListDocumentGenerators(response: Response): Promise<DocumentGeneratorTypeDto[]>;
1449
1065
  }
1450
- export interface ICncFileTransferClient {
1451
- startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
1452
- startCncMachineOperationTransferToMachine(id: string): Promise<CncMachineTransferDto>;
1453
- getTransferStatus(id: string): Promise<CncMachineTransferDto>;
1454
- createUploadCamTransferInfo(request: UploadCamFileRequest): Promise<UploadCamFileDto>;
1455
- getCamTransfer(path: string | undefined): Promise<CamTransferDto>;
1456
- startCamTransferToMachine(request: StartCamTransferToMachine): Promise<CncMachineTransferDto>;
1457
- startCamTransferToMachineFromTempUpload(request: StartCamTransferToMachineFromTempUpload): Promise<CncMachineTransferDto>;
1066
+ export interface IExternalAccessClient {
1067
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1068
+ createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1069
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1070
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1071
+ listRoles(): Promise<ExternalRoleDto[]>;
1072
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1073
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
1458
1074
  }
1459
- export declare class CncFileTransferClient extends AuthorizedApiBase implements ICncFileTransferClient {
1075
+ export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
1460
1076
  private http;
1461
1077
  private baseUrl;
1462
1078
  protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
1463
1079
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1464
1080
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1465
1081
  });
1466
- startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
1467
- protected processStartCncMachineOperationTransferToCloud(response: Response): Promise<CncMachineTransferDto>;
1468
- startCncMachineOperationTransferToMachine(id: string): Promise<CncMachineTransferDto>;
1469
- protected processStartCncMachineOperationTransferToMachine(response: Response): Promise<CncMachineTransferDto>;
1470
- getTransferStatus(id: string): Promise<CncMachineTransferDto>;
1471
- protected processGetTransferStatus(response: Response): Promise<CncMachineTransferDto>;
1472
- createUploadCamTransferInfo(request: UploadCamFileRequest): Promise<UploadCamFileDto>;
1473
- protected processCreateUploadCamTransferInfo(response: Response): Promise<UploadCamFileDto>;
1474
- getCamTransfer(path: string | undefined): Promise<CamTransferDto>;
1475
- protected processGetCamTransfer(response: Response): Promise<CamTransferDto>;
1476
- startCamTransferToMachine(request: StartCamTransferToMachine): Promise<CncMachineTransferDto>;
1477
- protected processStartCamTransferToMachine(response: Response): Promise<CncMachineTransferDto>;
1478
- startCamTransferToMachineFromTempUpload(request: StartCamTransferToMachineFromTempUpload): Promise<CncMachineTransferDto>;
1479
- protected processStartCamTransferToMachineFromTempUpload(response: Response): Promise<CncMachineTransferDto>;
1082
+ listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
1083
+ protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
1084
+ createCompanyUser(request: CreateCompanyUserRequest): Promise<CompanyUserDto>;
1085
+ protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
1086
+ updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
1087
+ protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
1088
+ deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
1089
+ protected processDeleteCompanyUser(response: Response): Promise<void>;
1090
+ listRoles(): Promise<ExternalRoleDto[]>;
1091
+ protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
1092
+ listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
1093
+ protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
1094
+ deleteCompanyCustomer(tenantId: string): Promise<void>;
1095
+ protected processDeleteCompanyCustomer(response: Response): Promise<void>;
1480
1096
  }
1481
- export interface ICncSetupAgentClient {
1482
- getCncAgentConfig(agentId: string | null | undefined, agentVersion: string | null | undefined): Promise<AgentConfigDto>;
1483
- createUploadProgramsInfo(id: string, request: UploadFileRequest): Promise<UploadFileDto[]>;
1484
- setTransferStatus(id: string, request: SetTransferStatusRequest): Promise<void>;
1097
+ export interface IExternalClient {
1098
+ listInvites(): Promise<InviteDto[]>;
1099
+ acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1100
+ listCompanies(): Promise<CompanyDto[]>;
1485
1101
  }
1486
- export declare class CncSetupAgentClient extends AuthorizedApiBase implements ICncSetupAgentClient {
1102
+ export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
1103
+ private http;
1104
+ private baseUrl;
1105
+ protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
1106
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1107
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1108
+ });
1109
+ listInvites(): Promise<InviteDto[]>;
1110
+ protected processListInvites(response: Response): Promise<InviteDto[]>;
1111
+ acceptSupplierInvite(request: AcceptSupplierInviteRequest): Promise<CompanyDto>;
1112
+ protected processAcceptSupplierInvite(response: Response): Promise<CompanyDto>;
1113
+ listCompanies(): Promise<CompanyDto[]>;
1114
+ protected processListCompanies(response: Response): Promise<CompanyDto[]>;
1115
+ }
1116
+ export interface ISuppliersClient {
1117
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
1118
+ createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1119
+ deleteSupplierInvite(id: string): Promise<void>;
1120
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
1121
+ deleteSupplier(id: string): Promise<void>;
1122
+ importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1123
+ /**
1124
+ * Creates a mapping between old supplier id and new supplier id.
1125
+ */
1126
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1127
+ /**
1128
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
1129
+ */
1130
+ deleteSupplierMappings(): Promise<void>;
1131
+ }
1132
+ export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
1133
+ private http;
1134
+ private baseUrl;
1135
+ protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
1136
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1137
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1138
+ });
1139
+ listSupplierInvites(): Promise<SupplierInviteDto[]>;
1140
+ protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
1141
+ createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
1142
+ protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
1143
+ deleteSupplierInvite(id: string): Promise<void>;
1144
+ protected processDeleteSupplierInvite(response: Response): Promise<void>;
1145
+ listSuppliers(): Promise<ExternalSupplierDto[]>;
1146
+ protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
1147
+ deleteSupplier(id: string): Promise<void>;
1148
+ protected processDeleteSupplier(response: Response): Promise<void>;
1149
+ importSupplier(importSupplier: ImportSupplier): Promise<ExternalSupplierDto>;
1150
+ protected processImportSupplier(response: Response): Promise<ExternalSupplierDto>;
1151
+ /**
1152
+ * Creates a mapping between old supplier id and new supplier id.
1153
+ */
1154
+ createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
1155
+ protected processCreateSupplierMapping(response: Response): Promise<void>;
1156
+ /**
1157
+ * Delete all supplier mappings between old supplier ids and new supplier ids.
1158
+ */
1159
+ deleteSupplierMappings(): Promise<void>;
1160
+ protected processDeleteSupplierMappings(response: Response): Promise<void>;
1161
+ }
1162
+ export interface ICncFileTransferClient {
1163
+ startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
1164
+ startCncMachineOperationTransferToMachine(id: string): Promise<CncMachineTransferDto>;
1165
+ getTransferStatus(id: string): Promise<CncMachineTransferDto>;
1166
+ createUploadCamTransferInfo(request: UploadCamFileRequest): Promise<UploadCamFileDto>;
1167
+ getCamTransfer(path: string | undefined): Promise<CamTransferDto>;
1168
+ startCamTransferToMachine(request: StartCamTransferToMachine): Promise<CncMachineTransferDto>;
1169
+ startCamTransferToMachineFromTempUpload(request: StartCamTransferToMachineFromTempUpload): Promise<CncMachineTransferDto>;
1170
+ }
1171
+ export declare class CncFileTransferClient extends AuthorizedApiBase implements ICncFileTransferClient {
1172
+ private http;
1173
+ private baseUrl;
1174
+ protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
1175
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
1176
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
1177
+ });
1178
+ startCncMachineOperationTransferToCloud(id: string): Promise<CncMachineTransferDto>;
1179
+ protected processStartCncMachineOperationTransferToCloud(response: Response): Promise<CncMachineTransferDto>;
1180
+ startCncMachineOperationTransferToMachine(id: string): Promise<CncMachineTransferDto>;
1181
+ protected processStartCncMachineOperationTransferToMachine(response: Response): Promise<CncMachineTransferDto>;
1182
+ getTransferStatus(id: string): Promise<CncMachineTransferDto>;
1183
+ protected processGetTransferStatus(response: Response): Promise<CncMachineTransferDto>;
1184
+ createUploadCamTransferInfo(request: UploadCamFileRequest): Promise<UploadCamFileDto>;
1185
+ protected processCreateUploadCamTransferInfo(response: Response): Promise<UploadCamFileDto>;
1186
+ getCamTransfer(path: string | undefined): Promise<CamTransferDto>;
1187
+ protected processGetCamTransfer(response: Response): Promise<CamTransferDto>;
1188
+ startCamTransferToMachine(request: StartCamTransferToMachine): Promise<CncMachineTransferDto>;
1189
+ protected processStartCamTransferToMachine(response: Response): Promise<CncMachineTransferDto>;
1190
+ startCamTransferToMachineFromTempUpload(request: StartCamTransferToMachineFromTempUpload): Promise<CncMachineTransferDto>;
1191
+ protected processStartCamTransferToMachineFromTempUpload(response: Response): Promise<CncMachineTransferDto>;
1192
+ }
1193
+ export interface ICncSetupAgentClient {
1194
+ getCncAgentConfig(agentId: string | null | undefined, agentVersion: string | null | undefined): Promise<AgentConfigDto>;
1195
+ createUploadProgramsInfo(id: string, request: UploadFileRequest): Promise<UploadFileDto[]>;
1196
+ setTransferStatus(id: string, request: SetTransferStatusRequest): Promise<void>;
1197
+ }
1198
+ export declare class CncSetupAgentClient extends AuthorizedApiBase implements ICncSetupAgentClient {
1487
1199
  private http;
1488
1200
  private baseUrl;
1489
1201
  protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
@@ -1792,10 +1504,6 @@ export interface IAssetsClient {
1792
1504
  getAssetById(id: number): Promise<AssetDto>;
1793
1505
  updateAsset(id: number, request: UpdateAssetRequest): Promise<AssetDto>;
1794
1506
  getAssetStructureById(id: number): Promise<AssetStructureDto>;
1795
- /**
1796
- * @deprecated
1797
- */
1798
- listMachines(): Promise<MachineDto[]>;
1799
1507
  }
1800
1508
  export declare class AssetsClient extends AuthorizedApiBase implements IAssetsClient {
1801
1509
  private http;
@@ -1816,11 +1524,6 @@ export declare class AssetsClient extends AuthorizedApiBase implements IAssetsCl
1816
1524
  protected processUpdateAsset(response: Response): Promise<AssetDto>;
1817
1525
  getAssetStructureById(id: number): Promise<AssetStructureDto>;
1818
1526
  protected processGetAssetStructureById(response: Response): Promise<AssetStructureDto>;
1819
- /**
1820
- * @deprecated
1821
- */
1822
- listMachines(): Promise<MachineDto[]>;
1823
- protected processListMachines(response: Response): Promise<MachineDto[]>;
1824
1527
  }
1825
1528
  export interface IAlertsClient {
1826
1529
  alertNotificationAccess(): Promise<AlertNotificationAccessDto>;
@@ -3129,98 +2832,77 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
3129
2832
  generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
3130
2833
  protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
3131
2834
  }
3132
- export interface IExternalAccessClient {
3133
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3134
- createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3135
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3136
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3137
- listRoles(): Promise<ExternalRoleDto[]>;
3138
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3139
- deleteCompanyCustomer(tenantId: string): Promise<void>;
2835
+ export interface IMaterialCertificateChecksClient {
2836
+ listMaterialCertificateChecks(request: AmcCheckListRequestDto): Promise<AmcCheckListDto>;
2837
+ getMaterialCertificateCheck(materialCertificateCheckId: string): Promise<AmcResultDto>;
2838
+ processMaterialCertificate(certificatesRequest: ProcessAmcCheckRequestDto): Promise<void>;
2839
+ updateMaterialCertificate(certificatesRequest: UpdateAmcResultRequestDto): Promise<AmcResultDto>;
3140
2840
  }
3141
- export declare class ExternalAccessClient extends AuthorizedApiBase implements IExternalAccessClient {
2841
+ export declare class MaterialCertificateChecksClient extends AuthorizedApiBase implements IMaterialCertificateChecksClient {
3142
2842
  private http;
3143
2843
  private baseUrl;
3144
2844
  protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
3145
2845
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3146
2846
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3147
2847
  });
3148
- listUsers(companyId: string | null | undefined): Promise<CompanyUserDto[]>;
3149
- protected processListUsers(response: Response): Promise<CompanyUserDto[]>;
3150
- createCompanyUser(request: CreateCompanyUser): Promise<CompanyUserDto>;
3151
- protected processCreateCompanyUser(response: Response): Promise<CompanyUserDto>;
3152
- updateCompanyUser(id: string, request: UpdateCompanyUserRequest): Promise<CompanyUserDto>;
3153
- protected processUpdateCompanyUser(response: Response): Promise<CompanyUserDto>;
3154
- deleteCompanyUser(id: string, companyId: string | null | undefined): Promise<void>;
3155
- protected processDeleteCompanyUser(response: Response): Promise<void>;
3156
- listRoles(): Promise<ExternalRoleDto[]>;
3157
- protected processListRoles(response: Response): Promise<ExternalRoleDto[]>;
3158
- listCompanyCustomers(): Promise<CompanyCustomerDto[]>;
3159
- protected processListCompanyCustomers(response: Response): Promise<CompanyCustomerDto[]>;
3160
- deleteCompanyCustomer(tenantId: string): Promise<void>;
3161
- protected processDeleteCompanyCustomer(response: Response): Promise<void>;
3162
- }
3163
- export interface IExternalClient {
3164
- listCompanies(): Promise<CompanyDto[]>;
3165
- getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3166
- acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
3167
- }
3168
- export declare class ExternalClient extends AuthorizedApiBase implements IExternalClient {
2848
+ listMaterialCertificateChecks(request: AmcCheckListRequestDto): Promise<AmcCheckListDto>;
2849
+ protected processListMaterialCertificateChecks(response: Response): Promise<AmcCheckListDto>;
2850
+ getMaterialCertificateCheck(materialCertificateCheckId: string): Promise<AmcResultDto>;
2851
+ protected processGetMaterialCertificateCheck(response: Response): Promise<AmcResultDto>;
2852
+ processMaterialCertificate(certificatesRequest: ProcessAmcCheckRequestDto): Promise<void>;
2853
+ protected processProcessMaterialCertificate(response: Response): Promise<void>;
2854
+ updateMaterialCertificate(certificatesRequest: UpdateAmcResultRequestDto): Promise<AmcResultDto>;
2855
+ protected processUpdateMaterialCertificate(response: Response): Promise<AmcResultDto>;
2856
+ }
2857
+ export interface IMaterialCertificateSpecificationsClient {
2858
+ listSpecifications(): Promise<AmcSpecificationLiteDto[]>;
2859
+ getSpecification(specificationsId: string | undefined, version: number, specificationId: string): Promise<AmcSpecificationDto>;
2860
+ createSpecifications(specificationsRequest: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
2861
+ updateSpecifications(specificationsRequest: UpdateAmcSpecificationDto): Promise<AmcSpecificationDto>;
2862
+ deleteMaterialCertificateTypes(materialCertificateSpecificationId: string): Promise<void>;
2863
+ }
2864
+ export declare class MaterialCertificateSpecificationsClient extends AuthorizedApiBase implements IMaterialCertificateSpecificationsClient {
3169
2865
  private http;
3170
2866
  private baseUrl;
3171
2867
  protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
3172
2868
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3173
2869
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3174
2870
  });
3175
- listCompanies(): Promise<CompanyDto[]>;
3176
- protected processListCompanies(response: Response): Promise<CompanyDto[]>;
3177
- getCurrentSupplierInvite(): Promise<SupplierInviteDto>;
3178
- protected processGetCurrentSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3179
- acceptSupplierInvite(request: AcceptSupplierInvite): Promise<SupplierInviteDto>;
3180
- protected processAcceptSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3181
- }
3182
- export interface ISuppliersClient {
3183
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3184
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3185
- deleteSupplierInvite(id: string): Promise<void>;
3186
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3187
- deleteSupplier(id: string): Promise<void>;
3188
- /**
3189
- * Creates a mapping between old supplier id and new supplier id.
3190
- */
3191
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3192
- /**
3193
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3194
- */
3195
- deleteSupplierMappings(): Promise<void>;
3196
- }
3197
- export declare class SuppliersClient extends AuthorizedApiBase implements ISuppliersClient {
2871
+ listSpecifications(): Promise<AmcSpecificationLiteDto[]>;
2872
+ protected processListSpecifications(response: Response): Promise<AmcSpecificationLiteDto[]>;
2873
+ getSpecification(specificationsId: string | undefined, version: number, specificationId: string): Promise<AmcSpecificationDto>;
2874
+ protected processGetSpecification(response: Response): Promise<AmcSpecificationDto>;
2875
+ createSpecifications(specificationsRequest: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
2876
+ protected processCreateSpecifications(response: Response): Promise<AmcSpecificationDto>;
2877
+ updateSpecifications(specificationsRequest: UpdateAmcSpecificationDto): Promise<AmcSpecificationDto>;
2878
+ protected processUpdateSpecifications(response: Response): Promise<AmcSpecificationDto>;
2879
+ deleteMaterialCertificateTypes(materialCertificateSpecificationId: string): Promise<void>;
2880
+ protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
2881
+ }
2882
+ export interface IMaterialCertificateTypesClient {
2883
+ listMaterialCertificateTypes(): Promise<AmcTypeLiteDto[]>;
2884
+ getMaterialCertificateTypes(typeId: string, version: number): Promise<AmcTypeDto>;
2885
+ createMaterialCertificateTypes(certificatesTypesRequest: CreateAmcTypeRequestDto): Promise<AmcTypeDto>;
2886
+ updateMaterialCertificateTypes(certificatesTypesRequest: UpdateAmcTypeDto): Promise<AmcTypeDto>;
2887
+ deleteMaterialCertificateTypes(materialCertificateTypeId: string): Promise<void>;
2888
+ }
2889
+ export declare class MaterialCertificateTypesClient extends AuthorizedApiBase implements IMaterialCertificateTypesClient {
3198
2890
  private http;
3199
2891
  private baseUrl;
3200
2892
  protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
3201
2893
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3202
2894
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3203
2895
  });
3204
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3205
- protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
3206
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3207
- protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3208
- deleteSupplierInvite(id: string): Promise<void>;
3209
- protected processDeleteSupplierInvite(response: Response): Promise<void>;
3210
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3211
- protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
3212
- deleteSupplier(id: string): Promise<void>;
3213
- protected processDeleteSupplier(response: Response): Promise<void>;
3214
- /**
3215
- * Creates a mapping between old supplier id and new supplier id.
3216
- */
3217
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3218
- protected processCreateSupplierMapping(response: Response): Promise<void>;
3219
- /**
3220
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3221
- */
3222
- deleteSupplierMappings(): Promise<void>;
3223
- protected processDeleteSupplierMappings(response: Response): Promise<void>;
2896
+ listMaterialCertificateTypes(): Promise<AmcTypeLiteDto[]>;
2897
+ protected processListMaterialCertificateTypes(response: Response): Promise<AmcTypeLiteDto[]>;
2898
+ getMaterialCertificateTypes(typeId: string, version: number): Promise<AmcTypeDto>;
2899
+ protected processGetMaterialCertificateTypes(response: Response): Promise<AmcTypeDto>;
2900
+ createMaterialCertificateTypes(certificatesTypesRequest: CreateAmcTypeRequestDto): Promise<AmcTypeDto>;
2901
+ protected processCreateMaterialCertificateTypes(response: Response): Promise<AmcTypeDto>;
2902
+ updateMaterialCertificateTypes(certificatesTypesRequest: UpdateAmcTypeDto): Promise<AmcTypeDto>;
2903
+ protected processUpdateMaterialCertificateTypes(response: Response): Promise<AmcTypeDto>;
2904
+ deleteMaterialCertificateTypes(materialCertificateTypeId: string): Promise<void>;
2905
+ protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
3224
2906
  }
3225
2907
  export declare class AzureRegionDto implements IAzureRegionDto {
3226
2908
  displayName: string;
@@ -3286,17 +2968,17 @@ export interface IComponentSettingsDto {
3286
2968
  componentId?: string | null;
3287
2969
  disabledFields?: string[] | null;
3288
2970
  }
3289
- export declare class UtilizationListDto implements IUtilizationListDto {
3290
- machines?: MachineUtilizationDto[] | null;
3291
- constructor(data?: IUtilizationListDto);
2971
+ export declare class ResourceUtilizationListDto implements IResourceUtilizationListDto {
2972
+ resources?: ResourceUtilizationDto[] | null;
2973
+ constructor(data?: IResourceUtilizationListDto);
3292
2974
  init(_data?: any): void;
3293
- static fromJS(data: any): UtilizationListDto;
2975
+ static fromJS(data: any): ResourceUtilizationListDto;
3294
2976
  toJSON(data?: any): any;
3295
2977
  }
3296
- export interface IUtilizationListDto {
3297
- machines?: MachineUtilizationDto[] | null;
2978
+ export interface IResourceUtilizationListDto {
2979
+ resources?: ResourceUtilizationDto[] | null;
3298
2980
  }
3299
- export declare class MachineUtilizationDto implements IMachineUtilizationDto {
2981
+ export declare class ResourceUtilizationDto implements IResourceUtilizationDto {
3300
2982
  assetId: number;
3301
2983
  name: string;
3302
2984
  description?: string | null;
@@ -3305,12 +2987,12 @@ export declare class MachineUtilizationDto implements IMachineUtilizationDto {
3305
2987
  startTime?: Date;
3306
2988
  workorder?: UtilizationWorkorderDto | null;
3307
2989
  powerOn?: PowerOnUtilizationDto | null;
3308
- constructor(data?: IMachineUtilizationDto);
2990
+ constructor(data?: IResourceUtilizationDto);
3309
2991
  init(_data?: any): void;
3310
- static fromJS(data: any): MachineUtilizationDto;
2992
+ static fromJS(data: any): ResourceUtilizationDto;
3311
2993
  toJSON(data?: any): any;
3312
2994
  }
3313
- export interface IMachineUtilizationDto {
2995
+ export interface IResourceUtilizationDto {
3314
2996
  assetId: number;
3315
2997
  name: string;
3316
2998
  description?: string | null;
@@ -3397,50 +3079,26 @@ export interface IPowerOnUtilizationDto extends IUtilizationAveragesDto {
3397
3079
  powerOnUtilization?: number | null;
3398
3080
  comparedToAverage?: number | null;
3399
3081
  }
3400
- export declare class UtilizationDetailsDto implements IUtilizationDetailsDto {
3401
- machineId: number;
3402
- machineName: string;
3082
+ export declare class ResourceUtilizationDetailsDto implements IResourceUtilizationDetailsDto {
3083
+ resourceId: number;
3084
+ resourceName: string;
3403
3085
  machineStateText?: string | null;
3404
3086
  machineState?: MachineState | null;
3405
3087
  startTime?: Date | null;
3406
3088
  powerOnUtilization?: number | null;
3407
- constructor(data?: IUtilizationDetailsDto);
3089
+ constructor(data?: IResourceUtilizationDetailsDto);
3408
3090
  init(_data?: any): void;
3409
- static fromJS(data: any): UtilizationDetailsDto;
3091
+ static fromJS(data: any): ResourceUtilizationDetailsDto;
3410
3092
  toJSON(data?: any): any;
3411
3093
  }
3412
- export interface IUtilizationDetailsDto {
3413
- machineId: number;
3414
- machineName: string;
3094
+ export interface IResourceUtilizationDetailsDto {
3095
+ resourceId: number;
3096
+ resourceName: string;
3415
3097
  machineStateText?: string | null;
3416
3098
  machineState?: MachineState | null;
3417
3099
  startTime?: Date | null;
3418
3100
  powerOnUtilization?: number | null;
3419
3101
  }
3420
- export declare class MachineStatesSummaryDto implements IMachineStatesSummaryDto {
3421
- states: StateDto[];
3422
- constructor(data?: IMachineStatesSummaryDto);
3423
- init(_data?: any): void;
3424
- static fromJS(data: any): MachineStatesSummaryDto;
3425
- toJSON(data?: any): any;
3426
- }
3427
- export interface IMachineStatesSummaryDto {
3428
- states: StateDto[];
3429
- }
3430
- export declare class StateDto implements IStateDto {
3431
- state: string;
3432
- machineState: MachineState;
3433
- seconds: number;
3434
- constructor(data?: IStateDto);
3435
- init(_data?: any): void;
3436
- static fromJS(data: any): StateDto;
3437
- toJSON(data?: any): any;
3438
- }
3439
- export interface IStateDto {
3440
- state: string;
3441
- machineState: MachineState;
3442
- seconds: number;
3443
- }
3444
3102
  export declare class TimelinesDto implements ITimelinesDto {
3445
3103
  machineStateTimeline: MachineStateDatapoint[];
3446
3104
  workorderTimeline: WorkOrderDatapoint[];
@@ -3586,54 +3244,78 @@ export interface ITimelineFilterDto {
3586
3244
  includeDowntimeReasons?: boolean | null;
3587
3245
  includeProgram?: boolean | null;
3588
3246
  }
3589
- export declare class MachineUptimesAggregateDto implements IMachineUptimesAggregateDto {
3590
- machineUptimes: MachineUptimeDto[];
3591
- sum: MachineUptimeSumDto;
3592
- constructor(data?: IMachineUptimesAggregateDto);
3247
+ export declare class MachineStatesSummaryDto implements IMachineStatesSummaryDto {
3248
+ states: StateDto[];
3249
+ constructor(data?: IMachineStatesSummaryDto);
3250
+ init(_data?: any): void;
3251
+ static fromJS(data: any): MachineStatesSummaryDto;
3252
+ toJSON(data?: any): any;
3253
+ }
3254
+ export interface IMachineStatesSummaryDto {
3255
+ states: StateDto[];
3256
+ }
3257
+ export declare class StateDto implements IStateDto {
3258
+ state: string;
3259
+ machineState: MachineState;
3260
+ seconds: number;
3261
+ constructor(data?: IStateDto);
3262
+ init(_data?: any): void;
3263
+ static fromJS(data: any): StateDto;
3264
+ toJSON(data?: any): any;
3265
+ }
3266
+ export interface IStateDto {
3267
+ state: string;
3268
+ machineState: MachineState;
3269
+ seconds: number;
3270
+ }
3271
+ export declare class ResourceUptimesAggregateDto implements IResourceUptimesAggregateDto {
3272
+ resourceUptimes: ResourceUptimeDto[];
3273
+ sum: ResourceUptimeSumDto;
3274
+ constructor(data?: IResourceUptimesAggregateDto);
3593
3275
  init(_data?: any): void;
3594
- static fromJS(data: any): MachineUptimesAggregateDto;
3276
+ static fromJS(data: any): ResourceUptimesAggregateDto;
3595
3277
  toJSON(data?: any): any;
3596
3278
  }
3597
- export interface IMachineUptimesAggregateDto {
3598
- machineUptimes: MachineUptimeDto[];
3599
- sum: MachineUptimeSumDto;
3279
+ export interface IResourceUptimesAggregateDto {
3280
+ resourceUptimes: ResourceUptimeDto[];
3281
+ sum: ResourceUptimeSumDto;
3600
3282
  }
3601
- export declare class MachineUptimeDto implements IMachineUptimeDto {
3283
+ export declare class ResourceUptimeDto implements IResourceUptimeDto {
3602
3284
  assetExternalId: string;
3603
3285
  percent: number;
3604
3286
  numberOfSeconds: number;
3605
- constructor(data?: IMachineUptimeDto);
3287
+ constructor(data?: IResourceUptimeDto);
3606
3288
  init(_data?: any): void;
3607
- static fromJS(data: any): MachineUptimeDto;
3289
+ static fromJS(data: any): ResourceUptimeDto;
3608
3290
  toJSON(data?: any): any;
3609
3291
  }
3610
- export interface IMachineUptimeDto {
3292
+ export interface IResourceUptimeDto {
3611
3293
  assetExternalId: string;
3612
3294
  percent: number;
3613
3295
  numberOfSeconds: number;
3614
3296
  }
3615
- export declare class MachineUptimeSumDto implements IMachineUptimeSumDto {
3297
+ export declare class ResourceUptimeSumDto implements IResourceUptimeSumDto {
3616
3298
  percent: number;
3617
3299
  numberOfSeconds: number;
3618
- constructor(data?: IMachineUptimeSumDto);
3300
+ constructor(data?: IResourceUptimeSumDto);
3619
3301
  init(_data?: any): void;
3620
- static fromJS(data: any): MachineUptimeSumDto;
3302
+ static fromJS(data: any): ResourceUptimeSumDto;
3621
3303
  toJSON(data?: any): any;
3622
3304
  }
3623
- export interface IMachineUptimeSumDto {
3305
+ export interface IResourceUptimeSumDto {
3624
3306
  percent: number;
3625
3307
  numberOfSeconds: number;
3626
3308
  }
3627
- export declare class ListMachineUptimesTodayRequest implements IListMachineUptimesTodayRequest {
3628
- machineExternalIds?: string[] | null;
3309
+ export declare class ListResourceUptimesTodayRequest implements IListResourceUptimesTodayRequest {
3310
+ resourceExternalIds?: string[] | null;
3629
3311
  utcOffset?: number;
3630
- constructor(data?: IListMachineUptimesTodayRequest);
3312
+ constructor(data?: IListResourceUptimesTodayRequest);
3631
3313
  init(_data?: any): void;
3632
- static fromJS(data: any): ListMachineUptimesTodayRequest;
3314
+ static fromJS(data: any): ListResourceUptimesTodayRequest;
3633
3315
  toJSON(data?: any): any;
3634
3316
  }
3635
- export interface IListMachineUptimesTodayRequest {
3636
- machineExternalIds?: string[] | null;
3317
+ export interface IListResourceUptimesTodayRequest {
3318
+ resourceExternalIds?: string[] | null;
3637
3319
  utcOffset?: number;
3638
3320
  }
3639
3321
  export declare class PowerOnUtilizationList implements IPowerOnUtilizationList {
@@ -3676,110 +3358,6 @@ export interface INumericNullableValueWithTimestamp {
3676
3358
  timestamp?: number;
3677
3359
  value?: number | null;
3678
3360
  }
3679
- export declare class ResourceUtilizationListDto implements IResourceUtilizationListDto {
3680
- resources?: ResourceUtilizationDto[] | null;
3681
- constructor(data?: IResourceUtilizationListDto);
3682
- init(_data?: any): void;
3683
- static fromJS(data: any): ResourceUtilizationListDto;
3684
- toJSON(data?: any): any;
3685
- }
3686
- export interface IResourceUtilizationListDto {
3687
- resources?: ResourceUtilizationDto[] | null;
3688
- }
3689
- export declare class ResourceUtilizationDto implements IResourceUtilizationDto {
3690
- assetId: number;
3691
- name: string;
3692
- description?: string | null;
3693
- state: string;
3694
- machineState: MachineState;
3695
- startTime?: Date;
3696
- workorder?: UtilizationWorkorderDto | null;
3697
- powerOn?: PowerOnUtilizationDto | null;
3698
- constructor(data?: IResourceUtilizationDto);
3699
- init(_data?: any): void;
3700
- static fromJS(data: any): ResourceUtilizationDto;
3701
- toJSON(data?: any): any;
3702
- }
3703
- export interface IResourceUtilizationDto {
3704
- assetId: number;
3705
- name: string;
3706
- description?: string | null;
3707
- state: string;
3708
- machineState: MachineState;
3709
- startTime?: Date;
3710
- workorder?: UtilizationWorkorderDto | null;
3711
- powerOn?: PowerOnUtilizationDto | null;
3712
- }
3713
- export declare class ResourceUtilizationDetailsDto implements IResourceUtilizationDetailsDto {
3714
- resourceId: number;
3715
- resourceName: string;
3716
- machineStateText?: string | null;
3717
- machineState?: MachineState | null;
3718
- startTime?: Date | null;
3719
- powerOnUtilization?: number | null;
3720
- constructor(data?: IResourceUtilizationDetailsDto);
3721
- init(_data?: any): void;
3722
- static fromJS(data: any): ResourceUtilizationDetailsDto;
3723
- toJSON(data?: any): any;
3724
- }
3725
- export interface IResourceUtilizationDetailsDto {
3726
- resourceId: number;
3727
- resourceName: string;
3728
- machineStateText?: string | null;
3729
- machineState?: MachineState | null;
3730
- startTime?: Date | null;
3731
- powerOnUtilization?: number | null;
3732
- }
3733
- export declare class ResourceUptimesAggregateDto implements IResourceUptimesAggregateDto {
3734
- resourceUptimes: ResourceUptimeDto[];
3735
- sum: ResourceUptimeSumDto;
3736
- constructor(data?: IResourceUptimesAggregateDto);
3737
- init(_data?: any): void;
3738
- static fromJS(data: any): ResourceUptimesAggregateDto;
3739
- toJSON(data?: any): any;
3740
- }
3741
- export interface IResourceUptimesAggregateDto {
3742
- resourceUptimes: ResourceUptimeDto[];
3743
- sum: ResourceUptimeSumDto;
3744
- }
3745
- export declare class ResourceUptimeDto implements IResourceUptimeDto {
3746
- assetExternalId: string;
3747
- percent: number;
3748
- numberOfSeconds: number;
3749
- constructor(data?: IResourceUptimeDto);
3750
- init(_data?: any): void;
3751
- static fromJS(data: any): ResourceUptimeDto;
3752
- toJSON(data?: any): any;
3753
- }
3754
- export interface IResourceUptimeDto {
3755
- assetExternalId: string;
3756
- percent: number;
3757
- numberOfSeconds: number;
3758
- }
3759
- export declare class ResourceUptimeSumDto implements IResourceUptimeSumDto {
3760
- percent: number;
3761
- numberOfSeconds: number;
3762
- constructor(data?: IResourceUptimeSumDto);
3763
- init(_data?: any): void;
3764
- static fromJS(data: any): ResourceUptimeSumDto;
3765
- toJSON(data?: any): any;
3766
- }
3767
- export interface IResourceUptimeSumDto {
3768
- percent: number;
3769
- numberOfSeconds: number;
3770
- }
3771
- export declare class ListResourceUptimesTodayRequest implements IListResourceUptimesTodayRequest {
3772
- resourceExternalIds?: string[] | null;
3773
- utcOffset?: number;
3774
- constructor(data?: IListResourceUptimesTodayRequest);
3775
- init(_data?: any): void;
3776
- static fromJS(data: any): ListResourceUptimesTodayRequest;
3777
- toJSON(data?: any): any;
3778
- }
3779
- export interface IListResourceUptimesTodayRequest {
3780
- resourceExternalIds?: string[] | null;
3781
- utcOffset?: number;
3782
- }
3783
3361
  export declare class UserAppDto implements IUserAppDto {
3784
3362
  key: string;
3785
3363
  name: string;
@@ -3808,7 +3386,6 @@ export declare class UserDetailsDto implements IUserDetailsDto {
3808
3386
  isExternalUser?: boolean;
3809
3387
  isBetaTester?: boolean | null;
3810
3388
  hasAccessToIgnos?: boolean;
3811
- isInvitedUser?: boolean;
3812
3389
  constructor(data?: IUserDetailsDto);
3813
3390
  init(_data?: any): void;
3814
3391
  static fromJS(data: any): UserDetailsDto;
@@ -3826,7 +3403,6 @@ export interface IUserDetailsDto {
3826
3403
  isExternalUser?: boolean;
3827
3404
  isBetaTester?: boolean | null;
3828
3405
  hasAccessToIgnos?: boolean;
3829
- isInvitedUser?: boolean;
3830
3406
  }
3831
3407
  export declare class UserDto implements IUserDto {
3832
3408
  id?: string | null;
@@ -5537,37 +5113,6 @@ export interface ICreateResourceInResourceGroup {
5537
5113
  name: string;
5538
5114
  description?: string | null;
5539
5115
  }
5540
- export declare class PulseSettingsDto implements IPulseSettingsDto {
5541
- defaultUtilizationType: UtilizationTypeDto;
5542
- utilizationTypeEnabling: UtilizationTypeEnablingDto;
5543
- constructor(data?: IPulseSettingsDto);
5544
- init(_data?: any): void;
5545
- static fromJS(data: any): PulseSettingsDto;
5546
- toJSON(data?: any): any;
5547
- }
5548
- export interface IPulseSettingsDto {
5549
- defaultUtilizationType: UtilizationTypeDto;
5550
- utilizationTypeEnabling: UtilizationTypeEnablingDto;
5551
- }
5552
- export type UtilizationTypeDto = "PowerOn" | "TwentyFourSeven" | "ActiveOrder" | "MachineCalendar" | "FactoryCalendar";
5553
- export declare class UtilizationTypeEnablingDto implements IUtilizationTypeEnablingDto {
5554
- powerOnEnabled: boolean;
5555
- twentyFourSevenEnabled: boolean;
5556
- activeOrderEnabled: boolean;
5557
- machineCalendarEnabled: boolean;
5558
- factoryCalendarEnabled: boolean;
5559
- constructor(data?: IUtilizationTypeEnablingDto);
5560
- init(_data?: any): void;
5561
- static fromJS(data: any): UtilizationTypeEnablingDto;
5562
- toJSON(data?: any): any;
5563
- }
5564
- export interface IUtilizationTypeEnablingDto {
5565
- powerOnEnabled: boolean;
5566
- twentyFourSevenEnabled: boolean;
5567
- activeOrderEnabled: boolean;
5568
- machineCalendarEnabled: boolean;
5569
- factoryCalendarEnabled: boolean;
5570
- }
5571
5116
  export declare class PulseSettingsResourceDto implements IPulseSettingsResourceDto {
5572
5117
  defaultUtilizationType: ResourceUtilizationTypeDto;
5573
5118
  utilizationTypeEnabling: ResourceUtilizationTypeEnablingDto;
@@ -5599,26 +5144,6 @@ export interface IResourceUtilizationTypeEnablingDto {
5599
5144
  resourceCalendarEnabled: boolean;
5600
5145
  factoryCalendarEnabled: boolean;
5601
5146
  }
5602
- export declare class UpdatePulseSettings implements IUpdatePulseSettings {
5603
- defaultUtilizationType: UtilizationTypeDto;
5604
- powerOnEnabled: boolean;
5605
- twentyfourSevenEnabled: boolean;
5606
- activeOrderEnabled: boolean;
5607
- machineCalendarEnabled: boolean;
5608
- factoryCalendarEnabled: boolean;
5609
- constructor(data?: IUpdatePulseSettings);
5610
- init(_data?: any): void;
5611
- static fromJS(data: any): UpdatePulseSettings;
5612
- toJSON(data?: any): any;
5613
- }
5614
- export interface IUpdatePulseSettings {
5615
- defaultUtilizationType: UtilizationTypeDto;
5616
- powerOnEnabled: boolean;
5617
- twentyfourSevenEnabled: boolean;
5618
- activeOrderEnabled: boolean;
5619
- machineCalendarEnabled: boolean;
5620
- factoryCalendarEnabled: boolean;
5621
- }
5622
5147
  export declare class UpdatePulseSettingsResource implements IUpdatePulseSettingsResource {
5623
5148
  defaultUtilizationType: ResourceUtilizationTypeDto;
5624
5149
  powerOnEnabled: boolean;
@@ -5639,21 +5164,21 @@ export interface IUpdatePulseSettingsResource {
5639
5164
  resourceCalendarEnabled: boolean;
5640
5165
  factoryCalendarEnabled: boolean;
5641
5166
  }
5642
- export declare class CompanyUtilizationDto implements ICompanyUtilizationDto {
5643
- utilizationType: UtilizationTypeDto;
5167
+ export declare class CompanyResourceUtilizationDto implements ICompanyResourceUtilizationDto {
5168
+ utilizationType: ResourceUtilizationTypeDto;
5644
5169
  companyUtilization: UtilizationDetailsV2Dto;
5645
- groups: MachineGroupUtilizationV2Dto[];
5646
- ungroupedMachines: MachineUtilizationV3Dto[];
5647
- constructor(data?: ICompanyUtilizationDto);
5170
+ groups: ResourceGroupUtilizationV2Dto[];
5171
+ ungroupedResources: ResourceUtilizationV3Dto[];
5172
+ constructor(data?: ICompanyResourceUtilizationDto);
5648
5173
  init(_data?: any): void;
5649
- static fromJS(data: any): CompanyUtilizationDto;
5174
+ static fromJS(data: any): CompanyResourceUtilizationDto;
5650
5175
  toJSON(data?: any): any;
5651
5176
  }
5652
- export interface ICompanyUtilizationDto {
5653
- utilizationType: UtilizationTypeDto;
5177
+ export interface ICompanyResourceUtilizationDto {
5178
+ utilizationType: ResourceUtilizationTypeDto;
5654
5179
  companyUtilization: UtilizationDetailsV2Dto;
5655
- groups: MachineGroupUtilizationV2Dto[];
5656
- ungroupedMachines: MachineUtilizationV3Dto[];
5180
+ groups: ResourceGroupUtilizationV2Dto[];
5181
+ ungroupedResources: ResourceUtilizationV3Dto[];
5657
5182
  }
5658
5183
  export declare class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
5659
5184
  utilizationPercent?: number | null;
@@ -5679,156 +5204,6 @@ export interface IUtilizationDetailsV2Dto {
5679
5204
  downtimeInMilliseconds?: number | null;
5680
5205
  totalTimeInMilliseconds?: number | null;
5681
5206
  }
5682
- export declare class MachineGroupUtilizationV2Dto implements IMachineGroupUtilizationV2Dto {
5683
- name: string;
5684
- utilization: UtilizationDetailsV2Dto;
5685
- machines: MachineUtilizationV3Dto[];
5686
- constructor(data?: IMachineGroupUtilizationV2Dto);
5687
- init(_data?: any): void;
5688
- static fromJS(data: any): MachineGroupUtilizationV2Dto;
5689
- toJSON(data?: any): any;
5690
- }
5691
- export interface IMachineGroupUtilizationV2Dto {
5692
- name: string;
5693
- utilization: UtilizationDetailsV2Dto;
5694
- machines: MachineUtilizationV3Dto[];
5695
- }
5696
- export declare class MachineUtilizationV3Dto implements IMachineUtilizationV3Dto {
5697
- id?: number;
5698
- name: string;
5699
- description?: string | null;
5700
- utilization: UtilizationDetailsV2Dto;
5701
- constructor(data?: IMachineUtilizationV3Dto);
5702
- init(_data?: any): void;
5703
- static fromJS(data: any): MachineUtilizationV3Dto;
5704
- toJSON(data?: any): any;
5705
- }
5706
- export interface IMachineUtilizationV3Dto {
5707
- id?: number;
5708
- name: string;
5709
- description?: string | null;
5710
- utilization: UtilizationDetailsV2Dto;
5711
- }
5712
- export declare class CrossCompanyUtilizationDto implements ICrossCompanyUtilizationDto {
5713
- utilizationType: UtilizationTypeDto;
5714
- crossCompanyUtilization: UtilizationDetailsV2Dto;
5715
- companies: NamedCompanyUtilizationDto[];
5716
- constructor(data?: ICrossCompanyUtilizationDto);
5717
- init(_data?: any): void;
5718
- static fromJS(data: any): CrossCompanyUtilizationDto;
5719
- toJSON(data?: any): any;
5720
- }
5721
- export interface ICrossCompanyUtilizationDto {
5722
- utilizationType: UtilizationTypeDto;
5723
- crossCompanyUtilization: UtilizationDetailsV2Dto;
5724
- companies: NamedCompanyUtilizationDto[];
5725
- }
5726
- export declare class NamedCompanyUtilizationDto extends CompanyUtilizationDto implements INamedCompanyUtilizationDto {
5727
- companyId: string;
5728
- companyName: string;
5729
- constructor(data?: INamedCompanyUtilizationDto);
5730
- init(_data?: any): void;
5731
- static fromJS(data: any): NamedCompanyUtilizationDto;
5732
- toJSON(data?: any): any;
5733
- }
5734
- export interface INamedCompanyUtilizationDto extends ICompanyUtilizationDto {
5735
- companyId: string;
5736
- companyName: string;
5737
- }
5738
- export declare class UtilizationDatapointListDto implements IUtilizationDatapointListDto {
5739
- datapoints?: NumericNullableValueWithTimestamp[];
5740
- trendDatapoints?: NumericNullableValueWithTimestamp[];
5741
- linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
5742
- constructor(data?: IUtilizationDatapointListDto);
5743
- init(_data?: any): void;
5744
- static fromJS(data: any): UtilizationDatapointListDto;
5745
- toJSON(data?: any): any;
5746
- }
5747
- export interface IUtilizationDatapointListDto {
5748
- datapoints?: NumericNullableValueWithTimestamp[];
5749
- trendDatapoints?: NumericNullableValueWithTimestamp[];
5750
- linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
5751
- }
5752
- export declare class MachineUtilizationDatapointListDto extends UtilizationDatapointListDto implements IMachineUtilizationDatapointListDto {
5753
- externalId: string;
5754
- id: number;
5755
- name: string;
5756
- description?: string | null;
5757
- constructor(data?: IMachineUtilizationDatapointListDto);
5758
- init(_data?: any): void;
5759
- static fromJS(data: any): MachineUtilizationDatapointListDto;
5760
- toJSON(data?: any): any;
5761
- }
5762
- export interface IMachineUtilizationDatapointListDto extends IUtilizationDatapointListDto {
5763
- externalId: string;
5764
- id: number;
5765
- name: string;
5766
- description?: string | null;
5767
- }
5768
- export declare class CompanyUtilizationDatapointListDto extends UtilizationDatapointListDto implements ICompanyUtilizationDatapointListDto {
5769
- groups?: MachineGroupUtilizationDatapointListDto[];
5770
- ungroupedMachines?: MachineUtilizationDatapointListDto[];
5771
- constructor(data?: ICompanyUtilizationDatapointListDto);
5772
- init(_data?: any): void;
5773
- static fromJS(data: any): CompanyUtilizationDatapointListDto;
5774
- toJSON(data?: any): any;
5775
- }
5776
- export interface ICompanyUtilizationDatapointListDto extends IUtilizationDatapointListDto {
5777
- groups?: MachineGroupUtilizationDatapointListDto[];
5778
- ungroupedMachines?: MachineUtilizationDatapointListDto[];
5779
- }
5780
- export declare class MachineGroupUtilizationDatapointListDto extends UtilizationDatapointListDto implements IMachineGroupUtilizationDatapointListDto {
5781
- groupId: string;
5782
- groupName: string;
5783
- machines?: MachineUtilizationDatapointListDto[];
5784
- constructor(data?: IMachineGroupUtilizationDatapointListDto);
5785
- init(_data?: any): void;
5786
- static fromJS(data: any): MachineGroupUtilizationDatapointListDto;
5787
- toJSON(data?: any): any;
5788
- }
5789
- export interface IMachineGroupUtilizationDatapointListDto extends IUtilizationDatapointListDto {
5790
- groupId: string;
5791
- groupName: string;
5792
- machines?: MachineUtilizationDatapointListDto[];
5793
- }
5794
- export declare class CrossCompanyUtilizationDatapointListDto extends UtilizationDatapointListDto implements ICrossCompanyUtilizationDatapointListDto {
5795
- companies?: NamedCompanyUtilizationDatapointListDto[];
5796
- constructor(data?: ICrossCompanyUtilizationDatapointListDto);
5797
- init(_data?: any): void;
5798
- static fromJS(data: any): CrossCompanyUtilizationDatapointListDto;
5799
- toJSON(data?: any): any;
5800
- }
5801
- export interface ICrossCompanyUtilizationDatapointListDto extends IUtilizationDatapointListDto {
5802
- companies?: NamedCompanyUtilizationDatapointListDto[];
5803
- }
5804
- export declare class NamedCompanyUtilizationDatapointListDto extends CompanyUtilizationDatapointListDto implements INamedCompanyUtilizationDatapointListDto {
5805
- companyId: string;
5806
- companyName: string;
5807
- constructor(data?: INamedCompanyUtilizationDatapointListDto);
5808
- init(_data?: any): void;
5809
- static fromJS(data: any): NamedCompanyUtilizationDatapointListDto;
5810
- toJSON(data?: any): any;
5811
- }
5812
- export interface INamedCompanyUtilizationDatapointListDto extends ICompanyUtilizationDatapointListDto {
5813
- companyId: string;
5814
- companyName: string;
5815
- }
5816
- export declare class CompanyResourceUtilizationDto implements ICompanyResourceUtilizationDto {
5817
- utilizationType: ResourceUtilizationTypeDto;
5818
- companyUtilization: UtilizationDetailsV2Dto;
5819
- groups: ResourceGroupUtilizationV2Dto[];
5820
- ungroupedResources: ResourceUtilizationV3Dto[];
5821
- constructor(data?: ICompanyResourceUtilizationDto);
5822
- init(_data?: any): void;
5823
- static fromJS(data: any): CompanyResourceUtilizationDto;
5824
- toJSON(data?: any): any;
5825
- }
5826
- export interface ICompanyResourceUtilizationDto {
5827
- utilizationType: ResourceUtilizationTypeDto;
5828
- companyUtilization: UtilizationDetailsV2Dto;
5829
- groups: ResourceGroupUtilizationV2Dto[];
5830
- ungroupedResources: ResourceUtilizationV3Dto[];
5831
- }
5832
5207
  export declare class ResourceGroupUtilizationV2Dto implements IResourceGroupUtilizationV2Dto {
5833
5208
  name: string;
5834
5209
  utilization: UtilizationDetailsV2Dto;
@@ -5885,6 +5260,20 @@ export interface INamedCompanyResourceUtilizationDto extends ICompanyResourceUti
5885
5260
  companyId: string;
5886
5261
  companyName: string;
5887
5262
  }
5263
+ export declare class UtilizationDatapointListDto implements IUtilizationDatapointListDto {
5264
+ datapoints?: NumericNullableValueWithTimestamp[];
5265
+ trendDatapoints?: NumericNullableValueWithTimestamp[];
5266
+ linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
5267
+ constructor(data?: IUtilizationDatapointListDto);
5268
+ init(_data?: any): void;
5269
+ static fromJS(data: any): UtilizationDatapointListDto;
5270
+ toJSON(data?: any): any;
5271
+ }
5272
+ export interface IUtilizationDatapointListDto {
5273
+ datapoints?: NumericNullableValueWithTimestamp[];
5274
+ trendDatapoints?: NumericNullableValueWithTimestamp[];
5275
+ linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
5276
+ }
5888
5277
  export declare class ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto implements IResourceUtilizationDatapointListDto {
5889
5278
  externalId: string;
5890
5279
  id: number;
@@ -7628,549 +7017,7 @@ export interface IMeasuringToolSettingsDto {
7628
7017
  disableUserDefinedIdentifiersForCalibratedTools: boolean;
7629
7018
  disableUserDefinedIdentifiersForUncalibratedTools: boolean;
7630
7019
  }
7631
- export declare class DowntimeReasonDto implements IDowntimeReasonDto {
7632
- id: string;
7633
- reason: string;
7634
- machineTypes: string[];
7635
- machineGroups: string[];
7636
- reasonType: DowntimeReasonTypeDto;
7637
- description?: string | null;
7638
- parentId?: string | null;
7639
- displayOrder?: number | null;
7640
- constructor(data?: IDowntimeReasonDto);
7641
- init(_data?: any): void;
7642
- static fromJS(data: any): DowntimeReasonDto;
7643
- toJSON(data?: any): any;
7644
- }
7645
- export interface IDowntimeReasonDto {
7646
- id: string;
7647
- reason: string;
7648
- machineTypes: string[];
7649
- machineGroups: string[];
7650
- reasonType: DowntimeReasonTypeDto;
7651
- description?: string | null;
7652
- parentId?: string | null;
7653
- displayOrder?: number | null;
7654
- }
7655
- export declare class CreateDowntimeReason implements ICreateDowntimeReason {
7656
- reason: string;
7657
- machineTypes: string[];
7658
- machineGroups?: string[] | null;
7659
- reasonType: DowntimeReasonTypeDto;
7660
- description?: string | null;
7661
- parentId?: string | null;
7662
- displayBeforeId?: string | null;
7663
- constructor(data?: ICreateDowntimeReason);
7664
- init(_data?: any): void;
7665
- static fromJS(data: any): CreateDowntimeReason;
7666
- toJSON(data?: any): any;
7667
- }
7668
- export interface ICreateDowntimeReason {
7669
- reason: string;
7670
- machineTypes: string[];
7671
- machineGroups?: string[] | null;
7672
- reasonType: DowntimeReasonTypeDto;
7673
- description?: string | null;
7674
- parentId?: string | null;
7675
- displayBeforeId?: string | null;
7676
- }
7677
- export declare class UpdateDowntimeReasonRequest implements IUpdateDowntimeReasonRequest {
7678
- reason: string;
7679
- machineTypes: string[];
7680
- machineGroups?: string[] | null;
7681
- reasonType: DowntimeReasonTypeDto;
7682
- description?: string | null;
7683
- parentId?: string | null;
7684
- displayBeforeId?: string | null;
7685
- constructor(data?: IUpdateDowntimeReasonRequest);
7686
- init(_data?: any): void;
7687
- static fromJS(data: any): UpdateDowntimeReasonRequest;
7688
- toJSON(data?: any): any;
7689
- }
7690
- export interface IUpdateDowntimeReasonRequest {
7691
- reason: string;
7692
- machineTypes: string[];
7693
- machineGroups?: string[] | null;
7694
- reasonType: DowntimeReasonTypeDto;
7695
- description?: string | null;
7696
- parentId?: string | null;
7697
- displayBeforeId?: string | null;
7698
- }
7699
- export declare class MachineTypeDto implements IMachineTypeDto {
7700
- machineType: string;
7701
- constructor(data?: IMachineTypeDto);
7702
- init(_data?: any): void;
7703
- static fromJS(data: any): MachineTypeDto;
7704
- toJSON(data?: any): any;
7705
- }
7706
- export interface IMachineTypeDto {
7707
- machineType: string;
7708
- }
7709
- export declare class ParentTopicDto implements IParentTopicDto {
7710
- id: string;
7711
- name: string;
7712
- description?: string | null;
7713
- displayOrder?: number;
7714
- subReasons?: DowntimeReasonDto[];
7715
- constructor(data?: IParentTopicDto);
7716
- init(_data?: any): void;
7717
- static fromJS(data: any): ParentTopicDto;
7718
- toJSON(data?: any): any;
7719
- }
7720
- export interface IParentTopicDto {
7721
- id: string;
7722
- name: string;
7723
- description?: string | null;
7724
- displayOrder?: number;
7725
- subReasons?: DowntimeReasonDto[];
7726
- }
7727
- export declare class CreateParentTopicRequest implements ICreateParentTopicRequest {
7728
- name: string;
7729
- description?: string | null;
7730
- displayBeforeId?: string | null;
7731
- constructor(data?: ICreateParentTopicRequest);
7732
- init(_data?: any): void;
7733
- static fromJS(data: any): CreateParentTopicRequest;
7734
- toJSON(data?: any): any;
7735
- }
7736
- export interface ICreateParentTopicRequest {
7737
- name: string;
7738
- description?: string | null;
7739
- displayBeforeId?: string | null;
7740
- }
7741
- export declare class UpdateParentTopicRequest implements IUpdateParentTopicRequest {
7742
- name: string;
7743
- description?: string | null;
7744
- displayBeforeId?: string | null;
7745
- constructor(data?: IUpdateParentTopicRequest);
7746
- init(_data?: any): void;
7747
- static fromJS(data: any): UpdateParentTopicRequest;
7748
- toJSON(data?: any): any;
7749
- }
7750
- export interface IUpdateParentTopicRequest {
7751
- name: string;
7752
- description?: string | null;
7753
- displayBeforeId?: string | null;
7754
- }
7755
- export declare class UpdateDowntimePeriodReasonRequest implements IUpdateDowntimePeriodReasonRequest {
7756
- reasonId?: string | null;
7757
- assetId?: number | null;
7758
- startTime?: Date | null;
7759
- endTime?: Date | null;
7760
- autoCompleteDowntime?: boolean | null;
7761
- comment?: string | null;
7762
- constructor(data?: IUpdateDowntimePeriodReasonRequest);
7763
- init(_data?: any): void;
7764
- static fromJS(data: any): UpdateDowntimePeriodReasonRequest;
7765
- toJSON(data?: any): any;
7766
- }
7767
- export interface IUpdateDowntimePeriodReasonRequest {
7768
- reasonId?: string | null;
7769
- assetId?: number | null;
7770
- startTime?: Date | null;
7771
- endTime?: Date | null;
7772
- autoCompleteDowntime?: boolean | null;
7773
- comment?: string | null;
7774
- }
7775
- export declare class ListTopDowntimeReasonsForResourcesRequest implements IListTopDowntimeReasonsForResourcesRequest {
7776
- startTime?: Date | null;
7777
- endTime?: Date | null;
7778
- resourceExternalIds?: string[] | null;
7779
- constructor(data?: IListTopDowntimeReasonsForResourcesRequest);
7780
- init(_data?: any): void;
7781
- static fromJS(data: any): ListTopDowntimeReasonsForResourcesRequest;
7782
- toJSON(data?: any): any;
7783
- }
7784
- export interface IListTopDowntimeReasonsForResourcesRequest {
7785
- startTime?: Date | null;
7786
- endTime?: Date | null;
7787
- resourceExternalIds?: string[] | null;
7788
- }
7789
- export declare class DowntimeReasonsReportDto implements IDowntimeReasonsReportDto {
7790
- companyId?: string | null;
7791
- totalDowntimeDurationMilliseconds?: number;
7792
- downtimeReasons?: DowntimeReasonReport[];
7793
- constructor(data?: IDowntimeReasonsReportDto);
7794
- init(_data?: any): void;
7795
- static fromJS(data: any): DowntimeReasonsReportDto;
7796
- toJSON(data?: any): any;
7797
- }
7798
- export interface IDowntimeReasonsReportDto {
7799
- companyId?: string | null;
7800
- totalDowntimeDurationMilliseconds?: number;
7801
- downtimeReasons?: DowntimeReasonReport[];
7802
- }
7803
- export declare class DowntimeReasonReport implements IDowntimeReasonReport {
7804
- reasonId: string;
7805
- reasonType: DowntimeReasonTypeDto;
7806
- reason: string;
7807
- parentReasonId: string;
7808
- parentReason: string;
7809
- totalDurationMilliseconds: number;
7810
- count: number;
7811
- details: DowntimeReasonInformation[];
7812
- constructor(data?: IDowntimeReasonReport);
7813
- init(_data?: any): void;
7814
- static fromJS(data: any): DowntimeReasonReport;
7815
- toJSON(data?: any): any;
7816
- }
7817
- export interface IDowntimeReasonReport {
7818
- reasonId: string;
7819
- reasonType: DowntimeReasonTypeDto;
7820
- reason: string;
7821
- parentReasonId: string;
7822
- parentReason: string;
7823
- totalDurationMilliseconds: number;
7824
- count: number;
7825
- details: DowntimeReasonInformation[];
7826
- }
7827
- export declare class DowntimeReasonInformation implements IDowntimeReasonInformation {
7828
- downtimeReason: DowntimePeriodReasonDto;
7829
- machine: string;
7830
- constructor(data?: IDowntimeReasonInformation);
7831
- init(_data?: any): void;
7832
- static fromJS(data: any): DowntimeReasonInformation;
7833
- toJSON(data?: any): any;
7834
- }
7835
- export interface IDowntimeReasonInformation {
7836
- downtimeReason: DowntimePeriodReasonDto;
7837
- machine: string;
7838
- }
7839
- export declare class CreateDowntimeReasonsReportRequest implements ICreateDowntimeReasonsReportRequest {
7840
- machineExternalIds?: string[] | null;
7841
- machineGroupNames?: string[] | null;
7842
- startTime?: Date | null;
7843
- endTime?: Date | null;
7844
- constructor(data?: ICreateDowntimeReasonsReportRequest);
7845
- init(_data?: any): void;
7846
- static fromJS(data: any): CreateDowntimeReasonsReportRequest;
7847
- toJSON(data?: any): any;
7848
- }
7849
- export interface ICreateDowntimeReasonsReportRequest {
7850
- machineExternalIds?: string[] | null;
7851
- machineGroupNames?: string[] | null;
7852
- startTime?: Date | null;
7853
- endTime?: Date | null;
7854
- }
7855
- export declare class MachineGroupCapacityDto implements IMachineGroupCapacityDto {
7856
- machineGroupName: string;
7857
- machine: MachineCapacityDto[];
7858
- constructor(data?: IMachineGroupCapacityDto);
7859
- init(_data?: any): void;
7860
- static fromJS(data: any): MachineGroupCapacityDto;
7861
- toJSON(data?: any): any;
7862
- }
7863
- export interface IMachineGroupCapacityDto {
7864
- machineGroupName: string;
7865
- machine: MachineCapacityDto[];
7866
- }
7867
- export declare class MachineCapacityDto implements IMachineCapacityDto {
7868
- machineExternalId: string;
7869
- name: string;
7870
- description?: string | null;
7871
- comment?: string | null;
7872
- utilizationPercent: number;
7873
- capacity: MachineCapacitySettingsDto[];
7874
- created?: Date | null;
7875
- updated?: Date | null;
7876
- updatedBy?: string | null;
7877
- updatedById?: string | null;
7878
- constructor(data?: IMachineCapacityDto);
7879
- init(_data?: any): void;
7880
- static fromJS(data: any): MachineCapacityDto;
7881
- toJSON(data?: any): any;
7882
- }
7883
- export interface IMachineCapacityDto {
7884
- machineExternalId: string;
7885
- name: string;
7886
- description?: string | null;
7887
- comment?: string | null;
7888
- utilizationPercent: number;
7889
- capacity: MachineCapacitySettingsDto[];
7890
- created?: Date | null;
7891
- updated?: Date | null;
7892
- updatedBy?: string | null;
7893
- updatedById?: string | null;
7894
- }
7895
- export declare class MachineCapacitySettingsDto implements IMachineCapacitySettingsDto {
7896
- dayIndex: number;
7897
- capacityHours: number;
7898
- constructor(data?: IMachineCapacitySettingsDto);
7899
- init(_data?: any): void;
7900
- static fromJS(data: any): MachineCapacitySettingsDto;
7901
- toJSON(data?: any): any;
7902
- }
7903
- export interface IMachineCapacitySettingsDto {
7904
- dayIndex: number;
7905
- capacityHours: number;
7906
- }
7907
- export declare class UpdateMachinesCapacity implements IUpdateMachinesCapacity {
7908
- machineExternalId: string;
7909
- comment?: string | null;
7910
- utilizationPercent?: number | null;
7911
- capacity?: MachineCapacitySettingsDto[] | null;
7912
- constructor(data?: IUpdateMachinesCapacity);
7913
- init(_data?: any): void;
7914
- static fromJS(data: any): UpdateMachinesCapacity;
7915
- toJSON(data?: any): any;
7916
- }
7917
- export interface IUpdateMachinesCapacity {
7918
- machineExternalId: string;
7919
- comment?: string | null;
7920
- utilizationPercent?: number | null;
7921
- capacity?: MachineCapacitySettingsDto[] | null;
7922
- }
7923
- export declare class MachineKpiDto implements IMachineKpiDto {
7924
- uptimeToNow: number;
7925
- uptimeToNowPreviousPeriod: number;
7926
- averageUpTime: number;
7927
- uptimeTargetReached: number;
7928
- days: MachineDayKpiDto[];
7929
- constructor(data?: IMachineKpiDto);
7930
- init(_data?: any): void;
7931
- static fromJS(data: any): MachineKpiDto;
7932
- toJSON(data?: any): any;
7933
- }
7934
- export interface IMachineKpiDto {
7935
- uptimeToNow: number;
7936
- uptimeToNowPreviousPeriod: number;
7937
- averageUpTime: number;
7938
- uptimeTargetReached: number;
7939
- days: MachineDayKpiDto[];
7940
- }
7941
- export declare class MachineDayKpiDto implements IMachineDayKpiDto {
7942
- date: Date;
7943
- uptime: number;
7944
- utilizationGoal: number;
7945
- constructor(data?: IMachineDayKpiDto);
7946
- init(_data?: any): void;
7947
- static fromJS(data: any): MachineDayKpiDto;
7948
- toJSON(data?: any): any;
7949
- }
7950
- export interface IMachineDayKpiDto {
7951
- date: Date;
7952
- uptime: number;
7953
- utilizationGoal: number;
7954
- }
7955
- export declare class MachineDailyUptimeDto implements IMachineDailyUptimeDto {
7956
- date?: Date;
7957
- historicUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
7958
- todayUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
7959
- constructor(data?: IMachineDailyUptimeDto);
7960
- init(_data?: any): void;
7961
- static fromJS(data: any): MachineDailyUptimeDto;
7962
- toJSON(data?: any): any;
7963
- }
7964
- export interface IMachineDailyUptimeDto {
7965
- date?: Date;
7966
- historicUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
7967
- todayUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
7968
- }
7969
- export declare class MachineDailyUptimePointDto implements IMachineDailyUptimePointDto {
7970
- date?: Date;
7971
- uptime?: number;
7972
- constructor(data?: IMachineDailyUptimePointDto);
7973
- init(_data?: any): void;
7974
- static fromJS(data: any): MachineDailyUptimePointDto;
7975
- toJSON(data?: any): any;
7976
- }
7977
- export interface IMachineDailyUptimePointDto {
7978
- date?: Date;
7979
- uptime?: number;
7980
- }
7981
- export declare class MachineGroupDto implements IMachineGroupDto {
7982
- id: string;
7983
- name: string;
7984
- companyId?: string | null;
7985
- machines: MachineGroupMemberDto[];
7986
- constructor(data?: IMachineGroupDto);
7987
- init(_data?: any): void;
7988
- static fromJS(data: any): MachineGroupDto;
7989
- toJSON(data?: any): any;
7990
- }
7991
- export interface IMachineGroupDto {
7992
- id: string;
7993
- name: string;
7994
- companyId?: string | null;
7995
- machines: MachineGroupMemberDto[];
7996
- }
7997
- export declare class MachineGroupMemberDto implements IMachineGroupMemberDto {
7998
- id: number;
7999
- externalId: string;
8000
- name: string;
8001
- description?: string | null;
8002
- type?: string | null;
8003
- constructor(data?: IMachineGroupMemberDto);
8004
- init(_data?: any): void;
8005
- static fromJS(data: any): MachineGroupMemberDto;
8006
- toJSON(data?: any): any;
8007
- }
8008
- export interface IMachineGroupMemberDto {
8009
- id: number;
8010
- externalId: string;
8011
- name: string;
8012
- description?: string | null;
8013
- type?: string | null;
8014
- }
8015
- export declare class CreateMachineGroupResponse implements ICreateMachineGroupResponse {
8016
- id: string;
8017
- constructor(data?: ICreateMachineGroupResponse);
8018
- init(_data?: any): void;
8019
- static fromJS(data: any): CreateMachineGroupResponse;
8020
- toJSON(data?: any): any;
8021
- }
8022
- export interface ICreateMachineGroupResponse {
8023
- id: string;
8024
- }
8025
- export declare class CreateMachineGroup implements ICreateMachineGroup {
8026
- name: string;
8027
- machineExternalIds?: string[] | null;
8028
- constructor(data?: ICreateMachineGroup);
8029
- init(_data?: any): void;
8030
- static fromJS(data: any): CreateMachineGroup;
8031
- toJSON(data?: any): any;
8032
- }
8033
- export interface ICreateMachineGroup {
8034
- name: string;
8035
- machineExternalIds?: string[] | null;
8036
- }
8037
- export declare class UpdateMachineGroup implements IUpdateMachineGroup {
8038
- id: string;
8039
- name: string;
8040
- machineExternalIds?: string[] | null;
8041
- constructor(data?: IUpdateMachineGroup);
8042
- init(_data?: any): void;
8043
- static fromJS(data: any): UpdateMachineGroup;
8044
- toJSON(data?: any): any;
8045
- }
8046
- export interface IUpdateMachineGroup {
8047
- id: string;
8048
- name: string;
8049
- machineExternalIds?: string[] | null;
8050
- }
8051
- export declare class MachineErpDataListDto implements IMachineErpDataListDto {
8052
- machines: SingleMachineErpDataListDto[];
8053
- constructor(data?: IMachineErpDataListDto);
8054
- init(_data?: any): void;
8055
- static fromJS(data: any): MachineErpDataListDto;
8056
- toJSON(data?: any): any;
8057
- }
8058
- export interface IMachineErpDataListDto {
8059
- machines: SingleMachineErpDataListDto[];
8060
- }
8061
- export declare class SingleMachineErpDataListDto implements ISingleMachineErpDataListDto {
8062
- assetId: number;
8063
- name: string;
8064
- description?: string;
8065
- activeOrders: MachineErpDataDto[];
8066
- lastActiveEvent?: WorkorderOperationEventDto | null;
8067
- downtimePeriodReason?: DowntimePeriodReasonDto | null;
8068
- constructor(data?: ISingleMachineErpDataListDto);
8069
- init(_data?: any): void;
8070
- static fromJS(data: any): SingleMachineErpDataListDto;
8071
- toJSON(data?: any): any;
8072
- }
8073
- export interface ISingleMachineErpDataListDto {
8074
- assetId: number;
8075
- name: string;
8076
- description?: string;
8077
- activeOrders: MachineErpDataDto[];
8078
- lastActiveEvent?: WorkorderOperationEventDto | null;
8079
- downtimePeriodReason?: DowntimePeriodReasonDto | null;
8080
- }
8081
- export declare class MachineErpDataDto implements IMachineErpDataDto {
8082
- workOrderId: string;
8083
- part: PartDto;
8084
- quantity: number;
8085
- producedQuantity: number;
8086
- scrappedQuantity: number;
8087
- operation: number;
8088
- plannedTime: number;
8089
- usedTime: number;
8090
- startTime: Date;
8091
- unit?: string | null;
8092
- customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
8093
- workOrderDescription?: string | null;
8094
- operationDescription?: string;
8095
- project?: WorkOrderProjectDto | null;
8096
- constructor(data?: IMachineErpDataDto);
8097
- init(_data?: any): void;
8098
- static fromJS(data: any): MachineErpDataDto;
8099
- toJSON(data?: any): any;
8100
- }
8101
- export interface IMachineErpDataDto {
8102
- workOrderId: string;
8103
- part: PartDto;
8104
- quantity: number;
8105
- producedQuantity: number;
8106
- scrappedQuantity: number;
8107
- operation: number;
8108
- plannedTime: number;
8109
- usedTime: number;
8110
- startTime: Date;
8111
- unit?: string | null;
8112
- customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
8113
- workOrderDescription?: string | null;
8114
- operationDescription?: string;
8115
- project?: WorkOrderProjectDto | null;
8116
- }
8117
- export declare class UtilizationSummaryDto implements IUtilizationSummaryDto {
8118
- factory: FactoryUtilizationDto;
8119
- groups: MachineGroupUtilizationDto[];
8120
- ungroupedMachines: MachineUtilizationV2Dto[];
8121
- constructor(data?: IUtilizationSummaryDto);
8122
- init(_data?: any): void;
8123
- static fromJS(data: any): UtilizationSummaryDto;
8124
- toJSON(data?: any): any;
8125
- }
8126
- export interface IUtilizationSummaryDto {
8127
- factory: FactoryUtilizationDto;
8128
- groups: MachineGroupUtilizationDto[];
8129
- ungroupedMachines: MachineUtilizationV2Dto[];
8130
- }
8131
- export declare class MachineGroupUtilizationDto implements IMachineGroupUtilizationDto {
8132
- name: string;
8133
- utilization: UtilizationDto;
8134
- machines: MachineUtilizationV2Dto[];
8135
- constructor(data?: IMachineGroupUtilizationDto);
8136
- init(_data?: any): void;
8137
- static fromJS(data: any): MachineGroupUtilizationDto;
8138
- toJSON(data?: any): any;
8139
- }
8140
- export interface IMachineGroupUtilizationDto {
8141
- name: string;
8142
- utilization: UtilizationDto;
8143
- machines: MachineUtilizationV2Dto[];
8144
- }
8145
- export declare class MachineUtilizationV2Dto implements IMachineUtilizationV2Dto {
8146
- id?: number;
8147
- name: string;
8148
- description?: string | null;
8149
- utilization: UtilizationDto;
8150
- constructor(data?: IMachineUtilizationV2Dto);
8151
- init(_data?: any): void;
8152
- static fromJS(data: any): MachineUtilizationV2Dto;
8153
- toJSON(data?: any): any;
8154
- }
8155
- export interface IMachineUtilizationV2Dto {
8156
- id?: number;
8157
- name: string;
8158
- description?: string | null;
8159
- utilization: UtilizationDto;
8160
- }
8161
- export declare class CrossCompanyUtilizationSummaryDto implements ICrossCompanyUtilizationSummaryDto {
8162
- crossCompany: FactoryUtilizationDto;
8163
- companies: MachineGroupUtilizationDto[];
8164
- constructor(data?: ICrossCompanyUtilizationSummaryDto);
8165
- init(_data?: any): void;
8166
- static fromJS(data: any): CrossCompanyUtilizationSummaryDto;
8167
- toJSON(data?: any): any;
8168
- }
8169
- export interface ICrossCompanyUtilizationSummaryDto {
8170
- crossCompany: FactoryUtilizationDto;
8171
- companies: MachineGroupUtilizationDto[];
8172
- }
8173
- export declare class LinkDto implements ILinkDto {
7020
+ export declare class LinkDto implements ILinkDto {
8174
7021
  id: string;
8175
7022
  uri: string;
8176
7023
  name: string;
@@ -8457,88 +7304,326 @@ export interface ICreateDocumentTypeRequest {
8457
7304
  canHaveCertificate: boolean;
8458
7305
  generatedDocumentKey?: string | null;
8459
7306
  }
8460
- export declare class UpdateDocumentTypeRequest implements IUpdateDocumentTypeRequest {
8461
- title: string;
8462
- description?: string | null;
8463
- workflowType: DocumentWorkflowType;
8464
- isInternalDocumentType: boolean;
8465
- isGeneratedDocumentType: boolean;
8466
- requirePortableFile: boolean;
8467
- category: DocumentTypeCategory;
8468
- documentRequirementStrategy: DocumentRequirementStrategy;
8469
- canHaveCertificate: boolean;
8470
- generatedDocumentKey?: string | null;
8471
- constructor(data?: IUpdateDocumentTypeRequest);
7307
+ export declare class UpdateDocumentTypeRequest implements IUpdateDocumentTypeRequest {
7308
+ title: string;
7309
+ description?: string | null;
7310
+ workflowType: DocumentWorkflowType;
7311
+ isInternalDocumentType: boolean;
7312
+ isGeneratedDocumentType: boolean;
7313
+ requirePortableFile: boolean;
7314
+ category: DocumentTypeCategory;
7315
+ documentRequirementStrategy: DocumentRequirementStrategy;
7316
+ canHaveCertificate: boolean;
7317
+ generatedDocumentKey?: string | null;
7318
+ constructor(data?: IUpdateDocumentTypeRequest);
7319
+ init(_data?: any): void;
7320
+ static fromJS(data: any): UpdateDocumentTypeRequest;
7321
+ toJSON(data?: any): any;
7322
+ }
7323
+ export interface IUpdateDocumentTypeRequest {
7324
+ title: string;
7325
+ description?: string | null;
7326
+ workflowType: DocumentWorkflowType;
7327
+ isInternalDocumentType: boolean;
7328
+ isGeneratedDocumentType: boolean;
7329
+ requirePortableFile: boolean;
7330
+ category: DocumentTypeCategory;
7331
+ documentRequirementStrategy: DocumentRequirementStrategy;
7332
+ canHaveCertificate: boolean;
7333
+ generatedDocumentKey?: string | null;
7334
+ }
7335
+ export declare class DocumentTypeRuleDto implements IDocumentTypeRuleDto {
7336
+ tag?: string | null;
7337
+ requirement?: DocumentMetadataRequirement;
7338
+ mutability?: Mutability;
7339
+ ruleType?: DocumentRuleType;
7340
+ constructor(data?: IDocumentTypeRuleDto);
7341
+ init(_data?: any): void;
7342
+ static fromJS(data: any): DocumentTypeRuleDto;
7343
+ toJSON(data?: any): any;
7344
+ }
7345
+ export interface IDocumentTypeRuleDto {
7346
+ tag?: string | null;
7347
+ requirement?: DocumentMetadataRequirement;
7348
+ mutability?: Mutability;
7349
+ ruleType?: DocumentRuleType;
7350
+ }
7351
+ export type DocumentMetadataRequirement = "NotAllowed" | "Optional" | "Required";
7352
+ export type Mutability = "Immutable" | "Appendable" | "Mutable";
7353
+ export type DocumentRuleType = "Tag" | "Sequences" | "OrderLines" | "LotNumbers";
7354
+ export declare class DocumentTypeRuleTypeDto implements IDocumentTypeRuleTypeDto {
7355
+ tag?: string | null;
7356
+ ruleType?: DocumentRuleType;
7357
+ description?: string | null;
7358
+ constructor(data?: IDocumentTypeRuleTypeDto);
7359
+ init(_data?: any): void;
7360
+ static fromJS(data: any): DocumentTypeRuleTypeDto;
7361
+ toJSON(data?: any): any;
7362
+ }
7363
+ export interface IDocumentTypeRuleTypeDto {
7364
+ tag?: string | null;
7365
+ ruleType?: DocumentRuleType;
7366
+ description?: string | null;
7367
+ }
7368
+ export declare class UpdateDocumentTypeRuleRequest implements IUpdateDocumentTypeRuleRequest {
7369
+ rules: DocumentTypeRuleDto[];
7370
+ constructor(data?: IUpdateDocumentTypeRuleRequest);
7371
+ init(_data?: any): void;
7372
+ static fromJS(data: any): UpdateDocumentTypeRuleRequest;
7373
+ toJSON(data?: any): any;
7374
+ }
7375
+ export interface IUpdateDocumentTypeRuleRequest {
7376
+ rules: DocumentTypeRuleDto[];
7377
+ }
7378
+ export declare class DocumentGeneratorTypeDto implements IDocumentGeneratorTypeDto {
7379
+ key: string;
7380
+ description: string;
7381
+ constructor(data?: IDocumentGeneratorTypeDto);
7382
+ init(_data?: any): void;
7383
+ static fromJS(data: any): DocumentGeneratorTypeDto;
7384
+ toJSON(data?: any): any;
7385
+ }
7386
+ export interface IDocumentGeneratorTypeDto {
7387
+ key: string;
7388
+ description: string;
7389
+ }
7390
+ export declare class CompanyUserDto implements ICompanyUserDto {
7391
+ companyId?: string | null;
7392
+ username?: string | null;
7393
+ name?: string | null;
7394
+ roles?: string[] | null;
7395
+ constructor(data?: ICompanyUserDto);
7396
+ init(_data?: any): void;
7397
+ static fromJS(data: any): CompanyUserDto;
7398
+ toJSON(data?: any): any;
7399
+ }
7400
+ export interface ICompanyUserDto {
7401
+ companyId?: string | null;
7402
+ username?: string | null;
7403
+ name?: string | null;
7404
+ roles?: string[] | null;
7405
+ }
7406
+ export declare class CreateCompanyUserRequest implements ICreateCompanyUserRequest {
7407
+ username: string;
7408
+ name: string;
7409
+ roles: string[];
7410
+ companyId?: string | null;
7411
+ constructor(data?: ICreateCompanyUserRequest);
7412
+ init(_data?: any): void;
7413
+ static fromJS(data: any): CreateCompanyUserRequest;
7414
+ toJSON(data?: any): any;
7415
+ }
7416
+ export interface ICreateCompanyUserRequest {
7417
+ username: string;
7418
+ name: string;
7419
+ roles: string[];
7420
+ companyId?: string | null;
7421
+ }
7422
+ export declare class UpdateCompanyUserRequest implements IUpdateCompanyUserRequest {
7423
+ name: string;
7424
+ roles: string[];
7425
+ companyId?: string | null;
7426
+ constructor(data?: IUpdateCompanyUserRequest);
7427
+ init(_data?: any): void;
7428
+ static fromJS(data: any): UpdateCompanyUserRequest;
7429
+ toJSON(data?: any): any;
7430
+ }
7431
+ export interface IUpdateCompanyUserRequest {
7432
+ name: string;
7433
+ roles: string[];
7434
+ companyId?: string | null;
7435
+ }
7436
+ export declare class ExternalRoleDto implements IExternalRoleDto {
7437
+ id: string;
7438
+ name: string;
7439
+ constructor(data?: IExternalRoleDto);
7440
+ init(_data?: any): void;
7441
+ static fromJS(data: any): ExternalRoleDto;
7442
+ toJSON(data?: any): any;
7443
+ }
7444
+ export interface IExternalRoleDto {
7445
+ id: string;
7446
+ name: string;
7447
+ }
7448
+ export declare class CompanyCustomerDto implements ICompanyCustomerDto {
7449
+ customerTenantId?: string | null;
7450
+ customerAzureAdTenantId?: string | null;
7451
+ customerName?: string | null;
7452
+ supplierId?: string | null;
7453
+ supplierName?: string | null;
7454
+ constructor(data?: ICompanyCustomerDto);
7455
+ init(_data?: any): void;
7456
+ static fromJS(data: any): CompanyCustomerDto;
7457
+ toJSON(data?: any): any;
7458
+ }
7459
+ export interface ICompanyCustomerDto {
7460
+ customerTenantId?: string | null;
7461
+ customerAzureAdTenantId?: string | null;
7462
+ customerName?: string | null;
7463
+ supplierId?: string | null;
7464
+ supplierName?: string | null;
7465
+ }
7466
+ export declare class InviteDto implements IInviteDto {
7467
+ tenantId: string;
7468
+ companyName: string;
7469
+ id: string;
7470
+ supplierId: string;
7471
+ supplierName: string;
7472
+ username: string;
7473
+ deadline: Date;
7474
+ createdTime: Date;
7475
+ createdBy: string;
7476
+ constructor(data?: IInviteDto);
7477
+ init(_data?: any): void;
7478
+ static fromJS(data: any): InviteDto;
7479
+ toJSON(data?: any): any;
7480
+ }
7481
+ export interface IInviteDto {
7482
+ tenantId: string;
7483
+ companyName: string;
7484
+ id: string;
7485
+ supplierId: string;
7486
+ supplierName: string;
7487
+ username: string;
7488
+ deadline: Date;
7489
+ createdTime: Date;
7490
+ createdBy: string;
7491
+ }
7492
+ export declare class CompanyDto implements ICompanyDto {
7493
+ id?: string | null;
7494
+ name?: string | null;
7495
+ organizationNumber?: string | null;
7496
+ country?: string | null;
7497
+ tenantId?: string | null;
7498
+ constructor(data?: ICompanyDto);
7499
+ init(_data?: any): void;
7500
+ static fromJS(data: any): CompanyDto;
7501
+ toJSON(data?: any): any;
7502
+ }
7503
+ export interface ICompanyDto {
7504
+ id?: string | null;
7505
+ name?: string | null;
7506
+ organizationNumber?: string | null;
7507
+ country?: string | null;
7508
+ tenantId?: string | null;
7509
+ }
7510
+ export declare class AcceptSupplierInviteRequest implements IAcceptSupplierInviteRequest {
7511
+ tenantId: string;
7512
+ existingCompanyId?: string | null;
7513
+ companyName?: string | null;
7514
+ organizationNumber?: string | null;
7515
+ threeLetterIsoCountry?: string | null;
7516
+ constructor(data?: IAcceptSupplierInviteRequest);
7517
+ init(_data?: any): void;
7518
+ static fromJS(data: any): AcceptSupplierInviteRequest;
7519
+ toJSON(data?: any): any;
7520
+ }
7521
+ export interface IAcceptSupplierInviteRequest {
7522
+ tenantId: string;
7523
+ existingCompanyId?: string | null;
7524
+ companyName?: string | null;
7525
+ organizationNumber?: string | null;
7526
+ threeLetterIsoCountry?: string | null;
7527
+ }
7528
+ export declare class SupplierInviteDto implements ISupplierInviteDto {
7529
+ id: string;
7530
+ supplierId: string;
7531
+ name: string;
7532
+ username: string;
7533
+ deadline: Date;
7534
+ createdTime: Date;
7535
+ createdBy: string;
7536
+ constructor(data?: ISupplierInviteDto);
7537
+ init(_data?: any): void;
7538
+ static fromJS(data: any): SupplierInviteDto;
7539
+ toJSON(data?: any): any;
7540
+ }
7541
+ export interface ISupplierInviteDto {
7542
+ id: string;
7543
+ supplierId: string;
7544
+ name: string;
7545
+ username: string;
7546
+ deadline: Date;
7547
+ createdTime: Date;
7548
+ createdBy: string;
7549
+ }
7550
+ export declare class CreateSupplierInvite implements ICreateSupplierInvite {
7551
+ supplierId: string;
7552
+ name: string;
7553
+ username: string;
7554
+ deadline: Date;
7555
+ constructor(data?: ICreateSupplierInvite);
8472
7556
  init(_data?: any): void;
8473
- static fromJS(data: any): UpdateDocumentTypeRequest;
7557
+ static fromJS(data: any): CreateSupplierInvite;
8474
7558
  toJSON(data?: any): any;
8475
7559
  }
8476
- export interface IUpdateDocumentTypeRequest {
8477
- title: string;
8478
- description?: string | null;
8479
- workflowType: DocumentWorkflowType;
8480
- isInternalDocumentType: boolean;
8481
- isGeneratedDocumentType: boolean;
8482
- requirePortableFile: boolean;
8483
- category: DocumentTypeCategory;
8484
- documentRequirementStrategy: DocumentRequirementStrategy;
8485
- canHaveCertificate: boolean;
8486
- generatedDocumentKey?: string | null;
7560
+ export interface ICreateSupplierInvite {
7561
+ supplierId: string;
7562
+ name: string;
7563
+ username: string;
7564
+ deadline: Date;
8487
7565
  }
8488
- export declare class DocumentTypeRuleDto implements IDocumentTypeRuleDto {
8489
- tag?: string | null;
8490
- requirement?: DocumentMetadataRequirement;
8491
- mutability?: Mutability;
8492
- ruleType?: DocumentRuleType;
8493
- constructor(data?: IDocumentTypeRuleDto);
7566
+ export declare class ExternalSupplierDto implements IExternalSupplierDto {
7567
+ id: string;
7568
+ name: string;
7569
+ companyId: string;
7570
+ active: boolean;
7571
+ constructor(data?: IExternalSupplierDto);
8494
7572
  init(_data?: any): void;
8495
- static fromJS(data: any): DocumentTypeRuleDto;
7573
+ static fromJS(data: any): ExternalSupplierDto;
8496
7574
  toJSON(data?: any): any;
8497
7575
  }
8498
- export interface IDocumentTypeRuleDto {
8499
- tag?: string | null;
8500
- requirement?: DocumentMetadataRequirement;
8501
- mutability?: Mutability;
8502
- ruleType?: DocumentRuleType;
7576
+ export interface IExternalSupplierDto {
7577
+ id: string;
7578
+ name: string;
7579
+ companyId: string;
7580
+ active: boolean;
8503
7581
  }
8504
- export type DocumentMetadataRequirement = "NotAllowed" | "Optional" | "Required";
8505
- export type Mutability = "Immutable" | "Appendable" | "Mutable";
8506
- export type DocumentRuleType = "Tag" | "Sequences" | "OrderLines" | "LotNumbers";
8507
- export declare class DocumentTypeRuleTypeDto implements IDocumentTypeRuleTypeDto {
8508
- tag?: string | null;
8509
- ruleType?: DocumentRuleType;
8510
- description?: string | null;
8511
- constructor(data?: IDocumentTypeRuleTypeDto);
7582
+ export declare class ImportSupplier implements IImportSupplier {
7583
+ supplierId: string;
7584
+ name: string;
7585
+ organizationNumber?: string | null;
7586
+ threeLetterIsoCountry: string;
7587
+ users: ImportSupplierUserDto[];
7588
+ constructor(data?: IImportSupplier);
8512
7589
  init(_data?: any): void;
8513
- static fromJS(data: any): DocumentTypeRuleTypeDto;
7590
+ static fromJS(data: any): ImportSupplier;
8514
7591
  toJSON(data?: any): any;
8515
7592
  }
8516
- export interface IDocumentTypeRuleTypeDto {
8517
- tag?: string | null;
8518
- ruleType?: DocumentRuleType;
8519
- description?: string | null;
7593
+ export interface IImportSupplier {
7594
+ supplierId: string;
7595
+ name: string;
7596
+ organizationNumber?: string | null;
7597
+ threeLetterIsoCountry: string;
7598
+ users: ImportSupplierUserDto[];
8520
7599
  }
8521
- export declare class UpdateDocumentTypeRuleRequest implements IUpdateDocumentTypeRuleRequest {
8522
- rules: DocumentTypeRuleDto[];
8523
- constructor(data?: IUpdateDocumentTypeRuleRequest);
7600
+ export declare class ImportSupplierUserDto implements IImportSupplierUserDto {
7601
+ username: string;
7602
+ name: string;
7603
+ roles: string[];
7604
+ constructor(data?: IImportSupplierUserDto);
8524
7605
  init(_data?: any): void;
8525
- static fromJS(data: any): UpdateDocumentTypeRuleRequest;
7606
+ static fromJS(data: any): ImportSupplierUserDto;
8526
7607
  toJSON(data?: any): any;
8527
7608
  }
8528
- export interface IUpdateDocumentTypeRuleRequest {
8529
- rules: DocumentTypeRuleDto[];
7609
+ export interface IImportSupplierUserDto {
7610
+ username: string;
7611
+ name: string;
7612
+ roles: string[];
8530
7613
  }
8531
- export declare class DocumentGeneratorTypeDto implements IDocumentGeneratorTypeDto {
8532
- key: string;
8533
- description: string;
8534
- constructor(data?: IDocumentGeneratorTypeDto);
7614
+ export declare class CreateSupplierMapping implements ICreateSupplierMapping {
7615
+ companyId: string;
7616
+ existingSupplierId: string;
7617
+ newSupplierId: string;
7618
+ constructor(data?: ICreateSupplierMapping);
8535
7619
  init(_data?: any): void;
8536
- static fromJS(data: any): DocumentGeneratorTypeDto;
7620
+ static fromJS(data: any): CreateSupplierMapping;
8537
7621
  toJSON(data?: any): any;
8538
7622
  }
8539
- export interface IDocumentGeneratorTypeDto {
8540
- key: string;
8541
- description: string;
7623
+ export interface ICreateSupplierMapping {
7624
+ companyId: string;
7625
+ existingSupplierId: string;
7626
+ newSupplierId: string;
8542
7627
  }
8543
7628
  export declare class CncMachineTransferDto implements ICncMachineTransferDto {
8544
7629
  id: string;
@@ -14719,6 +13804,7 @@ export interface IValidationRuleDto {
14719
13804
  export declare class SaveValueResponseDto implements ISaveValueResponseDto {
14720
13805
  elementCompleted: boolean;
14721
13806
  warning?: string | null;
13807
+ informationText?: string | null;
14722
13808
  isOutsideTolerances: boolean;
14723
13809
  isCloseToTolerances: boolean;
14724
13810
  tools: MeasurementFormToolValueDto[];
@@ -14730,6 +13816,7 @@ export declare class SaveValueResponseDto implements ISaveValueResponseDto {
14730
13816
  export interface ISaveValueResponseDto {
14731
13817
  elementCompleted: boolean;
14732
13818
  warning?: string | null;
13819
+ informationText?: string | null;
14733
13820
  isOutsideTolerances: boolean;
14734
13821
  isCloseToTolerances: boolean;
14735
13822
  tools: MeasurementFormToolValueDto[];
@@ -15755,232 +14842,1371 @@ export declare class AddDiscussionMessageRequest implements IAddDiscussionMessag
15755
14842
  resourceId?: string | null;
15756
14843
  constructor(data?: IAddDiscussionMessageRequest);
15757
14844
  init(_data?: any): void;
15758
- static fromJS(data: any): AddDiscussionMessageRequest;
14845
+ static fromJS(data: any): AddDiscussionMessageRequest;
14846
+ toJSON(data?: any): any;
14847
+ }
14848
+ export interface IAddDiscussionMessageRequest {
14849
+ message: string;
14850
+ operationId?: string | null;
14851
+ operationName?: string | null;
14852
+ resourceId?: string | null;
14853
+ }
14854
+ export declare class WorkorderDiscussionReadStatusDto implements IWorkorderDiscussionReadStatusDto {
14855
+ workorderId?: string;
14856
+ operationId?: string | null;
14857
+ resourceId?: string | null;
14858
+ userUpn?: string;
14859
+ lastRead?: Date;
14860
+ constructor(data?: IWorkorderDiscussionReadStatusDto);
14861
+ init(_data?: any): void;
14862
+ static fromJS(data: any): WorkorderDiscussionReadStatusDto;
14863
+ toJSON(data?: any): any;
14864
+ }
14865
+ export interface IWorkorderDiscussionReadStatusDto {
14866
+ workorderId?: string;
14867
+ operationId?: string | null;
14868
+ resourceId?: string | null;
14869
+ userUpn?: string;
14870
+ lastRead?: Date;
14871
+ }
14872
+ export declare class SetDiscussionLastReadRequest implements ISetDiscussionLastReadRequest {
14873
+ operationId?: string | null;
14874
+ resourceId?: string | null;
14875
+ constructor(data?: ISetDiscussionLastReadRequest);
14876
+ init(_data?: any): void;
14877
+ static fromJS(data: any): SetDiscussionLastReadRequest;
14878
+ toJSON(data?: any): any;
14879
+ }
14880
+ export interface ISetDiscussionLastReadRequest {
14881
+ operationId?: string | null;
14882
+ resourceId?: string | null;
14883
+ }
14884
+ export declare class AmcCheckListDto implements IAmcCheckListDto {
14885
+ results: AmcResultLiteDto[];
14886
+ continuationToken?: string | null;
14887
+ constructor(data?: IAmcCheckListDto);
14888
+ init(_data?: any): void;
14889
+ static fromJS(data: any): AmcCheckListDto;
14890
+ toJSON(data?: any): any;
14891
+ }
14892
+ export interface IAmcCheckListDto {
14893
+ results: AmcResultLiteDto[];
14894
+ continuationToken?: string | null;
14895
+ }
14896
+ export declare class AmcResultLiteDto implements IAmcResultLiteDto {
14897
+ resultId: string;
14898
+ originalMaterialCertificate: FileDto;
14899
+ generatedMaterialCertificate?: FileDto | null;
14900
+ customer?: string | null;
14901
+ project?: string | null;
14902
+ workOrder?: string | null;
14903
+ materialCertificateTypeId?: string | null;
14904
+ materialCertificateTypeName?: string | null;
14905
+ materialCertificateTypeVersion?: number | null;
14906
+ specificationId: string;
14907
+ specificationName: string;
14908
+ specificationVersion: number;
14909
+ purchaseOrder?: string | null;
14910
+ purchaseOrderLine?: string | null;
14911
+ purchaseOrderItem?: string | null;
14912
+ purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
14913
+ purchaseOrderLot?: string | null;
14914
+ status: AmcCheckStatusDto;
14915
+ created: Date;
14916
+ createdBy: string;
14917
+ createdById: string;
14918
+ updatedBy?: string | null;
14919
+ updatedById?: string | null;
14920
+ constructor(data?: IAmcResultLiteDto);
14921
+ init(_data?: any): void;
14922
+ static fromJS(data: any): AmcResultLiteDto;
14923
+ toJSON(data?: any): any;
14924
+ }
14925
+ export interface IAmcResultLiteDto {
14926
+ resultId: string;
14927
+ originalMaterialCertificate: FileDto;
14928
+ generatedMaterialCertificate?: FileDto | null;
14929
+ customer?: string | null;
14930
+ project?: string | null;
14931
+ workOrder?: string | null;
14932
+ materialCertificateTypeId?: string | null;
14933
+ materialCertificateTypeName?: string | null;
14934
+ materialCertificateTypeVersion?: number | null;
14935
+ specificationId: string;
14936
+ specificationName: string;
14937
+ specificationVersion: number;
14938
+ purchaseOrder?: string | null;
14939
+ purchaseOrderLine?: string | null;
14940
+ purchaseOrderItem?: string | null;
14941
+ purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
14942
+ purchaseOrderLot?: string | null;
14943
+ status: AmcCheckStatusDto;
14944
+ created: Date;
14945
+ createdBy: string;
14946
+ createdById: string;
14947
+ updatedBy?: string | null;
14948
+ updatedById?: string | null;
14949
+ }
14950
+ export type AmcCheckStatusDto = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected";
14951
+ export declare class AmcCheckListRequestDto implements IAmcCheckListRequestDto {
14952
+ pageSize?: number | null;
14953
+ orderBy?: AmcCheckListOrderColumnRequestDto | null;
14954
+ searchTerm?: string | null;
14955
+ originalReportFilter?: string | null;
14956
+ generatedReportFilter?: string | null;
14957
+ customerFilter?: string | null;
14958
+ projectFilter?: string | null;
14959
+ purchaseOrderFilter?: string | null;
14960
+ workOrderFilter?: string | null;
14961
+ certificateTypeFilter?: string | null;
14962
+ lineFilter?: string | null;
14963
+ itemFilter?: string | null;
14964
+ heatFilter?: string | null;
14965
+ lotFilter?: string | null;
14966
+ dateFromFilter?: Date | null;
14967
+ dateToFilter?: Date | null;
14968
+ statusFilter: AmcCheckStatusDto[];
14969
+ continuationToken?: string | null;
14970
+ constructor(data?: IAmcCheckListRequestDto);
14971
+ init(_data?: any): void;
14972
+ static fromJS(data: any): AmcCheckListRequestDto;
14973
+ toJSON(data?: any): any;
14974
+ }
14975
+ export interface IAmcCheckListRequestDto {
14976
+ pageSize?: number | null;
14977
+ orderBy?: AmcCheckListOrderColumnRequestDto | null;
14978
+ searchTerm?: string | null;
14979
+ originalReportFilter?: string | null;
14980
+ generatedReportFilter?: string | null;
14981
+ customerFilter?: string | null;
14982
+ projectFilter?: string | null;
14983
+ purchaseOrderFilter?: string | null;
14984
+ workOrderFilter?: string | null;
14985
+ certificateTypeFilter?: string | null;
14986
+ lineFilter?: string | null;
14987
+ itemFilter?: string | null;
14988
+ heatFilter?: string | null;
14989
+ lotFilter?: string | null;
14990
+ dateFromFilter?: Date | null;
14991
+ dateToFilter?: Date | null;
14992
+ statusFilter: AmcCheckStatusDto[];
14993
+ continuationToken?: string | null;
14994
+ }
14995
+ export type AmcCheckListOrderColumnRequestDto = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status";
14996
+ export declare class AmcResultDto implements IAmcResultDto {
14997
+ resultId: string;
14998
+ originalMaterialCertificate: FileDto;
14999
+ generatedMaterialCertificate?: FileDto | null;
15000
+ customer?: string | null;
15001
+ project?: string | null;
15002
+ workOrder?: string | null;
15003
+ materialCertificateTypeId?: string | null;
15004
+ materialCertificateTypeName?: string | null;
15005
+ materialCertificateTypeVersion?: number | null;
15006
+ specificationId: string;
15007
+ specificationName: string;
15008
+ specificationVersion: number;
15009
+ purchaseOrder?: string | null;
15010
+ purchaseOrderLine?: string | null;
15011
+ purchaseOrderItem?: string | null;
15012
+ purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
15013
+ purchaseOrderLot?: string | null;
15014
+ status: AmcCheckStatusDto;
15015
+ created: Date;
15016
+ createdBy: string;
15017
+ createdById: string;
15018
+ updatedBy?: string | null;
15019
+ updatedById?: string | null;
15020
+ certificateTypeSection: AmcTypeResultChecksDto;
15021
+ chemistrySpecification: AmcChemistrySpecificationResultDto;
15022
+ mechanicalSpecification: AmcMechanicalSpecificationResultDto;
15023
+ ferriteSpecification: AmcFerriteSpecificationResultDto;
15024
+ heatSpecification: AmcHeatTreatmentSpecificationResultDto;
15025
+ constructor(data?: IAmcResultDto);
15026
+ init(_data?: any): void;
15027
+ static fromJS(data: any): AmcResultDto;
15028
+ toJSON(data?: any): any;
15029
+ }
15030
+ export interface IAmcResultDto {
15031
+ resultId: string;
15032
+ originalMaterialCertificate: FileDto;
15033
+ generatedMaterialCertificate?: FileDto | null;
15034
+ customer?: string | null;
15035
+ project?: string | null;
15036
+ workOrder?: string | null;
15037
+ materialCertificateTypeId?: string | null;
15038
+ materialCertificateTypeName?: string | null;
15039
+ materialCertificateTypeVersion?: number | null;
15040
+ specificationId: string;
15041
+ specificationName: string;
15042
+ specificationVersion: number;
15043
+ purchaseOrder?: string | null;
15044
+ purchaseOrderLine?: string | null;
15045
+ purchaseOrderItem?: string | null;
15046
+ purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
15047
+ purchaseOrderLot?: string | null;
15048
+ status: AmcCheckStatusDto;
15049
+ created: Date;
15050
+ createdBy: string;
15051
+ createdById: string;
15052
+ updatedBy?: string | null;
15053
+ updatedById?: string | null;
15054
+ certificateTypeSection: AmcTypeResultChecksDto;
15055
+ chemistrySpecification: AmcChemistrySpecificationResultDto;
15056
+ mechanicalSpecification: AmcMechanicalSpecificationResultDto;
15057
+ ferriteSpecification: AmcFerriteSpecificationResultDto;
15058
+ heatSpecification: AmcHeatTreatmentSpecificationResultDto;
15059
+ }
15060
+ export declare class AmcTypeResultChecksDto implements IAmcTypeResultChecksDto {
15061
+ manufacturer: AmcTypeManufacturerResultChecksDto;
15062
+ signature: AmcTypeSignatureResultChecksDto;
15063
+ thirdParty: AmcTypeThirdPartyResultChecksDto;
15064
+ certification: AmcTypeCertificationResultChecksDto;
15065
+ productAndOrderInformation: AmcTypeProductAndOrderInformationResultChecksDto;
15066
+ testMethodsAndReferences: AmcTypeTestMethodsAndReferencesResultChecksDto;
15067
+ testResults: AmcTypeTestResultsResultChecksDto;
15068
+ documentTypes: AmcTypeDocumentTypesResultChecksDto;
15069
+ constructor(data?: IAmcTypeResultChecksDto);
15070
+ init(_data?: any): void;
15071
+ static fromJS(data: any): AmcTypeResultChecksDto;
15072
+ toJSON(data?: any): any;
15073
+ }
15074
+ export interface IAmcTypeResultChecksDto {
15075
+ manufacturer: AmcTypeManufacturerResultChecksDto;
15076
+ signature: AmcTypeSignatureResultChecksDto;
15077
+ thirdParty: AmcTypeThirdPartyResultChecksDto;
15078
+ certification: AmcTypeCertificationResultChecksDto;
15079
+ productAndOrderInformation: AmcTypeProductAndOrderInformationResultChecksDto;
15080
+ testMethodsAndReferences: AmcTypeTestMethodsAndReferencesResultChecksDto;
15081
+ testResults: AmcTypeTestResultsResultChecksDto;
15082
+ documentTypes: AmcTypeDocumentTypesResultChecksDto;
15083
+ }
15084
+ export declare class AmcTypeManufacturerResultChecksDto implements IAmcTypeManufacturerResultChecksDto {
15085
+ manufacturer?: AmcTypeResultLine | null;
15086
+ address?: AmcTypeResultLine | null;
15087
+ contact?: AmcTypeResultLine | null;
15088
+ constructor(data?: IAmcTypeManufacturerResultChecksDto);
15089
+ init(_data?: any): void;
15090
+ static fromJS(data: any): AmcTypeManufacturerResultChecksDto;
15091
+ toJSON(data?: any): any;
15092
+ }
15093
+ export interface IAmcTypeManufacturerResultChecksDto {
15094
+ manufacturer?: AmcTypeResultLine | null;
15095
+ address?: AmcTypeResultLine | null;
15096
+ contact?: AmcTypeResultLine | null;
15097
+ }
15098
+ export declare class AmcTypeResultLine implements IAmcTypeResultLine {
15099
+ found?: boolean;
15100
+ approved?: boolean | null;
15101
+ comment?: string | null;
15102
+ created: Date;
15103
+ createdBy: string;
15104
+ createdById: string;
15105
+ updatedBy?: string | null;
15106
+ updatedById?: string | null;
15107
+ constructor(data?: IAmcTypeResultLine);
15108
+ init(_data?: any): void;
15109
+ static fromJS(data: any): AmcTypeResultLine;
15110
+ toJSON(data?: any): any;
15111
+ }
15112
+ export interface IAmcTypeResultLine {
15113
+ found?: boolean;
15114
+ approved?: boolean | null;
15115
+ comment?: string | null;
15116
+ created: Date;
15117
+ createdBy: string;
15118
+ createdById: string;
15119
+ updatedBy?: string | null;
15120
+ updatedById?: string | null;
15121
+ }
15122
+ export declare class AmcTypeSignatureResultChecksDto implements IAmcTypeSignatureResultChecksDto {
15123
+ certifiedBy?: AmcTypeResultLine | null;
15124
+ position?: AmcTypeResultLine | null;
15125
+ signature?: AmcTypeResultLine | null;
15126
+ date?: AmcTypeResultLine | null;
15127
+ stamp?: AmcTypeResultLine | null;
15128
+ constructor(data?: IAmcTypeSignatureResultChecksDto);
15129
+ init(_data?: any): void;
15130
+ static fromJS(data: any): AmcTypeSignatureResultChecksDto;
15131
+ toJSON(data?: any): any;
15132
+ }
15133
+ export interface IAmcTypeSignatureResultChecksDto {
15134
+ certifiedBy?: AmcTypeResultLine | null;
15135
+ position?: AmcTypeResultLine | null;
15136
+ signature?: AmcTypeResultLine | null;
15137
+ date?: AmcTypeResultLine | null;
15138
+ stamp?: AmcTypeResultLine | null;
15139
+ }
15140
+ export declare class AmcTypeThirdPartyResultChecksDto implements IAmcTypeThirdPartyResultChecksDto {
15141
+ inspectionBody?: AmcTypeResultLine | null;
15142
+ inspectorName?: AmcTypeResultLine | null;
15143
+ position?: AmcTypeResultLine | null;
15144
+ verificationMethod?: AmcTypeResultLine | null;
15145
+ signature?: AmcTypeResultLine | null;
15146
+ date?: AmcTypeResultLine | null;
15147
+ stamp?: AmcTypeResultLine | null;
15148
+ constructor(data?: IAmcTypeThirdPartyResultChecksDto);
15149
+ init(_data?: any): void;
15150
+ static fromJS(data: any): AmcTypeThirdPartyResultChecksDto;
15151
+ toJSON(data?: any): any;
15152
+ }
15153
+ export interface IAmcTypeThirdPartyResultChecksDto {
15154
+ inspectionBody?: AmcTypeResultLine | null;
15155
+ inspectorName?: AmcTypeResultLine | null;
15156
+ position?: AmcTypeResultLine | null;
15157
+ verificationMethod?: AmcTypeResultLine | null;
15158
+ signature?: AmcTypeResultLine | null;
15159
+ date?: AmcTypeResultLine | null;
15160
+ stamp?: AmcTypeResultLine | null;
15161
+ }
15162
+ export declare class AmcTypeCertificationResultChecksDto implements IAmcTypeCertificationResultChecksDto {
15163
+ certificateOfCompliance?: AmcTypeResultLine | null;
15164
+ inspectionCertificate?: AmcTypeResultLine | null;
15165
+ constructor(data?: IAmcTypeCertificationResultChecksDto);
15166
+ init(_data?: any): void;
15167
+ static fromJS(data: any): AmcTypeCertificationResultChecksDto;
15168
+ toJSON(data?: any): any;
15169
+ }
15170
+ export interface IAmcTypeCertificationResultChecksDto {
15171
+ certificateOfCompliance?: AmcTypeResultLine | null;
15172
+ inspectionCertificate?: AmcTypeResultLine | null;
15173
+ }
15174
+ export declare class AmcTypeProductAndOrderInformationResultChecksDto implements IAmcTypeProductAndOrderInformationResultChecksDto {
15175
+ productDescription?: AmcTypeResultLine | null;
15176
+ materialGrade?: AmcTypeResultLine | null;
15177
+ customer?: AmcTypeResultLine | null;
15178
+ customerOrderNumber?: AmcTypeResultLine | null;
15179
+ dimensionsOrWeight?: AmcTypeResultLine | null;
15180
+ batchNumber?: AmcTypeResultLine | null;
15181
+ heatNumber?: AmcTypeResultLine | null;
15182
+ relatedStandards?: AmcTypeResultLine | null;
15183
+ constructor(data?: IAmcTypeProductAndOrderInformationResultChecksDto);
15184
+ init(_data?: any): void;
15185
+ static fromJS(data: any): AmcTypeProductAndOrderInformationResultChecksDto;
15186
+ toJSON(data?: any): any;
15187
+ }
15188
+ export interface IAmcTypeProductAndOrderInformationResultChecksDto {
15189
+ productDescription?: AmcTypeResultLine | null;
15190
+ materialGrade?: AmcTypeResultLine | null;
15191
+ customer?: AmcTypeResultLine | null;
15192
+ customerOrderNumber?: AmcTypeResultLine | null;
15193
+ dimensionsOrWeight?: AmcTypeResultLine | null;
15194
+ batchNumber?: AmcTypeResultLine | null;
15195
+ heatNumber?: AmcTypeResultLine | null;
15196
+ relatedStandards?: AmcTypeResultLine | null;
15197
+ }
15198
+ export declare class AmcTypeTestMethodsAndReferencesResultChecksDto implements IAmcTypeTestMethodsAndReferencesResultChecksDto {
15199
+ usedStandards?: AmcTypeResultLine | null;
15200
+ constructor(data?: IAmcTypeTestMethodsAndReferencesResultChecksDto);
15201
+ init(_data?: any): void;
15202
+ static fromJS(data: any): AmcTypeTestMethodsAndReferencesResultChecksDto;
15203
+ toJSON(data?: any): any;
15204
+ }
15205
+ export interface IAmcTypeTestMethodsAndReferencesResultChecksDto {
15206
+ usedStandards?: AmcTypeResultLine | null;
15207
+ }
15208
+ export declare class AmcTypeTestResultsResultChecksDto implements IAmcTypeTestResultsResultChecksDto {
15209
+ mechanicalProperties?: AmcTypeResultLine | null;
15210
+ chemicalAnalysis?: AmcTypeResultLine | null;
15211
+ impactTests?: AmcTypeResultLine | null;
15212
+ corrosionTests?: AmcTypeResultLine | null;
15213
+ ferriteContentAndMicrostructure?: AmcTypeResultLine | null;
15214
+ constructor(data?: IAmcTypeTestResultsResultChecksDto);
15215
+ init(_data?: any): void;
15216
+ static fromJS(data: any): AmcTypeTestResultsResultChecksDto;
15217
+ toJSON(data?: any): any;
15218
+ }
15219
+ export interface IAmcTypeTestResultsResultChecksDto {
15220
+ mechanicalProperties?: AmcTypeResultLine | null;
15221
+ chemicalAnalysis?: AmcTypeResultLine | null;
15222
+ impactTests?: AmcTypeResultLine | null;
15223
+ corrosionTests?: AmcTypeResultLine | null;
15224
+ ferriteContentAndMicrostructure?: AmcTypeResultLine | null;
15225
+ }
15226
+ export declare class AmcTypeDocumentTypesResultChecksDto implements IAmcTypeDocumentTypesResultChecksDto {
15227
+ heatTreatmentCertificate?: AmcTypeResultLine | null;
15228
+ ultrasonicControlCertificate?: AmcTypeResultLine | null;
15229
+ liquidPenetrantCertificate?: AmcTypeResultLine | null;
15230
+ testReport?: AmcTypeResultLine | null;
15231
+ dimensionalReport?: AmcTypeResultLine | null;
15232
+ dyePenetrantReport?: AmcTypeResultLine | null;
15233
+ visualReport?: AmcTypeResultLine | null;
15234
+ certificateOfAnalyticalAndMechanicalTests?: AmcTypeResultLine | null;
15235
+ certificateOfTest?: AmcTypeResultLine | null;
15236
+ technicalReport?: AmcTypeResultLine | null;
15237
+ microExaminationReport?: AmcTypeResultLine | null;
15238
+ radiologicalReport?: AmcTypeResultLine | null;
15239
+ constructor(data?: IAmcTypeDocumentTypesResultChecksDto);
15240
+ init(_data?: any): void;
15241
+ static fromJS(data: any): AmcTypeDocumentTypesResultChecksDto;
15242
+ toJSON(data?: any): any;
15243
+ }
15244
+ export interface IAmcTypeDocumentTypesResultChecksDto {
15245
+ heatTreatmentCertificate?: AmcTypeResultLine | null;
15246
+ ultrasonicControlCertificate?: AmcTypeResultLine | null;
15247
+ liquidPenetrantCertificate?: AmcTypeResultLine | null;
15248
+ testReport?: AmcTypeResultLine | null;
15249
+ dimensionalReport?: AmcTypeResultLine | null;
15250
+ dyePenetrantReport?: AmcTypeResultLine | null;
15251
+ visualReport?: AmcTypeResultLine | null;
15252
+ certificateOfAnalyticalAndMechanicalTests?: AmcTypeResultLine | null;
15253
+ certificateOfTest?: AmcTypeResultLine | null;
15254
+ technicalReport?: AmcTypeResultLine | null;
15255
+ microExaminationReport?: AmcTypeResultLine | null;
15256
+ radiologicalReport?: AmcTypeResultLine | null;
15257
+ }
15258
+ export declare class AmcChemistrySpecificationResultDto implements IAmcChemistrySpecificationResultDto {
15259
+ carbon?: AmcSpecificationResultLineDto | null;
15260
+ manganese?: AmcSpecificationResultLineDto | null;
15261
+ silicon?: AmcSpecificationResultLineDto | null;
15262
+ phosphorus?: AmcSpecificationResultLineDto | null;
15263
+ sulfur?: AmcSpecificationResultLineDto | null;
15264
+ chromium?: AmcSpecificationResultLineDto | null;
15265
+ nickel?: AmcSpecificationResultLineDto | null;
15266
+ molybdenum?: AmcSpecificationResultLineDto | null;
15267
+ copper?: AmcSpecificationResultLineDto | null;
15268
+ nitrogen?: AmcSpecificationResultLineDto | null;
15269
+ wolfram?: AmcSpecificationResultLineDto | null;
15270
+ iron?: AmcSpecificationResultLineDto | null;
15271
+ constructor(data?: IAmcChemistrySpecificationResultDto);
15272
+ init(_data?: any): void;
15273
+ static fromJS(data: any): AmcChemistrySpecificationResultDto;
15274
+ toJSON(data?: any): any;
15275
+ }
15276
+ export interface IAmcChemistrySpecificationResultDto {
15277
+ carbon?: AmcSpecificationResultLineDto | null;
15278
+ manganese?: AmcSpecificationResultLineDto | null;
15279
+ silicon?: AmcSpecificationResultLineDto | null;
15280
+ phosphorus?: AmcSpecificationResultLineDto | null;
15281
+ sulfur?: AmcSpecificationResultLineDto | null;
15282
+ chromium?: AmcSpecificationResultLineDto | null;
15283
+ nickel?: AmcSpecificationResultLineDto | null;
15284
+ molybdenum?: AmcSpecificationResultLineDto | null;
15285
+ copper?: AmcSpecificationResultLineDto | null;
15286
+ nitrogen?: AmcSpecificationResultLineDto | null;
15287
+ wolfram?: AmcSpecificationResultLineDto | null;
15288
+ iron?: AmcSpecificationResultLineDto | null;
15289
+ }
15290
+ export declare class AmcSpecificationResultLineDto implements IAmcSpecificationResultLineDto {
15291
+ specificationOperator?: string | null;
15292
+ specificationValue1?: string | null;
15293
+ specificationValue2?: string | null;
15294
+ specificationSymbol?: string | null;
15295
+ readValue?: string | null;
15296
+ status: AmcSpecificationResultLineStatusDto;
15297
+ approved?: boolean | null;
15298
+ comment?: string | null;
15299
+ created: Date;
15300
+ createdBy: string;
15301
+ createdById: string;
15302
+ updated?: Date | null;
15303
+ updatedBy?: string | null;
15304
+ updatedById?: string | null;
15305
+ constructor(data?: IAmcSpecificationResultLineDto);
15306
+ init(_data?: any): void;
15307
+ static fromJS(data: any): AmcSpecificationResultLineDto;
15308
+ toJSON(data?: any): any;
15309
+ }
15310
+ export interface IAmcSpecificationResultLineDto {
15311
+ specificationOperator?: string | null;
15312
+ specificationValue1?: string | null;
15313
+ specificationValue2?: string | null;
15314
+ specificationSymbol?: string | null;
15315
+ readValue?: string | null;
15316
+ status: AmcSpecificationResultLineStatusDto;
15317
+ approved?: boolean | null;
15318
+ comment?: string | null;
15319
+ created: Date;
15320
+ createdBy: string;
15321
+ createdById: string;
15322
+ updated?: Date | null;
15323
+ updatedBy?: string | null;
15324
+ updatedById?: string | null;
15325
+ }
15326
+ export type AmcSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok";
15327
+ export declare class AmcMechanicalSpecificationResultDto implements IAmcMechanicalSpecificationResultDto {
15328
+ yieldStrength?: AmcSpecificationResultLineDto | null;
15329
+ tensileStrength?: AmcSpecificationResultLineDto | null;
15330
+ elongation?: AmcSpecificationResultLineDto | null;
15331
+ reductionOfArea?: AmcSpecificationResultLineDto | null;
15332
+ impactEnergy?: AmcSpecificationResultLineDto | null;
15333
+ hardness?: AmcSpecificationResultLineDto | null;
15334
+ constructor(data?: IAmcMechanicalSpecificationResultDto);
15335
+ init(_data?: any): void;
15336
+ static fromJS(data: any): AmcMechanicalSpecificationResultDto;
15337
+ toJSON(data?: any): any;
15338
+ }
15339
+ export interface IAmcMechanicalSpecificationResultDto {
15340
+ yieldStrength?: AmcSpecificationResultLineDto | null;
15341
+ tensileStrength?: AmcSpecificationResultLineDto | null;
15342
+ elongation?: AmcSpecificationResultLineDto | null;
15343
+ reductionOfArea?: AmcSpecificationResultLineDto | null;
15344
+ impactEnergy?: AmcSpecificationResultLineDto | null;
15345
+ hardness?: AmcSpecificationResultLineDto | null;
15346
+ }
15347
+ export declare class AmcFerriteSpecificationResultDto implements IAmcFerriteSpecificationResultDto {
15348
+ ferriteContent?: AmcSpecificationResultLineDto | null;
15349
+ measurementMethod: AmcFerriteMeasurementMethodDto[];
15350
+ constructor(data?: IAmcFerriteSpecificationResultDto);
15351
+ init(_data?: any): void;
15352
+ static fromJS(data: any): AmcFerriteSpecificationResultDto;
15353
+ toJSON(data?: any): any;
15354
+ }
15355
+ export interface IAmcFerriteSpecificationResultDto {
15356
+ ferriteContent?: AmcSpecificationResultLineDto | null;
15357
+ measurementMethod: AmcFerriteMeasurementMethodDto[];
15358
+ }
15359
+ export type AmcFerriteMeasurementMethodDto = "Diushdf" | "Oidjrgr" | "Fjioerw";
15360
+ export declare class AmcHeatTreatmentSpecificationResultDto implements IAmcHeatTreatmentSpecificationResultDto {
15361
+ heatTreatmentType: AmcHeatTreatmentTypeDto[];
15362
+ treatmentTemperature?: AmcSpecificationResultLineDto | null;
15363
+ holdingTime?: AmcSpecificationResultLineDto | null;
15364
+ coolingMethod: AmcHeatCoolingMethodDto[];
15365
+ treatedCondition: AmcHeatTreatedConditionDto[];
15366
+ verificationMethod: AmcHeatVerificationMethodDto[];
15367
+ constructor(data?: IAmcHeatTreatmentSpecificationResultDto);
15368
+ init(_data?: any): void;
15369
+ static fromJS(data: any): AmcHeatTreatmentSpecificationResultDto;
15370
+ toJSON(data?: any): any;
15371
+ }
15372
+ export interface IAmcHeatTreatmentSpecificationResultDto {
15373
+ heatTreatmentType: AmcHeatTreatmentTypeDto[];
15374
+ treatmentTemperature?: AmcSpecificationResultLineDto | null;
15375
+ holdingTime?: AmcSpecificationResultLineDto | null;
15376
+ coolingMethod: AmcHeatCoolingMethodDto[];
15377
+ treatedCondition: AmcHeatTreatedConditionDto[];
15378
+ verificationMethod: AmcHeatVerificationMethodDto[];
15379
+ }
15380
+ export type AmcHeatTreatmentTypeDto = "Sdjifo" | "Oijsdfi";
15381
+ export type AmcHeatCoolingMethodDto = "Asdfjoi" | "Fsdifjd";
15382
+ export type AmcHeatTreatedConditionDto = "Fsdijfo" | "Oisjdfi";
15383
+ export type AmcHeatVerificationMethodDto = "Fisjsdfdfo" | "Oisjdegrfo";
15384
+ export declare class ProcessAmcCheckRequestDto implements IProcessAmcCheckRequestDto {
15385
+ files: UploadFileDto[];
15386
+ specificationId: string;
15387
+ specificationVersion: string;
15388
+ certificateTypeId?: string | null;
15389
+ certificateTypeVersion?: string | null;
15390
+ purchaseOrder?: string | null;
15391
+ constructor(data?: IProcessAmcCheckRequestDto);
15392
+ init(_data?: any): void;
15393
+ static fromJS(data: any): ProcessAmcCheckRequestDto;
15394
+ toJSON(data?: any): any;
15395
+ }
15396
+ export interface IProcessAmcCheckRequestDto {
15397
+ files: UploadFileDto[];
15398
+ specificationId: string;
15399
+ specificationVersion: string;
15400
+ certificateTypeId?: string | null;
15401
+ certificateTypeVersion?: string | null;
15402
+ purchaseOrder?: string | null;
15403
+ }
15404
+ export declare class UpdateAmcResultRequestDto implements IUpdateAmcResultRequestDto {
15405
+ certificateId: string;
15406
+ project?: string | null;
15407
+ purchaseOrder?: string | null;
15408
+ workOrder?: string | null;
15409
+ updateStatus: UpdateAmcRequestStatusDto;
15410
+ certificateTypeSection: UpdateAmcTypeResultChecksDto;
15411
+ chemistrySpecification: UpdateAmcChemistrySpecificationResultDto;
15412
+ mechanicalSpecification: UpdateAmcMechanicalSpecificationResultDto;
15413
+ ferriteSpecification: UpdateAmcFerriteSpecificationResultDto;
15414
+ heatSpecification: UpdateAmcHeatTreatmentSpecificationResultDto;
15415
+ constructor(data?: IUpdateAmcResultRequestDto);
15416
+ init(_data?: any): void;
15417
+ static fromJS(data: any): UpdateAmcResultRequestDto;
15759
15418
  toJSON(data?: any): any;
15760
15419
  }
15761
- export interface IAddDiscussionMessageRequest {
15762
- message: string;
15763
- operationId?: string | null;
15764
- operationName?: string | null;
15765
- resourceId?: string | null;
15766
- }
15767
- export declare class WorkorderDiscussionReadStatusDto implements IWorkorderDiscussionReadStatusDto {
15768
- workorderId?: string;
15769
- operationId?: string | null;
15770
- resourceId?: string | null;
15771
- userUpn?: string;
15772
- lastRead?: Date;
15773
- constructor(data?: IWorkorderDiscussionReadStatusDto);
15420
+ export interface IUpdateAmcResultRequestDto {
15421
+ certificateId: string;
15422
+ project?: string | null;
15423
+ purchaseOrder?: string | null;
15424
+ workOrder?: string | null;
15425
+ updateStatus: UpdateAmcRequestStatusDto;
15426
+ certificateTypeSection: UpdateAmcTypeResultChecksDto;
15427
+ chemistrySpecification: UpdateAmcChemistrySpecificationResultDto;
15428
+ mechanicalSpecification: UpdateAmcMechanicalSpecificationResultDto;
15429
+ ferriteSpecification: UpdateAmcFerriteSpecificationResultDto;
15430
+ heatSpecification: UpdateAmcHeatTreatmentSpecificationResultDto;
15431
+ }
15432
+ export type UpdateAmcRequestStatusDto = "Draft" | "Approve" | "Reject";
15433
+ export declare class UpdateAmcTypeResultChecksDto implements IUpdateAmcTypeResultChecksDto {
15434
+ manufacturer: UpdateAmcTypeManufacturerResultChecksDto;
15435
+ signature: UpdateAmcTypeSignatureResultChecksDto;
15436
+ thirdParty: UpdateAmcTypeThirdPartyResultChecksDto;
15437
+ certification: UpdateAmcTypeCertificationResultChecksDto;
15438
+ productAndOrderInformation: UpdateAmcTypeProductAndOrderInformationResultChecksDto;
15439
+ testMethodsAndReferences: UpdateAmcTypeTestMethodsAndReferencesResultChecksDto;
15440
+ testResults: UpdateAmcTypeTestResultsResultChecksDto;
15441
+ documentTypes: UpdateAmcTypeDocumentTypesResultChecksDto;
15442
+ constructor(data?: IUpdateAmcTypeResultChecksDto);
15443
+ init(_data?: any): void;
15444
+ static fromJS(data: any): UpdateAmcTypeResultChecksDto;
15445
+ toJSON(data?: any): any;
15446
+ }
15447
+ export interface IUpdateAmcTypeResultChecksDto {
15448
+ manufacturer: UpdateAmcTypeManufacturerResultChecksDto;
15449
+ signature: UpdateAmcTypeSignatureResultChecksDto;
15450
+ thirdParty: UpdateAmcTypeThirdPartyResultChecksDto;
15451
+ certification: UpdateAmcTypeCertificationResultChecksDto;
15452
+ productAndOrderInformation: UpdateAmcTypeProductAndOrderInformationResultChecksDto;
15453
+ testMethodsAndReferences: UpdateAmcTypeTestMethodsAndReferencesResultChecksDto;
15454
+ testResults: UpdateAmcTypeTestResultsResultChecksDto;
15455
+ documentTypes: UpdateAmcTypeDocumentTypesResultChecksDto;
15456
+ }
15457
+ export declare class UpdateAmcTypeManufacturerResultChecksDto implements IUpdateAmcTypeManufacturerResultChecksDto {
15458
+ manufacturer?: UpdateAmcTypeResultLine | null;
15459
+ address?: UpdateAmcTypeResultLine | null;
15460
+ contact?: UpdateAmcTypeResultLine | null;
15461
+ constructor(data?: IUpdateAmcTypeManufacturerResultChecksDto);
15462
+ init(_data?: any): void;
15463
+ static fromJS(data: any): UpdateAmcTypeManufacturerResultChecksDto;
15464
+ toJSON(data?: any): any;
15465
+ }
15466
+ export interface IUpdateAmcTypeManufacturerResultChecksDto {
15467
+ manufacturer?: UpdateAmcTypeResultLine | null;
15468
+ address?: UpdateAmcTypeResultLine | null;
15469
+ contact?: UpdateAmcTypeResultLine | null;
15470
+ }
15471
+ export declare class UpdateAmcTypeResultLine implements IUpdateAmcTypeResultLine {
15472
+ approved?: boolean | null;
15473
+ comment?: string | null;
15474
+ constructor(data?: IUpdateAmcTypeResultLine);
15774
15475
  init(_data?: any): void;
15775
- static fromJS(data: any): WorkorderDiscussionReadStatusDto;
15476
+ static fromJS(data: any): UpdateAmcTypeResultLine;
15776
15477
  toJSON(data?: any): any;
15777
15478
  }
15778
- export interface IWorkorderDiscussionReadStatusDto {
15779
- workorderId?: string;
15780
- operationId?: string | null;
15781
- resourceId?: string | null;
15782
- userUpn?: string;
15783
- lastRead?: Date;
15479
+ export interface IUpdateAmcTypeResultLine {
15480
+ approved?: boolean | null;
15481
+ comment?: string | null;
15784
15482
  }
15785
- export declare class SetDiscussionLastReadRequest implements ISetDiscussionLastReadRequest {
15786
- operationId?: string | null;
15787
- resourceId?: string | null;
15788
- constructor(data?: ISetDiscussionLastReadRequest);
15483
+ export declare class UpdateAmcTypeSignatureResultChecksDto implements IUpdateAmcTypeSignatureResultChecksDto {
15484
+ certifiedBy?: UpdateAmcTypeResultLine | null;
15485
+ position?: UpdateAmcTypeResultLine | null;
15486
+ signature?: UpdateAmcTypeResultLine | null;
15487
+ date?: UpdateAmcTypeResultLine | null;
15488
+ stamp?: UpdateAmcTypeResultLine | null;
15489
+ constructor(data?: IUpdateAmcTypeSignatureResultChecksDto);
15490
+ init(_data?: any): void;
15491
+ static fromJS(data: any): UpdateAmcTypeSignatureResultChecksDto;
15492
+ toJSON(data?: any): any;
15493
+ }
15494
+ export interface IUpdateAmcTypeSignatureResultChecksDto {
15495
+ certifiedBy?: UpdateAmcTypeResultLine | null;
15496
+ position?: UpdateAmcTypeResultLine | null;
15497
+ signature?: UpdateAmcTypeResultLine | null;
15498
+ date?: UpdateAmcTypeResultLine | null;
15499
+ stamp?: UpdateAmcTypeResultLine | null;
15500
+ }
15501
+ export declare class UpdateAmcTypeThirdPartyResultChecksDto implements IUpdateAmcTypeThirdPartyResultChecksDto {
15502
+ inspectionBody?: UpdateAmcTypeResultLine | null;
15503
+ inspectorName?: UpdateAmcTypeResultLine | null;
15504
+ position?: UpdateAmcTypeResultLine | null;
15505
+ verificationMethod?: UpdateAmcTypeResultLine | null;
15506
+ signature?: UpdateAmcTypeResultLine | null;
15507
+ date?: UpdateAmcTypeResultLine | null;
15508
+ stamp?: UpdateAmcTypeResultLine | null;
15509
+ constructor(data?: IUpdateAmcTypeThirdPartyResultChecksDto);
15510
+ init(_data?: any): void;
15511
+ static fromJS(data: any): UpdateAmcTypeThirdPartyResultChecksDto;
15512
+ toJSON(data?: any): any;
15513
+ }
15514
+ export interface IUpdateAmcTypeThirdPartyResultChecksDto {
15515
+ inspectionBody?: UpdateAmcTypeResultLine | null;
15516
+ inspectorName?: UpdateAmcTypeResultLine | null;
15517
+ position?: UpdateAmcTypeResultLine | null;
15518
+ verificationMethod?: UpdateAmcTypeResultLine | null;
15519
+ signature?: UpdateAmcTypeResultLine | null;
15520
+ date?: UpdateAmcTypeResultLine | null;
15521
+ stamp?: UpdateAmcTypeResultLine | null;
15522
+ }
15523
+ export declare class UpdateAmcTypeCertificationResultChecksDto implements IUpdateAmcTypeCertificationResultChecksDto {
15524
+ certificateOfCompliance?: UpdateAmcTypeResultLine | null;
15525
+ inspectionCertificate?: UpdateAmcTypeResultLine | null;
15526
+ constructor(data?: IUpdateAmcTypeCertificationResultChecksDto);
15527
+ init(_data?: any): void;
15528
+ static fromJS(data: any): UpdateAmcTypeCertificationResultChecksDto;
15529
+ toJSON(data?: any): any;
15530
+ }
15531
+ export interface IUpdateAmcTypeCertificationResultChecksDto {
15532
+ certificateOfCompliance?: UpdateAmcTypeResultLine | null;
15533
+ inspectionCertificate?: UpdateAmcTypeResultLine | null;
15534
+ }
15535
+ export declare class UpdateAmcTypeProductAndOrderInformationResultChecksDto implements IUpdateAmcTypeProductAndOrderInformationResultChecksDto {
15536
+ productDescription?: UpdateAmcTypeResultLine | null;
15537
+ materialGrade?: UpdateAmcTypeResultLine | null;
15538
+ customer?: UpdateAmcTypeResultLine | null;
15539
+ customerOrderNumber?: UpdateAmcTypeResultLine | null;
15540
+ dimensionsOrWeight?: UpdateAmcTypeResultLine | null;
15541
+ batchNumber?: UpdateAmcTypeResultLine | null;
15542
+ heatNumber?: UpdateAmcTypeResultLine | null;
15543
+ relatedStandards?: UpdateAmcTypeResultLine | null;
15544
+ constructor(data?: IUpdateAmcTypeProductAndOrderInformationResultChecksDto);
15545
+ init(_data?: any): void;
15546
+ static fromJS(data: any): UpdateAmcTypeProductAndOrderInformationResultChecksDto;
15547
+ toJSON(data?: any): any;
15548
+ }
15549
+ export interface IUpdateAmcTypeProductAndOrderInformationResultChecksDto {
15550
+ productDescription?: UpdateAmcTypeResultLine | null;
15551
+ materialGrade?: UpdateAmcTypeResultLine | null;
15552
+ customer?: UpdateAmcTypeResultLine | null;
15553
+ customerOrderNumber?: UpdateAmcTypeResultLine | null;
15554
+ dimensionsOrWeight?: UpdateAmcTypeResultLine | null;
15555
+ batchNumber?: UpdateAmcTypeResultLine | null;
15556
+ heatNumber?: UpdateAmcTypeResultLine | null;
15557
+ relatedStandards?: UpdateAmcTypeResultLine | null;
15558
+ }
15559
+ export declare class UpdateAmcTypeTestMethodsAndReferencesResultChecksDto implements IUpdateAmcTypeTestMethodsAndReferencesResultChecksDto {
15560
+ usedStandards?: UpdateAmcTypeResultLine | null;
15561
+ constructor(data?: IUpdateAmcTypeTestMethodsAndReferencesResultChecksDto);
15562
+ init(_data?: any): void;
15563
+ static fromJS(data: any): UpdateAmcTypeTestMethodsAndReferencesResultChecksDto;
15564
+ toJSON(data?: any): any;
15565
+ }
15566
+ export interface IUpdateAmcTypeTestMethodsAndReferencesResultChecksDto {
15567
+ usedStandards?: UpdateAmcTypeResultLine | null;
15568
+ }
15569
+ export declare class UpdateAmcTypeTestResultsResultChecksDto implements IUpdateAmcTypeTestResultsResultChecksDto {
15570
+ mechanicalProperties?: UpdateAmcTypeResultLine | null;
15571
+ chemicalAnalysis?: UpdateAmcTypeResultLine | null;
15572
+ impactTests?: UpdateAmcTypeResultLine | null;
15573
+ corrosionTests?: UpdateAmcTypeResultLine | null;
15574
+ ferriteContentAndMicrostructure?: UpdateAmcTypeResultLine | null;
15575
+ constructor(data?: IUpdateAmcTypeTestResultsResultChecksDto);
15576
+ init(_data?: any): void;
15577
+ static fromJS(data: any): UpdateAmcTypeTestResultsResultChecksDto;
15578
+ toJSON(data?: any): any;
15579
+ }
15580
+ export interface IUpdateAmcTypeTestResultsResultChecksDto {
15581
+ mechanicalProperties?: UpdateAmcTypeResultLine | null;
15582
+ chemicalAnalysis?: UpdateAmcTypeResultLine | null;
15583
+ impactTests?: UpdateAmcTypeResultLine | null;
15584
+ corrosionTests?: UpdateAmcTypeResultLine | null;
15585
+ ferriteContentAndMicrostructure?: UpdateAmcTypeResultLine | null;
15586
+ }
15587
+ export declare class UpdateAmcTypeDocumentTypesResultChecksDto implements IUpdateAmcTypeDocumentTypesResultChecksDto {
15588
+ heatTreatmentCertificate?: UpdateAmcTypeResultLine | null;
15589
+ ultrasonicControlCertificate?: UpdateAmcTypeResultLine | null;
15590
+ liquidPenetrantCertificate?: UpdateAmcTypeResultLine | null;
15591
+ testReport?: UpdateAmcTypeResultLine | null;
15592
+ dimensionalReport?: UpdateAmcTypeResultLine | null;
15593
+ dyePenetrantReport?: UpdateAmcTypeResultLine | null;
15594
+ visualReport?: UpdateAmcTypeResultLine | null;
15595
+ certificateOfAnalyticalAndMechanicalTests?: UpdateAmcTypeResultLine | null;
15596
+ certificateOfTest?: UpdateAmcTypeResultLine | null;
15597
+ technicalReport?: UpdateAmcTypeResultLine | null;
15598
+ microExaminationReport?: UpdateAmcTypeResultLine | null;
15599
+ radiologicalReport?: UpdateAmcTypeResultLine | null;
15600
+ constructor(data?: IUpdateAmcTypeDocumentTypesResultChecksDto);
15601
+ init(_data?: any): void;
15602
+ static fromJS(data: any): UpdateAmcTypeDocumentTypesResultChecksDto;
15603
+ toJSON(data?: any): any;
15604
+ }
15605
+ export interface IUpdateAmcTypeDocumentTypesResultChecksDto {
15606
+ heatTreatmentCertificate?: UpdateAmcTypeResultLine | null;
15607
+ ultrasonicControlCertificate?: UpdateAmcTypeResultLine | null;
15608
+ liquidPenetrantCertificate?: UpdateAmcTypeResultLine | null;
15609
+ testReport?: UpdateAmcTypeResultLine | null;
15610
+ dimensionalReport?: UpdateAmcTypeResultLine | null;
15611
+ dyePenetrantReport?: UpdateAmcTypeResultLine | null;
15612
+ visualReport?: UpdateAmcTypeResultLine | null;
15613
+ certificateOfAnalyticalAndMechanicalTests?: UpdateAmcTypeResultLine | null;
15614
+ certificateOfTest?: UpdateAmcTypeResultLine | null;
15615
+ technicalReport?: UpdateAmcTypeResultLine | null;
15616
+ microExaminationReport?: UpdateAmcTypeResultLine | null;
15617
+ radiologicalReport?: UpdateAmcTypeResultLine | null;
15618
+ }
15619
+ export declare class UpdateAmcChemistrySpecificationResultDto implements IUpdateAmcChemistrySpecificationResultDto {
15620
+ carbon?: UpdateAmcSpecificationResultLineDto | null;
15621
+ manganese?: UpdateAmcSpecificationResultLineDto | null;
15622
+ silicon?: UpdateAmcSpecificationResultLineDto | null;
15623
+ phosphorus?: UpdateAmcSpecificationResultLineDto | null;
15624
+ sulfur?: UpdateAmcSpecificationResultLineDto | null;
15625
+ chromium?: UpdateAmcSpecificationResultLineDto | null;
15626
+ nickel?: UpdateAmcSpecificationResultLineDto | null;
15627
+ molybdenum?: UpdateAmcSpecificationResultLineDto | null;
15628
+ copper?: UpdateAmcSpecificationResultLineDto | null;
15629
+ nitrogen?: UpdateAmcSpecificationResultLineDto | null;
15630
+ wolfram?: UpdateAmcSpecificationResultLineDto | null;
15631
+ iron?: UpdateAmcSpecificationResultLineDto | null;
15632
+ constructor(data?: IUpdateAmcChemistrySpecificationResultDto);
15633
+ init(_data?: any): void;
15634
+ static fromJS(data: any): UpdateAmcChemistrySpecificationResultDto;
15635
+ toJSON(data?: any): any;
15636
+ }
15637
+ export interface IUpdateAmcChemistrySpecificationResultDto {
15638
+ carbon?: UpdateAmcSpecificationResultLineDto | null;
15639
+ manganese?: UpdateAmcSpecificationResultLineDto | null;
15640
+ silicon?: UpdateAmcSpecificationResultLineDto | null;
15641
+ phosphorus?: UpdateAmcSpecificationResultLineDto | null;
15642
+ sulfur?: UpdateAmcSpecificationResultLineDto | null;
15643
+ chromium?: UpdateAmcSpecificationResultLineDto | null;
15644
+ nickel?: UpdateAmcSpecificationResultLineDto | null;
15645
+ molybdenum?: UpdateAmcSpecificationResultLineDto | null;
15646
+ copper?: UpdateAmcSpecificationResultLineDto | null;
15647
+ nitrogen?: UpdateAmcSpecificationResultLineDto | null;
15648
+ wolfram?: UpdateAmcSpecificationResultLineDto | null;
15649
+ iron?: UpdateAmcSpecificationResultLineDto | null;
15650
+ }
15651
+ export declare class UpdateAmcSpecificationResultLineDto implements IUpdateAmcSpecificationResultLineDto {
15652
+ approved?: boolean;
15653
+ comment?: string | null;
15654
+ constructor(data?: IUpdateAmcSpecificationResultLineDto);
15789
15655
  init(_data?: any): void;
15790
- static fromJS(data: any): SetDiscussionLastReadRequest;
15656
+ static fromJS(data: any): UpdateAmcSpecificationResultLineDto;
15791
15657
  toJSON(data?: any): any;
15792
15658
  }
15793
- export interface ISetDiscussionLastReadRequest {
15794
- operationId?: string | null;
15795
- resourceId?: string | null;
15659
+ export interface IUpdateAmcSpecificationResultLineDto {
15660
+ approved?: boolean;
15661
+ comment?: string | null;
15796
15662
  }
15797
- export declare class CompanyUserDto implements ICompanyUserDto {
15798
- companyId: string;
15799
- userObjectId: string;
15800
- username?: string | null;
15801
- name?: string | null;
15802
- roles: string[];
15803
- constructor(data?: ICompanyUserDto);
15663
+ export declare class UpdateAmcMechanicalSpecificationResultDto implements IUpdateAmcMechanicalSpecificationResultDto {
15664
+ yieldStrength?: UpdateAmcSpecificationResultLineDto | null;
15665
+ tensileStrength?: UpdateAmcSpecificationResultLineDto | null;
15666
+ elongation?: UpdateAmcSpecificationResultLineDto | null;
15667
+ reductionOfArea?: UpdateAmcSpecificationResultLineDto | null;
15668
+ impactEnergy?: UpdateAmcSpecificationResultLineDto | null;
15669
+ hardness?: UpdateAmcSpecificationResultLineDto | null;
15670
+ constructor(data?: IUpdateAmcMechanicalSpecificationResultDto);
15804
15671
  init(_data?: any): void;
15805
- static fromJS(data: any): CompanyUserDto;
15672
+ static fromJS(data: any): UpdateAmcMechanicalSpecificationResultDto;
15806
15673
  toJSON(data?: any): any;
15807
15674
  }
15808
- export interface ICompanyUserDto {
15809
- companyId: string;
15810
- userObjectId: string;
15811
- username?: string | null;
15812
- name?: string | null;
15813
- roles: string[];
15675
+ export interface IUpdateAmcMechanicalSpecificationResultDto {
15676
+ yieldStrength?: UpdateAmcSpecificationResultLineDto | null;
15677
+ tensileStrength?: UpdateAmcSpecificationResultLineDto | null;
15678
+ elongation?: UpdateAmcSpecificationResultLineDto | null;
15679
+ reductionOfArea?: UpdateAmcSpecificationResultLineDto | null;
15680
+ impactEnergy?: UpdateAmcSpecificationResultLineDto | null;
15681
+ hardness?: UpdateAmcSpecificationResultLineDto | null;
15814
15682
  }
15815
- export declare class CreateCompanyUser implements ICreateCompanyUser {
15816
- username: string;
15817
- name: string;
15818
- roles: string[];
15819
- companyId?: string | null;
15820
- constructor(data?: ICreateCompanyUser);
15683
+ export declare class UpdateAmcFerriteSpecificationResultDto implements IUpdateAmcFerriteSpecificationResultDto {
15684
+ ferriteContent?: UpdateAmcSpecificationResultLineDto | null;
15685
+ measurementMethod: AmcFerriteMeasurementMethodDto[];
15686
+ constructor(data?: IUpdateAmcFerriteSpecificationResultDto);
15821
15687
  init(_data?: any): void;
15822
- static fromJS(data: any): CreateCompanyUser;
15688
+ static fromJS(data: any): UpdateAmcFerriteSpecificationResultDto;
15823
15689
  toJSON(data?: any): any;
15824
15690
  }
15825
- export interface ICreateCompanyUser {
15826
- username: string;
15827
- name: string;
15828
- roles: string[];
15829
- companyId?: string | null;
15691
+ export interface IUpdateAmcFerriteSpecificationResultDto {
15692
+ ferriteContent?: UpdateAmcSpecificationResultLineDto | null;
15693
+ measurementMethod: AmcFerriteMeasurementMethodDto[];
15830
15694
  }
15831
- export declare class UpdateCompanyUserRequest implements IUpdateCompanyUserRequest {
15832
- roles: string[];
15833
- companyId?: string | null;
15834
- constructor(data?: IUpdateCompanyUserRequest);
15695
+ export declare class UpdateAmcHeatTreatmentSpecificationResultDto implements IUpdateAmcHeatTreatmentSpecificationResultDto {
15696
+ heatTreatmentType: AmcHeatTreatmentTypeDto[];
15697
+ treatmentTemperature?: UpdateAmcSpecificationResultLineDto | null;
15698
+ holdingTime?: UpdateAmcSpecificationResultLineDto | null;
15699
+ coolingMethod: AmcHeatCoolingMethodDto[];
15700
+ treatedCondition: AmcHeatTreatedConditionDto[];
15701
+ verificationMethod: AmcHeatVerificationMethodDto[];
15702
+ constructor(data?: IUpdateAmcHeatTreatmentSpecificationResultDto);
15835
15703
  init(_data?: any): void;
15836
- static fromJS(data: any): UpdateCompanyUserRequest;
15704
+ static fromJS(data: any): UpdateAmcHeatTreatmentSpecificationResultDto;
15837
15705
  toJSON(data?: any): any;
15838
15706
  }
15839
- export interface IUpdateCompanyUserRequest {
15840
- roles: string[];
15841
- companyId?: string | null;
15707
+ export interface IUpdateAmcHeatTreatmentSpecificationResultDto {
15708
+ heatTreatmentType: AmcHeatTreatmentTypeDto[];
15709
+ treatmentTemperature?: UpdateAmcSpecificationResultLineDto | null;
15710
+ holdingTime?: UpdateAmcSpecificationResultLineDto | null;
15711
+ coolingMethod: AmcHeatCoolingMethodDto[];
15712
+ treatedCondition: AmcHeatTreatedConditionDto[];
15713
+ verificationMethod: AmcHeatVerificationMethodDto[];
15842
15714
  }
15843
- export declare class ExternalRoleDto implements IExternalRoleDto {
15844
- id: string;
15715
+ export declare class AmcSpecificationLiteDto implements IAmcSpecificationLiteDto {
15716
+ specificationId: string;
15717
+ version: number;
15845
15718
  name: string;
15846
- constructor(data?: IExternalRoleDto);
15719
+ number: string;
15720
+ revision: string;
15721
+ date: Date;
15722
+ status: AmcSpecificationStatusDto;
15723
+ summary?: string | null;
15724
+ relatedStandards: string[];
15725
+ created: Date;
15726
+ createdBy: string;
15727
+ createdById: string;
15728
+ updatedBy?: string | null;
15729
+ updatedById?: string | null;
15730
+ constructor(data?: IAmcSpecificationLiteDto);
15847
15731
  init(_data?: any): void;
15848
- static fromJS(data: any): ExternalRoleDto;
15732
+ static fromJS(data: any): AmcSpecificationLiteDto;
15849
15733
  toJSON(data?: any): any;
15850
15734
  }
15851
- export interface IExternalRoleDto {
15852
- id: string;
15735
+ export interface IAmcSpecificationLiteDto {
15736
+ specificationId: string;
15737
+ version: number;
15853
15738
  name: string;
15739
+ number: string;
15740
+ revision: string;
15741
+ date: Date;
15742
+ status: AmcSpecificationStatusDto;
15743
+ summary?: string | null;
15744
+ relatedStandards: string[];
15745
+ created: Date;
15746
+ createdBy: string;
15747
+ createdById: string;
15748
+ updatedBy?: string | null;
15749
+ updatedById?: string | null;
15854
15750
  }
15855
- export declare class CompanyCustomerDto implements ICompanyCustomerDto {
15856
- customerTenantId?: string | null;
15857
- customerAzureAdTenantId?: string | null;
15858
- customerName?: string | null;
15859
- supplierId?: string | null;
15860
- supplierName?: string | null;
15861
- constructor(data?: ICompanyCustomerDto);
15751
+ export type AmcSpecificationStatusDto = "Draft" | "Released" | "Expired" | "Rejected";
15752
+ export declare class AmcSpecificationDto implements IAmcSpecificationDto {
15753
+ specificationId: string;
15754
+ version: number;
15755
+ name: string;
15756
+ number: string;
15757
+ revision: string;
15758
+ date: Date;
15759
+ status: AmcSpecificationStatusDto;
15760
+ summary?: string | null;
15761
+ relatedStandards: string[];
15762
+ created: Date;
15763
+ createdBy: string;
15764
+ createdById: string;
15765
+ updatedBy?: string | null;
15766
+ updatedById?: string | null;
15767
+ chemistrySpecification: AmcChemistrySpecificationDto;
15768
+ mechanicalSpecification: AmcMechanicalSpecificationDto;
15769
+ ferriteSpecification: AmcFerriteSpecificationDto;
15770
+ heatSpecification: AmcHeatTreatmentSpecificationDto;
15771
+ constructor(data?: IAmcSpecificationDto);
15862
15772
  init(_data?: any): void;
15863
- static fromJS(data: any): CompanyCustomerDto;
15773
+ static fromJS(data: any): AmcSpecificationDto;
15864
15774
  toJSON(data?: any): any;
15865
15775
  }
15866
- export interface ICompanyCustomerDto {
15867
- customerTenantId?: string | null;
15868
- customerAzureAdTenantId?: string | null;
15869
- customerName?: string | null;
15870
- supplierId?: string | null;
15871
- supplierName?: string | null;
15872
- }
15873
- export declare class CompanyDto implements ICompanyDto {
15874
- id?: string;
15875
- name?: string;
15876
- organizationNumber?: string | null;
15877
- country?: string;
15878
- tenantId?: string | null;
15879
- constructor(data?: ICompanyDto);
15776
+ export interface IAmcSpecificationDto {
15777
+ specificationId: string;
15778
+ version: number;
15779
+ name: string;
15780
+ number: string;
15781
+ revision: string;
15782
+ date: Date;
15783
+ status: AmcSpecificationStatusDto;
15784
+ summary?: string | null;
15785
+ relatedStandards: string[];
15786
+ created: Date;
15787
+ createdBy: string;
15788
+ createdById: string;
15789
+ updatedBy?: string | null;
15790
+ updatedById?: string | null;
15791
+ chemistrySpecification: AmcChemistrySpecificationDto;
15792
+ mechanicalSpecification: AmcMechanicalSpecificationDto;
15793
+ ferriteSpecification: AmcFerriteSpecificationDto;
15794
+ heatSpecification: AmcHeatTreatmentSpecificationDto;
15795
+ }
15796
+ export declare class AmcChemistrySpecificationDto implements IAmcChemistrySpecificationDto {
15797
+ carbon?: AmcSpecificationLineDto | null;
15798
+ manganese?: AmcSpecificationLineDto | null;
15799
+ silicon?: AmcSpecificationLineDto | null;
15800
+ phosphorus?: AmcSpecificationLineDto | null;
15801
+ sulfur?: AmcSpecificationLineDto | null;
15802
+ chromium?: AmcSpecificationLineDto | null;
15803
+ nickel?: AmcSpecificationLineDto | null;
15804
+ molybdenum?: AmcSpecificationLineDto | null;
15805
+ copper?: AmcSpecificationLineDto | null;
15806
+ nitrogen?: AmcSpecificationLineDto | null;
15807
+ wolfram?: AmcSpecificationLineDto | null;
15808
+ iron?: AmcSpecificationLineDto | null;
15809
+ constructor(data?: IAmcChemistrySpecificationDto);
15810
+ init(_data?: any): void;
15811
+ static fromJS(data: any): AmcChemistrySpecificationDto;
15812
+ toJSON(data?: any): any;
15813
+ }
15814
+ export interface IAmcChemistrySpecificationDto {
15815
+ carbon?: AmcSpecificationLineDto | null;
15816
+ manganese?: AmcSpecificationLineDto | null;
15817
+ silicon?: AmcSpecificationLineDto | null;
15818
+ phosphorus?: AmcSpecificationLineDto | null;
15819
+ sulfur?: AmcSpecificationLineDto | null;
15820
+ chromium?: AmcSpecificationLineDto | null;
15821
+ nickel?: AmcSpecificationLineDto | null;
15822
+ molybdenum?: AmcSpecificationLineDto | null;
15823
+ copper?: AmcSpecificationLineDto | null;
15824
+ nitrogen?: AmcSpecificationLineDto | null;
15825
+ wolfram?: AmcSpecificationLineDto | null;
15826
+ iron?: AmcSpecificationLineDto | null;
15827
+ }
15828
+ export declare class AmcSpecificationLineDto implements IAmcSpecificationLineDto {
15829
+ operator: AmcSpecificationOperatorDto;
15830
+ value1?: number | null;
15831
+ value2?: number | null;
15832
+ symbol: AmcSpecificationSymbolDto;
15833
+ constructor(data?: IAmcSpecificationLineDto);
15834
+ init(_data?: any): void;
15835
+ static fromJS(data: any): AmcSpecificationLineDto;
15836
+ toJSON(data?: any): any;
15837
+ }
15838
+ export interface IAmcSpecificationLineDto {
15839
+ operator: AmcSpecificationOperatorDto;
15840
+ value1?: number | null;
15841
+ value2?: number | null;
15842
+ symbol: AmcSpecificationSymbolDto;
15843
+ }
15844
+ export type AmcSpecificationOperatorDto = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between";
15845
+ export type AmcSpecificationSymbolDto = "None" | "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw";
15846
+ export declare class AmcMechanicalSpecificationDto implements IAmcMechanicalSpecificationDto {
15847
+ yieldStrength?: AmcSpecificationLineDto | null;
15848
+ tensileStrength?: AmcSpecificationLineDto | null;
15849
+ elongation?: AmcSpecificationLineDto | null;
15850
+ reductionOfArea?: AmcSpecificationLineDto | null;
15851
+ impactEnergy?: AmcSpecificationLineDto | null;
15852
+ hardness?: AmcSpecificationLineDto | null;
15853
+ constructor(data?: IAmcMechanicalSpecificationDto);
15854
+ init(_data?: any): void;
15855
+ static fromJS(data: any): AmcMechanicalSpecificationDto;
15856
+ toJSON(data?: any): any;
15857
+ }
15858
+ export interface IAmcMechanicalSpecificationDto {
15859
+ yieldStrength?: AmcSpecificationLineDto | null;
15860
+ tensileStrength?: AmcSpecificationLineDto | null;
15861
+ elongation?: AmcSpecificationLineDto | null;
15862
+ reductionOfArea?: AmcSpecificationLineDto | null;
15863
+ impactEnergy?: AmcSpecificationLineDto | null;
15864
+ hardness?: AmcSpecificationLineDto | null;
15865
+ }
15866
+ export declare class AmcFerriteSpecificationDto implements IAmcFerriteSpecificationDto {
15867
+ ferriteContent?: AmcSpecificationLineDto | null;
15868
+ measurementMethod: AmcFerriteMeasurementMethodDto[];
15869
+ constructor(data?: IAmcFerriteSpecificationDto);
15870
+ init(_data?: any): void;
15871
+ static fromJS(data: any): AmcFerriteSpecificationDto;
15872
+ toJSON(data?: any): any;
15873
+ }
15874
+ export interface IAmcFerriteSpecificationDto {
15875
+ ferriteContent?: AmcSpecificationLineDto | null;
15876
+ measurementMethod: AmcFerriteMeasurementMethodDto[];
15877
+ }
15878
+ export declare class AmcHeatTreatmentSpecificationDto implements IAmcHeatTreatmentSpecificationDto {
15879
+ heatTreatmentType: AmcHeatTreatmentTypeDto[];
15880
+ treatmentTemperature?: AmcSpecificationLineDto | null;
15881
+ holdingTime?: AmcSpecificationLineDto | null;
15882
+ coolingMethod: AmcHeatCoolingMethodDto[];
15883
+ treatedCondition: AmcHeatTreatedConditionDto[];
15884
+ verificationMethod: AmcHeatVerificationMethodDto[];
15885
+ constructor(data?: IAmcHeatTreatmentSpecificationDto);
15886
+ init(_data?: any): void;
15887
+ static fromJS(data: any): AmcHeatTreatmentSpecificationDto;
15888
+ toJSON(data?: any): any;
15889
+ }
15890
+ export interface IAmcHeatTreatmentSpecificationDto {
15891
+ heatTreatmentType: AmcHeatTreatmentTypeDto[];
15892
+ treatmentTemperature?: AmcSpecificationLineDto | null;
15893
+ holdingTime?: AmcSpecificationLineDto | null;
15894
+ coolingMethod: AmcHeatCoolingMethodDto[];
15895
+ treatedCondition: AmcHeatTreatedConditionDto[];
15896
+ verificationMethod: AmcHeatVerificationMethodDto[];
15897
+ }
15898
+ export declare class CreateAmcSpecificationDto implements ICreateAmcSpecificationDto {
15899
+ name: string;
15900
+ number: string;
15901
+ revision: string;
15902
+ date: Date;
15903
+ createCopy: boolean;
15904
+ specificationId?: string | null;
15905
+ specificationVersion?: string | null;
15906
+ specificationFile?: UploadFileDto | null;
15907
+ constructor(data?: ICreateAmcSpecificationDto);
15880
15908
  init(_data?: any): void;
15881
- static fromJS(data: any): CompanyDto;
15909
+ static fromJS(data: any): CreateAmcSpecificationDto;
15882
15910
  toJSON(data?: any): any;
15883
15911
  }
15884
- export interface ICompanyDto {
15885
- id?: string;
15886
- name?: string;
15887
- organizationNumber?: string | null;
15888
- country?: string;
15889
- tenantId?: string | null;
15912
+ export interface ICreateAmcSpecificationDto {
15913
+ name: string;
15914
+ number: string;
15915
+ revision: string;
15916
+ date: Date;
15917
+ createCopy: boolean;
15918
+ specificationId?: string | null;
15919
+ specificationVersion?: string | null;
15920
+ specificationFile?: UploadFileDto | null;
15890
15921
  }
15891
- export declare class SupplierInviteDto implements ISupplierInviteDto {
15892
- id: string;
15893
- supplierId: string;
15894
- supplierName?: string | null;
15895
- customerName?: string | null;
15896
- userId: string;
15897
- userName?: string | null;
15898
- companyId?: string | null;
15899
- deadline: Date;
15900
- acceptedTimestamp?: Date | null;
15901
- createdTime: Date;
15902
- createdBy: string;
15903
- constructor(data?: ISupplierInviteDto);
15922
+ export declare class UpdateAmcSpecificationDto implements IUpdateAmcSpecificationDto {
15923
+ specificationId: string;
15924
+ version: number;
15925
+ status: UpdateAmcSpecificationStatusDto;
15926
+ summary?: string | null;
15927
+ relatedStandards: string[];
15928
+ chemistrySpecification: AmcChemistrySpecificationDto;
15929
+ mechanicalSpecification: AmcMechanicalSpecificationDto;
15930
+ ferriteSpecification: AmcFerriteSpecificationDto;
15931
+ heatSpecification: AmcHeatTreatmentSpecificationDto;
15932
+ constructor(data?: IUpdateAmcSpecificationDto);
15904
15933
  init(_data?: any): void;
15905
- static fromJS(data: any): SupplierInviteDto;
15934
+ static fromJS(data: any): UpdateAmcSpecificationDto;
15906
15935
  toJSON(data?: any): any;
15907
15936
  }
15908
- export interface ISupplierInviteDto {
15909
- id: string;
15910
- supplierId: string;
15911
- supplierName?: string | null;
15912
- customerName?: string | null;
15913
- userId: string;
15914
- userName?: string | null;
15915
- companyId?: string | null;
15916
- deadline: Date;
15917
- acceptedTimestamp?: Date | null;
15918
- createdTime: Date;
15937
+ export interface IUpdateAmcSpecificationDto {
15938
+ specificationId: string;
15939
+ version: number;
15940
+ status: UpdateAmcSpecificationStatusDto;
15941
+ summary?: string | null;
15942
+ relatedStandards: string[];
15943
+ chemistrySpecification: AmcChemistrySpecificationDto;
15944
+ mechanicalSpecification: AmcMechanicalSpecificationDto;
15945
+ ferriteSpecification: AmcFerriteSpecificationDto;
15946
+ heatSpecification: AmcHeatTreatmentSpecificationDto;
15947
+ }
15948
+ export type UpdateAmcSpecificationStatusDto = "NotModified" | "Released" | "Obsolete";
15949
+ export declare class AmcTypeLiteDto implements IAmcTypeLiteDto {
15950
+ typeId: string;
15951
+ version: number;
15952
+ name: string;
15953
+ revision: string;
15954
+ description?: string | null;
15955
+ created: Date;
15919
15956
  createdBy: string;
15920
- }
15921
- export declare class AcceptSupplierInvite implements IAcceptSupplierInvite {
15922
- companyName?: string;
15923
- organizationNumber?: string;
15924
- threeLetterIsoCountry?: string;
15925
- constructor(data?: IAcceptSupplierInvite);
15957
+ createdById: string;
15958
+ updatedBy?: string | null;
15959
+ updatedById?: string | null;
15960
+ constructor(data?: IAmcTypeLiteDto);
15926
15961
  init(_data?: any): void;
15927
- static fromJS(data: any): AcceptSupplierInvite;
15962
+ static fromJS(data: any): AmcTypeLiteDto;
15928
15963
  toJSON(data?: any): any;
15929
15964
  }
15930
- export interface IAcceptSupplierInvite {
15931
- companyName?: string;
15932
- organizationNumber?: string;
15933
- threeLetterIsoCountry?: string;
15965
+ export interface IAmcTypeLiteDto {
15966
+ typeId: string;
15967
+ version: number;
15968
+ name: string;
15969
+ revision: string;
15970
+ description?: string | null;
15971
+ created: Date;
15972
+ createdBy: string;
15973
+ createdById: string;
15974
+ updatedBy?: string | null;
15975
+ updatedById?: string | null;
15934
15976
  }
15935
- export declare class CreateSupplierInvite implements ICreateSupplierInvite {
15936
- supplierId: string;
15937
- supplierName?: string | null;
15938
- username: string;
15939
- invitedName: string;
15940
- deadline: Date;
15941
- existingCompanyId?: string | null;
15942
- constructor(data?: ICreateSupplierInvite);
15977
+ export declare class AmcTypeDto implements IAmcTypeDto {
15978
+ typeId: string;
15979
+ version: number;
15980
+ name: string;
15981
+ revision: string;
15982
+ description?: string | null;
15983
+ created: Date;
15984
+ createdBy: string;
15985
+ createdById: string;
15986
+ updatedBy?: string | null;
15987
+ updatedById?: string | null;
15988
+ checks: AmcTypeChecksDto;
15989
+ constructor(data?: IAmcTypeDto);
15943
15990
  init(_data?: any): void;
15944
- static fromJS(data: any): CreateSupplierInvite;
15991
+ static fromJS(data: any): AmcTypeDto;
15945
15992
  toJSON(data?: any): any;
15946
15993
  }
15947
- export interface ICreateSupplierInvite {
15948
- supplierId: string;
15949
- supplierName?: string | null;
15950
- username: string;
15951
- invitedName: string;
15952
- deadline: Date;
15953
- existingCompanyId?: string | null;
15954
- }
15955
- export declare class ExternalSupplierDto implements IExternalSupplierDto {
15956
- id: string;
15994
+ export interface IAmcTypeDto {
15995
+ typeId: string;
15996
+ version: number;
15957
15997
  name: string;
15958
- companyId: string;
15959
- active: boolean;
15960
- constructor(data?: IExternalSupplierDto);
15998
+ revision: string;
15999
+ description?: string | null;
16000
+ created: Date;
16001
+ createdBy: string;
16002
+ createdById: string;
16003
+ updatedBy?: string | null;
16004
+ updatedById?: string | null;
16005
+ checks: AmcTypeChecksDto;
16006
+ }
16007
+ export declare class AmcTypeChecksDto implements IAmcTypeChecksDto {
16008
+ manufacturer: AmcTypeManufacturerChecksDto;
16009
+ signature: AmcTypeSignatureChecksDto;
16010
+ thirdParty: AmcTypeThirdPartyChecksDto;
16011
+ certification: AmcTypeCertificationChecksDto;
16012
+ productAndOrderInformation: AmcTypeProductAndOrderInformationChecksDto;
16013
+ testMethodsAndReferences: AmcTypeTestMethodsAndReferencesChecksDto;
16014
+ testResults: AmcTypeTestResultsChecksDto;
16015
+ documentTypes: AmcTypeDocumentTypesChecksDto;
16016
+ constructor(data?: IAmcTypeChecksDto);
16017
+ init(_data?: any): void;
16018
+ static fromJS(data: any): AmcTypeChecksDto;
16019
+ toJSON(data?: any): any;
16020
+ }
16021
+ export interface IAmcTypeChecksDto {
16022
+ manufacturer: AmcTypeManufacturerChecksDto;
16023
+ signature: AmcTypeSignatureChecksDto;
16024
+ thirdParty: AmcTypeThirdPartyChecksDto;
16025
+ certification: AmcTypeCertificationChecksDto;
16026
+ productAndOrderInformation: AmcTypeProductAndOrderInformationChecksDto;
16027
+ testMethodsAndReferences: AmcTypeTestMethodsAndReferencesChecksDto;
16028
+ testResults: AmcTypeTestResultsChecksDto;
16029
+ documentTypes: AmcTypeDocumentTypesChecksDto;
16030
+ }
16031
+ export declare class AmcTypeManufacturerChecksDto implements IAmcTypeManufacturerChecksDto {
16032
+ manufacturer?: boolean;
16033
+ address?: boolean;
16034
+ contact?: boolean;
16035
+ constructor(data?: IAmcTypeManufacturerChecksDto);
16036
+ init(_data?: any): void;
16037
+ static fromJS(data: any): AmcTypeManufacturerChecksDto;
16038
+ toJSON(data?: any): any;
16039
+ }
16040
+ export interface IAmcTypeManufacturerChecksDto {
16041
+ manufacturer?: boolean;
16042
+ address?: boolean;
16043
+ contact?: boolean;
16044
+ }
16045
+ export declare class AmcTypeSignatureChecksDto implements IAmcTypeSignatureChecksDto {
16046
+ certifiedBy?: boolean;
16047
+ position?: boolean;
16048
+ signature?: boolean;
16049
+ date?: boolean;
16050
+ stamp?: boolean;
16051
+ constructor(data?: IAmcTypeSignatureChecksDto);
16052
+ init(_data?: any): void;
16053
+ static fromJS(data: any): AmcTypeSignatureChecksDto;
16054
+ toJSON(data?: any): any;
16055
+ }
16056
+ export interface IAmcTypeSignatureChecksDto {
16057
+ certifiedBy?: boolean;
16058
+ position?: boolean;
16059
+ signature?: boolean;
16060
+ date?: boolean;
16061
+ stamp?: boolean;
16062
+ }
16063
+ export declare class AmcTypeThirdPartyChecksDto implements IAmcTypeThirdPartyChecksDto {
16064
+ inspectionBody?: boolean;
16065
+ inspectorName?: boolean;
16066
+ position?: boolean;
16067
+ verificationMethod?: boolean;
16068
+ signature?: boolean;
16069
+ date?: boolean;
16070
+ stamp?: boolean;
16071
+ constructor(data?: IAmcTypeThirdPartyChecksDto);
16072
+ init(_data?: any): void;
16073
+ static fromJS(data: any): AmcTypeThirdPartyChecksDto;
16074
+ toJSON(data?: any): any;
16075
+ }
16076
+ export interface IAmcTypeThirdPartyChecksDto {
16077
+ inspectionBody?: boolean;
16078
+ inspectorName?: boolean;
16079
+ position?: boolean;
16080
+ verificationMethod?: boolean;
16081
+ signature?: boolean;
16082
+ date?: boolean;
16083
+ stamp?: boolean;
16084
+ }
16085
+ export declare class AmcTypeCertificationChecksDto implements IAmcTypeCertificationChecksDto {
16086
+ certificateOfCompliance?: boolean;
16087
+ inspectionCertificate?: boolean;
16088
+ constructor(data?: IAmcTypeCertificationChecksDto);
16089
+ init(_data?: any): void;
16090
+ static fromJS(data: any): AmcTypeCertificationChecksDto;
16091
+ toJSON(data?: any): any;
16092
+ }
16093
+ export interface IAmcTypeCertificationChecksDto {
16094
+ certificateOfCompliance?: boolean;
16095
+ inspectionCertificate?: boolean;
16096
+ }
16097
+ export declare class AmcTypeProductAndOrderInformationChecksDto implements IAmcTypeProductAndOrderInformationChecksDto {
16098
+ productDescription?: boolean;
16099
+ materialGrade?: boolean;
16100
+ customer?: boolean;
16101
+ customerOrderNumber?: boolean;
16102
+ dimensionsOrWeight?: boolean;
16103
+ batchNumber?: boolean;
16104
+ heatNumber?: boolean;
16105
+ relatedStandards?: boolean;
16106
+ constructor(data?: IAmcTypeProductAndOrderInformationChecksDto);
16107
+ init(_data?: any): void;
16108
+ static fromJS(data: any): AmcTypeProductAndOrderInformationChecksDto;
16109
+ toJSON(data?: any): any;
16110
+ }
16111
+ export interface IAmcTypeProductAndOrderInformationChecksDto {
16112
+ productDescription?: boolean;
16113
+ materialGrade?: boolean;
16114
+ customer?: boolean;
16115
+ customerOrderNumber?: boolean;
16116
+ dimensionsOrWeight?: boolean;
16117
+ batchNumber?: boolean;
16118
+ heatNumber?: boolean;
16119
+ relatedStandards?: boolean;
16120
+ }
16121
+ export declare class AmcTypeTestMethodsAndReferencesChecksDto implements IAmcTypeTestMethodsAndReferencesChecksDto {
16122
+ usedStandards?: boolean;
16123
+ constructor(data?: IAmcTypeTestMethodsAndReferencesChecksDto);
16124
+ init(_data?: any): void;
16125
+ static fromJS(data: any): AmcTypeTestMethodsAndReferencesChecksDto;
16126
+ toJSON(data?: any): any;
16127
+ }
16128
+ export interface IAmcTypeTestMethodsAndReferencesChecksDto {
16129
+ usedStandards?: boolean;
16130
+ }
16131
+ export declare class AmcTypeTestResultsChecksDto implements IAmcTypeTestResultsChecksDto {
16132
+ mechanicalProperties?: boolean;
16133
+ chemicalAnalysis?: boolean;
16134
+ impactTests?: boolean;
16135
+ corrosionTests?: boolean;
16136
+ ferriteContentAndMicrostructure?: boolean;
16137
+ constructor(data?: IAmcTypeTestResultsChecksDto);
16138
+ init(_data?: any): void;
16139
+ static fromJS(data: any): AmcTypeTestResultsChecksDto;
16140
+ toJSON(data?: any): any;
16141
+ }
16142
+ export interface IAmcTypeTestResultsChecksDto {
16143
+ mechanicalProperties?: boolean;
16144
+ chemicalAnalysis?: boolean;
16145
+ impactTests?: boolean;
16146
+ corrosionTests?: boolean;
16147
+ ferriteContentAndMicrostructure?: boolean;
16148
+ }
16149
+ export declare class AmcTypeDocumentTypesChecksDto implements IAmcTypeDocumentTypesChecksDto {
16150
+ heatTreatmentCertificate?: boolean;
16151
+ ultrasonicControlCertificate?: boolean;
16152
+ liquidPenetrantCertificate?: boolean;
16153
+ testReport?: boolean;
16154
+ dimensionalReport?: boolean;
16155
+ dyePenetrantReport?: boolean;
16156
+ visualReport?: boolean;
16157
+ certificateOfAnalyticalAndMechanicalTests?: boolean;
16158
+ certificateOfTest?: boolean;
16159
+ technicalReport?: boolean;
16160
+ microExaminationReport?: boolean;
16161
+ radiologicalReport?: boolean;
16162
+ constructor(data?: IAmcTypeDocumentTypesChecksDto);
16163
+ init(_data?: any): void;
16164
+ static fromJS(data: any): AmcTypeDocumentTypesChecksDto;
16165
+ toJSON(data?: any): any;
16166
+ }
16167
+ export interface IAmcTypeDocumentTypesChecksDto {
16168
+ heatTreatmentCertificate?: boolean;
16169
+ ultrasonicControlCertificate?: boolean;
16170
+ liquidPenetrantCertificate?: boolean;
16171
+ testReport?: boolean;
16172
+ dimensionalReport?: boolean;
16173
+ dyePenetrantReport?: boolean;
16174
+ visualReport?: boolean;
16175
+ certificateOfAnalyticalAndMechanicalTests?: boolean;
16176
+ certificateOfTest?: boolean;
16177
+ technicalReport?: boolean;
16178
+ microExaminationReport?: boolean;
16179
+ radiologicalReport?: boolean;
16180
+ }
16181
+ export declare class CreateAmcTypeRequestDto implements ICreateAmcTypeRequestDto {
16182
+ name: string;
16183
+ revision: string;
16184
+ description?: string | null;
16185
+ constructor(data?: ICreateAmcTypeRequestDto);
15961
16186
  init(_data?: any): void;
15962
- static fromJS(data: any): ExternalSupplierDto;
16187
+ static fromJS(data: any): CreateAmcTypeRequestDto;
15963
16188
  toJSON(data?: any): any;
15964
16189
  }
15965
- export interface IExternalSupplierDto {
15966
- id: string;
16190
+ export interface ICreateAmcTypeRequestDto {
15967
16191
  name: string;
15968
- companyId: string;
15969
- active: boolean;
16192
+ revision: string;
16193
+ description?: string | null;
15970
16194
  }
15971
- export declare class CreateSupplierMapping implements ICreateSupplierMapping {
15972
- companyId: string;
15973
- existingSupplierId: string;
15974
- newSupplierId: string;
15975
- constructor(data?: ICreateSupplierMapping);
16195
+ export declare class UpdateAmcTypeDto implements IUpdateAmcTypeDto {
16196
+ typeId: string;
16197
+ version: number;
16198
+ description?: string | null;
16199
+ checks: AmcTypeChecksDto;
16200
+ constructor(data?: IUpdateAmcTypeDto);
15976
16201
  init(_data?: any): void;
15977
- static fromJS(data: any): CreateSupplierMapping;
16202
+ static fromJS(data: any): UpdateAmcTypeDto;
15978
16203
  toJSON(data?: any): any;
15979
16204
  }
15980
- export interface ICreateSupplierMapping {
15981
- companyId: string;
15982
- existingSupplierId: string;
15983
- newSupplierId: string;
16205
+ export interface IUpdateAmcTypeDto {
16206
+ typeId: string;
16207
+ version: number;
16208
+ description?: string | null;
16209
+ checks: AmcTypeChecksDto;
15984
16210
  }
15985
16211
  export interface FileParameter {
15986
16212
  data: any;