@ignos/api-client 20240813.0.9980 → 20240814.0.9990
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
|
@@ -9411,7 +9411,7 @@ export interface ITrackingWorkOrderDto {
|
|
|
9411
9411
|
}
|
|
9412
9412
|
export declare class TrackingUpdateDto implements ITrackingUpdateDto {
|
|
9413
9413
|
trackingId: string;
|
|
9414
|
-
locationId
|
|
9414
|
+
locationId?: string | null;
|
|
9415
9415
|
comment?: string | null;
|
|
9416
9416
|
constructor(data?: ITrackingUpdateDto);
|
|
9417
9417
|
init(_data?: any): void;
|
|
@@ -9420,7 +9420,7 @@ export declare class TrackingUpdateDto implements ITrackingUpdateDto {
|
|
|
9420
9420
|
}
|
|
9421
9421
|
export interface ITrackingUpdateDto {
|
|
9422
9422
|
trackingId: string;
|
|
9423
|
-
locationId
|
|
9423
|
+
locationId?: string | null;
|
|
9424
9424
|
comment?: string | null;
|
|
9425
9425
|
}
|
|
9426
9426
|
export declare class TrackingHistoryUpdateDto implements ITrackingHistoryUpdateDto {
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -42113,7 +42113,7 @@ export interface ITrackingWorkOrderDto {
|
|
|
42113
42113
|
|
|
42114
42114
|
export class TrackingUpdateDto implements ITrackingUpdateDto {
|
|
42115
42115
|
trackingId!: string;
|
|
42116
|
-
locationId
|
|
42116
|
+
locationId?: string | null;
|
|
42117
42117
|
comment?: string | null;
|
|
42118
42118
|
|
|
42119
42119
|
constructor(data?: ITrackingUpdateDto) {
|
|
@@ -42151,7 +42151,7 @@ export class TrackingUpdateDto implements ITrackingUpdateDto {
|
|
|
42151
42151
|
|
|
42152
42152
|
export interface ITrackingUpdateDto {
|
|
42153
42153
|
trackingId: string;
|
|
42154
|
-
locationId
|
|
42154
|
+
locationId?: string | null;
|
|
42155
42155
|
comment?: string | null;
|
|
42156
42156
|
}
|
|
42157
42157
|
|