@ignos/api-client 20251021.0.12920 → 20251022.0.12935-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.
@@ -365,7 +365,6 @@ export declare class SustainabilityClient extends AuthorizedApiBase implements I
365
365
  }
366
366
  export interface IMachineAlarmsClient {
367
367
  listMachineAlarms(alarmType: MachineAlarmType | null | undefined, assetId: number | undefined, startTime: Date | undefined, endTime: Date | null | undefined, subType: string | null | undefined, nativeCode: string | null | undefined, nativeSeverity: number | null | undefined, name: string | null | undefined, sequence: string | null | undefined, limit: number | undefined, continuationToken: string | null | undefined, orderBy: string | null | undefined, sortDirection: string | null | undefined): Promise<PagedResultOfMachineAlarmDto>;
368
- listGroupedMachineIncidents(request: ListGroupedMachineIncidentsRequest): Promise<PagedResultOfGroupedMachineIncidentDto>;
369
368
  listAlarmsPerMachine(startTime: Date | undefined, endTime: Date | null | undefined): Promise<MachineAlarmSummaryDto[]>;
370
369
  listAlarmSeverityOccurrences(startTime: Date | undefined, endTime: Date | null | undefined): Promise<MachineAlarmSeverityOccurenceDto[]>;
371
370
  countMachineAlarms(alarmType: MachineAlarmType | null | undefined, assetId: number | undefined, startTime: Date | undefined, endTime: Date | null | undefined, subType: string | null | undefined, nativeCode: string | null | undefined, nativeSeverity: number | null | undefined, name: string | null | undefined, sequence: string | null | undefined): Promise<MachineAlarmCountDto>;
@@ -380,8 +379,6 @@ export declare class MachineAlarmsClient extends AuthorizedApiBase implements IM
380
379
  });
381
380
  listMachineAlarms(alarmType: MachineAlarmType | null | undefined, assetId: number | undefined, startTime: Date | undefined, endTime: Date | null | undefined, subType: string | null | undefined, nativeCode: string | null | undefined, nativeSeverity: number | null | undefined, name: string | null | undefined, sequence: string | null | undefined, limit: number | undefined, continuationToken: string | null | undefined, orderBy: string | null | undefined, sortDirection: string | null | undefined): Promise<PagedResultOfMachineAlarmDto>;
382
381
  protected processListMachineAlarms(response: Response): Promise<PagedResultOfMachineAlarmDto>;
383
- listGroupedMachineIncidents(request: ListGroupedMachineIncidentsRequest): Promise<PagedResultOfGroupedMachineIncidentDto>;
384
- protected processListGroupedMachineIncidents(response: Response): Promise<PagedResultOfGroupedMachineIncidentDto>;
385
382
  listAlarmsPerMachine(startTime: Date | undefined, endTime: Date | null | undefined): Promise<MachineAlarmSummaryDto[]>;
386
383
  protected processListAlarmsPerMachine(response: Response): Promise<MachineAlarmSummaryDto[]>;
387
384
  listAlarmSeverityOccurrences(startTime: Date | undefined, endTime: Date | null | undefined): Promise<MachineAlarmSeverityOccurenceDto[]>;
@@ -408,11 +405,11 @@ export declare class PulseClient extends AuthorizedApiBase implements IPulseClie
408
405
  protected processUpdatePulseSettings(response: Response): Promise<PulseSettingsDto>;
409
406
  }
410
407
  export interface IUtilizationClient {
411
- getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<CompanyUtilizationDto>;
412
- getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<CrossCompanyUtilizationDto>;
413
- getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined, endTime: Date | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<MachineUtilizationDatapointListDto>;
414
- getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<CompanyUtilizationDatapointListDto>;
415
- getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
408
+ getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
409
+ getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
410
+ getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<MachineUtilizationDatapointListDto>;
411
+ getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDatapointListDto>;
412
+ getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
416
413
  }
417
414
  export declare class UtilizationClient extends AuthorizedApiBase implements IUtilizationClient {
418
415
  private http;
@@ -421,15 +418,15 @@ export declare class UtilizationClient extends AuthorizedApiBase implements IUti
421
418
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
422
419
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
423
420
  });
