@ignos/api-client 20250701.0.12017 → 20250702.0.12045-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
CHANGED
|
@@ -11707,6 +11707,7 @@ export declare class MeasurementFormGroupedElementDto implements IMeasurementFor
|
|
|
11707
11707
|
machiningDimension?: number | null;
|
|
11708
11708
|
nominalInch?: number | null;
|
|
11709
11709
|
isValid: boolean;
|
|
11710
|
+
validationErrorMessage?: string | null;
|
|
11710
11711
|
constructor(data?: IMeasurementFormGroupedElementDto);
|
|
11711
11712
|
init(_data?: any): void;
|
|
11712
11713
|
static fromJS(data: any): MeasurementFormGroupedElementDto;
|
|
@@ -11752,8 +11753,9 @@ export interface IMeasurementFormGroupedElementDto {
|
|
|
11752
11753
|
machiningDimension?: number | null;
|
|
11753
11754
|
nominalInch?: number | null;
|
|
11754
11755
|
isValid: boolean;
|
|
11756
|
+
validationErrorMessage?: string | null;
|
|
11755
11757
|
}
|
|
11756
|
-
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "None";
|
|
11758
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
11757
11759
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
11758
11760
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|
|
11759
11761
|
export declare class MeasurementFormLinkedSchemaDto implements IMeasurementFormLinkedSchemaDto {
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -41070,6 +41070,7 @@ export class MeasurementFormGroupedElementDto {
|
|
|
41070
41070
|
this.machiningDimension = _data["machiningDimension"];
|
|
41071
41071
|
this.nominalInch = _data["nominalInch"];
|
|
41072
41072
|
this.isValid = _data["isValid"];
|
|
41073
|
+
this.validationErrorMessage = _data["validationErrorMessage"];
|
|
41073
41074
|
}
|
|
41074
41075
|
}
|
|
41075
41076
|
static fromJS(data) {
|
|
@@ -41119,6 +41120,7 @@ export class MeasurementFormGroupedElementDto {
|
|
|
41119
41120
|
data["machiningDimension"] = this.machiningDimension;
|
|
41120
41121
|
data["nominalInch"] = this.nominalInch;
|
|
41121
41122
|
data["isValid"] = this.isValid;
|
|
41123
|
+
data["validationErrorMessage"] = this.validationErrorMessage;
|
|
41122
41124
|
return data;
|
|
41123
41125
|
}
|
|
41124
41126
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -51577,6 +51577,7 @@ export class MeasurementFormGroupedElementDto implements IMeasurementFormGrouped
|
|
|
51577
51577
|
machiningDimension?: number | null;
|
|
51578
51578
|
nominalInch?: number | null;
|
|
51579
51579
|
isValid!: boolean;
|
|
51580
|
+
validationErrorMessage?: string | null;
|
|
51580
51581
|
|
|
51581
51582
|
constructor(data?: IMeasurementFormGroupedElementDto) {
|
|
51582
51583
|
if (data) {
|
|
@@ -51628,6 +51629,7 @@ export class MeasurementFormGroupedElementDto implements IMeasurementFormGrouped
|
|
|
51628
51629
|
this.machiningDimension = _data["machiningDimension"];
|
|
51629
51630
|
this.nominalInch = _data["nominalInch"];
|
|
51630
51631
|
this.isValid = _data["isValid"];
|
|
51632
|
+
this.validationErrorMessage = _data["validationErrorMessage"];
|
|
51631
51633
|
}
|
|
51632
51634
|
}
|
|
51633
51635
|
|
|
@@ -51679,6 +51681,7 @@ export class MeasurementFormGroupedElementDto implements IMeasurementFormGrouped
|
|
|
51679
51681
|
data["machiningDimension"] = this.machiningDimension;
|
|
51680
51682
|
data["nominalInch"] = this.nominalInch;
|
|
51681
51683
|
data["isValid"] = this.isValid;
|
|
51684
|
+
data["validationErrorMessage"] = this.validationErrorMessage;
|
|
51682
51685
|
return data;
|
|
51683
51686
|
}
|
|
51684
51687
|
}
|
|
@@ -51723,9 +51726,10 @@ export interface IMeasurementFormGroupedElementDto {
|
|
|
51723
51726
|
machiningDimension?: number | null;
|
|
51724
51727
|
nominalInch?: number | null;
|
|
51725
51728
|
isValid: boolean;
|
|
51729
|
+
validationErrorMessage?: string | null;
|
|
51726
51730
|
}
|
|
51727
51731
|
|
|
51728
|
-
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "None";
|
|
51732
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
51729
51733
|
|
|
51730
51734
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
51731
51735
|
|