@ignos/api-client 20260413.104.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.
- package/lib/ignosportal-api.d.ts +319 -324
- package/lib/ignosportal-api.js +136 -133
- package/package.json +1 -1
- package/src/ignosportal-api.ts +598 -600
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -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: 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
|
-
}
|
|
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;
|
|
@@ -7712,12 +7903,9 @@ export interface ImaMaterialCheckDto {
|
|
|
7712
7903
|
updatedById?: string | null;
|
|
7713
7904
|
isDeleted?: boolean;
|
|
7714
7905
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
7715
|
-
|
|
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
|
|
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,17 +8038,17 @@ 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;
|
|
@@ -7871,312 +8065,113 @@ export interface ProcessMaterialCertificate {
|
|
|
7871
8065
|
export interface UploadFileCdfDto {
|
|
7872
8066
|
id: number;
|
|
7873
8067
|
}
|
|
7874
|
-
export interface
|
|
7875
|
-
|
|
7876
|
-
|
|
7877
|
-
|
|
7878
|
-
|
|
7879
|
-
|
|
7880
|
-
specificationChemistrySpecification: ImaUpdateSpecificationChemistryResultsDto;
|
|
7881
|
-
specificationMechanicalSpecification: ImaUpdateSpecificationMechanicalResultsDto;
|
|
7882
|
-
specificationFerriteSpecification: ImaUpdateSpecificationFerriteResultsDto;
|
|
7883
|
-
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;
|
|
7884
8074
|
}
|
|
7885
8075
|
export interface ImaUpdateCertificateTypeResultsDto {
|
|
7886
|
-
manufacturer
|
|
7887
|
-
signature
|
|
7888
|
-
thirdParty
|
|
7889
|
-
certification
|
|
7890
|
-
certificateTypeProductAndOrderInformation
|
|
7891
|
-
testMethodsAndReferences
|
|
7892
|
-
testResults
|
|
7893
|
-
documentTypes
|
|
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;
|
|
7894
8084
|
}
|
|
7895
8085
|
export interface ImaUpdateCertificateTypeManufacturerResultsDto {
|
|
7896
|
-
manufacturer?:
|
|
7897
|
-
address?:
|
|
7898
|
-
contact?:
|
|
8086
|
+
manufacturer?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8087
|
+
address?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8088
|
+
contact?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
7899
8089
|
}
|
|
7900
|
-
export interface
|
|
7901
|
-
approved?: boolean
|
|
8090
|
+
export interface ImaUpdateMaterialCheckResultLineDto {
|
|
8091
|
+
approved?: boolean;
|
|
7902
8092
|
comment?: string | null;
|
|
7903
8093
|
}
|
|
7904
8094
|
export interface ImaUpdateCertificateTypeSignatureResultsDto {
|
|
7905
|
-
certifiedBy?:
|
|
7906
|
-
position?:
|
|
7907
|
-
signature?:
|
|
7908
|
-
date?:
|
|
7909
|
-
stamp?:
|
|
8095
|
+
certifiedBy?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8096
|
+
position?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8097
|
+
signature?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8098
|
+
date?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8099
|
+
stamp?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
7910
8100
|
}
|
|
7911
8101
|
export interface ImaUpdateCertificateTypeThirdPartyResultsDto {
|
|
7912
|
-
inspectionBody?:
|
|
7913
|
-
inspectorName?:
|
|
7914
|
-
position?:
|
|
7915
|
-
verificationMethod?:
|
|
7916
|
-
signature?:
|
|
7917
|
-
date?:
|
|
7918
|
-
stamp?:
|
|
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;
|
|
7919
8109
|
}
|
|
7920
8110
|
export interface ImaUpdateCertificateTypeCertificationResultsDto {
|
|
7921
|
-
certificateOfCompliance?:
|
|
7922
|
-
inspectionCertificate?:
|
|
8111
|
+
certificateOfCompliance?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8112
|
+
inspectionCertificate?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
7923
8113
|
}
|
|
7924
8114
|
export interface ImaUpdateCertificateTypeProductAndOrderInformationResultsDto {
|
|
7925
|
-
productDescription?:
|
|
7926
|
-
materialGrade?:
|
|
7927
|
-
customer?:
|
|
7928
|
-
customerOrderNumber?:
|
|
7929
|
-
dimensionsOrWeight?:
|
|
7930
|
-
batchNumber?:
|
|
7931
|
-
heatNumber?:
|
|
7932
|
-
relatedStandards?:
|
|
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;
|
|
7933
8123
|
}
|
|
7934
8124
|
export interface ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
7935
|
-
usedStandards?:
|
|
8125
|
+
usedStandards?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
7936
8126
|
}
|
|
7937
8127
|
export interface ImaUpdateCertificateTypeTestResultsResultsDto {
|
|
7938
|
-
mechanicalProperties?:
|
|
7939
|
-
chemicalAnalysis?:
|
|
7940
|
-
impactTests?:
|
|
7941
|
-
corrosionTests?:
|
|
7942
|
-
ferriteContentAndMicrostructure?:
|
|
8128
|
+
mechanicalProperties?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8129
|
+
chemicalAnalysis?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8130
|
+
impactTests?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8131
|
+
corrosionTests?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8132
|
+
ferriteContentAndMicrostructure?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
7943
8133
|
}
|
|
7944
8134
|
export interface ImaUpdateCertificateTypeDocumentTypesResultsDto {
|
|
7945
|
-
heatTreatmentCertificate?:
|
|
7946
|
-
ultrasonicControlCertificate?:
|
|
7947
|
-
liquidPenetrantCertificate?:
|
|
7948
|
-
testReport?:
|
|
7949
|
-
dimensionalReport?:
|
|
7950
|
-
dyePenetrantReport?:
|
|
7951
|
-
visualReport?:
|
|
7952
|
-
certificateOfAnalyticalAndMechanicalTests?:
|
|
7953
|
-
certificateOfTest?:
|
|
7954
|
-
technicalReport?:
|
|
7955
|
-
microExaminationReport?:
|
|
7956
|
-
radiologicalReport?:
|
|
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;
|
|
7957
8147
|
}
|
|
7958
8148
|
export interface ImaUpdateSpecificationChemistryResultsDto {
|
|
7959
|
-
carbon?:
|
|
7960
|
-
manganese?:
|
|
7961
|
-
silicon?:
|
|
7962
|
-
phosphorus?:
|
|
7963
|
-
sulfur?:
|
|
7964
|
-
chromium?:
|
|
7965
|
-
nickel?:
|
|
7966
|
-
molybdenum?:
|
|
7967
|
-
copper?:
|
|
7968
|
-
nitrogen?:
|
|
7969
|
-
wolfram?:
|
|
7970
|
-
iron?:
|
|
7971
|
-
}
|
|
7972
|
-
export interface ImaUpdateSpecificationResultLineDto {
|
|
7973
|
-
approved?: boolean;
|
|
7974
|
-
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;
|
|
7975
8161
|
}
|
|
7976
8162
|
export interface ImaUpdateSpecificationMechanicalResultsDto {
|
|
7977
|
-
yieldStrength?:
|
|
7978
|
-
tensileStrength?:
|
|
7979
|
-
elongation?:
|
|
7980
|
-
reductionOfArea?:
|
|
7981
|
-
impactEnergy?:
|
|
7982
|
-
hardness?:
|
|
8163
|
+
yieldStrength?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8164
|
+
tensileStrength?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8165
|
+
elongation?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8166
|
+
reductionOfArea?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8167
|
+
impactEnergy?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
8168
|
+
hardness?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
7983
8169
|
}
|
|
7984
8170
|
export interface ImaUpdateSpecificationFerriteResultsDto {
|
|
7985
|
-
ferriteContent?:
|
|
8171
|
+
ferriteContent?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
7986
8172
|
}
|
|
7987
8173
|
export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
|
|
7988
|
-
heatTreatmentOverrides
|
|
7989
|
-
}
|
|
7990
|
-
export interface ImaCdfEntityReadBase {
|
|
7991
|
-
}
|
|
7992
|
-
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
7993
|
-
certificateTypeId: string;
|
|
7994
|
-
version: number;
|
|
7995
|
-
allVersions: ImaCertificateTypeVersionDto[];
|
|
7996
|
-
name: string;
|
|
7997
|
-
revision: string;
|
|
7998
|
-
status: ImaCertificateTypeStatus;
|
|
7999
|
-
description?: string | null;
|
|
8000
|
-
isStandardCertificateType: boolean;
|
|
8001
|
-
created: Date;
|
|
8002
|
-
createdBy: string;
|
|
8003
|
-
createdById: string;
|
|
8004
|
-
updatedBy?: string | null;
|
|
8005
|
-
updatedById?: string | null;
|
|
8006
|
-
updated: Date;
|
|
8007
|
-
isDeleted: boolean;
|
|
8008
|
-
requirements: ImaCertificateTypeRequirementsDto;
|
|
8009
|
-
}
|
|
8010
|
-
export interface ImaCertificateTypeVersionDto {
|
|
8011
|
-
version?: number;
|
|
8012
|
-
status?: ImaCertificateTypeStatus;
|
|
8013
|
-
}
|
|
8014
|
-
export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8015
|
-
export interface ImaCertificateTypeRequirementsDto {
|
|
8016
|
-
manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
|
|
8017
|
-
signature: ImaCertificateTypeSignatureRequirementsDto;
|
|
8018
|
-
thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
|
|
8019
|
-
certification: ImaCertificateTypeCertificationRequirementsDto;
|
|
8020
|
-
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
8021
|
-
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
8022
|
-
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
8023
|
-
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
8024
|
-
}
|
|
8025
|
-
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
8026
|
-
manufacturer?: boolean;
|
|
8027
|
-
address?: boolean;
|
|
8028
|
-
contact?: boolean;
|
|
8029
|
-
}
|
|
8030
|
-
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
8031
|
-
certifiedBy?: boolean;
|
|
8032
|
-
position?: boolean;
|
|
8033
|
-
signature?: boolean;
|
|
8034
|
-
date?: boolean;
|
|
8035
|
-
stamp?: boolean;
|
|
8036
|
-
}
|
|
8037
|
-
export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntityReadBase {
|
|
8038
|
-
inspectionBody?: boolean;
|
|
8039
|
-
inspectorName?: boolean;
|
|
8040
|
-
position?: boolean;
|
|
8041
|
-
verificationMethod?: boolean;
|
|
8042
|
-
signature?: boolean;
|
|
8043
|
-
date?: boolean;
|
|
8044
|
-
stamp?: boolean;
|
|
8045
|
-
}
|
|
8046
|
-
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
8047
|
-
certificateOfCompliance?: boolean;
|
|
8048
|
-
inspectionCertificate?: boolean;
|
|
8049
|
-
}
|
|
8050
|
-
export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto extends ImaCdfEntityReadBase {
|
|
8051
|
-
productDescription?: boolean;
|
|
8052
|
-
materialGrade?: boolean;
|
|
8053
|
-
customer?: boolean;
|
|
8054
|
-
customerOrderNumber?: boolean;
|
|
8055
|
-
dimensionsOrWeight?: boolean;
|
|
8056
|
-
batchNumber?: boolean;
|
|
8057
|
-
heatNumber?: boolean;
|
|
8058
|
-
relatedStandards?: boolean;
|
|
8059
|
-
}
|
|
8060
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
8061
|
-
usedStandards?: boolean;
|
|
8062
|
-
}
|
|
8063
|
-
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
8064
|
-
mechanicalProperties?: boolean;
|
|
8065
|
-
chemicalAnalysis?: boolean;
|
|
8066
|
-
impactTests?: boolean;
|
|
8067
|
-
corrosionTests?: boolean;
|
|
8068
|
-
ferriteContentAndMicrostructure?: boolean;
|
|
8069
|
-
}
|
|
8070
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
|
|
8071
|
-
heatTreatmentCertificate?: boolean;
|
|
8072
|
-
ultrasonicControlCertificate?: boolean;
|
|
8073
|
-
liquidPenetrantCertificate?: boolean;
|
|
8074
|
-
testReport?: boolean;
|
|
8075
|
-
dimensionalReport?: boolean;
|
|
8076
|
-
dyePenetrantReport?: boolean;
|
|
8077
|
-
visualReport?: boolean;
|
|
8078
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
8079
|
-
certificateOfTest?: boolean;
|
|
8080
|
-
technicalReport?: boolean;
|
|
8081
|
-
microExaminationReport?: boolean;
|
|
8082
|
-
radiologicalReport?: boolean;
|
|
8083
|
-
}
|
|
8084
|
-
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
8085
|
-
name: string;
|
|
8086
|
-
revision: string;
|
|
8087
|
-
description?: string | null;
|
|
8088
|
-
}
|
|
8089
|
-
export interface ImaUpdateImaCertificateTypeRequestDto {
|
|
8090
|
-
name?: string | null;
|
|
8091
|
-
revision?: string | null;
|
|
8092
|
-
status?: ImaCertificateTypeStatus | null;
|
|
8093
|
-
description?: string | null;
|
|
8094
|
-
requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
|
|
8095
|
-
}
|
|
8096
|
-
export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
8097
|
-
manufacturer?: ImaCertificateTypeManufacturerRequirementsUpdateDto | null;
|
|
8098
|
-
signature?: ImaCertificateTypeSignatureRequirementsUpdateDto | null;
|
|
8099
|
-
thirdParty?: ImaCertificateTypeThirdPartyRequirementsUpdateDto | null;
|
|
8100
|
-
certification?: ImaCertificateTypeCertificationRequirementsUpdateDto | null;
|
|
8101
|
-
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
8102
|
-
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
8103
|
-
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
8104
|
-
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
8105
|
-
}
|
|
8106
|
-
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
8107
|
-
manufacturer?: boolean | null;
|
|
8108
|
-
address?: boolean | null;
|
|
8109
|
-
contact?: boolean | null;
|
|
8110
|
-
}
|
|
8111
|
-
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
8112
|
-
certifiedBy?: boolean | null;
|
|
8113
|
-
position?: boolean | null;
|
|
8114
|
-
signature?: boolean | null;
|
|
8115
|
-
date?: boolean | null;
|
|
8116
|
-
stamp?: boolean | null;
|
|
8117
|
-
}
|
|
8118
|
-
export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
8119
|
-
inspectionBody?: boolean | null;
|
|
8120
|
-
inspectorName?: boolean | null;
|
|
8121
|
-
position?: boolean | null;
|
|
8122
|
-
verificationMethod?: boolean | null;
|
|
8123
|
-
signature?: boolean | null;
|
|
8124
|
-
date?: boolean | null;
|
|
8125
|
-
stamp?: boolean | null;
|
|
8126
|
-
}
|
|
8127
|
-
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
8128
|
-
certificateOfCompliance?: boolean | null;
|
|
8129
|
-
inspectionCertificate?: boolean | null;
|
|
8130
|
-
}
|
|
8131
|
-
export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
|
|
8132
|
-
productDescription?: boolean | null;
|
|
8133
|
-
materialGrade?: boolean | null;
|
|
8134
|
-
customer?: boolean | null;
|
|
8135
|
-
customerOrderNumber?: boolean | null;
|
|
8136
|
-
dimensionsOrWeight?: boolean | null;
|
|
8137
|
-
batchNumber?: boolean | null;
|
|
8138
|
-
heatNumber?: boolean | null;
|
|
8139
|
-
relatedStandards?: boolean | null;
|
|
8140
|
-
}
|
|
8141
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
8142
|
-
usedStandards?: boolean | null;
|
|
8143
|
-
}
|
|
8144
|
-
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
8145
|
-
mechanicalProperties?: boolean | null;
|
|
8146
|
-
chemicalAnalysis?: boolean | null;
|
|
8147
|
-
impactTests?: boolean | null;
|
|
8148
|
-
corrosionTests?: boolean | null;
|
|
8149
|
-
ferriteContentAndMicrostructure?: boolean | null;
|
|
8150
|
-
}
|
|
8151
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
8152
|
-
heatTreatmentCertificate?: boolean | null;
|
|
8153
|
-
ultrasonicControlCertificate?: boolean | null;
|
|
8154
|
-
liquidPenetrantCertificate?: boolean | null;
|
|
8155
|
-
testReport?: boolean | null;
|
|
8156
|
-
dimensionalReport?: boolean | null;
|
|
8157
|
-
dyePenetrantReport?: boolean | null;
|
|
8158
|
-
visualReport?: boolean | null;
|
|
8159
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
8160
|
-
certificateOfTest?: boolean | null;
|
|
8161
|
-
technicalReport?: boolean | null;
|
|
8162
|
-
microExaminationReport?: boolean | null;
|
|
8163
|
-
radiologicalReport?: boolean | null;
|
|
8164
|
-
}
|
|
8165
|
-
export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
8166
|
-
certificateTypeId: string;
|
|
8167
|
-
version: number;
|
|
8168
|
-
name: string;
|
|
8169
|
-
revision: string;
|
|
8170
|
-
status: ImaCertificateTypeStatus;
|
|
8171
|
-
description?: string | null;
|
|
8172
|
-
isStandardCertificateType: boolean;
|
|
8173
|
-
created: Date;
|
|
8174
|
-
createdBy: string;
|
|
8175
|
-
createdById: string;
|
|
8176
|
-
updatedBy?: string | null;
|
|
8177
|
-
updatedById?: string | null;
|
|
8178
|
-
updated: Date;
|
|
8179
|
-
isDeleted: boolean;
|
|
8174
|
+
heatTreatmentOverrides?: ImaUpdateMaterialCheckResultLineDto[] | null;
|
|
8180
8175
|
}
|
|
8181
8176
|
export interface PurchaseOrderMaterialSearchResultsDto {
|
|
8182
8177
|
purchaseOrders: string[];
|