@ignos/api-client 20240701.0.9700 → 20240701.0.9706

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.
@@ -4156,6 +4156,9 @@ export declare class MeasuringToolDto implements IMeasuringToolDto {
4156
4156
  deprecatedDate?: Date | null;
4157
4157
  lastLocation?: string | null;
4158
4158
  lastLocationDate?: Date | null;
4159
+ usageLastMonth?: number | null;
4160
+ usageLastYear?: number | null;
4161
+ usageSinceLastCalibration?: number | null;
4159
4162
  calibrationStatus: CalibrationStatusDto;
4160
4163
  constructor(data?: IMeasuringToolDto);
4161
4164
  init(_data?: any): void;
@@ -4180,6 +4183,9 @@ export interface IMeasuringToolDto {
4180
4183
  deprecatedDate?: Date | null;
4181
4184
  lastLocation?: string | null;
4182
4185
  lastLocationDate?: Date | null;
4186
+ usageLastMonth?: number | null;
4187
+ usageLastYear?: number | null;
4188
+ usageSinceLastCalibration?: number | null;
4183
4189
  calibrationStatus: CalibrationStatusDto;
4184
4190
  }
4185
4191
  export type CalibrationStatusDto = "Uncalibrated" | "Deprecated" | "Expired" | "SoonDue" | "Valid";
@@ -22715,6 +22715,9 @@ export class MeasuringToolDto {
22715
22715
  this.deprecatedDate = _data["deprecatedDate"] ? new Date(_data["deprecatedDate"].toString()) : undefined;
22716
22716
  this.lastLocation = _data["lastLocation"];
22717
22717
  this.lastLocationDate = _data["lastLocationDate"] ? new Date(_data["lastLocationDate"].toString()) : undefined;
22718
+ this.usageLastMonth = _data["usageLastMonth"];
22719
+ this.usageLastYear = _data["usageLastYear"];
22720
+ this.usageSinceLastCalibration = _data["usageSinceLastCalibration"];
22718
22721
  this.calibrationStatus = _data["calibrationStatus"];
22719
22722
  }
22720
22723
  }
@@ -22743,6 +22746,9 @@ export class MeasuringToolDto {
22743
22746
  data["deprecatedDate"] = this.deprecatedDate ? this.deprecatedDate.toISOString() : undefined;
22744
22747
  data["lastLocation"] = this.lastLocation;
22745
22748
  data["lastLocationDate"] = this.lastLocationDate ? this.lastLocationDate.toISOString() : undefined;
22749
+ data["usageLastMonth"] = this.usageLastMonth;
22750
+ data["usageLastYear"] = this.usageLastYear;
22751
+ data["usageSinceLastCalibration"] = this.usageSinceLastCalibration;
22746
22752
  data["calibrationStatus"] = this.calibrationStatus;
22747
22753
  return data;
22748
22754
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240701.0.9700",
3
+ "version": "20240701.0.9706",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -25869,6 +25869,9 @@ export class MeasuringToolDto implements IMeasuringToolDto {
25869
25869
  deprecatedDate?: Date | null;
25870
25870
  lastLocation?: string | null;
25871
25871
  lastLocationDate?: Date | null;
25872
+ usageLastMonth?: number | null;
25873
+ usageLastYear?: number | null;
25874
+ usageSinceLastCalibration?: number | null;
25872
25875
  calibrationStatus!: CalibrationStatusDto;
25873
25876
 
25874
25877
  constructor(data?: IMeasuringToolDto) {
@@ -25899,6 +25902,9 @@ export class MeasuringToolDto implements IMeasuringToolDto {
25899
25902
  this.deprecatedDate = _data["deprecatedDate"] ? new Date(_data["deprecatedDate"].toString()) : <any>undefined;
25900
25903
  this.lastLocation = _data["lastLocation"];
25901
25904
  this.lastLocationDate = _data["lastLocationDate"] ? new Date(_data["lastLocationDate"].toString()) : <any>undefined;
25905
+ this.usageLastMonth = _data["usageLastMonth"];
25906
+ this.usageLastYear = _data["usageLastYear"];
25907
+ this.usageSinceLastCalibration = _data["usageSinceLastCalibration"];
25902
25908
  this.calibrationStatus = _data["calibrationStatus"];
25903
25909
  }
25904
25910
  }
@@ -25929,6 +25935,9 @@ export class MeasuringToolDto implements IMeasuringToolDto {
25929
25935
  data["deprecatedDate"] = this.deprecatedDate ? this.deprecatedDate.toISOString() : <any>undefined;
25930
25936
  data["lastLocation"] = this.lastLocation;
25931
25937
  data["lastLocationDate"] = this.lastLocationDate ? this.lastLocationDate.toISOString() : <any>undefined;
25938
+ data["usageLastMonth"] = this.usageLastMonth;
25939
+ data["usageLastYear"] = this.usageLastYear;
25940
+ data["usageSinceLastCalibration"] = this.usageSinceLastCalibration;
25932
25941
  data["calibrationStatus"] = this.calibrationStatus;
25933
25942
  return data;
25934
25943
  }
@@ -25952,6 +25961,9 @@ export interface IMeasuringToolDto {
25952
25961
  deprecatedDate?: Date | null;
25953
25962
  lastLocation?: string | null;
25954
25963
  lastLocationDate?: Date | null;
25964
+ usageLastMonth?: number | null;
25965
+ usageLastYear?: number | null;
25966
+ usageSinceLastCalibration?: number | null;
25955
25967
  calibrationStatus: CalibrationStatusDto;
25956
25968
  }
25957
25969