@ignos/api-client 20260417.110.1-alpha → 20260417.111.1

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