@ignos/api-client 20250307.0.11317 → 20250307.0.11324

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.
@@ -11086,6 +11086,7 @@ export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGr
11086
11086
  balloonId: string;
11087
11087
  section?: string | null;
11088
11088
  pageNumber?: number | null;
11089
+ measurements?: number | null;
11089
11090
  nominal?: number | null;
11090
11091
  type?: string | null;
11091
11092
  subType?: string | null;
@@ -11108,6 +11109,7 @@ export interface IUpdateSchemaGroupedElementRowDto {
11108
11109
  balloonId: string;
11109
11110
  section?: string | null;
11110
11111
  pageNumber?: number | null;
11112
+ measurements?: number | null;
11111
11113
  nominal?: number | null;
11112
11114
  type?: string | null;
11113
11115
  subType?: string | null;
@@ -38596,6 +38596,7 @@ export class UpdateSchemaGroupedElementRowDto {
38596
38596
  this.balloonId = _data["balloonId"];
38597
38597
  this.section = _data["section"];
38598
38598
  this.pageNumber = _data["pageNumber"];
38599
+ this.measurements = _data["measurements"];
38599
38600
  this.nominal = _data["nominal"];
38600
38601
  this.type = _data["type"];
38601
38602
  this.subType = _data["subType"];
@@ -38622,6 +38623,7 @@ export class UpdateSchemaGroupedElementRowDto {
38622
38623
  data["balloonId"] = this.balloonId;
38623
38624
  data["section"] = this.section;
38624
38625
  data["pageNumber"] = this.pageNumber;
38626
+ data["measurements"] = this.measurements;
38625
38627
  data["nominal"] = this.nominal;
38626
38628
  data["type"] = this.type;
38627
38629
  data["subType"] = this.subType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20250307.0.11317",
3
+ "version": "20250307.0.11324",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -48593,6 +48593,7 @@ export class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedEle
48593
48593
  balloonId!: string;
48594
48594
  section?: string | null;
48595
48595
  pageNumber?: number | null;
48596
+ measurements?: number | null;
48596
48597
  nominal?: number | null;
48597
48598
  type?: string | null;
48598
48599
  subType?: string | null;
@@ -48621,6 +48622,7 @@ export class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedEle
48621
48622
  this.balloonId = _data["balloonId"];
48622
48623
  this.section = _data["section"];
48623
48624
  this.pageNumber = _data["pageNumber"];
48625
+ this.measurements = _data["measurements"];
48624
48626
  this.nominal = _data["nominal"];
48625
48627
  this.type = _data["type"];
48626
48628
  this.subType = _data["subType"];
@@ -48649,6 +48651,7 @@ export class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedEle
48649
48651
  data["balloonId"] = this.balloonId;
48650
48652
  data["section"] = this.section;
48651
48653
  data["pageNumber"] = this.pageNumber;
48654
+ data["measurements"] = this.measurements;
48652
48655
  data["nominal"] = this.nominal;
48653
48656
  data["type"] = this.type;
48654
48657
  data["subType"] = this.subType;
@@ -48670,6 +48673,7 @@ export interface IUpdateSchemaGroupedElementRowDto {
48670
48673
  balloonId: string;
48671
48674
  section?: string | null;
48672
48675
  pageNumber?: number | null;
48676
+ measurements?: number | null;
48673
48677
  nominal?: number | null;
48674
48678
  type?: string | null;
48675
48679
  subType?: string | null;