@ignos/api-client 20260810.212.1-alpha → 20260810.214.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.
@@ -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,14 +2544,19 @@ 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 {
2553
2562
  getProductionOrder(id: string): Promise<ProductionOrderDto>;
@@ -2586,7 +2595,7 @@ export declare class MesProductionOrderClient extends AuthorizedApiBase implemen
2586
2595
  protected processListProductionOrderActivities(response: Response): Promise<ProductionOrderOperationActivityDto[]>;
2587
2596
  }
2588
2597
  export interface IMesProductionScheduleClient {
2589
- listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined, includeDiscussionSummary: boolean | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
2598
+ listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
2590
2599
  postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
2591
2600
  getAvailableProductionScheduleFilters(request: GetAvailableProductionScheduleFiltersRequest | undefined): Promise<ProductionScheduleFiltersDto>;
2592
2601
  listMyCurrentWorkActivities(): Promise<CurrentWorkActivityDto>;
@@ -2600,7 +2609,7 @@ export declare class MesProductionScheduleClient extends AuthorizedApiBase imple
2600
2609
  constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
2601
2610
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2602
2611
  });
2603
- listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined, includeDiscussionSummary: boolean | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
2612
+ listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
2604
2613
  protected processListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
2605
2614
  postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
2606
2615
  protected processPostListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
@@ -2861,56 +2870,6 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
2861
2870
  listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2862
2871
  protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
