@ignos/api-client 20260410.103.1 → 20260415.105.1-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2579,30 +2579,6 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
2579
2579
  deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
2580
2580
  protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
2581
2581
  }
2582
- export interface IInspectMatchCertificateChecksClient {
2583
- listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
2584
- getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
2585
- deleteMaterialCheck(id: string): Promise<void>;
2586
- processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
2587
- updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
2588
- }
2589
- export declare class InspectMatchCertificateChecksClient extends AuthorizedApiBase implements IInspectMatchCertificateChecksClient {
2590
- private http;
2591
- private baseUrl;
2592
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2593
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2594
- });
2595
- listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
2596
- protected processListMaterialCertificateChecks(response: Response): Promise<ImaMaterialChecksPageDto>;
2597
- getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
2598
- protected processGetMaterialCertificateCheck(response: Response): Promise<ImaMaterialCheckDto>;
2599
- deleteMaterialCheck(id: string): Promise<void>;
2600
- protected processDeleteMaterialCheck(response: Response): Promise<void>;
2601
- processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
2602
- protected processProcessMaterialCertificate(response: Response): Promise<void>;
2603
- updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
2604
- protected processUpdateMaterialCertificate(response: Response): Promise<ImaMaterialCheckDto>;
2605
- }
2606
2582
  export interface IInspectMatchCertificateTypesAdminClient {
2607
2583
  createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2608
2584
  copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
@@ -2645,6 +2621,30 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
2645
2621
  listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
2646
2622
  protected processListMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeLiteDto[]>;
2647
2623
  }
