@ignos/api-client 20240819.0.10052 → 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 +88 -88
- package/lib/ignosportal-api.js +190 -190
- package/package.json +1 -1
- package/src/ignosportal-api.ts +269 -269
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
|
}
|
|
@@ -7853,7 +7853,7 @@ export interface IBookingListDto {
|
|
|
7853
7853
|
}
|
|
7854
7854
|
export declare class BookingDto implements IBookingDto {
|
|
7855
7855
|
bookingId: string;
|
|
7856
|
-
|
|
7856
|
+
parcelKind: ParcelKindDto;
|
|
7857
7857
|
transportKind: TransportKindDto;
|
|
7858
7858
|
status: BookingStatusDto;
|
|
7859
7859
|
items: BookingItemDto[];
|
|
@@ -7874,7 +7874,7 @@ export declare class BookingDto implements IBookingDto {
|
|
|
7874
7874
|
}
|
|
7875
7875
|
export interface IBookingDto {
|
|
7876
7876
|
bookingId: string;
|
|
7877
|
-
|
|
7877
|
+
parcelKind: ParcelKindDto;
|
|
7878
7878
|
transportKind: TransportKindDto;
|
|
7879
7879
|
status: BookingStatusDto;
|
|
7880
7880
|
items: BookingItemDto[];
|
|
@@ -7889,14 +7889,14 @@ export interface IBookingDto {
|
|
|
7889
7889
|
driverId?: string | null;
|
|
7890
7890
|
completed?: Date | null;
|
|
7891
7891
|
}
|
|
7892
|
-
export type
|
|
7892
|
+
export type ParcelKindDto = "Forklift" | "General" | "ChipDisposal" | "Garbage";
|
|
7893
7893
|
export type TransportKindDto = "NormalForklift" | "LargeForklift" | "SideLoadingForklift";
|
|
7894
7894
|
export type BookingStatusDto = "Pending" | "Cancelled" | "InProgress" | "Completed";
|
|
7895
7895
|
export declare class BookingItemDto implements IBookingItemDto {
|
|
7896
7896
|
trackingId: string;
|
|
7897
7897
|
palletNumber: number;
|
|
7898
|
-
|
|
7899
|
-
parcelKind:
|
|
7898
|
+
parcelId: string;
|
|
7899
|
+
parcelKind: ParcelKindDto;
|
|
7900
7900
|
material?: string | null;
|
|
7901
7901
|
comment?: string | null;
|
|
7902
7902
|
covered: MaterialCoveredDto;
|
|
@@ -7909,8 +7909,8 @@ export declare class BookingItemDto implements IBookingItemDto {
|
|
|
7909
7909
|
export interface IBookingItemDto {
|
|
7910
7910
|
trackingId: string;
|
|
7911
7911
|
palletNumber: number;
|
|
7912
|
-
|
|
7913
|
-
parcelKind:
|
|
7912
|
+
parcelId: string;
|
|
7913
|
+
parcelKind: ParcelKindDto;
|
|
7914
7914
|
material?: string | null;
|
|
7915
7915
|
comment?: string | null;
|
|
7916
7916
|
covered: MaterialCoveredDto;
|
|
@@ -7940,14 +7940,14 @@ export interface ILocationDto {
|
|
|
7940
7940
|
export type LocationKindDto = "Warehouse" | "Zone" | "Location";
|
|
7941
7941
|
export declare class BookingRequestListDto implements IBookingRequestListDto {
|
|
7942
7942
|
pageSize?: number | null;
|
|
7943
|
-
|
|
7943
|
+
parcelIdFilter?: string[] | null;
|
|
7944
7944
|
materialFilter?: string[] | null;
|
|
7945
7945
|
locationIdFromFilter?: string[] | null;
|
|
7946
7946
|
locationIdToFilter?: string[] | null;
|
|
7947
7947
|
zoneIdFromFilter?: string[] | null;
|
|
7948
7948
|
zoneIdToFilter?: string[] | null;
|
|
7949
7949
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
7950
|
-
|
|
7950
|
+
parcelKindFilter?: ParcelKindDto[] | null;
|
|
7951
7951
|
transportKindFilter?: TransportKindDto[] | null;
|
|
7952
7952
|
taskFilter?: BookingTaskDto | null;
|
|
7953
7953
|
createdByFilter?: BookingCreatedByDto | null;
|
|
@@ -7960,14 +7960,14 @@ export declare class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
7960
7960
|
}
|
|
7961
7961
|
export interface IBookingRequestListDto {
|
|
7962
7962
|
pageSize?: number | null;
|
|
7963
|
-
|
|
7963
|
+
parcelIdFilter?: string[] | null;
|
|
7964
7964
|
materialFilter?: string[] | null;
|
|
7965
7965
|
locationIdFromFilter?: string[] | null;
|
|
7966
7966
|
locationIdToFilter?: string[] | null;
|
|
7967
7967
|
zoneIdFromFilter?: string[] | null;
|
|
7968
7968
|
zoneIdToFilter?: string[] | null;
|
|
7969
7969
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
7970
|
-
|
|
7970
|
+
parcelKindFilter?: ParcelKindDto[] | null;
|
|
7971
7971
|
transportKindFilter?: TransportKindDto[] | null;
|
|
7972
7972
|
taskFilter?: BookingTaskDto | null;
|
|
7973
7973
|
createdByFilter?: BookingCreatedByDto | null;
|
|
@@ -7979,7 +7979,7 @@ export type BookingCreatedByDto = "MyBookings" | "OthersBookings";
|
|
|
7979
7979
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
7980
7980
|
export declare class BookingUpdateDto implements IBookingUpdateDto {
|
|
7981
7981
|
bookingId: string;
|
|
7982
|
-
|
|
7982
|
+
parcelKind: ParcelKindDto;
|
|
7983
7983
|
transportKind: TransportKindDto;
|
|
7984
7984
|
status: BookingStatusDto;
|
|
7985
7985
|
fromLocationId: string;
|
|
@@ -7991,7 +7991,7 @@ export declare class BookingUpdateDto implements IBookingUpdateDto {
|
|
|
7991
7991
|
}
|
|
7992
7992
|
export interface IBookingUpdateDto {
|
|
7993
7993
|
bookingId: string;
|
|
7994
|
-
|
|
7994
|
+
parcelKind: ParcelKindDto;
|
|
7995
7995
|
transportKind: TransportKindDto;
|
|
7996
7996
|
status: BookingStatusDto;
|
|
7997
7997
|
fromLocationId: string;
|
|
@@ -8014,7 +8014,7 @@ export interface IBookingTransportRequestDto {
|
|
|
8014
8014
|
toLocationId: string;
|
|
8015
8015
|
}
|
|
8016
8016
|
export declare class BookingItemRequestDto implements IBookingItemRequestDto {
|
|
8017
|
-
|
|
8017
|
+
parcelId?: string | null;
|
|
8018
8018
|
trackingId?: string | null;
|
|
8019
8019
|
comment?: string | null;
|
|
8020
8020
|
constructor(data?: IBookingItemRequestDto);
|
|
@@ -8023,12 +8023,12 @@ export declare class BookingItemRequestDto implements IBookingItemRequestDto {
|
|
|
8023
8023
|
toJSON(data?: any): any;
|
|
8024
8024
|
}
|
|
8025
8025
|
export interface IBookingItemRequestDto {
|
|
8026
|
-
|
|
8026
|
+
parcelId?: string | null;
|
|
8027
8027
|
trackingId?: string | null;
|
|
8028
8028
|
comment?: string | null;
|
|
8029
8029
|
}
|
|
8030
8030
|
export declare class BookingGeneralRequestDto implements IBookingGeneralRequestDto {
|
|
8031
|
-
|
|
8031
|
+
parcelKind: ParcelKindDto;
|
|
8032
8032
|
transportKind: TransportKindDto;
|
|
8033
8033
|
fromLocationId: string;
|
|
8034
8034
|
toLocationId: string;
|
|
@@ -8040,7 +8040,7 @@ export declare class BookingGeneralRequestDto implements IBookingGeneralRequestD
|
|
|
8040
8040
|
toJSON(data?: any): any;
|
|
8041
8041
|
}
|
|
8042
8042
|
export interface IBookingGeneralRequestDto {
|
|
8043
|
-
|
|
8043
|
+
parcelKind: ParcelKindDto;
|
|
8044
8044
|
transportKind: TransportKindDto;
|
|
8045
8045
|
fromLocationId: string;
|
|
8046
8046
|
toLocationId: string;
|
|
@@ -8110,14 +8110,14 @@ export interface ILocationSuggestionsDto {
|
|
|
8110
8110
|
locationKindFilter?: LocationKindDto[] | null;
|
|
8111
8111
|
}
|
|
8112
8112
|
export declare class LocationSuggestionsItemDto implements ILocationSuggestionsItemDto {
|
|
8113
|
-
|
|
8113
|
+
parcelId: string;
|
|
8114
8114
|
constructor(data?: ILocationSuggestionsItemDto);
|
|
8115
8115
|
init(_data?: any): void;
|
|
8116
8116
|
static fromJS(data: any): LocationSuggestionsItemDto;
|
|
8117
8117
|
toJSON(data?: any): any;
|
|
8118
8118
|
}
|
|
8119
8119
|
export interface ILocationSuggestionsItemDto {
|
|
8120
|
-
|
|
8120
|
+
parcelId: string;
|
|
8121
8121
|
}
|
|
8122
8122
|
export declare class MaterialDesciptionDto implements IMaterialDesciptionDto {
|
|
8123
8123
|
materialId: string;
|
|
@@ -8145,6 +8145,37 @@ export interface IMaterialUpdateDto {
|
|
|
8145
8145
|
materialName: string;
|
|
8146
8146
|
covered: MaterialCoveredDto;
|
|
8147
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
|
+
}
|
|
8148
8179
|
export declare class TrackingHistoryListDto implements ITrackingHistoryListDto {
|
|
8149
8180
|
results: TrackingHistoryDto[];
|
|
8150
8181
|
continuationToken?: string | null;
|
|
@@ -8160,8 +8191,8 @@ export interface ITrackingHistoryListDto {
|
|
|
8160
8191
|
export declare class TrackingHistoryDto implements ITrackingHistoryDto {
|
|
8161
8192
|
trackingId: string;
|
|
8162
8193
|
palletNumber: number;
|
|
8163
|
-
parcelKind:
|
|
8164
|
-
|
|
8194
|
+
parcelKind: ParcelKindDto;
|
|
8195
|
+
parcelId: string;
|
|
8165
8196
|
trackingEvents: TrackingEventDto[];
|
|
8166
8197
|
material?: string | null;
|
|
8167
8198
|
activeBooking?: boolean | null;
|
|
@@ -8173,8 +8204,8 @@ export declare class TrackingHistoryDto implements ITrackingHistoryDto {
|
|
|
8173
8204
|
export interface ITrackingHistoryDto {
|
|
8174
8205
|
trackingId: string;
|
|
8175
8206
|
palletNumber: number;
|
|
8176
|
-
parcelKind:
|
|
8177
|
-
|
|
8207
|
+
parcelKind: ParcelKindDto;
|
|
8208
|
+
parcelId: string;
|
|
8178
8209
|
trackingEvents: TrackingEventDto[];
|
|
8179
8210
|
material?: string | null;
|
|
8180
8211
|
activeBooking?: boolean | null;
|
|
@@ -8206,8 +8237,8 @@ export interface ITrackingEventDto {
|
|
|
8206
8237
|
export type TrackingStatusDto = "Manual" | "Pending" | "Cancelled" | "InProgress" | "Completed";
|
|
8207
8238
|
export declare class TrackingRequestListDto implements ITrackingRequestListDto {
|
|
8208
8239
|
pageSize?: number | null;
|
|
8209
|
-
|
|
8210
|
-
parcelKindFilter?:
|
|
8240
|
+
parcelIdFilter?: string[] | null;
|
|
8241
|
+
parcelKindFilter?: ParcelKindDto[] | null;
|
|
8211
8242
|
locationIdFilter?: string[] | null;
|
|
8212
8243
|
zoneIdFilter?: string[] | null;
|
|
8213
8244
|
materialFilter?: string[] | null;
|
|
@@ -8220,26 +8251,26 @@ export declare class TrackingRequestListDto implements ITrackingRequestListDto {
|
|
|
8220
8251
|
}
|
|
8221
8252
|
export interface ITrackingRequestListDto {
|
|
8222
8253
|
pageSize?: number | null;
|
|
8223
|
-
|
|
8224
|
-
parcelKindFilter?:
|
|
8254
|
+
parcelIdFilter?: string[] | null;
|
|
8255
|
+
parcelKindFilter?: ParcelKindDto[] | null;
|
|
8225
8256
|
locationIdFilter?: string[] | null;
|
|
8226
8257
|
zoneIdFilter?: string[] | null;
|
|
8227
8258
|
materialFilter?: string[] | null;
|
|
8228
8259
|
includeActiveBookings?: boolean;
|
|
8229
8260
|
continuationToken?: string | null;
|
|
8230
8261
|
}
|
|
8231
|
-
export declare class
|
|
8232
|
-
|
|
8262
|
+
export declare class TrackingParcelDto implements ITrackingParcelDto {
|
|
8263
|
+
parcelId: string;
|
|
8233
8264
|
part?: PartDto | null;
|
|
8234
8265
|
trackingHistory: TrackingHistoryDto[];
|
|
8235
8266
|
covered: MaterialCoveredDto;
|
|
8236
|
-
constructor(data?:
|
|
8267
|
+
constructor(data?: ITrackingParcelDto);
|
|
8237
8268
|
init(_data?: any): void;
|
|
8238
|
-
static fromJS(data: any):
|
|
8269
|
+
static fromJS(data: any): TrackingParcelDto;
|
|
8239
8270
|
toJSON(data?: any): any;
|
|
8240
8271
|
}
|
|
8241
|
-
export interface
|
|
8242
|
-
|
|
8272
|
+
export interface ITrackingParcelDto {
|
|
8273
|
+
parcelId: string;
|
|
8243
8274
|
part?: PartDto | null;
|
|
8244
8275
|
trackingHistory: TrackingHistoryDto[];
|
|
8245
8276
|
covered: MaterialCoveredDto;
|
|
@@ -8271,45 +8302,14 @@ export interface ITrackingUpdateDto {
|
|
|
8271
8302
|
comment?: string | null;
|
|
8272
8303
|
}
|
|
8273
8304
|
export declare class TrackingHistoryUpdateDto implements ITrackingHistoryUpdateDto {
|
|
8274
|
-
|
|
8305
|
+
parcelId: string;
|
|
8275
8306
|
constructor(data?: ITrackingHistoryUpdateDto);
|
|
8276
8307
|
init(_data?: any): void;
|
|
8277
8308
|
static fromJS(data: any): TrackingHistoryUpdateDto;
|
|
8278
8309
|
toJSON(data?: any): any;
|
|
8279
8310
|
}
|
|
8280
8311
|
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;
|
|
8312
|
+
parcelId: string;
|
|
8313
8313
|
}
|
|
8314
8314
|
export declare class WorkerDto implements IWorkerDto {
|
|
8315
8315
|
personnelNumber?: string | null;
|