@ignos/api-client 20260317.78.1 → 20260319.80.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 +153 -134
- package/lib/ignosportal-api.js +180 -54
- package/package.json +1 -1
- package/src/ignosportal-api.ts +352 -211
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2510,13 +2510,13 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
|
|
|
2510
2510
|
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2511
2511
|
protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
|
|
2512
2512
|
}
|
|
2513
|
-
export interface
|
|
2513
|
+
export interface IInspectMatchCertificateChecksClient {
|
|
2514
2514
|
listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
|
|
2515
2515
|
getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
2516
2516
|
processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
|
|
2517
2517
|
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2518
2518
|
}
|
|
2519
|
-
export declare class
|
|
2519
|
+
export declare class InspectMatchCertificateChecksClient extends AuthorizedApiBase implements IInspectMatchCertificateChecksClient {
|
|
2520
2520
|
private http;
|
|
2521
2521
|
private baseUrl;
|
|
2522
2522
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
@@ -2531,31 +2531,7 @@ export declare class MaterialCertificateChecksClient extends AuthorizedApiBase i
|
|
|
2531
2531
|
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2532
2532
|
protected processUpdateMaterialCertificate(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2533
2533
|
}
|
|
2534
|
-
export interface
|
|
2535
|
-
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2536
|
-
getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2537
|
-
updateSpecifications(id: string, version: number | null | undefined, _: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2538
|
-
deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
|
|
2539
|
-
createSpecifications(createDto: CreateImaSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2540
|
-
}
|
|
2541
|
-
export declare class MaterialCertificateSpecificationsClient extends AuthorizedApiBase implements IMaterialCertificateSpecificationsClient {
|
|
2542
|
-
private http;
|
|
2543
|
-
private baseUrl;
|
|
2544
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2545
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2546
|
-
});
|
|
2547
|
-
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2548
|
-
protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
|
|
2549
|
-
getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2550
|
-
protected processGetSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2551
|
-
updateSpecifications(id: string, version: number | null | undefined, _: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2552
|
-
protected processUpdateSpecifications(response: Response): Promise<ImaSpecificationDto>;
|
|
2553
|
-
deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
|
|
2554
|
-
protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
|
|
2555
|
-
createSpecifications(createDto: CreateImaSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2556
|
-
protected processCreateSpecifications(response: Response): Promise<ImaSpecificationDto>;
|
|
2557
|
-
}
|
|
2558
|
-
export interface IMaterialCertificateTypesClient {
|
|
2534
|
+
export interface IInspectMatchCertificateTypesClient {
|
|
2559
2535
|
listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2560
2536
|
getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2561
2537
|
updateMaterialCertificateTypes(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
@@ -2565,7 +2541,7 @@ export interface IMaterialCertificateTypesClient {
|
|
|
2565
2541
|
createNewVersionForCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2566
2542
|
releaseMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2567
2543
|
}
|
|
2568
|
-
export declare class
|
|
2544
|
+
export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBase implements IInspectMatchCertificateTypesClient {
|
|
2569
2545
|
private http;
|
|
2570
2546
|
private baseUrl;
|
|
2571
2547
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
@@ -2588,6 +2564,39 @@ export declare class MaterialCertificateTypesClient extends AuthorizedApiBase im
|
|
|
2588
2564
|
releaseMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2589
2565
|
protected processReleaseMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2590
2566
|
}
|
|
2567
|
+
export interface IInspectMatchSpecificationsClient {
|
|
2568
|
+
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2569
|
+
getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2570
|
+
updateSpecifications(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2571
|
+
deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
|
|
2572
|
+
createSpecifications(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
2573
|
+
copySpecification(id: string, version: number | null | undefined, copyDto: ImaCopySpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
2574
|
+
createNewVersionForSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2575
|
+
releaseSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2576
|
+
}
|
|
2577
|
+
export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase implements IInspectMatchSpecificationsClient {
|
|
2578
|
+
private http;
|
|
2579
|
+
private baseUrl;
|
|
2580
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2581
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2582
|
+
});
|
|
2583
|
+
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2584
|
+
protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
|
|
2585
|
+
getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2586
|
+
protected processGetSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2587
|
+
updateSpecifications(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2588
|
+
protected processUpdateSpecifications(response: Response): Promise<ImaSpecificationDto>;
|
|
2589
|
+
deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
|
|
2590
|
+
protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
|
|
2591
|
+
createSpecifications(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
2592
|
+
protected processCreateSpecifications(response: Response): Promise<ImaSpecificationDto>;
|
|
2593
|
+
copySpecification(id: string, version: number | null | undefined, copyDto: ImaCopySpecificationRequestDto): Promise<ImaSpecificationDto>;
|
|
2594
|
+
protected processCopySpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2595
|
+
createNewVersionForSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2596
|
+
protected processCreateNewVersionForSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2597
|
+
releaseSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2598
|
+
protected processReleaseSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2599
|
+
}
|
|
2591
2600
|
export interface IMeasurementFormSchemasAdminClient {
|
|
2592
2601
|
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2593
2602
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
@@ -6353,6 +6362,10 @@ export interface WorkspaceDto {
|
|
|
6353
6362
|
widgetSettings: {
|
|
6354
6363
|
[key: string]: string;
|
|
6355
6364
|
};
|
|
6365
|
+
isSystemManaged?: boolean;
|
|
6366
|
+
systemManagedKind?: string | null;
|
|
6367
|
+
sourceTemplateId?: string | null;
|
|
6368
|
+
sourceMachineId?: string | null;
|
|
6356
6369
|
}
|
|
6357
6370
|
export interface WorkspaceWidgetDto {
|
|
6358
6371
|
id: string;
|
|
@@ -7763,112 +7776,6 @@ export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
|
|
|
7763
7776
|
}
|
|
7764
7777
|
export interface ImaCdfEntityReadBase {
|
|
7765
7778
|
}
|
|
7766
|
-
export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
|
|
7767
|
-
specificationId: string;
|
|
7768
|
-
version: number;
|
|
7769
|
-
name: string;
|
|
7770
|
-
number: string;
|
|
7771
|
-
revision: string;
|
|
7772
|
-
date: Date;
|
|
7773
|
-
status: ImaSpecificationStatus;
|
|
7774
|
-
summary?: string | null;
|
|
7775
|
-
relatedStandards: string[];
|
|
7776
|
-
created: Date;
|
|
7777
|
-
createdBy: string;
|
|
7778
|
-
createdById: string;
|
|
7779
|
-
updatedBy: string;
|
|
7780
|
-
updatedById: string;
|
|
7781
|
-
}
|
|
7782
|
-
export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7783
|
-
export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
7784
|
-
specificationId: string;
|
|
7785
|
-
version: number;
|
|
7786
|
-
allVersions: ImaSpecificationVersionDto[];
|
|
7787
|
-
name: string;
|
|
7788
|
-
number: string;
|
|
7789
|
-
revision: string;
|
|
7790
|
-
date: Date;
|
|
7791
|
-
status: ImaSpecificationStatus;
|
|
7792
|
-
summary?: string | null;
|
|
7793
|
-
relatedStandards: string[];
|
|
7794
|
-
created: Date;
|
|
7795
|
-
createdBy: string;
|
|
7796
|
-
createdById: string;
|
|
7797
|
-
updatedBy: string;
|
|
7798
|
-
updatedById: string;
|
|
7799
|
-
updated: Date;
|
|
7800
|
-
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
7801
|
-
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
7802
|
-
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
7803
|
-
heatSpecification: ImaHeatTreatmentSpecificationDto;
|
|
7804
|
-
}
|
|
7805
|
-
export interface ImaSpecificationVersionDto {
|
|
7806
|
-
version?: number;
|
|
7807
|
-
status?: ImaSpecificationStatus;
|
|
7808
|
-
}
|
|
7809
|
-
export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
|
|
7810
|
-
carbon?: ImaSpecificationLineDto | null;
|
|
7811
|
-
manganese?: ImaSpecificationLineDto | null;
|
|
7812
|
-
silicon?: ImaSpecificationLineDto | null;
|
|
7813
|
-
phosphorus?: ImaSpecificationLineDto | null;
|
|
7814
|
-
sulfur?: ImaSpecificationLineDto | null;
|
|
7815
|
-
chromium?: ImaSpecificationLineDto | null;
|
|
7816
|
-
nickel?: ImaSpecificationLineDto | null;
|
|
7817
|
-
molybdenum?: ImaSpecificationLineDto | null;
|
|
7818
|
-
copper?: ImaSpecificationLineDto | null;
|
|
7819
|
-
nitrogen?: ImaSpecificationLineDto | null;
|
|
7820
|
-
wolfram?: ImaSpecificationLineDto | null;
|
|
7821
|
-
iron?: ImaSpecificationLineDto | null;
|
|
7822
|
-
}
|
|
7823
|
-
export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
7824
|
-
operator: ImaSpecificationOperator;
|
|
7825
|
-
value1: number;
|
|
7826
|
-
value2?: number | null;
|
|
7827
|
-
symbol: ImaSpecificationSymbol;
|
|
7828
|
-
}
|
|
7829
|
-
export type ImaSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
|
|
7830
|
-
export type ImaSpecificationSymbol = "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw" | "NotSet";
|
|
7831
|
-
export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
7832
|
-
yieldStrength?: ImaSpecificationLineDto | null;
|
|
7833
|
-
tensileStrength?: ImaSpecificationLineDto | null;
|
|
7834
|
-
elongation?: ImaSpecificationLineDto | null;
|
|
7835
|
-
reductionOfArea?: ImaSpecificationLineDto | null;
|
|
7836
|
-
impactEnergy?: ImaSpecificationLineDto | null;
|
|
7837
|
-
hardness?: ImaSpecificationLineDto | null;
|
|
7838
|
-
}
|
|
7839
|
-
export interface ImaFerriteSpecificationDto extends ImaCdfEntityReadBase {
|
|
7840
|
-
ferriteContent?: ImaSpecificationLineDto | null;
|
|
7841
|
-
}
|
|
7842
|
-
export interface ImaHeatTreatmentSpecificationDto {
|
|
7843
|
-
heatTreatments: ImaHeatTreatmentsSpecificationDto[];
|
|
7844
|
-
}
|
|
7845
|
-
export interface ImaHeatTreatmentsSpecificationDto {
|
|
7846
|
-
heatingMethod: ImaHeatingTreatmentMethod;
|
|
7847
|
-
heatingTreatmentTemperature?: number | null;
|
|
7848
|
-
heatingHoldingTime?: number | null;
|
|
7849
|
-
coolingMethods?: ImaCoolingTreatmentMethod[] | null;
|
|
7850
|
-
coolingTreatmentTemperature?: number | null;
|
|
7851
|
-
coolingHoldingTime?: number | null;
|
|
7852
|
-
}
|
|
7853
|
-
export interface CreateImaSpecificationDto {
|
|
7854
|
-
specificationName: string;
|
|
7855
|
-
specificationNumber: string;
|
|
7856
|
-
revision: string;
|
|
7857
|
-
date: Date;
|
|
7858
|
-
specificationFile?: UploadFileDto | null;
|
|
7859
|
-
}
|
|
7860
|
-
export interface ImaUpdateSpecificationDto {
|
|
7861
|
-
name?: string | null;
|
|
7862
|
-
number?: string | null;
|
|
7863
|
-
status?: ImaSpecificationStatusUpdate | null;
|
|
7864
|
-
summary?: string | null;
|
|
7865
|
-
relatedStandards?: string[] | null;
|
|
7866
|
-
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
7867
|
-
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
7868
|
-
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
7869
|
-
heatSpecification?: ImaHeatTreatmentSpecificationDto | null;
|
|
7870
|
-
}
|
|
7871
|
-
export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
7872
7779
|
export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
7873
7780
|
certificateTypeId: string;
|
|
7874
7781
|
version: number;
|
|
@@ -8056,6 +7963,118 @@ export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
|
8056
7963
|
microExaminationReport?: boolean | null;
|
|
8057
7964
|
radiologicalReport?: boolean | null;
|
|
8058
7965
|
}
|
|
7966
|
+
export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
|
|
7967
|
+
specificationId: string;
|
|
7968
|
+
version: number;
|
|
7969
|
+
name: string;
|
|
7970
|
+
number: string;
|
|
7971
|
+
revision: string;
|
|
7972
|
+
date: Date;
|
|
7973
|
+
status: ImaSpecificationStatus;
|
|
7974
|
+
summary?: string | null;
|
|
7975
|
+
relatedStandards: string[];
|
|
7976
|
+
created: Date;
|
|
7977
|
+
createdBy: string;
|
|
7978
|
+
createdById: string;
|
|
7979
|
+
updatedBy: string;
|
|
7980
|
+
updatedById: string;
|
|
7981
|
+
}
|
|
7982
|
+
export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7983
|
+
export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
7984
|
+
specificationId: string;
|
|
7985
|
+
version: number;
|
|
7986
|
+
allVersions: ImaSpecificationVersionDto[];
|
|
7987
|
+
name: string;
|
|
7988
|
+
number: string;
|
|
7989
|
+
revision: string;
|
|
7990
|
+
date: Date;
|
|
7991
|
+
status: ImaSpecificationStatus;
|
|
7992
|
+
summary?: string | null;
|
|
7993
|
+
relatedStandards: string[];
|
|
7994
|
+
created: Date;
|
|
7995
|
+
createdBy: string;
|
|
7996
|
+
createdById: string;
|
|
7997
|
+
updatedBy: string;
|
|
7998
|
+
updatedById: string;
|
|
7999
|
+
updated: Date;
|
|
8000
|
+
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
8001
|
+
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
8002
|
+
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
8003
|
+
heatSpecification: ImaHeatTreatmentSpecificationDto;
|
|
8004
|
+
}
|
|
8005
|
+
export interface ImaSpecificationVersionDto {
|
|
8006
|
+
version?: number;
|
|
8007
|
+
status?: ImaSpecificationStatus;
|
|
8008
|
+
}
|
|
8009
|
+
export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
|
|
8010
|
+
carbon?: ImaSpecificationLineDto | null;
|
|
8011
|
+
manganese?: ImaSpecificationLineDto | null;
|
|
8012
|
+
silicon?: ImaSpecificationLineDto | null;
|
|
8013
|
+
phosphorus?: ImaSpecificationLineDto | null;
|
|
8014
|
+
sulfur?: ImaSpecificationLineDto | null;
|
|
8015
|
+
chromium?: ImaSpecificationLineDto | null;
|
|
8016
|
+
nickel?: ImaSpecificationLineDto | null;
|
|
8017
|
+
molybdenum?: ImaSpecificationLineDto | null;
|
|
8018
|
+
copper?: ImaSpecificationLineDto | null;
|
|
8019
|
+
nitrogen?: ImaSpecificationLineDto | null;
|
|
8020
|
+
wolfram?: ImaSpecificationLineDto | null;
|
|
8021
|
+
iron?: ImaSpecificationLineDto | null;
|
|
8022
|
+
}
|
|
8023
|
+
export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
8024
|
+
operator: ImaSpecificationOperator;
|
|
8025
|
+
value1: number;
|
|
8026
|
+
value2?: number | null;
|
|
8027
|
+
symbol: ImaSpecificationSymbol;
|
|
8028
|
+
}
|
|
8029
|
+
export type ImaSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
|
|
8030
|
+
export type ImaSpecificationSymbol = "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw" | "NotSet";
|
|
8031
|
+
export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
8032
|
+
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8033
|
+
tensileStrength?: ImaSpecificationLineDto | null;
|
|
8034
|
+
elongation?: ImaSpecificationLineDto | null;
|
|
8035
|
+
reductionOfArea?: ImaSpecificationLineDto | null;
|
|
8036
|
+
impactEnergy?: ImaSpecificationLineDto | null;
|
|
8037
|
+
hardness?: ImaSpecificationLineDto | null;
|
|
8038
|
+
}
|
|
8039
|
+
export interface ImaFerriteSpecificationDto extends ImaCdfEntityReadBase {
|
|
8040
|
+
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8041
|
+
}
|
|
8042
|
+
export interface ImaHeatTreatmentSpecificationDto {
|
|
8043
|
+
heatTreatments: ImaHeatTreatmentsSpecificationDto[];
|
|
8044
|
+
}
|
|
8045
|
+
export interface ImaHeatTreatmentsSpecificationDto {
|
|
8046
|
+
heatingMethod: ImaHeatingTreatmentMethod;
|
|
8047
|
+
heatingTreatmentTemperature?: number | null;
|
|
8048
|
+
heatingHoldingTime?: number | null;
|
|
8049
|
+
coolingMethods?: ImaCoolingTreatmentMethod[] | null;
|
|
8050
|
+
coolingTreatmentTemperature?: number | null;
|
|
8051
|
+
coolingHoldingTime?: number | null;
|
|
8052
|
+
}
|
|
8053
|
+
export interface ImaCreateSpecificationRequestDto {
|
|
8054
|
+
specificationName: string;
|
|
8055
|
+
specificationNumber: string;
|
|
8056
|
+
revision: string;
|
|
8057
|
+
date: Date;
|
|
8058
|
+
specificationFile?: UploadFileDto | null;
|
|
8059
|
+
}
|
|
8060
|
+
export interface ImaCopySpecificationRequestDto {
|
|
8061
|
+
specificationName: string;
|
|
8062
|
+
specificationNumber: string;
|
|
8063
|
+
revision: string;
|
|
8064
|
+
date: Date;
|
|
8065
|
+
}
|
|
8066
|
+
export interface ImaUpdateSpecificationDto {
|
|
8067
|
+
name?: string | null;
|
|
8068
|
+
number?: string | null;
|
|
8069
|
+
status?: ImaSpecificationStatusUpdate | null;
|
|
8070
|
+
summary?: string | null;
|
|
8071
|
+
relatedStandards?: string[] | null;
|
|
8072
|
+
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
8073
|
+
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
8074
|
+
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8075
|
+
heatSpecification?: ImaHeatTreatmentSpecificationDto | null;
|
|
8076
|
+
}
|
|
8077
|
+
export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
8059
8078
|
export interface MeasurementFormSchemaDto {
|
|
8060
8079
|
id: string;
|
|
8061
8080
|
versionId: number;
|