@ignos/api-client 20260727.195.1-alpha → 20260727.196.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 +184 -126
- package/package.json +1 -1
- package/src/ignosportal-api.ts +198 -135
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -7983,7 +7983,6 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
7983
7983
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
7984
7984
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
7985
7985
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
7986
|
-
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
7987
7986
|
}
|
|
7988
7987
|
export interface ImaCdfEntityReadBase {
|
|
7989
7988
|
}
|
|
@@ -7991,6 +7990,7 @@ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEnt
|
|
|
7991
7990
|
manufacturer?: boolean;
|
|
7992
7991
|
address?: boolean;
|
|
7993
7992
|
contact?: boolean;
|
|
7993
|
+
steelPlant?: boolean;
|
|
7994
7994
|
}
|
|
7995
7995
|
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
7996
7996
|
certifiedBy?: boolean;
|
|
@@ -8009,6 +8009,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
|
|
|
8009
8009
|
stamp?: boolean;
|
|
8010
8010
|
}
|
|
8011
8011
|
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
8012
|
+
certificateType?: boolean;
|
|
8012
8013
|
certificateOfCompliance?: boolean;
|
|
8013
8014
|
inspectionCertificate?: boolean;
|
|
8014
8015
|
}
|
|
@@ -8020,32 +8021,20 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
|
|
|
8020
8021
|
dimensionsOrWeight?: boolean;
|
|
8021
8022
|
batchNumber?: boolean;
|
|
8022
8023
|
heatNumber?: boolean;
|
|
8023
|
-
|
|
8024
|
+
relevantStandard?: boolean;
|
|
8025
|
+
steelMaking?: boolean;
|
|
8024
8026
|
}
|
|
8025
8027
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
8026
8028
|
usedStandards?: boolean;
|
|
8027
8029
|
}
|
|
8028
8030
|
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
8029
|
-
|
|
8030
|
-
|
|
8031
|
+
tensileTests?: boolean;
|
|
8032
|
+
hardnessTests?: boolean;
|
|
8031
8033
|
impactTests?: boolean;
|
|
8034
|
+
chemicalAnalysis?: boolean;
|
|
8032
8035
|
corrosionTests?: boolean;
|
|
8033
8036
|
ferriteContentAndMicrostructure?: boolean;
|
|
8034
8037
|
}
|
|
8035
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
|
|
8036
|
-
heatTreatmentCertificate?: boolean;
|
|
8037
|
-
ultrasonicControlCertificate?: boolean;
|
|
8038
|
-
liquidPenetrantCertificate?: boolean;
|
|
8039
|
-
testReport?: boolean;
|
|
8040
|
-
dimensionalReport?: boolean;
|
|
8041
|
-
dyePenetrantReport?: boolean;
|
|
8042
|
-
visualReport?: boolean;
|
|
8043
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
8044
|
-
certificateOfTest?: boolean;
|
|
8045
|
-
technicalReport?: boolean;
|
|
8046
|
-
microExaminationReport?: boolean;
|
|
8047
|
-
radiologicalReport?: boolean;
|
|
8048
|
-
}
|
|
8049
8038
|
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
8050
8039
|
name: string;
|
|
8051
8040
|
revision: string;
|
|
@@ -8066,12 +8055,12 @@ export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
|
8066
8055
|
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
8067
8056
|
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
8068
8057
|
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
8069
|
-
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
8070
8058
|
}
|
|
8071
8059
|
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
8072
8060
|
manufacturer?: boolean | null;
|
|
8073
8061
|
address?: boolean | null;
|
|
8074
8062
|
contact?: boolean | null;
|
|
8063
|
+
steelPlant?: boolean | null;
|
|
8075
8064
|
}
|
|
8076
8065
|
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
8077
8066
|
certifiedBy?: boolean | null;
|
|
@@ -8090,6 +8079,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
|
8090
8079
|
stamp?: boolean | null;
|
|
8091
8080
|
}
|
|
8092
8081
|
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
8082
|
+
certificateType?: boolean | null;
|
|
8093
8083
|
certificateOfCompliance?: boolean | null;
|
|
8094
8084
|
inspectionCertificate?: boolean | null;
|
|
8095
8085
|
}
|
|
@@ -8101,32 +8091,20 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateD
|
|
|
8101
8091
|
dimensionsOrWeight?: boolean | null;
|
|
8102
8092
|
batchNumber?: boolean | null;
|
|
8103
8093
|
heatNumber?: boolean | null;
|
|
8104
|
-
|
|
8094
|
+
relevantStandard?: boolean | null;
|
|
8095
|
+
steelMaking?: boolean | null;
|
|
8105
8096
|
}
|
|
8106
8097
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
8107
8098
|
usedStandards?: boolean | null;
|
|
8108
8099
|
}
|
|
8109
8100
|
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
8110
|
-
|
|
8111
|
-
|
|
8101
|
+
tensileTests?: boolean | null;
|
|
8102
|
+
hardnessTests?: boolean | null;
|
|
8112
8103
|
impactTests?: boolean | null;
|
|
8104
|
+
chemicalAnalysis?: boolean | null;
|
|
8113
8105
|
corrosionTests?: boolean | null;
|
|
8114
8106
|
ferriteContentAndMicrostructure?: boolean | null;
|
|
8115
8107
|
}
|
|
8116
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
8117
|
-
heatTreatmentCertificate?: boolean | null;
|
|
8118
|
-
ultrasonicControlCertificate?: boolean | null;
|
|
8119
|
-
liquidPenetrantCertificate?: boolean | null;
|
|
8120
|
-
testReport?: boolean | null;
|
|
8121
|
-
dimensionalReport?: boolean | null;
|
|
8122
|
-
dyePenetrantReport?: boolean | null;
|
|
8123
|
-
visualReport?: boolean | null;
|
|
8124
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
8125
|
-
certificateOfTest?: boolean | null;
|
|
8126
|
-
technicalReport?: boolean | null;
|
|
8127
|
-
microExaminationReport?: boolean | null;
|
|
8128
|
-
radiologicalReport?: boolean | null;
|
|
8129
|
-
}
|
|
8130
8108
|
export interface ImaCertificateTypeLiteDto {
|
|
8131
8109
|
certificateTypeId: string;
|
|
8132
8110
|
version: number;
|
|
@@ -8197,13 +8175,12 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
|
8197
8175
|
certification: ImaCertificateTypeCertificationResultsDto;
|
|
8198
8176
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
8199
8177
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
8200
|
-
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
8201
|
-
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
8202
8178
|
}
|
|
8203
8179
|
export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
|
|
8204
8180
|
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
8205
8181
|
address?: ImaCertificateTypeResultLine | null;
|
|
8206
8182
|
contact?: ImaCertificateTypeResultLine | null;
|
|
8183
|
+
steelPlant?: ImaCertificateTypeResultLine | null;
|
|
8207
8184
|
}
|
|
8208
8185
|
export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
|
|
8209
8186
|
found?: boolean;
|
|
@@ -8235,9 +8212,18 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
|
|
|
8235
8212
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
8236
8213
|
}
|
|
8237
8214
|
export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
|
|
8238
|
-
|
|
8215
|
+
certificateType?: ImaCertificateTypeResultLine | null;
|
|
8216
|
+
certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
|
|
8239
8217
|
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
8240
8218
|
}
|
|
8219
|
+
export interface ImaSupplementaryCheckResultDto extends ImaCdfEntityReadBase {
|
|
8220
|
+
status?: string | null;
|
|
8221
|
+
documentId?: string | null;
|
|
8222
|
+
acceptable?: boolean | null;
|
|
8223
|
+
standards: string[];
|
|
8224
|
+
summary?: string | null;
|
|
8225
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8226
|
+
}
|
|
8241
8227
|
export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
|
|
8242
8228
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
8243
8229
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
@@ -8246,37 +8232,29 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
8246
8232
|
dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
|
|
8247
8233
|
batchNumber?: ImaCertificateTypeResultLine | null;
|
|
8248
8234
|
heatNumber?: ImaCertificateTypeResultLine | null;
|
|
8249
|
-
|
|
8235
|
+
relevantStandard?: ImaCertificateTypeResultLine | null;
|
|
8236
|
+
steelMaking: ImaSteelMakingResultDto;
|
|
8237
|
+
}
|
|
8238
|
+
export interface ImaSteelMakingResultDto extends ImaCdfEntityReadBase {
|
|
8239
|
+
raw?: string[] | null;
|
|
8240
|
+
chain?: string[] | null;
|
|
8241
|
+
unmatched?: string[] | null;
|
|
8250
8242
|
}
|
|
8251
8243
|
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
|
|
8252
8244
|
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
8253
8245
|
}
|
|
8254
|
-
export interface ImaCertificateTypeTestResultsResultsDto extends ImaCdfEntityReadBase {
|
|
8255
|
-
mechanicalProperties?: ImaCertificateTypeResultLine | null;
|
|
8256
|
-
chemicalAnalysis?: ImaCertificateTypeResultLine | null;
|
|
8257
|
-
impactTests?: ImaCertificateTypeResultLine | null;
|
|
8258
|
-
corrosionTests?: ImaCertificateTypeResultLine | null;
|
|
8259
|
-
ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
|
|
8260
|
-
}
|
|
8261
|
-
export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityReadBase {
|
|
8262
|
-
heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
|
|
8263
|
-
ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
|
|
8264
|
-
liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
|
|
8265
|
-
testReport?: ImaCertificateTypeResultLine | null;
|
|
8266
|
-
dimensionalReport?: ImaCertificateTypeResultLine | null;
|
|
8267
|
-
dyePenetrantReport?: ImaCertificateTypeResultLine | null;
|
|
8268
|
-
visualReport?: ImaCertificateTypeResultLine | null;
|
|
8269
|
-
certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
|
|
8270
|
-
certificateOfTest?: ImaCertificateTypeResultLine | null;
|
|
8271
|
-
technicalReport?: ImaCertificateTypeResultLine | null;
|
|
8272
|
-
microExaminationReport?: ImaCertificateTypeResultLine | null;
|
|
8273
|
-
radiologicalReport?: ImaCertificateTypeResultLine | null;
|
|
8274
|
-
}
|
|
8275
8246
|
export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
8276
8247
|
chemistry: ImaSpecificationChemistryResultsDto;
|
|
8277
8248
|
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
8278
8249
|
ferrite: ImaSpecificationFerriteResultsDto;
|
|
8279
|
-
|
|
8250
|
+
chemicalAnalysis: ImaChemicalAnalysisResultDto[];
|
|
8251
|
+
tensileTests: ImaTensileTestResultDto[];
|
|
8252
|
+
hardnessTests: ImaHardnessTestResultDto[];
|
|
8253
|
+
impactTests: ImaImpactTestResultDto[];
|
|
8254
|
+
corrosionTests: ImaCorrosionTestResultDto[];
|
|
8255
|
+
ferriteContentAndMicrostructure: ImaFerriteResultDto[];
|
|
8256
|
+
heatTreatments: ImaHeatTreatmentResultDto[];
|
|
8257
|
+
documentTypes: ImaDocumentTypesResultsDto;
|
|
8280
8258
|
}
|
|
8281
8259
|
export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
|
|
8282
8260
|
carbon?: ImaSpecificationResultLineDto | null;
|
|
@@ -8319,27 +8297,132 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
|
|
|
8319
8297
|
override?: ImaResultLineOverrideDto | null;
|
|
8320
8298
|
measurementMethod?: string | null;
|
|
8321
8299
|
}
|
|
8322
|
-
export interface
|
|
8323
|
-
|
|
8324
|
-
|
|
8325
|
-
|
|
8300
|
+
export interface ImaChemicalAnalysisResultDto extends ImaCdfEntityReadBase {
|
|
8301
|
+
sampleReference?: string | null;
|
|
8302
|
+
analysisType?: string | null;
|
|
8303
|
+
elements: ImaChemicalElementResultDto[];
|
|
8304
|
+
indices: ImaChemicalIndexResultDto[];
|
|
8305
|
+
testStandards: string[];
|
|
8306
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8307
|
+
}
|
|
8308
|
+
export interface ImaChemicalElementResultDto extends ImaCdfEntityReadBase {
|
|
8309
|
+
symbol?: string | null;
|
|
8310
|
+
value?: ImaResultValueDto | null;
|
|
8311
|
+
}
|
|
8312
|
+
export interface ImaResultValueDto extends ImaCdfEntityReadBase {
|
|
8313
|
+
readValue?: string | null;
|
|
8314
|
+
value?: number | null;
|
|
8315
|
+
unit?: string | null;
|
|
8316
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8326
8317
|
}
|
|
8327
|
-
export interface
|
|
8328
|
-
|
|
8329
|
-
|
|
8330
|
-
duration?: ImaSpecificationResultLineDto | null;
|
|
8318
|
+
export interface ImaChemicalIndexResultDto extends ImaCdfEntityReadBase {
|
|
8319
|
+
name?: string | null;
|
|
8320
|
+
value?: number | null;
|
|
8331
8321
|
}
|
|
8332
|
-
export interface
|
|
8333
|
-
|
|
8334
|
-
|
|
8335
|
-
|
|
8322
|
+
export interface ImaTensileTestResultDto extends ImaCdfEntityReadBase {
|
|
8323
|
+
sampleReference?: string | null;
|
|
8324
|
+
orientation?: string | null;
|
|
8325
|
+
testLocation?: string | null;
|
|
8326
|
+
temperature?: ImaResultValueDto | null;
|
|
8327
|
+
roomTemperature?: boolean | null;
|
|
8328
|
+
yieldStrengths: ImaYieldStrengthResultDto[];
|
|
8329
|
+
tensileStrength?: ImaResultValueDto | null;
|
|
8330
|
+
yieldTensileRatio?: number | null;
|
|
8331
|
+
elongations: ImaElongationResultDto[];
|
|
8332
|
+
reductionOfArea?: ImaResultValueDto | null;
|
|
8333
|
+
testStandards: string[];
|
|
8334
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8335
|
+
}
|
|
8336
|
+
export interface ImaYieldStrengthResultDto extends ImaCdfEntityReadBase {
|
|
8337
|
+
label?: string | null;
|
|
8338
|
+
value?: ImaResultValueDto | null;
|
|
8339
|
+
}
|
|
8340
|
+
export interface ImaElongationResultDto extends ImaCdfEntityReadBase {
|
|
8341
|
+
gauge?: string | null;
|
|
8342
|
+
value?: ImaResultValueDto | null;
|
|
8343
|
+
}
|
|
8344
|
+
export interface ImaHardnessTestResultDto extends ImaCdfEntityReadBase {
|
|
8345
|
+
sampleReference?: string | null;
|
|
8346
|
+
orientation?: string | null;
|
|
8347
|
+
testLocation?: string | null;
|
|
8348
|
+
readings: ImaHardnessReadingResultDto[];
|
|
8349
|
+
testStandards: string[];
|
|
8350
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8351
|
+
}
|
|
8352
|
+
export interface ImaHardnessReadingResultDto extends ImaCdfEntityReadBase {
|
|
8353
|
+
label?: string | null;
|
|
8354
|
+
scale?: string | null;
|
|
8355
|
+
value?: number | null;
|
|
8356
|
+
}
|
|
8357
|
+
export interface ImaImpactTestResultDto extends ImaCdfEntityReadBase {
|
|
8358
|
+
sampleReference?: string | null;
|
|
8359
|
+
orientation?: string | null;
|
|
8360
|
+
testLocation?: string | null;
|
|
8361
|
+
temperature?: ImaResultValueDto | null;
|
|
8362
|
+
roomTemperature?: boolean | null;
|
|
8363
|
+
testLabel?: string | null;
|
|
8364
|
+
notchType?: string | null;
|
|
8365
|
+
specimenSize?: string | null;
|
|
8366
|
+
individualValues: ImaResultValueDto[];
|
|
8367
|
+
reportedAverage?: ImaResultValueDto | null;
|
|
8368
|
+
reportedMinimum?: ImaResultValueDto | null;
|
|
8369
|
+
testStandards: string[];
|
|
8370
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8371
|
+
}
|
|
8372
|
+
export interface ImaCorrosionTestResultDto extends ImaCdfEntityReadBase {
|
|
8373
|
+
sampleReference?: string | null;
|
|
8374
|
+
testLocation?: string | null;
|
|
8375
|
+
testMethod?: string | null;
|
|
8376
|
+
testTemperature?: ImaResultValueDto | null;
|
|
8377
|
+
roomTemperature?: boolean | null;
|
|
8378
|
+
weightLoss?: ImaResultValueDto | null;
|
|
8379
|
+
pitting?: boolean | null;
|
|
8380
|
+
result?: string | null;
|
|
8381
|
+
acceptable?: boolean | null;
|
|
8382
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8383
|
+
}
|
|
8384
|
+
export interface ImaFerriteResultDto extends ImaCdfEntityReadBase {
|
|
8385
|
+
sampleReference?: string | null;
|
|
8386
|
+
testLocation?: string | null;
|
|
8387
|
+
ferrite?: ImaResultValueDto | null;
|
|
8388
|
+
ferriteTolerance?: number | null;
|
|
8389
|
+
reportedRange?: string | null;
|
|
8390
|
+
intermetallicPhases?: boolean | null;
|
|
8391
|
+
grainSize?: string | null;
|
|
8392
|
+
testStandards: string[];
|
|
8393
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8394
|
+
}
|
|
8395
|
+
export interface ImaHeatTreatmentResultDto extends ImaCdfEntityReadBase {
|
|
8396
|
+
stepType?: string | null;
|
|
8397
|
+
treatmentName?: string | null;
|
|
8398
|
+
temperature?: ImaResultValueDto | null;
|
|
8399
|
+
temperatureMin?: number | null;
|
|
8400
|
+
temperatureMax?: number | null;
|
|
8401
|
+
soakTime?: ImaResultValueDto | null;
|
|
8402
|
+
soakRate?: string | null;
|
|
8403
|
+
coolingMedium?: string | null;
|
|
8404
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8405
|
+
}
|
|
8406
|
+
export interface ImaDocumentTypesResultsDto extends ImaCdfEntityReadBase {
|
|
8407
|
+
ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
8408
|
+
radiologicalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8409
|
+
liquidPenetrantCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
8410
|
+
magneticParticle?: ImaSupplementaryCheckResultDto | null;
|
|
8411
|
+
pmi?: ImaSupplementaryCheckResultDto | null;
|
|
8412
|
+
hydrostatic?: ImaSupplementaryCheckResultDto | null;
|
|
8413
|
+
visualReport?: ImaSupplementaryCheckResultDto | null;
|
|
8414
|
+
dimensionalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8415
|
+
microExaminationReport?: ImaSupplementaryCheckResultDto | null;
|
|
8336
8416
|
}
|
|
8337
8417
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
8338
8418
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
8339
|
-
|
|
8340
|
-
|
|
8341
|
-
|
|
8342
|
-
|
|
8419
|
+
chemicalAnalysisSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8420
|
+
tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8421
|
+
hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8422
|
+
impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8423
|
+
corrosionTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8424
|
+
ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8425
|
+
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
8343
8426
|
}
|
|
8344
8427
|
export interface ImaOverrideCertificateTypeResultsDto {
|
|
8345
8428
|
manufacturer?: ImaOverrideCertificateTypeManufacturerResultsDto | null;
|
|
@@ -8348,13 +8431,12 @@ export interface ImaOverrideCertificateTypeResultsDto {
|
|
|
8348
8431
|
certification?: ImaOverrideCertificateTypeCertificationResultsDto | null;
|
|
8349
8432
|
productAndOrderInformation?: ImaOverrideCertificateTypeProductAndOrderInformationResultsDto | null;
|
|
8350
8433
|
testMethodsAndReferences?: ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto | null;
|
|
8351
|
-
testResults?: ImaOverrideCertificateTypeTestResultsResultsDto | null;
|
|
8352
|
-
documentTypes?: ImaOverrideCertificateTypeDocumentTypesResultsDto | null;
|
|
8353
8434
|
}
|
|
8354
8435
|
export interface ImaOverrideCertificateTypeManufacturerResultsDto {
|
|
8355
8436
|
manufacturer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8356
8437
|
address?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8357
8438
|
contact?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8439
|
+
steelPlant?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8358
8440
|
}
|
|
8359
8441
|
export interface ImaOverrideUpdateMaterialCheckResultLineDto {
|
|
8360
8442
|
approved?: boolean | null;
|
|
@@ -8377,6 +8459,7 @@ export interface ImaOverrideCertificateTypeThirdPartyResultsDto {
|
|
|
8377
8459
|
stamp?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8378
8460
|
}
|
|
8379
8461
|
export interface ImaOverrideCertificateTypeCertificationResultsDto {
|
|
8462
|
+
certificateType?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8380
8463
|
certificateOfCompliance?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8381
8464
|
inspectionCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8382
8465
|
}
|
|
@@ -8388,59 +8471,21 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
|
|
|
8388
8471
|
dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8389
8472
|
batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8390
8473
|
heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8391
|
-
|
|
8474
|
+
relevantStandard?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8392
8475
|
}
|
|
8393
8476
|
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8394
8477
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8395
8478
|
}
|
|
8396
|
-
export interface
|
|
8397
|
-
mechanicalProperties?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8398
|
-
chemicalAnalysis?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8399
|
-
impactTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8400
|
-
corrosionTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8401
|
-
ferriteContentAndMicrostructure?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8402
|
-
}
|
|
8403
|
-
export interface ImaOverrideCertificateTypeDocumentTypesResultsDto {
|
|
8404
|
-
heatTreatmentCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8479
|
+
export interface ImaOverrideDocumentTypesResultsDto {
|
|
8405
8480
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8481
|
+
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8406
8482
|
liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8407
|
-
|
|
8408
|
-
|
|
8409
|
-
|
|
8483
|
+
magneticParticle?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8484
|
+
pmi?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8485
|
+
hydrostatic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8410
8486
|
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8411
|
-
|
|
8412
|
-
certificateOfTest?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8413
|
-
technicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8487
|
+
dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8414
8488
|
microExaminationReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8415
|
-
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8416
|
-
}
|
|
8417
|
-
export interface ImaOverrideSpecificationChemistryResultsDto {
|
|
8418
|
-
carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8419
|
-
manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8420
|
-
silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8421
|
-
phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8422
|
-
sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8423
|
-
chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8424
|
-
nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8425
|
-
molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8426
|
-
copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8427
|
-
nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8428
|
-
wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8429
|
-
iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8430
|
-
}
|
|
8431
|
-
export interface ImaOverrideSpecificationMechanicalResultsDto {
|
|
8432
|
-
yieldStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8433
|
-
tensileStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8434
|
-
elongation?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8435
|
-
reductionOfArea?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8436
|
-
impactEnergy?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8437
|
-
hardness?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8438
|
-
}
|
|
8439
|
-
export interface ImaOverrideSpecificationFerriteResultsDto {
|
|
8440
|
-
ferriteContent?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8441
|
-
}
|
|
8442
|
-
export interface ImaOverrideSpecificationHeatTreatmentResultsDto {
|
|
8443
|
-
heatTreatmentOverrides?: ImaOverrideUpdateMaterialCheckResultLineDto[] | null;
|
|
8444
8489
|
}
|
|
8445
8490
|
export interface ImaUpdateMaterialCheckMetadataRequestDto {
|
|
8446
8491
|
customerOrder?: string;
|
|
@@ -8494,7 +8539,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8494
8539
|
}
|
|
8495
8540
|
export interface ImaMaterialChecksPageRequestDto {
|
|
8496
8541
|
pageSize?: number | null;
|
|
8497
|
-
orderBy?: ImaMaterialChecksPageOrderRequestDto
|
|
8542
|
+
orderBy?: ImaMaterialChecksPageOrderRequestDto | null;
|
|
8498
8543
|
searchQuery?: string | null;
|
|
8499
8544
|
fileNameFilter?: string | null;
|
|
8500
8545
|
specificationFilter?: string | null;
|
|
@@ -8647,6 +8692,7 @@ export interface ImaSpecificationDto {
|
|
|
8647
8692
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
8648
8693
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
8649
8694
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
8695
|
+
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
8650
8696
|
heatTreatmentSpecifications: ImaHeatTreatmentSpecificationDto[];
|
|
8651
8697
|
}
|
|
8652
8698
|
export interface ImaSpecificationVersionDto {
|
|
@@ -8682,6 +8728,17 @@ export interface ImaMechanicalSpecificationDto {
|
|
|
8682
8728
|
export interface ImaFerriteSpecificationDto {
|
|
8683
8729
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8684
8730
|
}
|
|
8731
|
+
export interface ImaDocumentTypesSpecificationDto {
|
|
8732
|
+
ultrasonicControlCertificate?: boolean;
|
|
8733
|
+
radiologicalReport?: boolean;
|
|
8734
|
+
liquidPenetrantCertificate?: boolean;
|
|
8735
|
+
magneticParticle?: boolean;
|
|
8736
|
+
pmi?: boolean;
|
|
8737
|
+
hydrostatic?: boolean;
|
|
8738
|
+
visualReport?: boolean;
|
|
8739
|
+
dimensionalReport?: boolean;
|
|
8740
|
+
microExaminationReport?: boolean;
|
|
8741
|
+
}
|
|
8685
8742
|
export interface ImaHeatTreatmentSpecificationDto {
|
|
8686
8743
|
step: number;
|
|
8687
8744
|
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
@@ -8721,6 +8778,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8721
8778
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
8722
8779
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
8723
8780
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8781
|
+
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|
|
8724
8782
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
8725
8783
|
}
|
|
8726
8784
|
export interface ImaSpecificationLiteDto {
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -35940,7 +35940,6 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
35940
35940
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
35941
35941
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
35942
35942
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
35943
|
-
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
35944
35943
|
}
|
|
35945
35944
|
|
|
35946
35945
|
export interface ImaCdfEntityReadBase {
|
|
@@ -35950,6 +35949,7 @@ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEnt
|
|
|
35950
35949
|
manufacturer?: boolean;
|
|
35951
35950
|
address?: boolean;
|
|
35952
35951
|
contact?: boolean;
|
|
35952
|
+
steelPlant?: boolean;
|
|
35953
35953
|
}
|
|
35954
35954
|
|
|
35955
35955
|
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
@@ -35971,6 +35971,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
|
|
|
35971
35971
|
}
|
|
35972
35972
|
|
|
35973
35973
|
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
35974
|
+
certificateType?: boolean;
|
|
35974
35975
|
certificateOfCompliance?: boolean;
|
|
35975
35976
|
inspectionCertificate?: boolean;
|
|
35976
35977
|
}
|
|
@@ -35983,7 +35984,8 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
|
|
|
35983
35984
|
dimensionsOrWeight?: boolean;
|
|
35984
35985
|
batchNumber?: boolean;
|
|
35985
35986
|
heatNumber?: boolean;
|
|
35986
|
-
|
|
35987
|
+
relevantStandard?: boolean;
|
|
35988
|
+
steelMaking?: boolean;
|
|
35987
35989
|
}
|
|
35988
35990
|
|
|
35989
35991
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
@@ -35991,28 +35993,14 @@ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto exten
|
|
|
35991
35993
|
}
|
|
35992
35994
|
|
|
35993
35995
|
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
35994
|
-
|
|
35995
|
-
|
|
35996
|
+
tensileTests?: boolean;
|
|
35997
|
+
hardnessTests?: boolean;
|
|
35996
35998
|
impactTests?: boolean;
|
|
35999
|
+
chemicalAnalysis?: boolean;
|
|
35997
36000
|
corrosionTests?: boolean;
|
|
35998
36001
|
ferriteContentAndMicrostructure?: boolean;
|
|
35999
36002
|
}
|
|
36000
36003
|
|
|
36001
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
|
|
36002
|
-
heatTreatmentCertificate?: boolean;
|
|
36003
|
-
ultrasonicControlCertificate?: boolean;
|
|
36004
|
-
liquidPenetrantCertificate?: boolean;
|
|
36005
|
-
testReport?: boolean;
|
|
36006
|
-
dimensionalReport?: boolean;
|
|
36007
|
-
dyePenetrantReport?: boolean;
|
|
36008
|
-
visualReport?: boolean;
|
|
36009
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
36010
|
-
certificateOfTest?: boolean;
|
|
36011
|
-
technicalReport?: boolean;
|
|
36012
|
-
microExaminationReport?: boolean;
|
|
36013
|
-
radiologicalReport?: boolean;
|
|
36014
|
-
}
|
|
36015
|
-
|
|
36016
36004
|
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
36017
36005
|
name: string;
|
|
36018
36006
|
revision: string;
|
|
@@ -36035,13 +36023,13 @@ export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
|
36035
36023
|
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
36036
36024
|
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
36037
36025
|
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
36038
|
-
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
36039
36026
|
}
|
|
36040
36027
|
|
|
36041
36028
|
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
36042
36029
|
manufacturer?: boolean | null;
|
|
36043
36030
|
address?: boolean | null;
|
|
36044
36031
|
contact?: boolean | null;
|
|
36032
|
+
steelPlant?: boolean | null;
|
|
36045
36033
|
}
|
|
36046
36034
|
|
|
36047
36035
|
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
@@ -36063,6 +36051,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
|
36063
36051
|
}
|
|
36064
36052
|
|
|
36065
36053
|
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
36054
|
+
certificateType?: boolean | null;
|
|
36066
36055
|
certificateOfCompliance?: boolean | null;
|
|
36067
36056
|
inspectionCertificate?: boolean | null;
|
|
36068
36057
|
}
|
|
@@ -36075,7 +36064,8 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateD
|
|
|
36075
36064
|
dimensionsOrWeight?: boolean | null;
|
|
36076
36065
|
batchNumber?: boolean | null;
|
|
36077
36066
|
heatNumber?: boolean | null;
|
|
36078
|
-
|
|
36067
|
+
relevantStandard?: boolean | null;
|
|
36068
|
+
steelMaking?: boolean | null;
|
|
36079
36069
|
}
|
|
36080
36070
|
|
|
36081
36071
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
@@ -36083,28 +36073,14 @@ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto
|
|
|
36083
36073
|
}
|
|
36084
36074
|
|
|
36085
36075
|
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
36086
|
-
|
|
36087
|
-
|
|
36076
|
+
tensileTests?: boolean | null;
|
|
36077
|
+
hardnessTests?: boolean | null;
|
|
36088
36078
|
impactTests?: boolean | null;
|
|
36079
|
+
chemicalAnalysis?: boolean | null;
|
|
36089
36080
|
corrosionTests?: boolean | null;
|
|
36090
36081
|
ferriteContentAndMicrostructure?: boolean | null;
|
|
36091
36082
|
}
|
|
36092
36083
|
|
|
36093
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
36094
|
-
heatTreatmentCertificate?: boolean | null;
|
|
36095
|
-
ultrasonicControlCertificate?: boolean | null;
|
|
36096
|
-
liquidPenetrantCertificate?: boolean | null;
|
|
36097
|
-
testReport?: boolean | null;
|
|
36098
|
-
dimensionalReport?: boolean | null;
|
|
36099
|
-
dyePenetrantReport?: boolean | null;
|
|
36100
|
-
visualReport?: boolean | null;
|
|
36101
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
36102
|
-
certificateOfTest?: boolean | null;
|
|
36103
|
-
technicalReport?: boolean | null;
|
|
36104
|
-
microExaminationReport?: boolean | null;
|
|
36105
|
-
radiologicalReport?: boolean | null;
|
|
36106
|
-
}
|
|
36107
|
-
|
|
36108
36084
|
export interface ImaCertificateTypeLiteDto {
|
|
36109
36085
|
certificateTypeId: string;
|
|
36110
36086
|
version: number;
|
|
@@ -36179,14 +36155,13 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
|
36179
36155
|
certification: ImaCertificateTypeCertificationResultsDto;
|
|
36180
36156
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
36181
36157
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
36182
|
-
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
36183
|
-
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
36184
36158
|
}
|
|
36185
36159
|
|
|
36186
36160
|
export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
|
|
36187
36161
|
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
36188
36162
|
address?: ImaCertificateTypeResultLine | null;
|
|
36189
36163
|
contact?: ImaCertificateTypeResultLine | null;
|
|
36164
|
+
steelPlant?: ImaCertificateTypeResultLine | null;
|
|
36190
36165
|
}
|
|
36191
36166
|
|
|
36192
36167
|
export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
|
|
@@ -36223,10 +36198,20 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
|
|
|
36223
36198
|
}
|
|
36224
36199
|
|
|
36225
36200
|
export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
|
|
36226
|
-
|
|
36201
|
+
certificateType?: ImaCertificateTypeResultLine | null;
|
|
36202
|
+
certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
|
|
36227
36203
|
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
36228
36204
|
}
|
|
36229
36205
|
|
|
36206
|
+
export interface ImaSupplementaryCheckResultDto extends ImaCdfEntityReadBase {
|
|
36207
|
+
status?: string | null;
|
|
36208
|
+
documentId?: string | null;
|
|
36209
|
+
acceptable?: boolean | null;
|
|
36210
|
+
standards: string[];
|
|
36211
|
+
summary?: string | null;
|
|
36212
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36213
|
+
}
|
|
36214
|
+
|
|
36230
36215
|
export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
|
|
36231
36216
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
36232
36217
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
@@ -36235,41 +36220,32 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
36235
36220
|
dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
|
|
36236
36221
|
batchNumber?: ImaCertificateTypeResultLine | null;
|
|
36237
36222
|
heatNumber?: ImaCertificateTypeResultLine | null;
|
|
36238
|
-
|
|
36223
|
+
relevantStandard?: ImaCertificateTypeResultLine | null;
|
|
36224
|
+
steelMaking: ImaSteelMakingResultDto;
|
|
36239
36225
|
}
|
|
36240
36226
|
|
|
36241
|
-
export interface
|
|
36242
|
-
|
|
36227
|
+
export interface ImaSteelMakingResultDto extends ImaCdfEntityReadBase {
|
|
36228
|
+
raw?: string[] | null;
|
|
36229
|
+
chain?: string[] | null;
|
|
36230
|
+
unmatched?: string[] | null;
|
|
36243
36231
|
}
|
|
36244
36232
|
|
|
36245
|
-
export interface
|
|
36246
|
-
|
|
36247
|
-
chemicalAnalysis?: ImaCertificateTypeResultLine | null;
|
|
36248
|
-
impactTests?: ImaCertificateTypeResultLine | null;
|
|
36249
|
-
corrosionTests?: ImaCertificateTypeResultLine | null;
|
|
36250
|
-
ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
|
|
36251
|
-
}
|
|
36252
|
-
|
|
36253
|
-
export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityReadBase {
|
|
36254
|
-
heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
|
|
36255
|
-
ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
|
|
36256
|
-
liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
|
|
36257
|
-
testReport?: ImaCertificateTypeResultLine | null;
|
|
36258
|
-
dimensionalReport?: ImaCertificateTypeResultLine | null;
|
|
36259
|
-
dyePenetrantReport?: ImaCertificateTypeResultLine | null;
|
|
36260
|
-
visualReport?: ImaCertificateTypeResultLine | null;
|
|
36261
|
-
certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
|
|
36262
|
-
certificateOfTest?: ImaCertificateTypeResultLine | null;
|
|
36263
|
-
technicalReport?: ImaCertificateTypeResultLine | null;
|
|
36264
|
-
microExaminationReport?: ImaCertificateTypeResultLine | null;
|
|
36265
|
-
radiologicalReport?: ImaCertificateTypeResultLine | null;
|
|
36233
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
|
|
36234
|
+
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
36266
36235
|
}
|
|
36267
36236
|
|
|
36268
36237
|
export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
36269
36238
|
chemistry: ImaSpecificationChemistryResultsDto;
|
|
36270
36239
|
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
36271
36240
|
ferrite: ImaSpecificationFerriteResultsDto;
|
|
36272
|
-
|
|
36241
|
+
chemicalAnalysis: ImaChemicalAnalysisResultDto[];
|
|
36242
|
+
tensileTests: ImaTensileTestResultDto[];
|
|
36243
|
+
hardnessTests: ImaHardnessTestResultDto[];
|
|
36244
|
+
impactTests: ImaImpactTestResultDto[];
|
|
36245
|
+
corrosionTests: ImaCorrosionTestResultDto[];
|
|
36246
|
+
ferriteContentAndMicrostructure: ImaFerriteResultDto[];
|
|
36247
|
+
heatTreatments: ImaHeatTreatmentResultDto[];
|
|
36248
|
+
documentTypes: ImaDocumentTypesResultsDto;
|
|
36273
36249
|
}
|
|
36274
36250
|
|
|
36275
36251
|
export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
|
|
@@ -36319,30 +36295,146 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
|
|
|
36319
36295
|
measurementMethod?: string | null;
|
|
36320
36296
|
}
|
|
36321
36297
|
|
|
36322
|
-
export interface
|
|
36323
|
-
|
|
36324
|
-
|
|
36325
|
-
|
|
36298
|
+
export interface ImaChemicalAnalysisResultDto extends ImaCdfEntityReadBase {
|
|
36299
|
+
sampleReference?: string | null;
|
|
36300
|
+
analysisType?: string | null;
|
|
36301
|
+
elements: ImaChemicalElementResultDto[];
|
|
36302
|
+
indices: ImaChemicalIndexResultDto[];
|
|
36303
|
+
testStandards: string[];
|
|
36304
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36305
|
+
}
|
|
36306
|
+
|
|
36307
|
+
export interface ImaChemicalElementResultDto extends ImaCdfEntityReadBase {
|
|
36308
|
+
symbol?: string | null;
|
|
36309
|
+
value?: ImaResultValueDto | null;
|
|
36310
|
+
}
|
|
36311
|
+
|
|
36312
|
+
export interface ImaResultValueDto extends ImaCdfEntityReadBase {
|
|
36313
|
+
readValue?: string | null;
|
|
36314
|
+
value?: number | null;
|
|
36315
|
+
unit?: string | null;
|
|
36316
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36317
|
+
}
|
|
36318
|
+
|
|
36319
|
+
export interface ImaChemicalIndexResultDto extends ImaCdfEntityReadBase {
|
|
36320
|
+
name?: string | null;
|
|
36321
|
+
value?: number | null;
|
|
36322
|
+
}
|
|
36323
|
+
|
|
36324
|
+
export interface ImaTensileTestResultDto extends ImaCdfEntityReadBase {
|
|
36325
|
+
sampleReference?: string | null;
|
|
36326
|
+
orientation?: string | null;
|
|
36327
|
+
testLocation?: string | null;
|
|
36328
|
+
temperature?: ImaResultValueDto | null;
|
|
36329
|
+
roomTemperature?: boolean | null;
|
|
36330
|
+
yieldStrengths: ImaYieldStrengthResultDto[];
|
|
36331
|
+
tensileStrength?: ImaResultValueDto | null;
|
|
36332
|
+
yieldTensileRatio?: number | null;
|
|
36333
|
+
elongations: ImaElongationResultDto[];
|
|
36334
|
+
reductionOfArea?: ImaResultValueDto | null;
|
|
36335
|
+
testStandards: string[];
|
|
36336
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36337
|
+
}
|
|
36338
|
+
|
|
36339
|
+
export interface ImaYieldStrengthResultDto extends ImaCdfEntityReadBase {
|
|
36340
|
+
label?: string | null;
|
|
36341
|
+
value?: ImaResultValueDto | null;
|
|
36342
|
+
}
|
|
36343
|
+
|
|
36344
|
+
export interface ImaElongationResultDto extends ImaCdfEntityReadBase {
|
|
36345
|
+
gauge?: string | null;
|
|
36346
|
+
value?: ImaResultValueDto | null;
|
|
36347
|
+
}
|
|
36348
|
+
|
|
36349
|
+
export interface ImaHardnessTestResultDto extends ImaCdfEntityReadBase {
|
|
36350
|
+
sampleReference?: string | null;
|
|
36351
|
+
orientation?: string | null;
|
|
36352
|
+
testLocation?: string | null;
|
|
36353
|
+
readings: ImaHardnessReadingResultDto[];
|
|
36354
|
+
testStandards: string[];
|
|
36355
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36356
|
+
}
|
|
36357
|
+
|
|
36358
|
+
export interface ImaHardnessReadingResultDto extends ImaCdfEntityReadBase {
|
|
36359
|
+
label?: string | null;
|
|
36360
|
+
scale?: string | null;
|
|
36361
|
+
value?: number | null;
|
|
36326
36362
|
}
|
|
36327
36363
|
|
|
36328
|
-
export interface
|
|
36329
|
-
|
|
36330
|
-
|
|
36331
|
-
|
|
36364
|
+
export interface ImaImpactTestResultDto extends ImaCdfEntityReadBase {
|
|
36365
|
+
sampleReference?: string | null;
|
|
36366
|
+
orientation?: string | null;
|
|
36367
|
+
testLocation?: string | null;
|
|
36368
|
+
temperature?: ImaResultValueDto | null;
|
|
36369
|
+
roomTemperature?: boolean | null;
|
|
36370
|
+
testLabel?: string | null;
|
|
36371
|
+
notchType?: string | null;
|
|
36372
|
+
specimenSize?: string | null;
|
|
36373
|
+
individualValues: ImaResultValueDto[];
|
|
36374
|
+
reportedAverage?: ImaResultValueDto | null;
|
|
36375
|
+
reportedMinimum?: ImaResultValueDto | null;
|
|
36376
|
+
testStandards: string[];
|
|
36377
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36378
|
+
}
|
|
36379
|
+
|
|
36380
|
+
export interface ImaCorrosionTestResultDto extends ImaCdfEntityReadBase {
|
|
36381
|
+
sampleReference?: string | null;
|
|
36382
|
+
testLocation?: string | null;
|
|
36383
|
+
testMethod?: string | null;
|
|
36384
|
+
testTemperature?: ImaResultValueDto | null;
|
|
36385
|
+
roomTemperature?: boolean | null;
|
|
36386
|
+
weightLoss?: ImaResultValueDto | null;
|
|
36387
|
+
pitting?: boolean | null;
|
|
36388
|
+
result?: string | null;
|
|
36389
|
+
acceptable?: boolean | null;
|
|
36390
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36332
36391
|
}
|
|
36333
36392
|
|
|
36334
|
-
export interface
|
|
36335
|
-
|
|
36336
|
-
|
|
36337
|
-
|
|
36393
|
+
export interface ImaFerriteResultDto extends ImaCdfEntityReadBase {
|
|
36394
|
+
sampleReference?: string | null;
|
|
36395
|
+
testLocation?: string | null;
|
|
36396
|
+
ferrite?: ImaResultValueDto | null;
|
|
36397
|
+
ferriteTolerance?: number | null;
|
|
36398
|
+
reportedRange?: string | null;
|
|
36399
|
+
intermetallicPhases?: boolean | null;
|
|
36400
|
+
grainSize?: string | null;
|
|
36401
|
+
testStandards: string[];
|
|
36402
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36403
|
+
}
|
|
36404
|
+
|
|
36405
|
+
export interface ImaHeatTreatmentResultDto extends ImaCdfEntityReadBase {
|
|
36406
|
+
stepType?: string | null;
|
|
36407
|
+
treatmentName?: string | null;
|
|
36408
|
+
temperature?: ImaResultValueDto | null;
|
|
36409
|
+
temperatureMin?: number | null;
|
|
36410
|
+
temperatureMax?: number | null;
|
|
36411
|
+
soakTime?: ImaResultValueDto | null;
|
|
36412
|
+
soakRate?: string | null;
|
|
36413
|
+
coolingMedium?: string | null;
|
|
36414
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36415
|
+
}
|
|
36416
|
+
|
|
36417
|
+
export interface ImaDocumentTypesResultsDto extends ImaCdfEntityReadBase {
|
|
36418
|
+
ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
36419
|
+
radiologicalReport?: ImaSupplementaryCheckResultDto | null;
|
|
36420
|
+
liquidPenetrantCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
36421
|
+
magneticParticle?: ImaSupplementaryCheckResultDto | null;
|
|
36422
|
+
pmi?: ImaSupplementaryCheckResultDto | null;
|
|
36423
|
+
hydrostatic?: ImaSupplementaryCheckResultDto | null;
|
|
36424
|
+
visualReport?: ImaSupplementaryCheckResultDto | null;
|
|
36425
|
+
dimensionalReport?: ImaSupplementaryCheckResultDto | null;
|
|
36426
|
+
microExaminationReport?: ImaSupplementaryCheckResultDto | null;
|
|
36338
36427
|
}
|
|
36339
36428
|
|
|
36340
36429
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
36341
36430
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
36342
|
-
|
|
36343
|
-
|
|
36344
|
-
|
|
36345
|
-
|
|
36431
|
+
chemicalAnalysisSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36432
|
+
tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36433
|
+
hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36434
|
+
impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36435
|
+
corrosionTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36436
|
+
ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36437
|
+
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
36346
36438
|
}
|
|
36347
36439
|
|
|
36348
36440
|
export interface ImaOverrideCertificateTypeResultsDto {
|
|
@@ -36352,14 +36444,13 @@ export interface ImaOverrideCertificateTypeResultsDto {
|
|
|
36352
36444
|
certification?: ImaOverrideCertificateTypeCertificationResultsDto | null;
|
|
36353
36445
|
productAndOrderInformation?: ImaOverrideCertificateTypeProductAndOrderInformationResultsDto | null;
|
|
36354
36446
|
testMethodsAndReferences?: ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto | null;
|
|
36355
|
-
testResults?: ImaOverrideCertificateTypeTestResultsResultsDto | null;
|
|
36356
|
-
documentTypes?: ImaOverrideCertificateTypeDocumentTypesResultsDto | null;
|
|
36357
36447
|
}
|
|
36358
36448
|
|
|
36359
36449
|
export interface ImaOverrideCertificateTypeManufacturerResultsDto {
|
|
36360
36450
|
manufacturer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36361
36451
|
address?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36362
36452
|
contact?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36453
|
+
steelPlant?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36363
36454
|
}
|
|
36364
36455
|
|
|
36365
36456
|
export interface ImaOverrideUpdateMaterialCheckResultLineDto {
|
|
@@ -36386,6 +36477,7 @@ export interface ImaOverrideCertificateTypeThirdPartyResultsDto {
|
|
|
36386
36477
|
}
|
|
36387
36478
|
|
|
36388
36479
|
export interface ImaOverrideCertificateTypeCertificationResultsDto {
|
|
36480
|
+
certificateType?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36389
36481
|
certificateOfCompliance?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36390
36482
|
inspectionCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36391
36483
|
}
|
|
@@ -36398,66 +36490,23 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
|
|
|
36398
36490
|
dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36399
36491
|
batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36400
36492
|
heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36401
|
-
|
|
36493
|
+
relevantStandard?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36402
36494
|
}
|
|
36403
36495
|
|
|
36404
36496
|
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
36405
36497
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36406
36498
|
}
|
|
36407
36499
|
|
|
36408
|
-
export interface
|
|
36409
|
-
mechanicalProperties?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36410
|
-
chemicalAnalysis?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36411
|
-
impactTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36412
|
-
corrosionTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36413
|
-
ferriteContentAndMicrostructure?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36414
|
-
}
|
|
36415
|
-
|
|
36416
|
-
export interface ImaOverrideCertificateTypeDocumentTypesResultsDto {
|
|
36417
|
-
heatTreatmentCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36500
|
+
export interface ImaOverrideDocumentTypesResultsDto {
|
|
36418
36501
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36502
|
+
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36419
36503
|
liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36420
|
-
|
|
36421
|
-
|
|
36422
|
-
|
|
36504
|
+
magneticParticle?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36505
|
+
pmi?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36506
|
+
hydrostatic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36423
36507
|
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36424
|
-
|
|
36425
|
-
certificateOfTest?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36426
|
-
technicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36508
|
+
dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36427
36509
|
microExaminationReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36428
|
-
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36429
|
-
}
|
|
36430
|
-
|
|
36431
|
-
export interface ImaOverrideSpecificationChemistryResultsDto {
|
|
36432
|
-
carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36433
|
-
manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36434
|
-
silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36435
|
-
phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36436
|
-
sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36437
|
-
chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36438
|
-
nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36439
|
-
molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36440
|
-
copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36441
|
-
nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36442
|
-
wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36443
|
-
iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36444
|
-
}
|
|
36445
|
-
|
|
36446
|
-
export interface ImaOverrideSpecificationMechanicalResultsDto {
|
|
36447
|
-
yieldStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36448
|
-
tensileStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36449
|
-
elongation?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36450
|
-
reductionOfArea?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36451
|
-
impactEnergy?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36452
|
-
hardness?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36453
|
-
}
|
|
36454
|
-
|
|
36455
|
-
export interface ImaOverrideSpecificationFerriteResultsDto {
|
|
36456
|
-
ferriteContent?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36457
|
-
}
|
|
36458
|
-
|
|
36459
|
-
export interface ImaOverrideSpecificationHeatTreatmentResultsDto {
|
|
36460
|
-
heatTreatmentOverrides?: ImaOverrideUpdateMaterialCheckResultLineDto[] | null;
|
|
36461
36510
|
}
|
|
36462
36511
|
|
|
36463
36512
|
export interface ImaUpdateMaterialCheckMetadataRequestDto {
|
|
@@ -36515,7 +36564,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
36515
36564
|
|
|
36516
36565
|
export interface ImaMaterialChecksPageRequestDto {
|
|
36517
36566
|
pageSize?: number | null;
|
|
36518
|
-
orderBy?: ImaMaterialChecksPageOrderRequestDto
|
|
36567
|
+
orderBy?: ImaMaterialChecksPageOrderRequestDto | null;
|
|
36519
36568
|
searchQuery?: string | null;
|
|
36520
36569
|
fileNameFilter?: string | null;
|
|
36521
36570
|
specificationFilter?: string | null;
|
|
@@ -36686,6 +36735,7 @@ export interface ImaSpecificationDto {
|
|
|
36686
36735
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
36687
36736
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
36688
36737
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
36738
|
+
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
36689
36739
|
heatTreatmentSpecifications: ImaHeatTreatmentSpecificationDto[];
|
|
36690
36740
|
}
|
|
36691
36741
|
|
|
@@ -36727,6 +36777,18 @@ export interface ImaFerriteSpecificationDto {
|
|
|
36727
36777
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
36728
36778
|
}
|
|
36729
36779
|
|
|
36780
|
+
export interface ImaDocumentTypesSpecificationDto {
|
|
36781
|
+
ultrasonicControlCertificate?: boolean;
|
|
36782
|
+
radiologicalReport?: boolean;
|
|
36783
|
+
liquidPenetrantCertificate?: boolean;
|
|
36784
|
+
magneticParticle?: boolean;
|
|
36785
|
+
pmi?: boolean;
|
|
36786
|
+
hydrostatic?: boolean;
|
|
36787
|
+
visualReport?: boolean;
|
|
36788
|
+
dimensionalReport?: boolean;
|
|
36789
|
+
microExaminationReport?: boolean;
|
|
36790
|
+
}
|
|
36791
|
+
|
|
36730
36792
|
export interface ImaHeatTreatmentSpecificationDto {
|
|
36731
36793
|
step: number;
|
|
36732
36794
|
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
@@ -36773,6 +36835,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
36773
36835
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
36774
36836
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
36775
36837
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
36838
|
+
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|
|
36776
36839
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
36777
36840
|
}
|
|
36778
36841
|
|