@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.
@@ -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: string[];
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: string;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260320.84.1-alpha",
3
+ "version": "20260320.85.1-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -34034,17 +34034,21 @@ export interface ImaHeatSpecificationDto extends ImaCdfEntityReadBase {
34034
34034
  }
34035
34035
 
34036
34036
  export interface ImaHeatSpecificationCooling extends ImaCdfEntityReadBase {
34037
- coolingMethods: string[];
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: string;
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;