@ignos/api-client 20260811.219.1-alpha → 20260812.220.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.
@@ -2289,6 +2289,7 @@ export declare class MoveNotificationsClient extends AuthorizedApiBase implement
2289
2289
  }
2290
2290
  export interface IMoveParcelsClient {
2291
2291
  searchParcels(input: string | null | undefined, pageSize: number | null | undefined): Promise<SearchParcelDto[]>;
2292
+ searchParcelsV2(input: string | null | undefined, pageSize: number | null | undefined): Promise<SearchParcelDto[]>;
2292
2293
  }
2293
2294
  export declare class MoveParcelsClient extends AuthorizedApiBase implements IMoveParcelsClient {
2294
2295
  private http;
@@ -2298,6 +2299,8 @@ export declare class MoveParcelsClient extends AuthorizedApiBase implements IMov
2298
2299
  });
2299
2300
  searchParcels(input: string | null | undefined, pageSize: number | null | undefined): Promise<SearchParcelDto[]>;
2300
2301
  protected processSearchParcels(response: Response): Promise<SearchParcelDto[]>;
2302
+ searchParcelsV2(input: string | null | undefined, pageSize: number | null | undefined): Promise<SearchParcelDto[]>;
2303
+ protected processSearchParcelsV2(response: Response): Promise<SearchParcelDto[]>;
2301
2304
  }
2302
2305
  export interface IMoveTrackingClient {
2303
2306
  listTrackingHistory(request: TrackingRequestListDto): Promise<TrackingParcelListDto>;
@@ -2460,7 +2463,6 @@ export declare class MesLinksClient extends AuthorizedApiBase implements IMesLin
2460
2463
  }
2461
2464
  export interface IMesOrMoveClient {
2462
2465
  getPrintableLabels(request: GeneratePrintableLabel): Promise<DownloadDto>;
2463
- postListProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
2464
2466
  }
2465
2467
  export declare class MesOrMoveClient extends AuthorizedApiBase implements IMesOrMoveClient {
2466
2468
  private http;
@@ -2470,8 +2472,6 @@ export declare class MesOrMoveClient extends AuthorizedApiBase implements IMesOr
2470
2472
  });
2471
2473
  getPrintableLabels(request: GeneratePrintableLabel): Promise<DownloadDto>;
2472
2474
  protected processGetPrintableLabels(response: Response): Promise<DownloadDto>;
2473
- postListProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
2474
- protected processPostListProductionOrders(response: Response): Promise<ProductionOrderListDto[]>;
2475
2475
  }
