@ignos/api-client 20251010.0.12808 → 20251021.0.12920

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.
@@ -1692,6 +1692,7 @@ export interface IMoveBookingClient {
1692
1692
  createBookingGeneral(bookingRequest: BookingGeneralRequestDto): Promise<BookingDto[]>;
1693
1693
  preBookGeneral(req: PreBookingGeneralRequestDto): Promise<PreBookingResultItemDto[]>;
1694
1694
  updateBookingStatus(bookingUpdate: BookingStatusUpdateDto): Promise<BookingDto>;
1695
+ exportBookings(includeTracking: boolean | undefined): Promise<DownloadDto>;
1695
1696
  }
1696
1697
  export declare class MoveBookingClient extends AuthorizedApiBase implements IMoveBookingClient {
1697
1698
  private http;
@@ -1718,6 +1719,8 @@ export declare class MoveBookingClient extends AuthorizedApiBase implements IMov
1718
1719
  protected processPreBookGeneral(response: Response): Promise<PreBookingResultItemDto[]>;
1719
1720
  updateBookingStatus(bookingUpdate: BookingStatusUpdateDto): Promise<BookingDto>;
1720
1721
  protected processUpdateBookingStatus(response: Response): Promise<BookingDto>;
1722
+ exportBookings(includeTracking: boolean | undefined): Promise<DownloadDto>;
1723
+ protected processExportBookings(response: Response): Promise<DownloadDto>;
1721
1724
  }
