@ignos/api-client 20260810.211.1-alpha → 20260810.212.1-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/ignosportal-api.d.ts +243 -62
- package/lib/ignosportal-api.js +276 -56
- package/package.json +1 -1
- package/src/ignosportal-api.ts +516 -123
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2521,14 +2521,10 @@ 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<
|
|
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
2525
|
getAttachments(id: string): Promise<WorkOrderAttachmentDto[]>;
|
|
2526
|
-
/**
|
|
2527
|
-
* Update an existing Note or Url attachment in place
|
|
2528
|
-
*/
|
|
2529
|
-
updateAttachment(id: string, attachmentId: number, request: UpdateProductionOrderAttachmentRequest): Promise<void>;
|
|
2530
2526
|
getAttachmentFile(id: string, attachmentId: number): Promise<FileResponse>;
|
|
2531
|
-
deleteAttachment(id: string, attachmentId: number): Promise<
|
|
2527
|
+
deleteAttachment(id: string, attachmentId: number): Promise<FileResponse>;
|
|
2532
2528
|
}
|
|
2533
2529
|
export declare class MesProductionOrderAttachmentClient extends AuthorizedApiBase implements IMesProductionOrderAttachmentClient {
|
|
2534
2530
|
private http;
|
|
@@ -2544,19 +2540,14 @@ export declare class MesProductionOrderAttachmentClient extends AuthorizedApiBas
|
|
|
2544
2540
|
* @param notes (optional)
|
|
2545
2541
|
* @param url (optional)
|
|
2546
2542
|
*/
|
|
2547
|
-
upload(id: string, type: ProductionOrderAttachmentType | undefined, description: string | null | undefined, file: FileParameter | null | undefined, notes: string | null | undefined, url: string | null | undefined): Promise<
|
|
2548
|
-
protected processUpload(response: Response): Promise<
|
|
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>;
|
|
2549
2545
|
getAttachments(id: string): Promise<WorkOrderAttachmentDto[]>;
|
|
2550
2546
|
protected processGetAttachments(response: Response): Promise<WorkOrderAttachmentDto[]>;
|
|
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>;
|
|
2556
2547
|
getAttachmentFile(id: string, attachmentId: number): Promise<FileResponse>;
|
|
2557
2548
|
protected processGetAttachmentFile(response: Response): Promise<FileResponse>;
|
|
2558
|
-
deleteAttachment(id: string, attachmentId: number): Promise<
|
|
2559
|
-
protected processDeleteAttachment(response: Response): Promise<
|
|
2549
|
+
deleteAttachment(id: string, attachmentId: number): Promise<FileResponse>;
|
|
2550
|
+
protected processDeleteAttachment(response: Response): Promise<FileResponse>;
|
|
2560
2551
|
}
|
|
2561
2552
|
export interface IMesProductionOrderClient {
|
|
2562
2553
|
getProductionOrder(id: string): Promise<ProductionOrderDto>;
|
|
@@ -2595,7 +2586,7 @@ export declare class MesProductionOrderClient extends AuthorizedApiBase implemen
|
|
|
2595
2586
|
protected processListProductionOrderActivities(response: Response): Promise<ProductionOrderOperationActivityDto[]>;
|
|
2596
2587
|
}
|
|
2597
2588
|
export interface IMesProductionScheduleClient {
|
|
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>;
|
|
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>;
|
|
2599
2590
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2600
2591
|
getAvailableProductionScheduleFilters(request: GetAvailableProductionScheduleFiltersRequest | undefined): Promise<ProductionScheduleFiltersDto>;
|
|
2601
2592
|
listMyCurrentWorkActivities(): Promise<CurrentWorkActivityDto>;
|
|
@@ -2609,7 +2600,7 @@ export declare class MesProductionScheduleClient extends AuthorizedApiBase imple
|
|
|
2609
2600
|
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2610
2601
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2611
2602
|
});
|
|
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>;
|
|
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>;
|
|
2613
2604
|
protected processListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2614
2605
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2615
2606
|
protected processPostListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
@@ -2870,6 +2861,56 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
|
|
|
2870
2861
|
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2871
2862
|
protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
|
|
2872
2863
|
}
|
|
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
|
+
}
|
|
2873
2914
|
export interface IMeasurementFormSchemasAdminClient {
|
|
2874
2915
|
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2875
2916
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
@@ -4846,12 +4887,19 @@ export interface MrbInstanceRevisionDto {
|
|
|
4846
4887
|
status: DocumentStatus;
|
|
4847
4888
|
statusDate: Date;
|
|
4848
4889
|
sentToCustomerInfo?: MrbSentInfoDto | null;
|
|
4890
|
+
contentStatus?: MrbContentDocumentStatusDto | null;
|
|
4849
4891
|
}
|
|
4850
4892
|
export type DocumentStatus = "None" | "Draft" | "ForInternalApproval" | "InternalRejected" | "Approved" | "Voided";
|
|
4851
4893
|
export interface MrbSentInfoDto {
|
|
4852
4894
|
sentTime: Date;
|
|
4853
4895
|
sentBy: UserDto;
|
|
4854
4896
|
}
|
|
4897
|
+
export interface MrbContentDocumentStatusDto {
|
|
4898
|
+
total: number;
|
|
4899
|
+
ready: number;
|
|
4900
|
+
missing: number;
|
|
4901
|
+
optional: number;
|
|
4902
|
+
}
|
|
4855
4903
|
export interface MrbPartDto {
|
|
4856
4904
|
partNumber?: string | null;
|
|
4857
4905
|
partName?: string | null;
|
|
@@ -4904,12 +4952,6 @@ export interface MrbExtraDocumentDto {
|
|
|
4904
4952
|
url: string;
|
|
4905
4953
|
documentType: string;
|
|
4906
4954
|
}
|
|
4907
|
-
export interface MrbContentDocumentStatusDto {
|
|
4908
|
-
total: number;
|
|
4909
|
-
ready: number;
|
|
4910
|
-
missing: number;
|
|
4911
|
-
optional: number;
|
|
4912
|
-
}
|
|
4913
4955
|
export interface MrbPdfExportJobDto {
|
|
4914
4956
|
jobId: string;
|
|
4915
4957
|
mrbInstanceId: string;
|
|
@@ -7434,7 +7476,6 @@ export interface ListProductionOrdersRequest {
|
|
|
7434
7476
|
export interface PlannerPlanDto {
|
|
7435
7477
|
resourceGroupId: string;
|
|
7436
7478
|
sequence: PlannerOperationDto[];
|
|
7437
|
-
lockedCount: number;
|
|
7438
7479
|
planSavedAt?: Date | null;
|
|
7439
7480
|
isDraft: boolean;
|
|
7440
7481
|
publishedETag?: string | null;
|
|
@@ -7463,10 +7504,43 @@ export interface PlannerOperationDto {
|
|
|
7463
7504
|
project?: WorkOrderProjectDto | null;
|
|
7464
7505
|
sequenceNumber: number;
|
|
7465
7506
|
isManuallyLocked: boolean;
|
|
7507
|
+
lockType: PlannerLockType;
|
|
7508
|
+
isNewOperation: boolean;
|
|
7466
7509
|
weekGroup: string;
|
|
7467
7510
|
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;
|
|
7468
7520
|
}
|
|
7521
|
+
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
7469
7522
|
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
|
+
}
|
|
7470
7544
|
export interface WeekCapacityDto {
|
|
7471
7545
|
weekGroup: string;
|
|
7472
7546
|
weekStart: Date;
|
|
@@ -7483,7 +7557,6 @@ persisted active plan (draft, else published) is published instead. */
|
|
|
7483
7557
|
}
|
|
7484
7558
|
export interface PlannerSequenceInput {
|
|
7485
7559
|
orderedOperationKeys: string[];
|
|
7486
|
-
lockedCount: number;
|
|
7487
7560
|
weekGroups?: {
|
|
7488
7561
|
[key: string]: string;
|
|
7489
7562
|
} | null;
|
|
@@ -7495,7 +7568,6 @@ export interface PlannerPlanEventDto {
|
|
|
7495
7568
|
by?: string | null;
|
|
7496
7569
|
comment?: string | null;
|
|
7497
7570
|
operationCount: number;
|
|
7498
|
-
lockedCount: number;
|
|
7499
7571
|
}
|
|
7500
7572
|
export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp";
|
|
7501
7573
|
export interface SetProgramStatus {
|
|
@@ -7504,12 +7576,6 @@ export interface SetProgramStatus {
|
|
|
7504
7576
|
status?: ProgramStatus;
|
|
7505
7577
|
}
|
|
7506
7578
|
export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
|
|
7507
|
-
export interface UpdateProductionOrderAttachmentRequest {
|
|
7508
|
-
type?: ProductionOrderAttachmentType;
|
|
7509
|
-
description: string;
|
|
7510
|
-
notes?: string | null;
|
|
7511
|
-
url?: string | null;
|
|
7512
|
-
}
|
|
7513
7579
|
export interface WorkOrderAttachmentDto {
|
|
7514
7580
|
createdBy?: UserDto | null;
|
|
7515
7581
|
created?: Date | null;
|
|
@@ -7520,7 +7586,6 @@ export interface WorkOrderAttachmentDto {
|
|
|
7520
7586
|
fileName?: string | null;
|
|
7521
7587
|
notes?: string | null;
|
|
7522
7588
|
attachmentType?: string | null;
|
|
7523
|
-
canDelete?: boolean;
|
|
7524
7589
|
}
|
|
7525
7590
|
export interface ProductionOrderDto {
|
|
7526
7591
|
id: string;
|
|
@@ -7580,17 +7645,6 @@ export interface ProductionOrderOperationDto {
|
|
|
7580
7645
|
productionStatus: OperationStatusDto;
|
|
7581
7646
|
setupStatus?: OperationStatusDto | null;
|
|
7582
7647
|
}
|
|
7583
|
-
export interface DrawingDto {
|
|
7584
|
-
drawingNumber: string;
|
|
7585
|
-
revision: string;
|
|
7586
|
-
status: string;
|
|
7587
|
-
files: DrawingFileDto[];
|
|
7588
|
-
}
|
|
7589
|
-
export interface DrawingFileDto {
|
|
7590
|
-
id: number;
|
|
7591
|
-
name: string;
|
|
7592
|
-
comment?: string;
|
|
7593
|
-
}
|
|
7594
7648
|
export interface ProductionOrderBomDto {
|
|
7595
7649
|
position: string;
|
|
7596
7650
|
lineNumber: number;
|
|
@@ -7780,6 +7834,8 @@ export interface ProductionScheduleOperationDto {
|
|
|
7780
7834
|
productionStatus: OperationStatusDto;
|
|
7781
7835
|
setupStatus?: OperationStatusDto | null;
|
|
7782
7836
|
programStatus?: ProgramStatus | null;
|
|
7837
|
+
hasNotes: boolean;
|
|
7838
|
+
notesUnread: boolean;
|
|
7783
7839
|
}
|
|
7784
7840
|
export interface SurroundingOperationDto {
|
|
7785
7841
|
id: string;
|
|
@@ -7800,16 +7856,6 @@ export interface SurroundingOperationDto {
|
|
|
7800
7856
|
earlierOperationsScrappedQuantity: number;
|
|
7801
7857
|
startedQuantity?: number | null;
|
|
7802
7858
|
}
|
|
7803
|
-
export interface OperationPrerequisitesDto {
|
|
7804
|
-
drawing?: boolean | null;
|
|
7805
|
-
materials: MaterialsPrerequisiteDto;
|
|
7806
|
-
cncProgram?: boolean | null;
|
|
7807
|
-
}
|
|
7808
|
-
export interface MaterialsPrerequisiteDto {
|
|
7809
|
-
numberOfPartsCoveredByOnHand?: number | null;
|
|
7810
|
-
materialStatus?: MaterialStatusDto;
|
|
7811
|
-
}
|
|
7812
|
-
export type MaterialStatusDto = "NotRequired" | "NotAvailable" | "PartiallyAvailable" | "Available" | "FullyConsumed" | "Unknown";
|
|
7813
7859
|
export type MaterialPickStatus = "NotRequired" | "NotStarted" | "Started" | "Completed" | "Unknown";
|
|
7814
7860
|
export interface ListProductionScheduleOperationsRequest {
|
|
7815
7861
|
resourceGroup?: string | null;
|
|
@@ -7841,6 +7887,7 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
7841
7887
|
operationStatuses?: OperationStatusDto[] | null;
|
|
7842
7888
|
after?: Date | null;
|
|
7843
7889
|
before?: Date | null;
|
|
7890
|
+
includeDiscussionSummary?: boolean;
|
|
7844
7891
|
}
|
|
7845
7892
|
export interface ProductionScheduleFiltersDto {
|
|
7846
7893
|
partNumbers?: FilterValueWithQuantity[];
|
|
@@ -8384,7 +8431,7 @@ export interface ImaChemicalAnalysisResultDto {
|
|
|
8384
8431
|
sampleReference?: string | null;
|
|
8385
8432
|
analysisType?: string | null;
|
|
8386
8433
|
elements: ImaChemicalAnalysisElementsResultDto;
|
|
8387
|
-
|
|
8434
|
+
composite: ImaChemicalAnalysisCompositeResultDto;
|
|
8388
8435
|
testStandards: string[];
|
|
8389
8436
|
}
|
|
8390
8437
|
export interface ImaChemicalAnalysisElementsResultDto {
|
|
@@ -8426,9 +8473,21 @@ export interface ImaSpecificationResultLineDto {
|
|
|
8426
8473
|
override?: ImaResultLineOverrideDto | null;
|
|
8427
8474
|
}
|
|
8428
8475
|
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8429
|
-
export interface
|
|
8430
|
-
|
|
8431
|
-
|
|
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;
|
|
8432
8491
|
override?: ImaResultLineOverrideDto | null;
|
|
8433
8492
|
}
|
|
8434
8493
|
export interface ImaTensileTestResultDto {
|
|
@@ -8539,7 +8598,7 @@ export interface ImaDocumentTypesResultsDto {
|
|
|
8539
8598
|
}
|
|
8540
8599
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
8541
8600
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
8542
|
-
chemicalAnalysisSection?:
|
|
8601
|
+
chemicalAnalysisSection?: ImaOverrideChemicalAnalysisResultsDto[] | null;
|
|
8543
8602
|
tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8544
8603
|
hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8545
8604
|
impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -8599,6 +8658,52 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
|
|
|
8599
8658
|
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8600
8659
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8601
8660
|
}
|
|
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
|
+
}
|
|
8602
8707
|
export interface ImaOverrideDocumentTypesResultsDto {
|
|
8603
8708
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8604
8709
|
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -8813,6 +8918,7 @@ export interface ImaSpecificationDto {
|
|
|
8813
8918
|
updated: Date;
|
|
8814
8919
|
isDeleted: boolean;
|
|
8815
8920
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
8921
|
+
chemistryCompositeSpecification: ImaChemistryCompositeSpecificationDto;
|
|
8816
8922
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
8817
8923
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
8818
8924
|
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
@@ -8857,6 +8963,14 @@ export interface ImaSpecificationLineDto {
|
|
|
8857
8963
|
min?: number | null;
|
|
8858
8964
|
max?: number | null;
|
|
8859
8965
|
}
|
|
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
|
+
}
|
|
8860
8974
|
export interface ImaMechanicalSpecificationDto {
|
|
8861
8975
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8862
8976
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
@@ -8916,6 +9030,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8916
9030
|
summary?: string | null;
|
|
8917
9031
|
relatedStandards?: string[] | null;
|
|
8918
9032
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
9033
|
+
chemistryCompositeSpecification?: ImaChemistryCompositeSpecificationDto | null;
|
|
8919
9034
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
8920
9035
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8921
9036
|
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|
|
@@ -8941,6 +9056,75 @@ export interface ImaSpecificationLiteDto {
|
|
|
8941
9056
|
updated: Date;
|
|
8942
9057
|
isDeleted: boolean;
|
|
8943
9058
|
}
|
|
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
|
+
}
|
|
8944
9128
|
export interface MeasurementFormSchemaDto {
|
|
8945
9129
|
id: string;
|
|
8946
9130
|
versionId: number;
|
|
@@ -8972,9 +9156,7 @@ export interface MeasurementFormSchemaDto {
|
|
|
8972
9156
|
}
|
|
8973
9157
|
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
8974
9158
|
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
8975
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
8976
9159
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
8977
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
8978
9160
|
export interface MeasurementFormSchemaAttachmentDto {
|
|
8979
9161
|
url: string;
|
|
8980
9162
|
title: string;
|
|
@@ -9023,7 +9205,6 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
9023
9205
|
isValid: boolean;
|
|
9024
9206
|
validationErrorMessage?: string | null;
|
|
9025
9207
|
}
|
|
9026
|
-
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
9027
9208
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
9028
9209
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|
|
9029
9210
|
export interface MeasurementFormLinkedSchemaDto {
|