@ignos/api-client 20240701.0.9700 → 20240702.0.9720
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 +10 -2
- package/lib/ignosportal-api.js +8 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +18 -2
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -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";
|
|
@@ -8795,7 +8801,8 @@ export interface IBookingTransportRequestDto {
|
|
|
8795
8801
|
toLocationId: string;
|
|
8796
8802
|
}
|
|
8797
8803
|
export declare class BookingItemRequestDto implements IBookingItemRequestDto {
|
|
8798
|
-
|
|
8804
|
+
workOrderId?: string | null;
|
|
8805
|
+
trackingId?: string | null;
|
|
8799
8806
|
comment?: string | null;
|
|
8800
8807
|
constructor(data?: IBookingItemRequestDto);
|
|
8801
8808
|
init(_data?: any): void;
|
|
@@ -8803,7 +8810,8 @@ export declare class BookingItemRequestDto implements IBookingItemRequestDto {
|
|
|
8803
8810
|
toJSON(data?: any): any;
|
|
8804
8811
|
}
|
|
8805
8812
|
export interface IBookingItemRequestDto {
|
|
8806
|
-
|
|
8813
|
+
workOrderId?: string | null;
|
|
8814
|
+
trackingId?: string | null;
|
|
8807
8815
|
comment?: string | null;
|
|
8808
8816
|
}
|
|
8809
8817
|
export declare class BookingGeneralRequestDto implements IBookingGeneralRequestDto {
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -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
|
}
|
|
@@ -31892,6 +31898,7 @@ export class BookingItemRequestDto {
|
|
|
31892
31898
|
}
|
|
31893
31899
|
init(_data) {
|
|
31894
31900
|
if (_data) {
|
|
31901
|
+
this.workOrderId = _data["workOrderId"];
|
|
31895
31902
|
this.trackingId = _data["trackingId"];
|
|
31896
31903
|
this.comment = _data["comment"];
|
|
31897
31904
|
}
|
|
@@ -31904,6 +31911,7 @@ export class BookingItemRequestDto {
|
|
|
31904
31911
|
}
|
|
31905
31912
|
toJSON(data) {
|
|
31906
31913
|
data = typeof data === 'object' ? data : {};
|
|
31914
|
+
data["workOrderId"] = this.workOrderId;
|
|
31907
31915
|
data["trackingId"] = this.trackingId;
|
|
31908
31916
|
data["comment"] = this.comment;
|
|
31909
31917
|
return data;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -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
|
|
|
@@ -39720,7 +39732,8 @@ export interface IBookingTransportRequestDto {
|
|
|
39720
39732
|
}
|
|
39721
39733
|
|
|
39722
39734
|
export class BookingItemRequestDto implements IBookingItemRequestDto {
|
|
39723
|
-
|
|
39735
|
+
workOrderId?: string | null;
|
|
39736
|
+
trackingId?: string | null;
|
|
39724
39737
|
comment?: string | null;
|
|
39725
39738
|
|
|
39726
39739
|
constructor(data?: IBookingItemRequestDto) {
|
|
@@ -39734,6 +39747,7 @@ export class BookingItemRequestDto implements IBookingItemRequestDto {
|
|
|
39734
39747
|
|
|
39735
39748
|
init(_data?: any) {
|
|
39736
39749
|
if (_data) {
|
|
39750
|
+
this.workOrderId = _data["workOrderId"];
|
|
39737
39751
|
this.trackingId = _data["trackingId"];
|
|
39738
39752
|
this.comment = _data["comment"];
|
|
39739
39753
|
}
|
|
@@ -39748,6 +39762,7 @@ export class BookingItemRequestDto implements IBookingItemRequestDto {
|
|
|
39748
39762
|
|
|
39749
39763
|
toJSON(data?: any) {
|
|
39750
39764
|
data = typeof data === 'object' ? data : {};
|
|
39765
|
+
data["workOrderId"] = this.workOrderId;
|
|
39751
39766
|
data["trackingId"] = this.trackingId;
|
|
39752
39767
|
data["comment"] = this.comment;
|
|
39753
39768
|
return data;
|
|
@@ -39755,7 +39770,8 @@ export class BookingItemRequestDto implements IBookingItemRequestDto {
|
|
|
39755
39770
|
}
|
|
39756
39771
|
|
|
39757
39772
|
export interface IBookingItemRequestDto {
|
|
39758
|
-
|
|
39773
|
+
workOrderId?: string | null;
|
|
39774
|
+
trackingId?: string | null;
|
|
39759
39775
|
comment?: string | null;
|
|
39760
39776
|
}
|
|
39761
39777
|
|