@ignos/api-client 20251022.0.12942-alpha → 20251022.0.12946-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.
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -5216,6 +5216,7 @@ export declare class MeasuringToolDto implements IMeasuringToolDto {
|
|
|
5216
5216
|
min?: number | null;
|
|
5217
5217
|
max?: number | null;
|
|
5218
5218
|
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
5219
|
+
lastUsedDate?: Date | null;
|
|
5219
5220
|
lastCalibrationDate?: Date | null;
|
|
5220
5221
|
nextCalibrationDate?: Date | null;
|
|
5221
5222
|
calibrationInterval?: number | null;
|
|
@@ -5244,6 +5245,7 @@ export interface IMeasuringToolDto {
|
|
|
5244
5245
|
min?: number | null;
|
|
5245
5246
|
max?: number | null;
|
|
5246
5247
|
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
5248
|
+
lastUsedDate?: Date | null;
|
|
5247
5249
|
lastCalibrationDate?: Date | null;
|
|
5248
5250
|
nextCalibrationDate?: Date | null;
|
|
5249
5251
|
calibrationInterval?: number | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -28663,6 +28663,7 @@ export class MeasuringToolDto {
|
|
|
28663
28663
|
this.min = _data["min"];
|
|
28664
28664
|
this.max = _data["max"];
|
|
28665
28665
|
this.lastUsedBy = _data["lastUsedBy"] ? MeasuringToolLastUsedByDto.fromJS(_data["lastUsedBy"]) : undefined;
|
|
28666
|
+
this.lastUsedDate = _data["lastUsedDate"] ? new Date(_data["lastUsedDate"].toString()) : undefined;
|
|
28666
28667
|
this.lastCalibrationDate = _data["lastCalibrationDate"] ? new Date(_data["lastCalibrationDate"].toString()) : undefined;
|
|
28667
28668
|
this.nextCalibrationDate = _data["nextCalibrationDate"] ? new Date(_data["nextCalibrationDate"].toString()) : undefined;
|
|
28668
28669
|
this.calibrationInterval = _data["calibrationInterval"];
|
|
@@ -28695,6 +28696,7 @@ export class MeasuringToolDto {
|
|
|
28695
28696
|
data["min"] = this.min;
|
|
28696
28697
|
data["max"] = this.max;
|
|
28697
28698
|
data["lastUsedBy"] = this.lastUsedBy ? this.lastUsedBy.toJSON() : undefined;
|
|
28699
|
+
data["lastUsedDate"] = this.lastUsedDate ? this.lastUsedDate.toISOString() : undefined;
|
|
28698
28700
|
data["lastCalibrationDate"] = this.lastCalibrationDate ? this.lastCalibrationDate.toISOString() : undefined;
|
|
28699
28701
|
data["nextCalibrationDate"] = this.nextCalibrationDate ? this.nextCalibrationDate.toISOString() : undefined;
|
|
28700
28702
|
data["calibrationInterval"] = this.calibrationInterval;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -32622,6 +32622,7 @@ export class MeasuringToolDto implements IMeasuringToolDto {
|
|
|
32622
32622
|
min?: number | null;
|
|
32623
32623
|
max?: number | null;
|
|
32624
32624
|
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
32625
|
+
lastUsedDate?: Date | null;
|
|
32625
32626
|
lastCalibrationDate?: Date | null;
|
|
32626
32627
|
nextCalibrationDate?: Date | null;
|
|
32627
32628
|
calibrationInterval?: number | null;
|
|
@@ -32656,6 +32657,7 @@ export class MeasuringToolDto implements IMeasuringToolDto {
|
|
|
32656
32657
|
this.min = _data["min"];
|
|
32657
32658
|
this.max = _data["max"];
|
|
32658
32659
|
this.lastUsedBy = _data["lastUsedBy"] ? MeasuringToolLastUsedByDto.fromJS(_data["lastUsedBy"]) : undefined as any;
|
|
32660
|
+
this.lastUsedDate = _data["lastUsedDate"] ? new Date(_data["lastUsedDate"].toString()) : undefined as any;
|
|
32659
32661
|
this.lastCalibrationDate = _data["lastCalibrationDate"] ? new Date(_data["lastCalibrationDate"].toString()) : undefined as any;
|
|
32660
32662
|
this.nextCalibrationDate = _data["nextCalibrationDate"] ? new Date(_data["nextCalibrationDate"].toString()) : undefined as any;
|
|
32661
32663
|
this.calibrationInterval = _data["calibrationInterval"];
|
|
@@ -32690,6 +32692,7 @@ export class MeasuringToolDto implements IMeasuringToolDto {
|
|
|
32690
32692
|
data["min"] = this.min;
|
|
32691
32693
|
data["max"] = this.max;
|
|
32692
32694
|
data["lastUsedBy"] = this.lastUsedBy ? this.lastUsedBy.toJSON() : undefined as any;
|
|
32695
|
+
data["lastUsedDate"] = this.lastUsedDate ? this.lastUsedDate.toISOString() : undefined as any;
|
|
32693
32696
|
data["lastCalibrationDate"] = this.lastCalibrationDate ? this.lastCalibrationDate.toISOString() : undefined as any;
|
|
32694
32697
|
data["nextCalibrationDate"] = this.nextCalibrationDate ? this.nextCalibrationDate.toISOString() : undefined as any;
|
|
32695
32698
|
data["calibrationInterval"] = this.calibrationInterval;
|
|
@@ -32717,6 +32720,7 @@ export interface IMeasuringToolDto {
|
|
|
32717
32720
|
min?: number | null;
|
|
32718
32721
|
max?: number | null;
|
|
32719
32722
|
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
32723
|
+
lastUsedDate?: Date | null;
|
|
32720
32724
|
lastCalibrationDate?: Date | null;
|
|
32721
32725
|
nextCalibrationDate?: Date | null;
|
|
32722
32726
|
calibrationInterval?: number | null;
|