2624
+ export interface IInspectMatchMaterialChecksClient {
2625
+ listMaterialChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
2626
+ getMaterialCheck(id: string): Promise<ImaMaterialCheckDto>;
2627
+ updateMaterialCheck(id: string, request: ImaUpdateMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
2628
+ deleteMaterialCheck(id: string): Promise<void>;
2629
+ processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
2630
+ }
2631
+ export declare class InspectMatchMaterialChecksClient extends AuthorizedApiBase implements IInspectMatchMaterialChecksClient {
2632
+ private http;
2633
+ private baseUrl;
2634
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2635
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2636
+ });
2637
+ listMaterialChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
2638
+ protected processListMaterialChecks(response: Response): Promise<ImaMaterialChecksPageDto>;
2639
+ getMaterialCheck(id: string): Promise<ImaMaterialCheckDto>;
2640
+ protected processGetMaterialCheck(response: Response): Promise<ImaMaterialCheckDto>;
2641
+ updateMaterialCheck(id: string, request: ImaUpdateMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
2642
+ protected processUpdateMaterialCheck(response: Response): Promise<ImaMaterialCheckDto>;
2643
+ deleteMaterialCheck(id: string): Promise<void>;
2644
+ protected processDeleteMaterialCheck(response: Response): Promise<void>;
2645
+ processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
2646
+ protected processProcessMaterialCertificate(response: Response): Promise<void>;
2647
+ }
2648
2648
  export interface IInspectMatchPurchaseOrderClient {
2649
2649
  searchPurchaseOrders(input: string | undefined): Promise<PurchaseOrderMaterialSearchResultsDto>;
2650
2650
  getPurchaseOrderLines(purchaseOrder: string): Promise<PurchaseOrderMaterialLinesDto>;
@@ -7634,6 +7634,197 @@ export interface WeldingIotConfigDto {
7634
7634
  }
7635
7635
  export interface CreateWeldingIotConfig {
7636
7636
  }
7637
+ export interface ImaCdfEntityReadBase {
7638
+ }
7639
+ export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
7640
+ certificateTypeId: string;
7641
+ version: number;
7642
+ allVersions: ImaCertificateTypeVersionDto[];
7643
+ name: string;
7644
+ revision: string;
7645
+ status: ImaCertificateTypeStatus;
7646
+ description?: string | null;
7647
+ isStandardCertificateType: boolean;
7648
+ created: Date;
7649
+ createdBy: string;
7650
+ createdById: string;
7651
+ updatedBy?: string | null;
7652
+ updatedById?: string | null;
7653
+ updated: Date;
7654
+ isDeleted: boolean;
7655
+ requirements: ImaCertificateTypeRequirementsDto;
7656
+ }
7657
+ export interface ImaCertificateTypeVersionDto {
7658
+ version?: number;
7659
+ status?: ImaCertificateTypeStatus;
7660
+ }
7661
+ export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
7662
+ export interface ImaCertificateTypeRequirementsDto {
7663
+ manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
7664
+ signature: ImaCertificateTypeSignatureRequirementsDto;
7665
+ thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
7666
+ certification: ImaCertificateTypeCertificationRequirementsDto;
7667
+ productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
7668
+ testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
7669
+ testResults: ImaCertificateTypeTestResultsRequirementsDto;
7670
+ documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
7671
+ }
7672
+ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
7673
+ manufacturer?: boolean;
7674
+ address?: boolean;
7675
+ contact?: boolean;
7676
+ }
7677
+ export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
7678
+ certifiedBy?: boolean;
7679
+ position?: boolean;
7680
+ signature?: boolean;
7681
+ date?: boolean;
7682
+ stamp?: boolean;
7683
+ }
7684
+ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntityReadBase {
7685
+ inspectionBody?: boolean;
7686
+ inspectorName?: boolean;
7687
+ position?: boolean;
7688
+ verificationMethod?: boolean;
7689
+ signature?: boolean;
7690
+ date?: boolean;
7691
+ stamp?: boolean;
7692
+ }
7693
+ export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
7694
+ certificateOfCompliance?: boolean;
7695
+ inspectionCertificate?: boolean;
7696
+ }
7697
+ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto extends ImaCdfEntityReadBase {
7698
+ productDescription?: boolean;
7699
+ materialGrade?: boolean;
7700
+ customer?: boolean;
7701
+ customerOrderNumber?: boolean;
7702
+ dimensionsOrWeight?: boolean;
7703
+ batchNumber?: boolean;
7704
+ heatNumber?: boolean;
7705
+ relatedStandards?: boolean;
7706
+ }
7707
+ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
7708
+ usedStandards?: boolean;
7709
+ }
7710
+ export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
7711
+ mechanicalProperties?: boolean;
7712
+ chemicalAnalysis?: boolean;
7713
+ impactTests?: boolean;
7714
+ corrosionTests?: boolean;
7715
+ ferriteContentAndMicrostructure?: boolean;
7716
+ }
7717
+ export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
7718
+ heatTreatmentCertificate?: boolean;
7719
+ ultrasonicControlCertificate?: boolean;
7720
+ liquidPenetrantCertificate?: boolean;
7721
+ testReport?: boolean;
7722
+ dimensionalReport?: boolean;
7723
+ dyePenetrantReport?: boolean;
7724
+ visualReport?: boolean;
7725
+ certificateOfAnalyticalAndMechanicalTests?: boolean;
7726
+ certificateOfTest?: boolean;
7727
+ technicalReport?: boolean;
7728
+ microExaminationReport?: boolean;
7729
+ radiologicalReport?: boolean;
7730
+ }
7731
+ export interface ImaCreateOrCopyCertificateTypeRequestDto {
7732
+ name: string;
7733
+ revision: string;
7734
+ description?: string | null;
7735
+ }
7736
+ export interface ImaUpdateImaCertificateTypeRequestDto {
7737
+ name?: string | null;
7738
+ revision?: string | null;
7739
+ status?: ImaCertificateTypeStatus | null;
7740
+ description?: string | null;
7741
+ requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
7742
+ }
7743
+ export interface ImaCertificateTypeRequirementsUpdateDto {
7744
+ manufacturer?: ImaCertificateTypeManufacturerRequirementsUpdateDto | null;
7745
+ signature?: ImaCertificateTypeSignatureRequirementsUpdateDto | null;
7746
+ thirdParty?: ImaCertificateTypeThirdPartyRequirementsUpdateDto | null;
7747
+ certification?: ImaCertificateTypeCertificationRequirementsUpdateDto | null;
7748
+ productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
7749
+ testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
7750
+ testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
7751
+ documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
7752
+ }
7753
+ export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
7754
+ manufacturer?: boolean | null;
7755
+ address?: boolean | null;
7756
+ contact?: boolean | null;
7757
+ }
7758
+ export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
7759
+ certifiedBy?: boolean | null;
7760
+ position?: boolean | null;
7761
+ signature?: boolean | null;
7762
+ date?: boolean | null;
7763
+ stamp?: boolean | null;
7764
+ }
7765
+ export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
7766
+ inspectionBody?: boolean | null;
7767
+ inspectorName?: boolean | null;
7768
+ position?: boolean | null;
7769
+ verificationMethod?: boolean | null;
7770
+ signature?: boolean | null;
7771
+ date?: boolean | null;
7772
+ stamp?: boolean | null;
7773
+ }
7774
+ export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
7775
+ certificateOfCompliance?: boolean | null;
7776
+ inspectionCertificate?: boolean | null;
7777
+ }
7778
+ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
7779
+ productDescription?: boolean | null;
7780
+ materialGrade?: boolean | null;
7781
+ customer?: boolean | null;
7782
+ customerOrderNumber?: boolean | null;
7783
+ dimensionsOrWeight?: boolean | null;
7784
+ batchNumber?: boolean | null;
7785
+ heatNumber?: boolean | null;
7786
+ relatedStandards?: boolean | null;
7787
+ }
7788
+ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
7789
+ usedStandards?: boolean | null;
7790
+ }
7791
+ export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
7792
+ mechanicalProperties?: boolean | null;
7793
+ chemicalAnalysis?: boolean | null;
7794
+ impactTests?: boolean | null;
7795
+ corrosionTests?: boolean | null;
7796
+ ferriteContentAndMicrostructure?: boolean | null;
7797
+ }
7798
+ export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
7799
+ heatTreatmentCertificate?: boolean | null;
7800
+ ultrasonicControlCertificate?: boolean | null;
7801
+ liquidPenetrantCertificate?: boolean | null;
7802
+ testReport?: boolean | null;
7803
+ dimensionalReport?: boolean | null;
7804
+ dyePenetrantReport?: boolean | null;
7805
+ visualReport?: boolean | null;
7806
+ certificateOfAnalyticalAndMechanicalTests?: boolean | null;
7807
+ certificateOfTest?: boolean | null;
7808
+ technicalReport?: boolean | null;
7809
+ microExaminationReport?: boolean | null;
7810
+ radiologicalReport?: boolean | null;
7811
+ }
7812
+ export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
7813
+ certificateTypeId: string;
7814
+ version: number;
7815
+ name: string;
7816
+ revision: string;
7817
+ status: ImaCertificateTypeStatus;
7818
+ description?: string | null;
7819
+ isStandardCertificateType: boolean;
7820
+ created: Date;
7821
+ createdBy: string;
7822
+ createdById: string;
7823
+ updatedBy?: string | null;
7824
+ updatedById?: string | null;
7825
+ updated: Date;
7826
+ isDeleted: boolean;
7827
+ }
7637
7828
  export interface ImaMaterialChecksPageDto {
7638
7829
  items: ImaMaterialCheckLiteDto[];
7639
7830
  continuationToken?: string | null;
@@ -7652,7 +7843,7 @@ export interface ImaMaterialCheckLiteDto {
7652
7843
  specificationVersion: number;
7653
7844
  specificationName: string;
7654
7845
  purchaseOrder?: string | null;
7655
- purchaseOrderLine?: string | null;
7846
+ purchaseOrderLine?: number | null;
7656
7847
  purchaseOrderItem?: string | null;
7657
7848
  purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
7658
7849
  purchaseOrderLot?: string | null;
@@ -7664,7 +7855,7 @@ export interface ImaMaterialCheckLiteDto {
7664
7855
  updatedById?: string | null;
7665
7856
  isDeleted?: boolean;
7666
7857
  }
7667
- export type ImaMaterialCheckStatus = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
7858
+ export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
7668
7859
  export interface ImaMaterialChecksPageRequestDto {
7669
7860
  pageSize?: number | null;
7670
7861
  orderBy?: ImaMaterialChecksOrderByColumn | null;
@@ -7700,7 +7891,7 @@ export interface ImaMaterialCheckDto {
7700
7891
  specificationVersion: number;
7701
7892
  specificationName: string;
7702
7893
  purchaseOrder?: string | null;
7703
- purchaseOrderLine?: string | null;
7894
+ purchaseOrderLine?: number | null;
7704
7895
  purchaseOrderItem?: string | null;
7705
7896
  purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
7706
7897
  purchaseOrderLot?: string | null;
@@ -7712,12 +7903,9 @@ export interface ImaMaterialCheckDto {
7712
7903
  updatedById?: string | null;
7713
7904
  isDeleted?: boolean;
7714
7905
  certificateTypeResults: ImaCertificateTypeResultsDto;
7715
- specificationChemistry: ImaSpecificationChemistryResultsDto;
7716
- specificationMechanical: ImaSpecificationMechanicalResultsDto;
7717
- specificationFerrite: ImaSpecificationFerriteResultsDto;
7718
- specificationHeatTreatments: ImaSpecificationHeatTreatmentResultDto[];
7906
+ specificationResults: ImaSpecificationResultsDto;
7719
7907
  }
7720
- export interface ImaCertificateTypeResultsDto {
7908
+ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
7721
7909
  manufacturer: ImaCertificateTypeManufacturerResultsDto;
7722
7910
  signature: ImaCertificateTypeSignatureResultsDto;
7723
7911
  thirdParty: ImaCertificateTypeThirdPartyResultsDto;
@@ -7727,31 +7915,31 @@ export interface ImaCertificateTypeResultsDto {
7727
7915
  testResults: ImaCertificateTypeTestResultsResultsDto;
7728
7916
  documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
7729
7917
  }
7730
- export interface ImaCertificateTypeManufacturerResultsDto {
7918
+ export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
7731
7919
  manufacturer?: ImaCertificateTypeResultLine | null;
7732
7920
  address?: ImaCertificateTypeResultLine | null;
7733
7921
  contact?: ImaCertificateTypeResultLine | null;
7734
7922
  }
7735
- export interface ImaCertificateTypeResultLine {
7923
+ export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
7736
7924
  found?: boolean;
7737
7925
  readValue?: string | null;
7738
7926
  override?: ImaResultLineOverrideDto | null;
7739
7927
  }
7740
- export interface ImaResultLineOverrideDto {
7928
+ export interface ImaResultLineOverrideDto extends ImaCdfEntityReadBase {
7741
7929
  approved: boolean;
7742
7930
  comment?: string | null;
7743
7931
  updated: Date;
7744
7932
  updatedBy: string;
7745
7933
  updatedById: string;
7746
7934
  }
7747
- export interface ImaCertificateTypeSignatureResultsDto {
7935
+ export interface ImaCertificateTypeSignatureResultsDto extends ImaCdfEntityReadBase {
7748
7936
  certifiedBy?: ImaCertificateTypeResultLine | null;
7749
7937
  position?: ImaCertificateTypeResultLine | null;
7750
7938
  signature?: ImaCertificateTypeResultLine | null;
7751
7939
  date?: ImaCertificateTypeResultLine | null;
7752
7940
  stamp?: ImaCertificateTypeResultLine | null;
7753
7941
  }
7754
- export interface ImaCertificateTypeThirdPartyResultsDto {
7942
+ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityReadBase {
7755
7943
  inspectionBody?: ImaCertificateTypeResultLine | null;
7756
7944
  inspectorName?: ImaCertificateTypeResultLine | null;
7757
7945
  position?: ImaCertificateTypeResultLine | null;
@@ -7760,11 +7948,11 @@ export interface ImaCertificateTypeThirdPartyResultsDto {
7760
7948
  date?: ImaCertificateTypeResultLine | null;
7761
7949
  stamp?: ImaCertificateTypeResultLine | null;
7762
7950
  }
7763
- export interface ImaCertificateTypeCertificationResultsDto {
7951
+ export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
7764
7952
  certificateOfCompliance?: ImaCertificateTypeResultLine | null;
7765
7953
  inspectionCertificate?: ImaCertificateTypeResultLine | null;
7766
7954
  }
7767
- export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
7955
+ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
7768
7956
  productDescription?: ImaCertificateTypeResultLine | null;
7769
7957
  materialGrade?: ImaCertificateTypeResultLine | null;
7770
7958
  customer?: ImaCertificateTypeResultLine | null;
@@ -7774,17 +7962,17 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
7774
7962
  heatNumber?: ImaCertificateTypeResultLine | null;
7775
7963
  relatedStandards?: ImaCertificateTypeResultLine | null;
7776
7964
  }
7777
- export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto {
7965
+ export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
7778
7966
  usedStandards?: ImaCertificateTypeResultLine | null;
7779
7967
  }
7780
- export interface ImaCertificateTypeTestResultsResultsDto {
7968
+ export interface ImaCertificateTypeTestResultsResultsDto extends ImaCdfEntityReadBase {
7781
7969
  mechanicalProperties?: ImaCertificateTypeResultLine | null;
7782
7970
  chemicalAnalysis?: ImaCertificateTypeResultLine | null;
7783
7971
  impactTests?: ImaCertificateTypeResultLine | null;
7784
7972
  corrosionTests?: ImaCertificateTypeResultLine | null;
7785
7973
  ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
7786
7974
  }
7787
- export interface ImaCertificateTypeDocumentTypesResultsDto {
7975
+ export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityReadBase {
7788
7976
  heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
7789
7977
  ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
7790
7978
  liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
@@ -7798,7 +7986,13 @@ export interface ImaCertificateTypeDocumentTypesResultsDto {
7798
7986
  microExaminationReport?: ImaCertificateTypeResultLine | null;
7799
7987
  radiologicalReport?: ImaCertificateTypeResultLine | null;
7800
7988
  }
7801
- export interface ImaSpecificationChemistryResultsDto {
7989
+ export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
7990
+ chemistry: ImaSpecificationChemistryResultsDto;
7991
+ mechanical: ImaSpecificationMechanicalResultsDto;
7992
+ ferrite: ImaSpecificationFerriteResultsDto;
7993
+ heatTreatments: ImaSpecificationHeatTreatmentResultDto[];
7994
+ }
7995
+ export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
7802
7996
  carbon?: ImaSpecificationResultLineDto | null;
7803
7997
  manganese?: ImaSpecificationResultLineDto | null;
7804
7998
  silicon?: ImaSpecificationResultLineDto | null;
@@ -7812,7 +8006,7 @@ export interface ImaSpecificationChemistryResultsDto {
7812
8006
  wolfram?: ImaSpecificationResultLineDto | null;
7813
8007
  iron?: ImaSpecificationResultLineDto | null;
7814
8008
  }
7815
- export interface ImaSpecificationResultLineDto {
8009
+ export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
7816
8010
  specificationOperator?: string | null;
7817
8011
  specificationValue1?: number | null;
7818
8012
  specificationValue2?: number | null;
@@ -7823,7 +8017,7 @@ export interface ImaSpecificationResultLineDto {
7823
8017
  }
7824
8018
  export type ImaSpecificationUnit = "Percentage" | "Joule" | "Celsius" | "Fahrenheit" | "Mpa" | "Hbw" | "Minutes" | "NotSet";
7825
8019
  export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
7826
- export interface ImaSpecificationMechanicalResultsDto {
8020
+ export interface ImaSpecificationMechanicalResultsDto extends ImaCdfEntityReadBase {
7827
8021
  yieldStrength?: ImaSpecificationResultLineDto | null;
7828
8022
  tensileStrength?: ImaSpecificationResultLineDto | null;
7829
8023
  elongation?: ImaSpecificationResultLineDto | null;
@@ -7831,7 +8025,7 @@ export interface ImaSpecificationMechanicalResultsDto {
7831
8025
  impactEnergy?: ImaSpecificationResultLineDto | null;
7832
8026
  hardness?: ImaSpecificationResultLineDto | null;
7833
8027
  }
7834
- export interface ImaSpecificationFerriteResultsDto {
8028
+ export interface ImaSpecificationFerriteResultsDto extends ImaCdfEntityReadBase {
7835
8029
  ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
7836
8030
  }
7837
8031
  export interface ImaSpecificationFerriteResultLineDto {
@@ -7844,338 +8038,140 @@ export interface ImaSpecificationFerriteResultLineDto {
7844
8038
  override?: ImaResultLineOverrideDto | null;
7845
8039
  measurementMethod?: string | null;
7846
8040
  }
7847
- export interface ImaSpecificationHeatTreatmentResultDto {
8041
+ export interface ImaSpecificationHeatTreatmentResultDto extends ImaCdfEntityReadBase {
7848
8042
  step: number;
7849
8043
  cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
7850
8044
  heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
7851
8045
  }
7852
- export interface ImaSpecificationHeatTreatmentCoolingResult {
8046
+ export interface ImaSpecificationHeatTreatmentCoolingResult extends ImaCdfEntityReadBase {
7853
8047
  coolingMethods?: string[] | null;
7854
8048
  temperature?: ImaSpecificationResultLineDto | null;
7855
8049
  duration?: ImaSpecificationResultLineDto | null;
7856
8050
  }
7857
- export interface ImaSpecificationHeatTreatmentHeatingResult {
8051
+ export interface ImaSpecificationHeatTreatmentHeatingResult extends ImaCdfEntityReadBase {
7858
8052
  heatingMethod?: string | null;
7859
8053
  temperature?: ImaSpecificationResultLineDto | null;
7860
8054
  duration?: ImaSpecificationResultLineDto | null;
7861
8055
  }
7862
- export interface ProcessImaCheckRequestDto {
8056
+ export interface ProcessMaterialCertificate {
7863
8057
  files: UploadFileCdfDto[];
7864
8058
  specificationId: string;
7865
- specificationVersion: string;
8059
+ specificationVersion: number;
7866
8060
  certificateTypeId?: string | null;
7867
- certificateTypeVersion?: string | null;
8061
+ certificateTypeVersion?: number | null;
7868
8062
  purchaseOrder?: string | null;
8063
+ purchaseOrderLine?: number | null;
7869
8064
  }
7870
8065
  export interface UploadFileCdfDto {
7871
8066
  id: number;
7872
8067
  }
7873
- export interface ImaUpdateResultRequestDto {
7874
- certificateId: string;
7875
- project?: string | null;
7876
- purchaseOrder?: string | null;
7877
- workOrder?: string | null;
7878
- certificateTypeSection: ImaUpdateCertificateTypeResultsDto;
7879
- specificationChemistrySpecification: ImaUpdateSpecificationChemistryResultsDto;
7880
- specificationMechanicalSpecification: ImaUpdateSpecificationMechanicalResultsDto;
7881
- specificationFerriteSpecification: ImaUpdateSpecificationFerriteResultsDto;
7882
- specificationHeatSpecification: ImaUpdateSpecificationHeatTreatmentResultsDto;
8068
+ export interface ImaUpdateMaterialCheckRequestDto {
8069
+ certificateTypeSection?: ImaUpdateCertificateTypeResultsDto | null;
8070
+ specificationChemistrySpecification?: ImaUpdateSpecificationChemistryResultsDto | null;
8071
+ specificationMechanicalSpecification?: ImaUpdateSpecificationMechanicalResultsDto | null;
8072
+ specificationFerriteSpecification?: ImaUpdateSpecificationFerriteResultsDto | null;
8073
+ specificationHeatSpecification?: ImaUpdateSpecificationHeatTreatmentResultsDto | null;
7883
8074
  }
7884
8075
  export interface ImaUpdateCertificateTypeResultsDto {
7885
- manufacturer: ImaUpdateCertificateTypeManufacturerResultsDto;
7886
- signature: ImaUpdateCertificateTypeSignatureResultsDto;
7887
- thirdParty: ImaUpdateCertificateTypeThirdPartyResultsDto;
7888
- certification: ImaUpdateCertificateTypeCertificationResultsDto;
7889
- certificateTypeProductAndOrderInformation: ImaUpdateCertificateTypeProductAndOrderInformationResultsDto;
7890
- testMethodsAndReferences: ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto;
7891
- testResults: ImaUpdateCertificateTypeTestResultsResultsDto;
7892
- documentTypes: ImaUpdateCertificateTypeDocumentTypesResultsDto;
8076
+ manufacturer?: ImaUpdateCertificateTypeManufacturerResultsDto | null;
8077
+ signature?: ImaUpdateCertificateTypeSignatureResultsDto | null;
8078
+ thirdParty?: ImaUpdateCertificateTypeThirdPartyResultsDto | null;
8079
+ certification?: ImaUpdateCertificateTypeCertificationResultsDto | null;
8080
+ certificateTypeProductAndOrderInformation?: ImaUpdateCertificateTypeProductAndOrderInformationResultsDto | null;
8081
+ testMethodsAndReferences?: ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto | null;
8082
+ testResults?: ImaUpdateCertificateTypeTestResultsResultsDto | null;
8083
+ documentTypes?: ImaUpdateCertificateTypeDocumentTypesResultsDto | null;
7893
8084
  }
7894
8085
  export interface ImaUpdateCertificateTypeManufacturerResultsDto {
7895
- manufacturer?: ImaUpdateCertificateTypeResultLine | null;
7896
- address?: ImaUpdateCertificateTypeResultLine | null;
7897
- contact?: ImaUpdateCertificateTypeResultLine | null;
8086
+ manufacturer?: ImaUpdateMaterialCheckResultLineDto | null;
8087
+ address?: ImaUpdateMaterialCheckResultLineDto | null;
8088
+ contact?: ImaUpdateMaterialCheckResultLineDto | null;
7898
8089
  }
7899
- export interface ImaUpdateCertificateTypeResultLine {
7900
- approved?: boolean | null;
8090
+ export interface ImaUpdateMaterialCheckResultLineDto {
8091
+ approved?: boolean;
7901
8092
  comment?: string | null;
7902
8093
  }
7903
8094
  export interface ImaUpdateCertificateTypeSignatureResultsDto {
7904
- certifiedBy?: ImaUpdateCertificateTypeResultLine | null;
7905
- position?: ImaUpdateCertificateTypeResultLine | null;
7906
- signature?: ImaUpdateCertificateTypeResultLine | null;
7907
- date?: ImaUpdateCertificateTypeResultLine | null;
7908
- stamp?: ImaUpdateCertificateTypeResultLine | null;
8095
+ certifiedBy?: ImaUpdateMaterialCheckResultLineDto | null;
8096
+ position?: ImaUpdateMaterialCheckResultLineDto | null;
8097
+ signature?: ImaUpdateMaterialCheckResultLineDto | null;
8098
+ date?: ImaUpdateMaterialCheckResultLineDto | null;
8099
+ stamp?: ImaUpdateMaterialCheckResultLineDto | null;
7909
8100
  }
7910
8101
  export interface ImaUpdateCertificateTypeThirdPartyResultsDto {
7911
- inspectionBody?: ImaUpdateCertificateTypeResultLine | null;
7912
- inspectorName?: ImaUpdateCertificateTypeResultLine | null;
7913
- position?: ImaUpdateCertificateTypeResultLine | null;
7914
- verificationMethod?: ImaUpdateCertificateTypeResultLine | null;
7915
- signature?: ImaUpdateCertificateTypeResultLine | null;
7916
- date?: ImaUpdateCertificateTypeResultLine | null;
7917
- stamp?: ImaUpdateCertificateTypeResultLine | null;
8102
+ inspectionBody?: ImaUpdateMaterialCheckResultLineDto | null;
8103
+ inspectorName?: ImaUpdateMaterialCheckResultLineDto | null;
8104
+ position?: ImaUpdateMaterialCheckResultLineDto | null;
8105
+ verificationMethod?: ImaUpdateMaterialCheckResultLineDto | null;
8106
+ signature?: ImaUpdateMaterialCheckResultLineDto | null;
8107
+ date?: ImaUpdateMaterialCheckResultLineDto | null;
8108
+ stamp?: ImaUpdateMaterialCheckResultLineDto | null;
7918
8109
  }
7919
8110
  export interface ImaUpdateCertificateTypeCertificationResultsDto {
7920
- certificateOfCompliance?: ImaUpdateCertificateTypeResultLine | null;
7921
- inspectionCertificate?: ImaUpdateCertificateTypeResultLine | null;
8111
+ certificateOfCompliance?: ImaUpdateMaterialCheckResultLineDto | null;
8112
+ inspectionCertificate?: ImaUpdateMaterialCheckResultLineDto | null;
7922
8113
  }
7923
8114
  export interface ImaUpdateCertificateTypeProductAndOrderInformationResultsDto {
7924
- productDescription?: ImaUpdateCertificateTypeResultLine | null;
7925
- materialGrade?: ImaUpdateCertificateTypeResultLine | null;
7926
- customer?: ImaUpdateCertificateTypeResultLine | null;
7927
- customerOrderNumber?: ImaUpdateCertificateTypeResultLine | null;
7928
- dimensionsOrWeight?: ImaUpdateCertificateTypeResultLine | null;
7929
- batchNumber?: ImaUpdateCertificateTypeResultLine | null;
7930
- heatNumber?: ImaUpdateCertificateTypeResultLine | null;
7931
- relatedStandards?: ImaUpdateCertificateTypeResultLine | null;
8115
+ productDescription?: ImaUpdateMaterialCheckResultLineDto | null;
8116
+ materialGrade?: ImaUpdateMaterialCheckResultLineDto | null;
8117
+ customer?: ImaUpdateMaterialCheckResultLineDto | null;
8118
+ customerOrderNumber?: ImaUpdateMaterialCheckResultLineDto | null;
8119
+ dimensionsOrWeight?: ImaUpdateMaterialCheckResultLineDto | null;
8120
+ batchNumber?: ImaUpdateMaterialCheckResultLineDto | null;
8121
+ heatNumber?: ImaUpdateMaterialCheckResultLineDto | null;
8122
+ relatedStandards?: ImaUpdateMaterialCheckResultLineDto | null;
7932
8123
  }
7933
8124
  export interface ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto {
7934
- usedStandards?: ImaUpdateCertificateTypeResultLine | null;
8125
+ usedStandards?: ImaUpdateMaterialCheckResultLineDto | null;
7935
8126
  }
7936
8127
  export interface ImaUpdateCertificateTypeTestResultsResultsDto {
7937
- mechanicalProperties?: ImaUpdateCertificateTypeResultLine | null;
7938
- chemicalAnalysis?: ImaUpdateCertificateTypeResultLine | null;
7939
- impactTests?: ImaUpdateCertificateTypeResultLine | null;
7940
- corrosionTests?: ImaUpdateCertificateTypeResultLine | null;
7941
- ferriteContentAndMicrostructure?: ImaUpdateCertificateTypeResultLine | null;
8128
+ mechanicalProperties?: ImaUpdateMaterialCheckResultLineDto | null;
8129
+ chemicalAnalysis?: ImaUpdateMaterialCheckResultLineDto | null;
8130
+ impactTests?: ImaUpdateMaterialCheckResultLineDto | null;
8131
+ corrosionTests?: ImaUpdateMaterialCheckResultLineDto | null;
8132
+ ferriteContentAndMicrostructure?: ImaUpdateMaterialCheckResultLineDto | null;
7942
8133
  }
7943
8134
  export interface ImaUpdateCertificateTypeDocumentTypesResultsDto {
7944
- heatTreatmentCertificate?: ImaUpdateCertificateTypeResultLine | null;
7945
- ultrasonicControlCertificate?: ImaUpdateCertificateTypeResultLine | null;
7946
- liquidPenetrantCertificate?: ImaUpdateCertificateTypeResultLine | null;
7947
- testReport?: ImaUpdateCertificateTypeResultLine | null;
7948
- dimensionalReport?: ImaUpdateCertificateTypeResultLine | null;
7949
- dyePenetrantReport?: ImaUpdateCertificateTypeResultLine | null;
7950
- visualReport?: ImaUpdateCertificateTypeResultLine | null;
7951
- certificateOfAnalyticalAndMechanicalTests?: ImaUpdateCertificateTypeResultLine | null;
7952
- certificateOfTest?: ImaUpdateCertificateTypeResultLine | null;
7953
- technicalReport?: ImaUpdateCertificateTypeResultLine | null;
7954
- microExaminationReport?: ImaUpdateCertificateTypeResultLine | null;
7955
- radiologicalReport?: ImaUpdateCertificateTypeResultLine | null;
8135
+ heatTreatmentCertificate?: ImaUpdateMaterialCheckResultLineDto | null;
8136
+ ultrasonicControlCertificate?: ImaUpdateMaterialCheckResultLineDto | null;
8137
+ liquidPenetrantCertificate?: ImaUpdateMaterialCheckResultLineDto | null;
8138
+ testReport?: ImaUpdateMaterialCheckResultLineDto | null;
8139
+ dimensionalReport?: ImaUpdateMaterialCheckResultLineDto | null;
8140
+ dyePenetrantReport?: ImaUpdateMaterialCheckResultLineDto | null;
8141
+ visualReport?: ImaUpdateMaterialCheckResultLineDto | null;
8142
+ certificateOfAnalyticalAndMechanicalTests?: ImaUpdateMaterialCheckResultLineDto | null;
8143
+ certificateOfTest?: ImaUpdateMaterialCheckResultLineDto | null;
8144
+ technicalReport?: ImaUpdateMaterialCheckResultLineDto | null;
8145
+ microExaminationReport?: ImaUpdateMaterialCheckResultLineDto | null;
8146
+ radiologicalReport?: ImaUpdateMaterialCheckResultLineDto | null;
7956
8147
  }
7957
8148
  export interface ImaUpdateSpecificationChemistryResultsDto {
7958
- carbon?: ImaUpdateSpecificationResultLineDto | null;
7959
- manganese?: ImaUpdateSpecificationResultLineDto | null;
7960
- silicon?: ImaUpdateSpecificationResultLineDto | null;
7961
- phosphorus?: ImaUpdateSpecificationResultLineDto | null;
7962
- sulfur?: ImaUpdateSpecificationResultLineDto | null;
7963
- chromium?: ImaUpdateSpecificationResultLineDto | null;
7964
- nickel?: ImaUpdateSpecificationResultLineDto | null;
7965
- molybdenum?: ImaUpdateSpecificationResultLineDto | null;
7966
- copper?: ImaUpdateSpecificationResultLineDto | null;
7967
- nitrogen?: ImaUpdateSpecificationResultLineDto | null;
7968
- wolfram?: ImaUpdateSpecificationResultLineDto | null;
7969
- iron?: ImaUpdateSpecificationResultLineDto | null;
7970
- }
7971
- export interface ImaUpdateSpecificationResultLineDto {
7972
- approved?: boolean;
7973
- comment?: string | null;
8149
+ carbon?: ImaUpdateMaterialCheckResultLineDto | null;
8150
+ manganese?: ImaUpdateMaterialCheckResultLineDto | null;
8151
+ silicon?: ImaUpdateMaterialCheckResultLineDto | null;
8152
+ phosphorus?: ImaUpdateMaterialCheckResultLineDto | null;
8153
+ sulfur?: ImaUpdateMaterialCheckResultLineDto | null;
8154
+ chromium?: ImaUpdateMaterialCheckResultLineDto | null;
8155
+ nickel?: ImaUpdateMaterialCheckResultLineDto | null;
8156
+ molybdenum?: ImaUpdateMaterialCheckResultLineDto | null;
8157
+ copper?: ImaUpdateMaterialCheckResultLineDto | null;
8158
+ nitrogen?: ImaUpdateMaterialCheckResultLineDto | null;
8159
+ wolfram?: ImaUpdateMaterialCheckResultLineDto | null;
8160
+ iron?: ImaUpdateMaterialCheckResultLineDto | null;
7974
8161
  }
7975
8162
  export interface ImaUpdateSpecificationMechanicalResultsDto {
7976
- yieldStrength?: ImaUpdateSpecificationResultLineDto | null;
7977
- tensileStrength?: ImaUpdateSpecificationResultLineDto | null;
7978
- elongation?: ImaUpdateSpecificationResultLineDto | null;
7979
- reductionOfArea?: ImaUpdateSpecificationResultLineDto | null;
7980
- impactEnergy?: ImaUpdateSpecificationResultLineDto | null;
7981
- hardness?: ImaUpdateSpecificationResultLineDto | null;
8163
+ yieldStrength?: ImaUpdateMaterialCheckResultLineDto | null;
8164
+ tensileStrength?: ImaUpdateMaterialCheckResultLineDto | null;
8165
+ elongation?: ImaUpdateMaterialCheckResultLineDto | null;
8166
+ reductionOfArea?: ImaUpdateMaterialCheckResultLineDto | null;
8167
+ impactEnergy?: ImaUpdateMaterialCheckResultLineDto | null;
8168
+ hardness?: ImaUpdateMaterialCheckResultLineDto | null;
7982
8169
  }
7983
8170
  export interface ImaUpdateSpecificationFerriteResultsDto {
7984
- ferriteContent?: ImaUpdateSpecificationResultLineDto | null;
8171
+ ferriteContent?: ImaUpdateMaterialCheckResultLineDto | null;
7985
8172
  }
7986
8173
  export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
7987
- heatTreatmentOverrides: (ImaUpdateSpecificationResultLineDto | null)[];
7988
- }
7989
- export interface ImaCdfEntityReadBase {
7990
- }
7991
- export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
7992
- certificateTypeId: string;
7993
- version: number;
7994
- allVersions: ImaCertificateTypeVersionDto[];
7995
- name: string;
7996
- revision: string;
7997
- status: ImaCertificateTypeStatus;
7998
- description?: string | null;
7999
- isStandardCertificateType: boolean;
8000
- created: Date;
8001
- createdBy: string;
8002
- createdById: string;
8003
- updatedBy?: string | null;
8004
- updatedById?: string | null;
8005
- updated: Date;
8006
- isDeleted: boolean;
8007
- requirements: ImaCertificateTypeRequirementsDto;
8008
- }
8009
- export interface ImaCertificateTypeVersionDto {
8010
- version?: number;
8011
- status?: ImaCertificateTypeStatus;
8012
- }
8013
- export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
8014
- export interface ImaCertificateTypeRequirementsDto {
8015
- manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
8016
- signature: ImaCertificateTypeSignatureRequirementsDto;
8017
- thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
8018
- certification: ImaCertificateTypeCertificationRequirementsDto;
8019
- productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
8020
- testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
8021
- testResults: ImaCertificateTypeTestResultsRequirementsDto;
8022
- documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
8023
- }
8024
- export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
8025
- manufacturer?: boolean;
8026
- address?: boolean;
8027
- contact?: boolean;
8028
- }
8029
- export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
8030
- certifiedBy?: boolean;
8031
- position?: boolean;
8032
- signature?: boolean;
8033
- date?: boolean;
8034
- stamp?: boolean;
8035
- }
8036
- export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntityReadBase {
8037
- inspectionBody?: boolean;
8038
- inspectorName?: boolean;
8039
- position?: boolean;
8040
- verificationMethod?: boolean;
8041
- signature?: boolean;
8042
- date?: boolean;
8043
- stamp?: boolean;
8044
- }
8045
- export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
8046
- certificateOfCompliance?: boolean;
8047
- inspectionCertificate?: boolean;
8048
- }
8049
- export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto extends ImaCdfEntityReadBase {
8050
- productDescription?: boolean;
8051
- materialGrade?: boolean;
8052
- customer?: boolean;
8053
- customerOrderNumber?: boolean;
8054
- dimensionsOrWeight?: boolean;
8055
- batchNumber?: boolean;
8056
- heatNumber?: boolean;
8057
- relatedStandards?: boolean;
8058
- }
8059
- export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
8060
- usedStandards?: boolean;
8061
- }
8062
- export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
8063
- mechanicalProperties?: boolean;
8064
- chemicalAnalysis?: boolean;
8065
- impactTests?: boolean;
8066
- corrosionTests?: boolean;
8067
- ferriteContentAndMicrostructure?: boolean;
8068
- }
8069
- export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
8070
- heatTreatmentCertificate?: boolean;
8071
- ultrasonicControlCertificate?: boolean;
8072
- liquidPenetrantCertificate?: boolean;
8073
- testReport?: boolean;
8074
- dimensionalReport?: boolean;
8075
- dyePenetrantReport?: boolean;
8076
- visualReport?: boolean;
8077
- certificateOfAnalyticalAndMechanicalTests?: boolean;
8078
- certificateOfTest?: boolean;
8079
- technicalReport?: boolean;
8080
- microExaminationReport?: boolean;
8081
- radiologicalReport?: boolean;
8082
- }
8083
- export interface ImaCreateOrCopyCertificateTypeRequestDto {
8084
- name: string;
8085
- revision: string;
8086
- description?: string | null;
8087
- }
8088
- export interface ImaUpdateImaCertificateTypeRequestDto {
8089
- name?: string | null;
8090
- revision?: string | null;
8091
- status?: ImaCertificateTypeStatus | null;
8092
- description?: string | null;
8093
- requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
8094
- }
8095
- export interface ImaCertificateTypeRequirementsUpdateDto {
8096
- manufacturer?: ImaCertificateTypeManufacturerRequirementsUpdateDto | null;
8097
- signature?: ImaCertificateTypeSignatureRequirementsUpdateDto | null;
8098
- thirdParty?: ImaCertificateTypeThirdPartyRequirementsUpdateDto | null;
8099
- certification?: ImaCertificateTypeCertificationRequirementsUpdateDto | null;
8100
- productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
8101
- testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
8102
- testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
8103
- documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
8104
- }
8105
- export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
8106
- manufacturer?: boolean | null;
8107
- address?: boolean | null;
8108
- contact?: boolean | null;
8109
- }
8110
- export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
8111
- certifiedBy?: boolean | null;
8112
- position?: boolean | null;
8113
- signature?: boolean | null;
8114
- date?: boolean | null;
8115
- stamp?: boolean | null;
8116
- }
8117
- export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
8118
- inspectionBody?: boolean | null;
8119
- inspectorName?: boolean | null;
8120
- position?: boolean | null;
8121
- verificationMethod?: boolean | null;
8122
- signature?: boolean | null;
8123
- date?: boolean | null;
8124
- stamp?: boolean | null;
8125
- }
8126
- export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
8127
- certificateOfCompliance?: boolean | null;
8128
- inspectionCertificate?: boolean | null;
8129
- }
8130
- export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
8131
- productDescription?: boolean | null;
8132
- materialGrade?: boolean | null;
8133
- customer?: boolean | null;
8134
- customerOrderNumber?: boolean | null;
8135
- dimensionsOrWeight?: boolean | null;
8136
- batchNumber?: boolean | null;
8137
- heatNumber?: boolean | null;
8138
- relatedStandards?: boolean | null;
8139
- }
8140
- export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
8141
- usedStandards?: boolean | null;
8142
- }
8143
- export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
8144
- mechanicalProperties?: boolean | null;
8145
- chemicalAnalysis?: boolean | null;
8146
- impactTests?: boolean | null;
8147
- corrosionTests?: boolean | null;
8148
- ferriteContentAndMicrostructure?: boolean | null;
8149
- }
8150
- export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
8151
- heatTreatmentCertificate?: boolean | null;
8152
- ultrasonicControlCertificate?: boolean | null;
8153
- liquidPenetrantCertificate?: boolean | null;
8154
- testReport?: boolean | null;
8155
- dimensionalReport?: boolean | null;
8156
- dyePenetrantReport?: boolean | null;
8157
- visualReport?: boolean | null;
8158
- certificateOfAnalyticalAndMechanicalTests?: boolean | null;
8159
- certificateOfTest?: boolean | null;
8160
- technicalReport?: boolean | null;
8161
- microExaminationReport?: boolean | null;
8162
- radiologicalReport?: boolean | null;
8163
- }
8164
- export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
8165
- certificateTypeId: string;
8166
- version: number;
8167
- name: string;
8168
- revision: string;
8169
- status: ImaCertificateTypeStatus;
8170
- description?: string | null;
8171
- isStandardCertificateType: boolean;
8172
- created: Date;
8173
- createdBy: string;
8174
- createdById: string;
8175
- updatedBy?: string | null;
8176
- updatedById?: string | null;
8177
- updated: Date;
8178
- isDeleted: boolean;
8174
+ heatTreatmentOverrides?: ImaUpdateMaterialCheckResultLineDto[] | null;
8179
8175
  }
8180
8176
  export interface PurchaseOrderMaterialSearchResultsDto {
8181
8177
  purchaseOrders: string[];
@@ -8263,7 +8259,7 @@ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
8263
8259
  value2?: number | null;
8264
8260
  unit: ImaSpecificationUnit;
8265
8261
  }
8266
- export type ImaSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
8262
+ export type ImaSpecificationOperator = "Min" | "Max" | "Between" | "NotSet";
8267
8263
  export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
8268
8264
  yieldStrength?: ImaSpecificationLineDto | null;
8269
8265
  tensileStrength?: ImaSpecificationLineDto | null;