@ignos/api-client 20260811.218.1 → 20260812.220.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.
- package/lib/ignosportal-api.d.ts +90 -28
- package/package.json +1 -1
- package/src/ignosportal-api.ts +103 -29
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -8458,6 +8458,7 @@ export interface ImaSpecificationResultLineDto {
|
|
|
8458
8458
|
specificationMin?: number | null;
|
|
8459
8459
|
specificationMax?: number | null;
|
|
8460
8460
|
readValue?: string | null;
|
|
8461
|
+
unit?: string | null;
|
|
8461
8462
|
status: ImaSpecificationResultLineStatusDto;
|
|
8462
8463
|
override?: ImaResultLineOverrideDto | null;
|
|
8463
8464
|
}
|
|
@@ -8484,28 +8485,26 @@ export interface ImaTensileTestResultDto {
|
|
|
8484
8485
|
sampleReference?: string | null;
|
|
8485
8486
|
orientation?: string | null;
|
|
8486
8487
|
testLocation?: string | null;
|
|
8487
|
-
temperature?:
|
|
8488
|
+
temperature?: number | null;
|
|
8489
|
+
temperatureUnit?: string | null;
|
|
8488
8490
|
roomTemperature?: boolean | null;
|
|
8489
8491
|
yieldStrengths: ImaYieldStrengthResultDto[];
|
|
8490
|
-
tensileStrength?:
|
|
8491
|
-
yieldTensileRatio?:
|
|
8492
|
+
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
8493
|
+
yieldTensileRatio?: ImaSpecificationResultLineDto | null;
|
|
8492
8494
|
elongations: ImaElongationResultDto[];
|
|
8493
|
-
reductionOfArea?:
|
|
8495
|
+
reductionOfArea?: ImaSpecificationResultLineDto | null;
|
|
8494
8496
|
testStandards: string[];
|
|
8495
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8496
|
-
}
|
|
8497
|
-
export interface ImaResultValueDto {
|
|
8498
|
-
readValue?: string | null;
|
|
8499
|
-
unit?: string | null;
|
|
8500
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8501
8497
|
}
|
|
8502
8498
|
export interface ImaYieldStrengthResultDto {
|
|
8503
|
-
|
|
8504
|
-
|
|
8499
|
+
basis?: ImaYieldStrengthYieldBasisDto | null;
|
|
8500
|
+
strainPercent?: number | null;
|
|
8501
|
+
labelVerbatim?: string | null;
|
|
8502
|
+
result?: ImaSpecificationResultLineDto | null;
|
|
8505
8503
|
}
|
|
8504
|
+
export type ImaYieldStrengthYieldBasisDto = "ProofNonProportional" | "ProofTotalExtension" | "UpperYield" | "LowerYield" | "Unspecified";
|
|
8506
8505
|
export interface ImaElongationResultDto {
|
|
8507
8506
|
gauge?: string | null;
|
|
8508
|
-
value?:
|
|
8507
|
+
value?: ImaSpecificationResultLineDto | null;
|
|
8509
8508
|
}
|
|
8510
8509
|
export interface ImaHardnessTestResultDto {
|
|
8511
8510
|
heatNumber?: string | null;
|
|
@@ -8514,27 +8513,31 @@ export interface ImaHardnessTestResultDto {
|
|
|
8514
8513
|
testLocation?: string | null;
|
|
8515
8514
|
readings: ImaHardnessReadingResultDto[];
|
|
8516
8515
|
testStandards: string[];
|
|
8517
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8518
8516
|
}
|
|
8519
8517
|
export interface ImaHardnessReadingResultDto {
|
|
8520
8518
|
label?: string | null;
|
|
8521
8519
|
scale?: string | null;
|
|
8522
|
-
|
|
8520
|
+
result?: ImaSpecificationResultLineDto | null;
|
|
8523
8521
|
}
|
|
8524
8522
|
export interface ImaImpactTestResultDto {
|
|
8525
8523
|
heatNumber?: string | null;
|
|
8526
8524
|
sampleReference?: string | null;
|
|
8527
8525
|
orientation?: string | null;
|
|
8528
8526
|
testLocation?: string | null;
|
|
8529
|
-
temperature?:
|
|
8527
|
+
temperature?: number | null;
|
|
8528
|
+
temperatureUnit?: string | null;
|
|
8530
8529
|
roomTemperature?: boolean | null;
|
|
8531
8530
|
testLabel?: string | null;
|
|
8532
8531
|
notchType?: string | null;
|
|
8533
8532
|
specimenSize?: string | null;
|
|
8534
8533
|
individualValues: ImaResultValueDto[];
|
|
8535
|
-
reportedAverage?:
|
|
8536
|
-
reportedMinimum?:
|
|
8534
|
+
reportedAverage?: ImaSpecificationResultLineDto | null;
|
|
8535
|
+
reportedMinimum?: ImaSpecificationResultLineDto | null;
|
|
8537
8536
|
testStandards: string[];
|
|
8537
|
+
}
|
|
8538
|
+
export interface ImaResultValueDto {
|
|
8539
|
+
readValue?: string | null;
|
|
8540
|
+
unit?: string | null;
|
|
8538
8541
|
override?: ImaResultLineOverrideDto | null;
|
|
8539
8542
|
}
|
|
8540
8543
|
export interface ImaCorrosionTestResultDto {
|
|
@@ -8542,13 +8545,13 @@ export interface ImaCorrosionTestResultDto {
|
|
|
8542
8545
|
sampleReference?: string | null;
|
|
8543
8546
|
testLocation?: string | null;
|
|
8544
8547
|
testMethod?: string | null;
|
|
8545
|
-
|
|
8548
|
+
temperature?: number | null;
|
|
8549
|
+
temperatureUnit?: string | null;
|
|
8546
8550
|
roomTemperature?: boolean | null;
|
|
8547
8551
|
weightLoss?: ImaResultValueDto | null;
|
|
8548
|
-
pitting?:
|
|
8549
|
-
result?:
|
|
8550
|
-
acceptable?:
|
|
8551
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8552
|
+
pitting?: ImaResultValueDto | null;
|
|
8553
|
+
result?: ImaResultValueDto | null;
|
|
8554
|
+
acceptable?: ImaResultValueDto | null;
|
|
8552
8555
|
}
|
|
8553
8556
|
export interface ImaFerriteResultDto {
|
|
8554
8557
|
heatNumber?: string | null;
|
|
@@ -8588,10 +8591,10 @@ export interface ImaDocumentTypesResultsDto {
|
|
|
8588
8591
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
8589
8592
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
8590
8593
|
chemicalAnalysisSection?: ImaOverrideChemicalAnalysisResultsDto[] | null;
|
|
8591
|
-
tensileTestSection?:
|
|
8592
|
-
hardnessTestSection?:
|
|
8593
|
-
impactTestSection?:
|
|
8594
|
-
corrosionTestSection?:
|
|
8594
|
+
tensileTestSection?: ImaOverrideTensileTestResultsDto[] | null;
|
|
8595
|
+
hardnessTestSection?: ImaOverrideHardnessTestResultsDto[] | null;
|
|
8596
|
+
impactTestSection?: ImaOverrideImpactTestResultsDto[] | null;
|
|
8597
|
+
corrosionTestSection?: ImaOverrideCorrosionTestResultsDto[] | null;
|
|
8595
8598
|
ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8596
8599
|
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
8597
8600
|
}
|
|
@@ -8693,6 +8696,54 @@ export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
|
|
|
8693
8696
|
v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8694
8697
|
ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8695
8698
|
}
|
|
8699
|
+
export interface ImaOverrideTensileTestResultsDto {
|
|
8700
|
+
heatNumber?: string | null;
|
|
8701
|
+
sampleReference?: string | null;
|
|
8702
|
+
orientation?: string | null;
|
|
8703
|
+
tensileStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8704
|
+
yieldTensileRatio?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8705
|
+
reductionOfArea?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8706
|
+
yieldStrengths?: ImaOverrideYieldStrengthResultDto[] | null;
|
|
8707
|
+
elongations?: ImaOverrideElongationResultDto[] | null;
|
|
8708
|
+
}
|
|
8709
|
+
export interface ImaOverrideYieldStrengthResultDto {
|
|
8710
|
+
labelVerbatim?: string | null;
|
|
8711
|
+
override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8712
|
+
}
|
|
8713
|
+
export interface ImaOverrideElongationResultDto {
|
|
8714
|
+
gauge?: string | null;
|
|
8715
|
+
override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8716
|
+
}
|
|
8717
|
+
export interface ImaOverrideHardnessTestResultsDto {
|
|
8718
|
+
heatNumber?: string | null;
|
|
8719
|
+
sampleReference?: string | null;
|
|
8720
|
+
orientation?: string | null;
|
|
8721
|
+
readings?: ImaOverrideHardnessReadingResultDto[] | null;
|
|
8722
|
+
}
|
|
8723
|
+
export interface ImaOverrideHardnessReadingResultDto {
|
|
8724
|
+
label?: string | null;
|
|
8725
|
+
override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8726
|
+
}
|
|
8727
|
+
export interface ImaOverrideImpactTestResultsDto {
|
|
8728
|
+
heatNumber?: string | null;
|
|
8729
|
+
sampleReference?: string | null;
|
|
8730
|
+
orientation?: string | null;
|
|
8731
|
+
reportedAverage?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8732
|
+
reportedMinimum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8733
|
+
individualValues?: ImaOverrideIndexedResultLineDto[] | null;
|
|
8734
|
+
}
|
|
8735
|
+
export interface ImaOverrideIndexedResultLineDto {
|
|
8736
|
+
index?: number;
|
|
8737
|
+
override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8738
|
+
}
|
|
8739
|
+
export interface ImaOverrideCorrosionTestResultsDto {
|
|
8740
|
+
heatNumber?: string | null;
|
|
8741
|
+
sampleReference?: string | null;
|
|
8742
|
+
weightLoss?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8743
|
+
pitting?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8744
|
+
result?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8745
|
+
acceptable?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8746
|
+
}
|
|
8696
8747
|
export interface ImaOverrideDocumentTypesResultsDto {
|
|
8697
8748
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8698
8749
|
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -8961,13 +9012,24 @@ export interface ImaChemistryCompositeSpecificationDto {
|
|
|
8961
9012
|
ce?: boolean | null;
|
|
8962
9013
|
}
|
|
8963
9014
|
export interface ImaMechanicalSpecificationDto {
|
|
9015
|
+
tensile?: ImaTensileSpecificationDto | null;
|
|
9016
|
+
hardness?: ImaHardnessSpecificationDto | null;
|
|
9017
|
+
impact?: ImaImpactSpecificationDto | null;
|
|
9018
|
+
}
|
|
9019
|
+
export interface ImaTensileSpecificationDto {
|
|
8964
9020
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8965
9021
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
9022
|
+
yieldTensileRatio?: ImaSpecificationLineDto | null;
|
|
8966
9023
|
elongation?: ImaSpecificationLineDto | null;
|
|
8967
9024
|
reductionOfArea?: ImaSpecificationLineDto | null;
|
|
8968
|
-
|
|
9025
|
+
}
|
|
9026
|
+
export interface ImaHardnessSpecificationDto {
|
|
8969
9027
|
hardness?: ImaSpecificationLineDto | null;
|
|
8970
9028
|
}
|
|
9029
|
+
export interface ImaImpactSpecificationDto {
|
|
9030
|
+
minimum?: ImaSpecificationLineDto | null;
|
|
9031
|
+
average?: ImaSpecificationLineDto | null;
|
|
9032
|
+
}
|
|
8971
9033
|
export interface ImaFerriteSpecificationDto {
|
|
8972
9034
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8973
9035
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -36928,6 +36928,7 @@ export interface ImaSpecificationResultLineDto {
|
|
|
36928
36928
|
specificationMin?: number | null;
|
|
36929
36929
|
specificationMax?: number | null;
|
|
36930
36930
|
readValue?: string | null;
|
|
36931
|
+
unit?: string | null;
|
|
36931
36932
|
status: ImaSpecificationResultLineStatusDto;
|
|
36932
36933
|
override?: ImaResultLineOverrideDto | null;
|
|
36933
36934
|
}
|
|
@@ -36958,31 +36959,29 @@ export interface ImaTensileTestResultDto {
|
|
|
36958
36959
|
sampleReference?: string | null;
|
|
36959
36960
|
orientation?: string | null;
|
|
36960
36961
|
testLocation?: string | null;
|
|
36961
|
-
temperature?:
|
|
36962
|
+
temperature?: number | null;
|
|
36963
|
+
temperatureUnit?: string | null;
|
|
36962
36964
|
roomTemperature?: boolean | null;
|
|
36963
36965
|
yieldStrengths: ImaYieldStrengthResultDto[];
|
|
36964
|
-
tensileStrength?:
|
|
36965
|
-
yieldTensileRatio?:
|
|
36966
|
+
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
36967
|
+
yieldTensileRatio?: ImaSpecificationResultLineDto | null;
|
|
36966
36968
|
elongations: ImaElongationResultDto[];
|
|
36967
|
-
reductionOfArea?:
|
|
36969
|
+
reductionOfArea?: ImaSpecificationResultLineDto | null;
|
|
36968
36970
|
testStandards: string[];
|
|
36969
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36970
|
-
}
|
|
36971
|
-
|
|
36972
|
-
export interface ImaResultValueDto {
|
|
36973
|
-
readValue?: string | null;
|
|
36974
|
-
unit?: string | null;
|
|
36975
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36976
36971
|
}
|
|
36977
36972
|
|
|
36978
36973
|
export interface ImaYieldStrengthResultDto {
|
|
36979
|
-
|
|
36980
|
-
|
|
36974
|
+
basis?: ImaYieldStrengthYieldBasisDto | null;
|
|
36975
|
+
strainPercent?: number | null;
|
|
36976
|
+
labelVerbatim?: string | null;
|
|
36977
|
+
result?: ImaSpecificationResultLineDto | null;
|
|
36981
36978
|
}
|
|
36982
36979
|
|
|
36980
|
+
export type ImaYieldStrengthYieldBasisDto = "ProofNonProportional" | "ProofTotalExtension" | "UpperYield" | "LowerYield" | "Unspecified";
|
|
36981
|
+
|
|
36983
36982
|
export interface ImaElongationResultDto {
|
|
36984
36983
|
gauge?: string | null;
|
|
36985
|
-
value?:
|
|
36984
|
+
value?: ImaSpecificationResultLineDto | null;
|
|
36986
36985
|
}
|
|
36987
36986
|
|
|
36988
36987
|
export interface ImaHardnessTestResultDto {
|
|
@@ -36992,13 +36991,12 @@ export interface ImaHardnessTestResultDto {
|
|
|
36992
36991
|
testLocation?: string | null;
|
|
36993
36992
|
readings: ImaHardnessReadingResultDto[];
|
|
36994
36993
|
testStandards: string[];
|
|
36995
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36996
36994
|
}
|
|
36997
36995
|
|
|
36998
36996
|
export interface ImaHardnessReadingResultDto {
|
|
36999
36997
|
label?: string | null;
|
|
37000
36998
|
scale?: string | null;
|
|
37001
|
-
|
|
36999
|
+
result?: ImaSpecificationResultLineDto | null;
|
|
37002
37000
|
}
|
|
37003
37001
|
|
|
37004
37002
|
export interface ImaImpactTestResultDto {
|
|
@@ -37006,15 +37004,21 @@ export interface ImaImpactTestResultDto {
|
|
|
37006
37004
|
sampleReference?: string | null;
|
|
37007
37005
|
orientation?: string | null;
|
|
37008
37006
|
testLocation?: string | null;
|
|
37009
|
-
temperature?:
|
|
37007
|
+
temperature?: number | null;
|
|
37008
|
+
temperatureUnit?: string | null;
|
|
37010
37009
|
roomTemperature?: boolean | null;
|
|
37011
37010
|
testLabel?: string | null;
|
|
37012
37011
|
notchType?: string | null;
|
|
37013
37012
|
specimenSize?: string | null;
|
|
37014
37013
|
individualValues: ImaResultValueDto[];
|
|
37015
|
-
reportedAverage?:
|
|
37016
|
-
reportedMinimum?:
|
|
37014
|
+
reportedAverage?: ImaSpecificationResultLineDto | null;
|
|
37015
|
+
reportedMinimum?: ImaSpecificationResultLineDto | null;
|
|
37017
37016
|
testStandards: string[];
|
|
37017
|
+
}
|
|
37018
|
+
|
|
37019
|
+
export interface ImaResultValueDto {
|
|
37020
|
+
readValue?: string | null;
|
|
37021
|
+
unit?: string | null;
|
|
37018
37022
|
override?: ImaResultLineOverrideDto | null;
|
|
37019
37023
|
}
|
|
37020
37024
|
|
|
@@ -37023,13 +37027,13 @@ export interface ImaCorrosionTestResultDto {
|
|
|
37023
37027
|
sampleReference?: string | null;
|
|
37024
37028
|
testLocation?: string | null;
|
|
37025
37029
|
testMethod?: string | null;
|
|
37026
|
-
|
|
37030
|
+
temperature?: number | null;
|
|
37031
|
+
temperatureUnit?: string | null;
|
|
37027
37032
|
roomTemperature?: boolean | null;
|
|
37028
37033
|
weightLoss?: ImaResultValueDto | null;
|
|
37029
|
-
pitting?:
|
|
37030
|
-
result?:
|
|
37031
|
-
acceptable?:
|
|
37032
|
-
override?: ImaResultLineOverrideDto | null;
|
|
37034
|
+
pitting?: ImaResultValueDto | null;
|
|
37035
|
+
result?: ImaResultValueDto | null;
|
|
37036
|
+
acceptable?: ImaResultValueDto | null;
|
|
37033
37037
|
}
|
|
37034
37038
|
|
|
37035
37039
|
export interface ImaFerriteResultDto {
|
|
@@ -37073,10 +37077,10 @@ export interface ImaDocumentTypesResultsDto {
|
|
|
37073
37077
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
37074
37078
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
37075
37079
|
chemicalAnalysisSection?: ImaOverrideChemicalAnalysisResultsDto[] | null;
|
|
37076
|
-
tensileTestSection?:
|
|
37077
|
-
hardnessTestSection?:
|
|
37078
|
-
impactTestSection?:
|
|
37079
|
-
corrosionTestSection?:
|
|
37080
|
+
tensileTestSection?: ImaOverrideTensileTestResultsDto[] | null;
|
|
37081
|
+
hardnessTestSection?: ImaOverrideHardnessTestResultsDto[] | null;
|
|
37082
|
+
impactTestSection?: ImaOverrideImpactTestResultsDto[] | null;
|
|
37083
|
+
corrosionTestSection?: ImaOverrideCorrosionTestResultsDto[] | null;
|
|
37080
37084
|
ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37081
37085
|
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
37082
37086
|
}
|
|
@@ -37190,6 +37194,62 @@ export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
|
|
|
37190
37194
|
ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37191
37195
|
}
|
|
37192
37196
|
|
|
37197
|
+
export interface ImaOverrideTensileTestResultsDto {
|
|
37198
|
+
heatNumber?: string | null;
|
|
37199
|
+
sampleReference?: string | null;
|
|
37200
|
+
orientation?: string | null;
|
|
37201
|
+
tensileStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37202
|
+
yieldTensileRatio?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37203
|
+
reductionOfArea?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37204
|
+
yieldStrengths?: ImaOverrideYieldStrengthResultDto[] | null;
|
|
37205
|
+
elongations?: ImaOverrideElongationResultDto[] | null;
|
|
37206
|
+
}
|
|
37207
|
+
|
|
37208
|
+
export interface ImaOverrideYieldStrengthResultDto {
|
|
37209
|
+
labelVerbatim?: string | null;
|
|
37210
|
+
override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37211
|
+
}
|
|
37212
|
+
|
|
37213
|
+
export interface ImaOverrideElongationResultDto {
|
|
37214
|
+
gauge?: string | null;
|
|
37215
|
+
override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37216
|
+
}
|
|
37217
|
+
|
|
37218
|
+
export interface ImaOverrideHardnessTestResultsDto {
|
|
37219
|
+
heatNumber?: string | null;
|
|
37220
|
+
sampleReference?: string | null;
|
|
37221
|
+
orientation?: string | null;
|
|
37222
|
+
readings?: ImaOverrideHardnessReadingResultDto[] | null;
|
|
37223
|
+
}
|
|
37224
|
+
|
|
37225
|
+
export interface ImaOverrideHardnessReadingResultDto {
|
|
37226
|
+
label?: string | null;
|
|
37227
|
+
override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37228
|
+
}
|
|
37229
|
+
|
|
37230
|
+
export interface ImaOverrideImpactTestResultsDto {
|
|
37231
|
+
heatNumber?: string | null;
|
|
37232
|
+
sampleReference?: string | null;
|
|
37233
|
+
orientation?: string | null;
|
|
37234
|
+
reportedAverage?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37235
|
+
reportedMinimum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37236
|
+
individualValues?: ImaOverrideIndexedResultLineDto[] | null;
|
|
37237
|
+
}
|
|
37238
|
+
|
|
37239
|
+
export interface ImaOverrideIndexedResultLineDto {
|
|
37240
|
+
index?: number;
|
|
37241
|
+
override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37242
|
+
}
|
|
37243
|
+
|
|
37244
|
+
export interface ImaOverrideCorrosionTestResultsDto {
|
|
37245
|
+
heatNumber?: string | null;
|
|
37246
|
+
sampleReference?: string | null;
|
|
37247
|
+
weightLoss?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37248
|
+
pitting?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37249
|
+
result?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37250
|
+
acceptable?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37251
|
+
}
|
|
37252
|
+
|
|
37193
37253
|
export interface ImaOverrideDocumentTypesResultsDto {
|
|
37194
37254
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37195
37255
|
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -37485,14 +37545,28 @@ export interface ImaChemistryCompositeSpecificationDto {
|
|
|
37485
37545
|
}
|
|
37486
37546
|
|
|
37487
37547
|
export interface ImaMechanicalSpecificationDto {
|
|
37548
|
+
tensile?: ImaTensileSpecificationDto | null;
|
|
37549
|
+
hardness?: ImaHardnessSpecificationDto | null;
|
|
37550
|
+
impact?: ImaImpactSpecificationDto | null;
|
|
37551
|
+
}
|
|
37552
|
+
|
|
37553
|
+
export interface ImaTensileSpecificationDto {
|
|
37488
37554
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
37489
37555
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
37556
|
+
yieldTensileRatio?: ImaSpecificationLineDto | null;
|
|
37490
37557
|
elongation?: ImaSpecificationLineDto | null;
|
|
37491
37558
|
reductionOfArea?: ImaSpecificationLineDto | null;
|
|
37492
|
-
|
|
37559
|
+
}
|
|
37560
|
+
|
|
37561
|
+
export interface ImaHardnessSpecificationDto {
|
|
37493
37562
|
hardness?: ImaSpecificationLineDto | null;
|
|
37494
37563
|
}
|
|
37495
37564
|
|
|
37565
|
+
export interface ImaImpactSpecificationDto {
|
|
37566
|
+
minimum?: ImaSpecificationLineDto | null;
|
|
37567
|
+
average?: ImaSpecificationLineDto | null;
|
|
37568
|
+
}
|
|
37569
|
+
|
|
37496
37570
|
export interface ImaFerriteSpecificationDto {
|
|
37497
37571
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
37498
37572
|
}
|