2863
2872
  }
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
- * Stamps the creator state's balloons onto the schema's drawing PDF and
2874
- returns a temporary download link.
2875
- */
2876
- exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
2877
- /**
2878
- * Starts an async snip resolve; the result is delivered through the
2879
- SchemaCreatorSnipResolved SignalR notification.
2880
- * @param image (optional)
2881
- */
2882
- resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
2883
- }
2884
- export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
2885
- private http;
2886
- private baseUrl;
2887
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
2888
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2889
- });
2890
- getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
2891
- protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2892
- /**
2893
- * Creates the initial creator state for a schema version. Returns 409 if
2894
- state already exists; the caller should re-fetch it instead of writing.
2895
- */
2896
- createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2897
- protected processCreateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2898
- updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2899
- protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2900
- /**
2901
- * Stamps the creator state's balloons onto the schema's drawing PDF and
2902
- returns a temporary download link.
2903
- */
2904
- exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
2905
- protected processExportSchemaCreatorDrawing(response: Response): Promise<DownloadDto>;
2906
- /**
2907
- * Starts an async snip resolve; the result is delivered through the
2908
- SchemaCreatorSnipResolved SignalR notification.
2909
- * @param image (optional)
2910
- */
2911
- resolveSchemaCreatorSnip(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
2912
- protected processResolveSchemaCreatorSnip(response: Response): Promise<FileResponse>;
2913
- }
2914
2873
  export interface IMeasurementFormSchemasAdminClient {
2915
2874
  getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
2916
2875
  createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
@@ -4887,19 +4846,12 @@ export interface MrbInstanceRevisionDto {
4887
4846
  status: DocumentStatus;
4888
4847
  statusDate: Date;
4889
4848
  sentToCustomerInfo?: MrbSentInfoDto | null;
4890
- contentStatus?: MrbContentDocumentStatusDto | null;
4891
4849
  }
4892
4850
  export type DocumentStatus = "None" | "Draft" | "ForInternalApproval" | "InternalRejected" | "Approved" | "Voided";
4893
4851
  export interface MrbSentInfoDto {
4894
4852
  sentTime: Date;
4895
4853
  sentBy: UserDto;
4896
4854
  }
4897
- export interface MrbContentDocumentStatusDto {
4898
- total: number;
4899
- ready: number;
4900
- missing: number;
4901
- optional: number;
4902
- }
4903
4855
  export interface MrbPartDto {
4904
4856
  partNumber?: string | null;
4905
4857
  partName?: string | null;
@@ -4952,6 +4904,12 @@ export interface MrbExtraDocumentDto {
4952
4904
  url: string;
4953
4905
  documentType: string;
4954
4906
  }
4907
+ export interface MrbContentDocumentStatusDto {
4908
+ total: number;
4909
+ ready: number;
4910
+ missing: number;
4911
+ optional: number;
4912
+ }
4955
4913
  export interface MrbPdfExportJobDto {
4956
4914
  jobId: string;
4957
4915
  mrbInstanceId: string;
@@ -7476,6 +7434,7 @@ export interface ListProductionOrdersRequest {
7476
7434
  export interface PlannerPlanDto {
7477
7435
  resourceGroupId: string;
7478
7436
  sequence: PlannerOperationDto[];
7437
+ lockedCount: number;
7479
7438
  planSavedAt?: Date | null;
7480
7439
  isDraft: boolean;
7481
7440
  publishedETag?: string | null;
@@ -7504,43 +7463,10 @@ export interface PlannerOperationDto {
7504
7463
  project?: WorkOrderProjectDto | null;
7505
7464
  sequenceNumber: number;
7506
7465
  isManuallyLocked: boolean;
7507
- lockType: PlannerLockType;
7508
- isNewOperation: boolean;
7509
7466
  weekGroup: string;
7510
7467
  programStatus?: ProgramStatus | null;
7511
- hasNotes?: boolean;
7512
- notesUnread?: boolean;
7513
- availableToStartQuantity: number;
7514
- earlierOperationsScrappedQuantity: number;
7515
- startedQuantity?: number | null;
7516
- prerequisites: OperationPrerequisitesDto;
7517
- drawing?: DrawingDto | null;
7518
- drawingNumber?: string | null;
7519
- description?: string | null;
7520
7468
  }
7521
- export type PlannerLockType = "None" | "Manual" | "Auto";
7522
7469
  export type ProgramStatus = "Blank" | "NotOk" | "Ok";
7523
- export interface OperationPrerequisitesDto {
7524
- drawing?: boolean | null;
7525
- materials: MaterialsPrerequisiteDto;
7526
- cncProgram?: boolean | null;
7527
- }
7528
- export interface MaterialsPrerequisiteDto {
7529
- numberOfPartsCoveredByOnHand?: number | null;
7530
- materialStatus?: MaterialStatusDto;
7531
- }
7532
- export type MaterialStatusDto = "NotRequired" | "NotAvailable" | "PartiallyAvailable" | "Available" | "FullyConsumed" | "Unknown";
7533
- export interface DrawingDto {
7534
- drawingNumber: string;
7535
- revision: string;
7536
- status: string;
7537
- files: DrawingFileDto[];
7538
- }
7539
- export interface DrawingFileDto {
7540
- id: number;
7541
- name: string;
7542
- comment?: string;
7543
- }
7544
7470
  export interface WeekCapacityDto {
7545
7471
  weekGroup: string;
7546
7472
  weekStart: Date;
@@ -7557,6 +7483,7 @@ persisted active plan (draft, else published) is published instead. */
7557
7483
  }
7558
7484
  export interface PlannerSequenceInput {
7559
7485
  orderedOperationKeys: string[];
7486
+ lockedCount: number;
7560
7487
  weekGroups?: {
7561
7488
  [key: string]: string;
7562
7489
  } | null;
@@ -7568,6 +7495,7 @@ export interface PlannerPlanEventDto {
7568
7495
  by?: string | null;
7569
7496
  comment?: string | null;
7570
7497
  operationCount: number;
7498
+ lockedCount: number;
7571
7499
  }
7572
7500
  export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp";
7573
7501
  export interface SetProgramStatus {
@@ -7576,16 +7504,20 @@ export interface SetProgramStatus {
7576
7504
  status?: ProgramStatus;
7577
7505
  }
7578
7506
  export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
7579
- export interface WorkOrderAttachmentDto {
7580
- createdBy?: UserDto | null;
7581
- created?: Date | null;
7582
- modifiedBy?: UserDto | null;
7583
- modified?: Date | null;
7584
- attachmentId?: number | null;
7507
+ export interface UpdateProductionOrderAttachmentRequest {
7508
+ type?: ProductionOrderAttachmentType;
7509
+ description: string;
7510
+ notes?: string | null;
7511
+ url?: string | null;
7512
+ }
7513
+ export interface ProductionOrderAttachmentDto {
7514
+ attachmentId: number;
7585
7515
  name?: string | null;
7586
7516
  fileName?: string | null;
7587
7517
  notes?: string | null;
7588
- attachmentType?: string | null;
7518
+ attachmentType?: ProductionOrderAttachmentType | null;
7519
+ addedBy?: string | null;
7520
+ canDelete: boolean;
7589
7521
  }
7590
7522
  export interface ProductionOrderDto {
7591
7523
  id: string;
@@ -7645,6 +7577,28 @@ export interface ProductionOrderOperationDto {
7645
7577
  productionStatus: OperationStatusDto;
7646
7578
  setupStatus?: OperationStatusDto | null;
7647
7579
  }
7580
+ export interface WorkOrderAttachmentDto {
7581
+ createdBy?: UserDto | null;
7582
+ created?: Date | null;
7583
+ modifiedBy?: UserDto | null;
7584
+ modified?: Date | null;
7585
+ attachmentId?: number | null;
7586
+ name?: string | null;
7587
+ fileName?: string | null;
7588
+ notes?: string | null;
7589
+ attachmentType?: ProductionOrderAttachmentType | null;
7590
+ }
7591
+ export interface DrawingDto {
7592
+ drawingNumber: string;
7593
+ revision: string;
7594
+ status: string;
7595
+ files: DrawingFileDto[];
7596
+ }
7597
+ export interface DrawingFileDto {
7598
+ id: number;
7599
+ name: string;
7600
+ comment?: string;
7601
+ }
7648
7602
  export interface ProductionOrderBomDto {
7649
7603
  position: string;
7650
7604
  lineNumber: number;
@@ -7834,8 +7788,6 @@ export interface ProductionScheduleOperationDto {
7834
7788
  productionStatus: OperationStatusDto;
7835
7789
  setupStatus?: OperationStatusDto | null;
7836
7790
  programStatus?: ProgramStatus | null;
7837
- hasNotes: boolean;
7838
- notesUnread: boolean;
7839
7791
  }
7840
7792
  export interface SurroundingOperationDto {
7841
7793
  id: string;
@@ -7856,6 +7808,16 @@ export interface SurroundingOperationDto {
7856
7808
  earlierOperationsScrappedQuantity: number;
7857
7809
  startedQuantity?: number | null;
7858
7810
  }
7811
+ export interface OperationPrerequisitesDto {
7812
+ drawing?: boolean | null;
7813
+ materials: MaterialsPrerequisiteDto;
7814
+ cncProgram?: boolean | null;
7815
+ }
7816
+ export interface MaterialsPrerequisiteDto {
7817
+ numberOfPartsCoveredByOnHand?: number | null;
7818
+ materialStatus?: MaterialStatusDto;
7819
+ }
7820
+ export type MaterialStatusDto = "NotRequired" | "NotAvailable" | "PartiallyAvailable" | "Available" | "FullyConsumed" | "Unknown";
7859
7821
  export type MaterialPickStatus = "NotRequired" | "NotStarted" | "Started" | "Completed" | "Unknown";
7860
7822
  export interface ListProductionScheduleOperationsRequest {
7861
7823
  resourceGroup?: string | null;
@@ -7887,7 +7849,6 @@ export interface ListProductionScheduleOperationsRequest {
7887
7849
  operationStatuses?: OperationStatusDto[] | null;
7888
7850
  after?: Date | null;
7889
7851
  before?: Date | null;
7890
- includeDiscussionSummary?: boolean;
7891
7852
  }
7892
7853
  export interface ProductionScheduleFiltersDto {
7893
7854
  partNumbers?: FilterValueWithQuantity[];
@@ -8431,7 +8392,7 @@ export interface ImaChemicalAnalysisResultDto {
8431
8392
  sampleReference?: string | null;
8432
8393
  analysisType?: string | null;
8433
8394
  elements: ImaChemicalAnalysisElementsResultDto;
8434
- composite: ImaChemicalAnalysisCompositeResultDto;
8395
+ indices: ImaChemicalIndexResultDto[];
8435
8396
  testStandards: string[];
8436
8397
  }
8437
8398
  export interface ImaChemicalAnalysisElementsResultDto {
@@ -8473,21 +8434,9 @@ export interface ImaSpecificationResultLineDto {
8473
8434
  override?: ImaResultLineOverrideDto | null;
8474
8435
  }
8475
8436
  export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
8476
- export interface ImaChemicalAnalysisCompositeResultDto {
8477
- pren?: ImaSpecificationCalculatedResultLineDto | null;
8478
- pren22?: ImaSpecificationCalculatedResultLineDto | null;
8479
- pren30?: ImaSpecificationCalculatedResultLineDto | null;
8480
- prenW?: ImaSpecificationCalculatedResultLineDto | null;
8481
- v_Nb_Ti?: ImaSpecificationCalculatedResultLineDto | null;
8482
- ce?: ImaSpecificationCalculatedResultLineDto | null;
8483
- }
8484
- export interface ImaSpecificationCalculatedResultLineDto {
8485
- specificationMin?: number | null;
8486
- specificationMax?: number | null;
8487
- readValue?: string | null;
8488
- calculatedValue?: string | null;
8489
- errorString?: string | null;
8490
- status: ImaSpecificationResultLineStatusDto;
8437
+ export interface ImaChemicalIndexResultDto {
8438
+ name?: string | null;
8439
+ value?: number | null;
8491
8440
  override?: ImaResultLineOverrideDto | null;
8492
8441
  }
8493
8442
  export interface ImaTensileTestResultDto {
@@ -8598,7 +8547,7 @@ export interface ImaDocumentTypesResultsDto {
8598
8547
  }
8599
8548
  export interface ImaOverrideMaterialCheckRequestDto {
8600
8549
  certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
8601
- chemicalAnalysisSection?: ImaOverrideChemicalAnalysisResultsDto[] | null;
8550
+ chemicalAnalysisSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8602
8551
  tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8603
8552
  hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8604
8553
  impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
@@ -8658,52 +8607,6 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
8658
8607
  export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
8659
8608
  usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8660
8609
  }
8661
- export interface ImaOverrideChemicalAnalysisResultsDto {
8662
- heatNumber?: string | null;
8663
- sampleReference?: string | null;
8664
- analysisType?: string | null;
8665
- elements?: ImaOverrideChemicalAnalysisElementsResultsDto | null;
8666
- composite?: ImaOverrideChemicalAnalysisCompositeResultsDto | null;
8667
- }
8668
- export interface ImaOverrideChemicalAnalysisElementsResultsDto {
8669
- carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8670
- manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8671
- silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8672
- phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8673
- sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8674
- chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8675
- nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8676
- molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8677
- copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8678
- nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8679
- wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8680
- titanium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8681
- aluminum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8682
- niobium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8683
- tantalum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8684
- cobalt?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8685
- boron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8686
- lead?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8687
- selenium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8688
- bismuth?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8689
- iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8690
- vanadium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8691
- oxygen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8692
- calcium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8693
- arsenic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8694
- tin?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8695
- antimony?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8696
- hydrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8697
- zirconium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8698
- }
8699
- export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
8700
- pren?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8701
- pren22?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8702
- pren30?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8703
- prenW?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8704
- v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8705
- ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8706
- }
8707
8610
  export interface ImaOverrideDocumentTypesResultsDto {
8708
8611
  ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8709
8612
  radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
@@ -8918,7 +8821,6 @@ export interface ImaSpecificationDto {
8918
8821
  updated: Date;
8919
8822
  isDeleted: boolean;
8920
8823
  chemistrySpecification: ImaChemistrySpecificationDto;
8921
- chemistryCompositeSpecification: ImaChemistryCompositeSpecificationDto;
8922
8824
  mechanicalSpecification: ImaMechanicalSpecificationDto;
8923
8825
  ferriteSpecification: ImaFerriteSpecificationDto;
8924
8826
  documentTypesSpecification: ImaDocumentTypesSpecificationDto;
@@ -8963,14 +8865,6 @@ export interface ImaSpecificationLineDto {
8963
8865
  min?: number | null;
8964
8866
  max?: number | null;
8965
8867
  }
8966
- export interface ImaChemistryCompositeSpecificationDto {
8967
- pren?: ImaSpecificationLineDto | null;
8968
- pren22?: ImaSpecificationLineDto | null;
8969
- pren30?: ImaSpecificationLineDto | null;
8970
- prenW?: ImaSpecificationLineDto | null;
8971
- v_Nb_Ti?: boolean | null;
8972
- ce?: boolean | null;
8973
- }
8974
8868
  export interface ImaMechanicalSpecificationDto {
8975
8869
  yieldStrength?: ImaSpecificationLineDto | null;
8976
8870
  tensileStrength?: ImaSpecificationLineDto | null;
@@ -9030,7 +8924,6 @@ export interface ImaUpdateSpecificationDto {
9030
8924
  summary?: string | null;
9031
8925
  relatedStandards?: string[] | null;
9032
8926
  chemistrySpecification?: ImaChemistrySpecificationDto | null;
9033
- chemistryCompositeSpecification?: ImaChemistryCompositeSpecificationDto | null;
9034
8927
  mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
9035
8928
  ferriteSpecification?: ImaFerriteSpecificationDto | null;
9036
8929
  documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
@@ -9056,75 +8949,6 @@ export interface ImaSpecificationLiteDto {
9056
8949
  updated: Date;
9057
8950
  isDeleted: boolean;
9058
8951
  }
9059
- export interface SchemaCreatorStateDto {
9060
- settings: SchemaCreatorSettingsDto;
9061
- elements: SchemaCreatorElementDto[];
9062
- }
9063
- export interface SchemaCreatorSettingsDto {
9064
- unit?: UnitOfMeasureDto;
9065
- tolerance?: GeneralToleranceDto;
9066
- balloonSize?: number;
9067
- }
9068
- export type UnitOfMeasureDto = "Millimeter" | "Inch";
9069
- export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
9070
- export interface SchemaCreatorElementDto {
9071
- id: string;
9072
- kind: SchemaCreatorElementKindDto;
9073
- drawings: SchemaCreatorElementDrawingsDto;
9074
- isDirty?: boolean | null;
9075
- values?: SchemaCreatorElementValuesDto | null;
9076
- parseResult?: SchemaCreatorSnipResultDto | null;
9077
- }
9078
- export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
9079
- export interface SchemaCreatorElementDrawingsDto {
9080
- square: SchemaCreatorDrawingDto;
9081
- circle: SchemaCreatorDrawingDto;
9082
- textId: string;
9083
- }
9084
- export interface SchemaCreatorDrawingDto {
9085
- rect: SchemaCreatorRectDto;
9086
- pageIndex: number;
9087
- annotationId: string;
9088
- rotation?: number | null;
9089
- unrotatedRect?: SchemaCreatorRectDto | null;
9090
- }
9091
- export interface SchemaCreatorRectDto {
9092
- origin: SchemaCreatorPointDto;
9093
- size: SchemaCreatorSizeDto;
9094
- }
9095
- export interface SchemaCreatorPointDto {
9096
- x: number;
9097
- y: number;
9098
- }
9099
- export interface SchemaCreatorSizeDto {
9100
- width: number;
9101
- height: number;
9102
- }
9103
- export interface SchemaCreatorElementValuesDto {
9104
- reference: number;
9105
- nominal?: number | null;
9106
- nominalText?: string | null;
9107
- plusTolerance?: number | null;
9108
- minusTolerance?: number | null;
9109
- coatingThickness?: number | null;
9110
- measurementFrequency: MeasurementFrequency;
9111
- measurementFrequencyParameter?: number | null;
9112
- type?: string | null;
9113
- count?: number | null;
9114
- comment?: string | null;
9115
- canCopy: boolean;
9116
- visibleToCustomer: boolean;
9117
- isDocumentedExternally: boolean;
9118
- }
9119
- export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
9120
- export interface SchemaCreatorSnipResultDto {
9121
- nominal?: number | null;
9122
- nominalText?: string | null;
9123
- plusTolerance?: number | null;
9124
- minusTolerance?: number | null;
9125
- coatingThickness?: number | null;
9126
- count?: number | null;
9127
- }
9128
8952
  export interface MeasurementFormSchemaDto {
9129
8953
  id: string;
9130
8954
  versionId: number;
@@ -9156,7 +8980,9 @@ export interface MeasurementFormSchemaDto {
9156
8980
  }
9157
8981
  export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
9158
8982
  export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
8983
+ export type UnitOfMeasureDto = "Millimeter" | "Inch";
9159
8984
  export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
8985
+ export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
9160
8986
  export interface MeasurementFormSchemaAttachmentDto {
9161
8987
  url: string;
9162
8988
  title: string;
@@ -9205,6 +9031,7 @@ export interface MeasurementFormGroupedElementDto {
9205
9031
  isValid: boolean;
9206
9032
  validationErrorMessage?: string | null;
9207
9033
  }
9034
+ export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
9208
9035
  export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
9209
9036
  export type BonusType = "None" | "Positive" | "PositiveAndNegative";
9210
9037
  export interface MeasurementFormLinkedSchemaDto {