@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.
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -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
|
|
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
package/src/ignosportal-api.ts
CHANGED
|
@@ -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
|
|
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
|
|