@ignos/api-client 20260126.0.13861 → 20260128.0.13875-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
|
@@ -15030,6 +15030,7 @@ export interface IValidationRuleDto {
|
|
|
15030
15030
|
export declare class SaveValueResponseDto implements ISaveValueResponseDto {
|
|
15031
15031
|
elementCompleted: boolean;
|
|
15032
15032
|
warning?: string | null;
|
|
15033
|
+
informationText?: string | null;
|
|
15033
15034
|
isOutsideTolerances: boolean;
|
|
15034
15035
|
isCloseToTolerances: boolean;
|
|
15035
15036
|
tools: MeasurementFormToolValueDto[];
|
|
@@ -15041,6 +15042,7 @@ export declare class SaveValueResponseDto implements ISaveValueResponseDto {
|
|
|
15041
15042
|
export interface ISaveValueResponseDto {
|
|
15042
15043
|
elementCompleted: boolean;
|
|
15043
15044
|
warning?: string | null;
|
|
15045
|
+
informationText?: string | null;
|
|
15044
15046
|
isOutsideTolerances: boolean;
|
|
15045
15047
|
isCloseToTolerances: boolean;
|
|
15046
15048
|
tools: MeasurementFormToolValueDto[];
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -51547,6 +51547,7 @@ export class SaveValueResponseDto {
|
|
|
51547
51547
|
if (_data) {
|
|
51548
51548
|
this.elementCompleted = _data["elementCompleted"];
|
|
51549
51549
|
this.warning = _data["warning"];
|
|
51550
|
+
this.informationText = _data["informationText"];
|
|
51550
51551
|
this.isOutsideTolerances = _data["isOutsideTolerances"];
|
|
51551
51552
|
this.isCloseToTolerances = _data["isCloseToTolerances"];
|
|
51552
51553
|
if (Array.isArray(_data["tools"])) {
|
|
@@ -51566,6 +51567,7 @@ export class SaveValueResponseDto {
|
|
|
51566
51567
|
data = typeof data === 'object' ? data : {};
|
|
51567
51568
|
data["elementCompleted"] = this.elementCompleted;
|
|
51568
51569
|
data["warning"] = this.warning;
|
|
51570
|
+
data["informationText"] = this.informationText;
|
|
51569
51571
|
data["isOutsideTolerances"] = this.isOutsideTolerances;
|
|
51570
51572
|
data["isCloseToTolerances"] = this.isCloseToTolerances;
|
|
51571
51573
|
if (Array.isArray(this.tools)) {
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -65141,6 +65141,7 @@ export interface IValidationRuleDto {
|
|
|
65141
65141
|
export class SaveValueResponseDto implements ISaveValueResponseDto {
|
|
65142
65142
|
elementCompleted!: boolean;
|
|
65143
65143
|
warning?: string | null;
|
|
65144
|
+
informationText?: string | null;
|
|
65144
65145
|
isOutsideTolerances!: boolean;
|
|
65145
65146
|
isCloseToTolerances!: boolean;
|
|
65146
65147
|
tools!: MeasurementFormToolValueDto[];
|
|
@@ -65161,6 +65162,7 @@ export class SaveValueResponseDto implements ISaveValueResponseDto {
|
|
|
65161
65162
|
if (_data) {
|
|
65162
65163
|
this.elementCompleted = _data["elementCompleted"];
|
|
65163
65164
|
this.warning = _data["warning"];
|
|
65165
|
+
this.informationText = _data["informationText"];
|
|
65164
65166
|
this.isOutsideTolerances = _data["isOutsideTolerances"];
|
|
65165
65167
|
this.isCloseToTolerances = _data["isCloseToTolerances"];
|
|
65166
65168
|
if (Array.isArray(_data["tools"])) {
|
|
@@ -65182,6 +65184,7 @@ export class SaveValueResponseDto implements ISaveValueResponseDto {
|
|
|
65182
65184
|
data = typeof data === 'object' ? data : {};
|
|
65183
65185
|
data["elementCompleted"] = this.elementCompleted;
|
|
65184
65186
|
data["warning"] = this.warning;
|
|
65187
|
+
data["informationText"] = this.informationText;
|
|
65185
65188
|
data["isOutsideTolerances"] = this.isOutsideTolerances;
|
|
65186
65189
|
data["isCloseToTolerances"] = this.isCloseToTolerances;
|
|
65187
65190
|
if (Array.isArray(this.tools)) {
|
|
@@ -65196,6 +65199,7 @@ export class SaveValueResponseDto implements ISaveValueResponseDto {
|
|
|
65196
65199
|
export interface ISaveValueResponseDto {
|
|
65197
65200
|
elementCompleted: boolean;
|
|
65198
65201
|
warning?: string | null;
|
|
65202
|
+
informationText?: string | null;
|
|
65199
65203
|
isOutsideTolerances: boolean;
|
|
65200
65204
|
isCloseToTolerances: boolean;
|
|
65201
65205
|
tools: MeasurementFormToolValueDto[];
|