424
- getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<CompanyUtilizationDto>;
421
+ getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
425
422
  protected processGetCompanyUtilization(response: Response): Promise<CompanyUtilizationDto>;
426
- getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<CrossCompanyUtilizationDto>;
423
+ getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
427
424
  protected processGetCrossCompanyUtilization(response: Response): Promise<CrossCompanyUtilizationDto>;
428
- getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined, endTime: Date | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<MachineUtilizationDatapointListDto>;
425
+ getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<MachineUtilizationDatapointListDto>;
429
426
  protected processGetUtilizationDatapoints(response: Response): Promise<MachineUtilizationDatapointListDto>;
430
- getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<CompanyUtilizationDatapointListDto>;
427
+ getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDatapointListDto>;
431
428
  protected processGetCompanyUtilizationDatapoints(response: Response): Promise<CompanyUtilizationDatapointListDto>;
432
- getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined, endTime: Date | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
429
+ getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
433
430
  protected processGetCrossCompanyUtilizationDatapoints(response: Response): Promise<CrossCompanyUtilizationDatapointListDto>;
434
431
  }
435
432
  export interface IMrbClient {
@@ -1692,7 +1689,6 @@ export interface IMoveBookingClient {
1692
1689
  createBookingGeneral(bookingRequest: BookingGeneralRequestDto): Promise<BookingDto[]>;
1693
1690
  preBookGeneral(req: PreBookingGeneralRequestDto): Promise<PreBookingResultItemDto[]>;
1694
1691
  updateBookingStatus(bookingUpdate: BookingStatusUpdateDto): Promise<BookingDto>;
1695
- exportBookings(includeTracking: boolean | undefined): Promise<DownloadDto>;
1696
1692
  }
1697
1693
  export declare class MoveBookingClient extends AuthorizedApiBase implements IMoveBookingClient {
1698
1694
  private http;
@@ -1719,8 +1715,6 @@ export declare class MoveBookingClient extends AuthorizedApiBase implements IMov
1719
1715
  protected processPreBookGeneral(response: Response): Promise<PreBookingResultItemDto[]>;
1720
1716
  updateBookingStatus(bookingUpdate: BookingStatusUpdateDto): Promise<BookingDto>;
1721
1717
  protected processUpdateBookingStatus(response: Response): Promise<BookingDto>;
1722
- exportBookings(includeTracking: boolean | undefined): Promise<DownloadDto>;
1723
- protected processExportBookings(response: Response): Promise<DownloadDto>;
1724
1718
  }
1725
1719
  export interface IMoveLocationsClient {
1726
1720
  listLocations(): Promise<LocationZoneGroupDto[]>;
@@ -1813,7 +1807,6 @@ export interface IMoveTrackingClient {
1813
1807
  createTrackingEvents(trackingUpdates: TrackingUpdateDto[]): Promise<TrackingHistoryDto[]>;
1814
1808
  createTrackingHistory(trackingUpdates: TrackingHistoryUpdateDto[]): Promise<TrackingHistoryDto[]>;
1815
1809
  deleteTrackingHistory(trackingId: string): Promise<void>;
1816
- exportParcels(): Promise<DownloadDto>;
1817
1810
  }
1818
1811
  export declare class MoveTrackingClient extends AuthorizedApiBase implements IMoveTrackingClient {
1819
1812
  private http;
@@ -1838,8 +1831,6 @@ export declare class MoveTrackingClient extends AuthorizedApiBase implements IMo
1838
1831
  protected processCreateTrackingHistory(response: Response): Promise<TrackingHistoryDto[]>;
1839
1832
  deleteTrackingHistory(trackingId: string): Promise<void>;
1840
1833
  protected processDeleteTrackingHistory(response: Response): Promise<void>;
1841
- exportParcels(): Promise<DownloadDto>;
1842
- protected processExportParcels(response: Response): Promise<DownloadDto>;
1843
1834
  }
1844
1835
  export interface IParcelCategoryClient {
1845
1836
  getSettings(): Promise<ParcelCategorySettingsDto>;
@@ -2354,7 +2345,6 @@ export interface IMeasurementFormsInstancesClient {
2354
2345
  postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
2355
2346
  listMeasurementFormsByStatus(status: MeasurementFormInstanceStatus | undefined, statusChangedSince: Date | null | undefined, onlyWithReports: boolean | null | undefined, pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
2356
2347
  postListMeasurementFormsByStatus(request: ListMeasurementFormsByStatusRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
2357
- deleteInstancesBulk(request: DeleteMeasurementFormsInstancesBulkRequest): Promise<void>;
2358
2348
  getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2359
2349
  createMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
2360
2350
  updateMeasurementFormInstance(id: string, request: UpdateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
@@ -2401,8 +2391,6 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
2401
2391
  protected processListMeasurementFormsByStatus(response: Response): Promise<PagedResultOfMeasurementFormInstanceDto>;
2402
2392
  postListMeasurementFormsByStatus(request: ListMeasurementFormsByStatusRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
2403
2393
  protected processPostListMeasurementFormsByStatus(response: Response): Promise<PagedResultOfMeasurementFormInstanceDto>;
2404
- deleteInstancesBulk(request: DeleteMeasurementFormsInstancesBulkRequest): Promise<void>;
2405
- protected processDeleteInstancesBulk(response: Response): Promise<void>;
2406
2394
  getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
2407
2395
  protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
2408
2396
  createMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
@@ -3082,8 +3070,6 @@ export interface IMachineStateDatapoint {
3082
3070
  export declare class DowntimePeriodReasonDto implements IDowntimePeriodReasonDto {
3083
3071
  id: number;
3084
3072
  reason: string;
3085
- parentReasonId?: string | null;
3086
- parentReason?: string | null;
3087
3073
  reasonType: DowntimeReasonTypeDto;
3088
3074
  startTime: Date;
3089
3075
  endTime?: Date | null;
@@ -3102,8 +3088,6 @@ export declare class DowntimePeriodReasonDto implements IDowntimePeriodReasonDto
3102
3088
  export interface IDowntimePeriodReasonDto {
3103
3089
  id: number;
3104
3090
  reason: string;
3105
- parentReasonId?: string | null;
3106
- parentReason?: string | null;
3107
3091
  reasonType: DowntimeReasonTypeDto;
3108
3092
  startTime: Date;
3109
3093
  endTime?: Date | null;
@@ -3753,50 +3737,6 @@ export interface IMachineAlarmDto {
3753
3737
  endTime?: Date | null;
3754
3738
  }
3755
3739
  export type MachineAlarmType = "Fault" | "Warning";
3756
- export declare class PagedResultOfGroupedMachineIncidentDto implements IPagedResultOfGroupedMachineIncidentDto {
3757
- results: GroupedMachineIncidentDto[];
3758
- continuationToken?: string | null;
3759
- constructor(data?: IPagedResultOfGroupedMachineIncidentDto);
3760
- init(_data?: any): void;
3761
- static fromJS(data: any): PagedResultOfGroupedMachineIncidentDto;
3762
- toJSON(data?: any): any;
3763
- }
3764
- export interface IPagedResultOfGroupedMachineIncidentDto {
3765
- results: GroupedMachineIncidentDto[];
3766
- continuationToken?: string | null;
3767
- }
3768
- export declare class GroupedMachineIncidentDto extends MachineAlarmDto implements IGroupedMachineIncidentDto {
3769
- incidents: MachineAlarmDto[];
3770
- constructor(data?: IGroupedMachineIncidentDto);
3771
- init(_data?: any): void;
3772
- static fromJS(data: any): GroupedMachineIncidentDto;
3773
- toJSON(data?: any): any;
3774
- }
3775
- export interface IGroupedMachineIncidentDto extends IMachineAlarmDto {
3776
- incidents: MachineAlarmDto[];
3777
- }
3778
- export declare class ListGroupedMachineIncidentsRequest implements IListGroupedMachineIncidentsRequest {
3779
- assetId: number;
3780
- startTime: Date;
3781
- endTime?: Date | null;
3782
- nativeCode?: string | null;
3783
- alarmType?: MachineAlarmType | null;
3784
- limit?: number | null;
3785
- continuationToken?: string | null;
3786
- constructor(data?: IListGroupedMachineIncidentsRequest);
3787
- init(_data?: any): void;
3788
- static fromJS(data: any): ListGroupedMachineIncidentsRequest;
3789
- toJSON(data?: any): any;
3790
- }
3791
- export interface IListGroupedMachineIncidentsRequest {
3792
- assetId: number;
3793
- startTime: Date;
3794
- endTime?: Date | null;
3795
- nativeCode?: string | null;
3796
- alarmType?: MachineAlarmType | null;
3797
- limit?: number | null;
3798
- continuationToken?: string | null;
3799
- }
3800
3740
  export declare class MachineAlarmSummaryDto implements IMachineAlarmSummaryDto {
3801
3741
  assetId: number;
3802
3742
  assetName: string;
@@ -9735,7 +9675,6 @@ export declare class BookingItemDto implements IBookingItemDto {
9735
9675
  palletNumber: number;
9736
9676
  comment?: string | null;
9737
9677
  category?: string | null;
9738
- trackingHistory?: TrackingHistoryDto | null;
9739
9678
  constructor(data?: IBookingItemDto);
9740
9679
  init(_data?: any): void;
9741
9680
  static fromJS(data: any): BookingItemDto;
@@ -9746,61 +9685,6 @@ export interface IBookingItemDto {
9746
9685
  palletNumber: number;
9747
9686
  comment?: string | null;
9748
9687
  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;
9804
9688
  }
9805
9689
  export declare class LocationDto implements ILocationDto {
9806
9690
  locationId: string;
@@ -9823,25 +9707,6 @@ export interface ILocationDto {
9823
9707
  profile?: string | null;
9824
9708
  }
9825
9709
  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
- }
9845
9710
  export declare class BookingRequestListDto implements IBookingRequestListDto {
9846
9711
  pageSize?: number | null;
9847
9712
  parcelIdFilter?: string[] | null;
@@ -10140,6 +10005,24 @@ export interface ISuggestionsParcelDto {
10140
10005
  parcelId: string;
10141
10006
  items: SuggestionsItemDto[];
10142
10007
  }
10008
+ export declare class SuggestionsItemDto implements ISuggestionsItemDto {
10009
+ trackingId?: string | null;
10010
+ fromAutoFill?: LocationDto | null;
10011
+ toAutoFill?: LocationDto | null;
10012
+ fromSuggestions: LocationDto[];
10013
+ toSuggestions: LocationDto[];
10014
+ constructor(data?: ISuggestionsItemDto);
10015
+ init(_data?: any): void;
10016
+ static fromJS(data: any): SuggestionsItemDto;
10017
+ toJSON(data?: any): any;
10018
+ }
10019
+ export interface ISuggestionsItemDto {
10020
+ trackingId?: string | null;
10021
+ fromAutoFill?: LocationDto | null;
10022
+ toAutoFill?: LocationDto | null;
10023
+ fromSuggestions: LocationDto[];
10024
+ toSuggestions: LocationDto[];
10025
+ }
10143
10026
  export type SuggestionTypeDto = "Other" | "ChipDisposal" | "Garbage";
10144
10027
  export declare class SuggestionsMaterialItemDto implements ISuggestionsMaterialItemDto {
10145
10028
  lineNumber: number;
@@ -10370,6 +10253,59 @@ export interface ITrackingParcelDto {
10370
10253
  items: TrackingHistoryDto[];
10371
10254
  materialItems: TrackingHistoryDto[];
10372
10255
  }
10256
+ export declare class TrackingHistoryDto implements ITrackingHistoryDto {
10257
+ trackingId: string;
10258
+ palletNumber: number;
10259
+ activeBooking?: boolean | null;
10260
+ materialOperation?: number | null;
10261
+ materialLine?: number | null;
10262
+ materialPartName?: string | null;
10263
+ materialPartNumber?: string | null;
10264
+ currentTracking?: TrackingEventDto | null;
10265
+ trackingEvents: TrackingEventDto[];
10266
+ suggestions?: SuggestionsItemDto | null;
10267
+ constructor(data?: ITrackingHistoryDto);
10268
+ init(_data?: any): void;
10269
+ static fromJS(data: any): TrackingHistoryDto;
10270
+ toJSON(data?: any): any;
10271
+ }
10272
+ export interface ITrackingHistoryDto {
10273
+ trackingId: string;
10274
+ palletNumber: number;
10275
+ activeBooking?: boolean | null;
10276
+ materialOperation?: number | null;
10277
+ materialLine?: number | null;
10278
+ materialPartName?: string | null;
10279
+ materialPartNumber?: string | null;
10280
+ currentTracking?: TrackingEventDto | null;
10281
+ trackingEvents: TrackingEventDto[];
10282
+ suggestions?: SuggestionsItemDto | null;
10283
+ }
10284
+ export declare class TrackingEventDto implements ITrackingEventDto {
10285
+ id: number;
10286
+ created: Date;
10287
+ createdBy: string;
10288
+ createdById: string;
10289
+ location?: LocationDto | null;
10290
+ status: TrackingStatusDto;
10291
+ bookingId?: string | null;
10292
+ comment?: string | null;
10293
+ constructor(data?: ITrackingEventDto);
10294
+ init(_data?: any): void;
10295
+ static fromJS(data: any): TrackingEventDto;
10296
+ toJSON(data?: any): any;
10297
+ }
10298
+ export interface ITrackingEventDto {
10299
+ id: number;
10300
+ created: Date;
10301
+ createdBy: string;
10302
+ createdById: string;
10303
+ location?: LocationDto | null;
10304
+ status: TrackingStatusDto;
10305
+ bookingId?: string | null;
10306
+ comment?: string | null;
10307
+ }
10308
+ export type TrackingStatusDto = "Manual" | "Pending" | "Cancelled" | "InProgress" | "Completed" | "Created";
10373
10309
  export declare class TrackingRequestListDto implements ITrackingRequestListDto {
10374
10310
  pageSize?: number | null;
10375
10311
  parcelIdFilter?: string[] | null;
@@ -10421,7 +10357,6 @@ export declare class TrackingHistoryFlattenedDto implements ITrackingHistoryFlat
10421
10357
  materialLine?: number | null;
10422
10358
  materialPartName?: string | null;
10423
10359
  materialPartNumber?: string | null;
10424
- category?: string | null;
10425
10360
  currentTracking?: TrackingEventDto | null;
10426
10361
  trackingEvents: TrackingEventDto[];
10427
10362
  constructor(data?: ITrackingHistoryFlattenedDto);
@@ -10444,7 +10379,6 @@ export interface ITrackingHistoryFlattenedDto {
10444
10379
  materialLine?: number | null;
10445
10380
  materialPartName?: string | null;
10446
10381
  materialPartNumber?: string | null;
10447
- category?: string | null;
10448
10382
  currentTracking?: TrackingEventDto | null;
10449
10383
  trackingEvents: TrackingEventDto[];
10450
10384
  }
@@ -13339,16 +13273,6 @@ export interface IMeasurementFormWorkorderSupplierDto {
13339
13273
  procurementLine?: number | null;
13340
13274
  externalOrderNumber?: string | null;
13341
13275
  }
13342
- export declare class DeleteMeasurementFormsInstancesBulkRequest implements IDeleteMeasurementFormsInstancesBulkRequest {
13343
- ids: string[];
13344
- constructor(data?: IDeleteMeasurementFormsInstancesBulkRequest);
13345
- init(_data?: any): void;
13346
- static fromJS(data: any): DeleteMeasurementFormsInstancesBulkRequest;
13347
- toJSON(data?: any): any;
13348
- }
13349
- export interface IDeleteMeasurementFormsInstancesBulkRequest {
13350
- ids: string[];
13351
- }
13352
13276
  export declare class ListMeasurementFormsByStatusRequest implements IListMeasurementFormsByStatusRequest {
13353
13277
  status?: MeasurementFormInstanceStatus | null;
13354
13278
  statusChangedSince?: Date | null;