@ignos/api-client 20260804.204.1 → 20260805.206.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.
@@ -8411,12 +8411,21 @@ export interface ImaSpecificationResultLineDto {
8411
8411
  }
8412
8412
  export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
8413
8413
  export interface ImaChemicalAnalysisCompositeResultDto {
8414
- pren?: ImaSpecificationResultLineDto | null;
8415
- pren22?: ImaSpecificationResultLineDto | null;
8416
- pren30?: ImaSpecificationResultLineDto | null;
8417
- prenW?: ImaSpecificationResultLineDto | null;
8418
- v_Nb_Ti?: ImaSpecificationResultLineDto | null;
8419
- ce?: ImaSpecificationResultLineDto | null;
8414
+ pren?: ImaSpecificationCalculatedResultLineDto | null;
8415
+ pren22?: ImaSpecificationCalculatedResultLineDto | null;
8416
+ pren30?: ImaSpecificationCalculatedResultLineDto | null;
8417
+ prenW?: ImaSpecificationCalculatedResultLineDto | null;
8418
+ v_Nb_Ti?: ImaSpecificationCalculatedResultLineDto | null;
8419
+ ce?: ImaSpecificationCalculatedResultLineDto | null;
8420
+ }
8421
+ export interface ImaSpecificationCalculatedResultLineDto {
8422
+ specificationMin?: number | null;
8423
+ specificationMax?: number | null;
8424
+ readValue?: string | null;
8425
+ calculatedValue?: string | null;
8426
+ errorString?: string | null;
8427
+ status: ImaSpecificationResultLineStatusDto;
8428
+ override?: ImaResultLineOverrideDto | null;
8420
8429
  }
8421
8430
  export interface ImaTensileTestResultDto {
8422
8431
  heatNumber?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260804.204.1",
3
+ "version": "20260805.206.1",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -36814,12 +36814,22 @@ export interface ImaSpecificationResultLineDto {
36814
36814
  export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
36815
36815
 
36816
36816
  export interface ImaChemicalAnalysisCompositeResultDto {
36817
- pren?: ImaSpecificationResultLineDto | null;
36818
- pren22?: ImaSpecificationResultLineDto | null;
36819
- pren30?: ImaSpecificationResultLineDto | null;
36820
- prenW?: ImaSpecificationResultLineDto | null;
36821
- v_Nb_Ti?: ImaSpecificationResultLineDto | null;
36822
- ce?: ImaSpecificationResultLineDto | null;
36817
+ pren?: ImaSpecificationCalculatedResultLineDto | null;
36818
+ pren22?: ImaSpecificationCalculatedResultLineDto | null;
36819
+ pren30?: ImaSpecificationCalculatedResultLineDto | null;
36820
+ prenW?: ImaSpecificationCalculatedResultLineDto | null;
36821
+ v_Nb_Ti?: ImaSpecificationCalculatedResultLineDto | null;
36822
+ ce?: ImaSpecificationCalculatedResultLineDto | null;
36823
+ }
36824
+
36825
+ export interface ImaSpecificationCalculatedResultLineDto {
36826
+ specificationMin?: number | null;
36827
+ specificationMax?: number | null;
36828
+ readValue?: string | null;
36829
+ calculatedValue?: string | null;
36830
+ errorString?: string | null;
36831
+ status: ImaSpecificationResultLineStatusDto;
36832
+ override?: ImaResultLineOverrideDto | null;
36823
36833
  }
36824
36834
 
36825
36835
  export interface ImaTensileTestResultDto {