2476
2476
  export interface IMesPlannerClient {
2477
2477
  getPlan(resourceGroupId: string | undefined): Promise<PlannerPlanDto>;
@@ -2521,10 +2521,14 @@ export interface IMesProductionOrderAttachmentClient {
2521
2521
  * @param notes (optional)
2522
2522
  * @param url (optional)
2523
2523
  */
2524
- upload(id: string, type: ProductionOrderAttachmentType | undefined, description: string | null | undefined, file: FileParameter | null | undefined, notes: string | null | undefined, url: string | null | undefined): Promise<FileResponse>;
2525
- getAttachments(id: string): Promise<WorkOrderAttachmentDto[]>;
2524
+ upload(id: string, type: ProductionOrderAttachmentType | undefined, description: string | null | undefined, file: FileParameter | null | undefined, notes: string | null | undefined, url: string | null | undefined): Promise<void>;
2525
+ getAttachments(id: string): Promise<ProductionOrderAttachmentDto[]>;
2526
+ /**
2527
+ * Update an existing Note or Url attachment in place
2528
+ */
2529
+ updateAttachment(id: string, attachmentId: number, request: UpdateProductionOrderAttachmentRequest): Promise<void>;
2526
2530
  getAttachmentFile(id: string, attachmentId: number): Promise<FileResponse>;
2527
- deleteAttachment(id: string, attachmentId: number): Promise<FileResponse>;
2531
+ deleteAttachment(id: string, attachmentId: number): Promise<void>;
2528
2532
  }
2529
2533
  export declare class MesProductionOrderAttachmentClient extends AuthorizedApiBase implements IMesProductionOrderAttachmentClient {
2530
2534
  private http;
@@ -2540,16 +2544,22 @@ export declare class MesProductionOrderAttachmentClient extends AuthorizedApiBas
2540
2544
  * @param notes (optional)
2541
2545
  * @param url (optional)
2542
2546
  */
2543
- upload(id: string, type: ProductionOrderAttachmentType | undefined, description: string | null | undefined, file: FileParameter | null | undefined, notes: string | null | undefined, url: string | null | undefined): Promise<FileResponse>;
2544
- protected processUpload(response: Response): Promise<FileResponse>;
2545
- getAttachments(id: string): Promise<WorkOrderAttachmentDto[]>;
2546
- protected processGetAttachments(response: Response): Promise<WorkOrderAttachmentDto[]>;
2547
+ upload(id: string, type: ProductionOrderAttachmentType | undefined, description: string | null | undefined, file: FileParameter | null | undefined, notes: string | null | undefined, url: string | null | undefined): Promise<void>;
2548
+ protected processUpload(response: Response): Promise<void>;
2549
+ getAttachments(id: string): Promise<ProductionOrderAttachmentDto[]>;
2550
+ protected processGetAttachments(response: Response): Promise<ProductionOrderAttachmentDto[]>;
2551
+ /**
2552
+ * Update an existing Note or Url attachment in place
2553
+ */
2554
+ updateAttachment(id: string, attachmentId: number, request: UpdateProductionOrderAttachmentRequest): Promise<void>;
2555
+ protected processUpdateAttachment(response: Response): Promise<void>;
2547
2556
  getAttachmentFile(id: string, attachmentId: number): Promise<FileResponse>;
2548
2557
  protected processGetAttachmentFile(response: Response): Promise<FileResponse>;
2549
- deleteAttachment(id: string, attachmentId: number): Promise<FileResponse>;
2550
- protected processDeleteAttachment(response: Response): Promise<FileResponse>;
2558
+ deleteAttachment(id: string, attachmentId: number): Promise<void>;
2559
+ protected processDeleteAttachment(response: Response): Promise<void>;
2551
2560
  }
2552
2561
  export interface IMesProductionOrderClient {
2562
+ listProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
2553
2563
  getProductionOrder(id: string): Promise<ProductionOrderDto>;
2554
2564
  getProductionOrderBom(id: string, operation: number | null | undefined): Promise<ProductionOrderBomDto[]>;
2555
2565
  getProductionOrderPickListSuggestion(id: string, operation: number | undefined): Promise<PickListSuggestionDto[]>;
@@ -2566,6 +2576,8 @@ export declare class MesProductionOrderClient extends AuthorizedApiBase implemen
2566
2576
  constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
2567
2577
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2568
2578
  });
2579
+ listProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
2580
+ protected processListProductionOrders(response: Response): Promise<ProductionOrderListDto[]>;
2569
2581
  getProductionOrder(id: string): Promise<ProductionOrderDto>;
2570
2582
  protected processGetProductionOrder(response: Response): Promise<ProductionOrderDto>;
2571
2583
  getProductionOrderBom(id: string, operation: number | null | undefined): Promise<ProductionOrderBomDto[]>;
@@ -2861,69 +2873,6 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
2861
2873
  listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2862
2874
  protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
2863
2875
  }
