@ignos/api-client 20240819.0.10050 → 20240820.0.10059
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 +121 -88
- package/lib/ignosportal-api.js +246 -157
- package/package.json +1 -1
- package/src/ignosportal-api.ts +361 -244
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -1414,7 +1414,7 @@ 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>;
|
|
@@ -1435,8 +1435,8 @@ export declare class MoveBookingClient extends AuthorizedApiBase implements IMov
|
|
|
1435
1435
|
protected processListBookings(response: Response): Promise<BookingListDto>;
|
|
1436
1436
|
getBooking(bookingId: string): Promise<BookingDto>;
|
|
1437
1437
|
protected processGetBooking(response: Response): Promise<BookingDto>;
|
|
1438
|
-
|
|
1439
|
-
protected
|
|
1438
|
+
getParcelBooking(parcelId: string): Promise<BookingDto[]>;
|
|
1439
|
+
protected processGetParcelBooking(response: Response): Promise<BookingDto[]>;
|
|
1440
1440
|
updateBooking(bookingRequest: BookingUpdateDto): Promise<BookingDto>;
|
|
1441
1441
|
protected processUpdateBooking(response: Response): Promise<BookingDto>;
|
|
1442
1442
|
createBookingTransport(bookingRequest: BookingTransportRequestDto): Promise<BookingDto>;
|
|
@@ -1495,11 +1495,24 @@ export declare class MoveMaterialsClient extends AuthorizedApiBase implements IM
|
|
|
1495
1495
|
importMaterials(request: FileParameter | null | undefined): Promise<void>;
|
|
1496
1496
|
protected processImportMaterials(response: Response): Promise<void>;
|
|
1497
1497
|
}
|
|
1498
|
+
export interface IMoveParcelsClient {
|
|
1499
|
+
searchParcels(input: string | null | undefined, pageSize: number | null | undefined): Promise<SearchParcelDto[]>;
|
|
1500
|
+
}
|
|
1501
|
+
export declare class MoveParcelsClient extends AuthorizedApiBase implements IMoveParcelsClient {
|
|
1502
|
+
private http;
|
|
1503
|
+
private baseUrl;
|
|
1504
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1505
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1506
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1507
|
+
});
|
|
1508
|
+
searchParcels(input: string | null | undefined, pageSize: number | null | undefined): Promise<SearchParcelDto[]>;
|
|
1509
|
+
protected processSearchParcels(response: Response): Promise<SearchParcelDto[]>;
|
|
1510
|
+
}
|
|
1498
1511
|
export interface IMoveTrackingClient {
|
|
1499
1512
|
listTrackingHistory(request: TrackingRequestListDto): Promise<TrackingHistoryListDto>;
|
|
1500
1513
|
getTrackingHistory(trackingId: string, includeActiveBookings: boolean | undefined): Promise<TrackingHistoryDto>;
|
|
1501
|
-
|
|
1502
|
-
|
|
1514
|
+
getParcelTrackingHistory(parcelId: string, includeActiveBookings: boolean | undefined): Promise<TrackingParcelDto>;
|
|
1515
|
+
listParcelTrackingHistory(trackingParcelList: TrackingParcelListDto): Promise<TrackingParcelDto[]>;
|
|
1503
1516
|
createTrackingEvents(trackingUpdates: TrackingUpdateDto[]): Promise<TrackingHistoryDto[]>;
|
|
1504
1517
|
createTrackingHistory(trackingUpdates: TrackingHistoryUpdateDto[]): Promise<TrackingHistoryDto[]>;
|
|
1505
1518
|
deleteTrackingHistory(trackingId: string): Promise<void>;
|
|
@@ -1516,10 +1529,10 @@ export declare class MoveTrackingClient extends AuthorizedApiBase implements IMo
|
|
|
1516
1529
|
protected processListTrackingHistory(response: Response): Promise<TrackingHistoryListDto>;
|
|
1517
1530
|
getTrackingHistory(trackingId: string, includeActiveBookings: boolean | undefined): Promise<TrackingHistoryDto>;
|
|
1518
1531
|
protected processGetTrackingHistory(response: Response): Promise<TrackingHistoryDto>;
|
|
1519
|
-
|
|
1520
|
-
protected
|
|
1521
|
-
|
|
1522
|
-
protected
|
|
1532
|
+
getParcelTrackingHistory(parcelId: string, includeActiveBookings: boolean | undefined): Promise<TrackingParcelDto>;
|
|
1533
|
+
protected processGetParcelTrackingHistory(response: Response): Promise<TrackingParcelDto>;
|
|
1534
|
+
listParcelTrackingHistory(trackingParcelList: TrackingParcelListDto): Promise<TrackingParcelDto[]>;
|
|
1535
|
+
protected processListParcelTrackingHistory(response: Response): Promise<TrackingParcelDto[]>;
|
|
1523
1536
|
createTrackingEvents(trackingUpdates: TrackingUpdateDto[]): Promise<TrackingHistoryDto[]>;
|
|
1524
1537
|
protected processCreateTrackingEvents(response: Response): Promise<TrackingHistoryDto[]>;
|
|
1525
1538
|
createTrackingHistory(trackingUpdates: TrackingHistoryUpdateDto[]): Promise<TrackingHistoryDto[]>;
|
|
@@ -1529,19 +1542,6 @@ export declare class MoveTrackingClient extends AuthorizedApiBase implements IMo
|
|
|
1529
1542
|
createLabel(trackingIds: string[]): Promise<DownloadDto>;
|
|
1530
1543
|
protected processCreateLabel(response: Response): Promise<DownloadDto>;
|
|
1531
1544
|
}
|
|
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
1545
|
export interface IMesClient {
|
|
1546
1546
|
getWorkerDetailsForCurrentUser(): Promise<WorkerDto>;
|
|
1547
1547
|
}
|
|
@@ -1568,6 +1568,19 @@ export declare class MesDocumentsClient extends AuthorizedApiBase implements IMe
|
|
|
1568
1568
|
getDocument(drawingNumber: string, id: string): Promise<DocumentLinkDto>;
|
|
1569
1569
|
protected processGetDocument(response: Response): Promise<DocumentLinkDto>;
|
|
1570
1570
|
}
|
|
1571
|
+
export interface IMesEngineeringChangeOrdersClient {
|
|
1572
|
+
getEngineeringChangeOrders(partNumber: string | undefined): Promise<EngineeringChangeOrderDto[]>;
|
|
1573
|
+
}
|
|
1574
|
+
export declare class MesEngineeringChangeOrdersClient extends AuthorizedApiBase implements IMesEngineeringChangeOrdersClient {
|
|
1575
|
+
private http;
|
|
1576
|
+
private baseUrl;
|
|
1577
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
1578
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
1579
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1580
|
+
});
|
|
1581
|
+
getEngineeringChangeOrders(partNumber: string | undefined): Promise<EngineeringChangeOrderDto[]>;
|
|
1582
|
+
protected processGetEngineeringChangeOrders(response: Response): Promise<EngineeringChangeOrderDto[]>;
|
|
1583
|
+
}
|
|
1571
1584
|
export interface IMesLinksClient {
|
|
1572
1585
|
addMesLink(request: AddMesLink): Promise<void>;
|
|
1573
1586
|
listMesLinks(types: MesLinkTypeDto[] | null | undefined, workOrderId: string | null | undefined, operation: number | null | undefined): Promise<MesLinkDto[]>;
|
|
@@ -7840,7 +7853,7 @@ export interface IBookingListDto {
|
|
|
7840
7853
|
}
|
|
7841
7854
|
export declare class BookingDto implements IBookingDto {
|
|
7842
7855
|
bookingId: string;
|
|
7843
|
-
|
|
7856
|
+
parcelKind: ParcelKindDto;
|
|
7844
7857
|
transportKind: TransportKindDto;
|
|
7845
7858
|
status: BookingStatusDto;
|
|
7846
7859
|
items: BookingItemDto[];
|
|
@@ -7861,7 +7874,7 @@ export declare class BookingDto implements IBookingDto {
|
|
|
7861
7874
|
}
|
|
7862
7875
|
export interface IBookingDto {
|
|
7863
7876
|
bookingId: string;
|
|
7864
|
-
|
|
7877
|
+
parcelKind: ParcelKindDto;
|
|
7865
7878
|
transportKind: TransportKindDto;
|
|
7866
7879
|
status: BookingStatusDto;
|
|
7867
7880
|
items: BookingItemDto[];
|
|
@@ -7876,14 +7889,14 @@ export interface IBookingDto {
|
|
|
7876
7889
|
driverId?: string | null;
|
|
7877
7890
|
completed?: Date | null;
|
|
7878
7891
|
}
|
|
7879
|
-
export type
|
|
7892
|
+
export type ParcelKindDto = "Forklift" | "General" | "ChipDisposal" | "Garbage";
|
|
7880
7893
|
export type TransportKindDto = "NormalForklift" | "LargeForklift" | "SideLoadingForklift";
|
|
7881
7894
|
export type BookingStatusDto = "Pending" | "Cancelled" | "InProgress" | "Completed";
|
|
7882
7895
|
export declare class BookingItemDto implements IBookingItemDto {
|
|
7883
7896
|
trackingId: string;
|
|
7884
7897
|
palletNumber: number;
|
|
7885
|
-
|
|
7886
|
-
parcelKind:
|
|
7898
|
+
parcelId: string;
|
|
7899
|
+
parcelKind: ParcelKindDto;
|
|
7887
7900
|
material?: string | null;
|
|
7888
7901
|
comment?: string | null;
|
|
7889
7902
|
covered: MaterialCoveredDto;
|
|
@@ -7896,8 +7909,8 @@ export declare class BookingItemDto implements IBookingItemDto {
|
|
|
7896
7909
|
export interface IBookingItemDto {
|
|
7897
7910
|
trackingId: string;
|
|
7898
7911
|
palletNumber: number;
|
|
7899
|
-
|
|
7900
|
-
parcelKind:
|
|
7912
|
+
parcelId: string;
|
|
7913
|
+
parcelKind: ParcelKindDto;
|
|
7901
7914
|
material?: string | null;
|
|
7902
7915
|
comment?: string | null;
|
|
7903
7916
|
covered: MaterialCoveredDto;
|
|
@@ -7927,14 +7940,14 @@ export interface ILocationDto {
|
|
|
7927
7940
|
export type LocationKindDto = "Warehouse" | "Zone" | "Location";
|
|
7928
7941
|
export declare class BookingRequestListDto implements IBookingRequestListDto {
|
|
7929
7942
|
pageSize?: number | null;
|
|
7930
|
-
|
|
7943
|
+
parcelIdFilter?: string[] | null;
|
|
7931
7944
|
materialFilter?: string[] | null;
|
|
7932
7945
|
locationIdFromFilter?: string[] | null;
|
|
7933
7946
|
locationIdToFilter?: string[] | null;
|
|
7934
7947
|
zoneIdFromFilter?: string[] | null;
|
|
7935
7948
|
zoneIdToFilter?: string[] | null;
|
|
7936
7949
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
7937
|
-
|
|
7950
|
+
parcelKindFilter?: ParcelKindDto[] | null;
|
|
7938
7951
|
transportKindFilter?: TransportKindDto[] | null;
|
|
7939
7952
|
taskFilter?: BookingTaskDto | null;
|
|
7940
7953
|
createdByFilter?: BookingCreatedByDto | null;
|
|
@@ -7947,14 +7960,14 @@ export declare class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
7947
7960
|
}
|
|
7948
7961
|
export interface IBookingRequestListDto {
|
|
7949
7962
|
pageSize?: number | null;
|
|
7950
|
-
|
|
7963
|
+
parcelIdFilter?: string[] | null;
|
|
7951
7964
|
materialFilter?: string[] | null;
|
|
7952
7965
|
locationIdFromFilter?: string[] | null;
|
|
7953
7966
|
locationIdToFilter?: string[] | null;
|
|
7954
7967
|
zoneIdFromFilter?: string[] | null;
|
|
7955
7968
|
zoneIdToFilter?: string[] | null;
|
|
7956
7969
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
7957
|
-
|
|
7970
|
+
parcelKindFilter?: ParcelKindDto[] | null;
|
|
7958
7971
|
transportKindFilter?: TransportKindDto[] | null;
|
|
7959
7972
|
taskFilter?: BookingTaskDto | null;
|
|
7960
7973
|
createdByFilter?: BookingCreatedByDto | null;
|
|
@@ -7966,7 +7979,7 @@ export type BookingCreatedByDto = "MyBookings" | "OthersBookings";
|
|
|
7966
7979
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
7967
7980
|
export declare class BookingUpdateDto implements IBookingUpdateDto {
|
|
7968
7981
|
bookingId: string;
|
|
7969
|
-
|
|
7982
|
+
parcelKind: ParcelKindDto;
|
|
7970
7983
|
transportKind: TransportKindDto;
|
|
7971
7984
|
status: BookingStatusDto;
|
|
7972
7985
|
fromLocationId: string;
|
|
@@ -7978,7 +7991,7 @@ export declare class BookingUpdateDto implements IBookingUpdateDto {
|
|
|
7978
7991
|
}
|
|
7979
7992
|
export interface IBookingUpdateDto {
|
|
7980
7993
|
bookingId: string;
|
|
7981
|
-
|
|
7994
|
+
parcelKind: ParcelKindDto;
|
|
7982
7995
|
transportKind: TransportKindDto;
|
|
7983
7996
|
status: BookingStatusDto;
|
|
7984
7997
|
fromLocationId: string;
|
|
@@ -8001,7 +8014,7 @@ export interface IBookingTransportRequestDto {
|
|
|
8001
8014
|
toLocationId: string;
|
|
8002
8015
|
}
|
|
8003
8016
|
export declare class BookingItemRequestDto implements IBookingItemRequestDto {
|
|
8004
|
-
|
|
8017
|
+
parcelId?: string | null;
|
|
8005
8018
|
trackingId?: string | null;
|
|
8006
8019
|
comment?: string | null;
|
|
8007
8020
|
constructor(data?: IBookingItemRequestDto);
|
|
@@ -8010,12 +8023,12 @@ export declare class BookingItemRequestDto implements IBookingItemRequestDto {
|
|
|
8010
8023
|
toJSON(data?: any): any;
|
|
8011
8024
|
}
|
|
8012
8025
|
export interface IBookingItemRequestDto {
|
|
8013
|
-
|
|
8026
|
+
parcelId?: string | null;
|
|
8014
8027
|
trackingId?: string | null;
|
|
8015
8028
|
comment?: string | null;
|
|
8016
8029
|
}
|
|
8017
8030
|
export declare class BookingGeneralRequestDto implements IBookingGeneralRequestDto {
|
|
8018
|
-
|
|
8031
|
+
parcelKind: ParcelKindDto;
|
|
8019
8032
|
transportKind: TransportKindDto;
|
|
8020
8033
|
fromLocationId: string;
|
|
8021
8034
|
toLocationId: string;
|
|
@@ -8027,7 +8040,7 @@ export declare class BookingGeneralRequestDto implements IBookingGeneralRequestD
|
|
|
8027
8040
|
toJSON(data?: any): any;
|
|
8028
8041
|
}
|
|
8029
8042
|
export interface IBookingGeneralRequestDto {
|
|
8030
|
-
|
|
8043
|
+
parcelKind: ParcelKindDto;
|
|
8031
8044
|
transportKind: TransportKindDto;
|
|
8032
8045
|
fromLocationId: string;
|
|
8033
8046
|
toLocationId: string;
|
|
@@ -8097,14 +8110,14 @@ export interface ILocationSuggestionsDto {
|
|
|
8097
8110
|
locationKindFilter?: LocationKindDto[] | null;
|
|
8098
8111
|
}
|
|
8099
8112
|
export declare class LocationSuggestionsItemDto implements ILocationSuggestionsItemDto {
|
|
8100
|
-
|
|
8113
|
+
parcelId: string;
|
|
8101
8114
|
constructor(data?: ILocationSuggestionsItemDto);
|
|
8102
8115
|
init(_data?: any): void;
|
|
8103
8116
|
static fromJS(data: any): LocationSuggestionsItemDto;
|
|
8104
8117
|
toJSON(data?: any): any;
|
|
8105
8118
|
}
|
|
8106
8119
|
export interface ILocationSuggestionsItemDto {
|
|
8107
|
-
|
|
8120
|
+
parcelId: string;
|
|
8108
8121
|
}
|
|
8109
8122
|
export declare class MaterialDesciptionDto implements IMaterialDesciptionDto {
|
|
8110
8123
|
materialId: string;
|
|
@@ -8132,6 +8145,37 @@ export interface IMaterialUpdateDto {
|
|
|
8132
8145
|
materialName: string;
|
|
8133
8146
|
covered: MaterialCoveredDto;
|
|
8134
8147
|
}
|
|
8148
|
+
export declare class SearchParcelDto implements ISearchParcelDto {
|
|
8149
|
+
parcelId: string;
|
|
8150
|
+
matchCriteria: SearchMatchCriteriaDto;
|
|
8151
|
+
items: SearchParcelItemDto[];
|
|
8152
|
+
partName?: string | null;
|
|
8153
|
+
partNumber?: string | null;
|
|
8154
|
+
constructor(data?: ISearchParcelDto);
|
|
8155
|
+
init(_data?: any): void;
|
|
8156
|
+
static fromJS(data: any): SearchParcelDto;
|
|
8157
|
+
toJSON(data?: any): any;
|
|
8158
|
+
}
|
|
8159
|
+
export interface ISearchParcelDto {
|
|
8160
|
+
parcelId: string;
|
|
8161
|
+
matchCriteria: SearchMatchCriteriaDto;
|
|
8162
|
+
items: SearchParcelItemDto[];
|
|
8163
|
+
partName?: string | null;
|
|
8164
|
+
partNumber?: string | null;
|
|
8165
|
+
}
|
|
8166
|
+
export type SearchMatchCriteriaDto = "Tracking" | "WorkOrder" | "Parcel";
|
|
8167
|
+
export declare class SearchParcelItemDto implements ISearchParcelItemDto {
|
|
8168
|
+
trackingId: string;
|
|
8169
|
+
selected: boolean;
|
|
8170
|
+
constructor(data?: ISearchParcelItemDto);
|
|
8171
|
+
init(_data?: any): void;
|
|
8172
|
+
static fromJS(data: any): SearchParcelItemDto;
|
|
8173
|
+
toJSON(data?: any): any;
|
|
8174
|
+
}
|
|
8175
|
+
export interface ISearchParcelItemDto {
|
|
8176
|
+
trackingId: string;
|
|
8177
|
+
selected: boolean;
|
|
8178
|
+
}
|
|
8135
8179
|
export declare class TrackingHistoryListDto implements ITrackingHistoryListDto {
|
|
8136
8180
|
results: TrackingHistoryDto[];
|
|
8137
8181
|
continuationToken?: string | null;
|
|
@@ -8147,8 +8191,8 @@ export interface ITrackingHistoryListDto {
|
|
|
8147
8191
|
export declare class TrackingHistoryDto implements ITrackingHistoryDto {
|
|
8148
8192
|
trackingId: string;
|
|
8149
8193
|
palletNumber: number;
|
|
8150
|
-
parcelKind:
|
|
8151
|
-
|
|
8194
|
+
parcelKind: ParcelKindDto;
|
|
8195
|
+
parcelId: string;
|
|
8152
8196
|
trackingEvents: TrackingEventDto[];
|
|
8153
8197
|
material?: string | null;
|
|
8154
8198
|
activeBooking?: boolean | null;
|
|
@@ -8160,8 +8204,8 @@ export declare class TrackingHistoryDto implements ITrackingHistoryDto {
|
|
|
8160
8204
|
export interface ITrackingHistoryDto {
|
|
8161
8205
|
trackingId: string;
|
|
8162
8206
|
palletNumber: number;
|
|
8163
|
-
parcelKind:
|
|
8164
|
-
|
|
8207
|
+
parcelKind: ParcelKindDto;
|
|
8208
|
+
parcelId: string;
|
|
8165
8209
|
trackingEvents: TrackingEventDto[];
|
|
8166
8210
|
material?: string | null;
|
|
8167
8211
|
activeBooking?: boolean | null;
|
|
@@ -8193,8 +8237,8 @@ export interface ITrackingEventDto {
|
|
|
8193
8237
|
export type TrackingStatusDto = "Manual" | "Pending" | "Cancelled" | "InProgress" | "Completed";
|
|
8194
8238
|
export declare class TrackingRequestListDto implements ITrackingRequestListDto {
|
|
8195
8239
|
pageSize?: number | null;
|
|
8196
|
-
|
|
8197
|
-
parcelKindFilter?:
|
|
8240
|
+
parcelIdFilter?: string[] | null;
|
|
8241
|
+
parcelKindFilter?: ParcelKindDto[] | null;
|
|
8198
8242
|
locationIdFilter?: string[] | null;
|
|
8199
8243
|
zoneIdFilter?: string[] | null;
|
|
8200
8244
|
materialFilter?: string[] | null;
|
|
@@ -8207,26 +8251,26 @@ export declare class TrackingRequestListDto implements ITrackingRequestListDto {
|
|
|
8207
8251
|
}
|
|
8208
8252
|
export interface ITrackingRequestListDto {
|
|
8209
8253
|
pageSize?: number | null;
|
|
8210
|
-
|
|
8211
|
-
parcelKindFilter?:
|
|
8254
|
+
parcelIdFilter?: string[] | null;
|
|
8255
|
+
parcelKindFilter?: ParcelKindDto[] | null;
|
|
8212
8256
|
locationIdFilter?: string[] | null;
|
|
8213
8257
|
zoneIdFilter?: string[] | null;
|
|
8214
8258
|
materialFilter?: string[] | null;
|
|
8215
8259
|
includeActiveBookings?: boolean;
|
|
8216
8260
|
continuationToken?: string | null;
|
|
8217
8261
|
}
|
|
8218
|
-
export declare class
|
|
8219
|
-
|
|
8262
|
+
export declare class TrackingParcelDto implements ITrackingParcelDto {
|
|
8263
|
+
parcelId: string;
|
|
8220
8264
|
part?: PartDto | null;
|
|
8221
8265
|
trackingHistory: TrackingHistoryDto[];
|
|
8222
8266
|
covered: MaterialCoveredDto;
|
|
8223
|
-
constructor(data?:
|
|
8267
|
+
constructor(data?: ITrackingParcelDto);
|
|
8224
8268
|
init(_data?: any): void;
|
|
8225
|
-
static fromJS(data: any):
|
|
8269
|
+
static fromJS(data: any): TrackingParcelDto;
|
|
8226
8270
|
toJSON(data?: any): any;
|
|
8227
8271
|
}
|
|
8228
|
-
export interface
|
|
8229
|
-
|
|
8272
|
+
export interface ITrackingParcelDto {
|
|
8273
|
+
parcelId: string;
|
|
8230
8274
|
part?: PartDto | null;
|
|
8231
8275
|
trackingHistory: TrackingHistoryDto[];
|
|
8232
8276
|
covered: MaterialCoveredDto;
|
|
@@ -8258,45 +8302,14 @@ export interface ITrackingUpdateDto {
|
|
|
8258
8302
|
comment?: string | null;
|
|
8259
8303
|
}
|
|
8260
8304
|
export declare class TrackingHistoryUpdateDto implements ITrackingHistoryUpdateDto {
|
|
8261
|
-
|
|
8305
|
+
parcelId: string;
|
|
8262
8306
|
constructor(data?: ITrackingHistoryUpdateDto);
|
|
8263
8307
|
init(_data?: any): void;
|
|
8264
8308
|
static fromJS(data: any): TrackingHistoryUpdateDto;
|
|
8265
8309
|
toJSON(data?: any): any;
|
|
8266
8310
|
}
|
|
8267
8311
|
export interface ITrackingHistoryUpdateDto {
|
|
8268
|
-
|
|
8269
|
-
}
|
|
8270
|
-
export declare class SearchWorkOrderDto implements ISearchWorkOrderDto {
|
|
8271
|
-
workOrderId: string;
|
|
8272
|
-
matchCriteria: SearchMatchCriteriaDto;
|
|
8273
|
-
items: SearchWorkOrderItemDto[];
|
|
8274
|
-
partName?: string | null;
|
|
8275
|
-
partNumber?: string | null;
|
|
8276
|
-
constructor(data?: ISearchWorkOrderDto);
|
|
8277
|
-
init(_data?: any): void;
|
|
8278
|
-
static fromJS(data: any): SearchWorkOrderDto;
|
|
8279
|
-
toJSON(data?: any): any;
|
|
8280
|
-
}
|
|
8281
|
-
export interface ISearchWorkOrderDto {
|
|
8282
|
-
workOrderId: string;
|
|
8283
|
-
matchCriteria: SearchMatchCriteriaDto;
|
|
8284
|
-
items: SearchWorkOrderItemDto[];
|
|
8285
|
-
partName?: string | null;
|
|
8286
|
-
partNumber?: string | null;
|
|
8287
|
-
}
|
|
8288
|
-
export type SearchMatchCriteriaDto = "Tracking" | "WorkOrder" | "Parcel";
|
|
8289
|
-
export declare class SearchWorkOrderItemDto implements ISearchWorkOrderItemDto {
|
|
8290
|
-
trackingId: string;
|
|
8291
|
-
selected: boolean;
|
|
8292
|
-
constructor(data?: ISearchWorkOrderItemDto);
|
|
8293
|
-
init(_data?: any): void;
|
|
8294
|
-
static fromJS(data: any): SearchWorkOrderItemDto;
|
|
8295
|
-
toJSON(data?: any): any;
|
|
8296
|
-
}
|
|
8297
|
-
export interface ISearchWorkOrderItemDto {
|
|
8298
|
-
trackingId: string;
|
|
8299
|
-
selected: boolean;
|
|
8312
|
+
parcelId: string;
|
|
8300
8313
|
}
|
|
8301
8314
|
export declare class WorkerDto implements IWorkerDto {
|
|
8302
8315
|
personnelNumber?: string | null;
|
|
@@ -8320,6 +8333,26 @@ export declare class DocumentLinkDto implements IDocumentLinkDto {
|
|
|
8320
8333
|
export interface IDocumentLinkDto {
|
|
8321
8334
|
url: string;
|
|
8322
8335
|
}
|
|
8336
|
+
export declare class EngineeringChangeOrderDto implements IEngineeringChangeOrderDto {
|
|
8337
|
+
orderNumber: string;
|
|
8338
|
+
title: string;
|
|
8339
|
+
category?: string | null;
|
|
8340
|
+
description?: string | null;
|
|
8341
|
+
project?: string | null;
|
|
8342
|
+
status?: string | null;
|
|
8343
|
+
constructor(data?: IEngineeringChangeOrderDto);
|
|
8344
|
+
init(_data?: any): void;
|
|
8345
|
+
static fromJS(data: any): EngineeringChangeOrderDto;
|
|
8346
|
+
toJSON(data?: any): any;
|
|
8347
|
+
}
|
|
8348
|
+
export interface IEngineeringChangeOrderDto {
|
|
8349
|
+
orderNumber: string;
|
|
8350
|
+
title: string;
|
|
8351
|
+
category?: string | null;
|
|
8352
|
+
description?: string | null;
|
|
8353
|
+
project?: string | null;
|
|
8354
|
+
status?: string | null;
|
|
8355
|
+
}
|
|
8323
8356
|
export declare class AddMesLink implements IAddMesLink {
|
|
8324
8357
|
uri?: string | null;
|
|
8325
8358
|
name?: string | null;
|