@ignos/api-client 20260519.129.1-alpha → 20260519.130.1
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;
|
|
@@ -4156,9 +4156,9 @@ export interface UpdateCalendarSettingsCommand {
|
|
|
4156
4156
|
defaultPerformancePercent?: number | null;
|
|
4157
4157
|
}
|
|
4158
4158
|
export interface CalendarDefinitionDto {
|
|
4159
|
-
id
|
|
4160
|
-
name
|
|
4161
|
-
hoursPerWeekday
|
|
4159
|
+
id?: string;
|
|
4160
|
+
name?: string;
|
|
4161
|
+
hoursPerWeekday?: {
|
|
4162
4162
|
[key in DayOfWeek]?: number;
|
|
4163
4163
|
};
|
|
4164
4164
|
created?: Date | null;
|
|
@@ -4177,25 +4177,25 @@ export interface UpdateCalendarDefinitionRequest {
|
|
|
4177
4177
|
} | null;
|
|
4178
4178
|
}
|
|
4179
4179
|
export interface ResourceCalendarPeriodSchedulesDto {
|
|
4180
|
-
groups
|
|
4181
|
-
ungroupedResources
|
|
4180
|
+
groups?: ResourceCalendarPeriodGroupDto[];
|
|
4181
|
+
ungroupedResources?: ResourceCalendarPeriodsDto[];
|
|
4182
4182
|
}
|
|
4183
4183
|
export interface ResourceCalendarPeriodGroupDto {
|
|
4184
|
-
resourceGroupName
|
|
4185
|
-
resources
|
|
4184
|
+
resourceGroupName?: string;
|
|
4185
|
+
resources?: ResourceCalendarPeriodsDto[];
|
|
4186
4186
|
}
|
|
4187
4187
|
export interface ResourceCalendarPeriodsDto {
|
|
4188
|
-
resourceExternalId
|
|
4189
|
-
resourceName
|
|
4190
|
-
periods
|
|
4188
|
+
resourceExternalId?: string;
|
|
4189
|
+
resourceName?: string;
|
|
4190
|
+
periods?: ResourceCalendarPeriodDto[];
|
|
4191
4191
|
}
|
|
4192
4192
|
export interface ResourceCalendarPeriodDto {
|
|
4193
|
-
resourceExternalId
|
|
4194
|
-
calendarDefinitionId
|
|
4195
|
-
calendarDefinitionName
|
|
4196
|
-
effectiveFrom
|
|
4193
|
+
resourceExternalId?: string;
|
|
4194
|
+
calendarDefinitionId?: string;
|
|
4195
|
+
calendarDefinitionName?: string;
|
|
4196
|
+
effectiveFrom?: string;
|
|
4197
4197
|
effectiveTo?: string | null;
|
|
4198
|
-
targetPercent
|
|
4198
|
+
targetPercent?: number;
|
|
4199
4199
|
comment?: string | null;
|
|
4200
4200
|
}
|
|
4201
4201
|
export interface AddResourceCalendarPeriod {
|
|
@@ -4215,8 +4215,8 @@ export interface DeleteResourceCalendarPeriod {
|
|
|
4215
4215
|
periods: PeriodKey[];
|
|
4216
4216
|
}
|
|
4217
4217
|
export interface PeriodKey {
|
|
4218
|
-
resourceExternalId
|
|
4219
|
-
effectiveFrom
|
|
4218
|
+
resourceExternalId?: string;
|
|
4219
|
+
effectiveFrom?: string;
|
|
4220
4220
|
}
|
|
4221
4221
|
export interface BulkAddResourceCalendarPeriods {
|
|
4222
4222
|
resourceExternalIds: string[];
|
|
@@ -4246,13 +4246,13 @@ export interface ResourceDayKpiDto {
|
|
|
4246
4246
|
utilizationGoal: number;
|
|
4247
4247
|
}
|
|
4248
4248
|
export interface ResourceDailyUptimeDto {
|
|
4249
|
-
date
|
|
4249
|
+
date?: Date;
|
|
4250
4250
|
historicUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
4251
4251
|
todayUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
4252
4252
|
}
|
|
4253
4253
|
export interface ResourceDailyUptimePointDto {
|
|
4254
|
-
date
|
|
4255
|
-
uptime
|
|
4254
|
+
date?: Date;
|
|
4255
|
+
uptime?: number;
|
|
4256
4256
|
}
|
|
4257
4257
|
export interface UptimeTrendDataPointDto {
|
|
4258
4258
|
timestamp: Date;
|
|
@@ -4375,7 +4375,7 @@ export interface WorkorderOperationEventDto {
|
|
|
4375
4375
|
isSetup: boolean;
|
|
4376
4376
|
employee?: EmployeeDto | null;
|
|
4377
4377
|
resourceId: string;
|
|
4378
|
-
description
|
|
4378
|
+
description?: string;
|
|
4379
4379
|
part?: PartDto | null;
|
|
4380
4380
|
workorderDescription?: string | null;
|
|
4381
4381
|
operationDescription?: string | null;
|
|
@@ -4455,7 +4455,7 @@ export interface MachineDto {
|
|
|
4455
4455
|
export interface CreateMachineWithoutResource {
|
|
4456
4456
|
id: string;
|
|
4457
4457
|
name: string;
|
|
4458
|
-
description
|
|
4458
|
+
description?: string | null;
|
|
4459
4459
|
type: string;
|
|
4460
4460
|
displayName?: string | null;
|
|
4461
4461
|
manufacturer?: string | null;
|
|
@@ -4478,7 +4478,7 @@ export interface CreateResourceWithMachine {
|
|
|
4478
4478
|
displayName?: string | null;
|
|
4479
4479
|
machineId: string;
|
|
4480
4480
|
machineName: string;
|
|
4481
|
-
machineDescription
|
|
4481
|
+
machineDescription?: string | null;
|
|
4482
4482
|
machineType: string;
|
|
4483
4483
|
manufacturer?: string | null;
|
|
4484
4484
|
location?: string | null;
|
|
@@ -4606,13 +4606,13 @@ export interface MachineUtilizationDatapointListDto extends UtilizationDatapoint
|
|
|
4606
4606
|
description?: string | null;
|
|
4607
4607
|
}
|
|
4608
4608
|
export interface CompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4609
|
-
groups
|
|
4610
|
-
ungroupedResources
|
|
4609
|
+
groups?: ResourceGroupUtilizationDatapointListDto[];
|
|
4610
|
+
ungroupedResources?: ResourceUtilizationDatapointListDto[];
|
|
4611
4611
|
}
|
|
4612
4612
|
export interface ResourceGroupUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4613
4613
|
groupId: string;
|
|
4614
4614
|
groupName: string;
|
|
4615
|
-
resources
|
|
4615
|
+
resources?: ResourceUtilizationDatapointListDto[];
|
|
4616
4616
|
}
|
|
4617
4617
|
export interface ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4618
4618
|
externalId: string;
|
|
@@ -4621,11 +4621,11 @@ export interface ResourceUtilizationDatapointListDto extends UtilizationDatapoin
|
|
|
4621
4621
|
description?: string | null;
|
|
4622
4622
|
}
|
|
4623
4623
|
export interface CrossCompanyUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4624
|
-
companies
|
|
4624
|
+
companies?: NamedCompanyUtilizationDatapointListDto[];
|
|
4625
4625
|
}
|
|
4626
4626
|
export interface CompanyUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4627
|
-
groups
|
|
4628
|
-
ungroupedMachines
|
|
4627
|
+
groups?: MachineGroupUtilizationDatapointListDto[];
|
|
4628
|
+
ungroupedMachines?: MachineUtilizationDatapointListDto[];
|
|
4629
4629
|
}
|
|
4630
4630
|
export interface NamedCompanyUtilizationDatapointListDto extends CompanyUtilizationDatapointListDto {
|
|
4631
4631
|
companyId: string;
|
|
@@ -4634,7 +4634,7 @@ export interface NamedCompanyUtilizationDatapointListDto extends CompanyUtilizat
|
|
|
4634
4634
|
export interface MachineGroupUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4635
4635
|
groupId: string;
|
|
4636
4636
|
groupName: string;
|
|
4637
|
-
machines
|
|
4637
|
+
machines?: MachineUtilizationDatapointListDto[];
|
|
4638
4638
|
}
|
|
4639
4639
|
export interface CrossCompanyResourceUtilizationDto {
|
|
4640
4640
|
utilizationType: ResourceUtilizationTypeDto;
|
|
@@ -4646,7 +4646,7 @@ export interface NamedCompanyResourceUtilizationDto extends CompanyResourceUtili
|
|
|
4646
4646
|
companyName: string;
|
|
4647
4647
|
}
|
|
4648
4648
|
export interface CrossCompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
4649
|
-
companies
|
|
4649
|
+
companies?: NamedCompanyResourceUtilizationDatapointListDto[];
|
|
4650
4650
|
}
|
|
4651
4651
|
export interface NamedCompanyResourceUtilizationDatapointListDto extends CompanyResourceUtilizationDatapointListDto {
|
|
4652
4652
|
companyId: string;
|
|
@@ -4846,8 +4846,8 @@ export interface CreateMrbTemplateRequest {
|
|
|
4846
4846
|
pdfFilename?: string | null;
|
|
4847
4847
|
}
|
|
4848
4848
|
export interface UpdateMrbTemplate {
|
|
4849
|
-
id
|
|
4850
|
-
title
|
|
4849
|
+
id?: string;
|
|
4850
|
+
title?: string;
|
|
4851
4851
|
tableOfContents?: MrbTemplateTableOfContentsDto | null;
|
|
4852
4852
|
elements?: MrbTemplateUpdateElementDto[];
|
|
4853
4853
|
contentIndicator?: string | null;
|
|
@@ -5055,7 +5055,7 @@ export interface TraceWorkOrderListDto {
|
|
|
5055
5055
|
id: string;
|
|
5056
5056
|
part: PartDto;
|
|
5057
5057
|
quantity: number;
|
|
5058
|
-
unit
|
|
5058
|
+
unit?: string | null;
|
|
5059
5059
|
status: WorkorderStatus;
|
|
5060
5060
|
plannedStart?: Date | null;
|
|
5061
5061
|
plannedEnd?: Date | null;
|
|
@@ -5467,13 +5467,13 @@ export interface MachineDayKpiDto {
|
|
|
5467
5467
|
utilizationGoal: number;
|
|
5468
5468
|
}
|
|
5469
5469
|
export interface MachineDailyUptimeDto {
|
|
5470
|
-
date
|
|
5470
|
+
date?: Date;
|
|
5471
5471
|
historicUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
|
|
5472
5472
|
todayUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
|
|
5473
5473
|
}
|
|
5474
5474
|
export interface MachineDailyUptimePointDto {
|
|
5475
|
-
date
|
|
5476
|
-
uptime
|
|
5475
|
+
date?: Date;
|
|
5476
|
+
uptime?: number;
|
|
5477
5477
|
}
|
|
5478
5478
|
export interface MachineGroupDto {
|
|
5479
5479
|
id: string;
|
|
@@ -5813,8 +5813,8 @@ export interface TransferToMachineRequest {
|
|
|
5813
5813
|
programs?: ProgramSelectionRequest[] | null;
|
|
5814
5814
|
}
|
|
5815
5815
|
export interface ProgramSelectionRequest {
|
|
5816
|
-
id
|
|
5817
|
-
version
|
|
5816
|
+
id?: string;
|
|
5817
|
+
version?: number;
|
|
5818
5818
|
}
|
|
5819
5819
|
export interface UploadCamFileDto {
|
|
5820
5820
|
uploadUrl: string;
|
|
@@ -6162,7 +6162,7 @@ export interface MarkdownNotesDto {
|
|
|
6162
6162
|
}
|
|
6163
6163
|
export interface SaveMarkdownNotes {
|
|
6164
6164
|
id: string;
|
|
6165
|
-
markdown
|
|
6165
|
+
markdown?: string;
|
|
6166
6166
|
}
|
|
6167
6167
|
export interface CncToolTypeDto {
|
|
6168
6168
|
id: string;
|
|
@@ -6335,7 +6335,7 @@ export interface UpdateKeepSettings {
|
|
|
6335
6335
|
}
|
|
6336
6336
|
export interface FixtureListDto {
|
|
6337
6337
|
results: FixtureDto[];
|
|
6338
|
-
continuationToken
|
|
6338
|
+
continuationToken?: string | null;
|
|
6339
6339
|
}
|
|
6340
6340
|
export interface FixtureDto {
|
|
6341
6341
|
fixtureId: string;
|
|
@@ -6623,7 +6623,7 @@ export interface UpdateMachineInactivitySubscription {
|
|
|
6623
6623
|
export interface IntegrationCredentialDto {
|
|
6624
6624
|
type: CredentialTypeDto;
|
|
6625
6625
|
id: string;
|
|
6626
|
-
name
|
|
6626
|
+
name?: string;
|
|
6627
6627
|
clientId?: string | null;
|
|
6628
6628
|
expirationDate?: Date | null;
|
|
6629
6629
|
activationDate?: Date | null;
|
|
@@ -6772,7 +6772,7 @@ export interface BookingParcelDto {
|
|
|
6772
6772
|
materialPartName?: string | null;
|
|
6773
6773
|
materialPartNumber?: string | null;
|
|
6774
6774
|
covered: MaterialCoveredDto;
|
|
6775
|
-
item
|
|
6775
|
+
item?: BookingItemDto;
|
|
6776
6776
|
}
|
|
6777
6777
|
export type MaterialCoveredDto = "NotDefined" | "NotCovered" | "Covered";
|
|
6778
6778
|
export interface BookingItemDto {
|
|
@@ -6813,11 +6813,11 @@ export type BookingTaskDto = "MyTasks" | "OthersTasks";
|
|
|
6813
6813
|
export type BookingCreatedByDto = "MyBookings" | "OthersBookings";
|
|
6814
6814
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
6815
6815
|
export interface BookingFilterResultsDto {
|
|
6816
|
-
bookingStatus
|
|
6817
|
-
transportKind
|
|
6818
|
-
parcelKind
|
|
6819
|
-
fromLocations
|
|
6820
|
-
toLocations
|
|
6816
|
+
bookingStatus?: BookingStatusResultsDto[];
|
|
6817
|
+
transportKind?: TransportKindResultsDto[];
|
|
6818
|
+
parcelKind?: ParcelKindResultsDto[];
|
|
6819
|
+
fromLocations?: LocationZoneGroupDto[];
|
|
6820
|
+
toLocations?: LocationZoneGroupDto[];
|
|
6821
6821
|
}
|
|
6822
6822
|
export interface BookingStatusResultsDto {
|
|
6823
6823
|
bookingStatus?: BookingStatusDto;
|
|
@@ -6903,23 +6903,23 @@ export interface BookingStatusUpdateDto {
|
|
|
6903
6903
|
deliveryExceptionComment?: string | null;
|
|
6904
6904
|
}
|
|
6905
6905
|
export interface MoveInfoscreenDto {
|
|
6906
|
-
id
|
|
6907
|
-
name
|
|
6908
|
-
slug
|
|
6909
|
-
fromZoneIds
|
|
6910
|
-
fromLocationIds
|
|
6911
|
-
toZoneIds
|
|
6912
|
-
toLocationIds
|
|
6906
|
+
id?: string;
|
|
6907
|
+
name?: string;
|
|
6908
|
+
slug?: string;
|
|
6909
|
+
fromZoneIds?: string[];
|
|
6910
|
+
fromLocationIds?: string[];
|
|
6911
|
+
toZoneIds?: string[];
|
|
6912
|
+
toLocationIds?: string[];
|
|
6913
6913
|
}
|
|
6914
6914
|
export interface CreateMoveInfoscreenRequestDto {
|
|
6915
|
-
name
|
|
6915
|
+
name?: string;
|
|
6916
6916
|
fromZoneIds?: string[];
|
|
6917
6917
|
fromLocationIds?: string[];
|
|
6918
6918
|
toZoneIds?: string[];
|
|
6919
6919
|
toLocationIds?: string[];
|
|
6920
6920
|
}
|
|
6921
6921
|
export interface UpdateMoveInfoscreenRequestDto {
|
|
6922
|
-
name
|
|
6922
|
+
name?: string;
|
|
6923
6923
|
fromZoneIds?: string[];
|
|
6924
6924
|
fromLocationIds?: string[];
|
|
6925
6925
|
toZoneIds?: string[];
|
|
@@ -6975,15 +6975,15 @@ export interface MoveSubscriptionDto {
|
|
|
6975
6975
|
}
|
|
6976
6976
|
export interface MoveSubscriptionZoneDto {
|
|
6977
6977
|
zoneId: string;
|
|
6978
|
-
bookingFromLocation
|
|
6979
|
-
bookingToLocation
|
|
6980
|
-
locationChange
|
|
6978
|
+
bookingFromLocation?: boolean;
|
|
6979
|
+
bookingToLocation?: boolean;
|
|
6980
|
+
locationChange?: boolean;
|
|
6981
6981
|
}
|
|
6982
6982
|
export interface MoveSubscriptionLocationDto {
|
|
6983
6983
|
locationId: string;
|
|
6984
|
-
bookingFromLocation
|
|
6985
|
-
bookingToLocation
|
|
6986
|
-
locationChange
|
|
6984
|
+
bookingFromLocation?: boolean;
|
|
6985
|
+
bookingToLocation?: boolean;
|
|
6986
|
+
locationChange?: boolean;
|
|
6987
6987
|
}
|
|
6988
6988
|
export interface UpdateNotifications {
|
|
6989
6989
|
enabledNotifications: boolean;
|
|
@@ -6993,15 +6993,15 @@ export interface UpdateNotifications {
|
|
|
6993
6993
|
}
|
|
6994
6994
|
export interface MoveSubscriptionZoneUpdateDto {
|
|
6995
6995
|
zoneId: string;
|
|
6996
|
-
bookingFromLocation
|
|
6997
|
-
bookingToLocation
|
|
6998
|
-
locationChange
|
|
6996
|
+
bookingFromLocation?: boolean;
|
|
6997
|
+
bookingToLocation?: boolean;
|
|
6998
|
+
locationChange?: boolean;
|
|
6999
6999
|
}
|
|
7000
7000
|
export interface MoveSubscriptionLocationUpdateDto {
|
|
7001
7001
|
locationId: string;
|
|
7002
|
-
bookingFromLocation
|
|
7003
|
-
bookingToLocation
|
|
7004
|
-
locationChange
|
|
7002
|
+
bookingFromLocation?: boolean;
|
|
7003
|
+
bookingToLocation?: boolean;
|
|
7004
|
+
locationChange?: boolean;
|
|
7005
7005
|
}
|
|
7006
7006
|
export interface SearchParcelDto {
|
|
7007
7007
|
parcelId: string;
|
|
@@ -7043,7 +7043,7 @@ export interface TrackingHistoryDto {
|
|
|
7043
7043
|
materialPartName?: string | null;
|
|
7044
7044
|
materialPartNumber?: string | null;
|
|
7045
7045
|
category?: string | null;
|
|
7046
|
-
currentTracking
|
|
7046
|
+
currentTracking?: TrackingEventDto | null;
|
|
7047
7047
|
trackingEvents: TrackingEventDto[];
|
|
7048
7048
|
suggestions?: SuggestionsItemDto | null;
|
|
7049
7049
|
}
|
|
@@ -7091,7 +7091,7 @@ export interface TrackingHistoryFlattenedDto {
|
|
|
7091
7091
|
materialPartName?: string | null;
|
|
7092
7092
|
materialPartNumber?: string | null;
|
|
7093
7093
|
category?: string | null;
|
|
7094
|
-
currentTracking
|
|
7094
|
+
currentTracking?: TrackingEventDto | null;
|
|
7095
7095
|
trackingEvents: TrackingEventDto[];
|
|
7096
7096
|
}
|
|
7097
7097
|
export interface TrackingParcelRequestListDto {
|
|
@@ -7150,26 +7150,26 @@ export interface EngineeringChangeOrdersDto {
|
|
|
7150
7150
|
engineeringChangeOrders?: EngineeringChangeOrderDto[];
|
|
7151
7151
|
}
|
|
7152
7152
|
export interface AddMesLink {
|
|
7153
|
-
uri
|
|
7154
|
-
name
|
|
7155
|
-
type
|
|
7153
|
+
uri?: string;
|
|
7154
|
+
name?: string;
|
|
7155
|
+
type?: MesLinkTypeDto;
|
|
7156
7156
|
openInNewTab?: boolean;
|
|
7157
7157
|
description?: string | null;
|
|
7158
7158
|
}
|
|
7159
7159
|
export type MesLinkTypeDto = "Static" | "Operation" | "WorkOrder";
|
|
7160
7160
|
export interface MesLinkDto {
|
|
7161
|
-
id
|
|
7162
|
-
uri
|
|
7163
|
-
name
|
|
7164
|
-
type
|
|
7165
|
-
openInNewTab
|
|
7161
|
+
id?: string;
|
|
7162
|
+
uri?: string;
|
|
7163
|
+
name?: string;
|
|
7164
|
+
type?: MesLinkTypeDto;
|
|
7165
|
+
openInNewTab?: boolean;
|
|
7166
7166
|
description?: string | null;
|
|
7167
7167
|
}
|
|
7168
7168
|
export interface UpdateMesLink {
|
|
7169
|
-
id
|
|
7170
|
-
uri
|
|
7171
|
-
name
|
|
7172
|
-
type
|
|
7169
|
+
id?: string;
|
|
7170
|
+
uri?: string;
|
|
7171
|
+
name?: string;
|
|
7172
|
+
type?: MesLinkTypeDto;
|
|
7173
7173
|
openInNewTab?: boolean;
|
|
7174
7174
|
description?: string | null;
|
|
7175
7175
|
moveLinkRequest?: MoveLinkRequest | null;
|
|
@@ -7258,7 +7258,7 @@ export interface WorkOrderAttachmentDto {
|
|
|
7258
7258
|
}
|
|
7259
7259
|
export interface DrawingDto {
|
|
7260
7260
|
drawingNumber: string;
|
|
7261
|
-
revision
|
|
7261
|
+
revision?: string;
|
|
7262
7262
|
status: string;
|
|
7263
7263
|
files: DrawingFileDto[];
|
|
7264
7264
|
}
|
|
@@ -7274,20 +7274,20 @@ export interface OrderReferenceDto {
|
|
|
7274
7274
|
}
|
|
7275
7275
|
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
7276
7276
|
export interface ProductionOrderBomDto {
|
|
7277
|
-
position
|
|
7277
|
+
position?: string;
|
|
7278
7278
|
lineNumber: number;
|
|
7279
7279
|
part: PartDto;
|
|
7280
|
-
dimension
|
|
7280
|
+
dimension?: string;
|
|
7281
7281
|
operation: number;
|
|
7282
|
-
operationName
|
|
7282
|
+
operationName?: string;
|
|
7283
7283
|
warehouse?: string | null;
|
|
7284
7284
|
fixedLocation?: string | null;
|
|
7285
|
-
fixedLocations
|
|
7286
|
-
unit
|
|
7285
|
+
fixedLocations?: string[];
|
|
7286
|
+
unit?: string;
|
|
7287
7287
|
quantityPerPart: number;
|
|
7288
7288
|
totalRequiredQuantity: number;
|
|
7289
7289
|
usedQuantity: number;
|
|
7290
|
-
availableQuantity
|
|
7290
|
+
availableQuantity?: number | null;
|
|
7291
7291
|
drawing?: DrawingDto | null;
|
|
7292
7292
|
orderReference?: OrderReferenceDto | null;
|
|
7293
7293
|
status: MaterialStatus;
|
|
@@ -7300,19 +7300,19 @@ export interface InventoryDto {
|
|
|
7300
7300
|
siteId: string;
|
|
7301
7301
|
warehouseId: string;
|
|
7302
7302
|
locationId: string;
|
|
7303
|
-
batchNumber
|
|
7304
|
-
vendorBatch
|
|
7303
|
+
batchNumber?: string;
|
|
7304
|
+
vendorBatch?: string;
|
|
7305
7305
|
available: number;
|
|
7306
7306
|
}
|
|
7307
7307
|
export interface PickListSuggestionDto {
|
|
7308
|
-
position
|
|
7308
|
+
position?: string;
|
|
7309
7309
|
lineNumber: number;
|
|
7310
7310
|
part: PartDto;
|
|
7311
|
-
dimension
|
|
7311
|
+
dimension?: string;
|
|
7312
7312
|
operation: number;
|
|
7313
|
-
warehouse
|
|
7314
|
-
fixedLocation
|
|
7315
|
-
unit
|
|
7313
|
+
warehouse?: string;
|
|
7314
|
+
fixedLocation?: string;
|
|
7315
|
+
unit?: string;
|
|
7316
7316
|
orderReference?: OrderReferenceDto | null;
|
|
7317
7317
|
quantityPerPart: number;
|
|
7318
7318
|
totalRequiredQuantity: number;
|
|
@@ -7366,7 +7366,7 @@ export interface NonConformanceAttachmentDto {
|
|
|
7366
7366
|
export interface WorkCenterDto {
|
|
7367
7367
|
id: string;
|
|
7368
7368
|
name: string;
|
|
7369
|
-
workCenterType
|
|
7369
|
+
workCenterType?: string;
|
|
7370
7370
|
department?: DepartmentDto | null;
|
|
7371
7371
|
}
|
|
7372
7372
|
export interface MaterialPickListResultDto {
|
|
@@ -7483,7 +7483,7 @@ export interface SurroundingOperationDto {
|
|
|
7483
7483
|
}
|
|
7484
7484
|
export interface OperationPrerequisitesDto {
|
|
7485
7485
|
drawing?: boolean | null;
|
|
7486
|
-
materials
|
|
7486
|
+
materials?: MaterialsPrerequisiteDto;
|
|
7487
7487
|
cncProgram?: boolean | null;
|
|
7488
7488
|
}
|
|
7489
7489
|
export interface MaterialsPrerequisiteDto {
|
|
@@ -7615,12 +7615,12 @@ export interface ReportOperationProgress {
|
|
|
7615
7615
|
export interface ReportOperationProgressDto {
|
|
7616
7616
|
workOrder: string;
|
|
7617
7617
|
operationNumber: number;
|
|
7618
|
-
resource
|
|
7618
|
+
resource?: string;
|
|
7619
7619
|
goodQuantity?: number | null;
|
|
7620
7620
|
errorQuantity?: number | null;
|
|
7621
7621
|
errorCause?: ErrorCauseDto | null;
|
|
7622
|
-
nextStatus
|
|
7623
|
-
workType
|
|
7622
|
+
nextStatus?: NextOperationStatusDto;
|
|
7623
|
+
workType?: WorkTypeDto;
|
|
7624
7624
|
}
|
|
7625
7625
|
export type ErrorCauseDto = "None" | "Material" | "Machine" | "OperatingStaff";
|
|
7626
7626
|
export type NextOperationStatusDto = "InProgress" | "Stopped" | "Completed";
|
|
@@ -7984,7 +7984,7 @@ export interface ImaMaterialCheckDto {
|
|
|
7984
7984
|
updatedBy: string;
|
|
7985
7985
|
updatedById: string;
|
|
7986
7986
|
updatedByName: string;
|
|
7987
|
-
isDeleted
|
|
7987
|
+
isDeleted?: boolean;
|
|
7988
7988
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
7989
7989
|
specificationResults: ImaSpecificationResultsDto;
|
|
7990
7990
|
}
|
|
@@ -8343,7 +8343,7 @@ export interface PurchaseOrderMaterialLineDetailsDto {
|
|
|
8343
8343
|
typeOfCertificate?: string | null;
|
|
8344
8344
|
}
|
|
8345
8345
|
export interface Part {
|
|
8346
|
-
partNumber
|
|
8346
|
+
partNumber?: string;
|
|
8347
8347
|
partRevision?: string | null;
|
|
8348
8348
|
partName?: string | null;
|
|
8349
8349
|
customerPartNumber?: string | null;
|
|
@@ -9532,13 +9532,13 @@ export interface CreateWorkOrderMapping {
|
|
|
9532
9532
|
newWorkOrderId: string;
|
|
9533
9533
|
}
|
|
9534
9534
|
export interface WorkorderDiscussionMessageDto {
|
|
9535
|
-
id
|
|
9536
|
-
workorderId
|
|
9537
|
-
companyId
|
|
9538
|
-
content
|
|
9535
|
+
id?: string;
|
|
9536
|
+
workorderId?: string;
|
|
9537
|
+
companyId?: string;
|
|
9538
|
+
content?: string;
|
|
9539
9539
|
contentParts?: WorkOrderDiscussionContent[] | null;
|
|
9540
|
-
senderUpn
|
|
9541
|
-
senderName
|
|
9540
|
+
senderUpn?: string;
|
|
9541
|
+
senderName?: string;
|
|
9542
9542
|
operationId?: string | null;
|
|
9543
9543
|
operationName?: string | null;
|
|
9544
9544
|
resourceId?: string | null;
|
|
@@ -9556,10 +9556,10 @@ export interface AddDiscussionMessageRequest {
|
|
|
9556
9556
|
resourceId?: string | null;
|
|
9557
9557
|
}
|
|
9558
9558
|
export interface WorkorderDiscussionReadStatusDto {
|
|
9559
|
-
workorderId
|
|
9559
|
+
workorderId?: string;
|
|
9560
9560
|
operationId?: string | null;
|
|
9561
9561
|
resourceId?: string | null;
|
|
9562
|
-
userUpn
|
|
9562
|
+
userUpn?: string;
|
|
9563
9563
|
lastRead?: Date;
|
|
9564
9564
|
}
|
|
9565
9565
|
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.6.3.0 (NJsonSchema v11.5.2.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.6.3.0 (NJsonSchema v11.5.2.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 {
|
|
@@ -30990,9 +30990,9 @@ export interface UpdateCalendarSettingsCommand {
|
|
|
30990
30990
|
}
|
|
30991
30991
|
|
|
30992
30992
|
export interface CalendarDefinitionDto {
|
|
30993
|
-
id
|
|
30994
|
-
name
|
|
30995
|
-
hoursPerWeekday
|
|
30993
|
+
id?: string;
|
|
30994
|
+
name?: string;
|
|
30995
|
+
hoursPerWeekday?: { [key in DayOfWeek]?: number; };
|
|
30996
30996
|
created?: Date | null;
|
|
30997
30997
|
updatedBy?: string | null;
|
|
30998
30998
|
}
|
|
@@ -31008,28 +31008,28 @@ export interface UpdateCalendarDefinitionRequest {
|
|
|
31008
31008
|
}
|
|
31009
31009
|
|
|
31010
31010
|
export interface ResourceCalendarPeriodSchedulesDto {
|
|
31011
|
-
groups
|
|
31012
|
-
ungroupedResources
|
|
31011
|
+
groups?: ResourceCalendarPeriodGroupDto[];
|
|
31012
|
+
ungroupedResources?: ResourceCalendarPeriodsDto[];
|
|
31013
31013
|
}
|
|
31014
31014
|
|
|
31015
31015
|
export interface ResourceCalendarPeriodGroupDto {
|
|
31016
|
-
resourceGroupName
|
|
31017
|
-
resources
|
|
31016
|
+
resourceGroupName?: string;
|
|
31017
|
+
resources?: ResourceCalendarPeriodsDto[];
|
|
31018
31018
|
}
|
|
31019
31019
|
|
|
31020
31020
|
export interface ResourceCalendarPeriodsDto {
|
|
31021
|
-
resourceExternalId
|
|
31022
|
-
resourceName
|
|
31023
|
-
periods
|
|
31021
|
+
resourceExternalId?: string;
|
|
31022
|
+
resourceName?: string;
|
|
31023
|
+
periods?: ResourceCalendarPeriodDto[];
|
|
31024
31024
|
}
|
|
31025
31025
|
|
|
31026
31026
|
export interface ResourceCalendarPeriodDto {
|
|
31027
|
-
resourceExternalId
|
|
31028
|
-
calendarDefinitionId
|
|
31029
|
-
calendarDefinitionName
|
|
31030
|
-
effectiveFrom
|
|
31027
|
+
resourceExternalId?: string;
|
|
31028
|
+
calendarDefinitionId?: string;
|
|
31029
|
+
calendarDefinitionName?: string;
|
|
31030
|
+
effectiveFrom?: string;
|
|
31031
31031
|
effectiveTo?: string | null;
|
|
31032
|
-
targetPercent
|
|
31032
|
+
targetPercent?: number;
|
|
31033
31033
|
comment?: string | null;
|
|
31034
31034
|
}
|
|
31035
31035
|
|
|
@@ -31053,8 +31053,8 @@ export interface DeleteResourceCalendarPeriod {
|
|
|
31053
31053
|
}
|
|
31054
31054
|
|
|
31055
31055
|
export interface PeriodKey {
|
|
31056
|
-
resourceExternalId
|
|
31057
|
-
effectiveFrom
|
|
31056
|
+
resourceExternalId?: string;
|
|
31057
|
+
effectiveFrom?: string;
|
|
31058
31058
|
}
|
|
31059
31059
|
|
|
31060
31060
|
export interface BulkAddResourceCalendarPeriods {
|
|
@@ -31090,14 +31090,14 @@ export interface ResourceDayKpiDto {
|
|
|
31090
31090
|
}
|
|
31091
31091
|
|
|
31092
31092
|
export interface ResourceDailyUptimeDto {
|
|
31093
|
-
date
|
|
31093
|
+
date?: Date;
|
|
31094
31094
|
historicUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
31095
31095
|
todayUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
|
|
31096
31096
|
}
|
|
31097
31097
|
|
|
31098
31098
|
export interface ResourceDailyUptimePointDto {
|
|
31099
|
-
date
|
|
31100
|
-
uptime
|
|
31099
|
+
date?: Date;
|
|
31100
|
+
uptime?: number;
|
|
31101
31101
|
}
|
|
31102
31102
|
|
|
31103
31103
|
export interface UptimeTrendDataPointDto {
|
|
@@ -31237,7 +31237,7 @@ export interface WorkorderOperationEventDto {
|
|
|
31237
31237
|
isSetup: boolean;
|
|
31238
31238
|
employee?: EmployeeDto | null;
|
|
31239
31239
|
resourceId: string;
|
|
31240
|
-
description
|
|
31240
|
+
description?: string;
|
|
31241
31241
|
part?: PartDto | null;
|
|
31242
31242
|
workorderDescription?: string | null;
|
|
31243
31243
|
operationDescription?: string | null;
|
|
@@ -31330,7 +31330,7 @@ export interface MachineDto {
|
|
|
31330
31330
|
export interface CreateMachineWithoutResource {
|
|
31331
31331
|
id: string;
|
|
31332
31332
|
name: string;
|
|
31333
|
-
description
|
|
31333
|
+
description?: string | null;
|
|
31334
31334
|
type: string;
|
|
31335
31335
|
displayName?: string | null;
|
|
31336
31336
|
manufacturer?: string | null;
|
|
@@ -31355,7 +31355,7 @@ export interface CreateResourceWithMachine {
|
|
|
31355
31355
|
displayName?: string | null;
|
|
31356
31356
|
machineId: string;
|
|
31357
31357
|
machineName: string;
|
|
31358
|
-
machineDescription
|
|
31358
|
+
machineDescription?: string | null;
|
|
31359
31359
|
machineType: string;
|
|
31360
31360
|
manufacturer?: string | null;
|
|
31361
31361
|
location?: string | null;
|
|
@@ -31505,14 +31505,14 @@ export interface MachineUtilizationDatapointListDto extends UtilizationDatapoint
|
|
|
31505
31505
|
}
|
|
31506
31506
|
|
|
31507
31507
|
export interface CompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
31508
|
-
groups
|
|
31509
|
-
ungroupedResources
|
|
31508
|
+
groups?: ResourceGroupUtilizationDatapointListDto[];
|
|
31509
|
+
ungroupedResources?: ResourceUtilizationDatapointListDto[];
|
|
31510
31510
|
}
|
|
31511
31511
|
|
|
31512
31512
|
export interface ResourceGroupUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
31513
31513
|
groupId: string;
|
|
31514
31514
|
groupName: string;
|
|
31515
|
-
resources
|
|
31515
|
+
resources?: ResourceUtilizationDatapointListDto[];
|
|
31516
31516
|
}
|
|
31517
31517
|
|
|
31518
31518
|
export interface ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
@@ -31523,12 +31523,12 @@ export interface ResourceUtilizationDatapointListDto extends UtilizationDatapoin
|
|
|
31523
31523
|
}
|
|
31524
31524
|
|
|
31525
31525
|
export interface CrossCompanyUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
31526
|
-
companies
|
|
31526
|
+
companies?: NamedCompanyUtilizationDatapointListDto[];
|
|
31527
31527
|
}
|
|
31528
31528
|
|
|
31529
31529
|
export interface CompanyUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
31530
|
-
groups
|
|
31531
|
-
ungroupedMachines
|
|
31530
|
+
groups?: MachineGroupUtilizationDatapointListDto[];
|
|
31531
|
+
ungroupedMachines?: MachineUtilizationDatapointListDto[];
|
|
31532
31532
|
}
|
|
31533
31533
|
|
|
31534
31534
|
export interface NamedCompanyUtilizationDatapointListDto extends CompanyUtilizationDatapointListDto {
|
|
@@ -31539,7 +31539,7 @@ export interface NamedCompanyUtilizationDatapointListDto extends CompanyUtilizat
|
|
|
31539
31539
|
export interface MachineGroupUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
31540
31540
|
groupId: string;
|
|
31541
31541
|
groupName: string;
|
|
31542
|
-
machines
|
|
31542
|
+
machines?: MachineUtilizationDatapointListDto[];
|
|
31543
31543
|
}
|
|
31544
31544
|
|
|
31545
31545
|
export interface CrossCompanyResourceUtilizationDto {
|
|
@@ -31554,7 +31554,7 @@ export interface NamedCompanyResourceUtilizationDto extends CompanyResourceUtili
|
|
|
31554
31554
|
}
|
|
31555
31555
|
|
|
31556
31556
|
export interface CrossCompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
|
|
31557
|
-
companies
|
|
31557
|
+
companies?: NamedCompanyResourceUtilizationDatapointListDto[];
|
|
31558
31558
|
}
|
|
31559
31559
|
|
|
31560
31560
|
export interface NamedCompanyResourceUtilizationDatapointListDto extends CompanyResourceUtilizationDatapointListDto {
|
|
@@ -31784,8 +31784,8 @@ export interface CreateMrbTemplateRequest {
|
|
|
31784
31784
|
}
|
|
31785
31785
|
|
|
31786
31786
|
export interface UpdateMrbTemplate {
|
|
31787
|
-
id
|
|
31788
|
-
title
|
|
31787
|
+
id?: string;
|
|
31788
|
+
title?: string;
|
|
31789
31789
|
tableOfContents?: MrbTemplateTableOfContentsDto | null;
|
|
31790
31790
|
elements?: MrbTemplateUpdateElementDto[];
|
|
31791
31791
|
contentIndicator?: string | null;
|
|
@@ -32022,7 +32022,7 @@ export interface TraceWorkOrderListDto {
|
|
|
32022
32022
|
id: string;
|
|
32023
32023
|
part: PartDto;
|
|
32024
32024
|
quantity: number;
|
|
32025
|
-
unit
|
|
32025
|
+
unit?: string | null;
|
|
32026
32026
|
status: WorkorderStatus;
|
|
32027
32027
|
plannedStart?: Date | null;
|
|
32028
32028
|
plannedEnd?: Date | null;
|
|
@@ -32494,14 +32494,14 @@ export interface MachineDayKpiDto {
|
|
|
32494
32494
|
}
|
|
32495
32495
|
|
|
32496
32496
|
export interface MachineDailyUptimeDto {
|
|
32497
|
-
date
|
|
32497
|
+
date?: Date;
|
|
32498
32498
|
historicUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
|
|
32499
32499
|
todayUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
|
|
32500
32500
|
}
|
|
32501
32501
|
|
|
32502
32502
|
export interface MachineDailyUptimePointDto {
|
|
32503
|
-
date
|
|
32504
|
-
uptime
|
|
32503
|
+
date?: Date;
|
|
32504
|
+
uptime?: number;
|
|
32505
32505
|
}
|
|
32506
32506
|
|
|
32507
32507
|
export interface MachineGroupDto {
|
|
@@ -32898,8 +32898,8 @@ export interface TransferToMachineRequest {
|
|
|
32898
32898
|
}
|
|
32899
32899
|
|
|
32900
32900
|
export interface ProgramSelectionRequest {
|
|
32901
|
-
id
|
|
32902
|
-
version
|
|
32901
|
+
id?: string;
|
|
32902
|
+
version?: number;
|
|
32903
32903
|
}
|
|
32904
32904
|
|
|
32905
32905
|
export interface UploadCamFileDto {
|
|
@@ -33291,7 +33291,7 @@ export interface MarkdownNotesDto {
|
|
|
33291
33291
|
|
|
33292
33292
|
export interface SaveMarkdownNotes {
|
|
33293
33293
|
id: string;
|
|
33294
|
-
markdown
|
|
33294
|
+
markdown?: string;
|
|
33295
33295
|
}
|
|
33296
33296
|
|
|
33297
33297
|
export interface CncToolTypeDto {
|
|
@@ -33477,7 +33477,7 @@ export interface UpdateKeepSettings {
|
|
|
33477
33477
|
|
|
33478
33478
|
export interface FixtureListDto {
|
|
33479
33479
|
results: FixtureDto[];
|
|
33480
|
-
continuationToken
|
|
33480
|
+
continuationToken?: string | null;
|
|
33481
33481
|
}
|
|
33482
33482
|
|
|
33483
33483
|
export interface FixtureDto {
|
|
@@ -33802,7 +33802,7 @@ export interface UpdateMachineInactivitySubscription {
|
|
|
33802
33802
|
export interface IntegrationCredentialDto {
|
|
33803
33803
|
type: CredentialTypeDto;
|
|
33804
33804
|
id: string;
|
|
33805
|
-
name
|
|
33805
|
+
name?: string;
|
|
33806
33806
|
clientId?: string | null;
|
|
33807
33807
|
expirationDate?: Date | null;
|
|
33808
33808
|
activationDate?: Date | null;
|
|
@@ -33971,7 +33971,7 @@ export interface BookingParcelDto {
|
|
|
33971
33971
|
materialPartName?: string | null;
|
|
33972
33972
|
materialPartNumber?: string | null;
|
|
33973
33973
|
covered: MaterialCoveredDto;
|
|
33974
|
-
item
|
|
33974
|
+
item?: BookingItemDto;
|
|
33975
33975
|
}
|
|
33976
33976
|
|
|
33977
33977
|
export type MaterialCoveredDto = "NotDefined" | "NotCovered" | "Covered";
|
|
@@ -34021,11 +34021,11 @@ export type BookingCreatedByDto = "MyBookings" | "OthersBookings";
|
|
|
34021
34021
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
34022
34022
|
|
|
34023
34023
|
export interface BookingFilterResultsDto {
|
|
34024
|
-
bookingStatus
|
|
34025
|
-
transportKind
|
|
34026
|
-
parcelKind
|
|
34027
|
-
fromLocations
|
|
34028
|
-
toLocations
|
|
34024
|
+
bookingStatus?: BookingStatusResultsDto[];
|
|
34025
|
+
transportKind?: TransportKindResultsDto[];
|
|
34026
|
+
parcelKind?: ParcelKindResultsDto[];
|
|
34027
|
+
fromLocations?: LocationZoneGroupDto[];
|
|
34028
|
+
toLocations?: LocationZoneGroupDto[];
|
|
34029
34029
|
}
|
|
34030
34030
|
|
|
34031
34031
|
export interface BookingStatusResultsDto {
|
|
@@ -34123,17 +34123,17 @@ export interface BookingStatusUpdateDto {
|
|
|
34123
34123
|
}
|
|
34124
34124
|
|
|
34125
34125
|
export interface MoveInfoscreenDto {
|
|
34126
|
-
id
|
|
34127
|
-
name
|
|
34128
|
-
slug
|
|
34129
|
-
fromZoneIds
|
|
34130
|
-
fromLocationIds
|
|
34131
|
-
toZoneIds
|
|
34132
|
-
toLocationIds
|
|
34126
|
+
id?: string;
|
|
34127
|
+
name?: string;
|
|
34128
|
+
slug?: string;
|
|
34129
|
+
fromZoneIds?: string[];
|
|
34130
|
+
fromLocationIds?: string[];
|
|
34131
|
+
toZoneIds?: string[];
|
|
34132
|
+
toLocationIds?: string[];
|
|
34133
34133
|
}
|
|
34134
34134
|
|
|
34135
34135
|
export interface CreateMoveInfoscreenRequestDto {
|
|
34136
|
-
name
|
|
34136
|
+
name?: string;
|
|
34137
34137
|
fromZoneIds?: string[];
|
|
34138
34138
|
fromLocationIds?: string[];
|
|
34139
34139
|
toZoneIds?: string[];
|
|
@@ -34141,7 +34141,7 @@ export interface CreateMoveInfoscreenRequestDto {
|
|
|
34141
34141
|
}
|
|
34142
34142
|
|
|
34143
34143
|
export interface UpdateMoveInfoscreenRequestDto {
|
|
34144
|
-
name
|
|
34144
|
+
name?: string;
|
|
34145
34145
|
fromZoneIds?: string[];
|
|
34146
34146
|
fromLocationIds?: string[];
|
|
34147
34147
|
toZoneIds?: string[];
|
|
@@ -34208,16 +34208,16 @@ export interface MoveSubscriptionDto {
|
|
|
34208
34208
|
|
|
34209
34209
|
export interface MoveSubscriptionZoneDto {
|
|
34210
34210
|
zoneId: string;
|
|
34211
|
-
bookingFromLocation
|
|
34212
|
-
bookingToLocation
|
|
34213
|
-
locationChange
|
|
34211
|
+
bookingFromLocation?: boolean;
|
|
34212
|
+
bookingToLocation?: boolean;
|
|
34213
|
+
locationChange?: boolean;
|
|
34214
34214
|
}
|
|
34215
34215
|
|
|
34216
34216
|
export interface MoveSubscriptionLocationDto {
|
|
34217
34217
|
locationId: string;
|
|
34218
|
-
bookingFromLocation
|
|
34219
|
-
bookingToLocation
|
|
34220
|
-
locationChange
|
|
34218
|
+
bookingFromLocation?: boolean;
|
|
34219
|
+
bookingToLocation?: boolean;
|
|
34220
|
+
locationChange?: boolean;
|
|
34221
34221
|
}
|
|
34222
34222
|
|
|
34223
34223
|
export interface UpdateNotifications {
|
|
@@ -34229,16 +34229,16 @@ export interface UpdateNotifications {
|
|
|
34229
34229
|
|
|
34230
34230
|
export interface MoveSubscriptionZoneUpdateDto {
|
|
34231
34231
|
zoneId: string;
|
|
34232
|
-
bookingFromLocation
|
|
34233
|
-
bookingToLocation
|
|
34234
|
-
locationChange
|
|
34232
|
+
bookingFromLocation?: boolean;
|
|
34233
|
+
bookingToLocation?: boolean;
|
|
34234
|
+
locationChange?: boolean;
|
|
34235
34235
|
}
|
|
34236
34236
|
|
|
34237
34237
|
export interface MoveSubscriptionLocationUpdateDto {
|
|
34238
34238
|
locationId: string;
|
|
34239
|
-
bookingFromLocation
|
|
34240
|
-
bookingToLocation
|
|
34241
|
-
locationChange
|
|
34239
|
+
bookingFromLocation?: boolean;
|
|
34240
|
+
bookingToLocation?: boolean;
|
|
34241
|
+
locationChange?: boolean;
|
|
34242
34242
|
}
|
|
34243
34243
|
|
|
34244
34244
|
export interface SearchParcelDto {
|
|
@@ -34286,7 +34286,7 @@ export interface TrackingHistoryDto {
|
|
|
34286
34286
|
materialPartName?: string | null;
|
|
34287
34287
|
materialPartNumber?: string | null;
|
|
34288
34288
|
category?: string | null;
|
|
34289
|
-
currentTracking
|
|
34289
|
+
currentTracking?: TrackingEventDto | null;
|
|
34290
34290
|
trackingEvents: TrackingEventDto[];
|
|
34291
34291
|
suggestions?: SuggestionsItemDto | null;
|
|
34292
34292
|
}
|
|
@@ -34339,7 +34339,7 @@ export interface TrackingHistoryFlattenedDto {
|
|
|
34339
34339
|
materialPartName?: string | null;
|
|
34340
34340
|
materialPartNumber?: string | null;
|
|
34341
34341
|
category?: string | null;
|
|
34342
|
-
currentTracking
|
|
34342
|
+
currentTracking?: TrackingEventDto | null;
|
|
34343
34343
|
trackingEvents: TrackingEventDto[];
|
|
34344
34344
|
}
|
|
34345
34345
|
|
|
@@ -34409,9 +34409,9 @@ export interface EngineeringChangeOrdersDto {
|
|
|
34409
34409
|
}
|
|
34410
34410
|
|
|
34411
34411
|
export interface AddMesLink {
|
|
34412
|
-
uri
|
|
34413
|
-
name
|
|
34414
|
-
type
|
|
34412
|
+
uri?: string;
|
|
34413
|
+
name?: string;
|
|
34414
|
+
type?: MesLinkTypeDto;
|
|
34415
34415
|
openInNewTab?: boolean;
|
|
34416
34416
|
description?: string | null;
|
|
34417
34417
|
}
|
|
@@ -34419,19 +34419,19 @@ export interface AddMesLink {
|
|
|
34419
34419
|
export type MesLinkTypeDto = "Static" | "Operation" | "WorkOrder";
|
|
34420
34420
|
|
|
34421
34421
|
export interface MesLinkDto {
|
|
34422
|
-
id
|
|
34423
|
-
uri
|
|
34424
|
-
name
|
|
34425
|
-
type
|
|
34426
|
-
openInNewTab
|
|
34422
|
+
id?: string;
|
|
34423
|
+
uri?: string;
|
|
34424
|
+
name?: string;
|
|
34425
|
+
type?: MesLinkTypeDto;
|
|
34426
|
+
openInNewTab?: boolean;
|
|
34427
34427
|
description?: string | null;
|
|
34428
34428
|
}
|
|
34429
34429
|
|
|
34430
34430
|
export interface UpdateMesLink {
|
|
34431
|
-
id
|
|
34432
|
-
uri
|
|
34433
|
-
name
|
|
34434
|
-
type
|
|
34431
|
+
id?: string;
|
|
34432
|
+
uri?: string;
|
|
34433
|
+
name?: string;
|
|
34434
|
+
type?: MesLinkTypeDto;
|
|
34435
34435
|
openInNewTab?: boolean;
|
|
34436
34436
|
description?: string | null;
|
|
34437
34437
|
moveLinkRequest?: MoveLinkRequest | null;
|
|
@@ -34528,7 +34528,7 @@ export interface WorkOrderAttachmentDto {
|
|
|
34528
34528
|
|
|
34529
34529
|
export interface DrawingDto {
|
|
34530
34530
|
drawingNumber: string;
|
|
34531
|
-
revision
|
|
34531
|
+
revision?: string;
|
|
34532
34532
|
status: string;
|
|
34533
34533
|
files: DrawingFileDto[];
|
|
34534
34534
|
}
|
|
@@ -34548,20 +34548,20 @@ export interface OrderReferenceDto {
|
|
|
34548
34548
|
export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
|
|
34549
34549
|
|
|
34550
34550
|
export interface ProductionOrderBomDto {
|
|
34551
|
-
position
|
|
34551
|
+
position?: string;
|
|
34552
34552
|
lineNumber: number;
|
|
34553
34553
|
part: PartDto;
|
|
34554
|
-
dimension
|
|
34554
|
+
dimension?: string;
|
|
34555
34555
|
operation: number;
|
|
34556
|
-
operationName
|
|
34556
|
+
operationName?: string;
|
|
34557
34557
|
warehouse?: string | null;
|
|
34558
34558
|
fixedLocation?: string | null;
|
|
34559
|
-
fixedLocations
|
|
34560
|
-
unit
|
|
34559
|
+
fixedLocations?: string[];
|
|
34560
|
+
unit?: string;
|
|
34561
34561
|
quantityPerPart: number;
|
|
34562
34562
|
totalRequiredQuantity: number;
|
|
34563
34563
|
usedQuantity: number;
|
|
34564
|
-
availableQuantity
|
|
34564
|
+
availableQuantity?: number | null;
|
|
34565
34565
|
drawing?: DrawingDto | null;
|
|
34566
34566
|
orderReference?: OrderReferenceDto | null;
|
|
34567
34567
|
status: MaterialStatus;
|
|
@@ -34575,20 +34575,20 @@ export interface InventoryDto {
|
|
|
34575
34575
|
siteId: string;
|
|
34576
34576
|
warehouseId: string;
|
|
34577
34577
|
locationId: string;
|
|
34578
|
-
batchNumber
|
|
34579
|
-
vendorBatch
|
|
34578
|
+
batchNumber?: string;
|
|
34579
|
+
vendorBatch?: string;
|
|
34580
34580
|
available: number;
|
|
34581
34581
|
}
|
|
34582
34582
|
|
|
34583
34583
|
export interface PickListSuggestionDto {
|
|
34584
|
-
position
|
|
34584
|
+
position?: string;
|
|
34585
34585
|
lineNumber: number;
|
|
34586
34586
|
part: PartDto;
|
|
34587
|
-
dimension
|
|
34587
|
+
dimension?: string;
|
|
34588
34588
|
operation: number;
|
|
34589
|
-
warehouse
|
|
34590
|
-
fixedLocation
|
|
34591
|
-
unit
|
|
34589
|
+
warehouse?: string;
|
|
34590
|
+
fixedLocation?: string;
|
|
34591
|
+
unit?: string;
|
|
34592
34592
|
orderReference?: OrderReferenceDto | null;
|
|
34593
34593
|
quantityPerPart: number;
|
|
34594
34594
|
totalRequiredQuantity: number;
|
|
@@ -34647,7 +34647,7 @@ export interface NonConformanceAttachmentDto {
|
|
|
34647
34647
|
export interface WorkCenterDto {
|
|
34648
34648
|
id: string;
|
|
34649
34649
|
name: string;
|
|
34650
|
-
workCenterType
|
|
34650
|
+
workCenterType?: string;
|
|
34651
34651
|
department?: DepartmentDto | null;
|
|
34652
34652
|
}
|
|
34653
34653
|
|
|
@@ -34774,7 +34774,7 @@ export interface SurroundingOperationDto {
|
|
|
34774
34774
|
|
|
34775
34775
|
export interface OperationPrerequisitesDto {
|
|
34776
34776
|
drawing?: boolean | null;
|
|
34777
|
-
materials
|
|
34777
|
+
materials?: MaterialsPrerequisiteDto;
|
|
34778
34778
|
cncProgram?: boolean | null;
|
|
34779
34779
|
}
|
|
34780
34780
|
|
|
@@ -34922,12 +34922,12 @@ export interface ReportOperationProgress {
|
|
|
34922
34922
|
export interface ReportOperationProgressDto {
|
|
34923
34923
|
workOrder: string;
|
|
34924
34924
|
operationNumber: number;
|
|
34925
|
-
resource
|
|
34925
|
+
resource?: string;
|
|
34926
34926
|
goodQuantity?: number | null;
|
|
34927
34927
|
errorQuantity?: number | null;
|
|
34928
34928
|
errorCause?: ErrorCauseDto | null;
|
|
34929
|
-
nextStatus
|
|
34930
|
-
workType
|
|
34929
|
+
nextStatus?: NextOperationStatusDto;
|
|
34930
|
+
workType?: WorkTypeDto;
|
|
34931
34931
|
}
|
|
34932
34932
|
|
|
34933
34933
|
export type ErrorCauseDto = "None" | "Material" | "Machine" | "OperatingStaff";
|
|
@@ -35338,7 +35338,7 @@ export interface ImaMaterialCheckDto {
|
|
|
35338
35338
|
updatedBy: string;
|
|
35339
35339
|
updatedById: string;
|
|
35340
35340
|
updatedByName: string;
|
|
35341
|
-
isDeleted
|
|
35341
|
+
isDeleted?: boolean;
|
|
35342
35342
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
35343
35343
|
specificationResults: ImaSpecificationResultsDto;
|
|
35344
35344
|
}
|
|
@@ -35748,7 +35748,7 @@ export interface PurchaseOrderMaterialLineDetailsDto {
|
|
|
35748
35748
|
}
|
|
35749
35749
|
|
|
35750
35750
|
export interface Part {
|
|
35751
|
-
partNumber
|
|
35751
|
+
partNumber?: string;
|
|
35752
35752
|
partRevision?: string | null;
|
|
35753
35753
|
partName?: string | null;
|
|
35754
35754
|
customerPartNumber?: string | null;
|
|
@@ -37089,13 +37089,13 @@ export interface CreateWorkOrderMapping {
|
|
|
37089
37089
|
}
|
|
37090
37090
|
|
|
37091
37091
|
export interface WorkorderDiscussionMessageDto {
|
|
37092
|
-
id
|
|
37093
|
-
workorderId
|
|
37094
|
-
companyId
|
|
37095
|
-
content
|
|
37092
|
+
id?: string;
|
|
37093
|
+
workorderId?: string;
|
|
37094
|
+
companyId?: string;
|
|
37095
|
+
content?: string;
|
|
37096
37096
|
contentParts?: WorkOrderDiscussionContent[] | null;
|
|
37097
|
-
senderUpn
|
|
37098
|
-
senderName
|
|
37097
|
+
senderUpn?: string;
|
|
37098
|
+
senderName?: string;
|
|
37099
37099
|
operationId?: string | null;
|
|
37100
37100
|
operationName?: string | null;
|
|
37101
37101
|
resourceId?: string | null;
|
|
@@ -37117,10 +37117,10 @@ export interface AddDiscussionMessageRequest {
|
|
|
37117
37117
|
}
|
|
37118
37118
|
|
|
37119
37119
|
export interface WorkorderDiscussionReadStatusDto {
|
|
37120
|
-
workorderId
|
|
37120
|
+
workorderId?: string;
|
|
37121
37121
|
operationId?: string | null;
|
|
37122
37122
|
resourceId?: string | null;
|
|
37123
|
-
userUpn
|
|
37123
|
+
userUpn?: string;
|
|
37124
37124
|
lastRead?: Date;
|
|
37125
37125
|
}
|
|
37126
37126
|
|