1722
1725
  export interface IMoveLocationsClient {
1723
1726
  listLocations(): Promise<LocationZoneGroupDto[]>;
@@ -1810,6 +1813,7 @@ export interface IMoveTrackingClient {
1810
1813
  createTrackingEvents(trackingUpdates: TrackingUpdateDto[]): Promise<TrackingHistoryDto[]>;
1811
1814
  createTrackingHistory(trackingUpdates: TrackingHistoryUpdateDto[]): Promise<TrackingHistoryDto[]>;
1812
1815
  deleteTrackingHistory(trackingId: string): Promise<void>;
1816
+ exportParcels(): Promise<DownloadDto>;
1813
1817
  }
1814
1818
  export declare class MoveTrackingClient extends AuthorizedApiBase implements IMoveTrackingClient {
1815
1819
  private http;
@@ -1834,6 +1838,8 @@ export declare class MoveTrackingClient extends AuthorizedApiBase implements IMo
1834
1838
  protected processCreateTrackingHistory(response: Response): Promise<TrackingHistoryDto[]>;
1835
1839
  deleteTrackingHistory(trackingId: string): Promise<void>;
1836
1840
  protected processDeleteTrackingHistory(response: Response): Promise<void>;
1841
+ exportParcels(): Promise<DownloadDto>;
1842
+ protected processExportParcels(response: Response): Promise<DownloadDto>;
1837
1843
  }
1838
1844
  export interface IParcelCategoryClient {
1839
1845
  getSettings(): Promise<ParcelCategorySettingsDto>;
@@ -9729,6 +9735,7 @@ export declare class BookingItemDto implements IBookingItemDto {
9729
9735
  palletNumber: number;
9730
9736
  comment?: string | null;
9731
9737
  category?: string | null;
9738
+ trackingHistory?: TrackingHistoryDto | null;
9732
9739
  constructor(data?: IBookingItemDto);
9733
9740
  init(_data?: any): void;
9734
9741
  static fromJS(data: any): BookingItemDto;
@@ -9739,6 +9746,61 @@ export interface IBookingItemDto {
9739
9746
  palletNumber: number;
9740
9747
  comment?: string | null;
9741
9748
  category?: string | null;
9749
+ trackingHistory?: TrackingHistoryDto | null;
9750
+ }
9751
+ export declare class TrackingHistoryDto implements ITrackingHistoryDto {
9752
+ trackingId: string;
9753
+ palletNumber: number;
9754
+ activeBooking?: boolean | null;
9755
+ materialOperation?: number | null;
9756
+ materialLine?: number | null;
9757
+ materialPartName?: string | null;
9758
+ materialPartNumber?: string | null;
9759
+ category?: string | null;
9760
+ currentTracking?: TrackingEventDto | null;
9761
+ trackingEvents: TrackingEventDto[];
9762
+ suggestions?: SuggestionsItemDto | null;
9763
+ constructor(data?: ITrackingHistoryDto);
9764
+ init(_data?: any): void;
9765
+ static fromJS(data: any): TrackingHistoryDto;
9766
+ toJSON(data?: any): any;
9767
+ }
9768
+ export interface ITrackingHistoryDto {
9769
+ trackingId: string;
9770
+ palletNumber: number;
9771
+ activeBooking?: boolean | null;
9772
+ materialOperation?: number | null;
9773
+ materialLine?: number | null;
9774
+ materialPartName?: string | null;
9775
+ materialPartNumber?: string | null;
9776
+ category?: string | null;
9777
+ currentTracking?: TrackingEventDto | null;
9778
+ trackingEvents: TrackingEventDto[];
9779
+ suggestions?: SuggestionsItemDto | null;
9780
+ }
9781
+ export declare class TrackingEventDto implements ITrackingEventDto {
9782
+ id: number;
9783
+ created: Date;
9784
+ createdBy: string;
9785
+ createdById: string;
9786
+ location?: LocationDto | null;
9787
+ status: TrackingStatusDto;
9788
+ bookingId?: string | null;
9789
+ comment?: string | null;
9790
+ constructor(data?: ITrackingEventDto);
9791
+ init(_data?: any): void;
9792
+ static fromJS(data: any): TrackingEventDto;
9793
+ toJSON(data?: any): any;
9794
+ }
9795
+ export interface ITrackingEventDto {
9796
+ id: number;
9797
+ created: Date;
9798
+ createdBy: string;
9799
+ createdById: string;
9800
+ location?: LocationDto | null;
9801
+ status: TrackingStatusDto;
9802
+ bookingId?: string | null;
9803
+ comment?: string | null;
9742
9804
  }
9743
9805
  export declare class LocationDto implements ILocationDto {
9744
9806
  locationId: string;
@@ -9761,6 +9823,25 @@ export interface ILocationDto {
9761
9823
  profile?: string | null;
9762
9824
  }
9763
9825
  export type LocationKindDto = "Warehouse" | "Zone" | "Location";
9826
+ export type TrackingStatusDto = "Manual" | "Pending" | "Cancelled" | "InProgress" | "Completed" | "Created";
9827
+ export declare class SuggestionsItemDto implements ISuggestionsItemDto {
9828
+ trackingId?: string | null;
9829
+ fromAutoFill?: LocationDto | null;
9830
+ toAutoFill?: LocationDto | null;
9831
+ fromSuggestions: LocationDto[];
9832
+ toSuggestions: LocationDto[];
9833
+ constructor(data?: ISuggestionsItemDto);
9834
+ init(_data?: any): void;
9835
+ static fromJS(data: any): SuggestionsItemDto;
9836
+ toJSON(data?: any): any;
9837
+ }
9838
+ export interface ISuggestionsItemDto {
9839
+ trackingId?: string | null;
9840
+ fromAutoFill?: LocationDto | null;
9841
+ toAutoFill?: LocationDto | null;
9842
+ fromSuggestions: LocationDto[];
9843
+ toSuggestions: LocationDto[];
9844
+ }
9764
9845
  export declare class BookingRequestListDto implements IBookingRequestListDto {
9765
9846
  pageSize?: number | null;
9766
9847
  parcelIdFilter?: string[] | null;
@@ -10059,24 +10140,6 @@ export interface ISuggestionsParcelDto {
10059
10140
  parcelId: string;
10060
10141
  items: SuggestionsItemDto[];
10061
10142
  }
10062
- export declare class SuggestionsItemDto implements ISuggestionsItemDto {
10063
- trackingId?: string | null;
10064
- fromAutoFill?: LocationDto | null;
10065
- toAutoFill?: LocationDto | null;
10066
- fromSuggestions: LocationDto[];
10067
- toSuggestions: LocationDto[];
10068
- constructor(data?: ISuggestionsItemDto);
10069
- init(_data?: any): void;
10070
- static fromJS(data: any): SuggestionsItemDto;
10071
- toJSON(data?: any): any;
10072
- }
10073
- export interface ISuggestionsItemDto {
10074
- trackingId?: string | null;
10075
- fromAutoFill?: LocationDto | null;
10076
- toAutoFill?: LocationDto | null;
10077
- fromSuggestions: LocationDto[];
10078
- toSuggestions: LocationDto[];
10079
- }
10080
10143
  export type SuggestionTypeDto = "Other" | "ChipDisposal" | "Garbage";
10081
10144
  export declare class SuggestionsMaterialItemDto implements ISuggestionsMaterialItemDto {
10082
10145
  lineNumber: number;
@@ -10307,61 +10370,6 @@ export interface ITrackingParcelDto {
10307
10370
  items: TrackingHistoryDto[];
10308
10371
  materialItems: TrackingHistoryDto[];
10309
10372
  }
10310
- export declare class TrackingHistoryDto implements ITrackingHistoryDto {
10311
- trackingId: string;
10312
- palletNumber: number;
10313
- activeBooking?: boolean | null;
10314
- materialOperation?: number | null;
10315
- materialLine?: number | null;
10316
- materialPartName?: string | null;
10317
- materialPartNumber?: string | null;
10318
- category?: string | null;
10319
- currentTracking?: TrackingEventDto | null;
10320
- trackingEvents: TrackingEventDto[];
10321
- suggestions?: SuggestionsItemDto | null;
10322
- constructor(data?: ITrackingHistoryDto);
10323
- init(_data?: any): void;
10324
- static fromJS(data: any): TrackingHistoryDto;
10325
- toJSON(data?: any): any;
10326
- }
10327
- export interface ITrackingHistoryDto {
10328
- trackingId: string;
10329
- palletNumber: number;
10330
- activeBooking?: boolean | null;
10331
- materialOperation?: number | null;
10332
- materialLine?: number | null;
10333
- materialPartName?: string | null;
10334
- materialPartNumber?: string | null;
10335
- category?: string | null;
10336
- currentTracking?: TrackingEventDto | null;
10337
- trackingEvents: TrackingEventDto[];
10338
- suggestions?: SuggestionsItemDto | null;
10339
- }
10340
- export declare class TrackingEventDto implements ITrackingEventDto {
10341
- id: number;
10342
- created: Date;
10343
- createdBy: string;
10344
- createdById: string;
10345
- location?: LocationDto | null;
10346
- status: TrackingStatusDto;
10347
- bookingId?: string | null;
10348
- comment?: string | null;
10349
- constructor(data?: ITrackingEventDto);
10350
- init(_data?: any): void;
10351
- static fromJS(data: any): TrackingEventDto;
10352
- toJSON(data?: any): any;
10353
- }
10354
- export interface ITrackingEventDto {
10355
- id: number;
10356
- created: Date;
10357
- createdBy: string;
10358
- createdById: string;
10359
- location?: LocationDto | null;
10360
- status: TrackingStatusDto;
10361
- bookingId?: string | null;
10362
- comment?: string | null;
10363
- }
10364
- export type TrackingStatusDto = "Manual" | "Pending" | "Cancelled" | "InProgress" | "Completed" | "Created";
10365
10373
  export declare class TrackingRequestListDto implements ITrackingRequestListDto {
10366
10374
  pageSize?: number | null;
10367
10375
  parcelIdFilter?: string[] | null;