@ignos/api-client 20250318.0.11388 → 20250320.0.11399

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.
@@ -12209,6 +12209,7 @@ export declare class MeasurementFormInstanceDto implements IMeasurementFormInsta
12209
12209
  suppliers: MeasurementFormWorkorderSupplierDto[];
12210
12210
  progress: MeasurementFormProgressDto;
12211
12211
  approvedReportUrl?: string | null;
12212
+ currentResource?: ResourceDto | null;
12212
12213
  constructor(data?: IMeasurementFormInstanceDto);
12213
12214
  init(_data?: any): void;
12214
12215
  static fromJS(data: any): MeasurementFormInstanceDto;
@@ -12231,6 +12232,7 @@ export interface IMeasurementFormInstanceDto {
12231
12232
  suppliers: MeasurementFormWorkorderSupplierDto[];
12232
12233
  progress: MeasurementFormProgressDto;
12233
12234
  approvedReportUrl?: string | null;
12235
+ currentResource?: ResourceDto | null;
12234
12236
  }
12235
12237
  export declare class MeasurementFormWorkorderSchemaDto implements IMeasurementFormWorkorderSchemaDto {
12236
12238
  id: string;
@@ -40799,6 +40799,7 @@ export class MeasurementFormInstanceDto {
40799
40799
  }
40800
40800
  this.progress = _data["progress"] ? MeasurementFormProgressDto.fromJS(_data["progress"]) : new MeasurementFormProgressDto();
40801
40801
  this.approvedReportUrl = _data["approvedReportUrl"];
40802
+ this.currentResource = _data["currentResource"] ? ResourceDto.fromJS(_data["currentResource"]) : undefined;
40802
40803
  }
40803
40804
  }
40804
40805
  static fromJS(data) {
@@ -40837,6 +40838,7 @@ export class MeasurementFormInstanceDto {
40837
40838
  }
40838
40839
  data["progress"] = this.progress ? this.progress.toJSON() : undefined;
40839
40840
  data["approvedReportUrl"] = this.approvedReportUrl;
40841
+ data["currentResource"] = this.currentResource ? this.currentResource.toJSON() : undefined;
40840
40842
  return data;
40841
40843
  }
40842
40844
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20250318.0.11388",
3
+ "version": "20250320.0.11399",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -51890,6 +51890,7 @@ export class MeasurementFormInstanceDto implements IMeasurementFormInstanceDto {
51890
51890
  suppliers!: MeasurementFormWorkorderSupplierDto[];
51891
51891
  progress!: MeasurementFormProgressDto;
51892
51892
  approvedReportUrl?: string | null;
51893
+ currentResource?: ResourceDto | null;
51893
51894
 
51894
51895
  constructor(data?: IMeasurementFormInstanceDto) {
51895
51896
  if (data) {
@@ -51936,6 +51937,7 @@ export class MeasurementFormInstanceDto implements IMeasurementFormInstanceDto {
51936
51937
  }
51937
51938
  this.progress = _data["progress"] ? MeasurementFormProgressDto.fromJS(_data["progress"]) : new MeasurementFormProgressDto();
51938
51939
  this.approvedReportUrl = _data["approvedReportUrl"];
51940
+ this.currentResource = _data["currentResource"] ? ResourceDto.fromJS(_data["currentResource"]) : <any>undefined;
51939
51941
  }
51940
51942
  }
51941
51943
 
@@ -51976,6 +51978,7 @@ export class MeasurementFormInstanceDto implements IMeasurementFormInstanceDto {
51976
51978
  }
51977
51979
  data["progress"] = this.progress ? this.progress.toJSON() : <any>undefined;
51978
51980
  data["approvedReportUrl"] = this.approvedReportUrl;
51981
+ data["currentResource"] = this.currentResource ? this.currentResource.toJSON() : <any>undefined;
51979
51982
  return data;
51980
51983
  }
51981
51984
  }
@@ -51997,6 +52000,7 @@ export interface IMeasurementFormInstanceDto {
51997
52000
  suppliers: MeasurementFormWorkorderSupplierDto[];
51998
52001
  progress: MeasurementFormProgressDto;
51999
52002
  approvedReportUrl?: string | null;
52003
+ currentResource?: ResourceDto | null;
52000
52004
  }
52001
52005
 
52002
52006
  export class MeasurementFormWorkorderSchemaDto implements IMeasurementFormWorkorderSchemaDto {