@ignos/api-client 20260904.256.1-alpha → 20260904.257.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
|
@@ -4796,6 +4796,7 @@ export interface PulseJournalEventDto {
|
|
|
4796
4796
|
eventType: PulseJournalEventTypeDto;
|
|
4797
4797
|
oldValue?: string | null;
|
|
4798
4798
|
newValue?: string | null;
|
|
4799
|
+
lineText?: string | null;
|
|
4799
4800
|
created: Date;
|
|
4800
4801
|
createdBy?: string | null;
|
|
4801
4802
|
}
|
|
@@ -8610,6 +8611,7 @@ export interface ImaChemicalAnalysisCompositeResultDto {
|
|
|
8610
8611
|
prenW?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8611
8612
|
v_Nb_Ti?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8612
8613
|
ce?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8614
|
+
nb_Ta?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8613
8615
|
}
|
|
8614
8616
|
export interface ImaSpecificationCalculatedResultLineDto {
|
|
8615
8617
|
specificationMin?: number | null;
|
|
@@ -8861,6 +8863,7 @@ export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
|
|
|
8861
8863
|
prenW?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8862
8864
|
v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8863
8865
|
ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8866
|
+
nb_Ta?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8864
8867
|
}
|
|
8865
8868
|
export interface ImaOverrideTensileTestResultsDto {
|
|
8866
8869
|
heatNumber?: string | null;
|
|
@@ -9035,7 +9038,6 @@ export interface ImaMaterialCheckReportDto {
|
|
|
9035
9038
|
includesAllHeats: boolean;
|
|
9036
9039
|
status: ImaMaterialCheckStatusDto;
|
|
9037
9040
|
audit: ImaMaterialCheckReportAuditInfo;
|
|
9038
|
-
isOutdated: boolean;
|
|
9039
9041
|
}
|
|
9040
9042
|
export interface ImaMaterialCheckReportAuditInfo {
|
|
9041
9043
|
createdBy: string;
|
|
@@ -9199,6 +9201,7 @@ export interface ImaChemistryCompositeSpecificationDto {
|
|
|
9199
9201
|
prenW?: ImaSpecificationLineDto | null;
|
|
9200
9202
|
v_Nb_Ti?: boolean | null;
|
|
9201
9203
|
ce?: boolean | null;
|
|
9204
|
+
nb_Ta?: ImaSpecificationLineDto | null;
|
|
9202
9205
|
}
|
|
9203
9206
|
export interface ImaMechanicalSpecificationDto {
|
|
9204
9207
|
tensile?: ImaTensileSpecificationDto | null;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -33487,6 +33487,7 @@ export interface PulseJournalEventDto {
|
|
|
33487
33487
|
eventType: PulseJournalEventTypeDto;
|
|
33488
33488
|
oldValue?: string | null;
|
|
33489
33489
|
newValue?: string | null;
|
|
33490
|
+
lineText?: string | null;
|
|
33490
33491
|
created: Date;
|
|
33491
33492
|
createdBy?: string | null;
|
|
33492
33493
|
}
|
|
@@ -37819,6 +37820,7 @@ export interface ImaChemicalAnalysisCompositeResultDto {
|
|
|
37819
37820
|
prenW?: ImaSpecificationCalculatedResultLineDto | null;
|
|
37820
37821
|
v_Nb_Ti?: ImaSpecificationCalculatedResultLineDto | null;
|
|
37821
37822
|
ce?: ImaSpecificationCalculatedResultLineDto | null;
|
|
37823
|
+
nb_Ta?: ImaSpecificationCalculatedResultLineDto | null;
|
|
37822
37824
|
}
|
|
37823
37825
|
|
|
37824
37826
|
export interface ImaSpecificationCalculatedResultLineDto {
|
|
@@ -38102,6 +38104,7 @@ export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
|
|
|
38102
38104
|
prenW?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
38103
38105
|
v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
38104
38106
|
ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
38107
|
+
nb_Ta?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
38105
38108
|
}
|
|
38106
38109
|
|
|
38107
38110
|
export interface ImaOverrideTensileTestResultsDto {
|
|
@@ -38299,7 +38302,6 @@ export interface ImaMaterialCheckReportDto {
|
|
|
38299
38302
|
includesAllHeats: boolean;
|
|
38300
38303
|
status: ImaMaterialCheckStatusDto;
|
|
38301
38304
|
audit: ImaMaterialCheckReportAuditInfo;
|
|
38302
|
-
isOutdated: boolean;
|
|
38303
38305
|
}
|
|
38304
38306
|
|
|
38305
38307
|
export interface ImaMaterialCheckReportAuditInfo {
|
|
@@ -38479,6 +38481,7 @@ export interface ImaChemistryCompositeSpecificationDto {
|
|
|
38479
38481
|
prenW?: ImaSpecificationLineDto | null;
|
|
38480
38482
|
v_Nb_Ti?: boolean | null;
|
|
38481
38483
|
ce?: boolean | null;
|
|
38484
|
+
nb_Ta?: ImaSpecificationLineDto | null;
|
|
38482
38485
|
}
|
|
38483
38486
|
|
|
38484
38487
|
export interface ImaMechanicalSpecificationDto {
|