@ignos/api-client 20260910.270.1 → 20260911.272.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 +23 -239
- package/lib/ignosportal-api.js +39 -457
- package/package.json +1 -1
- package/src/ignosportal-api.ts +65 -668
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2654,6 +2654,7 @@ export declare class MesProductionOrderClient extends AuthorizedApiBase implemen
|
|
|
2654
2654
|
export interface IMesProductionScheduleClient {
|
|
2655
2655
|
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>;
|
|
2656
2656
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2657
|
+
postListProductionScheduleOperationsFromPlanner(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedProductionScheduleDto>;
|
|
2657
2658
|
getAvailableProductionScheduleFilters(request: GetAvailableProductionScheduleFiltersRequest | undefined): Promise<ProductionScheduleFiltersDto>;
|
|
2658
2659
|
listMyCurrentWorkActivities(): Promise<CurrentWorkActivityDto>;
|
|
2659
2660
|
startOperations(request: StartOperations): Promise<void>;
|
|
@@ -2670,6 +2671,8 @@ export declare class MesProductionScheduleClient extends AuthorizedApiBase imple
|
|
|
2670
2671
|
protected processListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2671
2672
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2672
2673
|
protected processPostListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2674
|
+
postListProductionScheduleOperationsFromPlanner(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedProductionScheduleDto>;
|
|
2675
|
+
protected processPostListProductionScheduleOperationsFromPlanner(response: Response): Promise<PagedProductionScheduleDto>;
|
|
2673
2676
|
getAvailableProductionScheduleFilters(request: GetAvailableProductionScheduleFiltersRequest | undefined): Promise<ProductionScheduleFiltersDto>;
|
|
2674
2677
|
protected processGetAvailableProductionScheduleFilters(response: Response): Promise<ProductionScheduleFiltersDto>;
|
|
2675
2678
|
listMyCurrentWorkActivities(): Promise<CurrentWorkActivityDto>;
|
|
@@ -2933,99 +2936,6 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
|
|
|
2933
2936
|
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2934
2937
|
protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
|
|
2935
2938
|
}
|
|
2936
|
-
export interface IInspectSchemaCreatorClient {
|
|
2937
|
-
getSchemaCreatorState(schemaVersionId: string): Promise<SchemaCreatorStateDto>;
|
|
2938
|
-
/**
|
|
2939
|
-
* Creates the initial creator state for a schema version. Returns 409 if
|
|
2940
|
-
state already exists; the caller should re-fetch it instead of writing.
|
|
2941
|
-
*/
|
|
2942
|
-
createSchemaCreatorState(schemaVersionId: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2943
|
-
updateSchemaCreatorState(schemaVersionId: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2944
|
-
/**
|
|
2945
|
-
* Geometry only (no values), derived from the schema's retained
|
|
2946
|
-
InspectionXpert XML - used to seed a not-yet-created state with real
|
|
2947
|
-
drawing positions. Throws BadRequest if the schema has no such XML +
|
|
2948
|
-
drawing to derive it from.
|
|
2949
|
-
*/
|
|
2950
|
-
getSchemaCreatorXmlGeometry(schemaVersionId: string): Promise<SchemaCreatorXmlGeometryDto[]>;
|
|
2951
|
-
/**
|
|
2952
|
-
* Starts a full drawing AI parse: clears every element and locks the
|
|
2953
|
-
schema for every viewer until it completes. If one is already in
|
|
2954
|
-
progress, returns that instead of starting a second one.
|
|
2955
|
-
*/
|
|
2956
|
-
requestSchemaCreatorDocumentParse(schemaVersionId: string): Promise<SchemaCreatorStateDto>;
|
|
2957
|
-
/**
|
|
2958
|
-
* Stamps the creator state's balloons onto the schema's drawing PDF and
|
|
2959
|
-
returns a temporary download link.
|
|
2960
|
-
*/
|
|
2961
|
-
exportSchemaCreatorDrawing(schemaVersionId: string): Promise<DownloadDto>;
|
|
2962
|
-
/**
|
|
2963
|
-
* Starts an async snip resolve; the result is delivered through the
|
|
2964
|
-
SchemaCreatorSnipResolved SignalR notification.
|
|
2965
|
-
* @param image (optional)
|
|
2966
|
-
*/
|
|
2967
|
-
requestSchemaCreatorSnipParse(schemaVersionId: string, elementId: string, image: FileParameter | null | undefined): Promise<void>;
|
|
2968
|
-
/**
|
|
2969
|
-
* Renders the legacy-format image for one element's current snip.
|
|
2970
|
-
Fire-and-forget from the client on every snip commit - the resulting
|
|
2971
|
-
image isn't returned here, it's only ever read back once the schema
|
|
2972
|
-
is released (SchemaCreatorLegacyMapper).
|
|
2973
|
-
*/
|
|
2974
|
-
renderSchemaCreatorElementSnipImage(schemaVersionId: string, elementId: string, request: RenderSchemaCreatorElementSnipImageRequest): Promise<void>;
|
|
2975
|
-
}
|
|
2976
|
-
export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
|
|
2977
|
-
private http;
|
|
2978
|
-
private baseUrl;
|
|
2979
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2980
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2981
|
-
});
|
|
2982
|
-
getSchemaCreatorState(schemaVersionId: string): Promise<SchemaCreatorStateDto>;
|
|
2983
|
-
protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2984
|
-
/**
|
|
2985
|
-
* Creates the initial creator state for a schema version. Returns 409 if
|
|
2986
|
-
state already exists; the caller should re-fetch it instead of writing.
|
|
2987
|
-
*/
|
|
2988
|
-
createSchemaCreatorState(schemaVersionId: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2989
|
-
protected processCreateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2990
|
-
updateSchemaCreatorState(schemaVersionId: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2991
|
-
protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2992
|
-
/**
|
|
2993
|
-
* Geometry only (no values), derived from the schema's retained
|
|
2994
|
-
InspectionXpert XML - used to seed a not-yet-created state with real
|
|
2995
|
-
drawing positions. Throws BadRequest if the schema has no such XML +
|
|
2996
|
-
drawing to derive it from.
|
|
2997
|
-
*/
|
|
2998
|
-
getSchemaCreatorXmlGeometry(schemaVersionId: string): Promise<SchemaCreatorXmlGeometryDto[]>;
|
|
2999
|
-
protected processGetSchemaCreatorXmlGeometry(response: Response): Promise<SchemaCreatorXmlGeometryDto[]>;
|
|
3000
|
-
/**
|
|
3001
|
-
* Starts a full drawing AI parse: clears every element and locks the
|
|
3002
|
-
schema for every viewer until it completes. If one is already in
|
|
3003
|
-
progress, returns that instead of starting a second one.
|
|
3004
|
-
*/
|
|
3005
|
-
requestSchemaCreatorDocumentParse(schemaVersionId: string): Promise<SchemaCreatorStateDto>;
|
|
3006
|
-
protected processRequestSchemaCreatorDocumentParse(response: Response): Promise<SchemaCreatorStateDto>;
|
|
3007
|
-
/**
|
|
3008
|
-
* Stamps the creator state's balloons onto the schema's drawing PDF and
|
|
3009
|
-
returns a temporary download link.
|
|
3010
|
-
*/
|
|
3011
|
-
exportSchemaCreatorDrawing(schemaVersionId: string): Promise<DownloadDto>;
|
|
3012
|
-
protected processExportSchemaCreatorDrawing(response: Response): Promise<DownloadDto>;
|
|
3013
|
-
/**
|
|
3014
|
-
* Starts an async snip resolve; the result is delivered through the
|
|
3015
|
-
SchemaCreatorSnipResolved SignalR notification.
|
|
3016
|
-
* @param image (optional)
|
|
3017
|
-
*/
|
|
3018
|
-
requestSchemaCreatorSnipParse(schemaVersionId: string, elementId: string, image: FileParameter | null | undefined): Promise<void>;
|
|
3019
|
-
protected processRequestSchemaCreatorSnipParse(response: Response): Promise<void>;
|
|
3020
|
-
/**
|
|
3021
|
-
* Renders the legacy-format image for one element's current snip.
|
|
3022
|
-
Fire-and-forget from the client on every snip commit - the resulting
|
|
3023
|
-
image isn't returned here, it's only ever read back once the schema
|
|
3024
|
-
is released (SchemaCreatorLegacyMapper).
|
|
3025
|
-
*/
|
|
3026
|
-
renderSchemaCreatorElementSnipImage(schemaVersionId: string, elementId: string, request: RenderSchemaCreatorElementSnipImageRequest): Promise<void>;
|
|
3027
|
-
protected processRenderSchemaCreatorElementSnipImage(response: Response): Promise<void>;
|
|
3028
|
-
}
|
|
3029
2939
|
export interface IMeasurementFormSchemasAdminClient {
|
|
3030
2940
|
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
3031
2941
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
@@ -3037,10 +2947,6 @@ export interface IMeasurementFormSchemasAdminClient {
|
|
|
3037
2947
|
deleteSchemaRows(id: string, request: DeleteSchemaGroupedElementRowsDto): Promise<MeasurementFormSchemaDto>;
|
|
3038
2948
|
uploadMeasurementImage(id: string, request: UploadMeasurementImageRequest): Promise<MeasurementFormSchemaDto>;
|
|
3039
2949
|
updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
|
|
3040
|
-
uploadSchemaMarkedDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
|
|
3041
|
-
/**
|
|
3042
|
-
* @deprecated
|
|
3043
|
-
*/
|
|
3044
2950
|
uploadSchemaDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
|
|
3045
2951
|
uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
3046
2952
|
getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
|
|
@@ -3124,11 +3030,6 @@ export declare class MeasurementFormSchemasAdminClient extends AuthorizedApiBase
|
|
|
3124
3030
|
protected processUploadMeasurementImage(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
3125
3031
|
updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
|
|
3126
3032
|
protected processUpdateSchemaSettings(response: Response): Promise<UpdateSchemaSettingsRequest>;
|
|
3127
|
-
uploadSchemaMarkedDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
|
|
3128
|
-
protected processUploadSchemaMarkedDrawing(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
3129
|
-
/**
|
|
3130
|
-
* @deprecated
|
|
3131
|
-
*/
|
|
3132
3033
|
uploadSchemaDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
|
|
3133
3034
|
protected processUploadSchemaDrawing(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
3134
3035
|
uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
@@ -3292,7 +3193,6 @@ export interface IMeasurementFormsInstancesClient {
|
|
|
3292
3193
|
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
3293
3194
|
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3294
3195
|
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3295
|
-
getMeasurementFormInstanceSchemaCreatorState(id: string, schemaId: string, tenantId: string | null | undefined): Promise<SchemaCreatorStateDto>;
|
|
3296
3196
|
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
3297
3197
|
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3298
3198
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
@@ -3331,8 +3231,6 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
3331
3231
|
protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3332
3232
|
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3333
3233
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3334
|
-
getMeasurementFormInstanceSchemaCreatorState(id: string, schemaId: string, tenantId: string | null | undefined): Promise<SchemaCreatorStateDto>;
|
|
3335
|
-
protected processGetMeasurementFormInstanceSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
3336
3234
|
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
3337
3235
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
3338
3236
|
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
@@ -4901,7 +4799,6 @@ export interface PulseJournalEventDto {
|
|
|
4901
4799
|
eventType: PulseJournalEventTypeDto;
|
|
4902
4800
|
oldValue?: string | null;
|
|
4903
4801
|
newValue?: string | null;
|
|
4904
|
-
lineText?: string | null;
|
|
4905
4802
|
created: Date;
|
|
4906
4803
|
createdBy?: string | null;
|
|
4907
4804
|
}
|
|
@@ -7673,6 +7570,7 @@ export interface PlannerPlanDto {
|
|
|
7673
7570
|
isDraft: boolean;
|
|
7674
7571
|
publishedETag?: string | null;
|
|
7675
7572
|
weeklyCapacities: WeekCapacityDto[];
|
|
7573
|
+
continuationToken?: string | null;
|
|
7676
7574
|
}
|
|
7677
7575
|
export interface PlannerOperationDto {
|
|
7678
7576
|
id: string;
|
|
@@ -7775,7 +7673,7 @@ export interface SetProgramStatus {
|
|
|
7775
7673
|
operationNumber?: number;
|
|
7776
7674
|
status?: ProgramStatus;
|
|
7777
7675
|
}
|
|
7778
|
-
export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File"
|
|
7676
|
+
export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
|
|
7779
7677
|
export interface UpdateProductionOrderAttachmentRequest {
|
|
7780
7678
|
type?: ProductionOrderAttachmentType;
|
|
7781
7679
|
description: string;
|
|
@@ -8082,6 +7980,8 @@ export interface ProductionScheduleOperationDto {
|
|
|
8082
7980
|
programStatus?: ProgramStatus | null;
|
|
8083
7981
|
hasNotes: boolean;
|
|
8084
7982
|
notesUnread: boolean;
|
|
7983
|
+
sequenceNumber?: number | null;
|
|
7984
|
+
weekGroup?: string | null;
|
|
8085
7985
|
}
|
|
8086
7986
|
export interface SurroundingOperationDto {
|
|
8087
7987
|
id: string;
|
|
@@ -8135,6 +8035,11 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
8135
8035
|
before?: Date | null;
|
|
8136
8036
|
includeDiscussionSummary?: boolean;
|
|
8137
8037
|
}
|
|
8038
|
+
export interface PagedProductionScheduleDto {
|
|
8039
|
+
results: ProductionScheduleOperationDto[];
|
|
8040
|
+
weeklyCapacities: WeekCapacityDto[];
|
|
8041
|
+
continuationToken?: string | null;
|
|
8042
|
+
}
|
|
8138
8043
|
export interface ProductionScheduleFiltersDto {
|
|
8139
8044
|
partNumbers?: FilterValueWithQuantity[];
|
|
8140
8045
|
bomPositions?: FilterValueWithQuantity[];
|
|
@@ -8565,7 +8470,7 @@ export interface ImaMaterialCheckDto {
|
|
|
8565
8470
|
specificationStatus: ImaSpecificationStatusDto;
|
|
8566
8471
|
purchaseOrder?: string | null;
|
|
8567
8472
|
purchaseOrderLine?: number | null;
|
|
8568
|
-
|
|
8473
|
+
purchaseOrderVendorBatches?: string[] | null;
|
|
8569
8474
|
purchaseOrderPartName?: string | null;
|
|
8570
8475
|
purchaseOrderPartNumber?: string | null;
|
|
8571
8476
|
purchaseOrderPartRevision?: string | null;
|
|
@@ -8585,11 +8490,6 @@ export interface ImaMaterialCheckDto {
|
|
|
8585
8490
|
specificationResults: ImaSpecificationResultsDto;
|
|
8586
8491
|
}
|
|
8587
8492
|
export type ImaSpecificationStatusDto = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8588
|
-
export interface PurchaseOrderMaterialBatchDto {
|
|
8589
|
-
batchNumber: string;
|
|
8590
|
-
itemNumber?: string | null;
|
|
8591
|
-
vendorBatch?: string | null;
|
|
8592
|
-
}
|
|
8593
8493
|
export type ImaMaterialCheckStatusDto = "Processing" | "Draft" | "Approved" | "Rejected" | "Failed" | "NotSet";
|
|
8594
8494
|
export interface ImaCertificateTypeResultsDto {
|
|
8595
8495
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
@@ -8721,7 +8621,6 @@ export interface ImaChemicalAnalysisCompositeResultDto {
|
|
|
8721
8621
|
prenW?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8722
8622
|
v_Nb_Ti?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8723
8623
|
ce?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8724
|
-
nb_Ta?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8725
8624
|
}
|
|
8726
8625
|
export interface ImaSpecificationCalculatedResultLineDto {
|
|
8727
8626
|
specificationMin?: number | null;
|
|
@@ -8845,14 +8744,14 @@ export interface ImaHeatTreatmentCoolingResultLineDto {
|
|
|
8845
8744
|
status: ImaSpecificationResultLineStatusDto;
|
|
8846
8745
|
override?: ImaResultLineOverrideDto | null;
|
|
8847
8746
|
}
|
|
8848
|
-
export type ImaHeatTreatmentCoolingMethodDto = "NoCoolingMethod" | "AirCooling" | "FurnaceCooling" | "OilQuenching" | "PolymerQuenching" | "WaterQuenching" | "
|
|
8747
|
+
export type ImaHeatTreatmentCoolingMethodDto = "NoCoolingMethod" | "AirCooling" | "FurnaceCooling" | "OilQuenching" | "PolymerQuenching" | "WaterQuenching" | "NotSet";
|
|
8849
8748
|
export interface ImaDocumentTypesResultsDto {
|
|
8850
8749
|
ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
8851
8750
|
radiologicalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8852
8751
|
liquidPenetrantCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
8853
8752
|
magneticParticle?: ImaSupplementaryCheckResultDto | null;
|
|
8854
8753
|
pmi?: ImaSupplementaryCheckResultDto | null;
|
|
8855
|
-
|
|
8754
|
+
hydrostatic?: ImaSupplementaryCheckResultDto | null;
|
|
8856
8755
|
visualReport?: ImaSupplementaryCheckResultDto | null;
|
|
8857
8756
|
dimensionalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8858
8757
|
microExaminationReport?: ImaSupplementaryCheckResultDto | null;
|
|
@@ -8973,7 +8872,6 @@ export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
|
|
|
8973
8872
|
prenW?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8974
8873
|
v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8975
8874
|
ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8976
|
-
nb_Ta?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8977
8875
|
}
|
|
8978
8876
|
export interface ImaOverrideTensileTestResultsDto {
|
|
8979
8877
|
heatNumber?: string | null;
|
|
@@ -9051,7 +8949,7 @@ export interface ImaOverrideDocumentTypesResultsDto {
|
|
|
9051
8949
|
liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9052
8950
|
magneticParticle?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9053
8951
|
pmi?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9054
|
-
|
|
8952
|
+
hydrostatic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9055
8953
|
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9056
8954
|
dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9057
8955
|
microExaminationReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -9084,7 +8982,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
9084
8982
|
specificationStatus: ImaSpecificationStatusDto;
|
|
9085
8983
|
purchaseOrder?: string | null;
|
|
9086
8984
|
purchaseOrderLine?: number | null;
|
|
9087
|
-
|
|
8985
|
+
purchaseOrderVendorBatches?: string[] | null;
|
|
9088
8986
|
purchaseOrderPartName?: string | null;
|
|
9089
8987
|
purchaseOrderPartNumber?: string | null;
|
|
9090
8988
|
purchaseOrderPartRevision?: string | null;
|
|
@@ -9115,7 +9013,7 @@ export interface ImaMaterialChecksPageRequestDto {
|
|
|
9115
9013
|
certificateTypeFilter?: string | null;
|
|
9116
9014
|
purchaseOrderLineFilter?: number | null;
|
|
9117
9015
|
heatFilter?: string | null;
|
|
9118
|
-
vendorBatchesFilter?: string | null;
|
|
9016
|
+
vendorBatchesFilter?: string[] | null;
|
|
9119
9017
|
purchaseOrderPartNameFilter?: string | null;
|
|
9120
9018
|
purchaseOrderPartNumberFilter?: string | null;
|
|
9121
9019
|
purchaseOrderDrawingFilter?: string | null;
|
|
@@ -9148,7 +9046,6 @@ export interface ImaMaterialCheckReportDto {
|
|
|
9148
9046
|
includesAllHeats: boolean;
|
|
9149
9047
|
status: ImaMaterialCheckStatusDto;
|
|
9150
9048
|
audit: ImaMaterialCheckReportAuditInfo;
|
|
9151
|
-
isOutdated: boolean;
|
|
9152
9049
|
}
|
|
9153
9050
|
export interface ImaMaterialCheckReportAuditInfo {
|
|
9154
9051
|
createdBy: string;
|
|
@@ -9174,7 +9071,7 @@ export interface PurchaseOrderMaterialLineDetailsDto {
|
|
|
9174
9071
|
purchaseOrder: string;
|
|
9175
9072
|
lineNumber?: number | null;
|
|
9176
9073
|
dimension?: string | null;
|
|
9177
|
-
|
|
9074
|
+
vendorBatches: string[];
|
|
9178
9075
|
mdsCodeFl?: string | null;
|
|
9179
9076
|
typeOfCertificate?: string | null;
|
|
9180
9077
|
}
|
|
@@ -9312,7 +9209,6 @@ export interface ImaChemistryCompositeSpecificationDto {
|
|
|
9312
9209
|
prenW?: ImaSpecificationLineDto | null;
|
|
9313
9210
|
v_Nb_Ti?: boolean | null;
|
|
9314
9211
|
ce?: boolean | null;
|
|
9315
|
-
nb_Ta?: ImaSpecificationLineDto | null;
|
|
9316
9212
|
}
|
|
9317
9213
|
export interface ImaMechanicalSpecificationDto {
|
|
9318
9214
|
tensile?: ImaTensileSpecificationDto | null;
|
|
@@ -9344,7 +9240,7 @@ export interface ImaDocumentTypesSpecificationDto {
|
|
|
9344
9240
|
liquidPenetrantCertificate?: boolean;
|
|
9345
9241
|
magneticParticle?: boolean;
|
|
9346
9242
|
pmi?: boolean;
|
|
9347
|
-
|
|
9243
|
+
hydrostatic?: boolean;
|
|
9348
9244
|
visualReport?: boolean;
|
|
9349
9245
|
dimensionalReport?: boolean;
|
|
9350
9246
|
microExaminationReport?: boolean;
|
|
@@ -9411,115 +9307,6 @@ export interface ImaSpecificationLiteDto {
|
|
|
9411
9307
|
updated: Date;
|
|
9412
9308
|
isDeleted: boolean;
|
|
9413
9309
|
}
|
|
9414
|
-
export interface SchemaCreatorStateDto {
|
|
9415
|
-
settings: SchemaCreatorSettingsDto;
|
|
9416
|
-
elements: SchemaCreatorElementDto[];
|
|
9417
|
-
documentParseStatus?: SchemaCreatorDocumentParseStatusDto | null;
|
|
9418
|
-
isAutoGenerated?: boolean;
|
|
9419
|
-
createdBy?: SchemaCreatorAuditInfoDto | null;
|
|
9420
|
-
createdAt?: Date | null;
|
|
9421
|
-
updatedBy?: SchemaCreatorAuditInfoDto | null;
|
|
9422
|
-
updatedAt?: Date | null;
|
|
9423
|
-
}
|
|
9424
|
-
export interface SchemaCreatorSettingsDto {
|
|
9425
|
-
unit?: SchemaCreatorUnitOfMeasureDto;
|
|
9426
|
-
tolerance?: GeneralToleranceDto;
|
|
9427
|
-
balloonSize?: number;
|
|
9428
|
-
transparentBalloons?: boolean;
|
|
9429
|
-
}
|
|
9430
|
-
export type SchemaCreatorUnitOfMeasureDto = "Millimeter" | "Inch" | "Mixed";
|
|
9431
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
9432
|
-
export interface SchemaCreatorElementDto {
|
|
9433
|
-
id: string;
|
|
9434
|
-
kind: SchemaCreatorElementKindDto;
|
|
9435
|
-
drawings: SchemaCreatorElementDrawingsDto;
|
|
9436
|
-
isDirty?: boolean | null;
|
|
9437
|
-
values?: SchemaCreatorElementValuesDto | null;
|
|
9438
|
-
parseResult?: SchemaCreatorSnipResultDto | null;
|
|
9439
|
-
resolveAttempt?: SchemaCreatorParseAttemptDto | null;
|
|
9440
|
-
createdBy?: SchemaCreatorAuditInfoDto | null;
|
|
9441
|
-
createdAt?: Date | null;
|
|
9442
|
-
updatedBy?: SchemaCreatorAuditInfoDto | null;
|
|
9443
|
-
updatedAt?: Date | null;
|
|
9444
|
-
}
|
|
9445
|
-
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
9446
|
-
export interface SchemaCreatorElementDrawingsDto {
|
|
9447
|
-
snip: SchemaCreatorSnipDto;
|
|
9448
|
-
balloon: SchemaCreatorPointDto;
|
|
9449
|
-
pageIndex: number;
|
|
9450
|
-
}
|
|
9451
|
-
export interface SchemaCreatorSnipDto {
|
|
9452
|
-
rect: SchemaCreatorRectDto;
|
|
9453
|
-
rotation?: number | null;
|
|
9454
|
-
unrotatedRect?: SchemaCreatorRectDto | null;
|
|
9455
|
-
}
|
|
9456
|
-
export interface SchemaCreatorRectDto {
|
|
9457
|
-
origin: SchemaCreatorPointDto;
|
|
9458
|
-
size: SchemaCreatorSizeDto;
|
|
9459
|
-
}
|
|
9460
|
-
export interface SchemaCreatorPointDto {
|
|
9461
|
-
x: number;
|
|
9462
|
-
y: number;
|
|
9463
|
-
}
|
|
9464
|
-
export interface SchemaCreatorSizeDto {
|
|
9465
|
-
width: number;
|
|
9466
|
-
height: number;
|
|
9467
|
-
}
|
|
9468
|
-
export interface SchemaCreatorElementValuesDto {
|
|
9469
|
-
reference: number;
|
|
9470
|
-
unit?: UnitOfMeasureDto | null;
|
|
9471
|
-
nominal?: number | null;
|
|
9472
|
-
nominalText?: string | null;
|
|
9473
|
-
upperLimit?: number | null;
|
|
9474
|
-
lowerLimit?: number | null;
|
|
9475
|
-
plusTolerance?: number | null;
|
|
9476
|
-
minusTolerance?: number | null;
|
|
9477
|
-
coatingThickness?: number | null;
|
|
9478
|
-
measurementFrequency: MeasurementFrequency;
|
|
9479
|
-
measurementFrequencyParameter?: number | null;
|
|
9480
|
-
type?: string | null;
|
|
9481
|
-
count?: number | null;
|
|
9482
|
-
comment?: string | null;
|
|
9483
|
-
canCopy: boolean;
|
|
9484
|
-
visibleToCustomer: boolean;
|
|
9485
|
-
isDocumentedExternally: boolean;
|
|
9486
|
-
}
|
|
9487
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
9488
|
-
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
9489
|
-
export interface SchemaCreatorSnipResultDto {
|
|
9490
|
-
nominal?: number | null;
|
|
9491
|
-
nominalText?: string | null;
|
|
9492
|
-
upperLimit?: number | null;
|
|
9493
|
-
lowerLimit?: number | null;
|
|
9494
|
-
plusTolerance?: number | null;
|
|
9495
|
-
minusTolerance?: number | null;
|
|
9496
|
-
count?: number | null;
|
|
9497
|
-
}
|
|
9498
|
-
export interface SchemaCreatorParseAttemptDto {
|
|
9499
|
-
startedAt: Date;
|
|
9500
|
-
errorType?: SchemaCreatorParseErrorTypeDto | null;
|
|
9501
|
-
errorMessage?: string | null;
|
|
9502
|
-
}
|
|
9503
|
-
export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
|
|
9504
|
-
export interface SchemaCreatorAuditInfoDto {
|
|
9505
|
-
objectId: string;
|
|
9506
|
-
userId: string;
|
|
9507
|
-
userFullName?: string | null;
|
|
9508
|
-
}
|
|
9509
|
-
export interface SchemaCreatorDocumentParseStatusDto {
|
|
9510
|
-
inProgress: boolean;
|
|
9511
|
-
attempt?: SchemaCreatorParseAttemptDto | null;
|
|
9512
|
-
}
|
|
9513
|
-
export interface SchemaCreatorXmlGeometryDto {
|
|
9514
|
-
xmlAttributeId: number;
|
|
9515
|
-
snipRect: SchemaCreatorRectDto;
|
|
9516
|
-
balloon: SchemaCreatorPointDto;
|
|
9517
|
-
pageIndex: number;
|
|
9518
|
-
}
|
|
9519
|
-
export interface RenderSchemaCreatorElementSnipImageRequest {
|
|
9520
|
-
pageIndex: number;
|
|
9521
|
-
snip: SchemaCreatorSnipDto;
|
|
9522
|
-
}
|
|
9523
9310
|
export interface MeasurementFormSchemaDto {
|
|
9524
9311
|
id: string;
|
|
9525
9312
|
versionId: number;
|
|
@@ -9551,7 +9338,9 @@ export interface MeasurementFormSchemaDto {
|
|
|
9551
9338
|
}
|
|
9552
9339
|
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
9553
9340
|
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
9341
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
9554
9342
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
9343
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
9555
9344
|
export interface MeasurementFormSchemaAttachmentDto {
|
|
9556
9345
|
url: string;
|
|
9557
9346
|
title: string;
|
|
@@ -9560,7 +9349,6 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
9560
9349
|
id: string;
|
|
9561
9350
|
balloonId?: string | null;
|
|
9562
9351
|
reference: number;
|
|
9563
|
-
originalXmlId?: number | null;
|
|
9564
9352
|
imageUrl?: string | null;
|
|
9565
9353
|
thumbnailUrl?: string | null;
|
|
9566
9354
|
section?: string | null;
|
|
@@ -9601,6 +9389,7 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
9601
9389
|
isValid: boolean;
|
|
9602
9390
|
validationErrorMessage?: string | null;
|
|
9603
9391
|
}
|
|
9392
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
9604
9393
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
9605
9394
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|
|
9606
9395
|
export interface MeasurementFormLinkedSchemaDto {
|
|
@@ -9713,7 +9502,6 @@ export interface UploadDrawingRequest {
|
|
|
9713
9502
|
export interface UploadRequest {
|
|
9714
9503
|
uploadKey: string;
|
|
9715
9504
|
filename: string;
|
|
9716
|
-
isMarkedDrawing?: boolean | null;
|
|
9717
9505
|
}
|
|
9718
9506
|
export interface MeasurementFormImportStatusDto {
|
|
9719
9507
|
progress: number;
|
|
@@ -9789,8 +9577,6 @@ export interface MeasurementFormCustomerSettingsDto {
|
|
|
9789
9577
|
validationRuleId?: string | null;
|
|
9790
9578
|
requireCalibratedTools: boolean;
|
|
9791
9579
|
allowEmptyToolListInValue: boolean;
|
|
9792
|
-
disableAiParseDocument: boolean;
|
|
9793
|
-
disableAiParseSnip: boolean;
|
|
9794
9580
|
}
|
|
9795
9581
|
export interface UpdateMeasurementFormCustomerSettings {
|
|
9796
9582
|
customerId: string;
|
|
@@ -9799,8 +9585,6 @@ export interface UpdateMeasurementFormCustomerSettings {
|
|
|
9799
9585
|
validationRuleId?: string | null;
|
|
9800
9586
|
requireCalibratedTools: boolean;
|
|
9801
9587
|
allowEmptyToolListInValue: boolean;
|
|
9802
|
-
disableAiParseDocument: boolean;
|
|
9803
|
-
disableAiParseSnip: boolean;
|
|
9804
9588
|
}
|
|
9805
9589
|
export interface MeasurementFormMappingDto {
|
|
9806
9590
|
id: string;
|