@ignos/api-client 20251021.0.12930 → 20251022.0.12935-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/ignosportal-api.d.ts +10 -96
- package/lib/ignosportal-api.js +446 -747
- package/package.json +1 -1
- package/src/ignosportal-api.ts +1029 -1410
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -365,7 +365,6 @@ export declare class SustainabilityClient extends AuthorizedApiBase implements I
|
|
|
365
365
|
}
|
|
366
366
|
export interface IMachineAlarmsClient {
|
|
367
367
|
listMachineAlarms(alarmType: MachineAlarmType | null | undefined, assetId: number | undefined, startTime: Date | undefined, endTime: Date | null | undefined, subType: string | null | undefined, nativeCode: string | null | undefined, nativeSeverity: number | null | undefined, name: string | null | undefined, sequence: string | null | undefined, limit: number | undefined, continuationToken: string | null | undefined, orderBy: string | null | undefined, sortDirection: string | null | undefined): Promise<PagedResultOfMachineAlarmDto>;
|
|
368
|
-
listGroupedMachineIncidents(request: ListGroupedMachineIncidentsRequest): Promise<PagedResultOfGroupedMachineIncidentDto>;
|
|
369
368
|
listAlarmsPerMachine(startTime: Date | undefined, endTime: Date | null | undefined): Promise<MachineAlarmSummaryDto[]>;
|
|
370
369
|
listAlarmSeverityOccurrences(startTime: Date | undefined, endTime: Date | null | undefined): Promise<MachineAlarmSeverityOccurenceDto[]>;
|
|
371
370
|
countMachineAlarms(alarmType: MachineAlarmType | null | undefined, assetId: number | undefined, startTime: Date | undefined, endTime: Date | null | undefined, subType: string | null | undefined, nativeCode: string | null | undefined, nativeSeverity: number | null | undefined, name: string | null | undefined, sequence: string | null | undefined): Promise<MachineAlarmCountDto>;
|
|
@@ -380,8 +379,6 @@ export declare class MachineAlarmsClient extends AuthorizedApiBase implements IM
|
|
|
380
379
|
});
|
|
381
380
|
listMachineAlarms(alarmType: MachineAlarmType | null | undefined, assetId: number | undefined, startTime: Date | undefined, endTime: Date | null | undefined, subType: string | null | undefined, nativeCode: string | null | undefined, nativeSeverity: number | null | undefined, name: string | null | undefined, sequence: string | null | undefined, limit: number | undefined, continuationToken: string | null | undefined, orderBy: string | null | undefined, sortDirection: string | null | undefined): Promise<PagedResultOfMachineAlarmDto>;
|
|
382
381
|
protected processListMachineAlarms(response: Response): Promise<PagedResultOfMachineAlarmDto>;
|
|
383
|
-
listGroupedMachineIncidents(request: ListGroupedMachineIncidentsRequest): Promise<PagedResultOfGroupedMachineIncidentDto>;
|
|
384
|
-
protected processListGroupedMachineIncidents(response: Response): Promise<PagedResultOfGroupedMachineIncidentDto>;
|
|
385
382
|
listAlarmsPerMachine(startTime: Date | undefined, endTime: Date | null | undefined): Promise<MachineAlarmSummaryDto[]>;
|
|
386
383
|
protected processListAlarmsPerMachine(response: Response): Promise<MachineAlarmSummaryDto[]>;
|
|
387
384
|
listAlarmSeverityOccurrences(startTime: Date | undefined, endTime: Date | null | undefined): Promise<MachineAlarmSeverityOccurenceDto[]>;
|
|
@@ -408,11 +405,11 @@ export declare class PulseClient extends AuthorizedApiBase implements IPulseClie
|
|
|
408
405
|
protected processUpdatePulseSettings(response: Response): Promise<PulseSettingsDto>;
|
|
409
406
|
}
|
|
410
407
|
export interface IUtilizationClient {
|
|
411
|
-
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
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,
|
|
408
|
+
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
|
|
409
|
+
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
|
|
410
|
+
getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<MachineUtilizationDatapointListDto>;
|
|
411
|
+
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDatapointListDto>;
|
|
412
|
+
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
416
413
|
}
|
|
417
414
|
export declare class UtilizationClient extends AuthorizedApiBase implements IUtilizationClient {
|
|
418
415
|
private http;
|
|
@@ -421,15 +418,15 @@ export declare class UtilizationClient extends AuthorizedApiBase implements IUti
|
|
|
421
418
|
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
422
419
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
423
420
|
});
|
|
424
|
-
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
421
|
+
getCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDto>;
|
|
425
422
|
protected processGetCompanyUtilization(response: Response): Promise<CompanyUtilizationDto>;
|
|
426
|
-
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
423
|
+
getCrossCompanyUtilization(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDto>;
|
|
427
424
|
protected processGetCrossCompanyUtilization(response: Response): Promise<CrossCompanyUtilizationDto>;
|
|
428
|
-
getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
425
|
+
getUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined, assetId: number | null | undefined, assetExternalId: string | null | undefined): Promise<MachineUtilizationDatapointListDto>;
|
|
429
426
|
protected processGetUtilizationDatapoints(response: Response): Promise<MachineUtilizationDatapointListDto>;
|
|
430
|
-
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
427
|
+
getCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CompanyUtilizationDatapointListDto>;
|
|
431
428
|
protected processGetCompanyUtilizationDatapoints(response: Response): Promise<CompanyUtilizationDatapointListDto>;
|
|
432
|
-
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | null | undefined,
|
|
429
|
+
getCrossCompanyUtilizationDatapoints(utilizationType: UtilizationTypeDto | undefined, startTime: Date | undefined, endTime: Date | null | undefined, ianaTimeZone: string | null | undefined): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
433
430
|
protected processGetCrossCompanyUtilizationDatapoints(response: Response): Promise<CrossCompanyUtilizationDatapointListDto>;
|
|
434
431
|
}
|
|
435
432
|
export interface IMrbClient {
|
|
@@ -1692,7 +1689,6 @@ export interface IMoveBookingClient {
|
|
|
1692
1689
|
createBookingGeneral(bookingRequest: BookingGeneralRequestDto): Promise<BookingDto[]>;
|
|
1693
1690
|
preBookGeneral(req: PreBookingGeneralRequestDto): Promise<PreBookingResultItemDto[]>;
|
|
1694
1691
|
updateBookingStatus(bookingUpdate: BookingStatusUpdateDto): Promise<BookingDto>;
|
|
1695
|
-
exportBookings(includeTracking: boolean | undefined): Promise<DownloadDto>;
|
|
1696
1692
|
}
|
|
1697
1693
|
export declare class MoveBookingClient extends AuthorizedApiBase implements IMoveBookingClient {
|
|
1698
1694
|
private http;
|
|
@@ -1719,8 +1715,6 @@ export declare class MoveBookingClient extends AuthorizedApiBase implements IMov
|
|
|
1719
1715
|
protected processPreBookGeneral(response: Response): Promise<PreBookingResultItemDto[]>;
|
|
1720
1716
|
updateBookingStatus(bookingUpdate: BookingStatusUpdateDto): Promise<BookingDto>;
|
|
1721
1717
|
protected processUpdateBookingStatus(response: Response): Promise<BookingDto>;
|
|
1722
|
-
exportBookings(includeTracking: boolean | undefined): Promise<DownloadDto>;
|
|
1723
|
-
protected processExportBookings(response: Response): Promise<DownloadDto>;
|
|
1724
1718
|
}
|
|
1725
1719
|
export interface IMoveLocationsClient {
|
|
1726
1720
|
listLocations(): Promise<LocationZoneGroupDto[]>;
|
|
@@ -1813,7 +1807,6 @@ export interface IMoveTrackingClient {
|
|
|
1813
1807
|
createTrackingEvents(trackingUpdates: TrackingUpdateDto[]): Promise<TrackingHistoryDto[]>;
|
|
1814
1808
|
createTrackingHistory(trackingUpdates: TrackingHistoryUpdateDto[]): Promise<TrackingHistoryDto[]>;
|
|
1815
1809
|
deleteTrackingHistory(trackingId: string): Promise<void>;
|
|
1816
|
-
exportParcels(): Promise<DownloadDto>;
|
|
1817
1810
|
}
|
|
1818
1811
|
export declare class MoveTrackingClient extends AuthorizedApiBase implements IMoveTrackingClient {
|
|
1819
1812
|
private http;
|
|
@@ -1838,8 +1831,6 @@ export declare class MoveTrackingClient extends AuthorizedApiBase implements IMo
|
|
|
1838
1831
|
protected processCreateTrackingHistory(response: Response): Promise<TrackingHistoryDto[]>;
|
|
1839
1832
|
deleteTrackingHistory(trackingId: string): Promise<void>;
|
|
1840
1833
|
protected processDeleteTrackingHistory(response: Response): Promise<void>;
|
|
1841
|
-
exportParcels(): Promise<DownloadDto>;
|
|
1842
|
-
protected processExportParcels(response: Response): Promise<DownloadDto>;
|
|
1843
1834
|
}
|
|
1844
1835
|
export interface IParcelCategoryClient {
|
|
1845
1836
|
getSettings(): Promise<ParcelCategorySettingsDto>;
|
|
@@ -2354,7 +2345,6 @@ export interface IMeasurementFormsInstancesClient {
|
|
|
2354
2345
|
postListMeasurementForms(request: ListMeasurementFormsRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceOverviewDto>;
|
|
2355
2346
|
listMeasurementFormsByStatus(status: MeasurementFormInstanceStatus | undefined, statusChangedSince: Date | null | undefined, onlyWithReports: boolean | null | undefined, pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2356
2347
|
postListMeasurementFormsByStatus(request: ListMeasurementFormsByStatusRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2357
|
-
deleteInstancesBulk(request: DeleteMeasurementFormsInstancesBulkRequest): Promise<void>;
|
|
2358
2348
|
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2359
2349
|
createMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
2360
2350
|
updateMeasurementFormInstance(id: string, request: UpdateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
@@ -2401,8 +2391,6 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
2401
2391
|
protected processListMeasurementFormsByStatus(response: Response): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2402
2392
|
postListMeasurementFormsByStatus(request: ListMeasurementFormsByStatusRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2403
2393
|
protected processPostListMeasurementFormsByStatus(response: Response): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
2404
|
-
deleteInstancesBulk(request: DeleteMeasurementFormsInstancesBulkRequest): Promise<void>;
|
|
2405
|
-
protected processDeleteInstancesBulk(response: Response): Promise<void>;
|
|
2406
2394
|
getMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
2407
2395
|
protected processGetMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
2408
2396
|
createMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
@@ -3082,8 +3070,6 @@ export interface IMachineStateDatapoint {
|
|
|
3082
3070
|
export declare class DowntimePeriodReasonDto implements IDowntimePeriodReasonDto {
|
|
3083
3071
|
id: number;
|
|
3084
3072
|
reason: string;
|
|
3085
|
-
parentReasonId?: string | null;
|
|
3086
|
-
parentReason?: string | null;
|
|
3087
3073
|
reasonType: DowntimeReasonTypeDto;
|
|
3088
3074
|
startTime: Date;
|
|
3089
3075
|
endTime?: Date | null;
|
|
@@ -3102,8 +3088,6 @@ export declare class DowntimePeriodReasonDto implements IDowntimePeriodReasonDto
|
|
|
3102
3088
|
export interface IDowntimePeriodReasonDto {
|
|
3103
3089
|
id: number;
|
|
3104
3090
|
reason: string;
|
|
3105
|
-
parentReasonId?: string | null;
|
|
3106
|
-
parentReason?: string | null;
|
|
3107
3091
|
reasonType: DowntimeReasonTypeDto;
|
|
3108
3092
|
startTime: Date;
|
|
3109
3093
|
endTime?: Date | null;
|
|
@@ -3753,50 +3737,6 @@ export interface IMachineAlarmDto {
|
|
|
3753
3737
|
endTime?: Date | null;
|
|
3754
3738
|
}
|
|
3755
3739
|
export type MachineAlarmType = "Fault" | "Warning";
|
|
3756
|
-
export declare class PagedResultOfGroupedMachineIncidentDto implements IPagedResultOfGroupedMachineIncidentDto {
|
|
3757
|
-
results: GroupedMachineIncidentDto[];
|
|
3758
|
-
continuationToken?: string | null;
|
|
3759
|
-
constructor(data?: IPagedResultOfGroupedMachineIncidentDto);
|
|
3760
|
-
init(_data?: any): void;
|
|
3761
|
-
static fromJS(data: any): PagedResultOfGroupedMachineIncidentDto;
|
|
3762
|
-
toJSON(data?: any): any;
|
|
3763
|
-
}
|
|
3764
|
-
export interface IPagedResultOfGroupedMachineIncidentDto {
|
|
3765
|
-
results: GroupedMachineIncidentDto[];
|
|
3766
|
-
continuationToken?: string | null;
|
|
3767
|
-
}
|
|
3768
|
-
export declare class GroupedMachineIncidentDto extends MachineAlarmDto implements IGroupedMachineIncidentDto {
|
|
3769
|
-
incidents: MachineAlarmDto[];
|
|
3770
|
-
constructor(data?: IGroupedMachineIncidentDto);
|
|
3771
|
-
init(_data?: any): void;
|
|
3772
|
-
static fromJS(data: any): GroupedMachineIncidentDto;
|
|
3773
|
-
toJSON(data?: any): any;
|
|
3774
|
-
}
|
|
3775
|
-
export interface IGroupedMachineIncidentDto extends IMachineAlarmDto {
|
|
3776
|
-
incidents: MachineAlarmDto[];
|
|
3777
|
-
}
|
|
3778
|
-
export declare class ListGroupedMachineIncidentsRequest implements IListGroupedMachineIncidentsRequest {
|
|
3779
|
-
assetId: number;
|
|
3780
|
-
startTime: Date;
|
|
3781
|
-
endTime?: Date | null;
|
|
3782
|
-
nativeCode?: string | null;
|
|
3783
|
-
alarmType?: MachineAlarmType | null;
|
|
3784
|
-
limit?: number | null;
|
|
3785
|
-
continuationToken?: string | null;
|
|
3786
|
-
constructor(data?: IListGroupedMachineIncidentsRequest);
|
|
3787
|
-
init(_data?: any): void;
|
|
3788
|
-
static fromJS(data: any): ListGroupedMachineIncidentsRequest;
|
|
3789
|
-
toJSON(data?: any): any;
|
|
3790
|
-
}
|
|
3791
|
-
export interface IListGroupedMachineIncidentsRequest {
|
|
3792
|
-
assetId: number;
|
|
3793
|
-
startTime: Date;
|
|
3794
|
-
endTime?: Date | null;
|
|
3795
|
-
nativeCode?: string | null;
|
|
3796
|
-
alarmType?: MachineAlarmType | null;
|
|
3797
|
-
limit?: number | null;
|
|
3798
|
-
continuationToken?: string | null;
|
|
3799
|
-
}
|
|
3800
3740
|
export declare class MachineAlarmSummaryDto implements IMachineAlarmSummaryDto {
|
|
3801
3741
|
assetId: number;
|
|
3802
3742
|
assetName: string;
|
|
@@ -9698,8 +9638,6 @@ export declare class BookingParcelDto implements IBookingParcelDto {
|
|
|
9698
9638
|
parcelKind: ParcelKindDto;
|
|
9699
9639
|
partName?: string | null;
|
|
9700
9640
|
partNumber?: string | null;
|
|
9701
|
-
projectId?: string | null;
|
|
9702
|
-
projectName?: string | null;
|
|
9703
9641
|
quantity?: number | null;
|
|
9704
9642
|
material?: string | null;
|
|
9705
9643
|
materialOperation?: number | null;
|
|
@@ -9720,8 +9658,6 @@ export interface IBookingParcelDto {
|
|
|
9720
9658
|
parcelKind: ParcelKindDto;
|
|
9721
9659
|
partName?: string | null;
|
|
9722
9660
|
partNumber?: string | null;
|
|
9723
|
-
projectId?: string | null;
|
|
9724
|
-
projectName?: string | null;
|
|
9725
9661
|
quantity?: number | null;
|
|
9726
9662
|
material?: string | null;
|
|
9727
9663
|
materialOperation?: number | null;
|
|
@@ -10296,8 +10232,6 @@ export declare class TrackingParcelDto implements ITrackingParcelDto {
|
|
|
10296
10232
|
parcelKind: ParcelKindDto;
|
|
10297
10233
|
partName?: string | null;
|
|
10298
10234
|
partNumber?: string | null;
|
|
10299
|
-
projectId?: string | null;
|
|
10300
|
-
projectName?: string | null;
|
|
10301
10235
|
quantity?: number | null;
|
|
10302
10236
|
material?: string | null;
|
|
10303
10237
|
covered?: MaterialCoveredDto | null;
|
|
@@ -10313,8 +10247,6 @@ export interface ITrackingParcelDto {
|
|
|
10313
10247
|
parcelKind: ParcelKindDto;
|
|
10314
10248
|
partName?: string | null;
|
|
10315
10249
|
partNumber?: string | null;
|
|
10316
|
-
projectId?: string | null;
|
|
10317
|
-
projectName?: string | null;
|
|
10318
10250
|
quantity?: number | null;
|
|
10319
10251
|
material?: string | null;
|
|
10320
10252
|
covered?: MaterialCoveredDto | null;
|
|
@@ -10329,7 +10261,6 @@ export declare class TrackingHistoryDto implements ITrackingHistoryDto {
|
|
|
10329
10261
|
materialLine?: number | null;
|
|
10330
10262
|
materialPartName?: string | null;
|
|
10331
10263
|
materialPartNumber?: string | null;
|
|
10332
|
-
category?: string | null;
|
|
10333
10264
|
currentTracking?: TrackingEventDto | null;
|
|
10334
10265
|
trackingEvents: TrackingEventDto[];
|
|
10335
10266
|
suggestions?: SuggestionsItemDto | null;
|
|
@@ -10346,7 +10277,6 @@ export interface ITrackingHistoryDto {
|
|
|
10346
10277
|
materialLine?: number | null;
|
|
10347
10278
|
materialPartName?: string | null;
|
|
10348
10279
|
materialPartNumber?: string | null;
|
|
10349
|
-
category?: string | null;
|
|
10350
10280
|
currentTracking?: TrackingEventDto | null;
|
|
10351
10281
|
trackingEvents: TrackingEventDto[];
|
|
10352
10282
|
suggestions?: SuggestionsItemDto | null;
|
|
@@ -10417,8 +10347,6 @@ export declare class TrackingHistoryFlattenedDto implements ITrackingHistoryFlat
|
|
|
10417
10347
|
parcelKind: ParcelKindDto;
|
|
10418
10348
|
partName?: string | null;
|
|
10419
10349
|
partNumber?: string | null;
|
|
10420
|
-
projectId?: string | null;
|
|
10421
|
-
projectName?: string | null;
|
|
10422
10350
|
quantity?: number | null;
|
|
10423
10351
|
material?: string | null;
|
|
10424
10352
|
covered?: MaterialCoveredDto | null;
|
|
@@ -10429,7 +10357,6 @@ export declare class TrackingHistoryFlattenedDto implements ITrackingHistoryFlat
|
|
|
10429
10357
|
materialLine?: number | null;
|
|
10430
10358
|
materialPartName?: string | null;
|
|
10431
10359
|
materialPartNumber?: string | null;
|
|
10432
|
-
category?: string | null;
|
|
10433
10360
|
currentTracking?: TrackingEventDto | null;
|
|
10434
10361
|
trackingEvents: TrackingEventDto[];
|
|
10435
10362
|
constructor(data?: ITrackingHistoryFlattenedDto);
|
|
@@ -10442,8 +10369,6 @@ export interface ITrackingHistoryFlattenedDto {
|
|
|
10442
10369
|
parcelKind: ParcelKindDto;
|
|
10443
10370
|
partName?: string | null;
|
|
10444
10371
|
partNumber?: string | null;
|
|
10445
|
-
projectId?: string | null;
|
|
10446
|
-
projectName?: string | null;
|
|
10447
10372
|
quantity?: number | null;
|
|
10448
10373
|
material?: string | null;
|
|
10449
10374
|
covered?: MaterialCoveredDto | null;
|
|
@@ -10454,7 +10379,6 @@ export interface ITrackingHistoryFlattenedDto {
|
|
|
10454
10379
|
materialLine?: number | null;
|
|
10455
10380
|
materialPartName?: string | null;
|
|
10456
10381
|
materialPartNumber?: string | null;
|
|
10457
|
-
category?: string | null;
|
|
10458
10382
|
currentTracking?: TrackingEventDto | null;
|
|
10459
10383
|
trackingEvents: TrackingEventDto[];
|
|
10460
10384
|
}
|
|
@@ -13349,16 +13273,6 @@ export interface IMeasurementFormWorkorderSupplierDto {
|
|
|
13349
13273
|
procurementLine?: number | null;
|
|
13350
13274
|
externalOrderNumber?: string | null;
|
|
13351
13275
|
}
|
|
13352
|
-
export declare class DeleteMeasurementFormsInstancesBulkRequest implements IDeleteMeasurementFormsInstancesBulkRequest {
|
|
13353
|
-
ids: string[];
|
|
13354
|
-
constructor(data?: IDeleteMeasurementFormsInstancesBulkRequest);
|
|
13355
|
-
init(_data?: any): void;
|
|
13356
|
-
static fromJS(data: any): DeleteMeasurementFormsInstancesBulkRequest;
|
|
13357
|
-
toJSON(data?: any): any;
|
|
13358
|
-
}
|
|
13359
|
-
export interface IDeleteMeasurementFormsInstancesBulkRequest {
|
|
13360
|
-
ids: string[];
|
|
13361
|
-
}
|
|
13362
13276
|
export declare class ListMeasurementFormsByStatusRequest implements IListMeasurementFormsByStatusRequest {
|
|
13363
13277
|
status?: MeasurementFormInstanceStatus | null;
|
|
13364
13278
|
statusChangedSince?: Date | null;
|