@ignos/api-client 20260729.200.1 → 20260731.201.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 +91 -79
- package/package.json +1 -1
- package/src/ignosportal-api.ts +91 -84
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -8096,22 +8096,20 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
8096
8096
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
8097
8097
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
8098
8098
|
}
|
|
8099
|
-
export interface
|
|
8100
|
-
}
|
|
8101
|
-
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
8099
|
+
export interface ImaCertificateTypeManufacturerRequirementsDto {
|
|
8102
8100
|
manufacturer?: boolean;
|
|
8103
8101
|
address?: boolean;
|
|
8104
8102
|
contact?: boolean;
|
|
8105
8103
|
steelPlant?: boolean;
|
|
8106
8104
|
}
|
|
8107
|
-
export interface ImaCertificateTypeSignatureRequirementsDto
|
|
8105
|
+
export interface ImaCertificateTypeSignatureRequirementsDto {
|
|
8108
8106
|
certifiedBy?: boolean;
|
|
8109
8107
|
position?: boolean;
|
|
8110
8108
|
signature?: boolean;
|
|
8111
8109
|
date?: boolean;
|
|
8112
8110
|
stamp?: boolean;
|
|
8113
8111
|
}
|
|
8114
|
-
export interface ImaCertificateTypeThirdPartyRequirementsDto
|
|
8112
|
+
export interface ImaCertificateTypeThirdPartyRequirementsDto {
|
|
8115
8113
|
inspectionBody?: boolean;
|
|
8116
8114
|
inspectorName?: boolean;
|
|
8117
8115
|
position?: boolean;
|
|
@@ -8120,12 +8118,12 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
|
|
|
8120
8118
|
date?: boolean;
|
|
8121
8119
|
stamp?: boolean;
|
|
8122
8120
|
}
|
|
8123
|
-
export interface ImaCertificateTypeCertificationRequirementsDto
|
|
8121
|
+
export interface ImaCertificateTypeCertificationRequirementsDto {
|
|
8124
8122
|
certificateType?: boolean;
|
|
8125
8123
|
certificateOfCompliance?: boolean;
|
|
8126
8124
|
inspectionCertificate?: boolean;
|
|
8127
8125
|
}
|
|
8128
|
-
export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto
|
|
8126
|
+
export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto {
|
|
8129
8127
|
productDescription?: boolean;
|
|
8130
8128
|
materialGrade?: boolean;
|
|
8131
8129
|
customer?: boolean;
|
|
@@ -8136,10 +8134,10 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
|
|
|
8136
8134
|
relevantStandard?: boolean;
|
|
8137
8135
|
steelMaking?: boolean;
|
|
8138
8136
|
}
|
|
8139
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto
|
|
8137
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto {
|
|
8140
8138
|
usedStandards?: boolean;
|
|
8141
8139
|
}
|
|
8142
|
-
export interface ImaCertificateTypeTestResultsRequirementsDto
|
|
8140
|
+
export interface ImaCertificateTypeTestResultsRequirementsDto {
|
|
8143
8141
|
tensileTests?: boolean;
|
|
8144
8142
|
hardnessTests?: boolean;
|
|
8145
8143
|
impactTests?: boolean;
|
|
@@ -8261,7 +8259,7 @@ export interface ImaMaterialCheckDto {
|
|
|
8261
8259
|
purchaseOrderPartRevision?: string | null;
|
|
8262
8260
|
purchaseOrderDrawing?: string | null;
|
|
8263
8261
|
purchaseOrderDrawingRevision?: string | null;
|
|
8264
|
-
|
|
8262
|
+
heatNumbers?: string[] | null;
|
|
8265
8263
|
status: ImaMaterialCheckStatusDto;
|
|
8266
8264
|
created: Date;
|
|
8267
8265
|
createdBy: string;
|
|
@@ -8280,7 +8278,7 @@ export interface ImaMaterialCheckDto {
|
|
|
8280
8278
|
}
|
|
8281
8279
|
export type ImaSpecificationStatusDto = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8282
8280
|
export type ImaMaterialCheckStatusDto = "Processing" | "Draft" | "Approved" | "Rejected" | "Failed" | "NotSet";
|
|
8283
|
-
export interface ImaCertificateTypeResultsDto
|
|
8281
|
+
export interface ImaCertificateTypeResultsDto {
|
|
8284
8282
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
8285
8283
|
signature: ImaCertificateTypeSignatureResultsDto;
|
|
8286
8284
|
thirdParty: ImaCertificateTypeThirdPartyResultsDto;
|
|
@@ -8288,18 +8286,18 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
|
8288
8286
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
8289
8287
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
8290
8288
|
}
|
|
8291
|
-
export interface ImaCertificateTypeManufacturerResultsDto
|
|
8289
|
+
export interface ImaCertificateTypeManufacturerResultsDto {
|
|
8292
8290
|
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
8293
8291
|
address?: ImaCertificateTypeResultLine | null;
|
|
8294
8292
|
contact?: ImaCertificateTypeResultLine | null;
|
|
8295
8293
|
steelPlant?: ImaCertificateTypeResultLine | null;
|
|
8296
8294
|
}
|
|
8297
|
-
export interface ImaCertificateTypeResultLine
|
|
8295
|
+
export interface ImaCertificateTypeResultLine {
|
|
8298
8296
|
found?: boolean;
|
|
8299
8297
|
readValue?: string | null;
|
|
8300
8298
|
override?: ImaResultLineOverrideDto | null;
|
|
8301
8299
|
}
|
|
8302
|
-
export interface ImaResultLineOverrideDto
|
|
8300
|
+
export interface ImaResultLineOverrideDto {
|
|
8303
8301
|
approved?: boolean | null;
|
|
8304
8302
|
comment?: string | null;
|
|
8305
8303
|
updated: Date;
|
|
@@ -8307,14 +8305,14 @@ export interface ImaResultLineOverrideDto extends ImaCdfEntityReadBase {
|
|
|
8307
8305
|
updatedById: string;
|
|
8308
8306
|
updatedByName?: string | null;
|
|
8309
8307
|
}
|
|
8310
|
-
export interface ImaCertificateTypeSignatureResultsDto
|
|
8308
|
+
export interface ImaCertificateTypeSignatureResultsDto {
|
|
8311
8309
|
certifiedBy?: ImaCertificateTypeResultLine | null;
|
|
8312
8310
|
position?: ImaCertificateTypeResultLine | null;
|
|
8313
8311
|
signature?: ImaCertificateTypeResultLine | null;
|
|
8314
8312
|
date?: ImaCertificateTypeResultLine | null;
|
|
8315
8313
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
8316
8314
|
}
|
|
8317
|
-
export interface ImaCertificateTypeThirdPartyResultsDto
|
|
8315
|
+
export interface ImaCertificateTypeThirdPartyResultsDto {
|
|
8318
8316
|
inspectionBody?: ImaCertificateTypeResultLine | null;
|
|
8319
8317
|
inspectorName?: ImaCertificateTypeResultLine | null;
|
|
8320
8318
|
position?: ImaCertificateTypeResultLine | null;
|
|
@@ -8323,12 +8321,12 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
|
|
|
8323
8321
|
date?: ImaCertificateTypeResultLine | null;
|
|
8324
8322
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
8325
8323
|
}
|
|
8326
|
-
export interface ImaCertificateTypeCertificationResultsDto
|
|
8324
|
+
export interface ImaCertificateTypeCertificationResultsDto {
|
|
8327
8325
|
certificateType?: ImaCertificateTypeResultLine | null;
|
|
8328
8326
|
certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
|
|
8329
8327
|
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
8330
8328
|
}
|
|
8331
|
-
export interface ImaSupplementaryCheckResultDto
|
|
8329
|
+
export interface ImaSupplementaryCheckResultDto {
|
|
8332
8330
|
status?: string | null;
|
|
8333
8331
|
documentId?: string | null;
|
|
8334
8332
|
acceptable?: boolean | null;
|
|
@@ -8336,7 +8334,7 @@ export interface ImaSupplementaryCheckResultDto extends ImaCdfEntityReadBase {
|
|
|
8336
8334
|
summary?: string | null;
|
|
8337
8335
|
override?: ImaResultLineOverrideDto | null;
|
|
8338
8336
|
}
|
|
8339
|
-
export interface ImaCertificateTypeProductAndOrderInformationResultsDto
|
|
8337
|
+
export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
|
|
8340
8338
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
8341
8339
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
8342
8340
|
customer?: ImaCertificateTypeResultLine | null;
|
|
@@ -8347,18 +8345,15 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
8347
8345
|
relevantStandard?: ImaCertificateTypeResultLine | null;
|
|
8348
8346
|
steelMaking: ImaSteelMakingResultDto;
|
|
8349
8347
|
}
|
|
8350
|
-
export interface ImaSteelMakingResultDto
|
|
8348
|
+
export interface ImaSteelMakingResultDto {
|
|
8351
8349
|
raw?: string[] | null;
|
|
8352
8350
|
chain?: string[] | null;
|
|
8353
8351
|
unmatched?: string[] | null;
|
|
8354
8352
|
}
|
|
8355
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto
|
|
8353
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8356
8354
|
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
8357
8355
|
}
|
|
8358
|
-
export interface ImaSpecificationResultsDto
|
|
8359
|
-
chemistry: ImaSpecificationChemistryResultsDto;
|
|
8360
|
-
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
8361
|
-
ferrite: ImaSpecificationFerriteResultsDto;
|
|
8356
|
+
export interface ImaSpecificationResultsDto {
|
|
8362
8357
|
chemicalAnalysis: ImaChemicalAnalysisResultDto[];
|
|
8363
8358
|
tensileTests: ImaTensileTestResultDto[];
|
|
8364
8359
|
hardnessTests: ImaHardnessTestResultDto[];
|
|
@@ -8368,7 +8363,15 @@ export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
|
8368
8363
|
heatTreatments: ImaHeatTreatmentResultDto[];
|
|
8369
8364
|
documentTypes: ImaDocumentTypesResultsDto;
|
|
8370
8365
|
}
|
|
8371
|
-
export interface
|
|
8366
|
+
export interface ImaChemicalAnalysisResultDto {
|
|
8367
|
+
heatNumber?: string | null;
|
|
8368
|
+
sampleReference?: string | null;
|
|
8369
|
+
analysisType?: string | null;
|
|
8370
|
+
elements: ImaChemicalAnalysisElementsResultDto;
|
|
8371
|
+
indices: ImaChemicalIndexResultDto[];
|
|
8372
|
+
testStandards: string[];
|
|
8373
|
+
}
|
|
8374
|
+
export interface ImaChemicalAnalysisElementsResultDto {
|
|
8372
8375
|
carbon?: ImaSpecificationResultLineDto | null;
|
|
8373
8376
|
manganese?: ImaSpecificationResultLineDto | null;
|
|
8374
8377
|
silicon?: ImaSpecificationResultLineDto | null;
|
|
@@ -8380,9 +8383,26 @@ export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBas
|
|
|
8380
8383
|
copper?: ImaSpecificationResultLineDto | null;
|
|
8381
8384
|
nitrogen?: ImaSpecificationResultLineDto | null;
|
|
8382
8385
|
wolfram?: ImaSpecificationResultLineDto | null;
|
|
8386
|
+
titanium?: ImaSpecificationResultLineDto | null;
|
|
8387
|
+
aluminum?: ImaSpecificationResultLineDto | null;
|
|
8388
|
+
niobium?: ImaSpecificationResultLineDto | null;
|
|
8389
|
+
tantalum?: ImaSpecificationResultLineDto | null;
|
|
8390
|
+
cobalt?: ImaSpecificationResultLineDto | null;
|
|
8391
|
+
boron?: ImaSpecificationResultLineDto | null;
|
|
8392
|
+
lead?: ImaSpecificationResultLineDto | null;
|
|
8393
|
+
selenium?: ImaSpecificationResultLineDto | null;
|
|
8394
|
+
bismuth?: ImaSpecificationResultLineDto | null;
|
|
8383
8395
|
iron?: ImaSpecificationResultLineDto | null;
|
|
8384
|
-
|
|
8385
|
-
|
|
8396
|
+
vanadium?: ImaSpecificationResultLineDto | null;
|
|
8397
|
+
oxygen?: ImaSpecificationResultLineDto | null;
|
|
8398
|
+
calcium?: ImaSpecificationResultLineDto | null;
|
|
8399
|
+
arsenic?: ImaSpecificationResultLineDto | null;
|
|
8400
|
+
tin?: ImaSpecificationResultLineDto | null;
|
|
8401
|
+
antimony?: ImaSpecificationResultLineDto | null;
|
|
8402
|
+
hydrogen?: ImaSpecificationResultLineDto | null;
|
|
8403
|
+
zirconium?: ImaSpecificationResultLineDto | null;
|
|
8404
|
+
}
|
|
8405
|
+
export interface ImaSpecificationResultLineDto {
|
|
8386
8406
|
specificationMin?: number | null;
|
|
8387
8407
|
specificationMax?: number | null;
|
|
8388
8408
|
readValue?: string | null;
|
|
@@ -8390,48 +8410,13 @@ export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
|
|
|
8390
8410
|
override?: ImaResultLineOverrideDto | null;
|
|
8391
8411
|
}
|
|
8392
8412
|
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8393
|
-
export interface
|
|
8394
|
-
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
8395
|
-
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
8396
|
-
elongation?: ImaSpecificationResultLineDto | null;
|
|
8397
|
-
reductionOfArea?: ImaSpecificationResultLineDto | null;
|
|
8398
|
-
impactEnergy?: ImaSpecificationResultLineDto | null;
|
|
8399
|
-
hardness?: ImaSpecificationResultLineDto | null;
|
|
8400
|
-
}
|
|
8401
|
-
export interface ImaSpecificationFerriteResultsDto extends ImaCdfEntityReadBase {
|
|
8402
|
-
ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
|
|
8403
|
-
}
|
|
8404
|
-
export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBase {
|
|
8405
|
-
specificationMin?: number | null;
|
|
8406
|
-
specificationMax?: number | null;
|
|
8407
|
-
readValue?: string | null;
|
|
8408
|
-
status: ImaSpecificationResultLineStatusDto;
|
|
8409
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8410
|
-
measurementMethod?: string | null;
|
|
8411
|
-
}
|
|
8412
|
-
export interface ImaChemicalAnalysisResultDto extends ImaCdfEntityReadBase {
|
|
8413
|
-
sampleReference?: string | null;
|
|
8414
|
-
analysisType?: string | null;
|
|
8415
|
-
elements: ImaChemicalElementResultDto[];
|
|
8416
|
-
indices: ImaChemicalIndexResultDto[];
|
|
8417
|
-
testStandards: string[];
|
|
8418
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8419
|
-
}
|
|
8420
|
-
export interface ImaChemicalElementResultDto extends ImaCdfEntityReadBase {
|
|
8421
|
-
symbol?: string | null;
|
|
8422
|
-
value?: ImaResultValueDto | null;
|
|
8423
|
-
}
|
|
8424
|
-
export interface ImaResultValueDto extends ImaCdfEntityReadBase {
|
|
8425
|
-
readValue?: string | null;
|
|
8426
|
-
value?: number | null;
|
|
8427
|
-
unit?: string | null;
|
|
8428
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8429
|
-
}
|
|
8430
|
-
export interface ImaChemicalIndexResultDto extends ImaCdfEntityReadBase {
|
|
8413
|
+
export interface ImaChemicalIndexResultDto {
|
|
8431
8414
|
name?: string | null;
|
|
8432
8415
|
value?: number | null;
|
|
8416
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8433
8417
|
}
|
|
8434
|
-
export interface ImaTensileTestResultDto
|
|
8418
|
+
export interface ImaTensileTestResultDto {
|
|
8419
|
+
heatNumber?: string | null;
|
|
8435
8420
|
sampleReference?: string | null;
|
|
8436
8421
|
orientation?: string | null;
|
|
8437
8422
|
testLocation?: string | null;
|
|
@@ -8445,15 +8430,21 @@ export interface ImaTensileTestResultDto extends ImaCdfEntityReadBase {
|
|
|
8445
8430
|
testStandards: string[];
|
|
8446
8431
|
override?: ImaResultLineOverrideDto | null;
|
|
8447
8432
|
}
|
|
8448
|
-
export interface
|
|
8433
|
+
export interface ImaResultValueDto {
|
|
8434
|
+
readValue?: string | null;
|
|
8435
|
+
unit?: string | null;
|
|
8436
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8437
|
+
}
|
|
8438
|
+
export interface ImaYieldStrengthResultDto {
|
|
8449
8439
|
label?: string | null;
|
|
8450
8440
|
value?: ImaResultValueDto | null;
|
|
8451
8441
|
}
|
|
8452
|
-
export interface ImaElongationResultDto
|
|
8442
|
+
export interface ImaElongationResultDto {
|
|
8453
8443
|
gauge?: string | null;
|
|
8454
8444
|
value?: ImaResultValueDto | null;
|
|
8455
8445
|
}
|
|
8456
|
-
export interface ImaHardnessTestResultDto
|
|
8446
|
+
export interface ImaHardnessTestResultDto {
|
|
8447
|
+
heatNumber?: string | null;
|
|
8457
8448
|
sampleReference?: string | null;
|
|
8458
8449
|
orientation?: string | null;
|
|
8459
8450
|
testLocation?: string | null;
|
|
@@ -8461,12 +8452,13 @@ export interface ImaHardnessTestResultDto extends ImaCdfEntityReadBase {
|
|
|
8461
8452
|
testStandards: string[];
|
|
8462
8453
|
override?: ImaResultLineOverrideDto | null;
|
|
8463
8454
|
}
|
|
8464
|
-
export interface ImaHardnessReadingResultDto
|
|
8455
|
+
export interface ImaHardnessReadingResultDto {
|
|
8465
8456
|
label?: string | null;
|
|
8466
8457
|
scale?: string | null;
|
|
8467
8458
|
value?: number | null;
|
|
8468
8459
|
}
|
|
8469
|
-
export interface ImaImpactTestResultDto
|
|
8460
|
+
export interface ImaImpactTestResultDto {
|
|
8461
|
+
heatNumber?: string | null;
|
|
8470
8462
|
sampleReference?: string | null;
|
|
8471
8463
|
orientation?: string | null;
|
|
8472
8464
|
testLocation?: string | null;
|
|
@@ -8481,7 +8473,8 @@ export interface ImaImpactTestResultDto extends ImaCdfEntityReadBase {
|
|
|
8481
8473
|
testStandards: string[];
|
|
8482
8474
|
override?: ImaResultLineOverrideDto | null;
|
|
8483
8475
|
}
|
|
8484
|
-
export interface ImaCorrosionTestResultDto
|
|
8476
|
+
export interface ImaCorrosionTestResultDto {
|
|
8477
|
+
heatNumber?: string | null;
|
|
8485
8478
|
sampleReference?: string | null;
|
|
8486
8479
|
testLocation?: string | null;
|
|
8487
8480
|
testMethod?: string | null;
|
|
@@ -8493,7 +8486,8 @@ export interface ImaCorrosionTestResultDto extends ImaCdfEntityReadBase {
|
|
|
8493
8486
|
acceptable?: boolean | null;
|
|
8494
8487
|
override?: ImaResultLineOverrideDto | null;
|
|
8495
8488
|
}
|
|
8496
|
-
export interface ImaFerriteResultDto
|
|
8489
|
+
export interface ImaFerriteResultDto {
|
|
8490
|
+
heatNumber?: string | null;
|
|
8497
8491
|
sampleReference?: string | null;
|
|
8498
8492
|
testLocation?: string | null;
|
|
8499
8493
|
ferrite?: ImaResultValueDto | null;
|
|
@@ -8504,7 +8498,8 @@ export interface ImaFerriteResultDto extends ImaCdfEntityReadBase {
|
|
|
8504
8498
|
testStandards: string[];
|
|
8505
8499
|
override?: ImaResultLineOverrideDto | null;
|
|
8506
8500
|
}
|
|
8507
|
-
export interface ImaHeatTreatmentResultDto
|
|
8501
|
+
export interface ImaHeatTreatmentResultDto {
|
|
8502
|
+
heatNumber?: string | null;
|
|
8508
8503
|
stepType?: string | null;
|
|
8509
8504
|
treatmentName?: string | null;
|
|
8510
8505
|
temperature?: ImaResultValueDto | null;
|
|
@@ -8515,7 +8510,7 @@ export interface ImaHeatTreatmentResultDto extends ImaCdfEntityReadBase {
|
|
|
8515
8510
|
coolingMedium?: string | null;
|
|
8516
8511
|
override?: ImaResultLineOverrideDto | null;
|
|
8517
8512
|
}
|
|
8518
|
-
export interface ImaDocumentTypesResultsDto
|
|
8513
|
+
export interface ImaDocumentTypesResultsDto {
|
|
8519
8514
|
ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
8520
8515
|
radiologicalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8521
8516
|
liquidPenetrantCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
@@ -8634,7 +8629,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8634
8629
|
purchaseOrderPartRevision?: string | null;
|
|
8635
8630
|
purchaseOrderDrawing?: string | null;
|
|
8636
8631
|
purchaseOrderDrawingRevision?: string | null;
|
|
8637
|
-
|
|
8632
|
+
heatNumbers?: string[] | null;
|
|
8638
8633
|
status: ImaMaterialCheckStatusDto;
|
|
8639
8634
|
created: Date;
|
|
8640
8635
|
createdBy: string;
|
|
@@ -8823,9 +8818,26 @@ export interface ImaChemistrySpecificationDto {
|
|
|
8823
8818
|
copper?: ImaSpecificationLineDto | null;
|
|
8824
8819
|
nitrogen?: ImaSpecificationLineDto | null;
|
|
8825
8820
|
wolfram?: ImaSpecificationLineDto | null;
|
|
8821
|
+
titanium?: ImaSpecificationLineDto | null;
|
|
8822
|
+
aluminum?: ImaSpecificationLineDto | null;
|
|
8823
|
+
niobium?: ImaSpecificationLineDto | null;
|
|
8824
|
+
tantalum?: ImaSpecificationLineDto | null;
|
|
8825
|
+
cobalt?: ImaSpecificationLineDto | null;
|
|
8826
|
+
boron?: ImaSpecificationLineDto | null;
|
|
8827
|
+
lead?: ImaSpecificationLineDto | null;
|
|
8828
|
+
selenium?: ImaSpecificationLineDto | null;
|
|
8829
|
+
bismuth?: ImaSpecificationLineDto | null;
|
|
8826
8830
|
iron?: ImaSpecificationLineDto | null;
|
|
8827
|
-
|
|
8828
|
-
|
|
8831
|
+
vanadium?: ImaSpecificationLineDto | null;
|
|
8832
|
+
oxygen?: ImaSpecificationLineDto | null;
|
|
8833
|
+
calcium?: ImaSpecificationLineDto | null;
|
|
8834
|
+
arsenic?: ImaSpecificationLineDto | null;
|
|
8835
|
+
tin?: ImaSpecificationLineDto | null;
|
|
8836
|
+
antimony?: ImaSpecificationLineDto | null;
|
|
8837
|
+
hydrogen?: ImaSpecificationLineDto | null;
|
|
8838
|
+
zirconium?: ImaSpecificationLineDto | null;
|
|
8839
|
+
}
|
|
8840
|
+
export interface ImaSpecificationLineDto {
|
|
8829
8841
|
min?: number | null;
|
|
8830
8842
|
max?: number | null;
|
|
8831
8843
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -36461,17 +36461,14 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
36461
36461
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
36462
36462
|
}
|
|
36463
36463
|
|
|
36464
|
-
export interface
|
|
36465
|
-
}
|
|
36466
|
-
|
|
36467
|
-
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
36464
|
+
export interface ImaCertificateTypeManufacturerRequirementsDto {
|
|
36468
36465
|
manufacturer?: boolean;
|
|
36469
36466
|
address?: boolean;
|
|
36470
36467
|
contact?: boolean;
|
|
36471
36468
|
steelPlant?: boolean;
|
|
36472
36469
|
}
|
|
36473
36470
|
|
|
36474
|
-
export interface ImaCertificateTypeSignatureRequirementsDto
|
|
36471
|
+
export interface ImaCertificateTypeSignatureRequirementsDto {
|
|
36475
36472
|
certifiedBy?: boolean;
|
|
36476
36473
|
position?: boolean;
|
|
36477
36474
|
signature?: boolean;
|
|
@@ -36479,7 +36476,7 @@ export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntity
|
|
|
36479
36476
|
stamp?: boolean;
|
|
36480
36477
|
}
|
|
36481
36478
|
|
|
36482
|
-
export interface ImaCertificateTypeThirdPartyRequirementsDto
|
|
36479
|
+
export interface ImaCertificateTypeThirdPartyRequirementsDto {
|
|
36483
36480
|
inspectionBody?: boolean;
|
|
36484
36481
|
inspectorName?: boolean;
|
|
36485
36482
|
position?: boolean;
|
|
@@ -36489,13 +36486,13 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
|
|
|
36489
36486
|
stamp?: boolean;
|
|
36490
36487
|
}
|
|
36491
36488
|
|
|
36492
|
-
export interface ImaCertificateTypeCertificationRequirementsDto
|
|
36489
|
+
export interface ImaCertificateTypeCertificationRequirementsDto {
|
|
36493
36490
|
certificateType?: boolean;
|
|
36494
36491
|
certificateOfCompliance?: boolean;
|
|
36495
36492
|
inspectionCertificate?: boolean;
|
|
36496
36493
|
}
|
|
36497
36494
|
|
|
36498
|
-
export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto
|
|
36495
|
+
export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto {
|
|
36499
36496
|
productDescription?: boolean;
|
|
36500
36497
|
materialGrade?: boolean;
|
|
36501
36498
|
customer?: boolean;
|
|
@@ -36507,11 +36504,11 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
|
|
|
36507
36504
|
steelMaking?: boolean;
|
|
36508
36505
|
}
|
|
36509
36506
|
|
|
36510
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto
|
|
36507
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto {
|
|
36511
36508
|
usedStandards?: boolean;
|
|
36512
36509
|
}
|
|
36513
36510
|
|
|
36514
|
-
export interface ImaCertificateTypeTestResultsRequirementsDto
|
|
36511
|
+
export interface ImaCertificateTypeTestResultsRequirementsDto {
|
|
36515
36512
|
tensileTests?: boolean;
|
|
36516
36513
|
hardnessTests?: boolean;
|
|
36517
36514
|
impactTests?: boolean;
|
|
@@ -36645,7 +36642,7 @@ export interface ImaMaterialCheckDto {
|
|
|
36645
36642
|
purchaseOrderPartRevision?: string | null;
|
|
36646
36643
|
purchaseOrderDrawing?: string | null;
|
|
36647
36644
|
purchaseOrderDrawingRevision?: string | null;
|
|
36648
|
-
|
|
36645
|
+
heatNumbers?: string[] | null;
|
|
36649
36646
|
status: ImaMaterialCheckStatusDto;
|
|
36650
36647
|
created: Date;
|
|
36651
36648
|
createdBy: string;
|
|
@@ -36667,7 +36664,7 @@ export type ImaSpecificationStatusDto = "Draft" | "Released" | "Expired" | "Reje
|
|
|
36667
36664
|
|
|
36668
36665
|
export type ImaMaterialCheckStatusDto = "Processing" | "Draft" | "Approved" | "Rejected" | "Failed" | "NotSet";
|
|
36669
36666
|
|
|
36670
|
-
export interface ImaCertificateTypeResultsDto
|
|
36667
|
+
export interface ImaCertificateTypeResultsDto {
|
|
36671
36668
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
36672
36669
|
signature: ImaCertificateTypeSignatureResultsDto;
|
|
36673
36670
|
thirdParty: ImaCertificateTypeThirdPartyResultsDto;
|
|
@@ -36676,20 +36673,20 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
|
36676
36673
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
36677
36674
|
}
|
|
36678
36675
|
|
|
36679
|
-
export interface ImaCertificateTypeManufacturerResultsDto
|
|
36676
|
+
export interface ImaCertificateTypeManufacturerResultsDto {
|
|
36680
36677
|
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
36681
36678
|
address?: ImaCertificateTypeResultLine | null;
|
|
36682
36679
|
contact?: ImaCertificateTypeResultLine | null;
|
|
36683
36680
|
steelPlant?: ImaCertificateTypeResultLine | null;
|
|
36684
36681
|
}
|
|
36685
36682
|
|
|
36686
|
-
export interface ImaCertificateTypeResultLine
|
|
36683
|
+
export interface ImaCertificateTypeResultLine {
|
|
36687
36684
|
found?: boolean;
|
|
36688
36685
|
readValue?: string | null;
|
|
36689
36686
|
override?: ImaResultLineOverrideDto | null;
|
|
36690
36687
|
}
|
|
36691
36688
|
|
|
36692
|
-
export interface ImaResultLineOverrideDto
|
|
36689
|
+
export interface ImaResultLineOverrideDto {
|
|
36693
36690
|
approved?: boolean | null;
|
|
36694
36691
|
comment?: string | null;
|
|
36695
36692
|
updated: Date;
|
|
@@ -36698,7 +36695,7 @@ export interface ImaResultLineOverrideDto extends ImaCdfEntityReadBase {
|
|
|
36698
36695
|
updatedByName?: string | null;
|
|
36699
36696
|
}
|
|
36700
36697
|
|
|
36701
|
-
export interface ImaCertificateTypeSignatureResultsDto
|
|
36698
|
+
export interface ImaCertificateTypeSignatureResultsDto {
|
|
36702
36699
|
certifiedBy?: ImaCertificateTypeResultLine | null;
|
|
36703
36700
|
position?: ImaCertificateTypeResultLine | null;
|
|
36704
36701
|
signature?: ImaCertificateTypeResultLine | null;
|
|
@@ -36706,7 +36703,7 @@ export interface ImaCertificateTypeSignatureResultsDto extends ImaCdfEntityReadB
|
|
|
36706
36703
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
36707
36704
|
}
|
|
36708
36705
|
|
|
36709
|
-
export interface ImaCertificateTypeThirdPartyResultsDto
|
|
36706
|
+
export interface ImaCertificateTypeThirdPartyResultsDto {
|
|
36710
36707
|
inspectionBody?: ImaCertificateTypeResultLine | null;
|
|
36711
36708
|
inspectorName?: ImaCertificateTypeResultLine | null;
|
|
36712
36709
|
position?: ImaCertificateTypeResultLine | null;
|
|
@@ -36716,13 +36713,13 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
|
|
|
36716
36713
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
36717
36714
|
}
|
|
36718
36715
|
|
|
36719
|
-
export interface ImaCertificateTypeCertificationResultsDto
|
|
36716
|
+
export interface ImaCertificateTypeCertificationResultsDto {
|
|
36720
36717
|
certificateType?: ImaCertificateTypeResultLine | null;
|
|
36721
36718
|
certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
|
|
36722
36719
|
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
36723
36720
|
}
|
|
36724
36721
|
|
|
36725
|
-
export interface ImaSupplementaryCheckResultDto
|
|
36722
|
+
export interface ImaSupplementaryCheckResultDto {
|
|
36726
36723
|
status?: string | null;
|
|
36727
36724
|
documentId?: string | null;
|
|
36728
36725
|
acceptable?: boolean | null;
|
|
@@ -36731,7 +36728,7 @@ export interface ImaSupplementaryCheckResultDto extends ImaCdfEntityReadBase {
|
|
|
36731
36728
|
override?: ImaResultLineOverrideDto | null;
|
|
36732
36729
|
}
|
|
36733
36730
|
|
|
36734
|
-
export interface ImaCertificateTypeProductAndOrderInformationResultsDto
|
|
36731
|
+
export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
|
|
36735
36732
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
36736
36733
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
36737
36734
|
customer?: ImaCertificateTypeResultLine | null;
|
|
@@ -36743,20 +36740,17 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
36743
36740
|
steelMaking: ImaSteelMakingResultDto;
|
|
36744
36741
|
}
|
|
36745
36742
|
|
|
36746
|
-
export interface ImaSteelMakingResultDto
|
|
36743
|
+
export interface ImaSteelMakingResultDto {
|
|
36747
36744
|
raw?: string[] | null;
|
|
36748
36745
|
chain?: string[] | null;
|
|
36749
36746
|
unmatched?: string[] | null;
|
|
36750
36747
|
}
|
|
36751
36748
|
|
|
36752
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto
|
|
36749
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
36753
36750
|
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
36754
36751
|
}
|
|
36755
36752
|
|
|
36756
|
-
export interface ImaSpecificationResultsDto
|
|
36757
|
-
chemistry: ImaSpecificationChemistryResultsDto;
|
|
36758
|
-
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
36759
|
-
ferrite: ImaSpecificationFerriteResultsDto;
|
|
36753
|
+
export interface ImaSpecificationResultsDto {
|
|
36760
36754
|
chemicalAnalysis: ImaChemicalAnalysisResultDto[];
|
|
36761
36755
|
tensileTests: ImaTensileTestResultDto[];
|
|
36762
36756
|
hardnessTests: ImaHardnessTestResultDto[];
|
|
@@ -36767,7 +36761,16 @@ export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
|
36767
36761
|
documentTypes: ImaDocumentTypesResultsDto;
|
|
36768
36762
|
}
|
|
36769
36763
|
|
|
36770
|
-
export interface
|
|
36764
|
+
export interface ImaChemicalAnalysisResultDto {
|
|
36765
|
+
heatNumber?: string | null;
|
|
36766
|
+
sampleReference?: string | null;
|
|
36767
|
+
analysisType?: string | null;
|
|
36768
|
+
elements: ImaChemicalAnalysisElementsResultDto;
|
|
36769
|
+
indices: ImaChemicalIndexResultDto[];
|
|
36770
|
+
testStandards: string[];
|
|
36771
|
+
}
|
|
36772
|
+
|
|
36773
|
+
export interface ImaChemicalAnalysisElementsResultDto {
|
|
36771
36774
|
carbon?: ImaSpecificationResultLineDto | null;
|
|
36772
36775
|
manganese?: ImaSpecificationResultLineDto | null;
|
|
36773
36776
|
silicon?: ImaSpecificationResultLineDto | null;
|
|
@@ -36779,10 +36782,27 @@ export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBas
|
|
|
36779
36782
|
copper?: ImaSpecificationResultLineDto | null;
|
|
36780
36783
|
nitrogen?: ImaSpecificationResultLineDto | null;
|
|
36781
36784
|
wolfram?: ImaSpecificationResultLineDto | null;
|
|
36785
|
+
titanium?: ImaSpecificationResultLineDto | null;
|
|
36786
|
+
aluminum?: ImaSpecificationResultLineDto | null;
|
|
36787
|
+
niobium?: ImaSpecificationResultLineDto | null;
|
|
36788
|
+
tantalum?: ImaSpecificationResultLineDto | null;
|
|
36789
|
+
cobalt?: ImaSpecificationResultLineDto | null;
|
|
36790
|
+
boron?: ImaSpecificationResultLineDto | null;
|
|
36791
|
+
lead?: ImaSpecificationResultLineDto | null;
|
|
36792
|
+
selenium?: ImaSpecificationResultLineDto | null;
|
|
36793
|
+
bismuth?: ImaSpecificationResultLineDto | null;
|
|
36782
36794
|
iron?: ImaSpecificationResultLineDto | null;
|
|
36795
|
+
vanadium?: ImaSpecificationResultLineDto | null;
|
|
36796
|
+
oxygen?: ImaSpecificationResultLineDto | null;
|
|
36797
|
+
calcium?: ImaSpecificationResultLineDto | null;
|
|
36798
|
+
arsenic?: ImaSpecificationResultLineDto | null;
|
|
36799
|
+
tin?: ImaSpecificationResultLineDto | null;
|
|
36800
|
+
antimony?: ImaSpecificationResultLineDto | null;
|
|
36801
|
+
hydrogen?: ImaSpecificationResultLineDto | null;
|
|
36802
|
+
zirconium?: ImaSpecificationResultLineDto | null;
|
|
36783
36803
|
}
|
|
36784
36804
|
|
|
36785
|
-
export interface ImaSpecificationResultLineDto
|
|
36805
|
+
export interface ImaSpecificationResultLineDto {
|
|
36786
36806
|
specificationMin?: number | null;
|
|
36787
36807
|
specificationMax?: number | null;
|
|
36788
36808
|
readValue?: string | null;
|
|
@@ -36792,55 +36812,14 @@ export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
|
|
|
36792
36812
|
|
|
36793
36813
|
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
36794
36814
|
|
|
36795
|
-
export interface
|
|
36796
|
-
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
36797
|
-
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
36798
|
-
elongation?: ImaSpecificationResultLineDto | null;
|
|
36799
|
-
reductionOfArea?: ImaSpecificationResultLineDto | null;
|
|
36800
|
-
impactEnergy?: ImaSpecificationResultLineDto | null;
|
|
36801
|
-
hardness?: ImaSpecificationResultLineDto | null;
|
|
36802
|
-
}
|
|
36803
|
-
|
|
36804
|
-
export interface ImaSpecificationFerriteResultsDto extends ImaCdfEntityReadBase {
|
|
36805
|
-
ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
|
|
36806
|
-
}
|
|
36807
|
-
|
|
36808
|
-
export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBase {
|
|
36809
|
-
specificationMin?: number | null;
|
|
36810
|
-
specificationMax?: number | null;
|
|
36811
|
-
readValue?: string | null;
|
|
36812
|
-
status: ImaSpecificationResultLineStatusDto;
|
|
36813
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36814
|
-
measurementMethod?: string | null;
|
|
36815
|
-
}
|
|
36816
|
-
|
|
36817
|
-
export interface ImaChemicalAnalysisResultDto extends ImaCdfEntityReadBase {
|
|
36818
|
-
sampleReference?: string | null;
|
|
36819
|
-
analysisType?: string | null;
|
|
36820
|
-
elements: ImaChemicalElementResultDto[];
|
|
36821
|
-
indices: ImaChemicalIndexResultDto[];
|
|
36822
|
-
testStandards: string[];
|
|
36823
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36824
|
-
}
|
|
36825
|
-
|
|
36826
|
-
export interface ImaChemicalElementResultDto extends ImaCdfEntityReadBase {
|
|
36827
|
-
symbol?: string | null;
|
|
36828
|
-
value?: ImaResultValueDto | null;
|
|
36829
|
-
}
|
|
36830
|
-
|
|
36831
|
-
export interface ImaResultValueDto extends ImaCdfEntityReadBase {
|
|
36832
|
-
readValue?: string | null;
|
|
36833
|
-
value?: number | null;
|
|
36834
|
-
unit?: string | null;
|
|
36835
|
-
override?: ImaResultLineOverrideDto | null;
|
|
36836
|
-
}
|
|
36837
|
-
|
|
36838
|
-
export interface ImaChemicalIndexResultDto extends ImaCdfEntityReadBase {
|
|
36815
|
+
export interface ImaChemicalIndexResultDto {
|
|
36839
36816
|
name?: string | null;
|
|
36840
36817
|
value?: number | null;
|
|
36818
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36841
36819
|
}
|
|
36842
36820
|
|
|
36843
|
-
export interface ImaTensileTestResultDto
|
|
36821
|
+
export interface ImaTensileTestResultDto {
|
|
36822
|
+
heatNumber?: string | null;
|
|
36844
36823
|
sampleReference?: string | null;
|
|
36845
36824
|
orientation?: string | null;
|
|
36846
36825
|
testLocation?: string | null;
|
|
@@ -36855,17 +36834,24 @@ export interface ImaTensileTestResultDto extends ImaCdfEntityReadBase {
|
|
|
36855
36834
|
override?: ImaResultLineOverrideDto | null;
|
|
36856
36835
|
}
|
|
36857
36836
|
|
|
36858
|
-
export interface
|
|
36837
|
+
export interface ImaResultValueDto {
|
|
36838
|
+
readValue?: string | null;
|
|
36839
|
+
unit?: string | null;
|
|
36840
|
+
override?: ImaResultLineOverrideDto | null;
|
|
36841
|
+
}
|
|
36842
|
+
|
|
36843
|
+
export interface ImaYieldStrengthResultDto {
|
|
36859
36844
|
label?: string | null;
|
|
36860
36845
|
value?: ImaResultValueDto | null;
|
|
36861
36846
|
}
|
|
36862
36847
|
|
|
36863
|
-
export interface ImaElongationResultDto
|
|
36848
|
+
export interface ImaElongationResultDto {
|
|
36864
36849
|
gauge?: string | null;
|
|
36865
36850
|
value?: ImaResultValueDto | null;
|
|
36866
36851
|
}
|
|
36867
36852
|
|
|
36868
|
-
export interface ImaHardnessTestResultDto
|
|
36853
|
+
export interface ImaHardnessTestResultDto {
|
|
36854
|
+
heatNumber?: string | null;
|
|
36869
36855
|
sampleReference?: string | null;
|
|
36870
36856
|
orientation?: string | null;
|
|
36871
36857
|
testLocation?: string | null;
|
|
@@ -36874,13 +36860,14 @@ export interface ImaHardnessTestResultDto extends ImaCdfEntityReadBase {
|
|
|
36874
36860
|
override?: ImaResultLineOverrideDto | null;
|
|
36875
36861
|
}
|
|
36876
36862
|
|
|
36877
|
-
export interface ImaHardnessReadingResultDto
|
|
36863
|
+
export interface ImaHardnessReadingResultDto {
|
|
36878
36864
|
label?: string | null;
|
|
36879
36865
|
scale?: string | null;
|
|
36880
36866
|
value?: number | null;
|
|
36881
36867
|
}
|
|
36882
36868
|
|
|
36883
|
-
export interface ImaImpactTestResultDto
|
|
36869
|
+
export interface ImaImpactTestResultDto {
|
|
36870
|
+
heatNumber?: string | null;
|
|
36884
36871
|
sampleReference?: string | null;
|
|
36885
36872
|
orientation?: string | null;
|
|
36886
36873
|
testLocation?: string | null;
|
|
@@ -36896,7 +36883,8 @@ export interface ImaImpactTestResultDto extends ImaCdfEntityReadBase {
|
|
|
36896
36883
|
override?: ImaResultLineOverrideDto | null;
|
|
36897
36884
|
}
|
|
36898
36885
|
|
|
36899
|
-
export interface ImaCorrosionTestResultDto
|
|
36886
|
+
export interface ImaCorrosionTestResultDto {
|
|
36887
|
+
heatNumber?: string | null;
|
|
36900
36888
|
sampleReference?: string | null;
|
|
36901
36889
|
testLocation?: string | null;
|
|
36902
36890
|
testMethod?: string | null;
|
|
@@ -36909,7 +36897,8 @@ export interface ImaCorrosionTestResultDto extends ImaCdfEntityReadBase {
|
|
|
36909
36897
|
override?: ImaResultLineOverrideDto | null;
|
|
36910
36898
|
}
|
|
36911
36899
|
|
|
36912
|
-
export interface ImaFerriteResultDto
|
|
36900
|
+
export interface ImaFerriteResultDto {
|
|
36901
|
+
heatNumber?: string | null;
|
|
36913
36902
|
sampleReference?: string | null;
|
|
36914
36903
|
testLocation?: string | null;
|
|
36915
36904
|
ferrite?: ImaResultValueDto | null;
|
|
@@ -36921,7 +36910,8 @@ export interface ImaFerriteResultDto extends ImaCdfEntityReadBase {
|
|
|
36921
36910
|
override?: ImaResultLineOverrideDto | null;
|
|
36922
36911
|
}
|
|
36923
36912
|
|
|
36924
|
-
export interface ImaHeatTreatmentResultDto
|
|
36913
|
+
export interface ImaHeatTreatmentResultDto {
|
|
36914
|
+
heatNumber?: string | null;
|
|
36925
36915
|
stepType?: string | null;
|
|
36926
36916
|
treatmentName?: string | null;
|
|
36927
36917
|
temperature?: ImaResultValueDto | null;
|
|
@@ -36933,7 +36923,7 @@ export interface ImaHeatTreatmentResultDto extends ImaCdfEntityReadBase {
|
|
|
36933
36923
|
override?: ImaResultLineOverrideDto | null;
|
|
36934
36924
|
}
|
|
36935
36925
|
|
|
36936
|
-
export interface ImaDocumentTypesResultsDto
|
|
36926
|
+
export interface ImaDocumentTypesResultsDto {
|
|
36937
36927
|
ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
36938
36928
|
radiologicalReport?: ImaSupplementaryCheckResultDto | null;
|
|
36939
36929
|
liquidPenetrantCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
@@ -37065,7 +37055,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
37065
37055
|
purchaseOrderPartRevision?: string | null;
|
|
37066
37056
|
purchaseOrderDrawing?: string | null;
|
|
37067
37057
|
purchaseOrderDrawingRevision?: string | null;
|
|
37068
|
-
|
|
37058
|
+
heatNumbers?: string[] | null;
|
|
37069
37059
|
status: ImaMaterialCheckStatusDto;
|
|
37070
37060
|
created: Date;
|
|
37071
37061
|
createdBy: string;
|
|
@@ -37275,10 +37265,27 @@ export interface ImaChemistrySpecificationDto {
|
|
|
37275
37265
|
copper?: ImaSpecificationLineDto | null;
|
|
37276
37266
|
nitrogen?: ImaSpecificationLineDto | null;
|
|
37277
37267
|
wolfram?: ImaSpecificationLineDto | null;
|
|
37268
|
+
titanium?: ImaSpecificationLineDto | null;
|
|
37269
|
+
aluminum?: ImaSpecificationLineDto | null;
|
|
37270
|
+
niobium?: ImaSpecificationLineDto | null;
|
|
37271
|
+
tantalum?: ImaSpecificationLineDto | null;
|
|
37272
|
+
cobalt?: ImaSpecificationLineDto | null;
|
|
37273
|
+
boron?: ImaSpecificationLineDto | null;
|
|
37274
|
+
lead?: ImaSpecificationLineDto | null;
|
|
37275
|
+
selenium?: ImaSpecificationLineDto | null;
|
|
37276
|
+
bismuth?: ImaSpecificationLineDto | null;
|
|
37278
37277
|
iron?: ImaSpecificationLineDto | null;
|
|
37278
|
+
vanadium?: ImaSpecificationLineDto | null;
|
|
37279
|
+
oxygen?: ImaSpecificationLineDto | null;
|
|
37280
|
+
calcium?: ImaSpecificationLineDto | null;
|
|
37281
|
+
arsenic?: ImaSpecificationLineDto | null;
|
|
37282
|
+
tin?: ImaSpecificationLineDto | null;
|
|
37283
|
+
antimony?: ImaSpecificationLineDto | null;
|
|
37284
|
+
hydrogen?: ImaSpecificationLineDto | null;
|
|
37285
|
+
zirconium?: ImaSpecificationLineDto | null;
|
|
37279
37286
|
}
|
|
37280
37287
|
|
|
37281
|
-
export interface ImaSpecificationLineDto
|
|
37288
|
+
export interface ImaSpecificationLineDto {
|
|
37282
37289
|
min?: number | null;
|
|
37283
37290
|
max?: number | null;
|
|
37284
37291
|
}
|