@ignos/api-client 20251022.0.12945-alpha → 20251022.0.12954-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.
- package/lib/ignosportal-api.d.ts +28 -28
- package/lib/ignosportal-api.js +120 -44
- package/package.json +1 -1
- package/src/ignosportal-api.ts +139 -67
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -408,11 +408,11 @@ export declare class PulseClient extends AuthorizedApiBase implements IPulseClie
|
|
|
408
408
|
protected processUpdatePulseSettings(response: Response): Promise<PulseSettingsDto>;
|
|
409
409
|
}
|
|
410
410
|
export interface IUtilizationClient {
|
|
411
|
-
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
412
|
-
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
413
|
-
getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
414
|
-
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
415
|
-
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
411
|
+
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
|
|
412
|
+
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
|
|
413
|
+
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>;
|
|
414
|
+
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDatapointListDto>;
|
|
415
|
+
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
416
416
|
}
|
|
417
417
|
export declare class UtilizationClient extends AuthorizedApiBase implements IUtilizationClient {
|
|
418
418
|
private http;
|
|
@@ -421,15 +421,15 @@ export declare class UtilizationClient extends AuthorizedApiBase implements IUti
|
|
|
421
421
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
422
422
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
423
423
|
});
|
|
424
|
-
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
424
|
+
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
|
|
425
425
|
protected processGetCompanyUtilization(response: Response): Promise<CompanyUtilizationDto>;
|
|
426
|
-
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
426
|
+
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
|
|
427
427
|
protected processGetCrossCompanyUtilization(response: Response): Promise<CrossCompanyUtilizationDto>;
|
|
428
|
-
getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
428
|
+
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
429
|
protected processGetUtilizationDatapoints(response: Response): Promise<MachineUtilizationDatapointListDto>;
|
|
430
|
-
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
430
|
+
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDatapointListDto>;
|
|
431
431
|
protected processGetCompanyUtilizationDatapoints(response: Response): Promise<CompanyUtilizationDatapointListDto>;
|
|
432
|
-
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
432
|
+
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
433
433
|
protected processGetCrossCompanyUtilizationDatapoints(response: Response): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
434
434
|
}
|
|
435
435
|
export interface IMrbClient {
|
|
@@ -1692,6 +1692,7 @@ export interface IMoveBookingClient {
|
|
|
1692
1692
|
createBookingGeneral(bookingRequest: BookingGeneralRequestDto): Promise<BookingDto[]>;
|
|
1693
1693
|
preBookGeneral(req: PreBookingGeneralRequestDto): Promise<PreBookingResultItemDto[]>;
|
|
1694
1694
|
updateBookingStatus(bookingUpdate: BookingStatusUpdateDto): Promise<BookingDto>;
|
|
1695
|
+
exportBookings(includeTracking: boolean | undefined): Promise<DownloadDto>;
|
|
1695
1696
|
}
|
|
1696
1697
|
export declare class MoveBookingClient extends AuthorizedApiBase implements IMoveBookingClient {
|
|
1697
1698
|
private http;
|
|
@@ -1718,6 +1719,8 @@ export declare class MoveBookingClient extends AuthorizedApiBase implements IMov
|
|
|
1718
1719
|
protected processPreBookGeneral(response: Response): Promise<PreBookingResultItemDto[]>;
|
|
1719
1720
|
updateBookingStatus(bookingUpdate: BookingStatusUpdateDto): Promise<BookingDto>;
|
|
1720
1721
|
protected processUpdateBookingStatus(response: Response): Promise<BookingDto>;
|
|
1722
|
+
exportBookings(includeTracking: boolean | undefined): Promise<DownloadDto>;
|
|
1723
|
+
protected processExportBookings(response: Response): Promise<DownloadDto>;
|
|
1721
1724
|
}
|
|
1722
1725
|
export interface IMoveLocationsClient {
|
|
1723
1726
|
listLocations(): Promise<LocationZoneGroupDto[]>;
|
|
@@ -1810,6 +1813,7 @@ export interface IMoveTrackingClient {
|
|
|
1810
1813
|
createTrackingEvents(trackingUpdates: TrackingUpdateDto[]): Promise<TrackingHistoryDto[]>;
|
|
1811
1814
|
createTrackingHistory(trackingUpdates: TrackingHistoryUpdateDto[]): Promise<TrackingHistoryDto[]>;
|
|
1812
1815
|
deleteTrackingHistory(trackingId: string): Promise<void>;
|
|
1816
|
+
exportParcels(): Promise<DownloadDto>;
|
|
1813
1817
|
}
|
|
1814
1818
|
export declare class MoveTrackingClient extends AuthorizedApiBase implements IMoveTrackingClient {
|
|
1815
1819
|
private http;
|
|
@@ -1834,6 +1838,8 @@ export declare class MoveTrackingClient extends AuthorizedApiBase implements IMo
|
|
|
1834
1838
|
protected processCreateTrackingHistory(response: Response): Promise<TrackingHistoryDto[]>;
|
|
1835
1839
|
deleteTrackingHistory(trackingId: string): Promise<void>;
|
|
1836
1840
|
protected processDeleteTrackingHistory(response: Response): Promise<void>;
|
|
1841
|
+
exportParcels(): Promise<DownloadDto>;
|
|
1842
|
+
protected processExportParcels(response: Response): Promise<DownloadDto>;
|
|
1837
1843
|
}
|
|
1838
1844
|
export interface IParcelCategoryClient {
|
|
1839
1845
|
getSettings(): Promise<ParcelCategorySettingsDto>;
|
|
@@ -5215,7 +5221,6 @@ export declare class MeasuringToolDto implements IMeasuringToolDto {
|
|
|
5215
5221
|
unit?: string | null;
|
|
5216
5222
|
min?: number | null;
|
|
5217
5223
|
max?: number | null;
|
|
5218
|
-
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
5219
5224
|
lastCalibrationDate?: Date | null;
|
|
5220
5225
|
nextCalibrationDate?: Date | null;
|
|
5221
5226
|
calibrationInterval?: number | null;
|
|
@@ -5243,7 +5248,6 @@ export interface IMeasuringToolDto {
|
|
|
5243
5248
|
unit?: string | null;
|
|
5244
5249
|
min?: number | null;
|
|
5245
5250
|
max?: number | null;
|
|
5246
|
-
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
5247
5251
|
lastCalibrationDate?: Date | null;
|
|
5248
5252
|
nextCalibrationDate?: Date | null;
|
|
5249
5253
|
calibrationInterval?: number | null;
|
|
@@ -5255,20 +5259,6 @@ export interface IMeasuringToolDto {
|
|
|
5255
5259
|
usageSinceLastCalibration?: number | null;
|
|
5256
5260
|
calibrationStatus: CalibrationStatusDto;
|
|
5257
5261
|
}
|
|
5258
|
-
export declare class MeasuringToolLastUsedByDto implements IMeasuringToolLastUsedByDto {
|
|
5259
|
-
objectId?: string;
|
|
5260
|
-
userId?: string;
|
|
5261
|
-
displayName?: string | null;
|
|
5262
|
-
constructor(data?: IMeasuringToolLastUsedByDto);
|
|
5263
|
-
init(_data?: any): void;
|
|
5264
|
-
static fromJS(data: any): MeasuringToolLastUsedByDto;
|
|
5265
|
-
toJSON(data?: any): any;
|
|
5266
|
-
}
|
|
5267
|
-
export interface IMeasuringToolLastUsedByDto {
|
|
5268
|
-
objectId?: string;
|
|
5269
|
-
userId?: string;
|
|
5270
|
-
displayName?: string | null;
|
|
5271
|
-
}
|
|
5272
5262
|
export type CalibrationStatusDto = "Uncalibrated" | "Deprecated" | "Expired" | "SoonDue" | "Valid";
|
|
5273
5263
|
export declare class MeasuringToolDetailDto implements IMeasuringToolDetailDto {
|
|
5274
5264
|
id: string;
|
|
@@ -5281,7 +5271,6 @@ export declare class MeasuringToolDetailDto implements IMeasuringToolDetailDto {
|
|
|
5281
5271
|
defaultLocation?: string | null;
|
|
5282
5272
|
min?: number | null;
|
|
5283
5273
|
max?: number | null;
|
|
5284
|
-
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
5285
5274
|
calibrationInterval?: number | null;
|
|
5286
5275
|
serialNumber?: string | null;
|
|
5287
5276
|
precision?: string | null;
|
|
@@ -5308,7 +5297,6 @@ export interface IMeasuringToolDetailDto {
|
|
|
5308
5297
|
defaultLocation?: string | null;
|
|
5309
5298
|
min?: number | null;
|
|
5310
5299
|
max?: number | null;
|
|
5311
|
-
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
5312
5300
|
calibrationInterval?: number | null;
|
|
5313
5301
|
serialNumber?: string | null;
|
|
5314
5302
|
precision?: string | null;
|
|
@@ -9710,6 +9698,8 @@ export declare class BookingParcelDto implements IBookingParcelDto {
|
|
|
9710
9698
|
parcelKind: ParcelKindDto;
|
|
9711
9699
|
partName?: string | null;
|
|
9712
9700
|
partNumber?: string | null;
|
|
9701
|
+
projectId?: string | null;
|
|
9702
|
+
projectName?: string | null;
|
|
9713
9703
|
quantity?: number | null;
|
|
9714
9704
|
material?: string | null;
|
|
9715
9705
|
materialOperation?: number | null;
|
|
@@ -9730,6 +9720,8 @@ export interface IBookingParcelDto {
|
|
|
9730
9720
|
parcelKind: ParcelKindDto;
|
|
9731
9721
|
partName?: string | null;
|
|
9732
9722
|
partNumber?: string | null;
|
|
9723
|
+
projectId?: string | null;
|
|
9724
|
+
projectName?: string | null;
|
|
9733
9725
|
quantity?: number | null;
|
|
9734
9726
|
material?: string | null;
|
|
9735
9727
|
materialOperation?: number | null;
|
|
@@ -10304,6 +10296,8 @@ export declare class TrackingParcelDto implements ITrackingParcelDto {
|
|
|
10304
10296
|
parcelKind: ParcelKindDto;
|
|
10305
10297
|
partName?: string | null;
|
|
10306
10298
|
partNumber?: string | null;
|
|
10299
|
+
projectId?: string | null;
|
|
10300
|
+
projectName?: string | null;
|
|
10307
10301
|
quantity?: number | null;
|
|
10308
10302
|
material?: string | null;
|
|
10309
10303
|
covered?: MaterialCoveredDto | null;
|
|
@@ -10319,6 +10313,8 @@ export interface ITrackingParcelDto {
|
|
|
10319
10313
|
parcelKind: ParcelKindDto;
|
|
10320
10314
|
partName?: string | null;
|
|
10321
10315
|
partNumber?: string | null;
|
|
10316
|
+
projectId?: string | null;
|
|
10317
|
+
projectName?: string | null;
|
|
10322
10318
|
quantity?: number | null;
|
|
10323
10319
|
material?: string | null;
|
|
10324
10320
|
covered?: MaterialCoveredDto | null;
|
|
@@ -10421,6 +10417,8 @@ export declare class TrackingHistoryFlattenedDto implements ITrackingHistoryFlat
|
|
|
10421
10417
|
parcelKind: ParcelKindDto;
|
|
10422
10418
|
partName?: string | null;
|
|
10423
10419
|
partNumber?: string | null;
|
|
10420
|
+
projectId?: string | null;
|
|
10421
|
+
projectName?: string | null;
|
|
10424
10422
|
quantity?: number | null;
|
|
10425
10423
|
material?: string | null;
|
|
10426
10424
|
covered?: MaterialCoveredDto | null;
|
|
@@ -10444,6 +10442,8 @@ export interface ITrackingHistoryFlattenedDto {
|
|
|
10444
10442
|
parcelKind: ParcelKindDto;
|
|
10445
10443
|
partName?: string | null;
|
|
10446
10444
|
partNumber?: string | null;
|
|
10445
|
+
projectId?: string | null;
|
|
10446
|
+
projectName?: string | null;
|
|
10447
10447
|
quantity?: number | null;
|
|
10448
10448
|
material?: string | null;
|
|
10449
10449
|
covered?: MaterialCoveredDto | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -2416,16 +2416,20 @@ export class UtilizationClient extends AuthorizedApiBase {
|
|
|
2416
2416
|
this.http = http ? http : window;
|
|
2417
2417
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
2418
2418
|
}
|
|
2419
|
-
getCompanyUtilization(utilizationType, startTime, endTime) {
|
|
2419
|
+
getCompanyUtilization(utilizationType, startTime, endTime, ianaTimeZone) {
|
|
2420
2420
|
let url_ = this.baseUrl + "/utilization?";
|
|
2421
2421
|
if (utilizationType === null)
|
|
2422
2422
|
throw new globalThis.Error("The parameter 'utilizationType' cannot be null.");
|
|
2423
2423
|
else if (utilizationType !== undefined)
|
|
2424
2424
|
url_ += "utilizationType=" + encodeURIComponent("" + utilizationType) + "&";
|
|
2425
|
-
if (startTime
|
|
2425
|
+
if (startTime === null)
|
|
2426
|
+
throw new globalThis.Error("The parameter 'startTime' cannot be null.");
|
|
2427
|
+
else if (startTime !== undefined)
|
|
2426
2428
|
url_ += "startTime=" + encodeURIComponent(startTime ? "" + startTime.toISOString() : "") + "&";
|
|
2427
2429
|
if (endTime !== undefined && endTime !== null)
|
|
2428
2430
|
url_ += "endTime=" + encodeURIComponent(endTime ? "" + endTime.toISOString() : "") + "&";
|
|
2431
|
+
if (ianaTimeZone !== undefined && ianaTimeZone !== null)
|
|
2432
|
+
url_ += "ianaTimeZone=" + encodeURIComponent("" + ianaTimeZone) + "&";
|
|
2429
2433
|
url_ = url_.replace(/[?&]$/, "");
|
|
2430
2434
|
let options_ = {
|
|
2431
2435
|
method: "GET",
|
|
@@ -2461,16 +2465,20 @@ export class UtilizationClient extends AuthorizedApiBase {
|
|
|
2461
2465
|
}
|
|
2462
2466
|
return Promise.resolve(null);
|
|
2463
2467
|
}
|
|
2464
|
-
getCrossCompanyUtilization(utilizationType, startTime, endTime) {
|
|
2468
|
+
getCrossCompanyUtilization(utilizationType, startTime, endTime, ianaTimeZone) {
|
|
2465
2469
|
let url_ = this.baseUrl + "/utilization/cross-company?";
|
|
2466
2470
|
if (utilizationType === null)
|
|
2467
2471
|
throw new globalThis.Error("The parameter 'utilizationType' cannot be null.");
|
|
2468
2472
|
else if (utilizationType !== undefined)
|
|
2469
2473
|
url_ += "utilizationType=" + encodeURIComponent("" + utilizationType) + "&";
|
|
2470
|
-
if (startTime
|
|
2474
|
+
if (startTime === null)
|
|
2475
|
+
throw new globalThis.Error("The parameter 'startTime' cannot be null.");
|
|
2476
|
+
else if (startTime !== undefined)
|
|
2471
2477
|
url_ += "startTime=" + encodeURIComponent(startTime ? "" + startTime.toISOString() : "") + "&";
|
|
2472
2478
|
if (endTime !== undefined && endTime !== null)
|
|
2473
2479
|
url_ += "endTime=" + encodeURIComponent(endTime ? "" + endTime.toISOString() : "") + "&";
|
|
2480
|
+
if (ianaTimeZone !== undefined && ianaTimeZone !== null)
|
|
2481
|
+
url_ += "ianaTimeZone=" + encodeURIComponent("" + ianaTimeZone) + "&";
|
|
2474
2482
|
url_ = url_.replace(/[?&]$/, "");
|
|
2475
2483
|
let options_ = {
|
|
2476
2484
|
method: "GET",
|
|
@@ -2506,16 +2514,20 @@ export class UtilizationClient extends AuthorizedApiBase {
|
|
|
2506
2514
|
}
|
|
2507
2515
|
return Promise.resolve(null);
|
|
2508
2516
|
}
|
|
2509
|
-
getUtilizationDatapoints(utilizationType, startTime, endTime, assetId, assetExternalId) {
|
|
2517
|
+
getUtilizationDatapoints(utilizationType, startTime, endTime, ianaTimeZone, assetId, assetExternalId) {
|
|
2510
2518
|
let url_ = this.baseUrl + "/utilization/datapoints?";
|
|
2511
2519
|
if (utilizationType === null)
|
|
2512
2520
|
throw new globalThis.Error("The parameter 'utilizationType' cannot be null.");
|
|
2513
2521
|
else if (utilizationType !== undefined)
|
|
2514
2522
|
url_ += "utilizationType=" + encodeURIComponent("" + utilizationType) + "&";
|
|
2515
|
-
if (startTime
|
|
2523
|
+
if (startTime === null)
|
|
2524
|
+
throw new globalThis.Error("The parameter 'startTime' cannot be null.");
|
|
2525
|
+
else if (startTime !== undefined)
|
|
2516
2526
|
url_ += "startTime=" + encodeURIComponent(startTime ? "" + startTime.toISOString() : "") + "&";
|
|
2517
2527
|
if (endTime !== undefined && endTime !== null)
|
|
2518
2528
|
url_ += "endTime=" + encodeURIComponent(endTime ? "" + endTime.toISOString() : "") + "&";
|
|
2529
|
+
if (ianaTimeZone !== undefined && ianaTimeZone !== null)
|
|
2530
|
+
url_ += "ianaTimeZone=" + encodeURIComponent("" + ianaTimeZone) + "&";
|
|
2519
2531
|
if (assetId !== undefined && assetId !== null)
|
|
2520
2532
|
url_ += "assetId=" + encodeURIComponent("" + assetId) + "&";
|
|
2521
2533
|
if (assetExternalId !== undefined && assetExternalId !== null)
|
|
@@ -2555,16 +2567,20 @@ export class UtilizationClient extends AuthorizedApiBase {
|
|
|
2555
2567
|
}
|
|
2556
2568
|
return Promise.resolve(null);
|
|
2557
2569
|
}
|
|
2558
|
-
getCompanyUtilizationDatapoints(utilizationType, startTime, endTime) {
|
|
2570
|
+
getCompanyUtilizationDatapoints(utilizationType, startTime, endTime, ianaTimeZone) {
|
|
2559
2571
|
let url_ = this.baseUrl + "/utilization/datapoints/company?";
|
|
2560
2572
|
if (utilizationType === null)
|
|
2561
2573
|
throw new globalThis.Error("The parameter 'utilizationType' cannot be null.");
|
|
2562
2574
|
else if (utilizationType !== undefined)
|
|
2563
2575
|
url_ += "utilizationType=" + encodeURIComponent("" + utilizationType) + "&";
|
|
2564
|
-
if (startTime
|
|
2576
|
+
if (startTime === null)
|
|
2577
|
+
throw new globalThis.Error("The parameter 'startTime' cannot be null.");
|
|
2578
|
+
else if (startTime !== undefined)
|
|
2565
2579
|
url_ += "startTime=" + encodeURIComponent(startTime ? "" + startTime.toISOString() : "") + "&";
|
|
2566
2580
|
if (endTime !== undefined && endTime !== null)
|
|
2567
2581
|
url_ += "endTime=" + encodeURIComponent(endTime ? "" + endTime.toISOString() : "") + "&";
|
|
2582
|
+
if (ianaTimeZone !== undefined && ianaTimeZone !== null)
|
|
2583
|
+
url_ += "ianaTimeZone=" + encodeURIComponent("" + ianaTimeZone) + "&";
|
|
2568
2584
|
url_ = url_.replace(/[?&]$/, "");
|
|
2569
2585
|
let options_ = {
|
|
2570
2586
|
method: "GET",
|
|
@@ -2600,16 +2616,20 @@ export class UtilizationClient extends AuthorizedApiBase {
|
|
|
2600
2616
|
}
|
|
2601
2617
|
return Promise.resolve(null);
|
|
2602
2618
|
}
|
|
2603
|
-
getCrossCompanyUtilizationDatapoints(utilizationType, startTime, endTime) {
|
|
2619
|
+
getCrossCompanyUtilizationDatapoints(utilizationType, startTime, endTime, ianaTimeZone) {
|
|
2604
2620
|
let url_ = this.baseUrl + "/utilization/datapoints/cross-company?";
|
|
2605
2621
|
if (utilizationType === null)
|
|
2606
2622
|
throw new globalThis.Error("The parameter 'utilizationType' cannot be null.");
|
|
2607
2623
|
else if (utilizationType !== undefined)
|
|
2608
2624
|
url_ += "utilizationType=" + encodeURIComponent("" + utilizationType) + "&";
|
|
2609
|
-
if (startTime
|
|
2625
|
+
if (startTime === null)
|
|
2626
|
+
throw new globalThis.Error("The parameter 'startTime' cannot be null.");
|
|
2627
|
+
else if (startTime !== undefined)
|
|
2610
2628
|
url_ += "startTime=" + encodeURIComponent(startTime ? "" + startTime.toISOString() : "") + "&";
|
|
2611
2629
|
if (endTime !== undefined && endTime !== null)
|
|
2612
2630
|
url_ += "endTime=" + encodeURIComponent(endTime ? "" + endTime.toISOString() : "") + "&";
|
|
2631
|
+
if (ianaTimeZone !== undefined && ianaTimeZone !== null)
|
|
2632
|
+
url_ += "ianaTimeZone=" + encodeURIComponent("" + ianaTimeZone) + "&";
|
|
2613
2633
|
url_ = url_.replace(/[?&]$/, "");
|
|
2614
2634
|
let options_ = {
|
|
2615
2635
|
method: "GET",
|
|
@@ -14603,6 +14623,47 @@ export class MoveBookingClient extends AuthorizedApiBase {
|
|
|
14603
14623
|
}
|
|
14604
14624
|
return Promise.resolve(null);
|
|
14605
14625
|
}
|
|
14626
|
+
exportBookings(includeTracking) {
|
|
14627
|
+
let url_ = this.baseUrl + "/move/booking/export?";
|
|
14628
|
+
if (includeTracking === null)
|
|
14629
|
+
throw new globalThis.Error("The parameter 'includeTracking' cannot be null.");
|
|
14630
|
+
else if (includeTracking !== undefined)
|
|
14631
|
+
url_ += "includeTracking=" + encodeURIComponent("" + includeTracking) + "&";
|
|
14632
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
14633
|
+
let options_ = {
|
|
14634
|
+
method: "POST",
|
|
14635
|
+
headers: {
|
|
14636
|
+
"Accept": "application/json"
|
|
14637
|
+
}
|
|
14638
|
+
};
|
|
14639
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
14640
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
14641
|
+
}).then((_response) => {
|
|
14642
|
+
return this.processExportBookings(_response);
|
|
14643
|
+
});
|
|
14644
|
+
}
|
|
14645
|
+
processExportBookings(response) {
|
|
14646
|
+
const status = response.status;
|
|
14647
|
+
let _headers = {};
|
|
14648
|
+
if (response.headers && response.headers.forEach) {
|
|
14649
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
14650
|
+
}
|
|
14651
|
+
;
|
|
14652
|
+
if (status === 200) {
|
|
14653
|
+
return response.text().then((_responseText) => {
|
|
14654
|
+
let result200 = null;
|
|
14655
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
14656
|
+
result200 = DownloadDto.fromJS(resultData200);
|
|
14657
|
+
return result200;
|
|
14658
|
+
});
|
|
14659
|
+
}
|
|
14660
|
+
else if (status !== 200 && status !== 204) {
|
|
14661
|
+
return response.text().then((_responseText) => {
|
|
14662
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
14663
|
+
});
|
|
14664
|
+
}
|
|
14665
|
+
return Promise.resolve(null);
|
|
14666
|
+
}
|
|
14606
14667
|
}
|
|
14607
14668
|
export class MoveLocationsClient extends AuthorizedApiBase {
|
|
14608
14669
|
constructor(configuration, baseUrl, http) {
|
|
@@ -15559,6 +15620,43 @@ export class MoveTrackingClient extends AuthorizedApiBase {
|
|
|
15559
15620
|
}
|
|
15560
15621
|
return Promise.resolve(null);
|
|
15561
15622
|
}
|
|
15623
|
+
exportParcels() {
|
|
15624
|
+
let url_ = this.baseUrl + "/move/tracking/export";
|
|
15625
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
15626
|
+
let options_ = {
|
|
15627
|
+
method: "POST",
|
|
15628
|
+
headers: {
|
|
15629
|
+
"Accept": "application/json"
|
|
15630
|
+
}
|
|
15631
|
+
};
|
|
15632
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
15633
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
15634
|
+
}).then((_response) => {
|
|
15635
|
+
return this.processExportParcels(_response);
|
|
15636
|
+
});
|
|
15637
|
+
}
|
|
15638
|
+
processExportParcels(response) {
|
|
15639
|
+
const status = response.status;
|
|
15640
|
+
let _headers = {};
|
|
15641
|
+
if (response.headers && response.headers.forEach) {
|
|
15642
|
+
response.headers.forEach((v, k) => _headers[k] = v);
|
|
15643
|
+
}
|
|
15644
|
+
;
|
|
15645
|
+
if (status === 200) {
|
|
15646
|
+
return response.text().then((_responseText) => {
|
|
15647
|
+
let result200 = null;
|
|
15648
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
15649
|
+
result200 = DownloadDto.fromJS(resultData200);
|
|
15650
|
+
return result200;
|
|
15651
|
+
});
|
|
15652
|
+
}
|
|
15653
|
+
else if (status !== 200 && status !== 204) {
|
|
15654
|
+
return response.text().then((_responseText) => {
|
|
15655
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
15656
|
+
});
|
|
15657
|
+
}
|
|
15658
|
+
return Promise.resolve(null);
|
|
15659
|
+
}
|
|
15562
15660
|
}
|
|
15563
15661
|
export class ParcelCategoryClient extends AuthorizedApiBase {
|
|
15564
15662
|
constructor(configuration, baseUrl, http) {
|
|
@@ -28662,7 +28760,6 @@ export class MeasuringToolDto {
|
|
|
28662
28760
|
this.unit = _data["unit"];
|
|
28663
28761
|
this.min = _data["min"];
|
|
28664
28762
|
this.max = _data["max"];
|
|
28665
|
-
this.lastUsedBy = _data["lastUsedBy"] ? MeasuringToolLastUsedByDto.fromJS(_data["lastUsedBy"]) : undefined;
|
|
28666
28763
|
this.lastCalibrationDate = _data["lastCalibrationDate"] ? new Date(_data["lastCalibrationDate"].toString()) : undefined;
|
|
28667
28764
|
this.nextCalibrationDate = _data["nextCalibrationDate"] ? new Date(_data["nextCalibrationDate"].toString()) : undefined;
|
|
28668
28765
|
this.calibrationInterval = _data["calibrationInterval"];
|
|
@@ -28694,7 +28791,6 @@ export class MeasuringToolDto {
|
|
|
28694
28791
|
data["unit"] = this.unit;
|
|
28695
28792
|
data["min"] = this.min;
|
|
28696
28793
|
data["max"] = this.max;
|
|
28697
|
-
data["lastUsedBy"] = this.lastUsedBy ? this.lastUsedBy.toJSON() : undefined;
|
|
28698
28794
|
data["lastCalibrationDate"] = this.lastCalibrationDate ? this.lastCalibrationDate.toISOString() : undefined;
|
|
28699
28795
|
data["nextCalibrationDate"] = this.nextCalibrationDate ? this.nextCalibrationDate.toISOString() : undefined;
|
|
28700
28796
|
data["calibrationInterval"] = this.calibrationInterval;
|
|
@@ -28708,36 +28804,6 @@ export class MeasuringToolDto {
|
|
|
28708
28804
|
return data;
|
|
28709
28805
|
}
|
|
28710
28806
|
}
|
|
28711
|
-
export class MeasuringToolLastUsedByDto {
|
|
28712
|
-
constructor(data) {
|
|
28713
|
-
if (data) {
|
|
28714
|
-
for (var property in data) {
|
|
28715
|
-
if (data.hasOwnProperty(property))
|
|
28716
|
-
this[property] = data[property];
|
|
28717
|
-
}
|
|
28718
|
-
}
|
|
28719
|
-
}
|
|
28720
|
-
init(_data) {
|
|
28721
|
-
if (_data) {
|
|
28722
|
-
this.objectId = _data["objectId"];
|
|
28723
|
-
this.userId = _data["userId"];
|
|
28724
|
-
this.displayName = _data["displayName"];
|
|
28725
|
-
}
|
|
28726
|
-
}
|
|
28727
|
-
static fromJS(data) {
|
|
28728
|
-
data = typeof data === 'object' ? data : {};
|
|
28729
|
-
let result = new MeasuringToolLastUsedByDto();
|
|
28730
|
-
result.init(data);
|
|
28731
|
-
return result;
|
|
28732
|
-
}
|
|
28733
|
-
toJSON(data) {
|
|
28734
|
-
data = typeof data === 'object' ? data : {};
|
|
28735
|
-
data["objectId"] = this.objectId;
|
|
28736
|
-
data["userId"] = this.userId;
|
|
28737
|
-
data["displayName"] = this.displayName;
|
|
28738
|
-
return data;
|
|
28739
|
-
}
|
|
28740
|
-
}
|
|
28741
28807
|
export class MeasuringToolDetailDto {
|
|
28742
28808
|
constructor(data) {
|
|
28743
28809
|
if (data) {
|
|
@@ -28763,7 +28829,6 @@ export class MeasuringToolDetailDto {
|
|
|
28763
28829
|
this.defaultLocation = _data["defaultLocation"];
|
|
28764
28830
|
this.min = _data["min"];
|
|
28765
28831
|
this.max = _data["max"];
|
|
28766
|
-
this.lastUsedBy = _data["lastUsedBy"] ? MeasuringToolLastUsedByDto.fromJS(_data["lastUsedBy"]) : undefined;
|
|
28767
28832
|
this.calibrationInterval = _data["calibrationInterval"];
|
|
28768
28833
|
this.serialNumber = _data["serialNumber"];
|
|
28769
28834
|
this.precision = _data["precision"];
|
|
@@ -28794,7 +28859,6 @@ export class MeasuringToolDetailDto {
|
|
|
28794
28859
|
data["defaultLocation"] = this.defaultLocation;
|
|
28795
28860
|
data["min"] = this.min;
|
|
28796
28861
|
data["max"] = this.max;
|
|
28797
|
-
data["lastUsedBy"] = this.lastUsedBy ? this.lastUsedBy.toJSON() : undefined;
|
|
28798
28862
|
data["calibrationInterval"] = this.calibrationInterval;
|
|
28799
28863
|
data["serialNumber"] = this.serialNumber;
|
|
28800
28864
|
data["precision"] = this.precision;
|
|
@@ -37556,6 +37620,8 @@ export class BookingParcelDto {
|
|
|
37556
37620
|
this.parcelKind = _data["parcelKind"];
|
|
37557
37621
|
this.partName = _data["partName"];
|
|
37558
37622
|
this.partNumber = _data["partNumber"];
|
|
37623
|
+
this.projectId = _data["projectId"];
|
|
37624
|
+
this.projectName = _data["projectName"];
|
|
37559
37625
|
this.quantity = _data["quantity"];
|
|
37560
37626
|
this.material = _data["material"];
|
|
37561
37627
|
this.materialOperation = _data["materialOperation"];
|
|
@@ -37580,6 +37646,8 @@ export class BookingParcelDto {
|
|
|
37580
37646
|
data["parcelKind"] = this.parcelKind;
|
|
37581
37647
|
data["partName"] = this.partName;
|
|
37582
37648
|
data["partNumber"] = this.partNumber;
|
|
37649
|
+
data["projectId"] = this.projectId;
|
|
37650
|
+
data["projectName"] = this.projectName;
|
|
37583
37651
|
data["quantity"] = this.quantity;
|
|
37584
37652
|
data["material"] = this.material;
|
|
37585
37653
|
data["materialOperation"] = this.materialOperation;
|
|
@@ -39009,6 +39077,8 @@ export class TrackingParcelDto {
|
|
|
39009
39077
|
this.parcelKind = _data["parcelKind"];
|
|
39010
39078
|
this.partName = _data["partName"];
|
|
39011
39079
|
this.partNumber = _data["partNumber"];
|
|
39080
|
+
this.projectId = _data["projectId"];
|
|
39081
|
+
this.projectName = _data["projectName"];
|
|
39012
39082
|
this.quantity = _data["quantity"];
|
|
39013
39083
|
this.material = _data["material"];
|
|
39014
39084
|
this.covered = _data["covered"];
|
|
@@ -39036,6 +39106,8 @@ export class TrackingParcelDto {
|
|
|
39036
39106
|
data["parcelKind"] = this.parcelKind;
|
|
39037
39107
|
data["partName"] = this.partName;
|
|
39038
39108
|
data["partNumber"] = this.partNumber;
|
|
39109
|
+
data["projectId"] = this.projectId;
|
|
39110
|
+
data["projectName"] = this.projectName;
|
|
39039
39111
|
data["quantity"] = this.quantity;
|
|
39040
39112
|
data["material"] = this.material;
|
|
39041
39113
|
data["covered"] = this.covered;
|
|
@@ -39286,6 +39358,8 @@ export class TrackingHistoryFlattenedDto {
|
|
|
39286
39358
|
this.parcelKind = _data["parcelKind"];
|
|
39287
39359
|
this.partName = _data["partName"];
|
|
39288
39360
|
this.partNumber = _data["partNumber"];
|
|
39361
|
+
this.projectId = _data["projectId"];
|
|
39362
|
+
this.projectName = _data["projectName"];
|
|
39289
39363
|
this.quantity = _data["quantity"];
|
|
39290
39364
|
this.material = _data["material"];
|
|
39291
39365
|
this.covered = _data["covered"];
|
|
@@ -39317,6 +39391,8 @@ export class TrackingHistoryFlattenedDto {
|
|
|
39317
39391
|
data["parcelKind"] = this.parcelKind;
|
|
39318
39392
|
data["partName"] = this.partName;
|
|
39319
39393
|
data["partNumber"] = this.partNumber;
|
|
39394
|
+
data["projectId"] = this.projectId;
|
|
39395
|
+
data["projectName"] = this.projectName;
|
|
39320
39396
|
data["quantity"] = this.quantity;
|
|
39321
39397
|
data["material"] = this.material;
|
|
39322
39398
|
data["covered"] = this.covered;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -2644,15 +2644,15 @@ export class PulseClient extends AuthorizedApiBase implements IPulseClient {
|
|
|
2644
2644
|
|
|
2645
2645
|
export interface IUtilizationClient {
|
|
2646
2646
|
|
|
2647
|
-
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
2647
|
+
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
|
|
2648
2648
|
|
|
2649
|
-
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
2649
|
+
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
|
|
2650
2650
|
|
|
2651
|
-
getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
2651
|
+
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>;
|
|
2652
2652
|
|
|
2653
|
-
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
2653
|
+
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDatapointListDto>;
|
|
2654
2654
|
|
|
2655
|
-
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
2655
|
+
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
2656
2656
|
}
|
|
2657
2657
|
|
|
2658
2658
|
export class UtilizationClient extends AuthorizedApiBase implements IUtilizationClient {
|
|
@@ -2666,16 +2666,20 @@ export class UtilizationClient extends AuthorizedApiBase implements IUtilization
|
|
|
2666
2666
|
this.baseUrl = baseUrl ?? "";
|
|
2667
2667
|
}
|
|
2668
2668
|
|
|
2669
|
-
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
2669
|
+
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto> {
|
|
2670
2670
|
let url_ = this.baseUrl + "/utilization?";
|
|
2671
2671
|
if (utilizationType === null)
|
|
2672
2672
|
throw new globalThis.Error("The parameter 'utilizationType' cannot be null.");
|
|
2673
2673
|
else if (utilizationType !== undefined)
|
|
2674
2674
|
url_ += "utilizationType=" + encodeURIComponent("" + utilizationType) + "&";
|
|
2675
|
-
if (startTime
|
|
2675
|
+
if (startTime === null)
|
|
2676
|
+
throw new globalThis.Error("The parameter 'startTime' cannot be null.");
|
|
2677
|
+
else if (startTime !== undefined)
|
|
2676
2678
|
url_ += "startTime=" + encodeURIComponent(startTime ? "" + startTime.toISOString() : "") + "&";
|
|
2677
2679
|
if (endTime !== undefined && endTime !== null)
|
|
2678
2680
|
url_ += "endTime=" + encodeURIComponent(endTime ? "" + endTime.toISOString() : "") + "&";
|
|
2681
|
+
if (ianaTimeZone !== undefined && ianaTimeZone !== null)
|
|
2682
|
+
url_ += "ianaTimeZone=" + encodeURIComponent("" + ianaTimeZone) + "&";
|
|
2679
2683
|
url_ = url_.replace(/[?&]$/, "");
|
|
2680
2684
|
|
|
2681
2685
|
let options_: RequestInit = {
|
|
@@ -2710,16 +2714,20 @@ export class UtilizationClient extends AuthorizedApiBase implements IUtilization
|
|
|
2710
2714
|
return Promise.resolve<CompanyUtilizationDto>(null as any);
|
|
2711
2715
|
}
|
|
2712
2716
|
|
|
2713
|
-
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
2717
|
+
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto> {
|
|
2714
2718
|
let url_ = this.baseUrl + "/utilization/cross-company?";
|
|
2715
2719
|
if (utilizationType === null)
|
|
2716
2720
|
throw new globalThis.Error("The parameter 'utilizationType' cannot be null.");
|
|
2717
2721
|
else if (utilizationType !== undefined)
|
|
2718
2722
|
url_ += "utilizationType=" + encodeURIComponent("" + utilizationType) + "&";
|
|
2719
|
-
if (startTime
|
|
2723
|
+
if (startTime === null)
|
|
2724
|
+
throw new globalThis.Error("The parameter 'startTime' cannot be null.");
|
|
2725
|
+
else if (startTime !== undefined)
|
|
2720
2726
|
url_ += "startTime=" + encodeURIComponent(startTime ? "" + startTime.toISOString() : "") + "&";
|
|
2721
2727
|
if (endTime !== undefined && endTime !== null)
|
|
2722
2728
|
url_ += "endTime=" + encodeURIComponent(endTime ? "" + endTime.toISOString() : "") + "&";
|
|
2729
|
+
if (ianaTimeZone !== undefined && ianaTimeZone !== null)
|
|
2730
|
+
url_ += "ianaTimeZone=" + encodeURIComponent("" + ianaTimeZone) + "&";
|
|
2723
2731
|
url_ = url_.replace(/[?&]$/, "");
|
|
2724
2732
|
|
|
2725
2733
|
let options_: RequestInit = {
|
|
@@ -2754,16 +2762,20 @@ export class UtilizationClient extends AuthorizedApiBase implements IUtilization
|
|
|
2754
2762
|
return Promise.resolve<CrossCompanyUtilizationDto>(null as any);
|
|
2755
2763
|
}
|
|
2756
2764
|
|
|
2757
|
-
getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
2765
|
+
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> {
|
|
2758
2766
|
let url_ = this.baseUrl + "/utilization/datapoints?";
|
|
2759
2767
|
if (utilizationType === null)
|
|
2760
2768
|
throw new globalThis.Error("The parameter 'utilizationType' cannot be null.");
|
|
2761
2769
|
else if (utilizationType !== undefined)
|
|
2762
2770
|
url_ += "utilizationType=" + encodeURIComponent("" + utilizationType) + "&";
|
|
2763
|
-
if (startTime
|
|
2771
|
+
if (startTime === null)
|
|
2772
|
+
throw new globalThis.Error("The parameter 'startTime' cannot be null.");
|
|
2773
|
+
else if (startTime !== undefined)
|
|
2764
2774
|
url_ += "startTime=" + encodeURIComponent(startTime ? "" + startTime.toISOString() : "") + "&";
|
|
2765
2775
|
if (endTime !== undefined && endTime !== null)
|
|
2766
2776
|
url_ += "endTime=" + encodeURIComponent(endTime ? "" + endTime.toISOString() : "") + "&";
|
|
2777
|
+
if (ianaTimeZone !== undefined && ianaTimeZone !== null)
|
|
2778
|
+
url_ += "ianaTimeZone=" + encodeURIComponent("" + ianaTimeZone) + "&";
|
|
2767
2779
|
if (assetId !== undefined && assetId !== null)
|
|
2768
2780
|
url_ += "assetId=" + encodeURIComponent("" + assetId) + "&";
|
|
2769
2781
|
if (assetExternalId !== undefined && assetExternalId !== null)
|
|
@@ -2802,16 +2814,20 @@ export class UtilizationClient extends AuthorizedApiBase implements IUtilization
|
|
|
2802
2814
|
return Promise.resolve<MachineUtilizationDatapointListDto>(null as any);
|
|
2803
2815
|
}
|
|
2804
2816
|
|
|
2805
|
-
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
2817
|
+
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDatapointListDto> {
|
|
2806
2818
|
let url_ = this.baseUrl + "/utilization/datapoints/company?";
|
|
2807
2819
|
if (utilizationType === null)
|
|
2808
2820
|
throw new globalThis.Error("The parameter 'utilizationType' cannot be null.");
|
|
2809
2821
|
else if (utilizationType !== undefined)
|
|
2810
2822
|
url_ += "utilizationType=" + encodeURIComponent("" + utilizationType) + "&";
|
|
2811
|
-
if (startTime
|
|
2823
|
+
if (startTime === null)
|
|
2824
|
+
throw new globalThis.Error("The parameter 'startTime' cannot be null.");
|
|
2825
|
+
else if (startTime !== undefined)
|
|
2812
2826
|
url_ += "startTime=" + encodeURIComponent(startTime ? "" + startTime.toISOString() : "") + "&";
|
|
2813
2827
|
if (endTime !== undefined && endTime !== null)
|
|
2814
2828
|
url_ += "endTime=" + encodeURIComponent(endTime ? "" + endTime.toISOString() : "") + "&";
|
|
2829
|
+
if (ianaTimeZone !== undefined && ianaTimeZone !== null)
|
|
2830
|
+
url_ += "ianaTimeZone=" + encodeURIComponent("" + ianaTimeZone) + "&";
|
|
2815
2831
|
url_ = url_.replace(/[?&]$/, "");
|
|
2816
2832
|
|
|
2817
2833
|
let options_: RequestInit = {
|
|
@@ -2846,16 +2862,20 @@ export class UtilizationClient extends AuthorizedApiBase implements IUtilization
|
|
|
2846
2862
|
return Promise.resolve<CompanyUtilizationDatapointListDto>(null as any);
|
|
2847
2863
|
}
|
|
2848
2864
|
|
|
2849
|
-
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
2865
|
+
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto> {
|
|
2850
2866
|
let url_ = this.baseUrl + "/utilization/datapoints/cross-company?";
|
|
2851
2867
|
if (utilizationType === null)
|
|
2852
2868
|
throw new globalThis.Error("The parameter 'utilizationType' cannot be null.");
|
|
2853
2869
|
else if (utilizationType !== undefined)
|
|
2854
2870
|
url_ += "utilizationType=" + encodeURIComponent("" + utilizationType) + "&";
|
|
2855
|
-
if (startTime
|
|
2871
|
+
if (startTime === null)
|
|
2872
|
+
throw new globalThis.Error("The parameter 'startTime' cannot be null.");
|
|
2873
|
+
else if (startTime !== undefined)
|
|
2856
2874
|
url_ += "startTime=" + encodeURIComponent(startTime ? "" + startTime.toISOString() : "") + "&";
|
|
2857
2875
|
if (endTime !== undefined && endTime !== null)
|
|
2858
2876
|
url_ += "endTime=" + encodeURIComponent(endTime ? "" + endTime.toISOString() : "") + "&";
|
|
2877
|
+
if (ianaTimeZone !== undefined && ianaTimeZone !== null)
|
|
2878
|
+
url_ += "ianaTimeZone=" + encodeURIComponent("" + ianaTimeZone) + "&";
|
|
2859
2879
|
url_ = url_.replace(/[?&]$/, "");
|
|
2860
2880
|
|
|
2861
2881
|
let options_: RequestInit = {
|
|
@@ -15179,6 +15199,8 @@ export interface IMoveBookingClient {
|
|
|
15179
15199
|
preBookGeneral(req: PreBookingGeneralRequestDto): Promise<PreBookingResultItemDto[]>;
|
|
15180
15200
|
|
|
15181
15201
|
updateBookingStatus(bookingUpdate: BookingStatusUpdateDto): Promise<BookingDto>;
|
|
15202
|
+
|
|
15203
|
+
exportBookings(includeTracking: boolean | undefined): Promise<DownloadDto>;
|
|
15182
15204
|
}
|
|
15183
15205
|
|
|
15184
15206
|
export class MoveBookingClient extends AuthorizedApiBase implements IMoveBookingClient {
|
|
@@ -15565,6 +15587,46 @@ export class MoveBookingClient extends AuthorizedApiBase implements IMoveBooking
|
|
|
15565
15587
|
}
|
|
15566
15588
|
return Promise.resolve<BookingDto>(null as any);
|
|
15567
15589
|
}
|
|
15590
|
+
|
|
15591
|
+
exportBookings(includeTracking: boolean | undefined): Promise<DownloadDto> {
|
|
15592
|
+
let url_ = this.baseUrl + "/move/booking/export?";
|
|
15593
|
+
if (includeTracking === null)
|
|
15594
|
+
throw new globalThis.Error("The parameter 'includeTracking' cannot be null.");
|
|
15595
|
+
else if (includeTracking !== undefined)
|
|
15596
|
+
url_ += "includeTracking=" + encodeURIComponent("" + includeTracking) + "&";
|
|
15597
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
15598
|
+
|
|
15599
|
+
let options_: RequestInit = {
|
|
15600
|
+
method: "POST",
|
|
15601
|
+
headers: {
|
|
15602
|
+
"Accept": "application/json"
|
|
15603
|
+
}
|
|
15604
|
+
};
|
|
15605
|
+
|
|
15606
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
15607
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
15608
|
+
}).then((_response: Response) => {
|
|
15609
|
+
return this.processExportBookings(_response);
|
|
15610
|
+
});
|
|
15611
|
+
}
|
|
15612
|
+
|
|
15613
|
+
protected processExportBookings(response: Response): Promise<DownloadDto> {
|
|
15614
|
+
const status = response.status;
|
|
15615
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
15616
|
+
if (status === 200) {
|
|
15617
|
+
return response.text().then((_responseText) => {
|
|
15618
|
+
let result200: any = null;
|
|
15619
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
15620
|
+
result200 = DownloadDto.fromJS(resultData200);
|
|
15621
|
+
return result200;
|
|
15622
|
+
});
|
|
15623
|
+
} else if (status !== 200 && status !== 204) {
|
|
15624
|
+
return response.text().then((_responseText) => {
|
|
15625
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
15626
|
+
});
|
|
15627
|
+
}
|
|
15628
|
+
return Promise.resolve<DownloadDto>(null as any);
|
|
15629
|
+
}
|
|
15568
15630
|
}
|
|
15569
15631
|
|
|
15570
15632
|
export interface IMoveLocationsClient {
|
|
@@ -16245,6 +16307,8 @@ export interface IMoveTrackingClient {
|
|
|
16245
16307
|
createTrackingHistory(trackingUpdates: TrackingHistoryUpdateDto[]): Promise<TrackingHistoryDto[]>;
|
|
16246
16308
|
|
|
16247
16309
|
deleteTrackingHistory(trackingId: string): Promise<void>;
|
|
16310
|
+
|
|
16311
|
+
exportParcels(): Promise<DownloadDto>;
|
|
16248
16312
|
}
|
|
16249
16313
|
|
|
16250
16314
|
export class MoveTrackingClient extends AuthorizedApiBase implements IMoveTrackingClient {
|
|
@@ -16590,6 +16654,42 @@ export class MoveTrackingClient extends AuthorizedApiBase implements IMoveTracki
|
|
|
16590
16654
|
}
|
|
16591
16655
|
return Promise.resolve<void>(null as any);
|
|
16592
16656
|
}
|
|
16657
|
+
|
|
16658
|
+
exportParcels(): Promise<DownloadDto> {
|
|
16659
|
+
let url_ = this.baseUrl + "/move/tracking/export";
|
|
16660
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
16661
|
+
|
|
16662
|
+
let options_: RequestInit = {
|
|
16663
|
+
method: "POST",
|
|
16664
|
+
headers: {
|
|
16665
|
+
"Accept": "application/json"
|
|
16666
|
+
}
|
|
16667
|
+
};
|
|
16668
|
+
|
|
16669
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
16670
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
16671
|
+
}).then((_response: Response) => {
|
|
16672
|
+
return this.processExportParcels(_response);
|
|
16673
|
+
});
|
|
16674
|
+
}
|
|
16675
|
+
|
|
16676
|
+
protected processExportParcels(response: Response): Promise<DownloadDto> {
|
|
16677
|
+
const status = response.status;
|
|
16678
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
16679
|
+
if (status === 200) {
|
|
16680
|
+
return response.text().then((_responseText) => {
|
|
16681
|
+
let result200: any = null;
|
|
16682
|
+
let resultData200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
16683
|
+
result200 = DownloadDto.fromJS(resultData200);
|
|
16684
|
+
return result200;
|
|
16685
|
+
});
|
|
16686
|
+
} else if (status !== 200 && status !== 204) {
|
|
16687
|
+
return response.text().then((_responseText) => {
|
|
16688
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
16689
|
+
});
|
|
16690
|
+
}
|
|
16691
|
+
return Promise.resolve<DownloadDto>(null as any);
|
|
16692
|
+
}
|
|
16593
16693
|
}
|
|
16594
16694
|
|
|
16595
16695
|
export interface IParcelCategoryClient {
|
|
@@ -32621,7 +32721,6 @@ export class MeasuringToolDto implements IMeasuringToolDto {
|
|
|
32621
32721
|
unit?: string | null;
|
|
32622
32722
|
min?: number | null;
|
|
32623
32723
|
max?: number | null;
|
|
32624
|
-
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
32625
32724
|
lastCalibrationDate?: Date | null;
|
|
32626
32725
|
nextCalibrationDate?: Date | null;
|
|
32627
32726
|
calibrationInterval?: number | null;
|
|
@@ -32655,7 +32754,6 @@ export class MeasuringToolDto implements IMeasuringToolDto {
|
|
|
32655
32754
|
this.unit = _data["unit"];
|
|
32656
32755
|
this.min = _data["min"];
|
|
32657
32756
|
this.max = _data["max"];
|
|
32658
|
-
this.lastUsedBy = _data["lastUsedBy"] ? MeasuringToolLastUsedByDto.fromJS(_data["lastUsedBy"]) : undefined as any;
|
|
32659
32757
|
this.lastCalibrationDate = _data["lastCalibrationDate"] ? new Date(_data["lastCalibrationDate"].toString()) : undefined as any;
|
|
32660
32758
|
this.nextCalibrationDate = _data["nextCalibrationDate"] ? new Date(_data["nextCalibrationDate"].toString()) : undefined as any;
|
|
32661
32759
|
this.calibrationInterval = _data["calibrationInterval"];
|
|
@@ -32689,7 +32787,6 @@ export class MeasuringToolDto implements IMeasuringToolDto {
|
|
|
32689
32787
|
data["unit"] = this.unit;
|
|
32690
32788
|
data["min"] = this.min;
|
|
32691
32789
|
data["max"] = this.max;
|
|
32692
|
-
data["lastUsedBy"] = this.lastUsedBy ? this.lastUsedBy.toJSON() : undefined as any;
|
|
32693
32790
|
data["lastCalibrationDate"] = this.lastCalibrationDate ? this.lastCalibrationDate.toISOString() : undefined as any;
|
|
32694
32791
|
data["nextCalibrationDate"] = this.nextCalibrationDate ? this.nextCalibrationDate.toISOString() : undefined as any;
|
|
32695
32792
|
data["calibrationInterval"] = this.calibrationInterval;
|
|
@@ -32716,7 +32813,6 @@ export interface IMeasuringToolDto {
|
|
|
32716
32813
|
unit?: string | null;
|
|
32717
32814
|
min?: number | null;
|
|
32718
32815
|
max?: number | null;
|
|
32719
|
-
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
32720
32816
|
lastCalibrationDate?: Date | null;
|
|
32721
32817
|
nextCalibrationDate?: Date | null;
|
|
32722
32818
|
calibrationInterval?: number | null;
|
|
@@ -32729,50 +32825,6 @@ export interface IMeasuringToolDto {
|
|
|
32729
32825
|
calibrationStatus: CalibrationStatusDto;
|
|
32730
32826
|
}
|
|
32731
32827
|
|
|
32732
|
-
export class MeasuringToolLastUsedByDto implements IMeasuringToolLastUsedByDto {
|
|
32733
|
-
objectId?: string;
|
|
32734
|
-
userId?: string;
|
|
32735
|
-
displayName?: string | null;
|
|
32736
|
-
|
|
32737
|
-
constructor(data?: IMeasuringToolLastUsedByDto) {
|
|
32738
|
-
if (data) {
|
|
32739
|
-
for (var property in data) {
|
|
32740
|
-
if (data.hasOwnProperty(property))
|
|
32741
|
-
(this as any)[property] = (data as any)[property];
|
|
32742
|
-
}
|
|
32743
|
-
}
|
|
32744
|
-
}
|
|
32745
|
-
|
|
32746
|
-
init(_data?: any) {
|
|
32747
|
-
if (_data) {
|
|
32748
|
-
this.objectId = _data["objectId"];
|
|
32749
|
-
this.userId = _data["userId"];
|
|
32750
|
-
this.displayName = _data["displayName"];
|
|
32751
|
-
}
|
|
32752
|
-
}
|
|
32753
|
-
|
|
32754
|
-
static fromJS(data: any): MeasuringToolLastUsedByDto {
|
|
32755
|
-
data = typeof data === 'object' ? data : {};
|
|
32756
|
-
let result = new MeasuringToolLastUsedByDto();
|
|
32757
|
-
result.init(data);
|
|
32758
|
-
return result;
|
|
32759
|
-
}
|
|
32760
|
-
|
|
32761
|
-
toJSON(data?: any) {
|
|
32762
|
-
data = typeof data === 'object' ? data : {};
|
|
32763
|
-
data["objectId"] = this.objectId;
|
|
32764
|
-
data["userId"] = this.userId;
|
|
32765
|
-
data["displayName"] = this.displayName;
|
|
32766
|
-
return data;
|
|
32767
|
-
}
|
|
32768
|
-
}
|
|
32769
|
-
|
|
32770
|
-
export interface IMeasuringToolLastUsedByDto {
|
|
32771
|
-
objectId?: string;
|
|
32772
|
-
userId?: string;
|
|
32773
|
-
displayName?: string | null;
|
|
32774
|
-
}
|
|
32775
|
-
|
|
32776
32828
|
export type CalibrationStatusDto = "Uncalibrated" | "Deprecated" | "Expired" | "SoonDue" | "Valid";
|
|
32777
32829
|
|
|
32778
32830
|
export class MeasuringToolDetailDto implements IMeasuringToolDetailDto {
|
|
@@ -32786,7 +32838,6 @@ export class MeasuringToolDetailDto implements IMeasuringToolDetailDto {
|
|
|
32786
32838
|
defaultLocation?: string | null;
|
|
32787
32839
|
min?: number | null;
|
|
32788
32840
|
max?: number | null;
|
|
32789
|
-
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
32790
32841
|
calibrationInterval?: number | null;
|
|
32791
32842
|
serialNumber?: string | null;
|
|
32792
32843
|
precision?: string | null;
|
|
@@ -32823,7 +32874,6 @@ export class MeasuringToolDetailDto implements IMeasuringToolDetailDto {
|
|
|
32823
32874
|
this.defaultLocation = _data["defaultLocation"];
|
|
32824
32875
|
this.min = _data["min"];
|
|
32825
32876
|
this.max = _data["max"];
|
|
32826
|
-
this.lastUsedBy = _data["lastUsedBy"] ? MeasuringToolLastUsedByDto.fromJS(_data["lastUsedBy"]) : undefined as any;
|
|
32827
32877
|
this.calibrationInterval = _data["calibrationInterval"];
|
|
32828
32878
|
this.serialNumber = _data["serialNumber"];
|
|
32829
32879
|
this.precision = _data["precision"];
|
|
@@ -32856,7 +32906,6 @@ export class MeasuringToolDetailDto implements IMeasuringToolDetailDto {
|
|
|
32856
32906
|
data["defaultLocation"] = this.defaultLocation;
|
|
32857
32907
|
data["min"] = this.min;
|
|
32858
32908
|
data["max"] = this.max;
|
|
32859
|
-
data["lastUsedBy"] = this.lastUsedBy ? this.lastUsedBy.toJSON() : undefined as any;
|
|
32860
32909
|
data["calibrationInterval"] = this.calibrationInterval;
|
|
32861
32910
|
data["serialNumber"] = this.serialNumber;
|
|
32862
32911
|
data["precision"] = this.precision;
|
|
@@ -32882,7 +32931,6 @@ export interface IMeasuringToolDetailDto {
|
|
|
32882
32931
|
defaultLocation?: string | null;
|
|
32883
32932
|
min?: number | null;
|
|
32884
32933
|
max?: number | null;
|
|
32885
|
-
lastUsedBy?: MeasuringToolLastUsedByDto | null;
|
|
32886
32934
|
calibrationInterval?: number | null;
|
|
32887
32935
|
serialNumber?: string | null;
|
|
32888
32936
|
precision?: string | null;
|
|
@@ -46027,6 +46075,8 @@ export class BookingParcelDto implements IBookingParcelDto {
|
|
|
46027
46075
|
parcelKind!: ParcelKindDto;
|
|
46028
46076
|
partName?: string | null;
|
|
46029
46077
|
partNumber?: string | null;
|
|
46078
|
+
projectId?: string | null;
|
|
46079
|
+
projectName?: string | null;
|
|
46030
46080
|
quantity?: number | null;
|
|
46031
46081
|
material?: string | null;
|
|
46032
46082
|
materialOperation?: number | null;
|
|
@@ -46053,6 +46103,8 @@ export class BookingParcelDto implements IBookingParcelDto {
|
|
|
46053
46103
|
this.parcelKind = _data["parcelKind"];
|
|
46054
46104
|
this.partName = _data["partName"];
|
|
46055
46105
|
this.partNumber = _data["partNumber"];
|
|
46106
|
+
this.projectId = _data["projectId"];
|
|
46107
|
+
this.projectName = _data["projectName"];
|
|
46056
46108
|
this.quantity = _data["quantity"];
|
|
46057
46109
|
this.material = _data["material"];
|
|
46058
46110
|
this.materialOperation = _data["materialOperation"];
|
|
@@ -46079,6 +46131,8 @@ export class BookingParcelDto implements IBookingParcelDto {
|
|
|
46079
46131
|
data["parcelKind"] = this.parcelKind;
|
|
46080
46132
|
data["partName"] = this.partName;
|
|
46081
46133
|
data["partNumber"] = this.partNumber;
|
|
46134
|
+
data["projectId"] = this.projectId;
|
|
46135
|
+
data["projectName"] = this.projectName;
|
|
46082
46136
|
data["quantity"] = this.quantity;
|
|
46083
46137
|
data["material"] = this.material;
|
|
46084
46138
|
data["materialOperation"] = this.materialOperation;
|
|
@@ -46098,6 +46152,8 @@ export interface IBookingParcelDto {
|
|
|
46098
46152
|
parcelKind: ParcelKindDto;
|
|
46099
46153
|
partName?: string | null;
|
|
46100
46154
|
partNumber?: string | null;
|
|
46155
|
+
projectId?: string | null;
|
|
46156
|
+
projectName?: string | null;
|
|
46101
46157
|
quantity?: number | null;
|
|
46102
46158
|
material?: string | null;
|
|
46103
46159
|
materialOperation?: number | null;
|
|
@@ -48074,6 +48130,8 @@ export class TrackingParcelDto implements ITrackingParcelDto {
|
|
|
48074
48130
|
parcelKind!: ParcelKindDto;
|
|
48075
48131
|
partName?: string | null;
|
|
48076
48132
|
partNumber?: string | null;
|
|
48133
|
+
projectId?: string | null;
|
|
48134
|
+
projectName?: string | null;
|
|
48077
48135
|
quantity?: number | null;
|
|
48078
48136
|
material?: string | null;
|
|
48079
48137
|
covered?: MaterialCoveredDto | null;
|
|
@@ -48099,6 +48157,8 @@ export class TrackingParcelDto implements ITrackingParcelDto {
|
|
|
48099
48157
|
this.parcelKind = _data["parcelKind"];
|
|
48100
48158
|
this.partName = _data["partName"];
|
|
48101
48159
|
this.partNumber = _data["partNumber"];
|
|
48160
|
+
this.projectId = _data["projectId"];
|
|
48161
|
+
this.projectName = _data["projectName"];
|
|
48102
48162
|
this.quantity = _data["quantity"];
|
|
48103
48163
|
this.material = _data["material"];
|
|
48104
48164
|
this.covered = _data["covered"];
|
|
@@ -48128,6 +48188,8 @@ export class TrackingParcelDto implements ITrackingParcelDto {
|
|
|
48128
48188
|
data["parcelKind"] = this.parcelKind;
|
|
48129
48189
|
data["partName"] = this.partName;
|
|
48130
48190
|
data["partNumber"] = this.partNumber;
|
|
48191
|
+
data["projectId"] = this.projectId;
|
|
48192
|
+
data["projectName"] = this.projectName;
|
|
48131
48193
|
data["quantity"] = this.quantity;
|
|
48132
48194
|
data["material"] = this.material;
|
|
48133
48195
|
data["covered"] = this.covered;
|
|
@@ -48150,6 +48212,8 @@ export interface ITrackingParcelDto {
|
|
|
48150
48212
|
parcelKind: ParcelKindDto;
|
|
48151
48213
|
partName?: string | null;
|
|
48152
48214
|
partNumber?: string | null;
|
|
48215
|
+
projectId?: string | null;
|
|
48216
|
+
projectName?: string | null;
|
|
48153
48217
|
quantity?: number | null;
|
|
48154
48218
|
material?: string | null;
|
|
48155
48219
|
covered?: MaterialCoveredDto | null;
|
|
@@ -48470,6 +48534,8 @@ export class TrackingHistoryFlattenedDto implements ITrackingHistoryFlattenedDto
|
|
|
48470
48534
|
parcelKind!: ParcelKindDto;
|
|
48471
48535
|
partName?: string | null;
|
|
48472
48536
|
partNumber?: string | null;
|
|
48537
|
+
projectId?: string | null;
|
|
48538
|
+
projectName?: string | null;
|
|
48473
48539
|
quantity?: number | null;
|
|
48474
48540
|
material?: string | null;
|
|
48475
48541
|
covered?: MaterialCoveredDto | null;
|
|
@@ -48502,6 +48568,8 @@ export class TrackingHistoryFlattenedDto implements ITrackingHistoryFlattenedDto
|
|
|
48502
48568
|
this.parcelKind = _data["parcelKind"];
|
|
48503
48569
|
this.partName = _data["partName"];
|
|
48504
48570
|
this.partNumber = _data["partNumber"];
|
|
48571
|
+
this.projectId = _data["projectId"];
|
|
48572
|
+
this.projectName = _data["projectName"];
|
|
48505
48573
|
this.quantity = _data["quantity"];
|
|
48506
48574
|
this.material = _data["material"];
|
|
48507
48575
|
this.covered = _data["covered"];
|
|
@@ -48535,6 +48603,8 @@ export class TrackingHistoryFlattenedDto implements ITrackingHistoryFlattenedDto
|
|
|
48535
48603
|
data["parcelKind"] = this.parcelKind;
|
|
48536
48604
|
data["partName"] = this.partName;
|
|
48537
48605
|
data["partNumber"] = this.partNumber;
|
|
48606
|
+
data["projectId"] = this.projectId;
|
|
48607
|
+
data["projectName"] = this.projectName;
|
|
48538
48608
|
data["quantity"] = this.quantity;
|
|
48539
48609
|
data["material"] = this.material;
|
|
48540
48610
|
data["covered"] = this.covered;
|
|
@@ -48561,6 +48631,8 @@ export interface ITrackingHistoryFlattenedDto {
|
|
|
48561
48631
|
parcelKind: ParcelKindDto;
|
|
48562
48632
|
partName?: string | null;
|
|
48563
48633
|
partNumber?: string | null;
|
|
48634
|
+
projectId?: string | null;
|
|
48635
|
+
projectName?: string | null;
|
|
48564
48636
|
quantity?: number | null;
|
|
48565
48637
|
material?: string | null;
|
|
48566
48638
|
covered?: MaterialCoveredDto | null;
|