@ignos/api-client 20260810.212.1-alpha → 20260810.213.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 +63 -244
- package/lib/ignosportal-api.js +56 -276
- package/package.json +1 -1
- package/src/ignosportal-api.ts +124 -517
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -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<
|
|
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
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>;
|
|
2526
2530
|
getAttachmentFile(id: string, attachmentId: number): Promise<FileResponse>;
|
|
2527
|
-
deleteAttachment(id: string, attachmentId: number): Promise<
|
|
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<
|
|
2544
|
-
protected processUpload(response: Response): Promise<
|
|
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>;
|
|
2545
2549
|
getAttachments(id: string): Promise<WorkOrderAttachmentDto[]>;
|
|
2546
2550
|
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>;
|
|
2547
2556
|
getAttachmentFile(id: string, attachmentId: number): Promise<FileResponse>;
|
|
2548
2557
|
protected processGetAttachmentFile(response: Response): Promise<FileResponse>;
|
|
2549
|
-
deleteAttachment(id: string, attachmentId: number): Promise<
|
|
2550
|
-
protected processDeleteAttachment(response: Response): Promise<
|
|
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
|
|
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
|
|
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,6 +7504,12 @@ export interface SetProgramStatus {
|
|
|
7576
7504
|
status?: ProgramStatus;
|
|
7577
7505
|
}
|
|
7578
7506
|
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
|
+
}
|
|
7579
7513
|
export interface WorkOrderAttachmentDto {
|
|
7580
7514
|
createdBy?: UserDto | null;
|
|
7581
7515
|
created?: Date | null;
|
|
@@ -7585,7 +7519,8 @@ export interface WorkOrderAttachmentDto {
|
|
|
7585
7519
|
name?: string | null;
|
|
7586
7520
|
fileName?: string | null;
|
|
7587
7521
|
notes?: string | null;
|
|
7588
|
-
attachmentType?:
|
|
7522
|
+
attachmentType?: ProductionOrderAttachmentType | null;
|
|
7523
|
+
canDelete?: boolean;
|
|
7589
7524
|
}
|
|
7590
7525
|
export interface ProductionOrderDto {
|
|
7591
7526
|
id: string;
|
|
@@ -7645,6 +7580,17 @@ export interface ProductionOrderOperationDto {
|
|
|
7645
7580
|
productionStatus: OperationStatusDto;
|
|
7646
7581
|
setupStatus?: OperationStatusDto | null;
|
|
7647
7582
|
}
|
|
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
|
+
}
|
|
7648
7594
|
export interface ProductionOrderBomDto {
|
|
7649
7595
|
position: string;
|
|
7650
7596
|
lineNumber: number;
|
|
@@ -7834,8 +7780,6 @@ export interface ProductionScheduleOperationDto {
|
|
|
7834
7780
|
productionStatus: OperationStatusDto;
|
|
7835
7781
|
setupStatus?: OperationStatusDto | null;
|
|
7836
7782
|
programStatus?: ProgramStatus | null;
|
|
7837
|
-
hasNotes: boolean;
|
|
7838
|
-
notesUnread: boolean;
|
|
7839
7783
|
}
|
|
7840
7784
|
export interface SurroundingOperationDto {
|
|
7841
7785
|
id: string;
|
|
@@ -7856,6 +7800,16 @@ export interface SurroundingOperationDto {
|
|
|
7856
7800
|
earlierOperationsScrappedQuantity: number;
|
|
7857
7801
|
startedQuantity?: number | null;
|
|
7858
7802
|
}
|
|
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";
|
|
7859
7813
|
export type MaterialPickStatus = "NotRequired" | "NotStarted" | "Started" | "Completed" | "Unknown";
|
|
7860
7814
|
export interface ListProductionScheduleOperationsRequest {
|
|
7861
7815
|
resourceGroup?: string | null;
|
|
@@ -7887,7 +7841,6 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
7887
7841
|
operationStatuses?: OperationStatusDto[] | null;
|
|
7888
7842
|
after?: Date | null;
|
|
7889
7843
|
before?: Date | null;
|
|
7890
|
-
includeDiscussionSummary?: boolean;
|
|
7891
7844
|
}
|
|
7892
7845
|
export interface ProductionScheduleFiltersDto {
|
|
7893
7846
|
partNumbers?: FilterValueWithQuantity[];
|
|
@@ -8431,7 +8384,7 @@ export interface ImaChemicalAnalysisResultDto {
|
|
|
8431
8384
|
sampleReference?: string | null;
|
|
8432
8385
|
analysisType?: string | null;
|
|
8433
8386
|
elements: ImaChemicalAnalysisElementsResultDto;
|
|
8434
|
-
|
|
8387
|
+
indices: ImaChemicalIndexResultDto[];
|
|
8435
8388
|
testStandards: string[];
|
|
8436
8389
|
}
|
|
8437
8390
|
export interface ImaChemicalAnalysisElementsResultDto {
|
|
@@ -8473,21 +8426,9 @@ export interface ImaSpecificationResultLineDto {
|
|
|
8473
8426
|
override?: ImaResultLineOverrideDto | null;
|
|
8474
8427
|
}
|
|
8475
8428
|
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8476
|
-
export interface
|
|
8477
|
-
|
|
8478
|
-
|
|
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;
|
|
8429
|
+
export interface ImaChemicalIndexResultDto {
|
|
8430
|
+
name?: string | null;
|
|
8431
|
+
value?: number | null;
|
|
8491
8432
|
override?: ImaResultLineOverrideDto | null;
|
|
8492
8433
|
}
|
|
8493
8434
|
export interface ImaTensileTestResultDto {
|
|
@@ -8598,7 +8539,7 @@ export interface ImaDocumentTypesResultsDto {
|
|
|
8598
8539
|
}
|
|
8599
8540
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
8600
8541
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
8601
|
-
chemicalAnalysisSection?:
|
|
8542
|
+
chemicalAnalysisSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8602
8543
|
tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8603
8544
|
hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8604
8545
|
impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -8658,52 +8599,6 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
|
|
|
8658
8599
|
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8659
8600
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8660
8601
|
}
|
|
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
8602
|
export interface ImaOverrideDocumentTypesResultsDto {
|
|
8708
8603
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8709
8604
|
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -8918,7 +8813,6 @@ export interface ImaSpecificationDto {
|
|
|
8918
8813
|
updated: Date;
|
|
8919
8814
|
isDeleted: boolean;
|
|
8920
8815
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
8921
|
-
chemistryCompositeSpecification: ImaChemistryCompositeSpecificationDto;
|
|
8922
8816
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
8923
8817
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
8924
8818
|
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
@@ -8963,14 +8857,6 @@ export interface ImaSpecificationLineDto {
|
|
|
8963
8857
|
min?: number | null;
|
|
8964
8858
|
max?: number | null;
|
|
8965
8859
|
}
|
|
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
8860
|
export interface ImaMechanicalSpecificationDto {
|
|
8975
8861
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8976
8862
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
@@ -9030,7 +8916,6 @@ export interface ImaUpdateSpecificationDto {
|
|
|
9030
8916
|
summary?: string | null;
|
|
9031
8917
|
relatedStandards?: string[] | null;
|
|
9032
8918
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
9033
|
-
chemistryCompositeSpecification?: ImaChemistryCompositeSpecificationDto | null;
|
|
9034
8919
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
9035
8920
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
9036
8921
|
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|
|
@@ -9056,75 +8941,6 @@ export interface ImaSpecificationLiteDto {
|
|
|
9056
8941
|
updated: Date;
|
|
9057
8942
|
isDeleted: boolean;
|
|
9058
8943
|
}
|
|
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
8944
|
export interface MeasurementFormSchemaDto {
|
|
9129
8945
|
id: string;
|
|
9130
8946
|
versionId: number;
|
|
@@ -9156,7 +8972,9 @@ export interface MeasurementFormSchemaDto {
|
|
|
9156
8972
|
}
|
|
9157
8973
|
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
9158
8974
|
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
8975
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
9159
8976
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
8977
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
9160
8978
|
export interface MeasurementFormSchemaAttachmentDto {
|
|
9161
8979
|
url: string;
|
|
9162
8980
|
title: string;
|
|
@@ -9205,6 +9023,7 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
9205
9023
|
isValid: boolean;
|
|
9206
9024
|
validationErrorMessage?: string | null;
|
|
9207
9025
|
}
|
|
9026
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
9208
9027
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
9209
9028
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|
|
9210
9029
|
export interface MeasurementFormLinkedSchemaDto {
|