2864
- export interface IInspectSchemaCreatorClient {
2865
- getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
2866
- /**
2867
- * Creates the initial creator state for a schema version. Returns 409 if
2868
- state already exists; the caller should re-fetch it instead of writing.
2869
- */
2870
- createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2871
- updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2872
- /**
2873
- * Starts a full drawing AI parse: clears every element and locks the
2874
- schema for every viewer until it completes. If one is already in
2875
- progress, returns that instead of starting a second one.
2876
- */
2877
- requestFullDrawingParse(id: string): Promise<SchemaCreatorStateDto>;
2878
- /**
2879
- * Stamps the creator state's balloons onto the schema's drawing PDF and
2880
- returns a temporary download link.
2881
- */
2882
- exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
2883
- /**
2884
- * Starts an async snip resolve; the result is delivered through the
2885
- SchemaCreatorSnipResolved SignalR notification.
2886
- * @param image (optional)
2887
- */
2888
- resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
2889
- }
2890
- export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
2891
- private http;
2892
- private baseUrl;
2893
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
2894
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2895
- });
2896
- getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
2897
- protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2898
- /**
2899
- * Creates the initial creator state for a schema version. Returns 409 if
2900
- state already exists; the caller should re-fetch it instead of writing.
2901
- */
2902
- createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2903
- protected processCreateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2904
- updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2905
- protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2906
- /**
2907
- * Starts a full drawing AI parse: clears every element and locks the
2908
- schema for every viewer until it completes. If one is already in
2909
- progress, returns that instead of starting a second one.
2910
- */
2911
- requestFullDrawingParse(id: string): Promise<SchemaCreatorStateDto>;
2912
- protected processRequestFullDrawingParse(response: Response): Promise<SchemaCreatorStateDto>;
2913
- /**
2914
- * Stamps the creator state's balloons onto the schema's drawing PDF and
2915
- returns a temporary download link.
2916
- */
2917
- exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
2918
- protected processExportSchemaCreatorDrawing(response: Response): Promise<DownloadDto>;
2919
- /**
2920
- * Starts an async snip resolve; the result is delivered through the
2921
- SchemaCreatorSnipResolved SignalR notification.
2922
- * @param image (optional)
2923
- */
2924
- resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
2925
- protected processResolveSchemaCreatorSnip(response: Response): Promise<FileResponse>;
2926
- }
2927
2876
  export interface IMeasurementFormSchemasAdminClient {
2928
2877
  getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
2929
2878
  createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
@@ -7263,6 +7212,10 @@ export interface SearchParcelDto {
7263
7212
  items: SearchParcelItemDto[];
7264
7213
  partName?: string | null;
7265
7214
  partNumber?: string | null;
7215
+ status?: WorkorderStatus | null;
7216
+ startDate?: Date | null;
7217
+ endDate?: Date | null;
7218
+ deliveryDate?: Date | null;
7266
7219
  }
7267
7220
  export type SearchMatchCriteriaDto = "Tracking" | "WorkOrder" | "Parcel";
7268
7221
  export interface SearchParcelItemDto {
@@ -7455,37 +7408,6 @@ export interface LabelId {
7455
7408
  parcelId: string;
7456
7409
  trackingId?: string | null;
7457
7410
  }
7458
- export interface ProductionOrderListDto {
7459
- id: string;
7460
- companyId?: string | null;
7461
- part?: PartDto | null;
7462
- quantity: number;
7463
- unit?: string | null;
7464
- status: WorkorderStatus;
7465
- plannedStart?: Date | null;
7466
- plannedEnd?: Date | null;
7467
- producedQuantity: number;
7468
- scrappedQuantity: number;
7469
- deliveryLocation?: WarehouseLocationDto | null;
7470
- project?: WorkOrderProjectDto | null;
7471
- startDate?: Date | null;
7472
- endDate?: Date | null;
7473
- deliveryDate?: Date | null;
7474
- bomPosition?: string | null;
7475
- orderReference?: OrderReferenceDto | null;
7476
- customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
7477
- }
7478
- export interface OrderReferenceDto {
7479
- orderReferenceType?: OrderReferenceTypeDto;
7480
- orderNumber?: string;
7481
- orderLineNumber?: number | null;
7482
- }
7483
- export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
7484
- export interface ListProductionOrdersRequest {
7485
- search: string;
7486
- searchType: SearchTypeDto;
7487
- maxResults?: number | null;
7488
- }
7489
7411
  export interface PlannerPlanDto {
7490
7412
  resourceGroupId: string;
7491
7413
  sequence: PlannerOperationDto[];
@@ -7501,7 +7423,11 @@ export interface PlannerOperationDto {
7501
7423
  operationName: string;
7502
7424
  plannedStart: Date;
7503
7425
  plannedEnd?: Date | null;
7426
+ actualStart?: Date | null;
7427
+ actualEnd?: Date | null;
7504
7428
  status: OperationStatusDto;
7429
+ productionStatus: OperationStatusDto;
7430
+ setupStatus?: OperationStatusDto | null;
7505
7431
  resourceId: string;
7506
7432
  resourceName: string;
7507
7433
  resourceDepartmentNumber?: string | null;
@@ -7513,13 +7439,11 @@ export interface PlannerOperationDto {
7513
7439
  producedQuantity: number;
7514
7440
  totalPlannedHours?: number;
7515
7441
  totalUsedHours?: number;
7442
+ usedSetupHours?: number | null;
7443
+ plannedSetupHours?: number | null;
7444
+ usedProductionHours?: number;
7516
7445
  customerName?: string | null;
7517
7446
  project?: WorkOrderProjectDto | null;
7518
- sequenceNumber: number;
7519
- isManuallyLocked: boolean;
7520
- lockType: PlannerLockType;
7521
- isNewOperation: boolean;
7522
- weekGroup: string;
7523
7447
  programStatus?: ProgramStatus | null;
7524
7448
  hasNotes?: boolean;
7525
7449
  notesUnread?: boolean;
@@ -7530,8 +7454,13 @@ export interface PlannerOperationDto {
7530
7454
  drawing?: DrawingDto | null;
7531
7455
  drawingNumber?: string | null;
7532
7456
  description?: string | null;
7457
+ disableSetupRegistration?: boolean;
7458
+ sequenceNumber: number;
7459
+ isManuallyLocked: boolean;
7460
+ lockType: PlannerLockType;
7461
+ isNewOperation: boolean;
7462
+ weekGroup: string;
7533
7463
  }
7534
- export type PlannerLockType = "None" | "Manual" | "Auto";
7535
7464
  export type ProgramStatus = "Blank" | "NotOk" | "Ok";
7536
7465
  export interface OperationPrerequisitesDto {
7537
7466
  drawing?: boolean | null;
@@ -7554,6 +7483,7 @@ export interface DrawingFileDto {
7554
7483
  name: string;
7555
7484
  comment?: string;
7556
7485
  }
7486
+ export type PlannerLockType = "None" | "Manual" | "Auto";
7557
7487
  export interface WeekCapacityDto {
7558
7488
  weekGroup: string;
7559
7489
  weekStart: Date;
@@ -7589,16 +7519,51 @@ export interface SetProgramStatus {
7589
7519
  status?: ProgramStatus;
7590
7520
  }
7591
7521
  export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
7592
- export interface WorkOrderAttachmentDto {
7593
- createdBy?: UserDto | null;
7594
- created?: Date | null;
7595
- modifiedBy?: UserDto | null;
7596
- modified?: Date | null;
7597
- attachmentId?: number | null;
7522
+ export interface UpdateProductionOrderAttachmentRequest {
7523
+ type?: ProductionOrderAttachmentType;
7524
+ description: string;
7525
+ notes?: string | null;
7526
+ url?: string | null;
7527
+ }
7528
+ export interface ProductionOrderAttachmentDto {
7529
+ attachmentId: number;
7598
7530
  name?: string | null;
7599
7531
  fileName?: string | null;
7600
7532
  notes?: string | null;
7601
- attachmentType?: string | null;
7533
+ attachmentType?: ProductionOrderAttachmentType | null;
7534
+ addedBy?: string | null;
7535
+ canDelete: boolean;
7536
+ }
7537
+ export interface ProductionOrderListDto {
7538
+ id: string;
7539
+ companyId?: string | null;
7540
+ part?: PartDto | null;
7541
+ quantity: number;
7542
+ unit?: string | null;
7543
+ status: WorkorderStatus;
7544
+ plannedStart?: Date | null;
7545
+ plannedEnd?: Date | null;
7546
+ producedQuantity: number;
7547
+ scrappedQuantity: number;
7548
+ deliveryLocation?: WarehouseLocationDto | null;
7549
+ project?: WorkOrderProjectDto | null;
7550
+ startDate?: Date | null;
7551
+ endDate?: Date | null;
7552
+ deliveryDate?: Date | null;
7553
+ bomPosition?: string | null;
7554
+ orderReference?: OrderReferenceDto | null;
7555
+ customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
7556
+ }
7557
+ export interface OrderReferenceDto {
7558
+ orderReferenceType?: OrderReferenceTypeDto;
7559
+ orderNumber?: string;
7560
+ orderLineNumber?: number | null;
7561
+ }
7562
+ export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
7563
+ export interface ListProductionOrdersRequest {
7564
+ search: string;
7565
+ searchType: SearchTypeDto;
7566
+ maxResults?: number | null;
7602
7567
  }
7603
7568
  export interface ProductionOrderDto {
7604
7569
  id: string;
@@ -7658,6 +7623,17 @@ export interface ProductionOrderOperationDto {
7658
7623
  productionStatus: OperationStatusDto;
7659
7624
  setupStatus?: OperationStatusDto | null;
7660
7625
  }
7626
+ export interface WorkOrderAttachmentDto {
7627
+ createdBy?: UserDto | null;
7628
+ created?: Date | null;
7629
+ modifiedBy?: UserDto | null;
7630
+ modified?: Date | null;
7631
+ attachmentId?: number | null;
7632
+ name?: string | null;
7633
+ fileName?: string | null;
7634
+ notes?: string | null;
7635
+ attachmentType?: string | null;
7636
+ }
7661
7637
  export interface ProductionOrderBomDto {
7662
7638
  position: string;
7663
7639
  lineNumber: number;
@@ -8482,6 +8458,7 @@ export interface ImaSpecificationResultLineDto {
8482
8458
  specificationMin?: number | null;
8483
8459
  specificationMax?: number | null;
8484
8460
  readValue?: string | null;
8461
+ unit?: string | null;
8485
8462
  status: ImaSpecificationResultLineStatusDto;
8486
8463
  override?: ImaResultLineOverrideDto | null;
8487
8464
  }
@@ -8508,28 +8485,26 @@ export interface ImaTensileTestResultDto {
8508
8485
  sampleReference?: string | null;
8509
8486
  orientation?: string | null;
8510
8487
  testLocation?: string | null;
8511
- temperature?: ImaResultValueDto | null;
8488
+ temperature?: number | null;
8489
+ temperatureUnit?: string | null;
8512
8490
  roomTemperature?: boolean | null;
8513
8491
  yieldStrengths: ImaYieldStrengthResultDto[];
8514
- tensileStrength?: ImaResultValueDto | null;
8515
- yieldTensileRatio?: number | null;
8492
+ tensileStrength?: ImaSpecificationResultLineDto | null;
8493
+ yieldTensileRatio?: ImaSpecificationResultLineDto | null;
8516
8494
  elongations: ImaElongationResultDto[];
8517
- reductionOfArea?: ImaResultValueDto | null;
8495
+ reductionOfArea?: ImaSpecificationResultLineDto | null;
8518
8496
  testStandards: string[];
8519
- override?: ImaResultLineOverrideDto | null;
8520
- }
8521
- export interface ImaResultValueDto {
8522
- readValue?: string | null;
8523
- unit?: string | null;
8524
- override?: ImaResultLineOverrideDto | null;
8525
8497
  }
8526
8498
  export interface ImaYieldStrengthResultDto {
8527
- label?: string | null;
8528
- value?: ImaResultValueDto | null;
8499
+ basis?: ImaYieldStrengthYieldBasisDto | null;
8500
+ strainPercent?: number | null;
8501
+ labelVerbatim?: string | null;
8502
+ result?: ImaSpecificationResultLineDto | null;
8529
8503
  }
8504
+ export type ImaYieldStrengthYieldBasisDto = "ProofNonProportional" | "ProofTotalExtension" | "UpperYield" | "LowerYield" | "Unspecified";
8530
8505
  export interface ImaElongationResultDto {
8531
8506
  gauge?: string | null;
8532
- value?: ImaResultValueDto | null;
8507
+ value?: ImaSpecificationResultLineDto | null;
8533
8508
  }
8534
8509
  export interface ImaHardnessTestResultDto {
8535
8510
  heatNumber?: string | null;
@@ -8538,27 +8513,31 @@ export interface ImaHardnessTestResultDto {
8538
8513
  testLocation?: string | null;
8539
8514
  readings: ImaHardnessReadingResultDto[];
8540
8515
  testStandards: string[];
8541
- override?: ImaResultLineOverrideDto | null;
8542
8516
  }
8543
8517
  export interface ImaHardnessReadingResultDto {
8544
8518
  label?: string | null;
8545
8519
  scale?: string | null;
8546
- value?: number | null;
8520
+ result?: ImaSpecificationResultLineDto | null;
8547
8521
  }
8548
8522
  export interface ImaImpactTestResultDto {
8549
8523
  heatNumber?: string | null;
8550
8524
  sampleReference?: string | null;
8551
8525
  orientation?: string | null;
8552
8526
  testLocation?: string | null;
8553
- temperature?: ImaResultValueDto | null;
8527
+ temperature?: number | null;
8528
+ temperatureUnit?: string | null;
8554
8529
  roomTemperature?: boolean | null;
8555
8530
  testLabel?: string | null;
8556
8531
  notchType?: string | null;
8557
8532
  specimenSize?: string | null;
8558
8533
  individualValues: ImaResultValueDto[];
8559
- reportedAverage?: ImaResultValueDto | null;
8560
- reportedMinimum?: ImaResultValueDto | null;
8534
+ reportedAverage?: ImaSpecificationResultLineDto | null;
8535
+ reportedMinimum?: ImaSpecificationResultLineDto | null;
8561
8536
  testStandards: string[];
8537
+ }
8538
+ export interface ImaResultValueDto {
8539
+ readValue?: string | null;
8540
+ unit?: string | null;
8562
8541
  override?: ImaResultLineOverrideDto | null;
8563
8542
  }
8564
8543
  export interface ImaCorrosionTestResultDto {
@@ -8566,13 +8545,13 @@ export interface ImaCorrosionTestResultDto {
8566
8545
  sampleReference?: string | null;
8567
8546
  testLocation?: string | null;
8568
8547
  testMethod?: string | null;
8569
- testTemperature?: ImaResultValueDto | null;
8548
+ temperature?: number | null;
8549
+ temperatureUnit?: string | null;
8570
8550
  roomTemperature?: boolean | null;
8571
8551
  weightLoss?: ImaResultValueDto | null;
8572
- pitting?: boolean | null;
8573
- result?: string | null;
8574
- acceptable?: boolean | null;
8575
- override?: ImaResultLineOverrideDto | null;
8552
+ pitting?: ImaResultValueDto | null;
8553
+ result?: ImaResultValueDto | null;
8554
+ acceptable?: ImaResultValueDto | null;
8576
8555
  }
8577
8556
  export interface ImaFerriteResultDto {
8578
8557
  heatNumber?: string | null;
@@ -8612,10 +8591,10 @@ export interface ImaDocumentTypesResultsDto {
8612
8591
  export interface ImaOverrideMaterialCheckRequestDto {
8613
8592
  certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
8614
8593
  chemicalAnalysisSection?: ImaOverrideChemicalAnalysisResultsDto[] | null;
8615
- tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8616
- hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8617
- impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8618
- corrosionTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8594
+ tensileTestSection?: ImaOverrideTensileTestResultsDto[] | null;
8595
+ hardnessTestSection?: ImaOverrideHardnessTestResultsDto[] | null;
8596
+ impactTestSection?: ImaOverrideImpactTestResultsDto[] | null;
8597
+ corrosionTestSection?: ImaOverrideCorrosionTestResultsDto[] | null;
8619
8598
  ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8620
8599
  documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
8621
8600
  }
@@ -8717,6 +8696,54 @@ export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
8717
8696
  v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8718
8697
  ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8719
8698
  }
8699
+ export interface ImaOverrideTensileTestResultsDto {
8700
+ heatNumber?: string | null;
8701
+ sampleReference?: string | null;
8702
+ orientation?: string | null;
8703
+ tensileStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8704
+ yieldTensileRatio?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8705
+ reductionOfArea?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8706
+ yieldStrengths?: ImaOverrideYieldStrengthResultDto[] | null;
8707
+ elongations?: ImaOverrideElongationResultDto[] | null;
8708
+ }
8709
+ export interface ImaOverrideYieldStrengthResultDto {
8710
+ labelVerbatim?: string | null;
8711
+ override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8712
+ }
8713
+ export interface ImaOverrideElongationResultDto {
8714
+ gauge?: string | null;
8715
+ override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8716
+ }
8717
+ export interface ImaOverrideHardnessTestResultsDto {
8718
+ heatNumber?: string | null;
8719
+ sampleReference?: string | null;
8720
+ orientation?: string | null;
8721
+ readings?: ImaOverrideHardnessReadingResultDto[] | null;
8722
+ }
8723
+ export interface ImaOverrideHardnessReadingResultDto {
8724
+ label?: string | null;
8725
+ override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8726
+ }
8727
+ export interface ImaOverrideImpactTestResultsDto {
8728
+ heatNumber?: string | null;
8729
+ sampleReference?: string | null;
8730
+ orientation?: string | null;
8731
+ reportedAverage?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8732
+ reportedMinimum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8733
+ individualValues?: ImaOverrideIndexedResultLineDto[] | null;
8734
+ }
8735
+ export interface ImaOverrideIndexedResultLineDto {
8736
+ index?: number;
8737
+ override?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8738
+ }
8739
+ export interface ImaOverrideCorrosionTestResultsDto {
8740
+ heatNumber?: string | null;
8741
+ sampleReference?: string | null;
8742
+ weightLoss?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8743
+ pitting?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8744
+ result?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8745
+ acceptable?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8746
+ }
8720
8747
  export interface ImaOverrideDocumentTypesResultsDto {
8721
8748
  ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8722
8749
  radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
@@ -8985,13 +9012,24 @@ export interface ImaChemistryCompositeSpecificationDto {
8985
9012
  ce?: boolean | null;
8986
9013
  }
8987
9014
  export interface ImaMechanicalSpecificationDto {
9015
+ tensile?: ImaTensileSpecificationDto | null;
9016
+ hardness?: ImaHardnessSpecificationDto | null;
9017
+ impact?: ImaImpactSpecificationDto | null;
9018
+ }
9019
+ export interface ImaTensileSpecificationDto {
8988
9020
  yieldStrength?: ImaSpecificationLineDto | null;
8989
9021
  tensileStrength?: ImaSpecificationLineDto | null;
9022
+ yieldTensileRatio?: ImaSpecificationLineDto | null;
8990
9023
  elongation?: ImaSpecificationLineDto | null;
8991
9024
  reductionOfArea?: ImaSpecificationLineDto | null;
8992
- impactEnergy?: ImaSpecificationLineDto | null;
9025
+ }
9026
+ export interface ImaHardnessSpecificationDto {
8993
9027
  hardness?: ImaSpecificationLineDto | null;
8994
9028
  }
9029
+ export interface ImaImpactSpecificationDto {
9030
+ minimum?: ImaSpecificationLineDto | null;
9031
+ average?: ImaSpecificationLineDto | null;
9032
+ }
8995
9033
  export interface ImaFerriteSpecificationDto {
8996
9034
  ferriteContent?: ImaSpecificationLineDto | null;
8997
9035
  }
@@ -9069,80 +9107,6 @@ export interface ImaSpecificationLiteDto {
9069
9107
  updated: Date;
9070
9108
  isDeleted: boolean;
9071
9109
  }
9072
- export interface SchemaCreatorStateDto {
9073
- settings: SchemaCreatorSettingsDto;
9074
- elements: SchemaCreatorElementDto[];
9075
- fullParse?: SchemaCreatorFullParseStatusDto | null;
9076
- }
9077
- export interface SchemaCreatorSettingsDto {
9078
- unit?: UnitOfMeasureDto;
9079
- tolerance?: GeneralToleranceDto;
9080
- balloonSize?: number;
9081
- }
9082
- export type UnitOfMeasureDto = "Millimeter" | "Inch";
9083
- export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
9084
- export interface SchemaCreatorElementDto {
9085
- id: string;
9086
- kind: SchemaCreatorElementKindDto;
9087
- drawings: SchemaCreatorElementDrawingsDto;
9088
- isDirty?: boolean | null;
9089
- values?: SchemaCreatorElementValuesDto | null;
9090
- parseResult?: SchemaCreatorSnipResultDto | null;
9091
- }
9092
- export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
9093
- export interface SchemaCreatorElementDrawingsDto {
9094
- square: SchemaCreatorDrawingDto;
9095
- circle: SchemaCreatorDrawingDto;
9096
- textId: string;
9097
- }
9098
- export interface SchemaCreatorDrawingDto {
9099
- rect: SchemaCreatorRectDto;
9100
- pageIndex: number;
9101
- annotationId: string;
9102
- rotation?: number | null;
9103
- unrotatedRect?: SchemaCreatorRectDto | null;
9104
- }
9105
- export interface SchemaCreatorRectDto {
9106
- origin: SchemaCreatorPointDto;
9107
- size: SchemaCreatorSizeDto;
9108
- }
9109
- export interface SchemaCreatorPointDto {
9110
- x: number;
9111
- y: number;
9112
- }
9113
- export interface SchemaCreatorSizeDto {
9114
- width: number;
9115
- height: number;
9116
- }
9117
- export interface SchemaCreatorElementValuesDto {
9118
- reference: number;
9119
- nominal?: number | null;
9120
- nominalText?: string | null;
9121
- plusTolerance?: number | null;
9122
- minusTolerance?: number | null;
9123
- coatingThickness?: number | null;
9124
- measurementFrequency: MeasurementFrequency;
9125
- measurementFrequencyParameter?: number | null;
9126
- type?: string | null;
9127
- count?: number | null;
9128
- comment?: string | null;
9129
- canCopy: boolean;
9130
- visibleToCustomer: boolean;
9131
- isDocumentedExternally: boolean;
9132
- }
9133
- export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
9134
- export interface SchemaCreatorSnipResultDto {
9135
- nominal?: number | null;
9136
- nominalText?: string | null;
9137
- plusTolerance?: number | null;
9138
- minusTolerance?: number | null;
9139
- coatingThickness?: number | null;
9140
- count?: number | null;
9141
- }
9142
- export interface SchemaCreatorFullParseStatusDto {
9143
- inProgress: boolean;
9144
- startedAt?: Date | null;
9145
- }
9146
9110
  export interface MeasurementFormSchemaDto {
9147
9111
  id: string;
9148
9112
  versionId: number;
@@ -9174,7 +9138,9 @@ export interface MeasurementFormSchemaDto {
9174
9138
  }
9175
9139
  export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
9176
9140
  export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
9141
+ export type UnitOfMeasureDto = "Millimeter" | "Inch";
9177
9142
  export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
9143
+ export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
9178
9144
  export interface MeasurementFormSchemaAttachmentDto {
9179
9145
  url: string;
9180
9146
  title: string;
@@ -9223,6 +9189,7 @@ export interface MeasurementFormGroupedElementDto {
9223
9189
  isValid: boolean;
9224
9190
  validationErrorMessage?: string | null;
9225
9191
  }
9192
+ export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
9226
9193
  export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
9227
9194
  export type BonusType = "None" | "Positive" | "PositiveAndNegative";
9228
9195
  export interface MeasurementFormLinkedSchemaDto {