@ignos/api-client 20240819.0.10052 → 20240820.0.10068
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 +90 -122
- package/lib/ignosportal-api.js +189 -409
- package/package.json +1 -1
- package/src/ignosportal-api.ts +273 -521
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -1414,15 +1414,11 @@ export declare class WorkspaceTemplatesClient extends AuthorizedApiBase implemen
|
|
|
1414
1414
|
export interface IMoveBookingClient {
|
|
1415
1415
|
listBookings(request: BookingRequestListDto): Promise<BookingListDto>;
|
|
1416
1416
|
getBooking(bookingId: string): Promise<BookingDto>;
|
|
1417
|
-
|
|
1417
|
+
getParcelBooking(parcelId: string): Promise<BookingDto[]>;
|
|
1418
1418
|
updateBooking(bookingRequest: BookingUpdateDto): Promise<BookingDto>;
|
|
1419
1419
|
createBookingTransport(bookingRequest: BookingTransportRequestDto): Promise<BookingDto>;
|
|
1420
1420
|
createBookingGeneral(bookingRequest: BookingGeneralRequestDto): Promise<BookingDto>;
|
|
1421
1421
|
updateBookingStatus(bookingUpdate: BookingStatusUpdateDto): Promise<BookingDto>;
|
|
1422
|
-
cancelBooking(bookingUpdate: BookingUpdateStatusDto): Promise<BookingDto>;
|
|
1423
|
-
revertBooking(bookingUpdate: BookingUpdateStatusDto): Promise<BookingDto>;
|
|
1424
|
-
startDelivery(bookingUpdate: BookingUpdateStatusDto): Promise<BookingDto>;
|
|
1425
|
-
finishDelivery(bookingUpdate: BookingDeliveryUpdateDto): Promise<BookingDto>;
|
|
1426
1422
|
}
|
|
1427
1423
|
export declare class MoveBookingClient extends AuthorizedApiBase implements IMoveBookingClient {
|
|
1428
1424
|
private http;
|
|
@@ -1435,8 +1431,8 @@ export declare class MoveBookingClient extends AuthorizedApiBase implements IMov
|
|
|
1435
1431
|
protected processListBookings(response: Response): Promise<BookingListDto>;
|
|
1436
1432
|
getBooking(bookingId: string): Promise<BookingDto>;
|
|
1437
1433
|
protected processGetBooking(response: Response): Promise<BookingDto>;
|
|
1438
|
-
|
|
1439
|
-
protected
|
|
1434
|
+
getParcelBooking(parcelId: string): Promise<BookingDto[]>;
|
|
1435
|
+
protected processGetParcelBooking(response: Response): Promise<BookingDto[]>;
|
|
1440
1436
|
updateBooking(bookingRequest: BookingUpdateDto): Promise<BookingDto>;
|
|
1441
1437
|
protected processUpdateBooking(response: Response): Promise<BookingDto>;
|
|
1442
1438
|
createBookingTransport(bookingRequest: BookingTransportRequestDto): Promise<BookingDto>;
|
|
@@ -1445,14 +1441,6 @@ export declare class MoveBookingClient extends AuthorizedApiBase implements IMov
|
|
|
1445
1441
|
protected processCreateBookingGeneral(response: Response): Promise<BookingDto>;
|
|
1446
1442
|
updateBookingStatus(bookingUpdate: BookingStatusUpdateDto): Promise<BookingDto>;
|
|
1447
1443
|
protected processUpdateBookingStatus(response: Response): Promise<BookingDto>;
|
|
1448
|
-
cancelBooking(bookingUpdate: BookingUpdateStatusDto): Promise<BookingDto>;
|
|
1449
|
-
protected processCancelBooking(response: Response): Promise<BookingDto>;
|
|
1450
|
-
revertBooking(bookingUpdate: BookingUpdateStatusDto): Promise<BookingDto>;
|
|
1451
|
-
protected processRevertBooking(response: Response): Promise<BookingDto>;
|
|
1452
|
-
startDelivery(bookingUpdate: BookingUpdateStatusDto): Promise<BookingDto>;
|
|
1453
|
-
protected processStartDelivery(response: Response): Promise<BookingDto>;
|
|
1454
|
-
finishDelivery(bookingUpdate: BookingDeliveryUpdateDto): Promise<BookingDto>;
|
|
1455
|
-
protected processFinishDelivery(response: Response): Promise<BookingDto>;
|
|
1456
1444
|
}
|
|
1457
1445
|
export interface IMoveLocationsClient {
|
|
1458
1446
|
searchLocations(input: string | null | undefined, locationKinds: LocationKindDto[] | null | undefined): Promise<LocationDto[]>;
|
|
@@ -1495,11 +1483,24 @@ export declare class MoveMaterialsClient extends AuthorizedApiBase implements IM
|
|
|
1495
1483
|
importMaterials(request: FileParameter | null | undefined): Promise<void>;
|
|
1496
1484
|
protected processImportMaterials(response: Response): Promise<void>;
|
|
1497
1485
|
}
|
|
1486
|
+
export interface IMoveParcelsClient {
|
|
1487
|
+
searchParcels(input: string | null | undefined, pageSize: number | null | undefined): Promise<SearchParcelDto[]>;
|
|
1488
|
+
}
|
|
1489
|
+
export declare class MoveParcelsClient extends AuthorizedApiBase implements IMoveParcelsClient {
|
|
1490
|
+
private http;
|
|
1491
|
+
private baseUrl;
|
|
1492
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1493
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1494
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1495
|
+
});
|
|
1496
|
+
searchParcels(input: string | null | undefined, pageSize: number | null | undefined): Promise<SearchParcelDto[]>;
|
|
1497
|
+
protected processSearchParcels(response: Response): Promise<SearchParcelDto[]>;
|
|
1498
|
+
}
|
|
1498
1499
|
export interface IMoveTrackingClient {
|
|
1499
1500
|
listTrackingHistory(request: TrackingRequestListDto): Promise<TrackingHistoryListDto>;
|
|
1500
1501
|
getTrackingHistory(trackingId: string, includeActiveBookings: boolean | undefined): Promise<TrackingHistoryDto>;
|
|
1501
|
-
|
|
1502
|
-
|
|
1502
|
+
getParcelTrackingHistory(parcelId: string, includeActiveBookings: boolean | undefined): Promise<TrackingParcelDto>;
|
|
1503
|
+
listParcelTrackingHistory(trackingParcelList: TrackingParcelListDto): Promise<TrackingParcelDto[]>;
|
|
1503
1504
|
createTrackingEvents(trackingUpdates: TrackingUpdateDto[]): Promise<TrackingHistoryDto[]>;
|
|
1504
1505
|
createTrackingHistory(trackingUpdates: TrackingHistoryUpdateDto[]): Promise<TrackingHistoryDto[]>;
|
|
1505
1506
|
deleteTrackingHistory(trackingId: string): Promise<void>;
|
|
@@ -1516,10 +1517,10 @@ export declare class MoveTrackingClient extends AuthorizedApiBase implements IMo
|
|
|
1516
1517
|
protected processListTrackingHistory(response: Response): Promise<TrackingHistoryListDto>;
|
|
1517
1518
|
getTrackingHistory(trackingId: string, includeActiveBookings: boolean | undefined): Promise<TrackingHistoryDto>;
|
|
1518
1519
|
protected processGetTrackingHistory(response: Response): Promise<TrackingHistoryDto>;
|
|
1519
|
-
|
|
1520
|
-
protected
|
|
1521
|
-
|
|
1522
|
-
protected
|
|
1520
|
+
getParcelTrackingHistory(parcelId: string, includeActiveBookings: boolean | undefined): Promise<TrackingParcelDto>;
|
|
1521
|
+
protected processGetParcelTrackingHistory(response: Response): Promise<TrackingParcelDto>;
|
|
1522
|
+
listParcelTrackingHistory(trackingParcelList: TrackingParcelListDto): Promise<TrackingParcelDto[]>;
|
|
1523
|
+
protected processListParcelTrackingHistory(response: Response): Promise<TrackingParcelDto[]>;
|
|
1523
1524
|
createTrackingEvents(trackingUpdates: TrackingUpdateDto[]): Promise<TrackingHistoryDto[]>;
|
|
1524
1525
|
protected processCreateTrackingEvents(response: Response): Promise<TrackingHistoryDto[]>;
|
|
1525
1526
|
createTrackingHistory(trackingUpdates: TrackingHistoryUpdateDto[]): Promise<TrackingHistoryDto[]>;
|
|
@@ -1529,19 +1530,6 @@ export declare class MoveTrackingClient extends AuthorizedApiBase implements IMo
|
|
|
1529
1530
|
createLabel(trackingIds: string[]): Promise<DownloadDto>;
|
|
1530
1531
|
protected processCreateLabel(response: Response): Promise<DownloadDto>;
|
|
1531
1532
|
}
|
|
1532
|
-
export interface IMoveWorkOrdersClient {
|
|
1533
|
-
searchWorkOrders(input: string | null | undefined, pageSize: number | null | undefined): Promise<SearchWorkOrderDto[]>;
|
|
1534
|
-
}
|
|
1535
|
-
export declare class MoveWorkOrdersClient extends AuthorizedApiBase implements IMoveWorkOrdersClient {
|
|
1536
|
-
private http;
|
|
1537
|
-
private baseUrl;
|
|
1538
|
-
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1539
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1540
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1541
|
-
});
|
|
1542
|
-
searchWorkOrders(input: string | null | undefined, pageSize: number | null | undefined): Promise<SearchWorkOrderDto[]>;
|
|
1543
|
-
protected processSearchWorkOrders(response: Response): Promise<SearchWorkOrderDto[]>;
|
|
1544
|
-
}
|
|
1545
1533
|
export interface IMesClient {
|
|
1546
1534
|
getWorkerDetailsForCurrentUser(): Promise<WorkerDto>;
|
|
1547
1535
|
}
|
|
@@ -7853,7 +7841,7 @@ export interface IBookingListDto {
|
|
|
7853
7841
|
}
|
|
7854
7842
|
export declare class BookingDto implements IBookingDto {
|
|
7855
7843
|
bookingId: string;
|
|
7856
|
-
|
|
7844
|
+
parcelKind: ParcelKindDto;
|
|
7857
7845
|
transportKind: TransportKindDto;
|
|
7858
7846
|
status: BookingStatusDto;
|
|
7859
7847
|
items: BookingItemDto[];
|
|
@@ -7874,7 +7862,7 @@ export declare class BookingDto implements IBookingDto {
|
|
|
7874
7862
|
}
|
|
7875
7863
|
export interface IBookingDto {
|
|
7876
7864
|
bookingId: string;
|
|
7877
|
-
|
|
7865
|
+
parcelKind: ParcelKindDto;
|
|
7878
7866
|
transportKind: TransportKindDto;
|
|
7879
7867
|
status: BookingStatusDto;
|
|
7880
7868
|
items: BookingItemDto[];
|
|
@@ -7889,14 +7877,14 @@ export interface IBookingDto {
|
|
|
7889
7877
|
driverId?: string | null;
|
|
7890
7878
|
completed?: Date | null;
|
|
7891
7879
|
}
|
|
7892
|
-
export type
|
|
7880
|
+
export type ParcelKindDto = "Standard" | "OtherInquiries" | "ChipDisposal" | "Garbage";
|
|
7893
7881
|
export type TransportKindDto = "NormalForklift" | "LargeForklift" | "SideLoadingForklift";
|
|
7894
7882
|
export type BookingStatusDto = "Pending" | "Cancelled" | "InProgress" | "Completed";
|
|
7895
7883
|
export declare class BookingItemDto implements IBookingItemDto {
|
|
7896
7884
|
trackingId: string;
|
|
7897
7885
|
palletNumber: number;
|
|
7898
|
-
|
|
7899
|
-
parcelKind:
|
|
7886
|
+
parcelId: string;
|
|
7887
|
+
parcelKind: ParcelKindDto;
|
|
7900
7888
|
material?: string | null;
|
|
7901
7889
|
comment?: string | null;
|
|
7902
7890
|
covered: MaterialCoveredDto;
|
|
@@ -7909,8 +7897,8 @@ export declare class BookingItemDto implements IBookingItemDto {
|
|
|
7909
7897
|
export interface IBookingItemDto {
|
|
7910
7898
|
trackingId: string;
|
|
7911
7899
|
palletNumber: number;
|
|
7912
|
-
|
|
7913
|
-
parcelKind:
|
|
7900
|
+
parcelId: string;
|
|
7901
|
+
parcelKind: ParcelKindDto;
|
|
7914
7902
|
material?: string | null;
|
|
7915
7903
|
comment?: string | null;
|
|
7916
7904
|
covered: MaterialCoveredDto;
|
|
@@ -7940,14 +7928,14 @@ export interface ILocationDto {
|
|
|
7940
7928
|
export type LocationKindDto = "Warehouse" | "Zone" | "Location";
|
|
7941
7929
|
export declare class BookingRequestListDto implements IBookingRequestListDto {
|
|
7942
7930
|
pageSize?: number | null;
|
|
7943
|
-
|
|
7931
|
+
parcelIdFilter?: string[] | null;
|
|
7944
7932
|
materialFilter?: string[] | null;
|
|
7945
7933
|
locationIdFromFilter?: string[] | null;
|
|
7946
7934
|
locationIdToFilter?: string[] | null;
|
|
7947
7935
|
zoneIdFromFilter?: string[] | null;
|
|
7948
7936
|
zoneIdToFilter?: string[] | null;
|
|
7949
7937
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
7950
|
-
|
|
7938
|
+
parcelKindFilter?: ParcelKindDto[] | null;
|
|
7951
7939
|
transportKindFilter?: TransportKindDto[] | null;
|
|
7952
7940
|
taskFilter?: BookingTaskDto | null;
|
|
7953
7941
|
createdByFilter?: BookingCreatedByDto | null;
|
|
@@ -7960,14 +7948,14 @@ export declare class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
7960
7948
|
}
|
|
7961
7949
|
export interface IBookingRequestListDto {
|
|
7962
7950
|
pageSize?: number | null;
|
|
7963
|
-
|
|
7951
|
+
parcelIdFilter?: string[] | null;
|
|
7964
7952
|
materialFilter?: string[] | null;
|
|
7965
7953
|
locationIdFromFilter?: string[] | null;
|
|
7966
7954
|
locationIdToFilter?: string[] | null;
|
|
7967
7955
|
zoneIdFromFilter?: string[] | null;
|
|
7968
7956
|
zoneIdToFilter?: string[] | null;
|
|
7969
7957
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
7970
|
-
|
|
7958
|
+
parcelKindFilter?: ParcelKindDto[] | null;
|
|
7971
7959
|
transportKindFilter?: TransportKindDto[] | null;
|
|
7972
7960
|
taskFilter?: BookingTaskDto | null;
|
|
7973
7961
|
createdByFilter?: BookingCreatedByDto | null;
|
|
@@ -7979,7 +7967,7 @@ export type BookingCreatedByDto = "MyBookings" | "OthersBookings";
|
|
|
7979
7967
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
7980
7968
|
export declare class BookingUpdateDto implements IBookingUpdateDto {
|
|
7981
7969
|
bookingId: string;
|
|
7982
|
-
|
|
7970
|
+
parcelKind: ParcelKindDto;
|
|
7983
7971
|
transportKind: TransportKindDto;
|
|
7984
7972
|
status: BookingStatusDto;
|
|
7985
7973
|
fromLocationId: string;
|
|
@@ -7991,7 +7979,7 @@ export declare class BookingUpdateDto implements IBookingUpdateDto {
|
|
|
7991
7979
|
}
|
|
7992
7980
|
export interface IBookingUpdateDto {
|
|
7993
7981
|
bookingId: string;
|
|
7994
|
-
|
|
7982
|
+
parcelKind: ParcelKindDto;
|
|
7995
7983
|
transportKind: TransportKindDto;
|
|
7996
7984
|
status: BookingStatusDto;
|
|
7997
7985
|
fromLocationId: string;
|
|
@@ -8014,7 +8002,7 @@ export interface IBookingTransportRequestDto {
|
|
|
8014
8002
|
toLocationId: string;
|
|
8015
8003
|
}
|
|
8016
8004
|
export declare class BookingItemRequestDto implements IBookingItemRequestDto {
|
|
8017
|
-
|
|
8005
|
+
parcelId?: string | null;
|
|
8018
8006
|
trackingId?: string | null;
|
|
8019
8007
|
comment?: string | null;
|
|
8020
8008
|
constructor(data?: IBookingItemRequestDto);
|
|
@@ -8023,12 +8011,12 @@ export declare class BookingItemRequestDto implements IBookingItemRequestDto {
|
|
|
8023
8011
|
toJSON(data?: any): any;
|
|
8024
8012
|
}
|
|
8025
8013
|
export interface IBookingItemRequestDto {
|
|
8026
|
-
|
|
8014
|
+
parcelId?: string | null;
|
|
8027
8015
|
trackingId?: string | null;
|
|
8028
8016
|
comment?: string | null;
|
|
8029
8017
|
}
|
|
8030
8018
|
export declare class BookingGeneralRequestDto implements IBookingGeneralRequestDto {
|
|
8031
|
-
|
|
8019
|
+
parcelKind: ParcelKindDto;
|
|
8032
8020
|
transportKind: TransportKindDto;
|
|
8033
8021
|
fromLocationId: string;
|
|
8034
8022
|
toLocationId: string;
|
|
@@ -8040,7 +8028,7 @@ export declare class BookingGeneralRequestDto implements IBookingGeneralRequestD
|
|
|
8040
8028
|
toJSON(data?: any): any;
|
|
8041
8029
|
}
|
|
8042
8030
|
export interface IBookingGeneralRequestDto {
|
|
8043
|
-
|
|
8031
|
+
parcelKind: ParcelKindDto;
|
|
8044
8032
|
transportKind: TransportKindDto;
|
|
8045
8033
|
fromLocationId: string;
|
|
8046
8034
|
toLocationId: string;
|
|
@@ -8075,28 +8063,6 @@ export interface IBookingDeliveryExceptionDto {
|
|
|
8075
8063
|
toLocationId?: string | null;
|
|
8076
8064
|
comment?: string | null;
|
|
8077
8065
|
}
|
|
8078
|
-
export declare class BookingUpdateStatusDto implements IBookingUpdateStatusDto {
|
|
8079
|
-
bookingId: string;
|
|
8080
|
-
constructor(data?: IBookingUpdateStatusDto);
|
|
8081
|
-
init(_data?: any): void;
|
|
8082
|
-
static fromJS(data: any): BookingUpdateStatusDto;
|
|
8083
|
-
toJSON(data?: any): any;
|
|
8084
|
-
}
|
|
8085
|
-
export interface IBookingUpdateStatusDto {
|
|
8086
|
-
bookingId: string;
|
|
8087
|
-
}
|
|
8088
|
-
export declare class BookingDeliveryUpdateDto implements IBookingDeliveryUpdateDto {
|
|
8089
|
-
bookingId: string;
|
|
8090
|
-
deliveryExceptions?: BookingDeliveryExceptionDto[] | null;
|
|
8091
|
-
constructor(data?: IBookingDeliveryUpdateDto);
|
|
8092
|
-
init(_data?: any): void;
|
|
8093
|
-
static fromJS(data: any): BookingDeliveryUpdateDto;
|
|
8094
|
-
toJSON(data?: any): any;
|
|
8095
|
-
}
|
|
8096
|
-
export interface IBookingDeliveryUpdateDto {
|
|
8097
|
-
bookingId: string;
|
|
8098
|
-
deliveryExceptions?: BookingDeliveryExceptionDto[] | null;
|
|
8099
|
-
}
|
|
8100
8066
|
export declare class LocationSuggestionsDto implements ILocationSuggestionsDto {
|
|
8101
8067
|
items: LocationSuggestionsItemDto[];
|
|
8102
8068
|
locationKindFilter?: LocationKindDto[] | null;
|
|
@@ -8110,14 +8076,14 @@ export interface ILocationSuggestionsDto {
|
|
|
8110
8076
|
locationKindFilter?: LocationKindDto[] | null;
|
|
8111
8077
|
}
|
|
8112
8078
|
export declare class LocationSuggestionsItemDto implements ILocationSuggestionsItemDto {
|
|
8113
|
-
|
|
8079
|
+
parcelId: string;
|
|
8114
8080
|
constructor(data?: ILocationSuggestionsItemDto);
|
|
8115
8081
|
init(_data?: any): void;
|
|
8116
8082
|
static fromJS(data: any): LocationSuggestionsItemDto;
|
|
8117
8083
|
toJSON(data?: any): any;
|
|
8118
8084
|
}
|
|
8119
8085
|
export interface ILocationSuggestionsItemDto {
|
|
8120
|
-
|
|
8086
|
+
parcelId: string;
|
|
8121
8087
|
}
|
|
8122
8088
|
export declare class MaterialDesciptionDto implements IMaterialDesciptionDto {
|
|
8123
8089
|
materialId: string;
|
|
@@ -8145,6 +8111,37 @@ export interface IMaterialUpdateDto {
|
|
|
8145
8111
|
materialName: string;
|
|
8146
8112
|
covered: MaterialCoveredDto;
|
|
8147
8113
|
}
|
|
8114
|
+
export declare class SearchParcelDto implements ISearchParcelDto {
|
|
8115
|
+
parcelId: string;
|
|
8116
|
+
matchCriteria: SearchMatchCriteriaDto;
|
|
8117
|
+
items: SearchParcelItemDto[];
|
|
8118
|
+
partName?: string | null;
|
|
8119
|
+
partNumber?: string | null;
|
|
8120
|
+
constructor(data?: ISearchParcelDto);
|
|
8121
|
+
init(_data?: any): void;
|
|
8122
|
+
static fromJS(data: any): SearchParcelDto;
|
|
8123
|
+
toJSON(data?: any): any;
|
|
8124
|
+
}
|
|
8125
|
+
export interface ISearchParcelDto {
|
|
8126
|
+
parcelId: string;
|
|
8127
|
+
matchCriteria: SearchMatchCriteriaDto;
|
|
8128
|
+
items: SearchParcelItemDto[];
|
|
8129
|
+
partName?: string | null;
|
|
8130
|
+
partNumber?: string | null;
|
|
8131
|
+
}
|
|
8132
|
+
export type SearchMatchCriteriaDto = "Tracking" | "WorkOrder" | "Parcel";
|
|
8133
|
+
export declare class SearchParcelItemDto implements ISearchParcelItemDto {
|
|
8134
|
+
trackingId: string;
|
|
8135
|
+
selected: boolean;
|
|
8136
|
+
constructor(data?: ISearchParcelItemDto);
|
|
8137
|
+
init(_data?: any): void;
|
|
8138
|
+
static fromJS(data: any): SearchParcelItemDto;
|
|
8139
|
+
toJSON(data?: any): any;
|
|
8140
|
+
}
|
|
8141
|
+
export interface ISearchParcelItemDto {
|
|
8142
|
+
trackingId: string;
|
|
8143
|
+
selected: boolean;
|
|
8144
|
+
}
|
|
8148
8145
|
export declare class TrackingHistoryListDto implements ITrackingHistoryListDto {
|
|
8149
8146
|
results: TrackingHistoryDto[];
|
|
8150
8147
|
continuationToken?: string | null;
|
|
@@ -8160,8 +8157,9 @@ export interface ITrackingHistoryListDto {
|
|
|
8160
8157
|
export declare class TrackingHistoryDto implements ITrackingHistoryDto {
|
|
8161
8158
|
trackingId: string;
|
|
8162
8159
|
palletNumber: number;
|
|
8163
|
-
parcelKind:
|
|
8164
|
-
|
|
8160
|
+
parcelKind: ParcelKindDto;
|
|
8161
|
+
parcelId: string;
|
|
8162
|
+
currentTracking?: TrackingEventDto | null;
|
|
8165
8163
|
trackingEvents: TrackingEventDto[];
|
|
8166
8164
|
material?: string | null;
|
|
8167
8165
|
activeBooking?: boolean | null;
|
|
@@ -8173,8 +8171,9 @@ export declare class TrackingHistoryDto implements ITrackingHistoryDto {
|
|
|
8173
8171
|
export interface ITrackingHistoryDto {
|
|
8174
8172
|
trackingId: string;
|
|
8175
8173
|
palletNumber: number;
|
|
8176
|
-
parcelKind:
|
|
8177
|
-
|
|
8174
|
+
parcelKind: ParcelKindDto;
|
|
8175
|
+
parcelId: string;
|
|
8176
|
+
currentTracking?: TrackingEventDto | null;
|
|
8178
8177
|
trackingEvents: TrackingEventDto[];
|
|
8179
8178
|
material?: string | null;
|
|
8180
8179
|
activeBooking?: boolean | null;
|
|
@@ -8206,8 +8205,8 @@ export interface ITrackingEventDto {
|
|
|
8206
8205
|
export type TrackingStatusDto = "Manual" | "Pending" | "Cancelled" | "InProgress" | "Completed";
|
|
8207
8206
|
export declare class TrackingRequestListDto implements ITrackingRequestListDto {
|
|
8208
8207
|
pageSize?: number | null;
|
|
8209
|
-
|
|
8210
|
-
parcelKindFilter?:
|
|
8208
|
+
parcelIdFilter?: string[] | null;
|
|
8209
|
+
parcelKindFilter?: ParcelKindDto[] | null;
|
|
8211
8210
|
locationIdFilter?: string[] | null;
|
|
8212
8211
|
zoneIdFilter?: string[] | null;
|
|
8213
8212
|
materialFilter?: string[] | null;
|
|
@@ -8220,26 +8219,26 @@ export declare class TrackingRequestListDto implements ITrackingRequestListDto {
|
|
|
8220
8219
|
}
|
|
8221
8220
|
export interface ITrackingRequestListDto {
|
|
8222
8221
|
pageSize?: number | null;
|
|
8223
|
-
|
|
8224
|
-
parcelKindFilter?:
|
|
8222
|
+
parcelIdFilter?: string[] | null;
|
|
8223
|
+
parcelKindFilter?: ParcelKindDto[] | null;
|
|
8225
8224
|
locationIdFilter?: string[] | null;
|
|
8226
8225
|
zoneIdFilter?: string[] | null;
|
|
8227
8226
|
materialFilter?: string[] | null;
|
|
8228
8227
|
includeActiveBookings?: boolean;
|
|
8229
8228
|
continuationToken?: string | null;
|
|
8230
8229
|
}
|
|
8231
|
-
export declare class
|
|
8232
|
-
|
|
8230
|
+
export declare class TrackingParcelDto implements ITrackingParcelDto {
|
|
8231
|
+
parcelId: string;
|
|
8233
8232
|
part?: PartDto | null;
|
|
8234
8233
|
trackingHistory: TrackingHistoryDto[];
|
|
8235
8234
|
covered: MaterialCoveredDto;
|
|
8236
|
-
constructor(data?:
|
|
8235
|
+
constructor(data?: ITrackingParcelDto);
|
|
8237
8236
|
init(_data?: any): void;
|
|
8238
|
-
static fromJS(data: any):
|
|
8237
|
+
static fromJS(data: any): TrackingParcelDto;
|
|
8239
8238
|
toJSON(data?: any): any;
|
|
8240
8239
|
}
|
|
8241
|
-
export interface
|
|
8242
|
-
|
|
8240
|
+
export interface ITrackingParcelDto {
|
|
8241
|
+
parcelId: string;
|
|
8243
8242
|
part?: PartDto | null;
|
|
8244
8243
|
trackingHistory: TrackingHistoryDto[];
|
|
8245
8244
|
covered: MaterialCoveredDto;
|
|
@@ -8271,45 +8270,14 @@ export interface ITrackingUpdateDto {
|
|
|
8271
8270
|
comment?: string | null;
|
|
8272
8271
|
}
|
|
8273
8272
|
export declare class TrackingHistoryUpdateDto implements ITrackingHistoryUpdateDto {
|
|
8274
|
-
|
|
8273
|
+
parcelId: string;
|
|
8275
8274
|
constructor(data?: ITrackingHistoryUpdateDto);
|
|
8276
8275
|
init(_data?: any): void;
|
|
8277
8276
|
static fromJS(data: any): TrackingHistoryUpdateDto;
|
|
8278
8277
|
toJSON(data?: any): any;
|
|
8279
8278
|
}
|
|
8280
8279
|
export interface ITrackingHistoryUpdateDto {
|
|
8281
|
-
|
|
8282
|
-
}
|
|
8283
|
-
export declare class SearchWorkOrderDto implements ISearchWorkOrderDto {
|
|
8284
|
-
workOrderId: string;
|
|
8285
|
-
matchCriteria: SearchMatchCriteriaDto;
|
|
8286
|
-
items: SearchWorkOrderItemDto[];
|
|
8287
|
-
partName?: string | null;
|
|
8288
|
-
partNumber?: string | null;
|
|
8289
|
-
constructor(data?: ISearchWorkOrderDto);
|
|
8290
|
-
init(_data?: any): void;
|
|
8291
|
-
static fromJS(data: any): SearchWorkOrderDto;
|
|
8292
|
-
toJSON(data?: any): any;
|
|
8293
|
-
}
|
|
8294
|
-
export interface ISearchWorkOrderDto {
|
|
8295
|
-
workOrderId: string;
|
|
8296
|
-
matchCriteria: SearchMatchCriteriaDto;
|
|
8297
|
-
items: SearchWorkOrderItemDto[];
|
|
8298
|
-
partName?: string | null;
|
|
8299
|
-
partNumber?: string | null;
|
|
8300
|
-
}
|
|
8301
|
-
export type SearchMatchCriteriaDto = "Tracking" | "WorkOrder" | "Parcel";
|
|
8302
|
-
export declare class SearchWorkOrderItemDto implements ISearchWorkOrderItemDto {
|
|
8303
|
-
trackingId: string;
|
|
8304
|
-
selected: boolean;
|
|
8305
|
-
constructor(data?: ISearchWorkOrderItemDto);
|
|
8306
|
-
init(_data?: any): void;
|
|
8307
|
-
static fromJS(data: any): SearchWorkOrderItemDto;
|
|
8308
|
-
toJSON(data?: any): any;
|
|
8309
|
-
}
|
|
8310
|
-
export interface ISearchWorkOrderItemDto {
|
|
8311
|
-
trackingId: string;
|
|
8312
|
-
selected: boolean;
|
|
8280
|
+
parcelId: string;
|
|
8313
8281
|
}
|
|
8314
8282
|
export declare class WorkerDto implements IWorkerDto {
|
|
8315
8283
|
personnelNumber?: string | null;
|