@ignos/api-client 20260320.86.1 → 20260323.88.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 +60 -49
- package/lib/ignosportal-api.js +50 -15
- package/package.json +1 -1
- package/src/ignosportal-api.ts +102 -55
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2516,6 +2516,7 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
|
|
|
2516
2516
|
export interface IInspectMatchCertificateChecksClient {
|
|
2517
2517
|
listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
|
|
2518
2518
|
getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
2519
|
+
deleteMaterialCheck(id: string): Promise<void>;
|
|
2519
2520
|
processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
|
|
2520
2521
|
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2521
2522
|
}
|
|
@@ -2529,6 +2530,8 @@ export declare class InspectMatchCertificateChecksClient extends AuthorizedApiBa
|
|
|
2529
2530
|
protected processListMaterialCertificateChecks(response: Response): Promise<ImaMaterialChecksPageDto>;
|
|
2530
2531
|
getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
2531
2532
|
protected processGetMaterialCertificateCheck(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2533
|
+
deleteMaterialCheck(id: string): Promise<void>;
|
|
2534
|
+
protected processDeleteMaterialCheck(response: Response): Promise<void>;
|
|
2532
2535
|
processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
|
|
2533
2536
|
protected processProcessMaterialCertificate(response: Response): Promise<void>;
|
|
2534
2537
|
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
@@ -2537,8 +2540,8 @@ export declare class InspectMatchCertificateChecksClient extends AuthorizedApiBa
|
|
|
2537
2540
|
export interface IInspectMatchCertificateTypesClient {
|
|
2538
2541
|
listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2539
2542
|
getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2540
|
-
|
|
2541
|
-
|
|
2543
|
+
updateMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2544
|
+
deleteMaterialCertificateType(id: string, version: number | null | undefined): Promise<void>;
|
|
2542
2545
|
createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2543
2546
|
copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2544
2547
|
createNewVersionForCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
@@ -2554,10 +2557,10 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
|
|
|
2554
2557
|
protected processListMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2555
2558
|
getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2556
2559
|
protected processGetMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2557
|
-
|
|
2558
|
-
protected
|
|
2559
|
-
|
|
2560
|
-
protected
|
|
2560
|
+
updateMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2561
|
+
protected processUpdateMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2562
|
+
deleteMaterialCertificateType(id: string, version: number | null | undefined): Promise<void>;
|
|
2563
|
+
protected processDeleteMaterialCertificateType(response: Response): Promise<void>;
|
|
2561
2564
|
createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2562
2565
|
protected processCreateMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2563
2566
|
copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
@@ -2570,9 +2573,9 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
|
|
|
2570
2573
|
export interface IInspectMatchSpecificationsClient {
|
|
2571
2574
|
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2572
2575
|
getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
+
updateSpecification(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2577
|
+
deleteSpecification(id: string, version: number | null | undefined): Promise<void>;
|
|
2578
|
+
createSpecification(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
2576
2579
|
copySpecification(id: string, version: number | null | undefined, copyDto: ImaCopySpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
2577
2580
|
createNewVersionForSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2578
2581
|
releaseSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
@@ -2587,12 +2590,12 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
|
|
|
2587
2590
|
protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
|
|
2588
2591
|
getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2589
2592
|
protected processGetSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2590
|
-
|
|
2591
|
-
protected
|
|
2592
|
-
|
|
2593
|
-
protected
|
|
2594
|
-
|
|
2595
|
-
protected
|
|
2593
|
+
updateSpecification(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2594
|
+
protected processUpdateSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2595
|
+
deleteSpecification(id: string, version: number | null | undefined): Promise<void>;
|
|
2596
|
+
protected processDeleteSpecification(response: Response): Promise<void>;
|
|
2597
|
+
createSpecification(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
2598
|
+
protected processCreateSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2596
2599
|
copySpecification(id: string, version: number | null | undefined, copyDto: ImaCopySpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
2597
2600
|
protected processCopySpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2598
2601
|
createNewVersionForSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
@@ -6492,6 +6495,7 @@ export interface BookingRequestListDto {
|
|
|
6492
6495
|
createdByFilter?: BookingCreatedByDto | null;
|
|
6493
6496
|
bookingOrder?: BookingOrderDto;
|
|
6494
6497
|
includeMyLocation?: boolean | null;
|
|
6498
|
+
maxAgeOfBookingInDays?: number | null;
|
|
6495
6499
|
continuationToken?: string | null;
|
|
6496
6500
|
}
|
|
6497
6501
|
export type BookingTaskDto = "MyTasks" | "OthersTasks";
|
|
@@ -7466,6 +7470,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
7466
7470
|
createdById: string;
|
|
7467
7471
|
updatedBy?: string | null;
|
|
7468
7472
|
updatedById?: string | null;
|
|
7473
|
+
isDeleted?: boolean;
|
|
7469
7474
|
}
|
|
7470
7475
|
export type ImaMaterialCheckStatus = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
|
|
7471
7476
|
export interface ImaMaterialChecksPageRequestDto {
|
|
@@ -7513,11 +7518,12 @@ export interface ImaMaterialCheckDto {
|
|
|
7513
7518
|
createdById: string;
|
|
7514
7519
|
updatedBy?: string | null;
|
|
7515
7520
|
updatedById?: string | null;
|
|
7521
|
+
isDeleted?: boolean;
|
|
7516
7522
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
7517
7523
|
specificationChemistry: ImaSpecificationChemistryResultsDto;
|
|
7518
7524
|
specificationMechanical: ImaSpecificationMechanicalResultsDto;
|
|
7519
7525
|
specificationFerrite: ImaSpecificationFerriteResultsDto;
|
|
7520
|
-
|
|
7526
|
+
specificationHeatTreatments: ImaSpecificationHeatTreatmentResultDto[];
|
|
7521
7527
|
}
|
|
7522
7528
|
export interface ImaCertificateTypeResultsDto {
|
|
7523
7529
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
@@ -7618,11 +7624,12 @@ export interface ImaSpecificationResultLineDto {
|
|
|
7618
7624
|
specificationOperator?: string | null;
|
|
7619
7625
|
specificationValue1?: number | null;
|
|
7620
7626
|
specificationValue2?: number | null;
|
|
7621
|
-
|
|
7627
|
+
specificationUnit?: ImaSpecificationUnit | null;
|
|
7622
7628
|
readValue?: string | null;
|
|
7623
7629
|
status: ImaSpecificationResultLineStatus;
|
|
7624
7630
|
override?: ImaResultLineOverrideDto | null;
|
|
7625
7631
|
}
|
|
7632
|
+
export type ImaSpecificationUnit = "Percentage" | "Joule" | "Celsius" | "Fahrenheit" | "Mpa" | "Hbw" | "NotSet";
|
|
7626
7633
|
export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
7627
7634
|
export interface ImaSpecificationMechanicalResultsDto {
|
|
7628
7635
|
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
@@ -7645,26 +7652,21 @@ export interface ImaSpecificationFerriteResultLineDto {
|
|
|
7645
7652
|
override?: ImaResultLineOverrideDto | null;
|
|
7646
7653
|
measurementMethod?: string | null;
|
|
7647
7654
|
}
|
|
7648
|
-
export interface
|
|
7649
|
-
|
|
7650
|
-
|
|
7651
|
-
|
|
7652
|
-
|
|
7653
|
-
|
|
7654
|
-
|
|
7655
|
-
|
|
7656
|
-
|
|
7657
|
-
|
|
7658
|
-
|
|
7659
|
-
|
|
7660
|
-
|
|
7661
|
-
|
|
7662
|
-
coolingHoldingTime?: number | null;
|
|
7663
|
-
status: ImaSpecificationResultLineStatus;
|
|
7664
|
-
override?: ImaResultLineOverrideDto | null;
|
|
7655
|
+
export interface ImaSpecificationHeatTreatmentResultDto {
|
|
7656
|
+
step: number;
|
|
7657
|
+
cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
|
|
7658
|
+
heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
|
|
7659
|
+
}
|
|
7660
|
+
export interface ImaSpecificationHeatTreatmentCoolingResult {
|
|
7661
|
+
coolingMethods?: string[] | null;
|
|
7662
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
7663
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
7664
|
+
}
|
|
7665
|
+
export interface ImaSpecificationHeatTreatmentHeatingResult {
|
|
7666
|
+
heatingMethod?: string | null;
|
|
7667
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
7668
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
7665
7669
|
}
|
|
7666
|
-
export type ImaHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
|
|
7667
|
-
export type ImaCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching" | "NotSet";
|
|
7668
7670
|
export interface ProcessImaCheckRequestDto {
|
|
7669
7671
|
files: UploadFileDto[];
|
|
7670
7672
|
specificationId: string;
|
|
@@ -7805,6 +7807,7 @@ export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
|
7805
7807
|
updatedBy?: string | null;
|
|
7806
7808
|
updatedById?: string | null;
|
|
7807
7809
|
updated: Date;
|
|
7810
|
+
isDeleted: boolean;
|
|
7808
7811
|
}
|
|
7809
7812
|
export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7810
7813
|
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
@@ -7822,6 +7825,7 @@ export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
|
7822
7825
|
updatedBy?: string | null;
|
|
7823
7826
|
updatedById?: string | null;
|
|
7824
7827
|
updated: Date;
|
|
7828
|
+
isDeleted: boolean;
|
|
7825
7829
|
requirements: ImaCertificateTypeRequirementsDto;
|
|
7826
7830
|
}
|
|
7827
7831
|
export interface ImaCertificateTypeVersionDto {
|
|
@@ -7993,6 +7997,7 @@ export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
|
|
|
7993
7997
|
createdById: string;
|
|
7994
7998
|
updatedBy: string;
|
|
7995
7999
|
updatedById: string;
|
|
8000
|
+
isDeleted: boolean;
|
|
7996
8001
|
}
|
|
7997
8002
|
export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7998
8003
|
export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
@@ -8012,10 +8017,11 @@ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8012
8017
|
updatedBy: string;
|
|
8013
8018
|
updatedById: string;
|
|
8014
8019
|
updated: Date;
|
|
8020
|
+
isDeleted: boolean;
|
|
8015
8021
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
8016
8022
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
8017
8023
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
8018
|
-
|
|
8024
|
+
heatTreatmentSpecifications: ImaHeatTreatmentSpecificationDto[];
|
|
8019
8025
|
}
|
|
8020
8026
|
export interface ImaSpecificationVersionDto {
|
|
8021
8027
|
version?: number;
|
|
@@ -8039,10 +8045,9 @@ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
|
8039
8045
|
operator: ImaSpecificationOperator;
|
|
8040
8046
|
value1: number;
|
|
8041
8047
|
value2?: number | null;
|
|
8042
|
-
|
|
8048
|
+
unit: ImaSpecificationUnit;
|
|
8043
8049
|
}
|
|
8044
8050
|
export type ImaSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
|
|
8045
|
-
export type ImaSpecificationSymbol = "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw" | "NotSet";
|
|
8046
8051
|
export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
8047
8052
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8048
8053
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
@@ -8054,17 +8059,23 @@ export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8054
8059
|
export interface ImaFerriteSpecificationDto extends ImaCdfEntityReadBase {
|
|
8055
8060
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8056
8061
|
}
|
|
8057
|
-
export interface ImaHeatTreatmentSpecificationDto {
|
|
8058
|
-
|
|
8062
|
+
export interface ImaHeatTreatmentSpecificationDto extends ImaCdfEntityReadBase {
|
|
8063
|
+
step: number;
|
|
8064
|
+
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
8065
|
+
heating?: ImaHeatTreatmentSpecificationHeatingDto | null;
|
|
8066
|
+
}
|
|
8067
|
+
export interface ImaHeatTreatmentSpecificationCoolingDto extends ImaCdfEntityReadBase {
|
|
8068
|
+
coolingMethods: ImaHeatTreatmentCoolingMethod[];
|
|
8069
|
+
temperature?: ImaSpecificationLineDto | null;
|
|
8070
|
+
duration?: ImaSpecificationLineDto | null;
|
|
8059
8071
|
}
|
|
8060
|
-
export
|
|
8061
|
-
|
|
8062
|
-
|
|
8063
|
-
|
|
8064
|
-
|
|
8065
|
-
coolingTreatmentTemperature?: number | null;
|
|
8066
|
-
coolingHoldingTime?: number | null;
|
|
8072
|
+
export type ImaHeatTreatmentCoolingMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching" | "NotSet";
|
|
8073
|
+
export interface ImaHeatTreatmentSpecificationHeatingDto extends ImaCdfEntityReadBase {
|
|
8074
|
+
heatingMethod: ImaHeatTreatmentHeatingMethod;
|
|
8075
|
+
temperature?: ImaSpecificationLineDto | null;
|
|
8076
|
+
duration?: ImaSpecificationLineDto | null;
|
|
8067
8077
|
}
|
|
8078
|
+
export type ImaHeatTreatmentHeatingMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
|
|
8068
8079
|
export interface ImaCreateSpecificationRequestDto {
|
|
8069
8080
|
specificationName: string;
|
|
8070
8081
|
specificationNumber: string;
|
|
@@ -8087,7 +8098,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8087
8098
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
8088
8099
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
8089
8100
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8090
|
-
|
|
8101
|
+
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
8091
8102
|
}
|
|
8092
8103
|
export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
8093
8104
|
export interface MeasurementFormSchemaDto {
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -20431,6 +20431,41 @@ export class InspectMatchCertificateChecksClient extends AuthorizedApiBase {
|
|
|
20431
20431
|
}
|
|
20432
20432
|
return Promise.resolve(null);
|
|
20433
20433
|
}
|
|
20434
|
+
deleteMaterialCheck(id) {
|
|
20435
|
+
let url_ = this.baseUrl + "/inspect/match/material-checks/{id}";
|
|
20436
|
+
if (id === undefined || id === null)
|
|
20437
|
+
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
20438
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
20439
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
20440
|
+
let options_ = {
|
|
20441
|
+
method: "DELETE",
|
|
20442
|
+
headers: {}
|
|
20443
|
+
};
|
|
20444
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
20445
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
20446
|
+
}).then((_response) => {
|
|
20447
|
+
return this.processDeleteMaterialCheck(_response);
|
|
20448
|
+
});
|
|
20449
|
+
}
|
|
20450
|
+
processDeleteMaterialCheck(response) {
|
|
20451
|
+
const status = response.status;
|
|
20452
|
+
let _headers = {};
|
|
20453
|
+
if (response.headers && response.headers.forEach) {
|
|
20454
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
20455
|
+
}
|
|
20456
|
+
;
|
|
20457
|
+
if (status === 204) {
|
|
20458
|
+
return response.text().then((_responseText) => {
|
|
20459
|
+
return;
|
|
20460
|
+
});
|
|
20461
|
+
}
|
|
20462
|
+
else if (status !== 200 && status !== 204) {
|
|
20463
|
+
return response.text().then((_responseText) => {
|
|
20464
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
20465
|
+
});
|
|
20466
|
+
}
|
|
20467
|
+
return Promise.resolve(null);
|
|
20468
|
+
}
|
|
20434
20469
|
processMaterialCertificate(certificatesRequest) {
|
|
20435
20470
|
let url_ = this.baseUrl + "/inspect/match/material-checks";
|
|
20436
20471
|
url_ = url_.replace(/[?&]$/, "");
|
|
@@ -20590,7 +20625,7 @@ export class InspectMatchCertificateTypesClient extends AuthorizedApiBase {
|
|
|
20590
20625
|
}
|
|
20591
20626
|
return Promise.resolve(null);
|
|
20592
20627
|
}
|
|
20593
|
-
|
|
20628
|
+
updateMaterialCertificateType(id, version, payload) {
|
|
20594
20629
|
let url_ = this.baseUrl + "/inspect/match/certificate-types/{id}?";
|
|
20595
20630
|
if (id === undefined || id === null)
|
|
20596
20631
|
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
@@ -20610,10 +20645,10 @@ export class InspectMatchCertificateTypesClient extends AuthorizedApiBase {
|
|
|
20610
20645
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
20611
20646
|
return this.http.fetch(url_, transformedOptions_);
|
|
20612
20647
|
}).then((_response) => {
|
|
20613
|
-
return this.
|
|
20648
|
+
return this.processUpdateMaterialCertificateType(_response);
|
|
20614
20649
|
});
|
|
20615
20650
|
}
|
|
20616
|
-
|
|
20651
|
+
processUpdateMaterialCertificateType(response) {
|
|
20617
20652
|
const status = response.status;
|
|
20618
20653
|
let _headers = {};
|
|
20619
20654
|
if (response.headers && response.headers.forEach) {
|
|
@@ -20634,7 +20669,7 @@ export class InspectMatchCertificateTypesClient extends AuthorizedApiBase {
|
|
|
20634
20669
|
}
|
|
20635
20670
|
return Promise.resolve(null);
|
|
20636
20671
|
}
|
|
20637
|
-
|
|
20672
|
+
deleteMaterialCertificateType(id, version) {
|
|
20638
20673
|
let url_ = this.baseUrl + "/inspect/match/certificate-types/{id}?";
|
|
20639
20674
|
if (id === undefined || id === null)
|
|
20640
20675
|
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
@@ -20649,10 +20684,10 @@ export class InspectMatchCertificateTypesClient extends AuthorizedApiBase {
|
|
|
20649
20684
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
20650
20685
|
return this.http.fetch(url_, transformedOptions_);
|
|
20651
20686
|
}).then((_response) => {
|
|
20652
|
-
return this.
|
|
20687
|
+
return this.processDeleteMaterialCertificateType(_response);
|
|
20653
20688
|
});
|
|
20654
20689
|
}
|
|
20655
|
-
|
|
20690
|
+
processDeleteMaterialCertificateType(response) {
|
|
20656
20691
|
const status = response.status;
|
|
20657
20692
|
let _headers = {};
|
|
20658
20693
|
if (response.headers && response.headers.forEach) {
|
|
@@ -20920,7 +20955,7 @@ export class InspectMatchSpecificationsClient extends AuthorizedApiBase {
|
|
|
20920
20955
|
}
|
|
20921
20956
|
return Promise.resolve(null);
|
|
20922
20957
|
}
|
|
20923
|
-
|
|
20958
|
+
updateSpecification(id, version, dto) {
|
|
20924
20959
|
let url_ = this.baseUrl + "/inspect/match/specifications/{id}?";
|
|
20925
20960
|
if (id === undefined || id === null)
|
|
20926
20961
|
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
@@ -20940,10 +20975,10 @@ export class InspectMatchSpecificationsClient extends AuthorizedApiBase {
|
|
|
20940
20975
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
20941
20976
|
return this.http.fetch(url_, transformedOptions_);
|
|
20942
20977
|
}).then((_response) => {
|
|
20943
|
-
return this.
|
|
20978
|
+
return this.processUpdateSpecification(_response);
|
|
20944
20979
|
});
|
|
20945
20980
|
}
|
|
20946
|
-
|
|
20981
|
+
processUpdateSpecification(response) {
|
|
20947
20982
|
const status = response.status;
|
|
20948
20983
|
let _headers = {};
|
|
20949
20984
|
if (response.headers && response.headers.forEach) {
|
|
@@ -20964,7 +20999,7 @@ export class InspectMatchSpecificationsClient extends AuthorizedApiBase {
|
|
|
20964
20999
|
}
|
|
20965
21000
|
return Promise.resolve(null);
|
|
20966
21001
|
}
|
|
20967
|
-
|
|
21002
|
+
deleteSpecification(id, version) {
|
|
20968
21003
|
let url_ = this.baseUrl + "/inspect/match/specifications/{id}?";
|
|
20969
21004
|
if (id === undefined || id === null)
|
|
20970
21005
|
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
@@ -20979,10 +21014,10 @@ export class InspectMatchSpecificationsClient extends AuthorizedApiBase {
|
|
|
20979
21014
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
20980
21015
|
return this.http.fetch(url_, transformedOptions_);
|
|
20981
21016
|
}).then((_response) => {
|
|
20982
|
-
return this.
|
|
21017
|
+
return this.processDeleteSpecification(_response);
|
|
20983
21018
|
});
|
|
20984
21019
|
}
|
|
20985
|
-
|
|
21020
|
+
processDeleteSpecification(response) {
|
|
20986
21021
|
const status = response.status;
|
|
20987
21022
|
let _headers = {};
|
|
20988
21023
|
if (response.headers && response.headers.forEach) {
|
|
@@ -21001,7 +21036,7 @@ export class InspectMatchSpecificationsClient extends AuthorizedApiBase {
|
|
|
21001
21036
|
}
|
|
21002
21037
|
return Promise.resolve(null);
|
|
21003
21038
|
}
|
|
21004
|
-
|
|
21039
|
+
createSpecification(createRequestDto) {
|
|
21005
21040
|
let url_ = this.baseUrl + "/inspect/match/specifications";
|
|
21006
21041
|
url_ = url_.replace(/[?&]$/, "");
|
|
21007
21042
|
const content_ = JSON.stringify(createRequestDto);
|
|
@@ -21016,10 +21051,10 @@ export class InspectMatchSpecificationsClient extends AuthorizedApiBase {
|
|
|
21016
21051
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
21017
21052
|
return this.http.fetch(url_, transformedOptions_);
|
|
21018
21053
|
}).then((_response) => {
|
|
21019
|
-
return this.
|
|
21054
|
+
return this.processCreateSpecification(_response);
|
|
21020
21055
|
});
|
|
21021
21056
|
}
|
|
21022
|
-
|
|
21057
|
+
processCreateSpecification(response) {
|
|
21023
21058
|
const status = response.status;
|
|
21024
21059
|
let _headers = {};
|
|
21025
21060
|
if (response.headers && response.headers.forEach) {
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -21791,6 +21791,8 @@ export interface IInspectMatchCertificateChecksClient {
|
|
|
21791
21791
|
|
|
21792
21792
|
getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
21793
21793
|
|
|
21794
|
+
deleteMaterialCheck(id: string): Promise<void>;
|
|
21795
|
+
|
|
21794
21796
|
processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
|
|
21795
21797
|
|
|
21796
21798
|
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
@@ -21883,6 +21885,41 @@ export class InspectMatchCertificateChecksClient extends AuthorizedApiBase imple
|
|
|
21883
21885
|
return Promise.resolve<ImaMaterialCheckDto>(null as any);
|
|
21884
21886
|
}
|
|
21885
21887
|
|
|
21888
|
+
deleteMaterialCheck(id: string): Promise<void> {
|
|
21889
|
+
let url_ = this.baseUrl + "/inspect/match/material-checks/{id}";
|
|
21890
|
+
if (id === undefined || id === null)
|
|
21891
|
+
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
21892
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
21893
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
21894
|
+
|
|
21895
|
+
let options_: RequestInit = {
|
|
21896
|
+
method: "DELETE",
|
|
21897
|
+
headers: {
|
|
21898
|
+
}
|
|
21899
|
+
};
|
|
21900
|
+
|
|
21901
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
21902
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
21903
|
+
}).then((_response: Response) => {
|
|
21904
|
+
return this.processDeleteMaterialCheck(_response);
|
|
21905
|
+
});
|
|
21906
|
+
}
|
|
21907
|
+
|
|
21908
|
+
protected processDeleteMaterialCheck(response: Response): Promise<void> {
|
|
21909
|
+
const status = response.status;
|
|
21910
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
21911
|
+
if (status === 204) {
|
|
21912
|
+
return response.text().then((_responseText) => {
|
|
21913
|
+
return;
|
|
21914
|
+
});
|
|
21915
|
+
} else if (status !== 200 && status !== 204) {
|
|
21916
|
+
return response.text().then((_responseText) => {
|
|
21917
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
21918
|
+
});
|
|
21919
|
+
}
|
|
21920
|
+
return Promise.resolve<void>(null as any);
|
|
21921
|
+
}
|
|
21922
|
+
|
|
21886
21923
|
processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void> {
|
|
21887
21924
|
let url_ = this.baseUrl + "/inspect/match/material-checks";
|
|
21888
21925
|
url_ = url_.replace(/[?&]$/, "");
|
|
@@ -21965,9 +22002,9 @@ export interface IInspectMatchCertificateTypesClient {
|
|
|
21965
22002
|
|
|
21966
22003
|
getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
21967
22004
|
|
|
21968
|
-
|
|
22005
|
+
updateMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
21969
22006
|
|
|
21970
|
-
|
|
22007
|
+
deleteMaterialCertificateType(id: string, version: number | null | undefined): Promise<void>;
|
|
21971
22008
|
|
|
21972
22009
|
createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
21973
22010
|
|
|
@@ -22063,7 +22100,7 @@ export class InspectMatchCertificateTypesClient extends AuthorizedApiBase implem
|
|
|
22063
22100
|
return Promise.resolve<ImaCertificateTypeDto>(null as any);
|
|
22064
22101
|
}
|
|
22065
22102
|
|
|
22066
|
-
|
|
22103
|
+
updateMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto> {
|
|
22067
22104
|
let url_ = this.baseUrl + "/inspect/match/certificate-types/{id}?";
|
|
22068
22105
|
if (id === undefined || id === null)
|
|
22069
22106
|
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
@@ -22086,11 +22123,11 @@ export class InspectMatchCertificateTypesClient extends AuthorizedApiBase implem
|
|
|
22086
22123
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22087
22124
|
return this.http.fetch(url_, transformedOptions_);
|
|
22088
22125
|
}).then((_response: Response) => {
|
|
22089
|
-
return this.
|
|
22126
|
+
return this.processUpdateMaterialCertificateType(_response);
|
|
22090
22127
|
});
|
|
22091
22128
|
}
|
|
22092
22129
|
|
|
22093
|
-
protected
|
|
22130
|
+
protected processUpdateMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto> {
|
|
22094
22131
|
const status = response.status;
|
|
22095
22132
|
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22096
22133
|
if (status === 200) {
|
|
@@ -22107,7 +22144,7 @@ export class InspectMatchCertificateTypesClient extends AuthorizedApiBase implem
|
|
|
22107
22144
|
return Promise.resolve<ImaCertificateTypeDto>(null as any);
|
|
22108
22145
|
}
|
|
22109
22146
|
|
|
22110
|
-
|
|
22147
|
+
deleteMaterialCertificateType(id: string, version: number | null | undefined): Promise<void> {
|
|
22111
22148
|
let url_ = this.baseUrl + "/inspect/match/certificate-types/{id}?";
|
|
22112
22149
|
if (id === undefined || id === null)
|
|
22113
22150
|
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
@@ -22125,11 +22162,11 @@ export class InspectMatchCertificateTypesClient extends AuthorizedApiBase implem
|
|
|
22125
22162
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22126
22163
|
return this.http.fetch(url_, transformedOptions_);
|
|
22127
22164
|
}).then((_response: Response) => {
|
|
22128
|
-
return this.
|
|
22165
|
+
return this.processDeleteMaterialCertificateType(_response);
|
|
22129
22166
|
});
|
|
22130
22167
|
}
|
|
22131
22168
|
|
|
22132
|
-
protected
|
|
22169
|
+
protected processDeleteMaterialCertificateType(response: Response): Promise<void> {
|
|
22133
22170
|
const status = response.status;
|
|
22134
22171
|
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22135
22172
|
if (status === 204) {
|
|
@@ -22314,11 +22351,11 @@ export interface IInspectMatchSpecificationsClient {
|
|
|
22314
22351
|
|
|
22315
22352
|
getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
22316
22353
|
|
|
22317
|
-
|
|
22354
|
+
updateSpecification(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
|
|
22318
22355
|
|
|
22319
|
-
|
|
22356
|
+
deleteSpecification(id: string, version: number | null | undefined): Promise<void>;
|
|
22320
22357
|
|
|
22321
|
-
|
|
22358
|
+
createSpecification(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
22322
22359
|
|
|
22323
22360
|
copySpecification(id: string, version: number | null | undefined, copyDto: ImaCopySpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
22324
22361
|
|
|
@@ -22412,7 +22449,7 @@ export class InspectMatchSpecificationsClient extends AuthorizedApiBase implemen
|
|
|
22412
22449
|
return Promise.resolve<ImaSpecificationDto>(null as any);
|
|
22413
22450
|
}
|
|
22414
22451
|
|
|
22415
|
-
|
|
22452
|
+
updateSpecification(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto> {
|
|
22416
22453
|
let url_ = this.baseUrl + "/inspect/match/specifications/{id}?";
|
|
22417
22454
|
if (id === undefined || id === null)
|
|
22418
22455
|
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
@@ -22435,11 +22472,11 @@ export class InspectMatchSpecificationsClient extends AuthorizedApiBase implemen
|
|
|
22435
22472
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22436
22473
|
return this.http.fetch(url_, transformedOptions_);
|
|
22437
22474
|
}).then((_response: Response) => {
|
|
22438
|
-
return this.
|
|
22475
|
+
return this.processUpdateSpecification(_response);
|
|
22439
22476
|
});
|
|
22440
22477
|
}
|
|
22441
22478
|
|
|
22442
|
-
protected
|
|
22479
|
+
protected processUpdateSpecification(response: Response): Promise<ImaSpecificationDto> {
|
|
22443
22480
|
const status = response.status;
|
|
22444
22481
|
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22445
22482
|
if (status === 200) {
|
|
@@ -22456,7 +22493,7 @@ export class InspectMatchSpecificationsClient extends AuthorizedApiBase implemen
|
|
|
22456
22493
|
return Promise.resolve<ImaSpecificationDto>(null as any);
|
|
22457
22494
|
}
|
|
22458
22495
|
|
|
22459
|
-
|
|
22496
|
+
deleteSpecification(id: string, version: number | null | undefined): Promise<void> {
|
|
22460
22497
|
let url_ = this.baseUrl + "/inspect/match/specifications/{id}?";
|
|
22461
22498
|
if (id === undefined || id === null)
|
|
22462
22499
|
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
@@ -22474,11 +22511,11 @@ export class InspectMatchSpecificationsClient extends AuthorizedApiBase implemen
|
|
|
22474
22511
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22475
22512
|
return this.http.fetch(url_, transformedOptions_);
|
|
22476
22513
|
}).then((_response: Response) => {
|
|
22477
|
-
return this.
|
|
22514
|
+
return this.processDeleteSpecification(_response);
|
|
22478
22515
|
});
|
|
22479
22516
|
}
|
|
22480
22517
|
|
|
22481
|
-
protected
|
|
22518
|
+
protected processDeleteSpecification(response: Response): Promise<void> {
|
|
22482
22519
|
const status = response.status;
|
|
22483
22520
|
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22484
22521
|
if (status === 204) {
|
|
@@ -22493,7 +22530,7 @@ export class InspectMatchSpecificationsClient extends AuthorizedApiBase implemen
|
|
|
22493
22530
|
return Promise.resolve<void>(null as any);
|
|
22494
22531
|
}
|
|
22495
22532
|
|
|
22496
|
-
|
|
22533
|
+
createSpecification(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto> {
|
|
22497
22534
|
let url_ = this.baseUrl + "/inspect/match/specifications";
|
|
22498
22535
|
url_ = url_.replace(/[?&]$/, "");
|
|
22499
22536
|
|
|
@@ -22511,11 +22548,11 @@ export class InspectMatchSpecificationsClient extends AuthorizedApiBase implemen
|
|
|
22511
22548
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22512
22549
|
return this.http.fetch(url_, transformedOptions_);
|
|
22513
22550
|
}).then((_response: Response) => {
|
|
22514
|
-
return this.
|
|
22551
|
+
return this.processCreateSpecification(_response);
|
|
22515
22552
|
});
|
|
22516
22553
|
}
|
|
22517
22554
|
|
|
22518
|
-
protected
|
|
22555
|
+
protected processCreateSpecification(response: Response): Promise<ImaSpecificationDto> {
|
|
22519
22556
|
const status = response.status;
|
|
22520
22557
|
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22521
22558
|
if (status === 200) {
|
|
@@ -32279,6 +32316,7 @@ export interface BookingRequestListDto {
|
|
|
32279
32316
|
createdByFilter?: BookingCreatedByDto | null;
|
|
32280
32317
|
bookingOrder?: BookingOrderDto;
|
|
32281
32318
|
includeMyLocation?: boolean | null;
|
|
32319
|
+
maxAgeOfBookingInDays?: number | null;
|
|
32282
32320
|
continuationToken?: string | null;
|
|
32283
32321
|
}
|
|
32284
32322
|
|
|
@@ -33379,6 +33417,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
33379
33417
|
createdById: string;
|
|
33380
33418
|
updatedBy?: string | null;
|
|
33381
33419
|
updatedById?: string | null;
|
|
33420
|
+
isDeleted?: boolean;
|
|
33382
33421
|
}
|
|
33383
33422
|
|
|
33384
33423
|
export type ImaMaterialCheckStatus = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
|
|
@@ -33430,11 +33469,12 @@ export interface ImaMaterialCheckDto {
|
|
|
33430
33469
|
createdById: string;
|
|
33431
33470
|
updatedBy?: string | null;
|
|
33432
33471
|
updatedById?: string | null;
|
|
33472
|
+
isDeleted?: boolean;
|
|
33433
33473
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
33434
33474
|
specificationChemistry: ImaSpecificationChemistryResultsDto;
|
|
33435
33475
|
specificationMechanical: ImaSpecificationMechanicalResultsDto;
|
|
33436
33476
|
specificationFerrite: ImaSpecificationFerriteResultsDto;
|
|
33437
|
-
|
|
33477
|
+
specificationHeatTreatments: ImaSpecificationHeatTreatmentResultDto[];
|
|
33438
33478
|
}
|
|
33439
33479
|
|
|
33440
33480
|
export interface ImaCertificateTypeResultsDto {
|
|
@@ -33548,12 +33588,14 @@ export interface ImaSpecificationResultLineDto {
|
|
|
33548
33588
|
specificationOperator?: string | null;
|
|
33549
33589
|
specificationValue1?: number | null;
|
|
33550
33590
|
specificationValue2?: number | null;
|
|
33551
|
-
|
|
33591
|
+
specificationUnit?: ImaSpecificationUnit | null;
|
|
33552
33592
|
readValue?: string | null;
|
|
33553
33593
|
status: ImaSpecificationResultLineStatus;
|
|
33554
33594
|
override?: ImaResultLineOverrideDto | null;
|
|
33555
33595
|
}
|
|
33556
33596
|
|
|
33597
|
+
export type ImaSpecificationUnit = "Percentage" | "Joule" | "Celsius" | "Fahrenheit" | "Mpa" | "Hbw" | "NotSet";
|
|
33598
|
+
|
|
33557
33599
|
export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
33558
33600
|
|
|
33559
33601
|
export interface ImaSpecificationMechanicalResultsDto {
|
|
@@ -33580,29 +33622,23 @@ export interface ImaSpecificationFerriteResultLineDto {
|
|
|
33580
33622
|
measurementMethod?: string | null;
|
|
33581
33623
|
}
|
|
33582
33624
|
|
|
33583
|
-
export interface
|
|
33584
|
-
|
|
33625
|
+
export interface ImaSpecificationHeatTreatmentResultDto {
|
|
33626
|
+
step: number;
|
|
33627
|
+
cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
|
|
33628
|
+
heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
|
|
33585
33629
|
}
|
|
33586
33630
|
|
|
33587
|
-
export interface
|
|
33588
|
-
|
|
33589
|
-
|
|
33590
|
-
|
|
33591
|
-
heatingTreatmentTemperature?: number | null;
|
|
33592
|
-
heatingHoldingTime?: number | null;
|
|
33593
|
-
specificationCoolingMethods?: ImaCoolingTreatmentMethod[] | null;
|
|
33594
|
-
specificationCoolingTreatmentTemperature?: number | null;
|
|
33595
|
-
specificationCoolingHoldingTime?: number | null;
|
|
33596
|
-
coolingMethod?: ImaCoolingTreatmentMethod | null;
|
|
33597
|
-
coolingTreatmentTemperature?: number | null;
|
|
33598
|
-
coolingHoldingTime?: number | null;
|
|
33599
|
-
status: ImaSpecificationResultLineStatus;
|
|
33600
|
-
override?: ImaResultLineOverrideDto | null;
|
|
33631
|
+
export interface ImaSpecificationHeatTreatmentCoolingResult {
|
|
33632
|
+
coolingMethods?: string[] | null;
|
|
33633
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
33634
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
33601
33635
|
}
|
|
33602
33636
|
|
|
33603
|
-
export
|
|
33604
|
-
|
|
33605
|
-
|
|
33637
|
+
export interface ImaSpecificationHeatTreatmentHeatingResult {
|
|
33638
|
+
heatingMethod?: string | null;
|
|
33639
|
+
temperature?: ImaSpecificationResultLineDto | null;
|
|
33640
|
+
duration?: ImaSpecificationResultLineDto | null;
|
|
33641
|
+
}
|
|
33606
33642
|
|
|
33607
33643
|
export interface ProcessImaCheckRequestDto {
|
|
33608
33644
|
files: UploadFileDto[];
|
|
@@ -33762,6 +33798,7 @@ export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
|
33762
33798
|
updatedBy?: string | null;
|
|
33763
33799
|
updatedById?: string | null;
|
|
33764
33800
|
updated: Date;
|
|
33801
|
+
isDeleted: boolean;
|
|
33765
33802
|
}
|
|
33766
33803
|
|
|
33767
33804
|
export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
@@ -33781,6 +33818,7 @@ export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
|
33781
33818
|
updatedBy?: string | null;
|
|
33782
33819
|
updatedById?: string | null;
|
|
33783
33820
|
updated: Date;
|
|
33821
|
+
isDeleted: boolean;
|
|
33784
33822
|
requirements: ImaCertificateTypeRequirementsDto;
|
|
33785
33823
|
}
|
|
33786
33824
|
|
|
@@ -33974,6 +34012,7 @@ export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
|
|
|
33974
34012
|
createdById: string;
|
|
33975
34013
|
updatedBy: string;
|
|
33976
34014
|
updatedById: string;
|
|
34015
|
+
isDeleted: boolean;
|
|
33977
34016
|
}
|
|
33978
34017
|
|
|
33979
34018
|
export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
@@ -33995,10 +34034,11 @@ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
33995
34034
|
updatedBy: string;
|
|
33996
34035
|
updatedById: string;
|
|
33997
34036
|
updated: Date;
|
|
34037
|
+
isDeleted: boolean;
|
|
33998
34038
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
33999
34039
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
34000
34040
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
34001
|
-
|
|
34041
|
+
heatTreatmentSpecifications: ImaHeatTreatmentSpecificationDto[];
|
|
34002
34042
|
}
|
|
34003
34043
|
|
|
34004
34044
|
export interface ImaSpecificationVersionDto {
|
|
@@ -34025,13 +34065,11 @@ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
|
34025
34065
|
operator: ImaSpecificationOperator;
|
|
34026
34066
|
value1: number;
|
|
34027
34067
|
value2?: number | null;
|
|
34028
|
-
|
|
34068
|
+
unit: ImaSpecificationUnit;
|
|
34029
34069
|
}
|
|
34030
34070
|
|
|
34031
34071
|
export type ImaSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
|
|
34032
34072
|
|
|
34033
|
-
export type ImaSpecificationSymbol = "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw" | "NotSet";
|
|
34034
|
-
|
|
34035
34073
|
export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
34036
34074
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
34037
34075
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
@@ -34045,19 +34083,28 @@ export interface ImaFerriteSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
34045
34083
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
34046
34084
|
}
|
|
34047
34085
|
|
|
34048
|
-
export interface ImaHeatTreatmentSpecificationDto {
|
|
34049
|
-
|
|
34086
|
+
export interface ImaHeatTreatmentSpecificationDto extends ImaCdfEntityReadBase {
|
|
34087
|
+
step: number;
|
|
34088
|
+
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
34089
|
+
heating?: ImaHeatTreatmentSpecificationHeatingDto | null;
|
|
34050
34090
|
}
|
|
34051
34091
|
|
|
34052
|
-
export interface
|
|
34053
|
-
|
|
34054
|
-
|
|
34055
|
-
|
|
34056
|
-
coolingMethods?: ImaCoolingTreatmentMethod[] | null;
|
|
34057
|
-
coolingTreatmentTemperature?: number | null;
|
|
34058
|
-
coolingHoldingTime?: number | null;
|
|
34092
|
+
export interface ImaHeatTreatmentSpecificationCoolingDto extends ImaCdfEntityReadBase {
|
|
34093
|
+
coolingMethods: ImaHeatTreatmentCoolingMethod[];
|
|
34094
|
+
temperature?: ImaSpecificationLineDto | null;
|
|
34095
|
+
duration?: ImaSpecificationLineDto | null;
|
|
34059
34096
|
}
|
|
34060
34097
|
|
|
34098
|
+
export type ImaHeatTreatmentCoolingMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching" | "NotSet";
|
|
34099
|
+
|
|
34100
|
+
export interface ImaHeatTreatmentSpecificationHeatingDto extends ImaCdfEntityReadBase {
|
|
34101
|
+
heatingMethod: ImaHeatTreatmentHeatingMethod;
|
|
34102
|
+
temperature?: ImaSpecificationLineDto | null;
|
|
34103
|
+
duration?: ImaSpecificationLineDto | null;
|
|
34104
|
+
}
|
|
34105
|
+
|
|
34106
|
+
export type ImaHeatTreatmentHeatingMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
|
|
34107
|
+
|
|
34061
34108
|
export interface ImaCreateSpecificationRequestDto {
|
|
34062
34109
|
specificationName: string;
|
|
34063
34110
|
specificationNumber: string;
|
|
@@ -34082,7 +34129,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
34082
34129
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
34083
34130
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
34084
34131
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
34085
|
-
|
|
34132
|
+
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
34086
34133
|
}
|
|
34087
34134
|
|
|
34088
34135
|
export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
|