@ignos/api-client 20260320.84.1-alpha → 20260320.85.1-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -8045,15 +8045,17 @@ export interface ImaHeatSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8045
8045
|
heating?: ImaHeatSpecificationHeating | null;
|
|
8046
8046
|
}
|
|
8047
8047
|
export interface ImaHeatSpecificationCooling extends ImaCdfEntityReadBase {
|
|
8048
|
-
coolingMethods:
|
|
8048
|
+
coolingMethods: ImaHeatTreatmentCoolingMethod[];
|
|
8049
8049
|
temperature?: ImaSpecificationLineDto | null;
|
|
8050
8050
|
duration?: ImaSpecificationLineDto | null;
|
|
8051
8051
|
}
|
|
8052
|
+
export type ImaHeatTreatmentCoolingMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching" | "NotSet";
|
|
8052
8053
|
export interface ImaHeatSpecificationHeating extends ImaCdfEntityReadBase {
|
|
8053
|
-
heatingMethod:
|
|
8054
|
+
heatingMethod: ImaHeatTreatmentHeatingMethod;
|
|
8054
8055
|
temperature?: ImaSpecificationLineDto | null;
|
|
8055
8056
|
duration?: ImaSpecificationLineDto | null;
|
|
8056
8057
|
}
|
|
8058
|
+
export type ImaHeatTreatmentHeatingMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
|
|
8057
8059
|
export interface ImaCreateSpecificationRequestDto {
|
|
8058
8060
|
specificationName: string;
|
|
8059
8061
|
specificationNumber: string;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -34034,17 +34034,21 @@ export interface ImaHeatSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
34034
34034
|
}
|
|
34035
34035
|
|
|
34036
34036
|
export interface ImaHeatSpecificationCooling extends ImaCdfEntityReadBase {
|
|
34037
|
-
coolingMethods:
|
|
34037
|
+
coolingMethods: ImaHeatTreatmentCoolingMethod[];
|
|
34038
34038
|
temperature?: ImaSpecificationLineDto | null;
|
|
34039
34039
|
duration?: ImaSpecificationLineDto | null;
|
|
34040
34040
|
}
|
|
34041
34041
|
|
|
34042
|
+
export type ImaHeatTreatmentCoolingMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching" | "NotSet";
|
|
34043
|
+
|
|
34042
34044
|
export interface ImaHeatSpecificationHeating extends ImaCdfEntityReadBase {
|
|
34043
|
-
heatingMethod:
|
|
34045
|
+
heatingMethod: ImaHeatTreatmentHeatingMethod;
|
|
34044
34046
|
temperature?: ImaSpecificationLineDto | null;
|
|
34045
34047
|
duration?: ImaSpecificationLineDto | null;
|
|
34046
34048
|
}
|
|
34047
34049
|
|
|
34050
|
+
export type ImaHeatTreatmentHeatingMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
|
|
34051
|
+
|
|
34048
34052
|
export interface ImaCreateSpecificationRequestDto {
|
|
34049
34053
|
specificationName: string;
|
|
34050
34054
|
specificationNumber: string;
|