@ignos/api-client 20260813.222.1-alpha → 20260814.223.1-alpha
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 +16 -6
- package/package.json +1 -1
- package/src/ignosportal-api.ts +19 -6
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -8620,13 +8620,12 @@ export interface ImaFerriteResultDto {
|
|
|
8620
8620
|
heatNumber?: string | null;
|
|
8621
8621
|
sampleReference?: string | null;
|
|
8622
8622
|
testLocation?: string | null;
|
|
8623
|
-
ferrite?:
|
|
8623
|
+
ferrite?: ImaSpecificationResultLineDto | null;
|
|
8624
8624
|
ferriteTolerance?: number | null;
|
|
8625
8625
|
reportedRange?: string | null;
|
|
8626
8626
|
intermetallicPhases?: boolean | null;
|
|
8627
8627
|
grainSize?: string | null;
|
|
8628
8628
|
testStandards: string[];
|
|
8629
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8630
8629
|
}
|
|
8631
8630
|
export interface ImaHeatTreatmentResultDto {
|
|
8632
8631
|
heatNumber?: string | null;
|
|
@@ -8658,7 +8657,7 @@ export interface ImaOverrideMaterialCheckRequestDto {
|
|
|
8658
8657
|
hardnessTestSection?: ImaOverrideHardnessTestResultsDto[] | null;
|
|
8659
8658
|
impactTestSection?: ImaOverrideImpactTestResultsDto[] | null;
|
|
8660
8659
|
corrosionTestSection?: ImaOverrideCorrosionTestResultsDto[] | null;
|
|
8661
|
-
ferriteResultSection?:
|
|
8660
|
+
ferriteResultSection?: ImaOverrideFerriteResultDto[] | null;
|
|
8662
8661
|
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
8663
8662
|
}
|
|
8664
8663
|
export interface ImaOverrideCertificateTypeResultsDto {
|
|
@@ -8807,6 +8806,11 @@ export interface ImaOverrideCorrosionTestResultsDto {
|
|
|
8807
8806
|
result?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8808
8807
|
acceptable?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8809
8808
|
}
|
|
8809
|
+
export interface ImaOverrideFerriteResultDto {
|
|
8810
|
+
heatNumber?: string | null;
|
|
8811
|
+
sampleReference?: string | null;
|
|
8812
|
+
ferrite?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8813
|
+
}
|
|
8810
8814
|
export interface ImaOverrideDocumentTypesResultsDto {
|
|
8811
8815
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8812
8816
|
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -9065,7 +9069,9 @@ export interface ImaChemistrySpecificationDto {
|
|
|
9065
9069
|
export interface ImaSpecificationLineDto {
|
|
9066
9070
|
min?: number | null;
|
|
9067
9071
|
max?: number | null;
|
|
9072
|
+
unit?: ImaUnitDto | null;
|
|
9068
9073
|
}
|
|
9074
|
+
export type ImaUnitDto = "Millimeter" | "Centimeter" | "Meter" | "Inch" | "Kilogram" | "Gram" | "Tonne" | "Pound" | "Megapascal" | "NewtonPerSquareMillimeter" | "KilopoundPerSquareInch" | "PoundPerSquareInch" | "Bar" | "Ppm" | "Percentage" | "WeightPercentage" | "Joule" | "FootPound" | "Celsius" | "Fahrenheit" | "Kelvin" | "Minute" | "Hour";
|
|
9069
9075
|
export interface ImaChemistryCompositeSpecificationDto {
|
|
9070
9076
|
pren?: ImaSpecificationLineDto | null;
|
|
9071
9077
|
pren22?: ImaSpecificationLineDto | null;
|
|
@@ -9189,6 +9195,7 @@ export interface SchemaCreatorElementDto {
|
|
|
9189
9195
|
isDirty?: boolean | null;
|
|
9190
9196
|
values?: SchemaCreatorElementValuesDto | null;
|
|
9191
9197
|
parseResult?: SchemaCreatorSnipResultDto | null;
|
|
9198
|
+
resolveAttempt?: SchemaCreatorParseAttemptDto | null;
|
|
9192
9199
|
}
|
|
9193
9200
|
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
9194
9201
|
export interface SchemaCreatorElementDrawingsDto {
|
|
@@ -9240,13 +9247,16 @@ export interface SchemaCreatorSnipResultDto {
|
|
|
9240
9247
|
coatingThickness?: number | null;
|
|
9241
9248
|
count?: number | null;
|
|
9242
9249
|
}
|
|
9243
|
-
export interface
|
|
9244
|
-
|
|
9245
|
-
startedAt?: Date | null;
|
|
9250
|
+
export interface SchemaCreatorParseAttemptDto {
|
|
9251
|
+
startedAt: Date;
|
|
9246
9252
|
errorType?: SchemaCreatorParseErrorTypeDto | null;
|
|
9247
9253
|
errorMessage?: string | null;
|
|
9248
9254
|
}
|
|
9249
9255
|
export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
|
|
9256
|
+
export interface SchemaCreatorFullParseStatusDto {
|
|
9257
|
+
inProgress: boolean;
|
|
9258
|
+
attempt?: SchemaCreatorParseAttemptDto | null;
|
|
9259
|
+
}
|
|
9250
9260
|
export interface MeasurementFormSchemaDto {
|
|
9251
9261
|
id: string;
|
|
9252
9262
|
versionId: number;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -37357,13 +37357,12 @@ export interface ImaFerriteResultDto {
|
|
|
37357
37357
|
heatNumber?: string | null;
|
|
37358
37358
|
sampleReference?: string | null;
|
|
37359
37359
|
testLocation?: string | null;
|
|
37360
|
-
ferrite?:
|
|
37360
|
+
ferrite?: ImaSpecificationResultLineDto | null;
|
|
37361
37361
|
ferriteTolerance?: number | null;
|
|
37362
37362
|
reportedRange?: string | null;
|
|
37363
37363
|
intermetallicPhases?: boolean | null;
|
|
37364
37364
|
grainSize?: string | null;
|
|
37365
37365
|
testStandards: string[];
|
|
37366
|
-
override?: ImaResultLineOverrideDto | null;
|
|
37367
37366
|
}
|
|
37368
37367
|
|
|
37369
37368
|
export interface ImaHeatTreatmentResultDto {
|
|
@@ -37398,7 +37397,7 @@ export interface ImaOverrideMaterialCheckRequestDto {
|
|
|
37398
37397
|
hardnessTestSection?: ImaOverrideHardnessTestResultsDto[] | null;
|
|
37399
37398
|
impactTestSection?: ImaOverrideImpactTestResultsDto[] | null;
|
|
37400
37399
|
corrosionTestSection?: ImaOverrideCorrosionTestResultsDto[] | null;
|
|
37401
|
-
ferriteResultSection?:
|
|
37400
|
+
ferriteResultSection?: ImaOverrideFerriteResultDto[] | null;
|
|
37402
37401
|
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
37403
37402
|
}
|
|
37404
37403
|
|
|
@@ -37567,6 +37566,12 @@ export interface ImaOverrideCorrosionTestResultsDto {
|
|
|
37567
37566
|
acceptable?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37568
37567
|
}
|
|
37569
37568
|
|
|
37569
|
+
export interface ImaOverrideFerriteResultDto {
|
|
37570
|
+
heatNumber?: string | null;
|
|
37571
|
+
sampleReference?: string | null;
|
|
37572
|
+
ferrite?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37573
|
+
}
|
|
37574
|
+
|
|
37570
37575
|
export interface ImaOverrideDocumentTypesResultsDto {
|
|
37571
37576
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37572
37577
|
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -37850,8 +37855,11 @@ export interface ImaChemistrySpecificationDto {
|
|
|
37850
37855
|
export interface ImaSpecificationLineDto {
|
|
37851
37856
|
min?: number | null;
|
|
37852
37857
|
max?: number | null;
|
|
37858
|
+
unit?: ImaUnitDto | null;
|
|
37853
37859
|
}
|
|
37854
37860
|
|
|
37861
|
+
export type ImaUnitDto = "Millimeter" | "Centimeter" | "Meter" | "Inch" | "Kilogram" | "Gram" | "Tonne" | "Pound" | "Megapascal" | "NewtonPerSquareMillimeter" | "KilopoundPerSquareInch" | "PoundPerSquareInch" | "Bar" | "Ppm" | "Percentage" | "WeightPercentage" | "Joule" | "FootPound" | "Celsius" | "Fahrenheit" | "Kelvin" | "Minute" | "Hour";
|
|
37862
|
+
|
|
37855
37863
|
export interface ImaChemistryCompositeSpecificationDto {
|
|
37856
37864
|
pren?: ImaSpecificationLineDto | null;
|
|
37857
37865
|
pren22?: ImaSpecificationLineDto | null;
|
|
@@ -37995,6 +38003,7 @@ export interface SchemaCreatorElementDto {
|
|
|
37995
38003
|
isDirty?: boolean | null;
|
|
37996
38004
|
values?: SchemaCreatorElementValuesDto | null;
|
|
37997
38005
|
parseResult?: SchemaCreatorSnipResultDto | null;
|
|
38006
|
+
resolveAttempt?: SchemaCreatorParseAttemptDto | null;
|
|
37998
38007
|
}
|
|
37999
38008
|
|
|
38000
38009
|
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
@@ -38056,15 +38065,19 @@ export interface SchemaCreatorSnipResultDto {
|
|
|
38056
38065
|
count?: number | null;
|
|
38057
38066
|
}
|
|
38058
38067
|
|
|
38059
|
-
export interface
|
|
38060
|
-
|
|
38061
|
-
startedAt?: Date | null;
|
|
38068
|
+
export interface SchemaCreatorParseAttemptDto {
|
|
38069
|
+
startedAt: Date;
|
|
38062
38070
|
errorType?: SchemaCreatorParseErrorTypeDto | null;
|
|
38063
38071
|
errorMessage?: string | null;
|
|
38064
38072
|
}
|
|
38065
38073
|
|
|
38066
38074
|
export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
|
|
38067
38075
|
|
|
38076
|
+
export interface SchemaCreatorFullParseStatusDto {
|
|
38077
|
+
inProgress: boolean;
|
|
38078
|
+
attempt?: SchemaCreatorParseAttemptDto | null;
|
|
38079
|
+
}
|
|
38080
|
+
|
|
38068
38081
|
export interface MeasurementFormSchemaDto {
|
|
38069
38082
|
id: string;
|
|
38070
38083
|
versionId: number;
|