@ignos/api-client 20260513.127.1 → 20260519.129.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.
@@ -3610,15 +3610,15 @@ export interface DowntimePeriodReasonDto {
3610
3610
  startTime: Date;
3611
3611
  endTime?: Date | null;
3612
3612
  assetId: number;
3613
- comment?: string | null;
3614
- companyId?: string | null;
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?: string | null;
3620
- partNumber?: string | null;
3621
- partName?: string | null;
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?: number;
3645
- programValue?: string;
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?: Machine[];
3671
+ machines: Machine[];
3672
3672
  }
3673
3673
  export interface Machine {
3674
3674
  externalId?: string;
@@ -3773,6 +3773,7 @@ export interface MoveAppSettings {
3773
3773
  }
3774
3774
  export interface EngageAppSettings {
3775
3775
  myResourceGroup?: string;
3776
+ favoriteResourceGroups?: string[] | null;
3776
3777
  }
3777
3778
  export interface UploadInfoDto {
3778
3779
  baseUrl?: string | null;
@@ -4155,9 +4156,9 @@ export interface UpdateCalendarSettingsCommand {
4155
4156
  defaultPerformancePercent?: number | null;
4156
4157
  }
4157
4158
  export interface CalendarDefinitionDto {
4158
- id?: string;
4159
- name?: string;
4160
- hoursPerWeekday?: {
4159
+ id: string;
4160
+ name: string;
4161
+ hoursPerWeekday: {
4161
4162
  [key in DayOfWeek]?: number;
4162
4163
  };
4163
4164
  created?: Date | null;
@@ -4176,25 +4177,25 @@ export interface UpdateCalendarDefinitionRequest {
4176
4177
  } | null;
4177
4178
  }
4178
4179
  export interface ResourceCalendarPeriodSchedulesDto {
4179
- groups?: ResourceCalendarPeriodGroupDto[];
4180
- ungroupedResources?: ResourceCalendarPeriodsDto[];
4180
+ groups: ResourceCalendarPeriodGroupDto[];
4181
+ ungroupedResources: ResourceCalendarPeriodsDto[];
4181
4182
  }
4182
4183
  export interface ResourceCalendarPeriodGroupDto {
4183
- resourceGroupName?: string;
4184
- resources?: ResourceCalendarPeriodsDto[];
4184
+ resourceGroupName: string;
4185
+ resources: ResourceCalendarPeriodsDto[];
4185
4186
  }
4186
4187
  export interface ResourceCalendarPeriodsDto {
4187
- resourceExternalId?: string;
4188
- resourceName?: string;
4189
- periods?: ResourceCalendarPeriodDto[];
4188
+ resourceExternalId: string;
4189
+ resourceName: string;
4190
+ periods: ResourceCalendarPeriodDto[];
4190
4191
  }
4191
4192
  export interface ResourceCalendarPeriodDto {
4192
- resourceExternalId?: string;
4193
- calendarDefinitionId?: string;
4194
- calendarDefinitionName?: string;
4195
- effectiveFrom?: string;
4193
+ resourceExternalId: string;
4194
+ calendarDefinitionId: string;
4195
+ calendarDefinitionName: string;
4196
+ effectiveFrom: string;
4196
4197
  effectiveTo?: string | null;
4197
- targetPercent?: number;
4198
+ targetPercent: number;
4198
4199
  comment?: string | null;
4199
4200
  }
4200
4201
  export interface AddResourceCalendarPeriod {
@@ -4214,8 +4215,8 @@ export interface DeleteResourceCalendarPeriod {
4214
4215
  periods: PeriodKey[];
4215
4216
  }
4216
4217
  export interface PeriodKey {
4217
- resourceExternalId?: string;
4218
- effectiveFrom?: string;
4218
+ resourceExternalId: string;
4219
+ effectiveFrom: string;
4219
4220
  }
4220
4221
  export interface BulkAddResourceCalendarPeriods {
4221
4222
  resourceExternalIds: string[];
@@ -4245,13 +4246,13 @@ export interface ResourceDayKpiDto {
4245
4246
  utilizationGoal: number;
4246
4247
  }
4247
4248
  export interface ResourceDailyUptimeDto {
4248
- date?: Date;
4249
+ date: Date;
4249
4250
  historicUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
4250
4251
  todayUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
4251
4252
  }
4252
4253
  export interface ResourceDailyUptimePointDto {
4253
- date?: Date;
4254
- uptime?: number;
4254
+ date: Date;
4255
+ uptime: number;
4255
4256
  }
4256
4257
  export interface UptimeTrendDataPointDto {
4257
4258
  timestamp: Date;
@@ -4374,7 +4375,7 @@ export interface WorkorderOperationEventDto {
4374
4375
  isSetup: boolean;
4375
4376
  employee?: EmployeeDto | null;
4376
4377
  resourceId: string;
4377
- description?: string;
4378
+ description: string;
4378
4379
  part?: PartDto | null;
4379
4380
  workorderDescription?: string | null;
4380
4381
  operationDescription?: string | null;
@@ -4454,7 +4455,7 @@ export interface MachineDto {
4454
4455
  export interface CreateMachineWithoutResource {
4455
4456
  id: string;
4456
4457
  name: string;
4457
- description?: string | null;
4458
+ description: string | null;
4458
4459
  type: string;
4459
4460
  displayName?: string | null;
4460
4461
  manufacturer?: string | null;
@@ -4477,7 +4478,7 @@ export interface CreateResourceWithMachine {
4477
4478
  displayName?: string | null;
4478
4479
  machineId: string;
4479
4480
  machineName: string;
4480
- machineDescription?: string | null;
4481
+ machineDescription: string | null;
4481
4482
  machineType: string;
4482
4483
  manufacturer?: string | null;
4483
4484
  location?: string | null;
@@ -4605,13 +4606,13 @@ export interface MachineUtilizationDatapointListDto extends UtilizationDatapoint
4605
4606
  description?: string | null;
4606
4607
  }
4607
4608
  export interface CompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
4608
- groups?: ResourceGroupUtilizationDatapointListDto[];
4609
- ungroupedResources?: ResourceUtilizationDatapointListDto[];
4609
+ groups: ResourceGroupUtilizationDatapointListDto[];
4610
+ ungroupedResources: ResourceUtilizationDatapointListDto[];
4610
4611
  }
4611
4612
  export interface ResourceGroupUtilizationDatapointListDto extends UtilizationDatapointListDto {
4612
4613
  groupId: string;
4613
4614
  groupName: string;
4614
- resources?: ResourceUtilizationDatapointListDto[];
4615
+ resources: ResourceUtilizationDatapointListDto[];
4615
4616
  }
4616
4617
  export interface ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
4617
4618
  externalId: string;
@@ -4620,11 +4621,11 @@ export interface ResourceUtilizationDatapointListDto extends UtilizationDatapoin
4620
4621
  description?: string | null;
4621
4622
  }
4622
4623
  export interface CrossCompanyUtilizationDatapointListDto extends UtilizationDatapointListDto {
4623
- companies?: NamedCompanyUtilizationDatapointListDto[];
4624
+ companies: NamedCompanyUtilizationDatapointListDto[];
4624
4625
  }
4625
4626
  export interface CompanyUtilizationDatapointListDto extends UtilizationDatapointListDto {
4626
- groups?: MachineGroupUtilizationDatapointListDto[];
4627
- ungroupedMachines?: MachineUtilizationDatapointListDto[];
4627
+ groups: MachineGroupUtilizationDatapointListDto[];
4628
+ ungroupedMachines: MachineUtilizationDatapointListDto[];
4628
4629
  }
4629
4630
  export interface NamedCompanyUtilizationDatapointListDto extends CompanyUtilizationDatapointListDto {
4630
4631
  companyId: string;
@@ -4633,7 +4634,7 @@ export interface NamedCompanyUtilizationDatapointListDto extends CompanyUtilizat
4633
4634
  export interface MachineGroupUtilizationDatapointListDto extends UtilizationDatapointListDto {
4634
4635
  groupId: string;
4635
4636
  groupName: string;
4636
- machines?: MachineUtilizationDatapointListDto[];
4637
+ machines: MachineUtilizationDatapointListDto[];
4637
4638
  }
4638
4639
  export interface CrossCompanyResourceUtilizationDto {
4639
4640
  utilizationType: ResourceUtilizationTypeDto;
@@ -4645,7 +4646,7 @@ export interface NamedCompanyResourceUtilizationDto extends CompanyResourceUtili
4645
4646
  companyName: string;
4646
4647
  }
4647
4648
  export interface CrossCompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
4648
- companies?: NamedCompanyResourceUtilizationDatapointListDto[];
4649
+ companies: NamedCompanyResourceUtilizationDatapointListDto[];
4649
4650
  }
4650
4651
  export interface NamedCompanyResourceUtilizationDatapointListDto extends CompanyResourceUtilizationDatapointListDto {
4651
4652
  companyId: string;
@@ -4845,8 +4846,8 @@ export interface CreateMrbTemplateRequest {
4845
4846
  pdfFilename?: string | null;
4846
4847
  }
4847
4848
  export interface UpdateMrbTemplate {
4848
- id?: string;
4849
- title?: string;
4849
+ id: string;
4850
+ title: string;
4850
4851
  tableOfContents?: MrbTemplateTableOfContentsDto | null;
4851
4852
  elements?: MrbTemplateUpdateElementDto[];
4852
4853
  contentIndicator?: string | null;
@@ -4935,6 +4936,10 @@ export interface TraceListItemDto {
4935
4936
  consumptions: TraceItemConsumptionDto[];
4936
4937
  }
4937
4938
  export interface TraceItemConsumptionDto {
4939
+ updated?: Date | null;
4940
+ updatedBy?: string | null;
4941
+ updatedById?: string | null;
4942
+ updateType?: TraceUpdateType | null;
4938
4943
  sourceWorkOrder?: string | null;
4939
4944
  sourceSequence?: string | null;
4940
4945
  traceNumber?: string | null;
@@ -4945,6 +4950,7 @@ export interface TraceItemConsumptionDto {
4945
4950
  reference?: string | null;
4946
4951
  label: string;
4947
4952
  }
4953
+ export type TraceUpdateType = "None" | "User" | "System";
4948
4954
  export interface TraceMaterialDetailDto {
4949
4955
  materialLine: number;
4950
4956
  operation?: number | null;
@@ -5049,7 +5055,7 @@ export interface TraceWorkOrderListDto {
5049
5055
  id: string;
5050
5056
  part: PartDto;
5051
5057
  quantity: number;
5052
- unit?: string | null;
5058
+ unit: string | null;
5053
5059
  status: WorkorderStatus;
5054
5060
  plannedStart?: Date | null;
5055
5061
  plannedEnd?: Date | null;
@@ -5461,13 +5467,13 @@ export interface MachineDayKpiDto {
5461
5467
  utilizationGoal: number;
5462
5468
  }
5463
5469
  export interface MachineDailyUptimeDto {
5464
- date?: Date;
5470
+ date: Date;
5465
5471
  historicUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
5466
5472
  todayUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
5467
5473
  }
5468
5474
  export interface MachineDailyUptimePointDto {
5469
- date?: Date;
5470
- uptime?: number;
5475
+ date: Date;
5476
+ uptime: number;
5471
5477
  }
5472
5478
  export interface MachineGroupDto {
5473
5479
  id: string;
@@ -5807,8 +5813,8 @@ export interface TransferToMachineRequest {
5807
5813
  programs?: ProgramSelectionRequest[] | null;
5808
5814
  }
5809
5815
  export interface ProgramSelectionRequest {
5810
- id?: string;
5811
- version?: number;
5816
+ id: string;
5817
+ version: number;
5812
5818
  }
5813
5819
  export interface UploadCamFileDto {
5814
5820
  uploadUrl: string;
@@ -6156,7 +6162,7 @@ export interface MarkdownNotesDto {
6156
6162
  }
6157
6163
  export interface SaveMarkdownNotes {
6158
6164
  id: string;
6159
- markdown?: string;
6165
+ markdown: string;
6160
6166
  }
6161
6167
  export interface CncToolTypeDto {
6162
6168
  id: string;
@@ -6329,7 +6335,7 @@ export interface UpdateKeepSettings {
6329
6335
  }
6330
6336
  export interface FixtureListDto {
6331
6337
  results: FixtureDto[];
6332
- continuationToken?: string | null;
6338
+ continuationToken: string | null;
6333
6339
  }
6334
6340
  export interface FixtureDto {
6335
6341
  fixtureId: string;
@@ -6617,7 +6623,7 @@ export interface UpdateMachineInactivitySubscription {
6617
6623
  export interface IntegrationCredentialDto {
6618
6624
  type: CredentialTypeDto;
6619
6625
  id: string;
6620
- name?: string;
6626
+ name: string;
6621
6627
  clientId?: string | null;
6622
6628
  expirationDate?: Date | null;
6623
6629
  activationDate?: Date | null;
@@ -6766,7 +6772,7 @@ export interface BookingParcelDto {
6766
6772
  materialPartName?: string | null;
6767
6773
  materialPartNumber?: string | null;
6768
6774
  covered: MaterialCoveredDto;
6769
- item?: BookingItemDto;
6775
+ item: BookingItemDto;
6770
6776
  }
6771
6777
  export type MaterialCoveredDto = "NotDefined" | "NotCovered" | "Covered";
6772
6778
  export interface BookingItemDto {
@@ -6807,11 +6813,11 @@ export type BookingTaskDto = "MyTasks" | "OthersTasks";
6807
6813
  export type BookingCreatedByDto = "MyBookings" | "OthersBookings";
6808
6814
  export type BookingOrderDto = "Ascending" | "Descending";
6809
6815
  export interface BookingFilterResultsDto {
6810
- bookingStatus?: BookingStatusResultsDto[];
6811
- transportKind?: TransportKindResultsDto[];
6812
- parcelKind?: ParcelKindResultsDto[];
6813
- fromLocations?: LocationZoneGroupDto[];
6814
- toLocations?: LocationZoneGroupDto[];
6816
+ bookingStatus: BookingStatusResultsDto[];
6817
+ transportKind: TransportKindResultsDto[];
6818
+ parcelKind: ParcelKindResultsDto[];
6819
+ fromLocations: LocationZoneGroupDto[];
6820
+ toLocations: LocationZoneGroupDto[];
6815
6821
  }
6816
6822
  export interface BookingStatusResultsDto {
6817
6823
  bookingStatus?: BookingStatusDto;
@@ -6897,23 +6903,23 @@ export interface BookingStatusUpdateDto {
6897
6903
  deliveryExceptionComment?: string | null;
6898
6904
  }
6899
6905
  export interface MoveInfoscreenDto {
6900
- id?: string;
6901
- name?: string;
6902
- slug?: string;
6903
- fromZoneIds?: string[];
6904
- fromLocationIds?: string[];
6905
- toZoneIds?: string[];
6906
- toLocationIds?: string[];
6906
+ id: string;
6907
+ name: string;
6908
+ slug: string;
6909
+ fromZoneIds: string[];
6910
+ fromLocationIds: string[];
6911
+ toZoneIds: string[];
6912
+ toLocationIds: string[];
6907
6913
  }
6908
6914
  export interface CreateMoveInfoscreenRequestDto {
6909
- name?: string;
6915
+ name: string;
6910
6916
  fromZoneIds?: string[];
6911
6917
  fromLocationIds?: string[];
6912
6918
  toZoneIds?: string[];
6913
6919
  toLocationIds?: string[];
6914
6920
  }
6915
6921
  export interface UpdateMoveInfoscreenRequestDto {
6916
- name?: string;
6922
+ name: string;
6917
6923
  fromZoneIds?: string[];
6918
6924
  fromLocationIds?: string[];
6919
6925
  toZoneIds?: string[];
@@ -6969,15 +6975,15 @@ export interface MoveSubscriptionDto {
6969
6975
  }
6970
6976
  export interface MoveSubscriptionZoneDto {
6971
6977
  zoneId: string;
6972
- bookingFromLocation?: boolean;
6973
- bookingToLocation?: boolean;
6974
- locationChange?: boolean;
6978
+ bookingFromLocation: boolean;
6979
+ bookingToLocation: boolean;
6980
+ locationChange: boolean;
6975
6981
  }
6976
6982
  export interface MoveSubscriptionLocationDto {
6977
6983
  locationId: string;
6978
- bookingFromLocation?: boolean;
6979
- bookingToLocation?: boolean;
6980
- locationChange?: boolean;
6984
+ bookingFromLocation: boolean;
6985
+ bookingToLocation: boolean;
6986
+ locationChange: boolean;
6981
6987
  }
6982
6988
  export interface UpdateNotifications {
6983
6989
  enabledNotifications: boolean;
@@ -6987,15 +6993,15 @@ export interface UpdateNotifications {
6987
6993
  }
6988
6994
  export interface MoveSubscriptionZoneUpdateDto {
6989
6995
  zoneId: string;
6990
- bookingFromLocation?: boolean;
6991
- bookingToLocation?: boolean;
6992
- locationChange?: boolean;
6996
+ bookingFromLocation: boolean;
6997
+ bookingToLocation: boolean;
6998
+ locationChange: boolean;
6993
6999
  }
6994
7000
  export interface MoveSubscriptionLocationUpdateDto {
6995
7001
  locationId: string;
6996
- bookingFromLocation?: boolean;
6997
- bookingToLocation?: boolean;
6998
- locationChange?: boolean;
7002
+ bookingFromLocation: boolean;
7003
+ bookingToLocation: boolean;
7004
+ locationChange: boolean;
6999
7005
  }
7000
7006
  export interface SearchParcelDto {
7001
7007
  parcelId: string;
@@ -7037,7 +7043,7 @@ export interface TrackingHistoryDto {
7037
7043
  materialPartName?: string | null;
7038
7044
  materialPartNumber?: string | null;
7039
7045
  category?: string | null;
7040
- currentTracking?: TrackingEventDto | null;
7046
+ currentTracking: TrackingEventDto | null;
7041
7047
  trackingEvents: TrackingEventDto[];
7042
7048
  suggestions?: SuggestionsItemDto | null;
7043
7049
  }
@@ -7085,7 +7091,7 @@ export interface TrackingHistoryFlattenedDto {
7085
7091
  materialPartName?: string | null;
7086
7092
  materialPartNumber?: string | null;
7087
7093
  category?: string | null;
7088
- currentTracking?: TrackingEventDto | null;
7094
+ currentTracking: TrackingEventDto | null;
7089
7095
  trackingEvents: TrackingEventDto[];
7090
7096
  }
7091
7097
  export interface TrackingParcelRequestListDto {
@@ -7144,26 +7150,26 @@ export interface EngineeringChangeOrdersDto {
7144
7150
  engineeringChangeOrders?: EngineeringChangeOrderDto[];
7145
7151
  }
7146
7152
  export interface AddMesLink {
7147
- uri?: string;
7148
- name?: string;
7149
- type?: MesLinkTypeDto;
7153
+ uri: string;
7154
+ name: string;
7155
+ type: MesLinkTypeDto;
7150
7156
  openInNewTab?: boolean;
7151
7157
  description?: string | null;
7152
7158
  }
7153
7159
  export type MesLinkTypeDto = "Static" | "Operation" | "WorkOrder";
7154
7160
  export interface MesLinkDto {
7155
- id?: string;
7156
- uri?: string;
7157
- name?: string;
7158
- type?: MesLinkTypeDto;
7159
- openInNewTab?: boolean;
7161
+ id: string;
7162
+ uri: string;
7163
+ name: string;
7164
+ type: MesLinkTypeDto;
7165
+ openInNewTab: boolean;
7160
7166
  description?: string | null;
7161
7167
  }
7162
7168
  export interface UpdateMesLink {
7163
- id?: string;
7164
- uri?: string;
7165
- name?: string;
7166
- type?: MesLinkTypeDto;
7169
+ id: string;
7170
+ uri: string;
7171
+ name: string;
7172
+ type: MesLinkTypeDto;
7167
7173
  openInNewTab?: boolean;
7168
7174
  description?: string | null;
7169
7175
  moveLinkRequest?: MoveLinkRequest | null;
@@ -7252,7 +7258,7 @@ export interface WorkOrderAttachmentDto {
7252
7258
  }
7253
7259
  export interface DrawingDto {
7254
7260
  drawingNumber: string;
7255
- revision?: string;
7261
+ revision: string;
7256
7262
  status: string;
7257
7263
  files: DrawingFileDto[];
7258
7264
  }
@@ -7268,20 +7274,20 @@ export interface OrderReferenceDto {
7268
7274
  }
7269
7275
  export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
7270
7276
  export interface ProductionOrderBomDto {
7271
- position?: string;
7277
+ position: string;
7272
7278
  lineNumber: number;
7273
7279
  part: PartDto;
7274
- dimension?: string;
7280
+ dimension: string;
7275
7281
  operation: number;
7276
- operationName?: string;
7282
+ operationName: string;
7277
7283
  warehouse?: string | null;
7278
7284
  fixedLocation?: string | null;
7279
- fixedLocations?: string[];
7280
- unit?: string;
7285
+ fixedLocations: string[];
7286
+ unit: string;
7281
7287
  quantityPerPart: number;
7282
7288
  totalRequiredQuantity: number;
7283
7289
  usedQuantity: number;
7284
- availableQuantity?: number | null;
7290
+ availableQuantity: number | null;
7285
7291
  drawing?: DrawingDto | null;
7286
7292
  orderReference?: OrderReferenceDto | null;
7287
7293
  status: MaterialStatus;
@@ -7294,19 +7300,19 @@ export interface InventoryDto {
7294
7300
  siteId: string;
7295
7301
  warehouseId: string;
7296
7302
  locationId: string;
7297
- batchNumber?: string;
7298
- vendorBatch?: string;
7303
+ batchNumber: string;
7304
+ vendorBatch: string;
7299
7305
  available: number;
7300
7306
  }
7301
7307
  export interface PickListSuggestionDto {
7302
- position?: string;
7308
+ position: string;
7303
7309
  lineNumber: number;
7304
7310
  part: PartDto;
7305
- dimension?: string;
7311
+ dimension: string;
7306
7312
  operation: number;
7307
- warehouse?: string;
7308
- fixedLocation?: string;
7309
- unit?: string;
7313
+ warehouse: string;
7314
+ fixedLocation: string;
7315
+ unit: string;
7310
7316
  orderReference?: OrderReferenceDto | null;
7311
7317
  quantityPerPart: number;
7312
7318
  totalRequiredQuantity: number;
@@ -7360,7 +7366,7 @@ export interface NonConformanceAttachmentDto {
7360
7366
  export interface WorkCenterDto {
7361
7367
  id: string;
7362
7368
  name: string;
7363
- workCenterType?: string;
7369
+ workCenterType: string;
7364
7370
  department?: DepartmentDto | null;
7365
7371
  }
7366
7372
  export interface MaterialPickListResultDto {
@@ -7477,7 +7483,7 @@ export interface SurroundingOperationDto {
7477
7483
  }
7478
7484
  export interface OperationPrerequisitesDto {
7479
7485
  drawing?: boolean | null;
7480
- materials?: MaterialsPrerequisiteDto;
7486
+ materials: MaterialsPrerequisiteDto;
7481
7487
  cncProgram?: boolean | null;
7482
7488
  }
7483
7489
  export interface MaterialsPrerequisiteDto {
@@ -7609,12 +7615,12 @@ export interface ReportOperationProgress {
7609
7615
  export interface ReportOperationProgressDto {
7610
7616
  workOrder: string;
7611
7617
  operationNumber: number;
7612
- resource?: string;
7618
+ resource: string;
7613
7619
  goodQuantity?: number | null;
7614
7620
  errorQuantity?: number | null;
7615
7621
  errorCause?: ErrorCauseDto | null;
7616
- nextStatus?: NextOperationStatusDto;
7617
- workType?: WorkTypeDto;
7622
+ nextStatus: NextOperationStatusDto;
7623
+ workType: WorkTypeDto;
7618
7624
  }
7619
7625
  export type ErrorCauseDto = "None" | "Material" | "Machine" | "OperatingStaff";
7620
7626
  export type NextOperationStatusDto = "InProgress" | "Stopped" | "Completed";
@@ -7978,7 +7984,7 @@ export interface ImaMaterialCheckDto {
7978
7984
  updatedBy: string;
7979
7985
  updatedById: string;
7980
7986
  updatedByName: string;
7981
- isDeleted?: boolean;
7987
+ isDeleted: boolean;
7982
7988
  certificateTypeResults: ImaCertificateTypeResultsDto;
7983
7989
  specificationResults: ImaSpecificationResultsDto;
7984
7990
  }
@@ -8337,7 +8343,7 @@ export interface PurchaseOrderMaterialLineDetailsDto {
8337
8343
  typeOfCertificate?: string | null;
8338
8344
  }
8339
8345
  export interface Part {
8340
- partNumber?: string;
8346
+ partNumber: string;
8341
8347
  partRevision?: string | null;
8342
8348
  partName?: string | null;
8343
8349
  customerPartNumber?: string | null;
@@ -9526,13 +9532,13 @@ export interface CreateWorkOrderMapping {
9526
9532
  newWorkOrderId: string;
9527
9533
  }
9528
9534
  export interface WorkorderDiscussionMessageDto {
9529
- id?: string;
9530
- workorderId?: string;
9531
- companyId?: string;
9532
- content?: string;
9535
+ id: string;
9536
+ workorderId: string;
9537
+ companyId: string;
9538
+ content: string;
9533
9539
  contentParts?: WorkOrderDiscussionContent[] | null;
9534
- senderUpn?: string;
9535
- senderName?: string;
9540
+ senderUpn: string;
9541
+ senderName: string;
9536
9542
  operationId?: string | null;
9537
9543
  operationName?: string | null;
9538
9544
  resourceId?: string | null;
@@ -9550,10 +9556,10 @@ export interface AddDiscussionMessageRequest {
9550
9556
  resourceId?: string | null;
9551
9557
  }
9552
9558
  export interface WorkorderDiscussionReadStatusDto {
9553
- workorderId?: string;
9559
+ workorderId: string;
9554
9560
  operationId?: string | null;
9555
9561
  resourceId?: string | null;
9556
- userUpn?: string;
9562
+ userUpn: string;
9557
9563
  lastRead?: Date;
9558
9564
  }
9559
9565
  export interface SetDiscussionLastReadRequest {
@@ -1,6 +1,6 @@
1
1
  //----------------------
2
2
  // <auto-generated>
3
- // Generated using the NSwag toolchain v14.6.3.0 (NJsonSchema v11.5.2.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260513.127.1",
3
+ "version": "20260519.129.1-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -1,6 +1,6 @@
1
1
  //----------------------
2
2
  // <auto-generated>
3
- // Generated using the NSwag toolchain v14.6.3.0 (NJsonSchema v11.5.2.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
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?: string | null;
30361
- companyId?: string | null;
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?: string | null;
30367
- partNumber?: string | null;
30368
- partName?: string | null;
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?: number;
30394
- programValue?: string;
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?: Machine[];
30426
+ machines: Machine[];
30427
30427
  }
30428
30428
 
30429
30429
  export interface Machine {
@@ -30547,6 +30547,7 @@ export interface MoveAppSettings {
30547
30547
 
30548
30548
  export interface EngageAppSettings {
30549
30549
  myResourceGroup?: string;
30550
+ favoriteResourceGroups?: string[] | null;
30550
30551
  }
30551
30552
 
30552
30553
  export interface UploadInfoDto {
@@ -30989,9 +30990,9 @@ export interface UpdateCalendarSettingsCommand {
30989
30990
  }
30990
30991
 
30991
30992
  export interface CalendarDefinitionDto {
30992
- id?: string;
30993
- name?: string;
30994
- hoursPerWeekday?: { [key in DayOfWeek]?: number; };
30993
+ id: string;
30994
+ name: string;
30995
+ hoursPerWeekday: { [key in DayOfWeek]?: number; };
30995
30996
  created?: Date | null;
30996
30997
  updatedBy?: string | null;
30997
30998
  }
@@ -31007,28 +31008,28 @@ export interface UpdateCalendarDefinitionRequest {
31007
31008
  }
31008
31009
 
31009
31010
  export interface ResourceCalendarPeriodSchedulesDto {
31010
- groups?: ResourceCalendarPeriodGroupDto[];
31011
- ungroupedResources?: ResourceCalendarPeriodsDto[];
31011
+ groups: ResourceCalendarPeriodGroupDto[];
31012
+ ungroupedResources: ResourceCalendarPeriodsDto[];
31012
31013
  }
31013
31014
 
31014
31015
  export interface ResourceCalendarPeriodGroupDto {
31015
- resourceGroupName?: string;
31016
- resources?: ResourceCalendarPeriodsDto[];
31016
+ resourceGroupName: string;
31017
+ resources: ResourceCalendarPeriodsDto[];
31017
31018
  }
31018
31019
 
31019
31020
  export interface ResourceCalendarPeriodsDto {
31020
- resourceExternalId?: string;
31021
- resourceName?: string;
31022
- periods?: ResourceCalendarPeriodDto[];
31021
+ resourceExternalId: string;
31022
+ resourceName: string;
31023
+ periods: ResourceCalendarPeriodDto[];
31023
31024
  }
31024
31025
 
31025
31026
  export interface ResourceCalendarPeriodDto {
31026
- resourceExternalId?: string;
31027
- calendarDefinitionId?: string;
31028
- calendarDefinitionName?: string;
31029
- effectiveFrom?: string;
31027
+ resourceExternalId: string;
31028
+ calendarDefinitionId: string;
31029
+ calendarDefinitionName: string;
31030
+ effectiveFrom: string;
31030
31031
  effectiveTo?: string | null;
31031
- targetPercent?: number;
31032
+ targetPercent: number;
31032
31033
  comment?: string | null;
31033
31034
  }
31034
31035
 
@@ -31052,8 +31053,8 @@ export interface DeleteResourceCalendarPeriod {
31052
31053
  }
31053
31054
 
31054
31055
  export interface PeriodKey {
31055
- resourceExternalId?: string;
31056
- effectiveFrom?: string;
31056
+ resourceExternalId: string;
31057
+ effectiveFrom: string;
31057
31058
  }
31058
31059
 
31059
31060
  export interface BulkAddResourceCalendarPeriods {
@@ -31089,14 +31090,14 @@ export interface ResourceDayKpiDto {
31089
31090
  }
31090
31091
 
31091
31092
  export interface ResourceDailyUptimeDto {
31092
- date?: Date;
31093
+ date: Date;
31093
31094
  historicUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
31094
31095
  todayUptimeDataPoints?: ResourceDailyUptimePointDto[] | null;
31095
31096
  }
31096
31097
 
31097
31098
  export interface ResourceDailyUptimePointDto {
31098
- date?: Date;
31099
- uptime?: number;
31099
+ date: Date;
31100
+ uptime: number;
31100
31101
  }
31101
31102
 
31102
31103
  export interface UptimeTrendDataPointDto {
@@ -31236,7 +31237,7 @@ export interface WorkorderOperationEventDto {
31236
31237
  isSetup: boolean;
31237
31238
  employee?: EmployeeDto | null;
31238
31239
  resourceId: string;
31239
- description?: string;
31240
+ description: string;
31240
31241
  part?: PartDto | null;
31241
31242
  workorderDescription?: string | null;
31242
31243
  operationDescription?: string | null;
@@ -31329,7 +31330,7 @@ export interface MachineDto {
31329
31330
  export interface CreateMachineWithoutResource {
31330
31331
  id: string;
31331
31332
  name: string;
31332
- description?: string | null;
31333
+ description: string | null;
31333
31334
  type: string;
31334
31335
  displayName?: string | null;
31335
31336
  manufacturer?: string | null;
@@ -31354,7 +31355,7 @@ export interface CreateResourceWithMachine {
31354
31355
  displayName?: string | null;
31355
31356
  machineId: string;
31356
31357
  machineName: string;
31357
- machineDescription?: string | null;
31358
+ machineDescription: string | null;
31358
31359
  machineType: string;
31359
31360
  manufacturer?: string | null;
31360
31361
  location?: string | null;
@@ -31504,14 +31505,14 @@ export interface MachineUtilizationDatapointListDto extends UtilizationDatapoint
31504
31505
  }
31505
31506
 
31506
31507
  export interface CompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
31507
- groups?: ResourceGroupUtilizationDatapointListDto[];
31508
- ungroupedResources?: ResourceUtilizationDatapointListDto[];
31508
+ groups: ResourceGroupUtilizationDatapointListDto[];
31509
+ ungroupedResources: ResourceUtilizationDatapointListDto[];
31509
31510
  }
31510
31511
 
31511
31512
  export interface ResourceGroupUtilizationDatapointListDto extends UtilizationDatapointListDto {
31512
31513
  groupId: string;
31513
31514
  groupName: string;
31514
- resources?: ResourceUtilizationDatapointListDto[];
31515
+ resources: ResourceUtilizationDatapointListDto[];
31515
31516
  }
31516
31517
 
31517
31518
  export interface ResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
@@ -31522,12 +31523,12 @@ export interface ResourceUtilizationDatapointListDto extends UtilizationDatapoin
31522
31523
  }
31523
31524
 
31524
31525
  export interface CrossCompanyUtilizationDatapointListDto extends UtilizationDatapointListDto {
31525
- companies?: NamedCompanyUtilizationDatapointListDto[];
31526
+ companies: NamedCompanyUtilizationDatapointListDto[];
31526
31527
  }
31527
31528
 
31528
31529
  export interface CompanyUtilizationDatapointListDto extends UtilizationDatapointListDto {
31529
- groups?: MachineGroupUtilizationDatapointListDto[];
31530
- ungroupedMachines?: MachineUtilizationDatapointListDto[];
31530
+ groups: MachineGroupUtilizationDatapointListDto[];
31531
+ ungroupedMachines: MachineUtilizationDatapointListDto[];
31531
31532
  }
31532
31533
 
31533
31534
  export interface NamedCompanyUtilizationDatapointListDto extends CompanyUtilizationDatapointListDto {
@@ -31538,7 +31539,7 @@ export interface NamedCompanyUtilizationDatapointListDto extends CompanyUtilizat
31538
31539
  export interface MachineGroupUtilizationDatapointListDto extends UtilizationDatapointListDto {
31539
31540
  groupId: string;
31540
31541
  groupName: string;
31541
- machines?: MachineUtilizationDatapointListDto[];
31542
+ machines: MachineUtilizationDatapointListDto[];
31542
31543
  }
31543
31544
 
31544
31545
  export interface CrossCompanyResourceUtilizationDto {
@@ -31553,7 +31554,7 @@ export interface NamedCompanyResourceUtilizationDto extends CompanyResourceUtili
31553
31554
  }
31554
31555
 
31555
31556
  export interface CrossCompanyResourceUtilizationDatapointListDto extends UtilizationDatapointListDto {
31556
- companies?: NamedCompanyResourceUtilizationDatapointListDto[];
31557
+ companies: NamedCompanyResourceUtilizationDatapointListDto[];
31557
31558
  }
31558
31559
 
31559
31560
  export interface NamedCompanyResourceUtilizationDatapointListDto extends CompanyResourceUtilizationDatapointListDto {
@@ -31783,8 +31784,8 @@ export interface CreateMrbTemplateRequest {
31783
31784
  }
31784
31785
 
31785
31786
  export interface UpdateMrbTemplate {
31786
- id?: string;
31787
- title?: string;
31787
+ id: string;
31788
+ title: string;
31788
31789
  tableOfContents?: MrbTemplateTableOfContentsDto | null;
31789
31790
  elements?: MrbTemplateUpdateElementDto[];
31790
31791
  contentIndicator?: string | null;
@@ -31882,6 +31883,10 @@ export interface TraceListItemDto {
31882
31883
  }
31883
31884
 
31884
31885
  export interface TraceItemConsumptionDto {
31886
+ updated?: Date | null;
31887
+ updatedBy?: string | null;
31888
+ updatedById?: string | null;
31889
+ updateType?: TraceUpdateType | null;
31885
31890
  sourceWorkOrder?: string | null;
31886
31891
  sourceSequence?: string | null;
31887
31892
  traceNumber?: string | null;
@@ -31893,6 +31898,8 @@ export interface TraceItemConsumptionDto {
31893
31898
  label: string;
31894
31899
  }
31895
31900
 
31901
+ export type TraceUpdateType = "None" | "User" | "System";
31902
+
31896
31903
  export interface TraceMaterialDetailDto {
31897
31904
  materialLine: number;
31898
31905
  operation?: number | null;
@@ -32015,7 +32022,7 @@ export interface TraceWorkOrderListDto {
32015
32022
  id: string;
32016
32023
  part: PartDto;
32017
32024
  quantity: number;
32018
- unit?: string | null;
32025
+ unit: string | null;
32019
32026
  status: WorkorderStatus;
32020
32027
  plannedStart?: Date | null;
32021
32028
  plannedEnd?: Date | null;
@@ -32487,14 +32494,14 @@ export interface MachineDayKpiDto {
32487
32494
  }
32488
32495
 
32489
32496
  export interface MachineDailyUptimeDto {
32490
- date?: Date;
32497
+ date: Date;
32491
32498
  historicUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
32492
32499
  todayUptimeDataPoints?: MachineDailyUptimePointDto[] | null;
32493
32500
  }
32494
32501
 
32495
32502
  export interface MachineDailyUptimePointDto {
32496
- date?: Date;
32497
- uptime?: number;
32503
+ date: Date;
32504
+ uptime: number;
32498
32505
  }
32499
32506
 
32500
32507
  export interface MachineGroupDto {
@@ -32891,8 +32898,8 @@ export interface TransferToMachineRequest {
32891
32898
  }
32892
32899
 
32893
32900
  export interface ProgramSelectionRequest {
32894
- id?: string;
32895
- version?: number;
32901
+ id: string;
32902
+ version: number;
32896
32903
  }
32897
32904
 
32898
32905
  export interface UploadCamFileDto {
@@ -33284,7 +33291,7 @@ export interface MarkdownNotesDto {
33284
33291
 
33285
33292
  export interface SaveMarkdownNotes {
33286
33293
  id: string;
33287
- markdown?: string;
33294
+ markdown: string;
33288
33295
  }
33289
33296
 
33290
33297
  export interface CncToolTypeDto {
@@ -33470,7 +33477,7 @@ export interface UpdateKeepSettings {
33470
33477
 
33471
33478
  export interface FixtureListDto {
33472
33479
  results: FixtureDto[];
33473
- continuationToken?: string | null;
33480
+ continuationToken: string | null;
33474
33481
  }
33475
33482
 
33476
33483
  export interface FixtureDto {
@@ -33795,7 +33802,7 @@ export interface UpdateMachineInactivitySubscription {
33795
33802
  export interface IntegrationCredentialDto {
33796
33803
  type: CredentialTypeDto;
33797
33804
  id: string;
33798
- name?: string;
33805
+ name: string;
33799
33806
  clientId?: string | null;
33800
33807
  expirationDate?: Date | null;
33801
33808
  activationDate?: Date | null;
@@ -33964,7 +33971,7 @@ export interface BookingParcelDto {
33964
33971
  materialPartName?: string | null;
33965
33972
  materialPartNumber?: string | null;
33966
33973
  covered: MaterialCoveredDto;
33967
- item?: BookingItemDto;
33974
+ item: BookingItemDto;
33968
33975
  }
33969
33976
 
33970
33977
  export type MaterialCoveredDto = "NotDefined" | "NotCovered" | "Covered";
@@ -34014,11 +34021,11 @@ export type BookingCreatedByDto = "MyBookings" | "OthersBookings";
34014
34021
  export type BookingOrderDto = "Ascending" | "Descending";
34015
34022
 
34016
34023
  export interface BookingFilterResultsDto {
34017
- bookingStatus?: BookingStatusResultsDto[];
34018
- transportKind?: TransportKindResultsDto[];
34019
- parcelKind?: ParcelKindResultsDto[];
34020
- fromLocations?: LocationZoneGroupDto[];
34021
- toLocations?: LocationZoneGroupDto[];
34024
+ bookingStatus: BookingStatusResultsDto[];
34025
+ transportKind: TransportKindResultsDto[];
34026
+ parcelKind: ParcelKindResultsDto[];
34027
+ fromLocations: LocationZoneGroupDto[];
34028
+ toLocations: LocationZoneGroupDto[];
34022
34029
  }
34023
34030
 
34024
34031
  export interface BookingStatusResultsDto {
@@ -34116,17 +34123,17 @@ export interface BookingStatusUpdateDto {
34116
34123
  }
34117
34124
 
34118
34125
  export interface MoveInfoscreenDto {
34119
- id?: string;
34120
- name?: string;
34121
- slug?: string;
34122
- fromZoneIds?: string[];
34123
- fromLocationIds?: string[];
34124
- toZoneIds?: string[];
34125
- toLocationIds?: string[];
34126
+ id: string;
34127
+ name: string;
34128
+ slug: string;
34129
+ fromZoneIds: string[];
34130
+ fromLocationIds: string[];
34131
+ toZoneIds: string[];
34132
+ toLocationIds: string[];
34126
34133
  }
34127
34134
 
34128
34135
  export interface CreateMoveInfoscreenRequestDto {
34129
- name?: string;
34136
+ name: string;
34130
34137
  fromZoneIds?: string[];
34131
34138
  fromLocationIds?: string[];
34132
34139
  toZoneIds?: string[];
@@ -34134,7 +34141,7 @@ export interface CreateMoveInfoscreenRequestDto {
34134
34141
  }
34135
34142
 
34136
34143
  export interface UpdateMoveInfoscreenRequestDto {
34137
- name?: string;
34144
+ name: string;
34138
34145
  fromZoneIds?: string[];
34139
34146
  fromLocationIds?: string[];
34140
34147
  toZoneIds?: string[];
@@ -34201,16 +34208,16 @@ export interface MoveSubscriptionDto {
34201
34208
 
34202
34209
  export interface MoveSubscriptionZoneDto {
34203
34210
  zoneId: string;
34204
- bookingFromLocation?: boolean;
34205
- bookingToLocation?: boolean;
34206
- locationChange?: boolean;
34211
+ bookingFromLocation: boolean;
34212
+ bookingToLocation: boolean;
34213
+ locationChange: boolean;
34207
34214
  }
34208
34215
 
34209
34216
  export interface MoveSubscriptionLocationDto {
34210
34217
  locationId: string;
34211
- bookingFromLocation?: boolean;
34212
- bookingToLocation?: boolean;
34213
- locationChange?: boolean;
34218
+ bookingFromLocation: boolean;
34219
+ bookingToLocation: boolean;
34220
+ locationChange: boolean;
34214
34221
  }
34215
34222
 
34216
34223
  export interface UpdateNotifications {
@@ -34222,16 +34229,16 @@ export interface UpdateNotifications {
34222
34229
 
34223
34230
  export interface MoveSubscriptionZoneUpdateDto {
34224
34231
  zoneId: string;
34225
- bookingFromLocation?: boolean;
34226
- bookingToLocation?: boolean;
34227
- locationChange?: boolean;
34232
+ bookingFromLocation: boolean;
34233
+ bookingToLocation: boolean;
34234
+ locationChange: boolean;
34228
34235
  }
34229
34236
 
34230
34237
  export interface MoveSubscriptionLocationUpdateDto {
34231
34238
  locationId: string;
34232
- bookingFromLocation?: boolean;
34233
- bookingToLocation?: boolean;
34234
- locationChange?: boolean;
34239
+ bookingFromLocation: boolean;
34240
+ bookingToLocation: boolean;
34241
+ locationChange: boolean;
34235
34242
  }
34236
34243
 
34237
34244
  export interface SearchParcelDto {
@@ -34279,7 +34286,7 @@ export interface TrackingHistoryDto {
34279
34286
  materialPartName?: string | null;
34280
34287
  materialPartNumber?: string | null;
34281
34288
  category?: string | null;
34282
- currentTracking?: TrackingEventDto | null;
34289
+ currentTracking: TrackingEventDto | null;
34283
34290
  trackingEvents: TrackingEventDto[];
34284
34291
  suggestions?: SuggestionsItemDto | null;
34285
34292
  }
@@ -34332,7 +34339,7 @@ export interface TrackingHistoryFlattenedDto {
34332
34339
  materialPartName?: string | null;
34333
34340
  materialPartNumber?: string | null;
34334
34341
  category?: string | null;
34335
- currentTracking?: TrackingEventDto | null;
34342
+ currentTracking: TrackingEventDto | null;
34336
34343
  trackingEvents: TrackingEventDto[];
34337
34344
  }
34338
34345
 
@@ -34402,9 +34409,9 @@ export interface EngineeringChangeOrdersDto {
34402
34409
  }
34403
34410
 
34404
34411
  export interface AddMesLink {
34405
- uri?: string;
34406
- name?: string;
34407
- type?: MesLinkTypeDto;
34412
+ uri: string;
34413
+ name: string;
34414
+ type: MesLinkTypeDto;
34408
34415
  openInNewTab?: boolean;
34409
34416
  description?: string | null;
34410
34417
  }
@@ -34412,19 +34419,19 @@ export interface AddMesLink {
34412
34419
  export type MesLinkTypeDto = "Static" | "Operation" | "WorkOrder";
34413
34420
 
34414
34421
  export interface MesLinkDto {
34415
- id?: string;
34416
- uri?: string;
34417
- name?: string;
34418
- type?: MesLinkTypeDto;
34419
- openInNewTab?: boolean;
34422
+ id: string;
34423
+ uri: string;
34424
+ name: string;
34425
+ type: MesLinkTypeDto;
34426
+ openInNewTab: boolean;
34420
34427
  description?: string | null;
34421
34428
  }
34422
34429
 
34423
34430
  export interface UpdateMesLink {
34424
- id?: string;
34425
- uri?: string;
34426
- name?: string;
34427
- type?: MesLinkTypeDto;
34431
+ id: string;
34432
+ uri: string;
34433
+ name: string;
34434
+ type: MesLinkTypeDto;
34428
34435
  openInNewTab?: boolean;
34429
34436
  description?: string | null;
34430
34437
  moveLinkRequest?: MoveLinkRequest | null;
@@ -34521,7 +34528,7 @@ export interface WorkOrderAttachmentDto {
34521
34528
 
34522
34529
  export interface DrawingDto {
34523
34530
  drawingNumber: string;
34524
- revision?: string;
34531
+ revision: string;
34525
34532
  status: string;
34526
34533
  files: DrawingFileDto[];
34527
34534
  }
@@ -34541,20 +34548,20 @@ export interface OrderReferenceDto {
34541
34548
  export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
34542
34549
 
34543
34550
  export interface ProductionOrderBomDto {
34544
- position?: string;
34551
+ position: string;
34545
34552
  lineNumber: number;
34546
34553
  part: PartDto;
34547
- dimension?: string;
34554
+ dimension: string;
34548
34555
  operation: number;
34549
- operationName?: string;
34556
+ operationName: string;
34550
34557
  warehouse?: string | null;
34551
34558
  fixedLocation?: string | null;
34552
- fixedLocations?: string[];
34553
- unit?: string;
34559
+ fixedLocations: string[];
34560
+ unit: string;
34554
34561
  quantityPerPart: number;
34555
34562
  totalRequiredQuantity: number;
34556
34563
  usedQuantity: number;
34557
- availableQuantity?: number | null;
34564
+ availableQuantity: number | null;
34558
34565
  drawing?: DrawingDto | null;
34559
34566
  orderReference?: OrderReferenceDto | null;
34560
34567
  status: MaterialStatus;
@@ -34568,20 +34575,20 @@ export interface InventoryDto {
34568
34575
  siteId: string;
34569
34576
  warehouseId: string;
34570
34577
  locationId: string;
34571
- batchNumber?: string;
34572
- vendorBatch?: string;
34578
+ batchNumber: string;
34579
+ vendorBatch: string;
34573
34580
  available: number;
34574
34581
  }
34575
34582
 
34576
34583
  export interface PickListSuggestionDto {
34577
- position?: string;
34584
+ position: string;
34578
34585
  lineNumber: number;
34579
34586
  part: PartDto;
34580
- dimension?: string;
34587
+ dimension: string;
34581
34588
  operation: number;
34582
- warehouse?: string;
34583
- fixedLocation?: string;
34584
- unit?: string;
34589
+ warehouse: string;
34590
+ fixedLocation: string;
34591
+ unit: string;
34585
34592
  orderReference?: OrderReferenceDto | null;
34586
34593
  quantityPerPart: number;
34587
34594
  totalRequiredQuantity: number;
@@ -34640,7 +34647,7 @@ export interface NonConformanceAttachmentDto {
34640
34647
  export interface WorkCenterDto {
34641
34648
  id: string;
34642
34649
  name: string;
34643
- workCenterType?: string;
34650
+ workCenterType: string;
34644
34651
  department?: DepartmentDto | null;
34645
34652
  }
34646
34653
 
@@ -34767,7 +34774,7 @@ export interface SurroundingOperationDto {
34767
34774
 
34768
34775
  export interface OperationPrerequisitesDto {
34769
34776
  drawing?: boolean | null;
34770
- materials?: MaterialsPrerequisiteDto;
34777
+ materials: MaterialsPrerequisiteDto;
34771
34778
  cncProgram?: boolean | null;
34772
34779
  }
34773
34780
 
@@ -34915,12 +34922,12 @@ export interface ReportOperationProgress {
34915
34922
  export interface ReportOperationProgressDto {
34916
34923
  workOrder: string;
34917
34924
  operationNumber: number;
34918
- resource?: string;
34925
+ resource: string;
34919
34926
  goodQuantity?: number | null;
34920
34927
  errorQuantity?: number | null;
34921
34928
  errorCause?: ErrorCauseDto | null;
34922
- nextStatus?: NextOperationStatusDto;
34923
- workType?: WorkTypeDto;
34929
+ nextStatus: NextOperationStatusDto;
34930
+ workType: WorkTypeDto;
34924
34931
  }
34925
34932
 
34926
34933
  export type ErrorCauseDto = "None" | "Material" | "Machine" | "OperatingStaff";
@@ -35331,7 +35338,7 @@ export interface ImaMaterialCheckDto {
35331
35338
  updatedBy: string;
35332
35339
  updatedById: string;
35333
35340
  updatedByName: string;
35334
- isDeleted?: boolean;
35341
+ isDeleted: boolean;
35335
35342
  certificateTypeResults: ImaCertificateTypeResultsDto;
35336
35343
  specificationResults: ImaSpecificationResultsDto;
35337
35344
  }
@@ -35741,7 +35748,7 @@ export interface PurchaseOrderMaterialLineDetailsDto {
35741
35748
  }
35742
35749
 
35743
35750
  export interface Part {
35744
- partNumber?: string;
35751
+ partNumber: string;
35745
35752
  partRevision?: string | null;
35746
35753
  partName?: string | null;
35747
35754
  customerPartNumber?: string | null;
@@ -37082,13 +37089,13 @@ export interface CreateWorkOrderMapping {
37082
37089
  }
37083
37090
 
37084
37091
  export interface WorkorderDiscussionMessageDto {
37085
- id?: string;
37086
- workorderId?: string;
37087
- companyId?: string;
37088
- content?: string;
37092
+ id: string;
37093
+ workorderId: string;
37094
+ companyId: string;
37095
+ content: string;
37089
37096
  contentParts?: WorkOrderDiscussionContent[] | null;
37090
- senderUpn?: string;
37091
- senderName?: string;
37097
+ senderUpn: string;
37098
+ senderName: string;
37092
37099
  operationId?: string | null;
37093
37100
  operationName?: string | null;
37094
37101
  resourceId?: string | null;
@@ -37110,10 +37117,10 @@ export interface AddDiscussionMessageRequest {
37110
37117
  }
37111
37118
 
37112
37119
  export interface WorkorderDiscussionReadStatusDto {
37113
- workorderId?: string;
37120
+ workorderId: string;
37114
37121
  operationId?: string | null;
37115
37122
  resourceId?: string | null;
37116
- userUpn?: string;
37123
+ userUpn: string;
37117
37124
  lastRead?: Date;
37118
37125
  }
37119
37126