@ignos/api-client 20260420.114.1 → 20260422.116.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.
@@ -7650,6 +7650,7 @@ export interface CreateWeldingIotConfig {
7650
7650
  export interface ImaCdfEntityReadBase {
7651
7651
  }
7652
7652
  export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
7653
+ companyId: string;
7653
7654
  certificateTypeId: string;
7654
7655
  version: number;
7655
7656
  allVersions: ImaCertificateTypeVersionDto[];
@@ -7896,11 +7897,12 @@ export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
7896
7897
  override?: ImaResultLineOverrideDto | null;
7897
7898
  }
7898
7899
  export interface ImaResultLineOverrideDto extends ImaCdfEntityReadBase {
7899
- approved: boolean;
7900
+ approved?: boolean | null;
7900
7901
  comment?: string | null;
7901
7902
  updated: Date;
7902
7903
  updatedBy: string;
7903
7904
  updatedById: string;
7905
+ updatedByName?: string | null;
7904
7906
  }
7905
7907
  export interface ImaCertificateTypeSignatureResultsDto extends ImaCdfEntityReadBase {
7906
7908
  certifiedBy?: ImaCertificateTypeResultLine | null;
@@ -8043,7 +8045,7 @@ export interface ImaOverrideCertificateTypeManufacturerResultsDto {
8043
8045
  contact?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8044
8046
  }
8045
8047
  export interface ImaOverrideUpdateMaterialCheckResultLineDto {
8046
- approved?: boolean;
8048
+ approved?: boolean | null;
8047
8049
  comment?: string | null;
8048
8050
  }
8049
8051
  export interface ImaOverrideCertificateTypeSignatureResultsDto {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260420.114.1",
3
+ "version": "20260422.116.1",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -34519,6 +34519,7 @@ export interface ImaCdfEntityReadBase {
34519
34519
  }
34520
34520
 
34521
34521
  export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
34522
+ companyId: string;
34522
34523
  certificateTypeId: string;
34523
34524
  version: number;
34524
34525
  allVersions: ImaCertificateTypeVersionDto[];
@@ -34794,11 +34795,12 @@ export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
34794
34795
  }
34795
34796
 
34796
34797
  export interface ImaResultLineOverrideDto extends ImaCdfEntityReadBase {
34797
- approved: boolean;
34798
+ approved?: boolean | null;
34798
34799
  comment?: string | null;
34799
34800
  updated: Date;
34800
34801
  updatedBy: string;
34801
34802
  updatedById: string;
34803
+ updatedByName?: string | null;
34802
34804
  }
34803
34805
 
34804
34806
  export interface ImaCertificateTypeSignatureResultsDto extends ImaCdfEntityReadBase {
@@ -34962,7 +34964,7 @@ export interface ImaOverrideCertificateTypeManufacturerResultsDto {
34962
34964
  }
34963
34965
 
34964
34966
  export interface ImaOverrideUpdateMaterialCheckResultLineDto {
34965
- approved?: boolean;
34967
+ approved?: boolean | null;
34966
34968
  comment?: string | null;
34967
34969
  }
34968
34970