@ignos/api-client 20250711.0.12189-alpha → 20250711.0.12190-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.
@@ -13286,7 +13286,8 @@ export interface IMeasurementFormInstanceElementDto {
13286
13286
  export declare class MeasurementFormElementValueDto implements IMeasurementFormElementValueDto {
13287
13287
  bonus?: string | null;
13288
13288
  completed: boolean;
13289
- sequence: string;
13289
+ sequence?: string | null;
13290
+ serialNumber: string;
13290
13291
  value?: string | null;
13291
13292
  updatedByUser: string;
13292
13293
  updatedDate: Date;
@@ -13302,7 +13303,8 @@ export declare class MeasurementFormElementValueDto implements IMeasurementFormE
13302
13303
  export interface IMeasurementFormElementValueDto {
13303
13304
  bonus?: string | null;
13304
13305
  completed: boolean;
13305
- sequence: string;
13306
+ sequence?: string | null;
13307
+ serialNumber: string;
13306
13308
  value?: string | null;
13307
13309
  updatedByUser: string;
13308
13310
  updatedDate: Date;
@@ -44261,6 +44261,7 @@ export class MeasurementFormElementValueDto {
44261
44261
  this.bonus = _data["bonus"];
44262
44262
  this.completed = _data["completed"];
44263
44263
  this.sequence = _data["sequence"];
44264
+ this.serialNumber = _data["serialNumber"];
44264
44265
  this.value = _data["value"];
44265
44266
  this.updatedByUser = _data["updatedByUser"];
44266
44267
  this.updatedDate = _data["updatedDate"] ? new Date(_data["updatedDate"].toString()) : undefined;
@@ -44285,6 +44286,7 @@ export class MeasurementFormElementValueDto {
44285
44286
  data["bonus"] = this.bonus;
44286
44287
  data["completed"] = this.completed;
44287
44288
  data["sequence"] = this.sequence;
44289
+ data["serialNumber"] = this.serialNumber;
44288
44290
  data["value"] = this.value;
44289
44291
  data["updatedByUser"] = this.updatedByUser;
44290
44292
  data["updatedDate"] = this.updatedDate ? this.updatedDate.toISOString() : undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20250711.0.12189-alpha",
3
+ "version": "20250711.0.12190-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -56368,7 +56368,8 @@ export interface IMeasurementFormInstanceElementDto {
56368
56368
  export class MeasurementFormElementValueDto implements IMeasurementFormElementValueDto {
56369
56369
  bonus?: string | null;
56370
56370
  completed!: boolean;
56371
- sequence!: string;
56371
+ sequence?: string | null;
56372
+ serialNumber!: string;
56372
56373
  value?: string | null;
56373
56374
  updatedByUser!: string;
56374
56375
  updatedDate!: Date;
@@ -56394,6 +56395,7 @@ export class MeasurementFormElementValueDto implements IMeasurementFormElementVa
56394
56395
  this.bonus = _data["bonus"];
56395
56396
  this.completed = _data["completed"];
56396
56397
  this.sequence = _data["sequence"];
56398
+ this.serialNumber = _data["serialNumber"];
56397
56399
  this.value = _data["value"];
56398
56400
  this.updatedByUser = _data["updatedByUser"];
56399
56401
  this.updatedDate = _data["updatedDate"] ? new Date(_data["updatedDate"].toString()) : <any>undefined;
@@ -56420,6 +56422,7 @@ export class MeasurementFormElementValueDto implements IMeasurementFormElementVa
56420
56422
  data["bonus"] = this.bonus;
56421
56423
  data["completed"] = this.completed;
56422
56424
  data["sequence"] = this.sequence;
56425
+ data["serialNumber"] = this.serialNumber;
56423
56426
  data["value"] = this.value;
56424
56427
  data["updatedByUser"] = this.updatedByUser;
56425
56428
  data["updatedDate"] = this.updatedDate ? this.updatedDate.toISOString() : <any>undefined;
@@ -56438,7 +56441,8 @@ export class MeasurementFormElementValueDto implements IMeasurementFormElementVa
56438
56441
  export interface IMeasurementFormElementValueDto {
56439
56442
  bonus?: string | null;
56440
56443
  completed: boolean;
56441
- sequence: string;
56444
+ sequence?: string | null;
56445
+ serialNumber: string;
56442
56446
  value?: string | null;
56443
56447
  updatedByUser: string;
56444
56448
  updatedDate: Date;