@ignos/api-client 20260422.116.1 → 20260423.118.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.
@@ -7856,6 +7856,7 @@ export interface ImaMaterialCheckDto {
7856
7856
  specificationId: string;
7857
7857
  specificationVersion: number;
7858
7858
  specificationName: string;
7859
+ specificationStatus: ImaSpecificationStatus;
7859
7860
  purchaseOrder?: string | null;
7860
7861
  purchaseOrderLine?: number | null;
7861
7862
  purchaseOrderVendorBatches?: string[] | null;
@@ -7875,6 +7876,7 @@ export interface ImaMaterialCheckDto {
7875
7876
  certificateTypeResults: ImaCertificateTypeResultsDto;
7876
7877
  specificationResults: ImaSpecificationResultsDto;
7877
7878
  }
7879
+ export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
7878
7880
  export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
7879
7881
  export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
7880
7882
  manufacturer: ImaCertificateTypeManufacturerResultsDto;
@@ -8265,7 +8267,6 @@ export interface ImaSpecificationVersionDto {
8265
8267
  version?: number;
8266
8268
  status?: ImaSpecificationStatus;
8267
8269
  }
8268
- export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
8269
8270
  export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
8270
8271
  carbon?: ImaSpecificationLineDto | null;
8271
8272
  manganese?: ImaSpecificationLineDto | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260422.116.1",
3
+ "version": "20260423.118.1",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -34749,6 +34749,7 @@ export interface ImaMaterialCheckDto {
34749
34749
  specificationId: string;
34750
34750
  specificationVersion: number;
34751
34751
  specificationName: string;
34752
+ specificationStatus: ImaSpecificationStatus;
34752
34753
  purchaseOrder?: string | null;
34753
34754
  purchaseOrderLine?: number | null;
34754
34755
  purchaseOrderVendorBatches?: string[] | null;
@@ -34769,6 +34770,8 @@ export interface ImaMaterialCheckDto {
34769
34770
  specificationResults: ImaSpecificationResultsDto;
34770
34771
  }
34771
34772
 
34773
+ export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
34774
+
34772
34775
  export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
34773
34776
 
34774
34777
  export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
@@ -35209,8 +35212,6 @@ export interface ImaSpecificationVersionDto {
35209
35212
  status?: ImaSpecificationStatus;
35210
35213
  }
35211
35214
 
35212
- export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
35213
-
35214
35215
  export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
35215
35216
  carbon?: ImaSpecificationLineDto | null;
35216
35217
  manganese?: ImaSpecificationLineDto | null;