@ignos/api-client 20260513.127.1 → 20260518.128.1-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 +120 -120
- package/lib/ignosportal-api.js +1 -1
- package/package.json +1 -1
- package/src/ignosportal-api.ts +121 -121
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -3610,15 +3610,15 @@ export interface DowntimePeriodReasonDto {
|
|
|
3610
3610
|
startTime: Date;
|
|
3611
3611
|
endTime?: Date | null;
|
|
3612
3612
|
assetId: number;
|
|
3613
|
-
comment
|
|
3614
|
-
companyId
|
|
3613
|
+
comment: string | null;
|
|
3614
|
+
companyId: string | null;
|
|
3615
3615
|
reasonId: string;
|
|
3616
3616
|
autoCompleteDowntime?: boolean | null;
|
|
3617
3617
|
createdBy?: EmployeeDto | null;
|
|
3618
3618
|
updatedBy?: EmployeeDto | null;
|
|
3619
|
-
workOrderId
|
|
3620
|
-
partNumber
|
|
3621
|
-
partName
|
|
3619
|
+
workOrderId: string | null;
|
|
3620
|
+
partNumber: string | null;
|
|
3621
|
+
partName: string | null;
|
|
3622
3622
|
}
|
|
3623
3623
|
export type DowntimeReasonTypeDto = "Unplanned" | "Planned";
|
|
3624
3624
|
export interface EmployeeDto {
|
|
@@ -3641,8 +3641,8 @@ export interface WorkOrderDatapoint {
|
|
|
3641
3641
|
} | null;
|
|
3642
3642
|
}
|
|
3643
3643
|
export interface ProgramDatapoint {
|
|
3644
|
-
timestamp
|
|
3645
|
-
programValue
|
|
3644
|
+
timestamp: number;
|
|
3645
|
+
programValue: string;
|
|
3646
3646
|
}
|
|
3647
3647
|
export interface TimelineFilterDto {
|
|
3648
3648
|
includeMachineState?: boolean | null;
|
|
@@ -3668,7 +3668,7 @@ export interface ListMachineUptimesTodayRequest {
|
|
|
3668
3668
|
utcOffset?: number;
|
|
3669
3669
|
}
|
|
3670
3670
|
export interface PowerOnUtilizationList {
|
|
3671
|
-
machines
|
|
3671
|
+
machines: Machine[];
|
|
3672
3672
|
}
|
|
3673
3673
|
export interface Machine {
|
|
3674
3674
|
externalId?: string;
|
|
@@ -4155,9 +4155,9 @@ export interface UpdateCalendarSettingsCommand {
|
|
|
4155
4155
|
defaultPerformancePercent?: number | null;
|
|
4156
4156
|
}
|
|
4157
4157
|
export interface CalendarDefinitionDto {
|
|
4158
|
-
id
|
|
4159
|
-
name
|
|
4160
|
-
hoursPerWeekday
|
|
4158
|
+
id: string;
|
|
4159
|
+
name: string;
|
|
4160
|
+
hoursPerWeekday: {
|
|
4161
4161
|
[key in DayOfWeek]?: number;
|
|
4162
4162
|
};
|
|
4163
4163
|
created?: Date | null;
|
|
@@ -4176,25 +4176,25 @@ export interface UpdateCalendarDefinitionRequest {
|
|
|
4176
4176
|
} | null;
|
|
4177
4177
|
}
|
|
4178
4178
|
export interface ResourceCalendarPeriodSchedulesDto {
|
|
4179
|
-
groups
|
|
4180
|
-
ungroupedResources
|
|
4179
|
+
groups: ResourceCalendarPeriodGroupDto[];
|
|
4180
|
+
ungroupedResources: ResourceCalendarPeriodsDto[];
|
|
4181
4181
|
}
|
|
4182
4182
|
export interface ResourceCalendarPeriodGroupDto {
|
|
4183
|
-
resourceGroupName
|
|
4184
|
-
resources
|
|
4183
|
+
resourceGroupName: string;
|
|
4184
|
+
resources: ResourceCalendarPeriodsDto[];
|
|
4185
4185
|
}
|
|
4186
4186
|
export interface ResourceCalendarPeriodsDto {
|
|
4187
|
-
resourceExternalId
|
|
4188
|
-
resourceName
|
|
4189
|
-
periods
|
|
4187
|
+
resourceExternalId: string;
|
|
4188
|
+
resourceName: string;
|
|
4189
|
+
periods: ResourceCalendarPeriodDto[];
|
|
4190
4190
|
}
|
|
4191
4191
|
export interface ResourceCalendarPeriodDto {
|
|
4192
|
-
resourceExternalId
|
|
4193
|
-
calendarDefinitionId
|
|
4194
|
-
calendarDefinitionName
|
|
4195
|
-
effectiveFrom
|
|
4192
|
+
resourceExternalId: string;
|
|
4193
|
+
calendarDefinitionId: string;
|
|
4194
|
+
calendarDefinitionName: string;
|
|
4195
|
+
effectiveFrom: string;
|
|
4196
4196
|
effectiveTo?: string | null;
|
|
4197
|
-
targetPercent
|
|
4197
|
+
targetPercent: number;
|
|
4198
4198
|
comment?: string | null;
|
|
4199
4199
|
}
|
|
4200
4200
|
export interface AddResourceCalendarPeriod {
|
|
@@ -4214,8 +4214,8 @@ export interface DeleteResourceCalendarPeriod {
|
|
|
4214
4214
|
periods: PeriodKey[];
|
|
4215
4215
|
}
|
|
4216
4216
|
export interface PeriodKey {
|
|
4217
|
-
resourceExternalId
|
|
4218
|
-
effectiveFrom
|
|
4217
|
+
resourceExternalId: string;
|
|
4218
|
+
effectiveFrom: string;
|
|
4219
4219
|
}
|
|
4220
4220
|
export interface BulkAddResourceCalendarPeriods {
|
|
4221
4221
|
resourceExternalIds: string[];
|
|
@@ -4245,13 +4245,13 @@ export interface ResourceDayKpiDto {
|
|
|
4245
4245
|
utilizationGoal: number;
|
|
4246
4246
|
}
|
|
4247
4247
|
export interface ResourceDailyUptimeDto {
|
|
4248
|
-
date
|
|
4248
|
+
date: Date;
|
|
4249
4249
|
historicUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
4250
4250
|
todayUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
4251
4251
|
}
|
|
4252
4252
|
export interface ResourceDailyUptimePointDto {
|
|
4253
|
-
date
|
|
4254
|
-
uptime
|
|
4253
|
+
date: Date;
|
|
4254
|
+
uptime: number;
|
|
4255
4255
|
}
|
|
4256
4256
|
export interface UptimeTrendDataPointDto {
|
|
4257
4257
|
timestamp: Date;
|
|
@@ -4374,7 +4374,7 @@ export interface WorkorderOperationEventDto {
|
|
|
4374
4374
|
isSetup: boolean;
|
|
4375
4375
|
employee?: EmployeeDto | null;
|
|
4376
4376
|
resourceId: string;
|
|
4377
|
-
description
|
|
4377
|
+
description: string;
|
|
4378
4378
|
part?: PartDto | null;
|
|
4379
4379
|
workorderDescription?: string | null;
|
|
4380
4380
|
operationDescription?: string | null;
|
|
@@ -4454,7 +4454,7 @@ export interface MachineDto {
|
|
|
4454
4454
|
export interface CreateMachineWithoutResource {
|
|
4455
4455
|
id: string;
|
|
4456
4456
|
name: string;
|
|
4457
|
-
description
|
|
4457
|
+
description: string | null;
|
|
4458
4458
|
type: string;
|
|
4459
4459
|
displayName?: string | null;
|
|
4460
4460
|
manufacturer?: string | null;
|
|
@@ -4477,7 +4477,7 @@ export interface CreateResourceWithMachine {
|
|
|
4477
4477
|
displayName?: string | null;
|
|
4478
4478
|
machineId: string;
|
|
4479
4479
|
machineName: string;
|
|
4480
|
-
machineDescription
|
|
4480
|
+
machineDescription: string | null;
|
|
4481
4481
|
machineType: string;
|
|
4482
4482
|
manufacturer?: string | null;
|
|
4483
4483
|
location?: string | null;
|
|
@@ -4605,13 +4605,13 @@ export interface MachineUtilizationDatapointListDto extends UtilizationDatapoint
|
|
|
4605
4605
|
description?: string | null;
|
|
4606
4606
|
}
|
|
4607
4607
|
export interface CompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4608
|
-
groups
|
|
4609
|
-
ungroupedResources
|
|
4608
|
+
groups: ResourceGroupUtilizationDatapointListDto[];
|
|
4609
|
+
ungroupedResources: ResourceUtilizationDatapointListDto[];
|
|
4610
4610
|
}
|
|
4611
4611
|
export interface ResourceGroupUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4612
4612
|
groupId: string;
|
|
4613
4613
|
groupName: string;
|
|
4614
|
-
resources
|
|
4614
|
+
resources: ResourceUtilizationDatapointListDto[];
|
|
4615
4615
|
}
|
|
4616
4616
|
export interface ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4617
4617
|
externalId: string;
|
|
@@ -4620,11 +4620,11 @@ export interface ResourceUtilizationDatapointListDto extends UtilizationDatapoin
|
|
|
4620
4620
|
description?: string | null;
|
|
4621
4621
|
}
|
|
4622
4622
|
export interface CrossCompanyUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4623
|
-
companies
|
|
4623
|
+
companies: NamedCompanyUtilizationDatapointListDto[];
|
|
4624
4624
|
}
|
|
4625
4625
|
export interface CompanyUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4626
|
-
groups
|
|
4627
|
-
ungroupedMachines
|
|
4626
|
+
groups: MachineGroupUtilizationDatapointListDto[];
|
|
4627
|
+
ungroupedMachines: MachineUtilizationDatapointListDto[];
|
|
4628
4628
|
}
|
|
4629
4629
|
export interface NamedCompanyUtilizationDatapointListDto extends CompanyUtilizationDatapointListDto {
|
|
4630
4630
|
companyId: string;
|
|
@@ -4633,7 +4633,7 @@ export interface NamedCompanyUtilizationDatapointListDto extends CompanyUtilizat
|
|
|
4633
4633
|
export interface MachineGroupUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4634
4634
|
groupId: string;
|
|
4635
4635
|
groupName: string;
|
|
4636
|
-
machines
|
|
4636
|
+
machines: MachineUtilizationDatapointListDto[];
|
|
4637
4637
|
}
|
|
4638
4638
|
export interface CrossCompanyResourceUtilizationDto {
|
|
4639
4639
|
utilizationType: ResourceUtilizationTypeDto;
|
|
@@ -4645,7 +4645,7 @@ export interface NamedCompanyResourceUtilizationDto extends CompanyResourceUtili
|
|
|
4645
4645
|
companyName: string;
|
|
4646
4646
|
}
|
|
4647
4647
|
export interface CrossCompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4648
|
-
companies
|
|
4648
|
+
companies: NamedCompanyResourceUtilizationDatapointListDto[];
|
|
4649
4649
|
}
|
|
4650
4650
|
export interface NamedCompanyResourceUtilizationDatapointListDto extends CompanyResourceUtilizationDatapointListDto {
|
|
4651
4651
|
companyId: string;
|
|
@@ -4845,8 +4845,8 @@ export interface CreateMrbTemplateRequest {
|
|
|
4845
4845
|
pdfFilename?: string | null;
|
|
4846
4846
|
}
|
|
4847
4847
|
export interface UpdateMrbTemplate {
|
|
4848
|
-
id
|
|
4849
|
-
title
|
|
4848
|
+
id: string;
|
|
4849
|
+
title: string;
|
|
4850
4850
|
tableOfContents?: MrbTemplateTableOfContentsDto | null;
|
|
4851
4851
|
elements?: MrbTemplateUpdateElementDto[];
|
|
4852
4852
|
contentIndicator?: string | null;
|
|
@@ -5049,7 +5049,7 @@ export interface TraceWorkOrderListDto {
|
|
|
5049
5049
|
id: string;
|
|
5050
5050
|
part: PartDto;
|
|
5051
5051
|
quantity: number;
|
|
5052
|
-
unit
|
|
5052
|
+
unit: string | null;
|
|
5053
5053
|
status: WorkorderStatus;
|
|
5054
5054
|
plannedStart?: Date | null;
|
|
5055
5055
|
plannedEnd?: Date | null;
|
|
@@ -5461,13 +5461,13 @@ export interface MachineDayKpiDto {
|
|
|
5461
5461
|
utilizationGoal: number;
|
|
5462
5462
|
}
|
|
5463
5463
|
export interface MachineDailyUptimeDto {
|
|
5464
|
-
date
|
|
5464
|
+
date: Date;
|
|
5465
5465
|
historicUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
|
|
5466
5466
|
todayUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
|
|
5467
5467
|
}
|
|
5468
5468
|
export interface MachineDailyUptimePointDto {
|
|
5469
|
-
date
|
|
5470
|
-
uptime
|
|
5469
|
+
date: Date;
|
|
5470
|
+
uptime: number;
|
|
5471
5471
|
}
|
|
5472
5472
|
export interface MachineGroupDto {
|
|
5473
5473
|
id: string;
|
|
@@ -5807,8 +5807,8 @@ export interface TransferToMachineRequest {
|
|
|
5807
5807
|
programs?: ProgramSelectionRequest[] | null;
|
|
5808
5808
|
}
|
|
5809
5809
|
export interface ProgramSelectionRequest {
|
|
5810
|
-
id
|
|
5811
|
-
version
|
|
5810
|
+
id: string;
|
|
5811
|
+
version: number;
|
|
5812
5812
|
}
|
|
5813
5813
|
export interface UploadCamFileDto {
|
|
5814
5814
|
uploadUrl: string;
|
|
@@ -6156,7 +6156,7 @@ export interface MarkdownNotesDto {
|
|
|
6156
6156
|
}
|
|
6157
6157
|
export interface SaveMarkdownNotes {
|
|
6158
6158
|
id: string;
|
|
6159
|
-
markdown
|
|
6159
|
+
markdown: string;
|
|
6160
6160
|
}
|
|
6161
6161
|
export interface CncToolTypeDto {
|
|
6162
6162
|
id: string;
|
|
@@ -6329,7 +6329,7 @@ export interface UpdateKeepSettings {
|
|
|
6329
6329
|
}
|
|
6330
6330
|
export interface FixtureListDto {
|
|
6331
6331
|
results: FixtureDto[];
|
|
6332
|
-
continuationToken
|
|
6332
|
+
continuationToken: string | null;
|
|
6333
6333
|
}
|
|
6334
6334
|
export interface FixtureDto {
|
|
6335
6335
|
fixtureId: string;
|
|
@@ -6617,7 +6617,7 @@ export interface UpdateMachineInactivitySubscription {
|
|
|
6617
6617
|
export interface IntegrationCredentialDto {
|
|
6618
6618
|
type: CredentialTypeDto;
|
|
6619
6619
|
id: string;
|
|
6620
|
-
name
|
|
6620
|
+
name: string;
|
|
6621
6621
|
clientId?: string | null;
|
|
6622
6622
|
expirationDate?: Date | null;
|
|
6623
6623
|
activationDate?: Date | null;
|
|
@@ -6766,7 +6766,7 @@ export interface BookingParcelDto {
|
|
|
6766
6766
|
materialPartName?: string | null;
|
|
6767
6767
|
materialPartNumber?: string | null;
|
|
6768
6768
|
covered: MaterialCoveredDto;
|
|
6769
|
-
item
|
|
6769
|
+
item: BookingItemDto;
|
|
6770
6770
|
}
|
|
6771
6771
|
export type MaterialCoveredDto = "NotDefined" | "NotCovered" | "Covered";
|
|
6772
6772
|
export interface BookingItemDto {
|
|
@@ -6807,11 +6807,11 @@ export type BookingTaskDto = "MyTasks" | "OthersTasks";
|
|
|
6807
6807
|
export type BookingCreatedByDto = "MyBookings" | "OthersBookings";
|
|
6808
6808
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
6809
6809
|
export interface BookingFilterResultsDto {
|
|
6810
|
-
bookingStatus
|
|
6811
|
-
transportKind
|
|
6812
|
-
parcelKind
|
|
6813
|
-
fromLocations
|
|
6814
|
-
toLocations
|
|
6810
|
+
bookingStatus: BookingStatusResultsDto[];
|
|
6811
|
+
transportKind: TransportKindResultsDto[];
|
|
6812
|
+
parcelKind: ParcelKindResultsDto[];
|
|
6813
|
+
fromLocations: LocationZoneGroupDto[];
|
|
6814
|
+
toLocations: LocationZoneGroupDto[];
|
|
6815
6815
|
}
|
|
6816
6816
|
export interface BookingStatusResultsDto {
|
|
6817
6817
|
bookingStatus?: BookingStatusDto;
|
|
@@ -6897,23 +6897,23 @@ export interface BookingStatusUpdateDto {
|
|
|
6897
6897
|
deliveryExceptionComment?: string | null;
|
|
6898
6898
|
}
|
|
6899
6899
|
export interface MoveInfoscreenDto {
|
|
6900
|
-
id
|
|
6901
|
-
name
|
|
6902
|
-
slug
|
|
6903
|
-
fromZoneIds
|
|
6904
|
-
fromLocationIds
|
|
6905
|
-
toZoneIds
|
|
6906
|
-
toLocationIds
|
|
6900
|
+
id: string;
|
|
6901
|
+
name: string;
|
|
6902
|
+
slug: string;
|
|
6903
|
+
fromZoneIds: string[];
|
|
6904
|
+
fromLocationIds: string[];
|
|
6905
|
+
toZoneIds: string[];
|
|
6906
|
+
toLocationIds: string[];
|
|
6907
6907
|
}
|
|
6908
6908
|
export interface CreateMoveInfoscreenRequestDto {
|
|
6909
|
-
name
|
|
6909
|
+
name: string;
|
|
6910
6910
|
fromZoneIds?: string[];
|
|
6911
6911
|
fromLocationIds?: string[];
|
|
6912
6912
|
toZoneIds?: string[];
|
|
6913
6913
|
toLocationIds?: string[];
|
|
6914
6914
|
}
|
|
6915
6915
|
export interface UpdateMoveInfoscreenRequestDto {
|
|
6916
|
-
name
|
|
6916
|
+
name: string;
|
|
6917
6917
|
fromZoneIds?: string[];
|
|
6918
6918
|
fromLocationIds?: string[];
|
|
6919
6919
|
toZoneIds?: string[];
|
|
@@ -6969,15 +6969,15 @@ export interface MoveSubscriptionDto {
|
|
|
6969
6969
|
}
|
|
6970
6970
|
export interface MoveSubscriptionZoneDto {
|
|
6971
6971
|
zoneId: string;
|
|
6972
|
-
bookingFromLocation
|
|
6973
|
-
bookingToLocation
|
|
6974
|
-
locationChange
|
|
6972
|
+
bookingFromLocation: boolean;
|
|
6973
|
+
bookingToLocation: boolean;
|
|
6974
|
+
locationChange: boolean;
|
|
6975
6975
|
}
|
|
6976
6976
|
export interface MoveSubscriptionLocationDto {
|
|
6977
6977
|
locationId: string;
|
|
6978
|
-
bookingFromLocation
|
|
6979
|
-
bookingToLocation
|
|
6980
|
-
locationChange
|
|
6978
|
+
bookingFromLocation: boolean;
|
|
6979
|
+
bookingToLocation: boolean;
|
|
6980
|
+
locationChange: boolean;
|
|
6981
6981
|
}
|
|
6982
6982
|
export interface UpdateNotifications {
|
|
6983
6983
|
enabledNotifications: boolean;
|
|
@@ -6987,15 +6987,15 @@ export interface UpdateNotifications {
|
|
|
6987
6987
|
}
|
|
6988
6988
|
export interface MoveSubscriptionZoneUpdateDto {
|
|
6989
6989
|
zoneId: string;
|
|
6990
|
-
bookingFromLocation
|
|
6991
|
-
bookingToLocation
|
|
6992
|
-
locationChange
|
|
6990
|
+
bookingFromLocation: boolean;
|
|
6991
|
+
bookingToLocation: boolean;
|
|
6992
|
+
locationChange: boolean;
|
|
6993
6993
|
}
|
|
6994
6994
|
export interface MoveSubscriptionLocationUpdateDto {
|
|
6995
6995
|
locationId: string;
|
|
6996
|
-
bookingFromLocation
|
|
6997
|
-
bookingToLocation
|
|
6998
|
-
locationChange
|
|
6996
|
+
bookingFromLocation: boolean;
|
|
6997
|
+
bookingToLocation: boolean;
|
|
6998
|
+
locationChange: boolean;
|
|
6999
6999
|
}
|
|
7000
7000
|
export interface SearchParcelDto {
|
|
7001
7001
|
parcelId: string;
|
|
@@ -7037,7 +7037,7 @@ export interface TrackingHistoryDto {
|
|
|
7037
7037
|
materialPartName?: string | null;
|
|
7038
7038
|
materialPartNumber?: string | null;
|
|
7039
7039
|
category?: string | null;
|
|
7040
|
-
currentTracking
|
|
7040
|
+
currentTracking: TrackingEventDto | null;
|
|
7041
7041
|
trackingEvents: TrackingEventDto[];
|
|
7042
7042
|
suggestions?: SuggestionsItemDto | null;
|
|
7043
7043
|
}
|
|
@@ -7085,7 +7085,7 @@ export interface TrackingHistoryFlattenedDto {
|
|
|
7085
7085
|
materialPartName?: string | null;
|
|
7086
7086
|
materialPartNumber?: string | null;
|
|
7087
7087
|
category?: string | null;
|
|
7088
|
-
currentTracking
|
|
7088
|
+
currentTracking: TrackingEventDto | null;
|
|
7089
7089
|
trackingEvents: TrackingEventDto[];
|
|
7090
7090
|
}
|
|
7091
7091
|
export interface TrackingParcelRequestListDto {
|
|
@@ -7144,26 +7144,26 @@ export interface EngineeringChangeOrdersDto {
|
|
|
7144
7144
|
engineeringChangeOrders?: EngineeringChangeOrderDto[];
|
|
7145
7145
|
}
|
|
7146
7146
|
export interface AddMesLink {
|
|
7147
|
-
uri
|
|
7148
|
-
name
|
|
7149
|
-
type
|
|
7147
|
+
uri: string;
|
|
7148
|
+
name: string;
|
|
7149
|
+
type: MesLinkTypeDto;
|
|
7150
7150
|
openInNewTab?: boolean;
|
|
7151
7151
|
description?: string | null;
|
|
7152
7152
|
}
|
|
7153
7153
|
export type MesLinkTypeDto = "Static" | "Operation" | "WorkOrder";
|
|
7154
7154
|
export interface MesLinkDto {
|
|
7155
|
-
id
|
|
7156
|
-
uri
|
|
7157
|
-
name
|
|
7158
|
-
type
|
|
7159
|
-
openInNewTab
|
|
7155
|
+
id: string;
|
|
7156
|
+
uri: string;
|
|
7157
|
+
name: string;
|
|
7158
|
+
type: MesLinkTypeDto;
|
|
7159
|
+
openInNewTab: boolean;
|
|
7160
7160
|
description?: string | null;
|
|
7161
7161
|
}
|
|
7162
7162
|
export interface UpdateMesLink {
|
|
7163
|
-
id
|
|
7164
|
-
uri
|
|
7165
|
-
name
|
|
7166
|
-
type
|
|
7163
|
+
id: string;
|
|
7164
|
+
uri: string;
|
|
7165
|
+
name: string;
|
|
7166
|
+
type: MesLinkTypeDto;
|
|
7167
7167
|
openInNewTab?: boolean;
|
|
7168
7168
|
description?: string | null;
|
|
7169
7169
|
moveLinkRequest?: MoveLinkRequest | null;
|
|
@@ -7252,7 +7252,7 @@ export interface WorkOrderAttachmentDto {
|
|
|
7252
7252
|
}
|
|
7253
7253
|
export interface DrawingDto {
|
|
7254
7254
|
drawingNumber: string;
|
|
7255
|
-
revision
|
|
7255
|
+
revision: string;
|
|
7256
7256
|
status: string;
|
|
7257
7257
|
files: DrawingFileDto[];
|
|
7258
7258
|
}
|
|
@@ -7268,20 +7268,20 @@ export interface OrderReferenceDto {
|
|
|
7268
7268
|
}
|
|
7269
7269
|
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
7270
7270
|
export interface ProductionOrderBomDto {
|
|
7271
|
-
position
|
|
7271
|
+
position: string;
|
|
7272
7272
|
lineNumber: number;
|
|
7273
7273
|
part: PartDto;
|
|
7274
|
-
dimension
|
|
7274
|
+
dimension: string;
|
|
7275
7275
|
operation: number;
|
|
7276
|
-
operationName
|
|
7276
|
+
operationName: string;
|
|
7277
7277
|
warehouse?: string | null;
|
|
7278
7278
|
fixedLocation?: string | null;
|
|
7279
|
-
fixedLocations
|
|
7280
|
-
unit
|
|
7279
|
+
fixedLocations: string[];
|
|
7280
|
+
unit: string;
|
|
7281
7281
|
quantityPerPart: number;
|
|
7282
7282
|
totalRequiredQuantity: number;
|
|
7283
7283
|
usedQuantity: number;
|
|
7284
|
-
availableQuantity
|
|
7284
|
+
availableQuantity: number | null;
|
|
7285
7285
|
drawing?: DrawingDto | null;
|
|
7286
7286
|
orderReference?: OrderReferenceDto | null;
|
|
7287
7287
|
status: MaterialStatus;
|
|
@@ -7294,19 +7294,19 @@ export interface InventoryDto {
|
|
|
7294
7294
|
siteId: string;
|
|
7295
7295
|
warehouseId: string;
|
|
7296
7296
|
locationId: string;
|
|
7297
|
-
batchNumber
|
|
7298
|
-
vendorBatch
|
|
7297
|
+
batchNumber: string;
|
|
7298
|
+
vendorBatch: string;
|
|
7299
7299
|
available: number;
|
|
7300
7300
|
}
|
|
7301
7301
|
export interface PickListSuggestionDto {
|
|
7302
|
-
position
|
|
7302
|
+
position: string;
|
|
7303
7303
|
lineNumber: number;
|
|
7304
7304
|
part: PartDto;
|
|
7305
|
-
dimension
|
|
7305
|
+
dimension: string;
|
|
7306
7306
|
operation: number;
|
|
7307
|
-
warehouse
|
|
7308
|
-
fixedLocation
|
|
7309
|
-
unit
|
|
7307
|
+
warehouse: string;
|
|
7308
|
+
fixedLocation: string;
|
|
7309
|
+
unit: string;
|
|
7310
7310
|
orderReference?: OrderReferenceDto | null;
|
|
7311
7311
|
quantityPerPart: number;
|
|
7312
7312
|
totalRequiredQuantity: number;
|
|
@@ -7360,7 +7360,7 @@ export interface NonConformanceAttachmentDto {
|
|
|
7360
7360
|
export interface WorkCenterDto {
|
|
7361
7361
|
id: string;
|
|
7362
7362
|
name: string;
|
|
7363
|
-
workCenterType
|
|
7363
|
+
workCenterType: string;
|
|
7364
7364
|
department?: DepartmentDto | null;
|
|
7365
7365
|
}
|
|
7366
7366
|
export interface MaterialPickListResultDto {
|
|
@@ -7477,7 +7477,7 @@ export interface SurroundingOperationDto {
|
|
|
7477
7477
|
}
|
|
7478
7478
|
export interface OperationPrerequisitesDto {
|
|
7479
7479
|
drawing?: boolean | null;
|
|
7480
|
-
materials
|
|
7480
|
+
materials: MaterialsPrerequisiteDto;
|
|
7481
7481
|
cncProgram?: boolean | null;
|
|
7482
7482
|
}
|
|
7483
7483
|
export interface MaterialsPrerequisiteDto {
|
|
@@ -7609,12 +7609,12 @@ export interface ReportOperationProgress {
|
|
|
7609
7609
|
export interface ReportOperationProgressDto {
|
|
7610
7610
|
workOrder: string;
|
|
7611
7611
|
operationNumber: number;
|
|
7612
|
-
resource
|
|
7612
|
+
resource: string;
|
|
7613
7613
|
goodQuantity?: number | null;
|
|
7614
7614
|
errorQuantity?: number | null;
|
|
7615
7615
|
errorCause?: ErrorCauseDto | null;
|
|
7616
|
-
nextStatus
|
|
7617
|
-
workType
|
|
7616
|
+
nextStatus: NextOperationStatusDto;
|
|
7617
|
+
workType: WorkTypeDto;
|
|
7618
7618
|
}
|
|
7619
7619
|
export type ErrorCauseDto = "None" | "Material" | "Machine" | "OperatingStaff";
|
|
7620
7620
|
export type NextOperationStatusDto = "InProgress" | "Stopped" | "Completed";
|
|
@@ -7978,7 +7978,7 @@ export interface ImaMaterialCheckDto {
|
|
|
7978
7978
|
updatedBy: string;
|
|
7979
7979
|
updatedById: string;
|
|
7980
7980
|
updatedByName: string;
|
|
7981
|
-
isDeleted
|
|
7981
|
+
isDeleted: boolean;
|
|
7982
7982
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
7983
7983
|
specificationResults: ImaSpecificationResultsDto;
|
|
7984
7984
|
}
|
|
@@ -8337,7 +8337,7 @@ export interface PurchaseOrderMaterialLineDetailsDto {
|
|
|
8337
8337
|
typeOfCertificate?: string | null;
|
|
8338
8338
|
}
|
|
8339
8339
|
export interface Part {
|
|
8340
|
-
partNumber
|
|
8340
|
+
partNumber: string;
|
|
8341
8341
|
partRevision?: string | null;
|
|
8342
8342
|
partName?: string | null;
|
|
8343
8343
|
customerPartNumber?: string | null;
|
|
@@ -9526,13 +9526,13 @@ export interface CreateWorkOrderMapping {
|
|
|
9526
9526
|
newWorkOrderId: string;
|
|
9527
9527
|
}
|
|
9528
9528
|
export interface WorkorderDiscussionMessageDto {
|
|
9529
|
-
id
|
|
9530
|
-
workorderId
|
|
9531
|
-
companyId
|
|
9532
|
-
content
|
|
9529
|
+
id: string;
|
|
9530
|
+
workorderId: string;
|
|
9531
|
+
companyId: string;
|
|
9532
|
+
content: string;
|
|
9533
9533
|
contentParts?: WorkOrderDiscussionContent[] | null;
|
|
9534
|
-
senderUpn
|
|
9535
|
-
senderName
|
|
9534
|
+
senderUpn: string;
|
|
9535
|
+
senderName: string;
|
|
9536
9536
|
operationId?: string | null;
|
|
9537
9537
|
operationName?: string | null;
|
|
9538
9538
|
resourceId?: string | null;
|
|
@@ -9550,10 +9550,10 @@ export interface AddDiscussionMessageRequest {
|
|
|
9550
9550
|
resourceId?: string | null;
|
|
9551
9551
|
}
|
|
9552
9552
|
export interface WorkorderDiscussionReadStatusDto {
|
|
9553
|
-
workorderId
|
|
9553
|
+
workorderId: string;
|
|
9554
9554
|
operationId?: string | null;
|
|
9555
9555
|
resourceId?: string | null;
|
|
9556
|
-
userUpn
|
|
9556
|
+
userUpn: string;
|
|
9557
9557
|
lastRead?: Date;
|
|
9558
9558
|
}
|
|
9559
9559
|
export interface SetDiscussionLastReadRequest {
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//----------------------
|
|
2
2
|
// <auto-generated>
|
|
3
|
-
// Generated using the NSwag toolchain v14.
|
|
3
|
+
// Generated using the NSwag toolchain v14.7.1.0 (NJsonSchema v11.6.1.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
//----------------------
|
|
6
6
|
/* eslint-disable */
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//----------------------
|
|
2
2
|
// <auto-generated>
|
|
3
|
-
// Generated using the NSwag toolchain v14.
|
|
3
|
+
// Generated using the NSwag toolchain v14.7.1.0 (NJsonSchema v11.6.1.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
//----------------------
|
|
6
6
|
|
|
@@ -30357,15 +30357,15 @@ export interface DowntimePeriodReasonDto {
|
|
|
30357
30357
|
startTime: Date;
|
|
30358
30358
|
endTime?: Date | null;
|
|
30359
30359
|
assetId: number;
|
|
30360
|
-
comment
|
|
30361
|
-
companyId
|
|
30360
|
+
comment: string | null;
|
|
30361
|
+
companyId: string | null;
|
|
30362
30362
|
reasonId: string;
|
|
30363
30363
|
autoCompleteDowntime?: boolean | null;
|
|
30364
30364
|
createdBy?: EmployeeDto | null;
|
|
30365
30365
|
updatedBy?: EmployeeDto | null;
|
|
30366
|
-
workOrderId
|
|
30367
|
-
partNumber
|
|
30368
|
-
partName
|
|
30366
|
+
workOrderId: string | null;
|
|
30367
|
+
partNumber: string | null;
|
|
30368
|
+
partName: string | null;
|
|
30369
30369
|
}
|
|
30370
30370
|
|
|
30371
30371
|
export type DowntimeReasonTypeDto = "Unplanned" | "Planned";
|
|
@@ -30390,8 +30390,8 @@ export interface WorkOrderDatapoint {
|
|
|
30390
30390
|
}
|
|
30391
30391
|
|
|
30392
30392
|
export interface ProgramDatapoint {
|
|
30393
|
-
timestamp
|
|
30394
|
-
programValue
|
|
30393
|
+
timestamp: number;
|
|
30394
|
+
programValue: string;
|
|
30395
30395
|
}
|
|
30396
30396
|
|
|
30397
30397
|
export interface TimelineFilterDto {
|
|
@@ -30423,7 +30423,7 @@ export interface ListMachineUptimesTodayRequest {
|
|
|
30423
30423
|
}
|
|
30424
30424
|
|
|
30425
30425
|
export interface PowerOnUtilizationList {
|
|
30426
|
-
machines
|
|
30426
|
+
machines: Machine[];
|
|
30427
30427
|
}
|
|
30428
30428
|
|
|
30429
30429
|
export interface Machine {
|
|
@@ -30989,9 +30989,9 @@ export interface UpdateCalendarSettingsCommand {
|
|
|
30989
30989
|
}
|
|
30990
30990
|
|
|
30991
30991
|
export interface CalendarDefinitionDto {
|
|
30992
|
-
id
|
|
30993
|
-
name
|
|
30994
|
-
hoursPerWeekday
|
|
30992
|
+
id: string;
|
|
30993
|
+
name: string;
|
|
30994
|
+
hoursPerWeekday: { [key in DayOfWeek]?: number; };
|
|
30995
30995
|
created?: Date | null;
|
|
30996
30996
|
updatedBy?: string | null;
|
|
30997
30997
|
}
|
|
@@ -31007,28 +31007,28 @@ export interface UpdateCalendarDefinitionRequest {
|
|
|
31007
31007
|
}
|
|
31008
31008
|
|
|
31009
31009
|
export interface ResourceCalendarPeriodSchedulesDto {
|
|
31010
|
-
groups
|
|
31011
|
-
ungroupedResources
|
|
31010
|
+
groups: ResourceCalendarPeriodGroupDto[];
|
|
31011
|
+
ungroupedResources: ResourceCalendarPeriodsDto[];
|
|
31012
31012
|
}
|
|
31013
31013
|
|
|
31014
31014
|
export interface ResourceCalendarPeriodGroupDto {
|
|
31015
|
-
resourceGroupName
|
|
31016
|
-
resources
|
|
31015
|
+
resourceGroupName: string;
|
|
31016
|
+
resources: ResourceCalendarPeriodsDto[];
|
|
31017
31017
|
}
|
|
31018
31018
|
|
|
31019
31019
|
export interface ResourceCalendarPeriodsDto {
|
|
31020
|
-
resourceExternalId
|
|
31021
|
-
resourceName
|
|
31022
|
-
periods
|
|
31020
|
+
resourceExternalId: string;
|
|
31021
|
+
resourceName: string;
|
|
31022
|
+
periods: ResourceCalendarPeriodDto[];
|
|
31023
31023
|
}
|
|
31024
31024
|
|
|
31025
31025
|
export interface ResourceCalendarPeriodDto {
|
|
31026
|
-
resourceExternalId
|
|
31027
|
-
calendarDefinitionId
|
|
31028
|
-
calendarDefinitionName
|
|
31029
|
-
effectiveFrom
|
|
31026
|
+
resourceExternalId: string;
|
|
31027
|
+
calendarDefinitionId: string;
|
|
31028
|
+
calendarDefinitionName: string;
|
|
31029
|
+
effectiveFrom: string;
|
|
31030
31030
|
effectiveTo?: string | null;
|
|
31031
|
-
targetPercent
|
|
31031
|
+
targetPercent: number;
|
|
31032
31032
|
comment?: string | null;
|
|
31033
31033
|
}
|
|
31034
31034
|
|
|
@@ -31052,8 +31052,8 @@ export interface DeleteResourceCalendarPeriod {
|
|
|
31052
31052
|
}
|
|
31053
31053
|
|
|
31054
31054
|
export interface PeriodKey {
|
|
31055
|
-
resourceExternalId
|
|
31056
|
-
effectiveFrom
|
|
31055
|
+
resourceExternalId: string;
|
|
31056
|
+
effectiveFrom: string;
|
|
31057
31057
|
}
|
|
31058
31058
|
|
|
31059
31059
|
export interface BulkAddResourceCalendarPeriods {
|
|
@@ -31089,14 +31089,14 @@ export interface ResourceDayKpiDto {
|
|
|
31089
31089
|
}
|
|
31090
31090
|
|
|
31091
31091
|
export interface ResourceDailyUptimeDto {
|
|
31092
|
-
date
|
|
31092
|
+
date: Date;
|
|
31093
31093
|
historicUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
31094
31094
|
todayUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
31095
31095
|
}
|
|
31096
31096
|
|
|
31097
31097
|
export interface ResourceDailyUptimePointDto {
|
|
31098
|
-
date
|
|
31099
|
-
uptime
|
|
31098
|
+
date: Date;
|
|
31099
|
+
uptime: number;
|
|
31100
31100
|
}
|
|
31101
31101
|
|
|
31102
31102
|
export interface UptimeTrendDataPointDto {
|
|
@@ -31236,7 +31236,7 @@ export interface WorkorderOperationEventDto {
|
|
|
31236
31236
|
isSetup: boolean;
|
|
31237
31237
|
employee?: EmployeeDto | null;
|
|
31238
31238
|
resourceId: string;
|
|
31239
|
-
description
|
|
31239
|
+
description: string;
|
|
31240
31240
|
part?: PartDto | null;
|
|
31241
31241
|
workorderDescription?: string | null;
|
|
31242
31242
|
operationDescription?: string | null;
|
|
@@ -31329,7 +31329,7 @@ export interface MachineDto {
|
|
|
31329
31329
|
export interface CreateMachineWithoutResource {
|
|
31330
31330
|
id: string;
|
|
31331
31331
|
name: string;
|
|
31332
|
-
description
|
|
31332
|
+
description: string | null;
|
|
31333
31333
|
type: string;
|
|
31334
31334
|
displayName?: string | null;
|
|
31335
31335
|
manufacturer?: string | null;
|
|
@@ -31354,7 +31354,7 @@ export interface CreateResourceWithMachine {
|
|
|
31354
31354
|
displayName?: string | null;
|
|
31355
31355
|
machineId: string;
|
|
31356
31356
|
machineName: string;
|
|
31357
|
-
machineDescription
|
|
31357
|
+
machineDescription: string | null;
|
|
31358
31358
|
machineType: string;
|
|
31359
31359
|
manufacturer?: string | null;
|
|
31360
31360
|
location?: string | null;
|
|
@@ -31504,14 +31504,14 @@ export interface MachineUtilizationDatapointListDto extends UtilizationDatapoint
|
|
|
31504
31504
|
}
|
|
31505
31505
|
|
|
31506
31506
|
export interface CompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
31507
|
-
groups
|
|
31508
|
-
ungroupedResources
|
|
31507
|
+
groups: ResourceGroupUtilizationDatapointListDto[];
|
|
31508
|
+
ungroupedResources: ResourceUtilizationDatapointListDto[];
|
|
31509
31509
|
}
|
|
31510
31510
|
|
|
31511
31511
|
export interface ResourceGroupUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
31512
31512
|
groupId: string;
|
|
31513
31513
|
groupName: string;
|
|
31514
|
-
resources
|
|
31514
|
+
resources: ResourceUtilizationDatapointListDto[];
|
|
31515
31515
|
}
|
|
31516
31516
|
|
|
31517
31517
|
export interface ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
@@ -31522,12 +31522,12 @@ export interface ResourceUtilizationDatapointListDto extends UtilizationDatapoin
|
|
|
31522
31522
|
}
|
|
31523
31523
|
|
|
31524
31524
|
export interface CrossCompanyUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
31525
|
-
companies
|
|
31525
|
+
companies: NamedCompanyUtilizationDatapointListDto[];
|
|
31526
31526
|
}
|
|
31527
31527
|
|
|
31528
31528
|
export interface CompanyUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
31529
|
-
groups
|
|
31530
|
-
ungroupedMachines
|
|
31529
|
+
groups: MachineGroupUtilizationDatapointListDto[];
|
|
31530
|
+
ungroupedMachines: MachineUtilizationDatapointListDto[];
|
|
31531
31531
|
}
|
|
31532
31532
|
|
|
31533
31533
|
export interface NamedCompanyUtilizationDatapointListDto extends CompanyUtilizationDatapointListDto {
|
|
@@ -31538,7 +31538,7 @@ export interface NamedCompanyUtilizationDatapointListDto extends CompanyUtilizat
|
|
|
31538
31538
|
export interface MachineGroupUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
31539
31539
|
groupId: string;
|
|
31540
31540
|
groupName: string;
|
|
31541
|
-
machines
|
|
31541
|
+
machines: MachineUtilizationDatapointListDto[];
|
|
31542
31542
|
}
|
|
31543
31543
|
|
|
31544
31544
|
export interface CrossCompanyResourceUtilizationDto {
|
|
@@ -31553,7 +31553,7 @@ export interface NamedCompanyResourceUtilizationDto extends CompanyResourceUtili
|
|
|
31553
31553
|
}
|
|
31554
31554
|
|
|
31555
31555
|
export interface CrossCompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
31556
|
-
companies
|
|
31556
|
+
companies: NamedCompanyResourceUtilizationDatapointListDto[];
|
|
31557
31557
|
}
|
|
31558
31558
|
|
|
31559
31559
|
export interface NamedCompanyResourceUtilizationDatapointListDto extends CompanyResourceUtilizationDatapointListDto {
|
|
@@ -31783,8 +31783,8 @@ export interface CreateMrbTemplateRequest {
|
|
|
31783
31783
|
}
|
|
31784
31784
|
|
|
31785
31785
|
export interface UpdateMrbTemplate {
|
|
31786
|
-
id
|
|
31787
|
-
title
|
|
31786
|
+
id: string;
|
|
31787
|
+
title: string;
|
|
31788
31788
|
tableOfContents?: MrbTemplateTableOfContentsDto | null;
|
|
31789
31789
|
elements?: MrbTemplateUpdateElementDto[];
|
|
31790
31790
|
contentIndicator?: string | null;
|
|
@@ -32015,7 +32015,7 @@ export interface TraceWorkOrderListDto {
|
|
|
32015
32015
|
id: string;
|
|
32016
32016
|
part: PartDto;
|
|
32017
32017
|
quantity: number;
|
|
32018
|
-
unit
|
|
32018
|
+
unit: string | null;
|
|
32019
32019
|
status: WorkorderStatus;
|
|
32020
32020
|
plannedStart?: Date | null;
|
|
32021
32021
|
plannedEnd?: Date | null;
|
|
@@ -32487,14 +32487,14 @@ export interface MachineDayKpiDto {
|
|
|
32487
32487
|
}
|
|
32488
32488
|
|
|
32489
32489
|
export interface MachineDailyUptimeDto {
|
|
32490
|
-
date
|
|
32490
|
+
date: Date;
|
|
32491
32491
|
historicUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
|
|
32492
32492
|
todayUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
|
|
32493
32493
|
}
|
|
32494
32494
|
|
|
32495
32495
|
export interface MachineDailyUptimePointDto {
|
|
32496
|
-
date
|
|
32497
|
-
uptime
|
|
32496
|
+
date: Date;
|
|
32497
|
+
uptime: number;
|
|
32498
32498
|
}
|
|
32499
32499
|
|
|
32500
32500
|
export interface MachineGroupDto {
|
|
@@ -32891,8 +32891,8 @@ export interface TransferToMachineRequest {
|
|
|
32891
32891
|
}
|
|
32892
32892
|
|
|
32893
32893
|
export interface ProgramSelectionRequest {
|
|
32894
|
-
id
|
|
32895
|
-
version
|
|
32894
|
+
id: string;
|
|
32895
|
+
version: number;
|
|
32896
32896
|
}
|
|
32897
32897
|
|
|
32898
32898
|
export interface UploadCamFileDto {
|
|
@@ -33284,7 +33284,7 @@ export interface MarkdownNotesDto {
|
|
|
33284
33284
|
|
|
33285
33285
|
export interface SaveMarkdownNotes {
|
|
33286
33286
|
id: string;
|
|
33287
|
-
markdown
|
|
33287
|
+
markdown: string;
|
|
33288
33288
|
}
|
|
33289
33289
|
|
|
33290
33290
|
export interface CncToolTypeDto {
|
|
@@ -33470,7 +33470,7 @@ export interface UpdateKeepSettings {
|
|
|
33470
33470
|
|
|
33471
33471
|
export interface FixtureListDto {
|
|
33472
33472
|
results: FixtureDto[];
|
|
33473
|
-
continuationToken
|
|
33473
|
+
continuationToken: string | null;
|
|
33474
33474
|
}
|
|
33475
33475
|
|
|
33476
33476
|
export interface FixtureDto {
|
|
@@ -33795,7 +33795,7 @@ export interface UpdateMachineInactivitySubscription {
|
|
|
33795
33795
|
export interface IntegrationCredentialDto {
|
|
33796
33796
|
type: CredentialTypeDto;
|
|
33797
33797
|
id: string;
|
|
33798
|
-
name
|
|
33798
|
+
name: string;
|
|
33799
33799
|
clientId?: string | null;
|
|
33800
33800
|
expirationDate?: Date | null;
|
|
33801
33801
|
activationDate?: Date | null;
|
|
@@ -33964,7 +33964,7 @@ export interface BookingParcelDto {
|
|
|
33964
33964
|
materialPartName?: string | null;
|
|
33965
33965
|
materialPartNumber?: string | null;
|
|
33966
33966
|
covered: MaterialCoveredDto;
|
|
33967
|
-
item
|
|
33967
|
+
item: BookingItemDto;
|
|
33968
33968
|
}
|
|
33969
33969
|
|
|
33970
33970
|
export type MaterialCoveredDto = "NotDefined" | "NotCovered" | "Covered";
|
|
@@ -34014,11 +34014,11 @@ export type BookingCreatedByDto = "MyBookings" | "OthersBookings";
|
|
|
34014
34014
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
34015
34015
|
|
|
34016
34016
|
export interface BookingFilterResultsDto {
|
|
34017
|
-
bookingStatus
|
|
34018
|
-
transportKind
|
|
34019
|
-
parcelKind
|
|
34020
|
-
fromLocations
|
|
34021
|
-
toLocations
|
|
34017
|
+
bookingStatus: BookingStatusResultsDto[];
|
|
34018
|
+
transportKind: TransportKindResultsDto[];
|
|
34019
|
+
parcelKind: ParcelKindResultsDto[];
|
|
34020
|
+
fromLocations: LocationZoneGroupDto[];
|
|
34021
|
+
toLocations: LocationZoneGroupDto[];
|
|
34022
34022
|
}
|
|
34023
34023
|
|
|
34024
34024
|
export interface BookingStatusResultsDto {
|
|
@@ -34116,17 +34116,17 @@ export interface BookingStatusUpdateDto {
|
|
|
34116
34116
|
}
|
|
34117
34117
|
|
|
34118
34118
|
export interface MoveInfoscreenDto {
|
|
34119
|
-
id
|
|
34120
|
-
name
|
|
34121
|
-
slug
|
|
34122
|
-
fromZoneIds
|
|
34123
|
-
fromLocationIds
|
|
34124
|
-
toZoneIds
|
|
34125
|
-
toLocationIds
|
|
34119
|
+
id: string;
|
|
34120
|
+
name: string;
|
|
34121
|
+
slug: string;
|
|
34122
|
+
fromZoneIds: string[];
|
|
34123
|
+
fromLocationIds: string[];
|
|
34124
|
+
toZoneIds: string[];
|
|
34125
|
+
toLocationIds: string[];
|
|
34126
34126
|
}
|
|
34127
34127
|
|
|
34128
34128
|
export interface CreateMoveInfoscreenRequestDto {
|
|
34129
|
-
name
|
|
34129
|
+
name: string;
|
|
34130
34130
|
fromZoneIds?: string[];
|
|
34131
34131
|
fromLocationIds?: string[];
|
|
34132
34132
|
toZoneIds?: string[];
|
|
@@ -34134,7 +34134,7 @@ export interface CreateMoveInfoscreenRequestDto {
|
|
|
34134
34134
|
}
|
|
34135
34135
|
|
|
34136
34136
|
export interface UpdateMoveInfoscreenRequestDto {
|
|
34137
|
-
name
|
|
34137
|
+
name: string;
|
|
34138
34138
|
fromZoneIds?: string[];
|
|
34139
34139
|
fromLocationIds?: string[];
|
|
34140
34140
|
toZoneIds?: string[];
|
|
@@ -34201,16 +34201,16 @@ export interface MoveSubscriptionDto {
|
|
|
34201
34201
|
|
|
34202
34202
|
export interface MoveSubscriptionZoneDto {
|
|
34203
34203
|
zoneId: string;
|
|
34204
|
-
bookingFromLocation
|
|
34205
|
-
bookingToLocation
|
|
34206
|
-
locationChange
|
|
34204
|
+
bookingFromLocation: boolean;
|
|
34205
|
+
bookingToLocation: boolean;
|
|
34206
|
+
locationChange: boolean;
|
|
34207
34207
|
}
|
|
34208
34208
|
|
|
34209
34209
|
export interface MoveSubscriptionLocationDto {
|
|
34210
34210
|
locationId: string;
|
|
34211
|
-
bookingFromLocation
|
|
34212
|
-
bookingToLocation
|
|
34213
|
-
locationChange
|
|
34211
|
+
bookingFromLocation: boolean;
|
|
34212
|
+
bookingToLocation: boolean;
|
|
34213
|
+
locationChange: boolean;
|
|
34214
34214
|
}
|
|
34215
34215
|
|
|
34216
34216
|
export interface UpdateNotifications {
|
|
@@ -34222,16 +34222,16 @@ export interface UpdateNotifications {
|
|
|
34222
34222
|
|
|
34223
34223
|
export interface MoveSubscriptionZoneUpdateDto {
|
|
34224
34224
|
zoneId: string;
|
|
34225
|
-
bookingFromLocation
|
|
34226
|
-
bookingToLocation
|
|
34227
|
-
locationChange
|
|
34225
|
+
bookingFromLocation: boolean;
|
|
34226
|
+
bookingToLocation: boolean;
|
|
34227
|
+
locationChange: boolean;
|
|
34228
34228
|
}
|
|
34229
34229
|
|
|
34230
34230
|
export interface MoveSubscriptionLocationUpdateDto {
|
|
34231
34231
|
locationId: string;
|
|
34232
|
-
bookingFromLocation
|
|
34233
|
-
bookingToLocation
|
|
34234
|
-
locationChange
|
|
34232
|
+
bookingFromLocation: boolean;
|
|
34233
|
+
bookingToLocation: boolean;
|
|
34234
|
+
locationChange: boolean;
|
|
34235
34235
|
}
|
|
34236
34236
|
|
|
34237
34237
|
export interface SearchParcelDto {
|
|
@@ -34279,7 +34279,7 @@ export interface TrackingHistoryDto {
|
|
|
34279
34279
|
materialPartName?: string | null;
|
|
34280
34280
|
materialPartNumber?: string | null;
|
|
34281
34281
|
category?: string | null;
|
|
34282
|
-
currentTracking
|
|
34282
|
+
currentTracking: TrackingEventDto | null;
|
|
34283
34283
|
trackingEvents: TrackingEventDto[];
|
|
34284
34284
|
suggestions?: SuggestionsItemDto | null;
|
|
34285
34285
|
}
|
|
@@ -34332,7 +34332,7 @@ export interface TrackingHistoryFlattenedDto {
|
|
|
34332
34332
|
materialPartName?: string | null;
|
|
34333
34333
|
materialPartNumber?: string | null;
|
|
34334
34334
|
category?: string | null;
|
|
34335
|
-
currentTracking
|
|
34335
|
+
currentTracking: TrackingEventDto | null;
|
|
34336
34336
|
trackingEvents: TrackingEventDto[];
|
|
34337
34337
|
}
|
|
34338
34338
|
|
|
@@ -34402,9 +34402,9 @@ export interface EngineeringChangeOrdersDto {
|
|
|
34402
34402
|
}
|
|
34403
34403
|
|
|
34404
34404
|
export interface AddMesLink {
|
|
34405
|
-
uri
|
|
34406
|
-
name
|
|
34407
|
-
type
|
|
34405
|
+
uri: string;
|
|
34406
|
+
name: string;
|
|
34407
|
+
type: MesLinkTypeDto;
|
|
34408
34408
|
openInNewTab?: boolean;
|
|
34409
34409
|
description?: string | null;
|
|
34410
34410
|
}
|
|
@@ -34412,19 +34412,19 @@ export interface AddMesLink {
|
|
|
34412
34412
|
export type MesLinkTypeDto = "Static" | "Operation" | "WorkOrder";
|
|
34413
34413
|
|
|
34414
34414
|
export interface MesLinkDto {
|
|
34415
|
-
id
|
|
34416
|
-
uri
|
|
34417
|
-
name
|
|
34418
|
-
type
|
|
34419
|
-
openInNewTab
|
|
34415
|
+
id: string;
|
|
34416
|
+
uri: string;
|
|
34417
|
+
name: string;
|
|
34418
|
+
type: MesLinkTypeDto;
|
|
34419
|
+
openInNewTab: boolean;
|
|
34420
34420
|
description?: string | null;
|
|
34421
34421
|
}
|
|
34422
34422
|
|
|
34423
34423
|
export interface UpdateMesLink {
|
|
34424
|
-
id
|
|
34425
|
-
uri
|
|
34426
|
-
name
|
|
34427
|
-
type
|
|
34424
|
+
id: string;
|
|
34425
|
+
uri: string;
|
|
34426
|
+
name: string;
|
|
34427
|
+
type: MesLinkTypeDto;
|
|
34428
34428
|
openInNewTab?: boolean;
|
|
34429
34429
|
description?: string | null;
|
|
34430
34430
|
moveLinkRequest?: MoveLinkRequest | null;
|
|
@@ -34521,7 +34521,7 @@ export interface WorkOrderAttachmentDto {
|
|
|
34521
34521
|
|
|
34522
34522
|
export interface DrawingDto {
|
|
34523
34523
|
drawingNumber: string;
|
|
34524
|
-
revision
|
|
34524
|
+
revision: string;
|
|
34525
34525
|
status: string;
|
|
34526
34526
|
files: DrawingFileDto[];
|
|
34527
34527
|
}
|
|
@@ -34541,20 +34541,20 @@ export interface OrderReferenceDto {
|
|
|
34541
34541
|
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
34542
34542
|
|
|
34543
34543
|
export interface ProductionOrderBomDto {
|
|
34544
|
-
position
|
|
34544
|
+
position: string;
|
|
34545
34545
|
lineNumber: number;
|
|
34546
34546
|
part: PartDto;
|
|
34547
|
-
dimension
|
|
34547
|
+
dimension: string;
|
|
34548
34548
|
operation: number;
|
|
34549
|
-
operationName
|
|
34549
|
+
operationName: string;
|
|
34550
34550
|
warehouse?: string | null;
|
|
34551
34551
|
fixedLocation?: string | null;
|
|
34552
|
-
fixedLocations
|
|
34553
|
-
unit
|
|
34552
|
+
fixedLocations: string[];
|
|
34553
|
+
unit: string;
|
|
34554
34554
|
quantityPerPart: number;
|
|
34555
34555
|
totalRequiredQuantity: number;
|
|
34556
34556
|
usedQuantity: number;
|
|
34557
|
-
availableQuantity
|
|
34557
|
+
availableQuantity: number | null;
|
|
34558
34558
|
drawing?: DrawingDto | null;
|
|
34559
34559
|
orderReference?: OrderReferenceDto | null;
|
|
34560
34560
|
status: MaterialStatus;
|
|
@@ -34568,20 +34568,20 @@ export interface InventoryDto {
|
|
|
34568
34568
|
siteId: string;
|
|
34569
34569
|
warehouseId: string;
|
|
34570
34570
|
locationId: string;
|
|
34571
|
-
batchNumber
|
|
34572
|
-
vendorBatch
|
|
34571
|
+
batchNumber: string;
|
|
34572
|
+
vendorBatch: string;
|
|
34573
34573
|
available: number;
|
|
34574
34574
|
}
|
|
34575
34575
|
|
|
34576
34576
|
export interface PickListSuggestionDto {
|
|
34577
|
-
position
|
|
34577
|
+
position: string;
|
|
34578
34578
|
lineNumber: number;
|
|
34579
34579
|
part: PartDto;
|
|
34580
|
-
dimension
|
|
34580
|
+
dimension: string;
|
|
34581
34581
|
operation: number;
|
|
34582
|
-
warehouse
|
|
34583
|
-
fixedLocation
|
|
34584
|
-
unit
|
|
34582
|
+
warehouse: string;
|
|
34583
|
+
fixedLocation: string;
|
|
34584
|
+
unit: string;
|
|
34585
34585
|
orderReference?: OrderReferenceDto | null;
|
|
34586
34586
|
quantityPerPart: number;
|
|
34587
34587
|
totalRequiredQuantity: number;
|
|
@@ -34640,7 +34640,7 @@ export interface NonConformanceAttachmentDto {
|
|
|
34640
34640
|
export interface WorkCenterDto {
|
|
34641
34641
|
id: string;
|
|
34642
34642
|
name: string;
|
|
34643
|
-
workCenterType
|
|
34643
|
+
workCenterType: string;
|
|
34644
34644
|
department?: DepartmentDto | null;
|
|
34645
34645
|
}
|
|
34646
34646
|
|
|
@@ -34767,7 +34767,7 @@ export interface SurroundingOperationDto {
|
|
|
34767
34767
|
|
|
34768
34768
|
export interface OperationPrerequisitesDto {
|
|
34769
34769
|
drawing?: boolean | null;
|
|
34770
|
-
materials
|
|
34770
|
+
materials: MaterialsPrerequisiteDto;
|
|
34771
34771
|
cncProgram?: boolean | null;
|
|
34772
34772
|
}
|
|
34773
34773
|
|
|
@@ -34915,12 +34915,12 @@ export interface ReportOperationProgress {
|
|
|
34915
34915
|
export interface ReportOperationProgressDto {
|
|
34916
34916
|
workOrder: string;
|
|
34917
34917
|
operationNumber: number;
|
|
34918
|
-
resource
|
|
34918
|
+
resource: string;
|
|
34919
34919
|
goodQuantity?: number | null;
|
|
34920
34920
|
errorQuantity?: number | null;
|
|
34921
34921
|
errorCause?: ErrorCauseDto | null;
|
|
34922
|
-
nextStatus
|
|
34923
|
-
workType
|
|
34922
|
+
nextStatus: NextOperationStatusDto;
|
|
34923
|
+
workType: WorkTypeDto;
|
|
34924
34924
|
}
|
|
34925
34925
|
|
|
34926
34926
|
export type ErrorCauseDto = "None" | "Material" | "Machine" | "OperatingStaff";
|
|
@@ -35331,7 +35331,7 @@ export interface ImaMaterialCheckDto {
|
|
|
35331
35331
|
updatedBy: string;
|
|
35332
35332
|
updatedById: string;
|
|
35333
35333
|
updatedByName: string;
|
|
35334
|
-
isDeleted
|
|
35334
|
+
isDeleted: boolean;
|
|
35335
35335
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
35336
35336
|
specificationResults: ImaSpecificationResultsDto;
|
|
35337
35337
|
}
|
|
@@ -35741,7 +35741,7 @@ export interface PurchaseOrderMaterialLineDetailsDto {
|
|
|
35741
35741
|
}
|
|
35742
35742
|
|
|
35743
35743
|
export interface Part {
|
|
35744
|
-
partNumber
|
|
35744
|
+
partNumber: string;
|
|
35745
35745
|
partRevision?: string | null;
|
|
35746
35746
|
partName?: string | null;
|
|
35747
35747
|
customerPartNumber?: string | null;
|
|
@@ -37082,13 +37082,13 @@ export interface CreateWorkOrderMapping {
|
|
|
37082
37082
|
}
|
|
37083
37083
|
|
|
37084
37084
|
export interface WorkorderDiscussionMessageDto {
|
|
37085
|
-
id
|
|
37086
|
-
workorderId
|
|
37087
|
-
companyId
|
|
37088
|
-
content
|
|
37085
|
+
id: string;
|
|
37086
|
+
workorderId: string;
|
|
37087
|
+
companyId: string;
|
|
37088
|
+
content: string;
|
|
37089
37089
|
contentParts?: WorkOrderDiscussionContent[] | null;
|
|
37090
|
-
senderUpn
|
|
37091
|
-
senderName
|
|
37090
|
+
senderUpn: string;
|
|
37091
|
+
senderName: string;
|
|
37092
37092
|
operationId?: string | null;
|
|
37093
37093
|
operationName?: string | null;
|
|
37094
37094
|
resourceId?: string | null;
|
|
@@ -37110,10 +37110,10 @@ export interface AddDiscussionMessageRequest {
|
|
|
37110
37110
|
}
|
|
37111
37111
|
|
|
37112
37112
|
export interface WorkorderDiscussionReadStatusDto {
|
|
37113
|
-
workorderId
|
|
37113
|
+
workorderId: string;
|
|
37114
37114
|
operationId?: string | null;
|
|
37115
37115
|
resourceId?: string | null;
|
|
37116
|
-
userUpn
|
|
37116
|
+
userUpn: string;
|
|
37117
37117
|
lastRead?: Date;
|
|
37118
37118
|
}
|
|
37119
37119
|
|