@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.
- package/lib/ignosportal-api.d.ts +15 -6
- package/package.json +1 -1
- package/src/ignosportal-api.ts +16 -6
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -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?:
|
|
8415
|
-
pren22?:
|
|
8416
|
-
pren30?:
|
|
8417
|
-
prenW?:
|
|
8418
|
-
v_Nb_Ti?:
|
|
8419
|
-
ce?:
|
|
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
package/src/ignosportal-api.ts
CHANGED
|
@@ -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?:
|
|
36818
|
-
pren22?:
|
|
36819
|
-
pren30?:
|
|
36820
|
-
prenW?:
|
|
36821
|
-
v_Nb_Ti?:
|
|
36822
|
-
ce?:
|
|
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 {
|