@ignos/api-client 20260129.0.13920-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,101 +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
- getSupplierCompany(id: string): Promise<CompanyDto>;
3197
- }
3198
- 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 {
3199
2890
  private http;
3200
2891
  private baseUrl;
3201
2892
  protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
3202
2893
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
3203
2894
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
3204
2895
  });
3205
- listSupplierInvites(): Promise<SupplierInviteDto[]>;
3206
- protected processListSupplierInvites(response: Response): Promise<SupplierInviteDto[]>;
3207
- createSupplierInvite(request: CreateSupplierInvite): Promise<SupplierInviteDto>;
3208
- protected processCreateSupplierInvite(response: Response): Promise<SupplierInviteDto>;
3209
- deleteSupplierInvite(id: string): Promise<void>;
3210
- protected processDeleteSupplierInvite(response: Response): Promise<void>;
3211
- listSuppliers(): Promise<ExternalSupplierDto[]>;
3212
- protected processListSuppliers(response: Response): Promise<ExternalSupplierDto[]>;
3213
- deleteSupplier(id: string): Promise<void>;
3214
- protected processDeleteSupplier(response: Response): Promise<void>;
3215
- /**
3216
- * Creates a mapping between old supplier id and new supplier id.
3217
- */
3218
- createSupplierMapping(request: CreateSupplierMapping): Promise<void>;
3219
- protected processCreateSupplierMapping(response: Response): Promise<void>;
3220
- /**
3221
- * Delete all supplier mappings between old supplier ids and new supplier ids.
3222
- */
3223
- deleteSupplierMappings(): Promise<void>;
3224
- protected processDeleteSupplierMappings(response: Response): Promise<void>;
3225
- getSupplierCompany(id: string): Promise<CompanyDto>;
3226
- protected processGetSupplierCompany(response: Response): Promise<CompanyDto>;
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>;
3227
2906
  }
