@ignos/api-client 20250320.0.11401 → 20250320.0.11407

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.
@@ -11796,6 +11796,8 @@ export declare class MeasurementFormNeedDto implements IMeasurementFormNeedDto {
11796
11796
  workorder?: string | null;
11797
11797
  operation?: number | null;
11798
11798
  resource?: string | null;
11799
+ resourceId?: string | null;
11800
+ resourceName?: string | null;
11799
11801
  assignedTo?: UserDto | null;
11800
11802
  isGeneratedRequirement: boolean;
11801
11803
  measurementSchemaId?: string | null;
@@ -11817,6 +11819,8 @@ export interface IMeasurementFormNeedDto {
11817
11819
  workorder?: string | null;
11818
11820
  operation?: number | null;
11819
11821
  resource?: string | null;
11822
+ resourceId?: string | null;
11823
+ resourceName?: string | null;
11820
11824
  assignedTo?: UserDto | null;
11821
11825
  isGeneratedRequirement: boolean;
11822
11826
  measurementSchemaId?: string | null;
@@ -39962,6 +39962,8 @@ export class MeasurementFormNeedDto {
39962
39962
  this.workorder = _data["workorder"];
39963
39963
  this.operation = _data["operation"];
39964
39964
  this.resource = _data["resource"];
39965
+ this.resourceId = _data["resourceId"];
39966
+ this.resourceName = _data["resourceName"];
39965
39967
  this.assignedTo = _data["assignedTo"] ? UserDto.fromJS(_data["assignedTo"]) : undefined;
39966
39968
  this.isGeneratedRequirement = _data["isGeneratedRequirement"];
39967
39969
  this.measurementSchemaId = _data["measurementSchemaId"];
@@ -39987,6 +39989,8 @@ export class MeasurementFormNeedDto {
39987
39989
  data["workorder"] = this.workorder;
39988
39990
  data["operation"] = this.operation;
39989
39991
  data["resource"] = this.resource;
39992
+ data["resourceId"] = this.resourceId;
39993
+ data["resourceName"] = this.resourceName;
39990
39994
  data["assignedTo"] = this.assignedTo ? this.assignedTo.toJSON() : undefined;
39991
39995
  data["isGeneratedRequirement"] = this.isGeneratedRequirement;
39992
39996
  data["measurementSchemaId"] = this.measurementSchemaId;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20250320.0.11401",
3
+ "version": "20250320.0.11407",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -50661,6 +50661,8 @@ export class MeasurementFormNeedDto implements IMeasurementFormNeedDto {
50661
50661
  workorder?: string | null;
50662
50662
  operation?: number | null;
50663
50663
  resource?: string | null;
50664
+ resourceId?: string | null;
50665
+ resourceName?: string | null;
50664
50666
  assignedTo?: UserDto | null;
50665
50667
  isGeneratedRequirement!: boolean;
50666
50668
  measurementSchemaId?: string | null;
@@ -50688,6 +50690,8 @@ export class MeasurementFormNeedDto implements IMeasurementFormNeedDto {
50688
50690
  this.workorder = _data["workorder"];
50689
50691
  this.operation = _data["operation"];
50690
50692
  this.resource = _data["resource"];
50693
+ this.resourceId = _data["resourceId"];
50694
+ this.resourceName = _data["resourceName"];
50691
50695
  this.assignedTo = _data["assignedTo"] ? UserDto.fromJS(_data["assignedTo"]) : <any>undefined;
50692
50696
  this.isGeneratedRequirement = _data["isGeneratedRequirement"];
50693
50697
  this.measurementSchemaId = _data["measurementSchemaId"];
@@ -50715,6 +50719,8 @@ export class MeasurementFormNeedDto implements IMeasurementFormNeedDto {
50715
50719
  data["workorder"] = this.workorder;
50716
50720
  data["operation"] = this.operation;
50717
50721
  data["resource"] = this.resource;
50722
+ data["resourceId"] = this.resourceId;
50723
+ data["resourceName"] = this.resourceName;
50718
50724
  data["assignedTo"] = this.assignedTo ? this.assignedTo.toJSON() : <any>undefined;
50719
50725
  data["isGeneratedRequirement"] = this.isGeneratedRequirement;
50720
50726
  data["measurementSchemaId"] = this.measurementSchemaId;
@@ -50735,6 +50741,8 @@ export interface IMeasurementFormNeedDto {
50735
50741
  workorder?: string | null;
50736
50742
  operation?: number | null;
50737
50743
  resource?: string | null;
50744
+ resourceId?: string | null;
50745
+ resourceName?: string | null;
50738
50746
  assignedTo?: UserDto | null;
50739
50747
  isGeneratedRequirement: boolean;
50740
50748
  measurementSchemaId?: string | null;