@ignos/api-client 20260727.194.1-alpha → 20260727.195.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 +126 -184
- package/package.json +1 -1
- package/src/ignosportal-api.ts +135 -198
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -7983,6 +7983,7 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
7983
7983
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
7984
7984
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
7985
7985
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
7986
|
+
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
7986
7987
|
}
|
|
7987
7988
|
export interface ImaCdfEntityReadBase {
|
|
7988
7989
|
}
|
|
@@ -7990,7 +7991,6 @@ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEnt
|
|
|
7990
7991
|
manufacturer?: boolean;
|
|
7991
7992
|
address?: boolean;
|
|
7992
7993
|
contact?: boolean;
|
|
7993
|
-
steelPlant?: boolean;
|
|
7994
7994
|
}
|
|
7995
7995
|
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
7996
7996
|
certifiedBy?: boolean;
|
|
@@ -8009,7 +8009,6 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
|
|
|
8009
8009
|
stamp?: boolean;
|
|
8010
8010
|
}
|
|
8011
8011
|
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
8012
|
-
certificateType?: boolean;
|
|
8013
8012
|
certificateOfCompliance?: boolean;
|
|
8014
8013
|
inspectionCertificate?: boolean;
|
|
8015
8014
|
}
|
|
@@ -8021,20 +8020,32 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
|
|
|
8021
8020
|
dimensionsOrWeight?: boolean;
|
|
8022
8021
|
batchNumber?: boolean;
|
|
8023
8022
|
heatNumber?: boolean;
|
|
8024
|
-
|
|
8025
|
-
steelMaking?: boolean;
|
|
8023
|
+
relatedStandards?: boolean;
|
|
8026
8024
|
}
|
|
8027
8025
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
8028
8026
|
usedStandards?: boolean;
|
|
8029
8027
|
}
|
|
8030
8028
|
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
8031
|
-
|
|
8032
|
-
hardnessTests?: boolean;
|
|
8033
|
-
impactTests?: boolean;
|
|
8029
|
+
mechanicalProperties?: boolean;
|
|
8034
8030
|
chemicalAnalysis?: boolean;
|
|
8031
|
+
impactTests?: boolean;
|
|
8035
8032
|
corrosionTests?: boolean;
|
|
8036
8033
|
ferriteContentAndMicrostructure?: boolean;
|
|
8037
8034
|
}
|
|
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
|
+
}
|
|
8038
8049
|
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
8039
8050
|
name: string;
|
|
8040
8051
|
revision: string;
|
|
@@ -8055,12 +8066,12 @@ export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
|
8055
8066
|
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
8056
8067
|
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
8057
8068
|
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
8069
|
+
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
8058
8070
|
}
|
|
8059
8071
|
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
8060
8072
|
manufacturer?: boolean | null;
|
|
8061
8073
|
address?: boolean | null;
|
|
8062
8074
|
contact?: boolean | null;
|
|
8063
|
-
steelPlant?: boolean | null;
|
|
8064
8075
|
}
|
|
8065
8076
|
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
8066
8077
|
certifiedBy?: boolean | null;
|
|
@@ -8079,7 +8090,6 @@ export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
|
8079
8090
|
stamp?: boolean | null;
|
|
8080
8091
|
}
|
|
8081
8092
|
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
8082
|
-
certificateType?: boolean | null;
|
|
8083
8093
|
certificateOfCompliance?: boolean | null;
|
|
8084
8094
|
inspectionCertificate?: boolean | null;
|
|
8085
8095
|
}
|
|
@@ -8091,20 +8101,32 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateD
|
|
|
8091
8101
|
dimensionsOrWeight?: boolean | null;
|
|
8092
8102
|
batchNumber?: boolean | null;
|
|
8093
8103
|
heatNumber?: boolean | null;
|
|
8094
|
-
|
|
8095
|
-
steelMaking?: boolean | null;
|
|
8104
|
+
relatedStandards?: boolean | null;
|
|
8096
8105
|
}
|
|
8097
8106
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
8098
8107
|
usedStandards?: boolean | null;
|
|
8099
8108
|
}
|
|
8100
8109
|
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
8101
|
-
|
|
8102
|
-
hardnessTests?: boolean | null;
|
|
8103
|
-
impactTests?: boolean | null;
|
|
8110
|
+
mechanicalProperties?: boolean | null;
|
|
8104
8111
|
chemicalAnalysis?: boolean | null;
|
|
8112
|
+
impactTests?: boolean | null;
|
|
8105
8113
|
corrosionTests?: boolean | null;
|
|
8106
8114
|
ferriteContentAndMicrostructure?: boolean | null;
|
|
8107
8115
|
}
|
|
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
|
+
}
|
|
8108
8130
|
export interface ImaCertificateTypeLiteDto {
|
|
8109
8131
|
certificateTypeId: string;
|
|
8110
8132
|
version: number;
|
|
@@ -8175,12 +8197,13 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
|
8175
8197
|
certification: ImaCertificateTypeCertificationResultsDto;
|
|
8176
8198
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
8177
8199
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
8200
|
+
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
8201
|
+
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
8178
8202
|
}
|
|
8179
8203
|
export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
|
|
8180
8204
|
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
8181
8205
|
address?: ImaCertificateTypeResultLine | null;
|
|
8182
8206
|
contact?: ImaCertificateTypeResultLine | null;
|
|
8183
|
-
steelPlant?: ImaCertificateTypeResultLine | null;
|
|
8184
8207
|
}
|
|
8185
8208
|
export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
|
|
8186
8209
|
found?: boolean;
|
|
@@ -8212,18 +8235,9 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
|
|
|
8212
8235
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
8213
8236
|
}
|
|
8214
8237
|
export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
|
|
8215
|
-
|
|
8216
|
-
certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
|
|
8238
|
+
certificateOfCompliance?: ImaCertificateTypeResultLine | null;
|
|
8217
8239
|
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
8218
8240
|
}
|
|
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
|
-
}
|
|
8227
8241
|
export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
|
|
8228
8242
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
8229
8243
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
@@ -8232,29 +8246,37 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
8232
8246
|
dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
|
|
8233
8247
|
batchNumber?: ImaCertificateTypeResultLine | null;
|
|
8234
8248
|
heatNumber?: ImaCertificateTypeResultLine | null;
|
|
8235
|
-
|
|
8236
|
-
steelMaking: ImaSteelMakingResultDto;
|
|
8237
|
-
}
|
|
8238
|
-
export interface ImaSteelMakingResultDto extends ImaCdfEntityReadBase {
|
|
8239
|
-
raw?: string[] | null;
|
|
8240
|
-
chain?: string[] | null;
|
|
8241
|
-
unmatched?: string[] | null;
|
|
8249
|
+
relatedStandards?: ImaCertificateTypeResultLine | null;
|
|
8242
8250
|
}
|
|
8243
8251
|
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
|
|
8244
8252
|
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
8245
8253
|
}
|
|
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
|
+
}
|
|
8246
8275
|
export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
8247
8276
|
chemistry: ImaSpecificationChemistryResultsDto;
|
|
8248
8277
|
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
8249
8278
|
ferrite: ImaSpecificationFerriteResultsDto;
|
|
8250
|
-
|
|
8251
|
-
tensileTests: ImaTensileTestResultDto[];
|
|
8252
|
-
hardnessTests: ImaHardnessTestResultDto[];
|
|
8253
|
-
impactTests: ImaImpactTestResultDto[];
|
|
8254
|
-
corrosionTests: ImaCorrosionTestResultDto[];
|
|
8255
|
-
ferriteContentAndMicrostructure: ImaFerriteResultDto[];
|
|
8256
|
-
heatTreatments: ImaHeatTreatmentResultDto[];
|
|
8257
|
-
documentTypes: ImaDocumentTypesResultsDto;
|
|
8279
|
+
heatTreatments: ImaSpecificationHeatTreatmentResultDto[];
|
|
8258
8280
|
}
|
|
8259
8281
|
export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
|
|
8260
8282
|
carbon?: ImaSpecificationResultLineDto | null;
|
|
@@ -8297,132 +8319,27 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
|
|
|
8297
8319
|
override?: ImaResultLineOverrideDto | null;
|
|
8298
8320
|
measurementMethod?: string | null;
|
|
8299
8321
|
}
|
|
8300
|
-
export interface
|
|
8301
|
-
|
|
8302
|
-
|
|
8303
|
-
|
|
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;
|
|
8317
|
-
}
|
|
8318
|
-
export interface ImaChemicalIndexResultDto extends ImaCdfEntityReadBase {
|
|
8319
|
-
name?: string | null;
|
|
8320
|
-
value?: number | null;
|
|
8321
|
-
}
|
|
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;
|
|
8322
|
+
export interface ImaSpecificationHeatTreatmentResultDto extends ImaCdfEntityReadBase {
|
|
8323
|
+
step: number;
|
|
8324
|
+
cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
|
|
8325
|
+
heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
|
|
8394
8326
|
}
|
|
8395
|
-
export interface
|
|
8396
|
-
|
|
8397
|
-
|
|
8398
|
-
|
|
8399
|
-
temperatureMin?: number | null;
|
|
8400
|
-
temperatureMax?: number | null;
|
|
8401
|
-
soakTime?: ImaResultValueDto | null;
|
|
8402
|
-
soakRate?: string | null;
|
|
8403
|
-
coolingMedium?: string | null;
|
|
8404
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8327
|
+
export interface ImaSpecificationHeatTreatmentCoolingResult extends ImaCdfEntityReadBase {
|
|
8328
|
+
coolingMethods?: string[] | null;
|
|
8329
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
8330
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
8405
8331
|
}
|
|
8406
|
-
export interface
|
|
8407
|
-
|
|
8408
|
-
|
|
8409
|
-
|
|
8410
|
-
magneticParticle?: ImaSupplementaryCheckResultDto | null;
|
|
8411
|
-
pmi?: ImaSupplementaryCheckResultDto | null;
|
|
8412
|
-
hydrostatic?: ImaSupplementaryCheckResultDto | null;
|
|
8413
|
-
visualReport?: ImaSupplementaryCheckResultDto | null;
|
|
8414
|
-
dimensionalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8415
|
-
microExaminationReport?: ImaSupplementaryCheckResultDto | null;
|
|
8332
|
+
export interface ImaSpecificationHeatTreatmentHeatingResult extends ImaCdfEntityReadBase {
|
|
8333
|
+
heatingMethod?: string | null;
|
|
8334
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
8335
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
8416
8336
|
}
|
|
8417
8337
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
8418
8338
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
8419
|
-
|
|
8420
|
-
|
|
8421
|
-
|
|
8422
|
-
|
|
8423
|
-
corrosionTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8424
|
-
ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8425
|
-
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
8339
|
+
chemistrySpecificationSection?: ImaOverrideSpecificationChemistryResultsDto | null;
|
|
8340
|
+
mechanicalSpecificationSection?: ImaOverrideSpecificationMechanicalResultsDto | null;
|
|
8341
|
+
ferriteSpecificationSection?: ImaOverrideSpecificationFerriteResultsDto | null;
|
|
8342
|
+
heatSpecificationSection?: ImaOverrideSpecificationHeatTreatmentResultsDto | null;
|
|
8426
8343
|
}
|
|
8427
8344
|
export interface ImaOverrideCertificateTypeResultsDto {
|
|
8428
8345
|
manufacturer?: ImaOverrideCertificateTypeManufacturerResultsDto | null;
|
|
@@ -8431,12 +8348,13 @@ export interface ImaOverrideCertificateTypeResultsDto {
|
|
|
8431
8348
|
certification?: ImaOverrideCertificateTypeCertificationResultsDto | null;
|
|
8432
8349
|
productAndOrderInformation?: ImaOverrideCertificateTypeProductAndOrderInformationResultsDto | null;
|
|
8433
8350
|
testMethodsAndReferences?: ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto | null;
|
|
8351
|
+
testResults?: ImaOverrideCertificateTypeTestResultsResultsDto | null;
|
|
8352
|
+
documentTypes?: ImaOverrideCertificateTypeDocumentTypesResultsDto | null;
|
|
8434
8353
|
}
|
|
8435
8354
|
export interface ImaOverrideCertificateTypeManufacturerResultsDto {
|
|
8436
8355
|
manufacturer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8437
8356
|
address?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8438
8357
|
contact?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8439
|
-
steelPlant?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8440
8358
|
}
|
|
8441
8359
|
export interface ImaOverrideUpdateMaterialCheckResultLineDto {
|
|
8442
8360
|
approved?: boolean | null;
|
|
@@ -8459,7 +8377,6 @@ export interface ImaOverrideCertificateTypeThirdPartyResultsDto {
|
|
|
8459
8377
|
stamp?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8460
8378
|
}
|
|
8461
8379
|
export interface ImaOverrideCertificateTypeCertificationResultsDto {
|
|
8462
|
-
certificateType?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8463
8380
|
certificateOfCompliance?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8464
8381
|
inspectionCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8465
8382
|
}
|
|
@@ -8471,21 +8388,59 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
|
|
|
8471
8388
|
dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8472
8389
|
batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8473
8390
|
heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8474
|
-
|
|
8391
|
+
relatedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8475
8392
|
}
|
|
8476
8393
|
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8477
8394
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8478
8395
|
}
|
|
8479
|
-
export interface
|
|
8396
|
+
export interface ImaOverrideCertificateTypeTestResultsResultsDto {
|
|
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;
|
|
8480
8405
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8481
|
-
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8482
8406
|
liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8483
|
-
|
|
8484
|
-
pmi?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8485
|
-
hydrostatic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8486
|
-
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8407
|
+
testReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8487
8408
|
dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8409
|
+
dyePenetrantReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8410
|
+
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8411
|
+
certificateOfAnalyticalAndMechanicalTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8412
|
+
certificateOfTest?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8413
|
+
technicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8488
8414
|
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;
|
|
8489
8444
|
}
|
|
8490
8445
|
export interface ImaUpdateMaterialCheckMetadataRequestDto {
|
|
8491
8446
|
customerOrder?: string;
|
|
@@ -8539,7 +8494,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8539
8494
|
}
|
|
8540
8495
|
export interface ImaMaterialChecksPageRequestDto {
|
|
8541
8496
|
pageSize?: number | null;
|
|
8542
|
-
orderBy?: ImaMaterialChecksPageOrderRequestDto | null;
|
|
8497
|
+
orderBy?: ImaMaterialChecksPageOrderRequestDto[] | null;
|
|
8543
8498
|
searchQuery?: string | null;
|
|
8544
8499
|
fileNameFilter?: string | null;
|
|
8545
8500
|
specificationFilter?: string | null;
|
|
@@ -8692,7 +8647,6 @@ export interface ImaSpecificationDto {
|
|
|
8692
8647
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
8693
8648
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
8694
8649
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
8695
|
-
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
8696
8650
|
heatTreatmentSpecifications: ImaHeatTreatmentSpecificationDto[];
|
|
8697
8651
|
}
|
|
8698
8652
|
export interface ImaSpecificationVersionDto {
|
|
@@ -8728,17 +8682,6 @@ export interface ImaMechanicalSpecificationDto {
|
|
|
8728
8682
|
export interface ImaFerriteSpecificationDto {
|
|
8729
8683
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8730
8684
|
}
|
|
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
|
-
}
|
|
8742
8685
|
export interface ImaHeatTreatmentSpecificationDto {
|
|
8743
8686
|
step: number;
|
|
8744
8687
|
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
@@ -8778,7 +8721,6 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8778
8721
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
8779
8722
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
8780
8723
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8781
|
-
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|
|
8782
8724
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
8783
8725
|
}
|
|
8784
8726
|
export interface ImaSpecificationLiteDto {
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -35940,6 +35940,7 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
35940
35940
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
35941
35941
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
35942
35942
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
35943
|
+
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
35943
35944
|
}
|
|
35944
35945
|
|
|
35945
35946
|
export interface ImaCdfEntityReadBase {
|
|
@@ -35949,7 +35950,6 @@ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEnt
|
|
|
35949
35950
|
manufacturer?: boolean;
|
|
35950
35951
|
address?: boolean;
|
|
35951
35952
|
contact?: boolean;
|
|
35952
|
-
steelPlant?: boolean;
|
|
35953
35953
|
}
|
|
35954
35954
|
|
|
35955
35955
|
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
@@ -35971,7 +35971,6 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
|
|
|
35971
35971
|
}
|
|
35972
35972
|
|
|
35973
35973
|
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
35974
|
-
certificateType?: boolean;
|
|
35975
35974
|
certificateOfCompliance?: boolean;
|
|
35976
35975
|
inspectionCertificate?: boolean;
|
|
35977
35976
|
}
|
|
@@ -35984,8 +35983,7 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
|
|
|
35984
35983
|
dimensionsOrWeight?: boolean;
|
|
35985
35984
|
batchNumber?: boolean;
|
|
35986
35985
|
heatNumber?: boolean;
|
|
35987
|
-
|
|
35988
|
-
steelMaking?: boolean;
|
|
35986
|
+
relatedStandards?: boolean;
|
|
35989
35987
|
}
|
|
35990
35988
|
|
|
35991
35989
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
@@ -35993,14 +35991,28 @@ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto exten
|
|
|
35993
35991
|
}
|
|
35994
35992
|
|
|
35995
35993
|
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
35996
|
-
|
|
35997
|
-
hardnessTests?: boolean;
|
|
35998
|
-
impactTests?: boolean;
|
|
35994
|
+
mechanicalProperties?: boolean;
|
|
35999
35995
|
chemicalAnalysis?: boolean;
|
|
35996
|
+
impactTests?: boolean;
|
|
36000
35997
|
corrosionTests?: boolean;
|
|
36001
35998
|
ferriteContentAndMicrostructure?: boolean;
|
|
36002
35999
|
}
|
|
36003
36000
|
|
|
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
|
+
|
|
36004
36016
|
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
36005
36017
|
name: string;
|
|
36006
36018
|
revision: string;
|
|
@@ -36023,13 +36035,13 @@ export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
|
36023
36035
|
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
36024
36036
|
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
36025
36037
|
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
36038
|
+
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
36026
36039
|
}
|
|
36027
36040
|
|
|
36028
36041
|
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
36029
36042
|
manufacturer?: boolean | null;
|
|
36030
36043
|
address?: boolean | null;
|
|
36031
36044
|
contact?: boolean | null;
|
|
36032
|
-
steelPlant?: boolean | null;
|
|
36033
36045
|
}
|
|
36034
36046
|
|
|
36035
36047
|
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
@@ -36051,7 +36063,6 @@ export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
|
36051
36063
|
}
|
|
36052
36064
|
|
|
36053
36065
|
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
36054
|
-
certificateType?: boolean | null;
|
|
36055
36066
|
certificateOfCompliance?: boolean | null;
|
|
36056
36067
|
inspectionCertificate?: boolean | null;
|
|
36057
36068
|
}
|
|
@@ -36064,8 +36075,7 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateD
|
|
|
36064
36075
|
dimensionsOrWeight?: boolean | null;
|
|
36065
36076
|
batchNumber?: boolean | null;
|
|
36066
36077
|
heatNumber?: boolean | null;
|
|
36067
|
-
|
|
36068
|
-
steelMaking?: boolean | null;
|
|
36078
|
+
relatedStandards?: boolean | null;
|
|
36069
36079
|
}
|
|
36070
36080
|
|
|
36071
36081
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
@@ -36073,14 +36083,28 @@ export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto
|
|
|
36073
36083
|
}
|
|
36074
36084
|
|
|
36075
36085
|
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
36076
|
-
|
|
36077
|
-
hardnessTests?: boolean | null;
|
|
36078
|
-
impactTests?: boolean | null;
|
|
36086
|
+
mechanicalProperties?: boolean | null;
|
|
36079
36087
|
chemicalAnalysis?: boolean | null;
|
|
36088
|
+
impactTests?: boolean | null;
|
|
36080
36089
|
corrosionTests?: boolean | null;
|
|
36081
36090
|
ferriteContentAndMicrostructure?: boolean | null;
|
|
36082
36091
|
}
|
|
36083
36092
|
|
|
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
|
+
|
|
36084
36108
|
export interface ImaCertificateTypeLiteDto {
|
|
36085
36109
|
certificateTypeId: string;
|
|
36086
36110
|
version: number;
|
|
@@ -36155,13 +36179,14 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
|
36155
36179
|
certification: ImaCertificateTypeCertificationResultsDto;
|
|
36156
36180
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
36157
36181
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
36182
|
+
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
36183
|
+
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
36158
36184
|
}
|
|
36159
36185
|
|
|
36160
36186
|
export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
|
|
36161
36187
|
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
36162
36188
|
address?: ImaCertificateTypeResultLine | null;
|
|
36163
36189
|
contact?: ImaCertificateTypeResultLine | null;
|
|
36164
|
-
steelPlant?: ImaCertificateTypeResultLine | null;
|
|
36165
36190
|
}
|
|
36166
36191
|
|
|
36167
36192
|
export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
|
|
@@ -36198,20 +36223,10 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
|
|
|
36198
36223
|
}
|
|
36199
36224
|
|
|
36200
36225
|
export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
|
|
36201
|
-
|
|
36202
|
-
certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
|
|
36226
|
+
certificateOfCompliance?: ImaCertificateTypeResultLine | null;
|
|
36203
36227
|
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
36204
36228
|
}
|
|
36205
36229
|
|
|
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
|
-
|
|
36215
36230
|
export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
|
|
36216
36231
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
36217
36232
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
@@ -36220,32 +36235,41 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
36220
36235
|
dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
|
|
36221
36236
|
batchNumber?: ImaCertificateTypeResultLine | null;
|
|
36222
36237
|
heatNumber?: ImaCertificateTypeResultLine | null;
|
|
36223
|
-
|
|
36224
|
-
steelMaking: ImaSteelMakingResultDto;
|
|
36225
|
-
}
|
|
36226
|
-
|
|
36227
|
-
export interface ImaSteelMakingResultDto extends ImaCdfEntityReadBase {
|
|
36228
|
-
raw?: string[] | null;
|
|
36229
|
-
chain?: string[] | null;
|
|
36230
|
-
unmatched?: string[] | null;
|
|
36238
|
+
relatedStandards?: ImaCertificateTypeResultLine | null;
|
|
36231
36239
|
}
|
|
36232
36240
|
|
|
36233
36241
|
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
|
|
36234
36242
|
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
36235
36243
|
}
|
|
36236
36244
|
|
|
36245
|
+
export interface ImaCertificateTypeTestResultsResultsDto extends ImaCdfEntityReadBase {
|
|
36246
|
+
mechanicalProperties?: ImaCertificateTypeResultLine | null;
|
|
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;
|
|
36266
|
+
}
|
|
36267
|
+
|
|
36237
36268
|
export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
36238
36269
|
chemistry: ImaSpecificationChemistryResultsDto;
|
|
36239
36270
|
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
36240
36271
|
ferrite: ImaSpecificationFerriteResultsDto;
|
|
36241
|
-
|
|
36242
|
-
tensileTests: ImaTensileTestResultDto[];
|
|
36243
|
-
hardnessTests: ImaHardnessTestResultDto[];
|
|
36244
|
-
impactTests: ImaImpactTestResultDto[];
|
|
36245
|
-
corrosionTests: ImaCorrosionTestResultDto[];
|
|
36246
|
-
ferriteContentAndMicrostructure: ImaFerriteResultDto[];
|
|
36247
|
-
heatTreatments: ImaHeatTreatmentResultDto[];
|
|
36248
|
-
documentTypes: ImaDocumentTypesResultsDto;
|
|
36272
|
+
heatTreatments: ImaSpecificationHeatTreatmentResultDto[];
|
|
36249
36273
|
}
|
|
36250
36274
|
|
|
36251
36275
|
export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
|
|
@@ -36295,146 +36319,30 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
|
|
|
36295
36319
|
measurementMethod?: string | null;
|
|
36296
36320
|
}
|
|
36297
36321
|
|
|
36298
|
-
export interface
|
|
36299
|
-
|
|
36300
|
-
|
|
36301
|
-
|
|
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;
|
|
36362
|
-
}
|
|
36363
|
-
|
|
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;
|
|
36391
|
-
}
|
|
36392
|
-
|
|
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;
|
|
36322
|
+
export interface ImaSpecificationHeatTreatmentResultDto extends ImaCdfEntityReadBase {
|
|
36323
|
+
step: number;
|
|
36324
|
+
cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
|
|
36325
|
+
heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
|
|
36403
36326
|
}
|
|
36404
36327
|
|
|
36405
|
-
export interface
|
|
36406
|
-
|
|
36407
|
-
|
|
36408
|
-
|
|
36409
|
-
temperatureMin?: number | null;
|
|
36410
|
-
temperatureMax?: number | null;
|
|
36411
|
-
soakTime?: ImaResultValueDto | null;
|
|
36412
|
-
soakRate?: string | null;
|
|
36413
|
-
coolingMedium?: string | null;
|
|
36414
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36328
|
+
export interface ImaSpecificationHeatTreatmentCoolingResult extends ImaCdfEntityReadBase {
|
|
36329
|
+
coolingMethods?: string[] | null;
|
|
36330
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
36331
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
36415
36332
|
}
|
|
36416
36333
|
|
|
36417
|
-
export interface
|
|
36418
|
-
|
|
36419
|
-
|
|
36420
|
-
|
|
36421
|
-
magneticParticle?: ImaSupplementaryCheckResultDto | null;
|
|
36422
|
-
pmi?: ImaSupplementaryCheckResultDto | null;
|
|
36423
|
-
hydrostatic?: ImaSupplementaryCheckResultDto | null;
|
|
36424
|
-
visualReport?: ImaSupplementaryCheckResultDto | null;
|
|
36425
|
-
dimensionalReport?: ImaSupplementaryCheckResultDto | null;
|
|
36426
|
-
microExaminationReport?: ImaSupplementaryCheckResultDto | null;
|
|
36334
|
+
export interface ImaSpecificationHeatTreatmentHeatingResult extends ImaCdfEntityReadBase {
|
|
36335
|
+
heatingMethod?: string | null;
|
|
36336
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
36337
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
36427
36338
|
}
|
|
36428
36339
|
|
|
36429
36340
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
36430
36341
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
36431
|
-
|
|
36432
|
-
|
|
36433
|
-
|
|
36434
|
-
|
|
36435
|
-
corrosionTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36436
|
-
ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36437
|
-
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
36342
|
+
chemistrySpecificationSection?: ImaOverrideSpecificationChemistryResultsDto | null;
|
|
36343
|
+
mechanicalSpecificationSection?: ImaOverrideSpecificationMechanicalResultsDto | null;
|
|
36344
|
+
ferriteSpecificationSection?: ImaOverrideSpecificationFerriteResultsDto | null;
|
|
36345
|
+
heatSpecificationSection?: ImaOverrideSpecificationHeatTreatmentResultsDto | null;
|
|
36438
36346
|
}
|
|
36439
36347
|
|
|
36440
36348
|
export interface ImaOverrideCertificateTypeResultsDto {
|
|
@@ -36444,13 +36352,14 @@ export interface ImaOverrideCertificateTypeResultsDto {
|
|
|
36444
36352
|
certification?: ImaOverrideCertificateTypeCertificationResultsDto | null;
|
|
36445
36353
|
productAndOrderInformation?: ImaOverrideCertificateTypeProductAndOrderInformationResultsDto | null;
|
|
36446
36354
|
testMethodsAndReferences?: ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto | null;
|
|
36355
|
+
testResults?: ImaOverrideCertificateTypeTestResultsResultsDto | null;
|
|
36356
|
+
documentTypes?: ImaOverrideCertificateTypeDocumentTypesResultsDto | null;
|
|
36447
36357
|
}
|
|
36448
36358
|
|
|
36449
36359
|
export interface ImaOverrideCertificateTypeManufacturerResultsDto {
|
|
36450
36360
|
manufacturer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36451
36361
|
address?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36452
36362
|
contact?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36453
|
-
steelPlant?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36454
36363
|
}
|
|
36455
36364
|
|
|
36456
36365
|
export interface ImaOverrideUpdateMaterialCheckResultLineDto {
|
|
@@ -36477,7 +36386,6 @@ export interface ImaOverrideCertificateTypeThirdPartyResultsDto {
|
|
|
36477
36386
|
}
|
|
36478
36387
|
|
|
36479
36388
|
export interface ImaOverrideCertificateTypeCertificationResultsDto {
|
|
36480
|
-
certificateType?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36481
36389
|
certificateOfCompliance?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36482
36390
|
inspectionCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36483
36391
|
}
|
|
@@ -36490,23 +36398,66 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
|
|
|
36490
36398
|
dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36491
36399
|
batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36492
36400
|
heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36493
|
-
|
|
36401
|
+
relatedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36494
36402
|
}
|
|
36495
36403
|
|
|
36496
36404
|
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
36497
36405
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36498
36406
|
}
|
|
36499
36407
|
|
|
36500
|
-
export interface
|
|
36408
|
+
export interface ImaOverrideCertificateTypeTestResultsResultsDto {
|
|
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;
|
|
36501
36418
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36502
|
-
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36503
36419
|
liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36504
|
-
|
|
36505
|
-
pmi?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36506
|
-
hydrostatic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36507
|
-
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36420
|
+
testReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36508
36421
|
dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36422
|
+
dyePenetrantReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36423
|
+
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36424
|
+
certificateOfAnalyticalAndMechanicalTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36425
|
+
certificateOfTest?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36426
|
+
technicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36509
36427
|
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;
|
|
36510
36461
|
}
|
|
36511
36462
|
|
|
36512
36463
|
export interface ImaUpdateMaterialCheckMetadataRequestDto {
|
|
@@ -36564,7 +36515,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
36564
36515
|
|
|
36565
36516
|
export interface ImaMaterialChecksPageRequestDto {
|
|
36566
36517
|
pageSize?: number | null;
|
|
36567
|
-
orderBy?: ImaMaterialChecksPageOrderRequestDto | null;
|
|
36518
|
+
orderBy?: ImaMaterialChecksPageOrderRequestDto[] | null;
|
|
36568
36519
|
searchQuery?: string | null;
|
|
36569
36520
|
fileNameFilter?: string | null;
|
|
36570
36521
|
specificationFilter?: string | null;
|
|
@@ -36735,7 +36686,6 @@ export interface ImaSpecificationDto {
|
|
|
36735
36686
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
36736
36687
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
36737
36688
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
36738
|
-
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
36739
36689
|
heatTreatmentSpecifications: ImaHeatTreatmentSpecificationDto[];
|
|
36740
36690
|
}
|
|
36741
36691
|
|
|
@@ -36777,18 +36727,6 @@ export interface ImaFerriteSpecificationDto {
|
|
|
36777
36727
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
36778
36728
|
}
|
|
36779
36729
|
|
|
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
|
-
|
|
36792
36730
|
export interface ImaHeatTreatmentSpecificationDto {
|
|
36793
36731
|
step: number;
|
|
36794
36732
|
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
@@ -36835,7 +36773,6 @@ export interface ImaUpdateSpecificationDto {
|
|
|
36835
36773
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
36836
36774
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
36837
36775
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
36838
|
-
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|
|
36839
36776
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
36840
36777
|
}
|
|
36841
36778
|
|