3228
2907
  export declare class AzureRegionDto implements IAzureRegionDto {
3229
2908
  displayName: string;
@@ -3289,17 +2968,17 @@ export interface IComponentSettingsDto {
3289
2968
  componentId?: string | null;
3290
2969
  disabledFields?: string[] | null;
3291
2970
  }
3292
- export declare class UtilizationListDto implements IUtilizationListDto {
3293
- machines?: MachineUtilizationDto[] | null;
3294
- constructor(data?: IUtilizationListDto);
2971
+ export declare class ResourceUtilizationListDto implements IResourceUtilizationListDto {
2972
+ resources?: ResourceUtilizationDto[] | null;
2973
+ constructor(data?: IResourceUtilizationListDto);
3295
2974
  init(_data?: any): void;
3296
- static fromJS(data: any): UtilizationListDto;
2975
+ static fromJS(data: any): ResourceUtilizationListDto;
3297
2976
  toJSON(data?: any): any;
3298
2977
  }
3299
- export interface IUtilizationListDto {
3300
- machines?: MachineUtilizationDto[] | null;
2978
+ export interface IResourceUtilizationListDto {
2979
+ resources?: ResourceUtilizationDto[] | null;
3301
2980
  }
3302
- export declare class MachineUtilizationDto implements IMachineUtilizationDto {
2981
+ export declare class ResourceUtilizationDto implements IResourceUtilizationDto {
3303
2982
  assetId: number;
3304
2983
  name: string;
3305
2984
  description?: string | null;
@@ -3308,12 +2987,12 @@ export declare class MachineUtilizationDto implements IMachineUtilizationDto {
3308
2987
  startTime?: Date;
3309
2988
  workorder?: UtilizationWorkorderDto | null;
3310
2989
  powerOn?: PowerOnUtilizationDto | null;
3311
- constructor(data?: IMachineUtilizationDto);
2990
+ constructor(data?: IResourceUtilizationDto);
3312
2991
  init(_data?: any): void;
3313
- static fromJS(data: any): MachineUtilizationDto;
2992
+ static fromJS(data: any): ResourceUtilizationDto;
3314
2993
  toJSON(data?: any): any;
3315
2994
  }
3316
- export interface IMachineUtilizationDto {
2995
+ export interface IResourceUtilizationDto {
3317
2996
  assetId: number;
3318
2997
  name: string;
3319
2998
  description?: string | null;
@@ -3400,50 +3079,26 @@ export interface IPowerOnUtilizationDto extends IUtilizationAveragesDto {
3400
3079
  powerOnUtilization?: number | null;
3401
3080
  comparedToAverage?: number | null;
3402
3081
  }
3403
- export declare class UtilizationDetailsDto implements IUtilizationDetailsDto {
3404
- machineId: number;
3405
- machineName: string;
3082
+ export declare class ResourceUtilizationDetailsDto implements IResourceUtilizationDetailsDto {
3083
+ resourceId: number;
3084
+ resourceName: string;
3406
3085
  machineStateText?: string | null;
3407
3086
  machineState?: MachineState | null;
3408
3087
  startTime?: Date | null;
3409
3088
  powerOnUtilization?: number | null;
3410
- constructor(data?: IUtilizationDetailsDto);
3089
+ constructor(data?: IResourceUtilizationDetailsDto);
3411
3090
  init(_data?: any): void;
3412
- static fromJS(data: any): UtilizationDetailsDto;
3091
+ static fromJS(data: any): ResourceUtilizationDetailsDto;
3413
3092
  toJSON(data?: any): any;
3414
3093
  }
3415
- export interface IUtilizationDetailsDto {
3416
- machineId: number;
3417
- machineName: string;
3094
+ export interface IResourceUtilizationDetailsDto {
3095
+ resourceId: number;
3096
+ resourceName: string;
3418
3097
  machineStateText?: string | null;
3419
3098
  machineState?: MachineState | null;
3420
3099
  startTime?: Date | null;
3421
3100
  powerOnUtilization?: number | null;
3422
3101
  }
3423
- export declare class MachineStatesSummaryDto implements IMachineStatesSummaryDto {
3424
- states: StateDto[];
3425
- constructor(data?: IMachineStatesSummaryDto);
3426
- init(_data?: any): void;
3427
- static fromJS(data: any): MachineStatesSummaryDto;
3428
- toJSON(data?: any): any;
3429
- }
3430
- export interface IMachineStatesSummaryDto {
3431
- states: StateDto[];
3432
- }
3433
- export declare class StateDto implements IStateDto {
3434
- state: string;
3435
- machineState: MachineState;
3436
- seconds: number;
3437
- constructor(data?: IStateDto);
3438
- init(_data?: any): void;
3439
- static fromJS(data: any): StateDto;
3440
- toJSON(data?: any): any;
3441
- }
3442
- export interface IStateDto {
3443
- state: string;
3444
- machineState: MachineState;
3445
- seconds: number;
3446
- }
3447
3102
  export declare class TimelinesDto implements ITimelinesDto {
3448
3103
  machineStateTimeline: MachineStateDatapoint[];
3449
3104
  workorderTimeline: WorkOrderDatapoint[];
@@ -3589,54 +3244,78 @@ export interface ITimelineFilterDto {
3589
3244
  includeDowntimeReasons?: boolean | null;
3590
3245
  includeProgram?: boolean | null;
3591
3246
  }
3592
- export declare class MachineUptimesAggregateDto implements IMachineUptimesAggregateDto {
3593
- machineUptimes: MachineUptimeDto[];
3594
- sum: MachineUptimeSumDto;
3595
- 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);
3596
3275
  init(_data?: any): void;
3597
- static fromJS(data: any): MachineUptimesAggregateDto;
3276
+ static fromJS(data: any): ResourceUptimesAggregateDto;
3598
3277
  toJSON(data?: any): any;
3599
3278
  }
3600
- export interface IMachineUptimesAggregateDto {
3601
- machineUptimes: MachineUptimeDto[];
3602
- sum: MachineUptimeSumDto;
3279
+ export interface IResourceUptimesAggregateDto {
3280
+ resourceUptimes: ResourceUptimeDto[];
3281
+ sum: ResourceUptimeSumDto;
3603
3282
  }
3604
- export declare class MachineUptimeDto implements IMachineUptimeDto {
3283
+ export declare class ResourceUptimeDto implements IResourceUptimeDto {
3605
3284
  assetExternalId: string;
3606
3285
  percent: number;
3607
3286
  numberOfSeconds: number;
3608
- constructor(data?: IMachineUptimeDto);
3287
+ constructor(data?: IResourceUptimeDto);
3609
3288
  init(_data?: any): void;
3610
- static fromJS(data: any): MachineUptimeDto;
3289
+ static fromJS(data: any): ResourceUptimeDto;
3611
3290
  toJSON(data?: any): any;
3612
3291
  }
3613
- export interface IMachineUptimeDto {
3292
+ export interface IResourceUptimeDto {
3614
3293
  assetExternalId: string;
3615
3294
  percent: number;
3616
3295
  numberOfSeconds: number;
3617
3296
  }
3618
- export declare class MachineUptimeSumDto implements IMachineUptimeSumDto {
3297
+ export declare class ResourceUptimeSumDto implements IResourceUptimeSumDto {
3619
3298
  percent: number;
3620
3299
  numberOfSeconds: number;
3621
- constructor(data?: IMachineUptimeSumDto);
3300
+ constructor(data?: IResourceUptimeSumDto);
3622
3301
  init(_data?: any): void;
3623
- static fromJS(data: any): MachineUptimeSumDto;
3302
+ static fromJS(data: any): ResourceUptimeSumDto;
3624
3303
  toJSON(data?: any): any;
3625
3304
  }
3626
- export interface IMachineUptimeSumDto {
3305
+ export interface IResourceUptimeSumDto {
3627
3306
  percent: number;
3628
3307
  numberOfSeconds: number;
3629
3308
  }
3630
- export declare class ListMachineUptimesTodayRequest implements IListMachineUptimesTodayRequest {
3631
- machineExternalIds?: string[] | null;
3309
+ export declare class ListResourceUptimesTodayRequest implements IListResourceUptimesTodayRequest {
3310
+ resourceExternalIds?: string[] | null;
3632
3311
  utcOffset?: number;
3633
- constructor(data?: IListMachineUptimesTodayRequest);
3312
+ constructor(data?: IListResourceUptimesTodayRequest);
3634
3313
  init(_data?: any): void;
3635
- static fromJS(data: any): ListMachineUptimesTodayRequest;
3314
+ static fromJS(data: any): ListResourceUptimesTodayRequest;
3636
3315
  toJSON(data?: any): any;
3637
3316
  }
3638
- export interface IListMachineUptimesTodayRequest {
3639
- machineExternalIds?: string[] | null;
3317
+ export interface IListResourceUptimesTodayRequest {
3318
+ resourceExternalIds?: string[] | null;
3640
3319
  utcOffset?: number;
3641
3320
  }
3642
3321
  export declare class PowerOnUtilizationList implements IPowerOnUtilizationList {
@@ -3679,110 +3358,6 @@ export interface INumericNullableValueWithTimestamp {
3679
3358
  timestamp?: number;
3680
3359
  value?: number | null;
3681
3360
  }
3682
- export declare class ResourceUtilizationListDto implements IResourceUtilizationListDto {
3683
- resources?: ResourceUtilizationDto[] | null;
3684
- constructor(data?: IResourceUtilizationListDto);
3685
- init(_data?: any): void;
3686
- static fromJS(data: any): ResourceUtilizationListDto;
3687
- toJSON(data?: any): any;
3688
- }
3689
- export interface IResourceUtilizationListDto {
3690
- resources?: ResourceUtilizationDto[] | null;
3691
- }
3692
- export declare class ResourceUtilizationDto implements IResourceUtilizationDto {
3693
- assetId: number;
3694
- name: string;
3695
- description?: string | null;
3696
- state: string;
3697
- machineState: MachineState;
3698
- startTime?: Date;
3699
- workorder?: UtilizationWorkorderDto | null;
3700
- powerOn?: PowerOnUtilizationDto | null;
3701
- constructor(data?: IResourceUtilizationDto);
3702
- init(_data?: any): void;
3703
- static fromJS(data: any): ResourceUtilizationDto;
3704
- toJSON(data?: any): any;
3705
- }
3706
- export interface IResourceUtilizationDto {
3707
- assetId: number;
3708
- name: string;
3709
- description?: string | null;
3710
- state: string;
3711
- machineState: MachineState;
3712
- startTime?: Date;
3713
- workorder?: UtilizationWorkorderDto | null;
3714
- powerOn?: PowerOnUtilizationDto | null;
3715
- }
3716
- export declare class ResourceUtilizationDetailsDto implements IResourceUtilizationDetailsDto {
3717
- resourceId: number;
3718
- resourceName: string;
3719
- machineStateText?: string | null;
3720
- machineState?: MachineState | null;
3721
- startTime?: Date | null;
3722
- powerOnUtilization?: number | null;
3723
- constructor(data?: IResourceUtilizationDetailsDto);
3724
- init(_data?: any): void;
3725
- static fromJS(data: any): ResourceUtilizationDetailsDto;
3726
- toJSON(data?: any): any;
3727
- }
3728
- export interface IResourceUtilizationDetailsDto {
3729
- resourceId: number;
3730
- resourceName: string;
3731
- machineStateText?: string | null;
3732
- machineState?: MachineState | null;
3733
- startTime?: Date | null;
3734
- powerOnUtilization?: number | null;
3735
- }
3736
- export declare class ResourceUptimesAggregateDto implements IResourceUptimesAggregateDto {
3737
- resourceUptimes: ResourceUptimeDto[];
3738
- sum: ResourceUptimeSumDto;
3739
- constructor(data?: IResourceUptimesAggregateDto);
3740
- init(_data?: any): void;
3741
- static fromJS(data: any): ResourceUptimesAggregateDto;
3742
- toJSON(data?: any): any;
3743
- }
3744
- export interface IResourceUptimesAggregateDto {
3745
- resourceUptimes: ResourceUptimeDto[];
3746
- sum: ResourceUptimeSumDto;
3747
- }
3748
- export declare class ResourceUptimeDto implements IResourceUptimeDto {
3749
- assetExternalId: string;
3750
- percent: number;
3751
- numberOfSeconds: number;
3752
- constructor(data?: IResourceUptimeDto);
3753
- init(_data?: any): void;
3754
- static fromJS(data: any): ResourceUptimeDto;
3755
- toJSON(data?: any): any;
3756
- }
3757
- export interface IResourceUptimeDto {
3758
- assetExternalId: string;
3759
- percent: number;
3760
- numberOfSeconds: number;
3761
- }
3762
- export declare class ResourceUptimeSumDto implements IResourceUptimeSumDto {
3763
- percent: number;
3764
- numberOfSeconds: number;
3765
- constructor(data?: IResourceUptimeSumDto);
3766
- init(_data?: any): void;
3767
- static fromJS(data: any): ResourceUptimeSumDto;
3768
- toJSON(data?: any): any;
3769
- }
3770
- export interface IResourceUptimeSumDto {
3771
- percent: number;
3772
- numberOfSeconds: number;
3773
- }
3774
- export declare class ListResourceUptimesTodayRequest implements IListResourceUptimesTodayRequest {
3775
- resourceExternalIds?: string[] | null;
3776
- utcOffset?: number;
3777
- constructor(data?: IListResourceUptimesTodayRequest);
3778
- init(_data?: any): void;
3779
- static fromJS(data: any): ListResourceUptimesTodayRequest;
3780
- toJSON(data?: any): any;
3781
- }
3782
- export interface IListResourceUptimesTodayRequest {
3783
- resourceExternalIds?: string[] | null;
3784
- utcOffset?: number;
3785
- }
3786
3361
  export declare class UserAppDto implements IUserAppDto {
3787
3362
  key: string;
3788
3363
  name: string;
@@ -3811,7 +3386,6 @@ export declare class UserDetailsDto implements IUserDetailsDto {
3811
3386
  isExternalUser?: boolean;
3812
3387
  isBetaTester?: boolean | null;
3813
3388
  hasAccessToIgnos?: boolean;
3814
- isInvitedUser?: boolean;
3815
3389
  constructor(data?: IUserDetailsDto);
3816
3390
  init(_data?: any): void;
3817
3391
  static fromJS(data: any): UserDetailsDto;
@@ -3829,7 +3403,6 @@ export interface IUserDetailsDto {
3829
3403
  isExternalUser?: boolean;
3830
3404
  isBetaTester?: boolean | null;
3831
3405
  hasAccessToIgnos?: boolean;
3832
- isInvitedUser?: boolean;
3833
3406
  }
3834
3407
  export declare class UserDto implements IUserDto {
3835
3408
  id?: string | null;
@@ -5540,37 +5113,6 @@ export interface ICreateResourceInResourceGroup {
5540
5113
  name: string;
5541
5114
  description?: string | null;
5542
5115
  }
5543
- export declare class PulseSettingsDto implements IPulseSettingsDto {
5544
- defaultUtilizationType: UtilizationTypeDto;
5545
- utilizationTypeEnabling: UtilizationTypeEnablingDto;
5546
- constructor(data?: IPulseSettingsDto);
5547
- init(_data?: any): void;
5548
- static fromJS(data: any): PulseSettingsDto;
5549
- toJSON(data?: any): any;
5550
- }
5551
- export interface IPulseSettingsDto {
5552
- defaultUtilizationType: UtilizationTypeDto;
5553
- utilizationTypeEnabling: UtilizationTypeEnablingDto;
5554
- }
5555
- export type UtilizationTypeDto = "PowerOn" | "TwentyFourSeven" | "ActiveOrder" | "MachineCalendar" | "FactoryCalendar";
5556
- export declare class UtilizationTypeEnablingDto implements IUtilizationTypeEnablingDto {
5557
- powerOnEnabled: boolean;
5558
- twentyFourSevenEnabled: boolean;
5559
- activeOrderEnabled: boolean;
5560
- machineCalendarEnabled: boolean;
5561
- factoryCalendarEnabled: boolean;
5562
- constructor(data?: IUtilizationTypeEnablingDto);
5563
- init(_data?: any): void;
5564
- static fromJS(data: any): UtilizationTypeEnablingDto;
5565
- toJSON(data?: any): any;
5566
- }
5567
- export interface IUtilizationTypeEnablingDto {
5568
- powerOnEnabled: boolean;
5569
- twentyFourSevenEnabled: boolean;
5570
- activeOrderEnabled: boolean;
5571
- machineCalendarEnabled: boolean;
5572
- factoryCalendarEnabled: boolean;
5573
- }
5574
5116
  export declare class PulseSettingsResourceDto implements IPulseSettingsResourceDto {
5575
5117
  defaultUtilizationType: ResourceUtilizationTypeDto;
5576
5118
  utilizationTypeEnabling: ResourceUtilizationTypeEnablingDto;
@@ -5602,26 +5144,6 @@ export interface IResourceUtilizationTypeEnablingDto {
5602
5144
  resourceCalendarEnabled: boolean;
5603
5145
  factoryCalendarEnabled: boolean;
5604
5146
  }
5605
- export declare class UpdatePulseSettings implements IUpdatePulseSettings {
5606
- defaultUtilizationType: UtilizationTypeDto;
5607
- powerOnEnabled: boolean;
5608
- twentyfourSevenEnabled: boolean;
5609
- activeOrderEnabled: boolean;
5610
- machineCalendarEnabled: boolean;
5611
- factoryCalendarEnabled: boolean;
5612
- constructor(data?: IUpdatePulseSettings);
5613
- init(_data?: any): void;
5614
- static fromJS(data: any): UpdatePulseSettings;
5615
- toJSON(data?: any): any;
5616
- }
5617
- export interface IUpdatePulseSettings {
5618
- defaultUtilizationType: UtilizationTypeDto;
5619
- powerOnEnabled: boolean;
5620
- twentyfourSevenEnabled: boolean;
5621
- activeOrderEnabled: boolean;
5622
- machineCalendarEnabled: boolean;
5623
- factoryCalendarEnabled: boolean;
5624
- }
5625
5147
  export declare class UpdatePulseSettingsResource implements IUpdatePulseSettingsResource {
5626
5148
  defaultUtilizationType: ResourceUtilizationTypeDto;
5627
5149
  powerOnEnabled: boolean;
@@ -5642,21 +5164,21 @@ export interface IUpdatePulseSettingsResource {
5642
5164
  resourceCalendarEnabled: boolean;
5643
5165
  factoryCalendarEnabled: boolean;
5644
5166
  }
5645
- export declare class CompanyUtilizationDto implements ICompanyUtilizationDto {
5646
- utilizationType: UtilizationTypeDto;
5167
+ export declare class CompanyResourceUtilizationDto implements ICompanyResourceUtilizationDto {
5168
+ utilizationType: ResourceUtilizationTypeDto;
5647
5169
  companyUtilization: UtilizationDetailsV2Dto;
5648
- groups: MachineGroupUtilizationV2Dto[];
5649
- ungroupedMachines: MachineUtilizationV3Dto[];
5650
- constructor(data?: ICompanyUtilizationDto);
5170
+ groups: ResourceGroupUtilizationV2Dto[];
5171
+ ungroupedResources: ResourceUtilizationV3Dto[];
5172
+ constructor(data?: ICompanyResourceUtilizationDto);
5651
5173
  init(_data?: any): void;
5652
- static fromJS(data: any): CompanyUtilizationDto;
5174
+ static fromJS(data: any): CompanyResourceUtilizationDto;
5653
5175
  toJSON(data?: any): any;
5654
5176
  }
5655
- export interface ICompanyUtilizationDto {
5656
- utilizationType: UtilizationTypeDto;
5177
+ export interface ICompanyResourceUtilizationDto {
5178
+ utilizationType: ResourceUtilizationTypeDto;
5657
5179
  companyUtilization: UtilizationDetailsV2Dto;
5658
- groups: MachineGroupUtilizationV2Dto[];
5659
- ungroupedMachines: MachineUtilizationV3Dto[];
5180
+ groups: ResourceGroupUtilizationV2Dto[];
5181
+ ungroupedResources: ResourceUtilizationV3Dto[];
5660
5182
  }
5661
5183
  export declare class UtilizationDetailsV2Dto implements IUtilizationDetailsV2Dto {
5662
5184
  utilizationPercent?: number | null;
@@ -5682,156 +5204,6 @@ export interface IUtilizationDetailsV2Dto {
5682
5204
  downtimeInMilliseconds?: number | null;
5683
5205
  totalTimeInMilliseconds?: number | null;
5684
5206
  }
5685
- export declare class MachineGroupUtilizationV2Dto implements IMachineGroupUtilizationV2Dto {
5686
- name: string;
5687
- utilization: UtilizationDetailsV2Dto;
5688
- machines: MachineUtilizationV3Dto[];
5689
- constructor(data?: IMachineGroupUtilizationV2Dto);
5690
- init(_data?: any): void;
5691
- static fromJS(data: any): MachineGroupUtilizationV2Dto;
5692
- toJSON(data?: any): any;
5693
- }
5694
- export interface IMachineGroupUtilizationV2Dto {
5695
- name: string;
5696
- utilization: UtilizationDetailsV2Dto;
5697
- machines: MachineUtilizationV3Dto[];
5698
- }
5699
- export declare class MachineUtilizationV3Dto implements IMachineUtilizationV3Dto {
5700
- id?: number;
5701
- name: string;
5702
- description?: string | null;
5703
- utilization: UtilizationDetailsV2Dto;
5704
- constructor(data?: IMachineUtilizationV3Dto);
5705
- init(_data?: any): void;
5706
- static fromJS(data: any): MachineUtilizationV3Dto;
5707
- toJSON(data?: any): any;
5708
- }
5709
- export interface IMachineUtilizationV3Dto {
5710
- id?: number;
5711
- name: string;
5712
- description?: string | null;
5713
- utilization: UtilizationDetailsV2Dto;
5714
- }
5715
- export declare class CrossCompanyUtilizationDto implements ICrossCompanyUtilizationDto {
5716
- utilizationType: UtilizationTypeDto;
5717
- crossCompanyUtilization: UtilizationDetailsV2Dto;
5718
- companies: NamedCompanyUtilizationDto[];
5719
- constructor(data?: ICrossCompanyUtilizationDto);
5720
- init(_data?: any): void;
5721
- static fromJS(data: any): CrossCompanyUtilizationDto;
5722
- toJSON(data?: any): any;
5723
- }
5724
- export interface ICrossCompanyUtilizationDto {
5725
- utilizationType: UtilizationTypeDto;
5726
- crossCompanyUtilization: UtilizationDetailsV2Dto;
5727
- companies: NamedCompanyUtilizationDto[];
5728
- }
5729
- export declare class NamedCompanyUtilizationDto extends CompanyUtilizationDto implements INamedCompanyUtilizationDto {
5730
- companyId: string;
5731
- companyName: string;
5732
- constructor(data?: INamedCompanyUtilizationDto);
5733
- init(_data?: any): void;
5734
- static fromJS(data: any): NamedCompanyUtilizationDto;
5735
- toJSON(data?: any): any;
5736
- }
5737
- export interface INamedCompanyUtilizationDto extends ICompanyUtilizationDto {
5738
- companyId: string;
5739
- companyName: string;
5740
- }
5741
- export declare class UtilizationDatapointListDto implements IUtilizationDatapointListDto {
5742
- datapoints?: NumericNullableValueWithTimestamp[];
5743
- trendDatapoints?: NumericNullableValueWithTimestamp[];
5744
- linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
5745
- constructor(data?: IUtilizationDatapointListDto);
5746
- init(_data?: any): void;
5747
- static fromJS(data: any): UtilizationDatapointListDto;
5748
- toJSON(data?: any): any;
5749
- }
5750
- export interface IUtilizationDatapointListDto {
5751
- datapoints?: NumericNullableValueWithTimestamp[];
5752
- trendDatapoints?: NumericNullableValueWithTimestamp[];
5753
- linearTrendDatapoints?: NumericNullableValueWithTimestamp[];
5754
- }
5755
- export declare class MachineUtilizationDatapointListDto extends UtilizationDatapointListDto implements IMachineUtilizationDatapointListDto {
5756
- externalId: string;
5757
- id: number;
5758
- name: string;
5759
- description?: string | null;
5760
- constructor(data?: IMachineUtilizationDatapointListDto);
5761
- init(_data?: any): void;
5762
- static fromJS(data: any): MachineUtilizationDatapointListDto;
5763
- toJSON(data?: any): any;
5764
- }
5765
- export interface IMachineUtilizationDatapointListDto extends IUtilizationDatapointListDto {
5766
- externalId: string;
5767
- id: number;
5768
- name: string;
5769
- description?: string | null;
5770
- }
5771
- export declare class CompanyUtilizationDatapointListDto extends UtilizationDatapointListDto implements ICompanyUtilizationDatapointListDto {
5772
- groups?: MachineGroupUtilizationDatapointListDto[];
5773
- ungroupedMachines?: MachineUtilizationDatapointListDto[];
5774
- constructor(data?: ICompanyUtilizationDatapointListDto);
5775
- init(_data?: any): void;
5776
- static fromJS(data: any): CompanyUtilizationDatapointListDto;
5777
- toJSON(data?: any): any;
5778
- }
5779
- export interface ICompanyUtilizationDatapointListDto extends IUtilizationDatapointListDto {
5780
- groups?: MachineGroupUtilizationDatapointListDto[];
5781
- ungroupedMachines?: MachineUtilizationDatapointListDto[];
5782
- }
5783
- export declare class MachineGroupUtilizationDatapointListDto extends UtilizationDatapointListDto implements IMachineGroupUtilizationDatapointListDto {
5784
- groupId: string;
5785
- groupName: string;
5786
- machines?: MachineUtilizationDatapointListDto[];
5787
- constructor(data?: IMachineGroupUtilizationDatapointListDto);
5788
- init(_data?: any): void;
5789
- static fromJS(data: any): MachineGroupUtilizationDatapointListDto;
5790
- toJSON(data?: any): any;
5791
- }
5792
- export interface IMachineGroupUtilizationDatapointListDto extends IUtilizationDatapointListDto {
5793
- groupId: string;
5794
- groupName: string;
5795
- machines?: MachineUtilizationDatapointListDto[];
5796
- }
5797
- export declare class CrossCompanyUtilizationDatapointListDto extends UtilizationDatapointListDto implements ICrossCompanyUtilizationDatapointListDto {
5798
- companies?: NamedCompanyUtilizationDatapointListDto[];
5799
- constructor(data?: ICrossCompanyUtilizationDatapointListDto);
5800
- init(_data?: any): void;
5801
- static fromJS(data: any): CrossCompanyUtilizationDatapointListDto;
5802
- toJSON(data?: any): any;
5803
- }
5804
- export interface ICrossCompanyUtilizationDatapointListDto extends IUtilizationDatapointListDto {
5805
- companies?: NamedCompanyUtilizationDatapointListDto[];
5806
- }
5807
- export declare class NamedCompanyUtilizationDatapointListDto extends CompanyUtilizationDatapointListDto implements INamedCompanyUtilizationDatapointListDto {
5808
- companyId: string;
5809
- companyName: string;
5810
- constructor(data?: INamedCompanyUtilizationDatapointListDto);
5811
- init(_data?: any): void;
5812
- static fromJS(data: any): NamedCompanyUtilizationDatapointListDto;
5813
- toJSON(data?: any): any;
5814
- }
5815
- export interface INamedCompanyUtilizationDatapointListDto extends ICompanyUtilizationDatapointListDto {
5816
- companyId: string;
5817
- companyName: string;
5818
- }
5819
- export declare class CompanyResourceUtilizationDto implements ICompanyResourceUtilizationDto {
5820
- utilizationType: ResourceUtilizationTypeDto;
5821
- companyUtilization: UtilizationDetailsV2Dto;
5822
- groups: ResourceGroupUtilizationV2Dto[];
5823
- ungroupedResources: ResourceUtilizationV3Dto[];
5824
- constructor(data?: ICompanyResourceUtilizationDto);
5825
- init(_data?: any): void;
5826
- static fromJS(data: any): CompanyResourceUtilizationDto;
5827
- toJSON(data?: any): any;
5828
- }
5829
- export interface ICompanyResourceUtilizationDto {
5830
- utilizationType: ResourceUtilizationTypeDto;
5831
- companyUtilization: UtilizationDetailsV2Dto;
5832
- groups: ResourceGroupUtilizationV2Dto[];
5833
- ungroupedResources: ResourceUtilizationV3Dto[];
5834
- }
5835
5207
  export declare class ResourceGroupUtilizationV2Dto implements IResourceGroupUtilizationV2Dto {
5836
5208
  name: string;
5837
5209
  utilization: UtilizationDetailsV2Dto;
@@ -5888,6 +5260,20 @@ export interface INamedCompanyResourceUtilizationDto extends ICompanyResourceUti
5888
5260
  companyId: string;
5889
5261
  companyName: string;
5890
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
+ }
5891
5277
  export declare class ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto implements IResourceUtilizationDatapointListDto {
5892
5278
  externalId: string;
5893
5279
  id: number;
@@ -7631,549 +7017,7 @@ export interface IMeasuringToolSettingsDto {
7631
7017
  disableUserDefinedIdentifiersForCalibratedTools: boolean;
7632
7018
  disableUserDefinedIdentifiersForUncalibratedTools: boolean;
7633
7019
  }
7634
- export declare class DowntimeReasonDto implements IDowntimeReasonDto {
7635
- id: string;
7636
- reason: string;
7637
- machineTypes: string[];
7638
- machineGroups: string[];
7639
- reasonType: DowntimeReasonTypeDto;
7640
- description?: string | null;
7641
- parentId?: string | null;
7642
- displayOrder?: number | null;
7643
- constructor(data?: IDowntimeReasonDto);
7644
- init(_data?: any): void;
7645
- static fromJS(data: any): DowntimeReasonDto;
7646
- toJSON(data?: any): any;
7647
- }
7648
- export interface IDowntimeReasonDto {
7649
- id: string;
7650
- reason: string;
7651
- machineTypes: string[];
7652
- machineGroups: string[];
7653
- reasonType: DowntimeReasonTypeDto;
7654
- description?: string | null;
7655
- parentId?: string | null;
7656
- displayOrder?: number | null;
7657
- }
7658
- export declare class CreateDowntimeReason implements ICreateDowntimeReason {
7659
- reason: string;
7660
- machineTypes: string[];
7661
- machineGroups?: string[] | null;
7662
- reasonType: DowntimeReasonTypeDto;
7663
- description?: string | null;
7664
- parentId?: string | null;
7665
- displayBeforeId?: string | null;
7666
- constructor(data?: ICreateDowntimeReason);
7667
- init(_data?: any): void;
7668
- static fromJS(data: any): CreateDowntimeReason;
7669
- toJSON(data?: any): any;
7670
- }
7671
- export interface ICreateDowntimeReason {
7672
- reason: string;
7673
- machineTypes: string[];
7674
- machineGroups?: string[] | null;
7675
- reasonType: DowntimeReasonTypeDto;
7676
- description?: string | null;
7677
- parentId?: string | null;
7678
- displayBeforeId?: string | null;
7679
- }
7680
- export declare class UpdateDowntimeReasonRequest implements IUpdateDowntimeReasonRequest {
7681
- reason: string;
7682
- machineTypes: string[];
7683
- machineGroups?: string[] | null;
7684
- reasonType: DowntimeReasonTypeDto;
7685
- description?: string | null;
7686
- parentId?: string | null;
7687
- displayBeforeId?: string | null;
7688
- constructor(data?: IUpdateDowntimeReasonRequest);
7689
- init(_data?: any): void;
7690
- static fromJS(data: any): UpdateDowntimeReasonRequest;
7691
- toJSON(data?: any): any;
7692
- }
7693
- export interface IUpdateDowntimeReasonRequest {
7694
- reason: string;
7695
- machineTypes: string[];
7696
- machineGroups?: string[] | null;
7697
- reasonType: DowntimeReasonTypeDto;
7698
- description?: string | null;
7699
- parentId?: string | null;
7700
- displayBeforeId?: string | null;
7701
- }
7702
- export declare class MachineTypeDto implements IMachineTypeDto {
7703
- machineType: string;
7704
- constructor(data?: IMachineTypeDto);
7705
- init(_data?: any): void;
7706
- static fromJS(data: any): MachineTypeDto;
7707
- toJSON(data?: any): any;
7708
- }
7709
- export interface IMachineTypeDto {
7710
- machineType: string;
7711
- }
7712
- export declare class ParentTopicDto implements IParentTopicDto {
7713
- id: string;
7714
- name: string;
7715
- description?: string | null;
7716
- displayOrder?: number;
7717
- subReasons?: DowntimeReasonDto[];
7718
- constructor(data?: IParentTopicDto);
7719
- init(_data?: any): void;
7720
- static fromJS(data: any): ParentTopicDto;
7721
- toJSON(data?: any): any;
7722
- }
7723
- export interface IParentTopicDto {
7724
- id: string;
7725
- name: string;
7726
- description?: string | null;
7727
- displayOrder?: number;
7728
- subReasons?: DowntimeReasonDto[];
7729
- }
7730
- export declare class CreateParentTopicRequest implements ICreateParentTopicRequest {
7731
- name: string;
7732
- description?: string | null;
7733
- displayBeforeId?: string | null;
7734
- constructor(data?: ICreateParentTopicRequest);
7735
- init(_data?: any): void;
7736
- static fromJS(data: any): CreateParentTopicRequest;
7737
- toJSON(data?: any): any;
7738
- }
7739
- export interface ICreateParentTopicRequest {
7740
- name: string;
7741
- description?: string | null;
7742
- displayBeforeId?: string | null;
7743
- }
7744
- export declare class UpdateParentTopicRequest implements IUpdateParentTopicRequest {
7745
- name: string;
7746
- description?: string | null;
7747
- displayBeforeId?: string | null;
7748
- constructor(data?: IUpdateParentTopicRequest);
7749
- init(_data?: any): void;
7750
- static fromJS(data: any): UpdateParentTopicRequest;
7751
- toJSON(data?: any): any;
7752
- }
7753
- export interface IUpdateParentTopicRequest {
7754
- name: string;
7755
- description?: string | null;
7756
- displayBeforeId?: string | null;
7757
- }
7758
- export declare class UpdateDowntimePeriodReasonRequest implements IUpdateDowntimePeriodReasonRequest {
7759
- reasonId?: string | null;
7760
- assetId?: number | null;
7761
- startTime?: Date | null;
7762
- endTime?: Date | null;
7763
- autoCompleteDowntime?: boolean | null;
7764
- comment?: string | null;
7765
- constructor(data?: IUpdateDowntimePeriodReasonRequest);
7766
- init(_data?: any): void;
7767
- static fromJS(data: any): UpdateDowntimePeriodReasonRequest;
7768
- toJSON(data?: any): any;
7769
- }
7770
- export interface IUpdateDowntimePeriodReasonRequest {
7771
- reasonId?: string | null;
7772
- assetId?: number | null;
7773
- startTime?: Date | null;
7774
- endTime?: Date | null;
7775
- autoCompleteDowntime?: boolean | null;
7776
- comment?: string | null;
7777
- }
7778
- export declare class ListTopDowntimeReasonsForResourcesRequest implements IListTopDowntimeReasonsForResourcesRequest {
7779
- startTime?: Date | null;
7780
- endTime?: Date | null;
7781
- resourceExternalIds?: string[] | null;
7782
- constructor(data?: IListTopDowntimeReasonsForResourcesRequest);
7783
- init(_data?: any): void;
7784
- static fromJS(data: any): ListTopDowntimeReasonsForResourcesRequest;
7785
- toJSON(data?: any): any;
7786
- }
7787
- export interface IListTopDowntimeReasonsForResourcesRequest {
7788
- startTime?: Date | null;
7789
- endTime?: Date | null;
7790
- resourceExternalIds?: string[] | null;
7791
- }
7792
- export declare class DowntimeReasonsReportDto implements IDowntimeReasonsReportDto {
7793
- companyId?: string | null;
7794
- totalDowntimeDurationMilliseconds?: number;
7795
- downtimeReasons?: DowntimeReasonReport[];
7796
- constructor(data?: IDowntimeReasonsReportDto);
7797
- init(_data?: any): void;
7798
- static fromJS(data: any): DowntimeReasonsReportDto;
7799
- toJSON(data?: any): any;
7800
- }
7801
- export interface IDowntimeReasonsReportDto {
7802
- companyId?: string | null;
7803
- totalDowntimeDurationMilliseconds?: number;
7804
- downtimeReasons?: DowntimeReasonReport[];
7805
- }
7806
- export declare class DowntimeReasonReport implements IDowntimeReasonReport {
7807
- reasonId: string;
7808
- reasonType: DowntimeReasonTypeDto;
7809
- reason: string;
7810
- parentReasonId: string;
7811
- parentReason: string;
7812
- totalDurationMilliseconds: number;
7813
- count: number;
7814
- details: DowntimeReasonInformation[];
7815
- constructor(data?: IDowntimeReasonReport);
7816
- init(_data?: any): void;
7817
- static fromJS(data: any): DowntimeReasonReport;
7818
- toJSON(data?: any): any;
7819
- }
7820
- export interface IDowntimeReasonReport {
7821
- reasonId: string;
7822
- reasonType: DowntimeReasonTypeDto;
7823
- reason: string;
7824
- parentReasonId: string;
7825
- parentReason: string;
7826
- totalDurationMilliseconds: number;
7827
- count: number;
7828
- details: DowntimeReasonInformation[];
7829
- }
7830
- export declare class DowntimeReasonInformation implements IDowntimeReasonInformation {
7831
- downtimeReason: DowntimePeriodReasonDto;
7832
- machine: string;
7833
- constructor(data?: IDowntimeReasonInformation);
7834
- init(_data?: any): void;
7835
- static fromJS(data: any): DowntimeReasonInformation;
7836
- toJSON(data?: any): any;
7837
- }
7838
- export interface IDowntimeReasonInformation {
7839
- downtimeReason: DowntimePeriodReasonDto;
7840
- machine: string;
7841
- }
7842
- export declare class CreateDowntimeReasonsReportRequest implements ICreateDowntimeReasonsReportRequest {
7843
- machineExternalIds?: string[] | null;
7844
- machineGroupNames?: string[] | null;
7845
- startTime?: Date | null;
7846
- endTime?: Date | null;
7847
- constructor(data?: ICreateDowntimeReasonsReportRequest);
7848
- init(_data?: any): void;
7849
- static fromJS(data: any): CreateDowntimeReasonsReportRequest;
7850
- toJSON(data?: any): any;
7851
- }
7852
- export interface ICreateDowntimeReasonsReportRequest {
7853
- machineExternalIds?: string[] | null;
7854
- machineGroupNames?: string[] | null;
7855
- startTime?: Date | null;
7856
- endTime?: Date | null;
7857
- }
7858
- export declare class MachineGroupCapacityDto implements IMachineGroupCapacityDto {
7859
- machineGroupName: string;
7860
- machine: MachineCapacityDto[];
7861
- constructor(data?: IMachineGroupCapacityDto);
7862
- init(_data?: any): void;
7863
- static fromJS(data: any): MachineGroupCapacityDto;
7864
- toJSON(data?: any): any;
7865
- }
7866
- export interface IMachineGroupCapacityDto {
7867
- machineGroupName: string;
7868
- machine: MachineCapacityDto[];
7869
- }
7870
- export declare class MachineCapacityDto implements IMachineCapacityDto {
7871
- machineExternalId: string;
7872
- name: string;
7873
- description?: string | null;
7874
- comment?: string | null;
7875
- utilizationPercent: number;
7876
- capacity: MachineCapacitySettingsDto[];
7877
- created?: Date | null;
7878
- updated?: Date | null;
7879
- updatedBy?: string | null;
7880
- updatedById?: string | null;
7881
- constructor(data?: IMachineCapacityDto);
7882
- init(_data?: any): void;
7883
- static fromJS(data: any): MachineCapacityDto;
7884
- toJSON(data?: any): any;
7885
- }
7886
- export interface IMachineCapacityDto {
7887
- machineExternalId: string;
7888
- name: string;
7889
- description?: string | null;
7890
- comment?: string | null;
7891
- utilizationPercent: number;
7892
- capacity: MachineCapacitySettingsDto[];
7893
- created?: Date | null;
7894
- updated?: Date | null;
7895
- updatedBy?: string | null;
7896
- updatedById?: string | null;
7897
- }
7898
- export declare class MachineCapacitySettingsDto implements IMachineCapacitySettingsDto {
7899
- dayIndex: number;
7900
- capacityHours: number;
7901
- constructor(data?: IMachineCapacitySettingsDto);
7902
- init(_data?: any): void;
7903
- static fromJS(data: any): MachineCapacitySettingsDto;
7904
- toJSON(data?: any): any;
7905
- }
7906
- export interface IMachineCapacitySettingsDto {
7907
- dayIndex: number;
7908
- capacityHours: number;
7909
- }
7910
- export declare class UpdateMachinesCapacity implements IUpdateMachinesCapacity {
7911
- machineExternalId: string;
7912
- comment?: string | null;
7913
- utilizationPercent?: number | null;
7914
- capacity?: MachineCapacitySettingsDto[] | null;
7915
- constructor(data?: IUpdateMachinesCapacity);
7916
- init(_data?: any): void;
7917
- static fromJS(data: any): UpdateMachinesCapacity;
7918
- toJSON(data?: any): any;
7919
- }
7920
- export interface IUpdateMachinesCapacity {
7921
- machineExternalId: string;
7922
- comment?: string | null;
7923
- utilizationPercent?: number | null;
7924
- capacity?: MachineCapacitySettingsDto[] | null;
7925
- }
7926
- export declare class MachineKpiDto implements IMachineKpiDto {
7927
- uptimeToNow: number;
7928
- uptimeToNowPreviousPeriod: number;
7929
- averageUpTime: number;
7930
- uptimeTargetReached: number;
7931
- days: MachineDayKpiDto[];
7932
- constructor(data?: IMachineKpiDto);
7933
- init(_data?: any): void;
7934
- static fromJS(data: any): MachineKpiDto;
7935
- toJSON(data?: any): any;
7936
- }
7937
- export interface IMachineKpiDto {
7938
- uptimeToNow: number;
7939
- uptimeToNowPreviousPeriod: number;
7940
- averageUpTime: number;
7941
- uptimeTargetReached: number;
7942
- days: MachineDayKpiDto[];
7943
- }
7944
- export declare class MachineDayKpiDto implements IMachineDayKpiDto {
7945
- date: Date;
7946
- uptime: number;
7947
- utilizationGoal: number;
7948
- constructor(data?: IMachineDayKpiDto);
7949
- init(_data?: any): void;
7950
- static fromJS(data: any): MachineDayKpiDto;
7951
- toJSON(data?: any): any;
7952
- }
7953
- export interface IMachineDayKpiDto {
7954
- date: Date;
7955
- uptime: number;
7956
- utilizationGoal: number;
7957
- }
7958
- export declare class MachineDailyUptimeDto implements IMachineDailyUptimeDto {
7959
- date?: Date;
7960
- historicUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
7961
- todayUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
7962
- constructor(data?: IMachineDailyUptimeDto);
7963
- init(_data?: any): void;
7964
- static fromJS(data: any): MachineDailyUptimeDto;
7965
- toJSON(data?: any): any;
7966
- }
7967
- export interface IMachineDailyUptimeDto {
7968
- date?: Date;
7969
- historicUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
7970
- todayUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
7971
- }
7972
- export declare class MachineDailyUptimePointDto implements IMachineDailyUptimePointDto {
7973
- date?: Date;
7974
- uptime?: number;
7975
- constructor(data?: IMachineDailyUptimePointDto);
7976
- init(_data?: any): void;
7977
- static fromJS(data: any): MachineDailyUptimePointDto;
7978
- toJSON(data?: any): any;
7979
- }
7980
- export interface IMachineDailyUptimePointDto {
7981
- date?: Date;
7982
- uptime?: number;
7983
- }
7984
- export declare class MachineGroupDto implements IMachineGroupDto {
7985
- id: string;
7986
- name: string;
7987
- companyId?: string | null;
7988
- machines: MachineGroupMemberDto[];
7989
- constructor(data?: IMachineGroupDto);
7990
- init(_data?: any): void;
7991
- static fromJS(data: any): MachineGroupDto;
7992
- toJSON(data?: any): any;
7993
- }
7994
- export interface IMachineGroupDto {
7995
- id: string;
7996
- name: string;
7997
- companyId?: string | null;
7998
- machines: MachineGroupMemberDto[];
7999
- }
8000
- export declare class MachineGroupMemberDto implements IMachineGroupMemberDto {
8001
- id: number;
8002
- externalId: string;
8003
- name: string;
8004
- description?: string | null;
8005
- type?: string | null;
8006
- constructor(data?: IMachineGroupMemberDto);
8007
- init(_data?: any): void;
8008
- static fromJS(data: any): MachineGroupMemberDto;
8009
- toJSON(data?: any): any;
8010
- }
8011
- export interface IMachineGroupMemberDto {
8012
- id: number;
8013
- externalId: string;
8014
- name: string;
8015
- description?: string | null;
8016
- type?: string | null;
8017
- }
8018
- export declare class CreateMachineGroupResponse implements ICreateMachineGroupResponse {
8019
- id: string;
8020
- constructor(data?: ICreateMachineGroupResponse);
8021
- init(_data?: any): void;
8022
- static fromJS(data: any): CreateMachineGroupResponse;
8023
- toJSON(data?: any): any;
8024
- }
8025
- export interface ICreateMachineGroupResponse {
8026
- id: string;
8027
- }
8028
- export declare class CreateMachineGroup implements ICreateMachineGroup {
8029
- name: string;
8030
- machineExternalIds?: string[] | null;
8031
- constructor(data?: ICreateMachineGroup);
8032
- init(_data?: any): void;
8033
- static fromJS(data: any): CreateMachineGroup;
8034
- toJSON(data?: any): any;
8035
- }
8036
- export interface ICreateMachineGroup {
8037
- name: string;
8038
- machineExternalIds?: string[] | null;
8039
- }
8040
- export declare class UpdateMachineGroup implements IUpdateMachineGroup {
8041
- id: string;
8042
- name: string;
8043
- machineExternalIds?: string[] | null;
8044
- constructor(data?: IUpdateMachineGroup);
8045
- init(_data?: any): void;
8046
- static fromJS(data: any): UpdateMachineGroup;
8047
- toJSON(data?: any): any;
8048
- }
8049
- export interface IUpdateMachineGroup {
8050
- id: string;
8051
- name: string;
8052
- machineExternalIds?: string[] | null;
8053
- }
8054
- export declare class MachineErpDataListDto implements IMachineErpDataListDto {
8055
- machines: SingleMachineErpDataListDto[];
8056
- constructor(data?: IMachineErpDataListDto);
8057
- init(_data?: any): void;
8058
- static fromJS(data: any): MachineErpDataListDto;
8059
- toJSON(data?: any): any;
8060
- }
8061
- export interface IMachineErpDataListDto {
8062
- machines: SingleMachineErpDataListDto[];
8063
- }
8064
- export declare class SingleMachineErpDataListDto implements ISingleMachineErpDataListDto {
8065
- assetId: number;
8066
- name: string;
8067
- description?: string;
8068
- activeOrders: MachineErpDataDto[];
8069
- lastActiveEvent?: WorkorderOperationEventDto | null;
8070
- downtimePeriodReason?: DowntimePeriodReasonDto | null;
8071
- constructor(data?: ISingleMachineErpDataListDto);
8072
- init(_data?: any): void;
8073
- static fromJS(data: any): SingleMachineErpDataListDto;
8074
- toJSON(data?: any): any;
8075
- }
8076
- export interface ISingleMachineErpDataListDto {
8077
- assetId: number;
8078
- name: string;
8079
- description?: string;
8080
- activeOrders: MachineErpDataDto[];
8081
- lastActiveEvent?: WorkorderOperationEventDto | null;
8082
- downtimePeriodReason?: DowntimePeriodReasonDto | null;
8083
- }
8084
- export declare class MachineErpDataDto implements IMachineErpDataDto {
8085
- workOrderId: string;
8086
- part: PartDto;
8087
- quantity: number;
8088
- producedQuantity: number;
8089
- scrappedQuantity: number;
8090
- operation: number;
8091
- plannedTime: number;
8092
- usedTime: number;
8093
- startTime: Date;
8094
- unit?: string | null;
8095
- customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
8096
- workOrderDescription?: string | null;
8097
- operationDescription?: string;
8098
- project?: WorkOrderProjectDto | null;
8099
- constructor(data?: IMachineErpDataDto);
8100
- init(_data?: any): void;
8101
- static fromJS(data: any): MachineErpDataDto;
8102
- toJSON(data?: any): any;
8103
- }
8104
- export interface IMachineErpDataDto {
8105
- workOrderId: string;
8106
- part: PartDto;
8107
- quantity: number;
8108
- producedQuantity: number;
8109
- scrappedQuantity: number;
8110
- operation: number;
8111
- plannedTime: number;
8112
- usedTime: number;
8113
- startTime: Date;
8114
- unit?: string | null;
8115
- customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
8116
- workOrderDescription?: string | null;
8117
- operationDescription?: string;
8118
- project?: WorkOrderProjectDto | null;
8119
- }
8120
- export declare class UtilizationSummaryDto implements IUtilizationSummaryDto {
8121
- factory: FactoryUtilizationDto;
8122
- groups: MachineGroupUtilizationDto[];
8123
- ungroupedMachines: MachineUtilizationV2Dto[];
8124
- constructor(data?: IUtilizationSummaryDto);
8125
- init(_data?: any): void;
8126
- static fromJS(data: any): UtilizationSummaryDto;
8127
- toJSON(data?: any): any;
8128
- }
8129
- export interface IUtilizationSummaryDto {
8130
- factory: FactoryUtilizationDto;
8131
- groups: MachineGroupUtilizationDto[];
8132
- ungroupedMachines: MachineUtilizationV2Dto[];
8133
- }
8134
- export declare class MachineGroupUtilizationDto implements IMachineGroupUtilizationDto {
8135
- name: string;
8136
- utilization: UtilizationDto;
8137
- machines: MachineUtilizationV2Dto[];
8138
- constructor(data?: IMachineGroupUtilizationDto);
8139
- init(_data?: any): void;
8140
- static fromJS(data: any): MachineGroupUtilizationDto;
8141
- toJSON(data?: any): any;
8142
- }
8143
- export interface IMachineGroupUtilizationDto {
8144
- name: string;
8145
- utilization: UtilizationDto;
8146
- machines: MachineUtilizationV2Dto[];
8147
- }
8148
- export declare class MachineUtilizationV2Dto implements IMachineUtilizationV2Dto {
8149
- id?: number;
8150
- name: string;
8151
- description?: string | null;
8152
- utilization: UtilizationDto;
8153
- constructor(data?: IMachineUtilizationV2Dto);
8154
- init(_data?: any): void;
8155
- static fromJS(data: any): MachineUtilizationV2Dto;
8156
- toJSON(data?: any): any;
8157
- }
8158
- export interface IMachineUtilizationV2Dto {
8159
- id?: number;
8160
- name: string;
8161
- description?: string | null;
8162
- utilization: UtilizationDto;
8163
- }
8164
- export declare class CrossCompanyUtilizationSummaryDto implements ICrossCompanyUtilizationSummaryDto {
8165
- crossCompany: FactoryUtilizationDto;
8166
- companies: MachineGroupUtilizationDto[];
8167
- constructor(data?: ICrossCompanyUtilizationSummaryDto);
8168
- init(_data?: any): void;
8169
- static fromJS(data: any): CrossCompanyUtilizationSummaryDto;
8170
- toJSON(data?: any): any;
8171
- }
8172
- export interface ICrossCompanyUtilizationSummaryDto {
8173
- crossCompany: FactoryUtilizationDto;
8174
- companies: MachineGroupUtilizationDto[];
8175
- }
8176
- export declare class LinkDto implements ILinkDto {
7020
+ export declare class LinkDto implements ILinkDto {
8177
7021
  id: string;
8178
7022
  uri: string;
8179
7023
  name: string;
@@ -8460,88 +7304,326 @@ export interface ICreateDocumentTypeRequest {
8460
7304
  canHaveCertificate: boolean;
8461
7305
  generatedDocumentKey?: string | null;
8462
7306
  }
8463
- export declare class UpdateDocumentTypeRequest implements IUpdateDocumentTypeRequest {
8464
- title: string;
8465
- description?: string | null;
8466
- workflowType: DocumentWorkflowType;
8467
- isInternalDocumentType: boolean;
8468
- isGeneratedDocumentType: boolean;
8469
- requirePortableFile: boolean;
8470
- category: DocumentTypeCategory;
8471
- documentRequirementStrategy: DocumentRequirementStrategy;
8472
- canHaveCertificate: boolean;
8473
- generatedDocumentKey?: string | null;
8474
- 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);
8475
7556
  init(_data?: any): void;
8476
- static fromJS(data: any): UpdateDocumentTypeRequest;
7557
+ static fromJS(data: any): CreateSupplierInvite;
8477
7558
  toJSON(data?: any): any;
8478
7559
  }
8479
- export interface IUpdateDocumentTypeRequest {
8480
- title: string;
8481
- description?: string | null;
8482
- workflowType: DocumentWorkflowType;
8483
- isInternalDocumentType: boolean;
8484
- isGeneratedDocumentType: boolean;
8485
- requirePortableFile: boolean;
8486
- category: DocumentTypeCategory;
8487
- documentRequirementStrategy: DocumentRequirementStrategy;
8488
- canHaveCertificate: boolean;
8489
- generatedDocumentKey?: string | null;
7560
+ export interface ICreateSupplierInvite {
7561
+ supplierId: string;
7562
+ name: string;
7563
+ username: string;
7564
+ deadline: Date;
8490
7565
  }
8491
- export declare class DocumentTypeRuleDto implements IDocumentTypeRuleDto {
8492
- tag?: string | null;
8493
- requirement?: DocumentMetadataRequirement;
8494
- mutability?: Mutability;
8495
- ruleType?: DocumentRuleType;
8496
- 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);
8497
7572
  init(_data?: any): void;
8498
- static fromJS(data: any): DocumentTypeRuleDto;
7573
+ static fromJS(data: any): ExternalSupplierDto;
8499
7574
  toJSON(data?: any): any;
8500
7575
  }
8501
- export interface IDocumentTypeRuleDto {
8502
- tag?: string | null;
8503
- requirement?: DocumentMetadataRequirement;
8504
- mutability?: Mutability;
8505
- ruleType?: DocumentRuleType;
7576
+ export interface IExternalSupplierDto {
7577
+ id: string;
7578
+ name: string;
7579
+ companyId: string;
7580
+ active: boolean;
8506
7581
  }
8507
- export type DocumentMetadataRequirement = "NotAllowed" | "Optional" | "Required";
8508
- export type Mutability = "Immutable" | "Appendable" | "Mutable";
8509
- export type DocumentRuleType = "Tag" | "Sequences" | "OrderLines" | "LotNumbers";
8510
- export declare class DocumentTypeRuleTypeDto implements IDocumentTypeRuleTypeDto {
8511
- tag?: string | null;
8512
- ruleType?: DocumentRuleType;
8513
- description?: string | null;
8514
- 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);
8515
7589
  init(_data?: any): void;
8516
- static fromJS(data: any): DocumentTypeRuleTypeDto;
7590
+ static fromJS(data: any): ImportSupplier;
8517
7591
  toJSON(data?: any): any;
8518
7592
  }
8519
- export interface IDocumentTypeRuleTypeDto {
8520
- tag?: string | null;
8521
- ruleType?: DocumentRuleType;
8522
- description?: string | null;
7593
+ export interface IImportSupplier {
7594
+ supplierId: string;
7595
+ name: string;
7596
+ organizationNumber?: string | null;
7597
+ threeLetterIsoCountry: string;
7598
+ users: ImportSupplierUserDto[];
8523
7599
  }
8524
- export declare class UpdateDocumentTypeRuleRequest implements IUpdateDocumentTypeRuleRequest {
8525
- rules: DocumentTypeRuleDto[];
8526
- constructor(data?: IUpdateDocumentTypeRuleRequest);
7600
+ export declare class ImportSupplierUserDto implements IImportSupplierUserDto {
7601
+ username: string;
7602
+ name: string;
7603
+ roles: string[];
7604
+ constructor(data?: IImportSupplierUserDto);
8527
7605
  init(_data?: any): void;
8528
- static fromJS(data: any): UpdateDocumentTypeRuleRequest;
7606
+ static fromJS(data: any): ImportSupplierUserDto;
8529
7607
  toJSON(data?: any): any;
8530
7608
  }
8531
- export interface IUpdateDocumentTypeRuleRequest {
8532
- rules: DocumentTypeRuleDto[];
7609
+ export interface IImportSupplierUserDto {
7610
+ username: string;
7611
+ name: string;
7612
+ roles: string[];
8533
7613
  }
8534
- export declare class DocumentGeneratorTypeDto implements IDocumentGeneratorTypeDto {
8535
- key: string;
8536
- description: string;
8537
- constructor(data?: IDocumentGeneratorTypeDto);
7614
+ export declare class CreateSupplierMapping implements ICreateSupplierMapping {
7615
+ companyId: string;
7616
+ existingSupplierId: string;
7617
+ newSupplierId: string;
7618
+ constructor(data?: ICreateSupplierMapping);
8538
7619
  init(_data?: any): void;
8539
- static fromJS(data: any): DocumentGeneratorTypeDto;
7620
+ static fromJS(data: any): CreateSupplierMapping;
8540
7621
  toJSON(data?: any): any;
8541
7622
  }
8542
- export interface IDocumentGeneratorTypeDto {
8543
- key: string;
8544
- description: string;
7623
+ export interface ICreateSupplierMapping {
7624
+ companyId: string;
7625
+ existingSupplierId: string;
7626
+ newSupplierId: string;
8545
7627
  }
8546
7628
  export declare class CncMachineTransferDto implements ICncMachineTransferDto {
8547
7629
  id: string;
@@ -14722,6 +13804,7 @@ export interface IValidationRuleDto {
14722
13804
  export declare class SaveValueResponseDto implements ISaveValueResponseDto {
14723
13805
  elementCompleted: boolean;
14724
13806
  warning?: string | null;
13807
+ informationText?: string | null;
14725
13808
  isOutsideTolerances: boolean;
14726
13809
  isCloseToTolerances: boolean;
14727
13810
  tools: MeasurementFormToolValueDto[];
@@ -14733,6 +13816,7 @@ export declare class SaveValueResponseDto implements ISaveValueResponseDto {
14733
13816
  export interface ISaveValueResponseDto {
14734
13817
  elementCompleted: boolean;
14735
13818
  warning?: string | null;
13819
+ informationText?: string | null;
14736
13820
  isOutsideTolerances: boolean;
14737
13821
  isCloseToTolerances: boolean;
14738
13822
  tools: MeasurementFormToolValueDto[];
@@ -15758,232 +14842,1371 @@ export declare class AddDiscussionMessageRequest implements IAddDiscussionMessag
15758
14842
  resourceId?: string | null;
15759
14843
  constructor(data?: IAddDiscussionMessageRequest);
15760
14844
  init(_data?: any): void;
15761
- 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;
15762
15418
  toJSON(data?: any): any;
15763
15419
  }
15764
- export interface IAddDiscussionMessageRequest {
15765
- message: string;
15766
- operationId?: string | null;
15767
- operationName?: string | null;
15768
- resourceId?: string | null;
15769
- }
15770
- export declare class WorkorderDiscussionReadStatusDto implements IWorkorderDiscussionReadStatusDto {
15771
- workorderId?: string;
15772
- operationId?: string | null;
15773
- resourceId?: string | null;
15774
- userUpn?: string;
15775
- lastRead?: Date;
15776
- 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);
15777
15475
  init(_data?: any): void;
15778
- static fromJS(data: any): WorkorderDiscussionReadStatusDto;
15476
+ static fromJS(data: any): UpdateAmcTypeResultLine;
15779
15477
  toJSON(data?: any): any;
15780
15478
  }
15781
- export interface IWorkorderDiscussionReadStatusDto {
15782
- workorderId?: string;
15783
- operationId?: string | null;
15784
- resourceId?: string | null;
15785
- userUpn?: string;
15786
- lastRead?: Date;
15479
+ export interface IUpdateAmcTypeResultLine {
15480
+ approved?: boolean | null;
15481
+ comment?: string | null;
15787
15482
  }
15788
- export declare class SetDiscussionLastReadRequest implements ISetDiscussionLastReadRequest {
15789
- operationId?: string | null;
15790
- resourceId?: string | null;
15791
- 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);
15792
15655
  init(_data?: any): void;
15793
- static fromJS(data: any): SetDiscussionLastReadRequest;
15656
+ static fromJS(data: any): UpdateAmcSpecificationResultLineDto;
15794
15657
  toJSON(data?: any): any;
15795
15658
  }
15796
- export interface ISetDiscussionLastReadRequest {
15797
- operationId?: string | null;
15798
- resourceId?: string | null;
15659
+ export interface IUpdateAmcSpecificationResultLineDto {
15660
+ approved?: boolean;
15661
+ comment?: string | null;
15799
15662
  }
15800
- export declare class CompanyUserDto implements ICompanyUserDto {
15801
- companyId: string;
15802
- userObjectId: string;
15803
- username?: string | null;
15804
- name?: string | null;
15805
- roles: string[];
15806
- 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);
15807
15671
  init(_data?: any): void;
15808
- static fromJS(data: any): CompanyUserDto;
15672
+ static fromJS(data: any): UpdateAmcMechanicalSpecificationResultDto;
15809
15673
  toJSON(data?: any): any;
15810
15674
  }
15811
- export interface ICompanyUserDto {
15812
- companyId: string;
15813
- userObjectId: string;
15814
- username?: string | null;
15815
- name?: string | null;
15816
- 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;
15817
15682
  }
15818
- export declare class CreateCompanyUser implements ICreateCompanyUser {
15819
- username: string;
15820
- name: string;
15821
- roles: string[];
15822
- companyId?: string | null;
15823
- constructor(data?: ICreateCompanyUser);
15683
+ export declare class UpdateAmcFerriteSpecificationResultDto implements IUpdateAmcFerriteSpecificationResultDto {
15684
+ ferriteContent?: UpdateAmcSpecificationResultLineDto | null;
15685
+ measurementMethod: AmcFerriteMeasurementMethodDto[];
15686
+ constructor(data?: IUpdateAmcFerriteSpecificationResultDto);
15824
15687
  init(_data?: any): void;
15825
- static fromJS(data: any): CreateCompanyUser;
15688
+ static fromJS(data: any): UpdateAmcFerriteSpecificationResultDto;
15826
15689
  toJSON(data?: any): any;
15827
15690
  }
15828
- export interface ICreateCompanyUser {
15829
- username: string;
15830
- name: string;
15831
- roles: string[];
15832
- companyId?: string | null;
15691
+ export interface IUpdateAmcFerriteSpecificationResultDto {
15692
+ ferriteContent?: UpdateAmcSpecificationResultLineDto | null;
15693
+ measurementMethod: AmcFerriteMeasurementMethodDto[];
15833
15694
  }
15834
- export declare class UpdateCompanyUserRequest implements IUpdateCompanyUserRequest {
15835
- roles: string[];
15836
- companyId?: string | null;
15837
- 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);
15838
15703
  init(_data?: any): void;
15839
- static fromJS(data: any): UpdateCompanyUserRequest;
15704
+ static fromJS(data: any): UpdateAmcHeatTreatmentSpecificationResultDto;
15840
15705
  toJSON(data?: any): any;
15841
15706
  }
15842
- export interface IUpdateCompanyUserRequest {
15843
- roles: string[];
15844
- 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[];
15845
15714
  }
15846
- export declare class ExternalRoleDto implements IExternalRoleDto {
15847
- id: string;
15715
+ export declare class AmcSpecificationLiteDto implements IAmcSpecificationLiteDto {
15716
+ specificationId: string;
15717
+ version: number;
15848
15718
  name: string;
15849
- 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);
15850
15731
  init(_data?: any): void;
15851
- static fromJS(data: any): ExternalRoleDto;
15732
+ static fromJS(data: any): AmcSpecificationLiteDto;
15852
15733
  toJSON(data?: any): any;
15853
15734
  }
15854
- export interface IExternalRoleDto {
15855
- id: string;
15735
+ export interface IAmcSpecificationLiteDto {
15736
+ specificationId: string;
15737
+ version: number;
15856
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;
15857
15750
  }
15858
- export declare class CompanyCustomerDto implements ICompanyCustomerDto {
15859
- customerTenantId?: string | null;
15860
- customerAzureAdTenantId?: string | null;
15861
- customerName?: string | null;
15862
- supplierId?: string | null;
15863
- supplierName?: string | null;
15864
- 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);
15865
15772
  init(_data?: any): void;
15866
- static fromJS(data: any): CompanyCustomerDto;
15773
+ static fromJS(data: any): AmcSpecificationDto;
15867
15774
  toJSON(data?: any): any;
15868
15775
  }
15869
- export interface ICompanyCustomerDto {
15870
- customerTenantId?: string | null;
15871
- customerAzureAdTenantId?: string | null;
15872
- customerName?: string | null;
15873
- supplierId?: string | null;
15874
- supplierName?: string | null;
15875
- }
15876
- export declare class CompanyDto implements ICompanyDto {
15877
- id?: string;
15878
- name?: string;
15879
- organizationNumber?: string | null;
15880
- country?: string;
15881
- tenantId?: string | null;
15882
- 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);
15883
15908
  init(_data?: any): void;
15884
- static fromJS(data: any): CompanyDto;
15909
+ static fromJS(data: any): CreateAmcSpecificationDto;
15885
15910
  toJSON(data?: any): any;
15886
15911
  }
15887
- export interface ICompanyDto {
15888
- id?: string;
15889
- name?: string;
15890
- organizationNumber?: string | null;
15891
- country?: string;
15892
- 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;
15893
15921
  }
15894
- export declare class SupplierInviteDto implements ISupplierInviteDto {
15895
- id: string;
15896
- supplierId: string;
15897
- supplierName?: string | null;
15898
- customerName?: string | null;
15899
- userId: string;
15900
- userName?: string | null;
15901
- companyId?: string | null;
15902
- deadline: Date;
15903
- acceptedTimestamp?: Date | null;
15904
- createdTime: Date;
15905
- createdBy: string;
15906
- 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);
15907
15933
  init(_data?: any): void;
15908
- static fromJS(data: any): SupplierInviteDto;
15934
+ static fromJS(data: any): UpdateAmcSpecificationDto;
15909
15935
  toJSON(data?: any): any;
15910
15936
  }
15911
- export interface ISupplierInviteDto {
15912
- id: string;
15913
- supplierId: string;
15914
- supplierName?: string | null;
15915
- customerName?: string | null;
15916
- userId: string;
15917
- userName?: string | null;
15918
- companyId?: string | null;
15919
- deadline: Date;
15920
- acceptedTimestamp?: Date | null;
15921
- 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;
15922
15956
  createdBy: string;
15923
- }
15924
- export declare class AcceptSupplierInvite implements IAcceptSupplierInvite {
15925
- companyName?: string;
15926
- organizationNumber?: string;
15927
- threeLetterIsoCountry?: string;
15928
- constructor(data?: IAcceptSupplierInvite);
15957
+ createdById: string;
15958
+ updatedBy?: string | null;
15959
+ updatedById?: string | null;
15960
+ constructor(data?: IAmcTypeLiteDto);
15929
15961
  init(_data?: any): void;
15930
- static fromJS(data: any): AcceptSupplierInvite;
15962
+ static fromJS(data: any): AmcTypeLiteDto;
15931
15963
  toJSON(data?: any): any;
15932
15964
  }
15933
- export interface IAcceptSupplierInvite {
15934
- companyName?: string;
15935
- organizationNumber?: string;
15936
- 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;
15937
15976
  }
15938
- export declare class CreateSupplierInvite implements ICreateSupplierInvite {
15939
- supplierId: string;
15940
- supplierName?: string | null;
15941
- username: string;
15942
- invitedName: string;
15943
- deadline: Date;
15944
- existingCompanyId?: string | null;
15945
- 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);
15946
15990
  init(_data?: any): void;
15947
- static fromJS(data: any): CreateSupplierInvite;
15991
+ static fromJS(data: any): AmcTypeDto;
15948
15992
  toJSON(data?: any): any;
15949
15993
  }
15950
- export interface ICreateSupplierInvite {
15951
- supplierId: string;
15952
- supplierName?: string | null;
15953
- username: string;
15954
- invitedName: string;
15955
- deadline: Date;
15956
- existingCompanyId?: string | null;
15957
- }
15958
- export declare class ExternalSupplierDto implements IExternalSupplierDto {
15959
- id: string;
15994
+ export interface IAmcTypeDto {
15995
+ typeId: string;
15996
+ version: number;
15960
15997
  name: string;
15961
- companyId: string;
15962
- active: boolean;
15963
- 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);
15964
16186
  init(_data?: any): void;
15965
- static fromJS(data: any): ExternalSupplierDto;
16187
+ static fromJS(data: any): CreateAmcTypeRequestDto;
15966
16188
  toJSON(data?: any): any;
15967
16189
  }
15968
- export interface IExternalSupplierDto {
15969
- id: string;
16190
+ export interface ICreateAmcTypeRequestDto {
15970
16191
  name: string;
15971
- companyId: string;
15972
- active: boolean;
16192
+ revision: string;
16193
+ description?: string | null;
15973
16194
  }
15974
- export declare class CreateSupplierMapping implements ICreateSupplierMapping {
15975
- companyId: string;
15976
- existingSupplierId: string;
15977
- newSupplierId: string;
15978
- 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);
15979
16201
  init(_data?: any): void;
15980
- static fromJS(data: any): CreateSupplierMapping;
16202
+ static fromJS(data: any): UpdateAmcTypeDto;
15981
16203
  toJSON(data?: any): any;
15982
16204
  }
15983
- export interface ICreateSupplierMapping {
15984
- companyId: string;
15985
- existingSupplierId: string;
15986
- newSupplierId: string;
16205
+ export interface IUpdateAmcTypeDto {
16206
+ typeId: string;
16207
+ version: number;
16208
+ description?: string | null;
16209
+ checks: AmcTypeChecksDto;
15987
16210
  }
15988
16211
  export interface FileParameter {
15989
16212
  data: any;