@ignos/api-client 20250311.0.11347 → 20250312.0.11352
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 +8 -10
- package/lib/ignosportal-api.js +0 -2
- package/package.json +1 -1
- package/src/ignosportal-api.ts +8 -12
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -11099,15 +11099,14 @@ export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGr
|
|
|
11099
11099
|
section?: string | null;
|
|
11100
11100
|
pageNumber?: number | null;
|
|
11101
11101
|
measurements?: number | null;
|
|
11102
|
-
nominal?: number | null;
|
|
11103
11102
|
nominalText?: string | null;
|
|
11104
11103
|
type?: string | null;
|
|
11105
11104
|
subType?: string | null;
|
|
11106
11105
|
unitOfMeasure?: string | null;
|
|
11107
|
-
plusTolerance?:
|
|
11108
|
-
minusTolerance?:
|
|
11109
|
-
upperLimit?:
|
|
11110
|
-
lowerLimit?:
|
|
11106
|
+
plusTolerance?: string | null;
|
|
11107
|
+
minusTolerance?: string | null;
|
|
11108
|
+
upperLimit?: string | null;
|
|
11109
|
+
lowerLimit?: string | null;
|
|
11111
11110
|
coatingThickness?: number | null;
|
|
11112
11111
|
comments?: string | null;
|
|
11113
11112
|
frequency: MeasurementFrequency;
|
|
@@ -11125,15 +11124,14 @@ export interface IUpdateSchemaGroupedElementRowDto {
|
|
|
11125
11124
|
section?: string | null;
|
|
11126
11125
|
pageNumber?: number | null;
|
|
11127
11126
|
measurements?: number | null;
|
|
11128
|
-
nominal?: number | null;
|
|
11129
11127
|
nominalText?: string | null;
|
|
11130
11128
|
type?: string | null;
|
|
11131
11129
|
subType?: string | null;
|
|
11132
11130
|
unitOfMeasure?: string | null;
|
|
11133
|
-
plusTolerance?:
|
|
11134
|
-
minusTolerance?:
|
|
11135
|
-
upperLimit?:
|
|
11136
|
-
lowerLimit?:
|
|
11131
|
+
plusTolerance?: string | null;
|
|
11132
|
+
minusTolerance?: string | null;
|
|
11133
|
+
upperLimit?: string | null;
|
|
11134
|
+
lowerLimit?: string | null;
|
|
11137
11135
|
coatingThickness?: number | null;
|
|
11138
11136
|
comments?: string | null;
|
|
11139
11137
|
frequency: MeasurementFrequency;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -38646,7 +38646,6 @@ export class UpdateSchemaGroupedElementRowDto {
|
|
|
38646
38646
|
this.section = _data["section"];
|
|
38647
38647
|
this.pageNumber = _data["pageNumber"];
|
|
38648
38648
|
this.measurements = _data["measurements"];
|
|
38649
|
-
this.nominal = _data["nominal"];
|
|
38650
38649
|
this.nominalText = _data["nominalText"];
|
|
38651
38650
|
this.type = _data["type"];
|
|
38652
38651
|
this.subType = _data["subType"];
|
|
@@ -38676,7 +38675,6 @@ export class UpdateSchemaGroupedElementRowDto {
|
|
|
38676
38675
|
data["section"] = this.section;
|
|
38677
38676
|
data["pageNumber"] = this.pageNumber;
|
|
38678
38677
|
data["measurements"] = this.measurements;
|
|
38679
|
-
data["nominal"] = this.nominal;
|
|
38680
38678
|
data["nominalText"] = this.nominalText;
|
|
38681
38679
|
data["type"] = this.type;
|
|
38682
38680
|
data["subType"] = this.subType;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -48657,15 +48657,14 @@ export class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedEle
|
|
|
48657
48657
|
section?: string | null;
|
|
48658
48658
|
pageNumber?: number | null;
|
|
48659
48659
|
measurements?: number | null;
|
|
48660
|
-
nominal?: number | null;
|
|
48661
48660
|
nominalText?: string | null;
|
|
48662
48661
|
type?: string | null;
|
|
48663
48662
|
subType?: string | null;
|
|
48664
48663
|
unitOfMeasure?: string | null;
|
|
48665
|
-
plusTolerance?:
|
|
48666
|
-
minusTolerance?:
|
|
48667
|
-
upperLimit?:
|
|
48668
|
-
lowerLimit?:
|
|
48664
|
+
plusTolerance?: string | null;
|
|
48665
|
+
minusTolerance?: string | null;
|
|
48666
|
+
upperLimit?: string | null;
|
|
48667
|
+
lowerLimit?: string | null;
|
|
48669
48668
|
coatingThickness?: number | null;
|
|
48670
48669
|
comments?: string | null;
|
|
48671
48670
|
frequency!: MeasurementFrequency;
|
|
@@ -48689,7 +48688,6 @@ export class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedEle
|
|
|
48689
48688
|
this.section = _data["section"];
|
|
48690
48689
|
this.pageNumber = _data["pageNumber"];
|
|
48691
48690
|
this.measurements = _data["measurements"];
|
|
48692
|
-
this.nominal = _data["nominal"];
|
|
48693
48691
|
this.nominalText = _data["nominalText"];
|
|
48694
48692
|
this.type = _data["type"];
|
|
48695
48693
|
this.subType = _data["subType"];
|
|
@@ -48721,7 +48719,6 @@ export class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedEle
|
|
|
48721
48719
|
data["section"] = this.section;
|
|
48722
48720
|
data["pageNumber"] = this.pageNumber;
|
|
48723
48721
|
data["measurements"] = this.measurements;
|
|
48724
|
-
data["nominal"] = this.nominal;
|
|
48725
48722
|
data["nominalText"] = this.nominalText;
|
|
48726
48723
|
data["type"] = this.type;
|
|
48727
48724
|
data["subType"] = this.subType;
|
|
@@ -48746,15 +48743,14 @@ export interface IUpdateSchemaGroupedElementRowDto {
|
|
|
48746
48743
|
section?: string | null;
|
|
48747
48744
|
pageNumber?: number | null;
|
|
48748
48745
|
measurements?: number | null;
|
|
48749
|
-
nominal?: number | null;
|
|
48750
48746
|
nominalText?: string | null;
|
|
48751
48747
|
type?: string | null;
|
|
48752
48748
|
subType?: string | null;
|
|
48753
48749
|
unitOfMeasure?: string | null;
|
|
48754
|
-
plusTolerance?:
|
|
48755
|
-
minusTolerance?:
|
|
48756
|
-
upperLimit?:
|
|
48757
|
-
lowerLimit?:
|
|
48750
|
+
plusTolerance?: string | null;
|
|
48751
|
+
minusTolerance?: string | null;
|
|
48752
|
+
upperLimit?: string | null;
|
|
48753
|
+
lowerLimit?: string | null;
|
|
48758
48754
|
coatingThickness?: number | null;
|
|
48759
48755
|
comments?: string | null;
|
|
48760
48756
|
frequency: MeasurementFrequency;
|