@ignos/api-client 20260910.271.1-alpha → 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 +27 -265
- package/lib/ignosportal-api.js +42 -538
- package/package.json +1 -1
- package/src/ignosportal-api.ts +78 -780
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[]>;
|
|
@@ -3367,13 +3265,11 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
3367
3265
|
}
|
|
3368
3266
|
export interface IMeasurementFormsInstancesInstanceAdminClient {
|
|
3369
3267
|
createMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3370
|
-
|
|
3268
|
+
updateMeasurementFormInstance(id: string, request: UpdateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
3371
3269
|
listMeasurementFormsByStatus(status: MeasurementFormInstanceStatus | undefined, statusChangedSince: Date | null | undefined, onlyWithReports: boolean | null | undefined, pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
3372
3270
|
postListMeasurementFormsByStatus(request: ListMeasurementFormsByStatusRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
3373
3271
|
deleteInstancesBulk(request: DeleteMeasurementFormsInstancesBulkRequest): Promise<void>;
|
|
3374
|
-
postListMeasurementFormsByStatusV2(request: ListMeasurementFormsByStatusesRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
3375
3272
|
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
3376
|
-
getSerialNumberValueCounts(id: string): Promise<SerialNumberValueCountDto[]>;
|
|
3377
3273
|
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3378
3274
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3379
3275
|
toggleSchemaInstanceElementDocumentedExternallyOverride(id: string, schemaId: string, elementId: string, tenantId: string | null | undefined): Promise<void>;
|
|
@@ -3386,20 +3282,16 @@ export declare class MeasurementFormsInstancesInstanceAdminClient extends Author
|
|
|
3386
3282
|
});
|
|
3387
3283
|
createMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3388
3284
|
protected processCreateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3389
|
-
|
|
3390
|
-
protected
|
|
3285
|
+
updateMeasurementFormInstance(id: string, request: UpdateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
3286
|
+
protected processUpdateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3391
3287
|
listMeasurementFormsByStatus(status: MeasurementFormInstanceStatus | undefined, statusChangedSince: Date | null | undefined, onlyWithReports: boolean | null | undefined, pageSize: number | undefined, search: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
3392
3288
|
protected processListMeasurementFormsByStatus(response: Response): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
3393
3289
|
postListMeasurementFormsByStatus(request: ListMeasurementFormsByStatusRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
3394
3290
|
protected processPostListMeasurementFormsByStatus(response: Response): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
3395
3291
|
deleteInstancesBulk(request: DeleteMeasurementFormsInstancesBulkRequest): Promise<void>;
|
|
3396
3292
|
protected processDeleteInstancesBulk(response: Response): Promise<void>;
|
|
3397
|
-
postListMeasurementFormsByStatusV2(request: ListMeasurementFormsByStatusesRequest | undefined): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
3398
|
-
protected processPostListMeasurementFormsByStatusV2(response: Response): Promise<PagedResultOfMeasurementFormInstanceDto>;
|
|
3399
3293
|
createMeasurementFormInstance2(id: string, request: CreateMeasurementFormInstanceRequest): Promise<MeasurementFormInstanceDto>;
|
|
3400
3294
|
protected processCreateMeasurementFormInstance2(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3401
|
-
getSerialNumberValueCounts(id: string): Promise<SerialNumberValueCountDto[]>;
|
|
3402
|
-
protected processGetSerialNumberValueCounts(response: Response): Promise<SerialNumberValueCountDto[]>;
|
|
3403
3295
|
reactivateMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
3404
3296
|
protected processReactivateMeasurementFormInstance(response: Response): Promise<MeasurementFormInstanceDto>;
|
|
3405
3297
|
cancelMeasurementFormInstance(id: string): Promise<MeasurementFormInstanceDto>;
|
|
@@ -4907,7 +4799,6 @@ export interface PulseJournalEventDto {
|
|
|
4907
4799
|
eventType: PulseJournalEventTypeDto;
|
|
4908
4800
|
oldValue?: string | null;
|
|
4909
4801
|
newValue?: string | null;
|
|
4910
|
-
lineText?: string | null;
|
|
4911
4802
|
created: Date;
|
|
4912
4803
|
createdBy?: string | null;
|
|
4913
4804
|
}
|
|
@@ -7679,6 +7570,7 @@ export interface PlannerPlanDto {
|
|
|
7679
7570
|
isDraft: boolean;
|
|
7680
7571
|
publishedETag?: string | null;
|
|
7681
7572
|
weeklyCapacities: WeekCapacityDto[];
|
|
7573
|
+
continuationToken?: string | null;
|
|
7682
7574
|
}
|
|
7683
7575
|
export interface PlannerOperationDto {
|
|
7684
7576
|
id: string;
|
|
@@ -8088,6 +7980,8 @@ export interface ProductionScheduleOperationDto {
|
|
|
8088
7980
|
programStatus?: ProgramStatus | null;
|
|
8089
7981
|
hasNotes: boolean;
|
|
8090
7982
|
notesUnread: boolean;
|
|
7983
|
+
sequenceNumber?: number | null;
|
|
7984
|
+
weekGroup?: string | null;
|
|
8091
7985
|
}
|
|
8092
7986
|
export interface SurroundingOperationDto {
|
|
8093
7987
|
id: string;
|
|
@@ -8141,6 +8035,11 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
8141
8035
|
before?: Date | null;
|
|
8142
8036
|
includeDiscussionSummary?: boolean;
|
|
8143
8037
|
}
|
|
8038
|
+
export interface PagedProductionScheduleDto {
|
|
8039
|
+
results: ProductionScheduleOperationDto[];
|
|
8040
|
+
weeklyCapacities: WeekCapacityDto[];
|
|
8041
|
+
continuationToken?: string | null;
|
|
8042
|
+
}
|
|
8144
8043
|
export interface ProductionScheduleFiltersDto {
|
|
8145
8044
|
partNumbers?: FilterValueWithQuantity[];
|
|
8146
8045
|
bomPositions?: FilterValueWithQuantity[];
|
|
@@ -8571,7 +8470,7 @@ export interface ImaMaterialCheckDto {
|
|
|
8571
8470
|
specificationStatus: ImaSpecificationStatusDto;
|
|
8572
8471
|
purchaseOrder?: string | null;
|
|
8573
8472
|
purchaseOrderLine?: number | null;
|
|
8574
|
-
|
|
8473
|
+
purchaseOrderVendorBatches?: string[] | null;
|
|
8575
8474
|
purchaseOrderPartName?: string | null;
|
|
8576
8475
|
purchaseOrderPartNumber?: string | null;
|
|
8577
8476
|
purchaseOrderPartRevision?: string | null;
|
|
@@ -8591,11 +8490,6 @@ export interface ImaMaterialCheckDto {
|
|
|
8591
8490
|
specificationResults: ImaSpecificationResultsDto;
|
|
8592
8491
|
}
|
|
8593
8492
|
export type ImaSpecificationStatusDto = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8594
|
-
export interface PurchaseOrderMaterialBatchDto {
|
|
8595
|
-
batchNumber: string;
|
|
8596
|
-
itemNumber?: string | null;
|
|
8597
|
-
vendorBatch?: string | null;
|
|
8598
|
-
}
|
|
8599
8493
|
export type ImaMaterialCheckStatusDto = "Processing" | "Draft" | "Approved" | "Rejected" | "Failed" | "NotSet";
|
|
8600
8494
|
export interface ImaCertificateTypeResultsDto {
|
|
8601
8495
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
@@ -8727,7 +8621,6 @@ export interface ImaChemicalAnalysisCompositeResultDto {
|
|
|
8727
8621
|
prenW?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8728
8622
|
v_Nb_Ti?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8729
8623
|
ce?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8730
|
-
nb_Ta?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8731
8624
|
}
|
|
8732
8625
|
export interface ImaSpecificationCalculatedResultLineDto {
|
|
8733
8626
|
specificationMin?: number | null;
|
|
@@ -8851,14 +8744,14 @@ export interface ImaHeatTreatmentCoolingResultLineDto {
|
|
|
8851
8744
|
status: ImaSpecificationResultLineStatusDto;
|
|
8852
8745
|
override?: ImaResultLineOverrideDto | null;
|
|
8853
8746
|
}
|
|
8854
|
-
export type ImaHeatTreatmentCoolingMethodDto = "NoCoolingMethod" | "AirCooling" | "FurnaceCooling" | "OilQuenching" | "PolymerQuenching" | "WaterQuenching" | "
|
|
8747
|
+
export type ImaHeatTreatmentCoolingMethodDto = "NoCoolingMethod" | "AirCooling" | "FurnaceCooling" | "OilQuenching" | "PolymerQuenching" | "WaterQuenching" | "NotSet";
|
|
8855
8748
|
export interface ImaDocumentTypesResultsDto {
|
|
8856
8749
|
ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
8857
8750
|
radiologicalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8858
8751
|
liquidPenetrantCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
8859
8752
|
magneticParticle?: ImaSupplementaryCheckResultDto | null;
|
|
8860
8753
|
pmi?: ImaSupplementaryCheckResultDto | null;
|
|
8861
|
-
|
|
8754
|
+
hydrostatic?: ImaSupplementaryCheckResultDto | null;
|
|
8862
8755
|
visualReport?: ImaSupplementaryCheckResultDto | null;
|
|
8863
8756
|
dimensionalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8864
8757
|
microExaminationReport?: ImaSupplementaryCheckResultDto | null;
|
|
@@ -8979,7 +8872,6 @@ export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
|
|
|
8979
8872
|
prenW?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8980
8873
|
v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8981
8874
|
ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8982
|
-
nb_Ta?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8983
8875
|
}
|
|
8984
8876
|
export interface ImaOverrideTensileTestResultsDto {
|
|
8985
8877
|
heatNumber?: string | null;
|
|
@@ -9057,7 +8949,7 @@ export interface ImaOverrideDocumentTypesResultsDto {
|
|
|
9057
8949
|
liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9058
8950
|
magneticParticle?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9059
8951
|
pmi?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9060
|
-
|
|
8952
|
+
hydrostatic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9061
8953
|
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9062
8954
|
dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9063
8955
|
microExaminationReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -9090,7 +8982,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
9090
8982
|
specificationStatus: ImaSpecificationStatusDto;
|
|
9091
8983
|
purchaseOrder?: string | null;
|
|
9092
8984
|
purchaseOrderLine?: number | null;
|
|
9093
|
-
|
|
8985
|
+
purchaseOrderVendorBatches?: string[] | null;
|
|
9094
8986
|
purchaseOrderPartName?: string | null;
|
|
9095
8987
|
purchaseOrderPartNumber?: string | null;
|
|
9096
8988
|
purchaseOrderPartRevision?: string | null;
|
|
@@ -9121,7 +9013,7 @@ export interface ImaMaterialChecksPageRequestDto {
|
|
|
9121
9013
|
certificateTypeFilter?: string | null;
|
|
9122
9014
|
purchaseOrderLineFilter?: number | null;
|
|
9123
9015
|
heatFilter?: string | null;
|
|
9124
|
-
vendorBatchesFilter?: string | null;
|
|
9016
|
+
vendorBatchesFilter?: string[] | null;
|
|
9125
9017
|
purchaseOrderPartNameFilter?: string | null;
|
|
9126
9018
|
purchaseOrderPartNumberFilter?: string | null;
|
|
9127
9019
|
purchaseOrderDrawingFilter?: string | null;
|
|
@@ -9154,7 +9046,6 @@ export interface ImaMaterialCheckReportDto {
|
|
|
9154
9046
|
includesAllHeats: boolean;
|
|
9155
9047
|
status: ImaMaterialCheckStatusDto;
|
|
9156
9048
|
audit: ImaMaterialCheckReportAuditInfo;
|
|
9157
|
-
isOutdated: boolean;
|
|
9158
9049
|
}
|
|
9159
9050
|
export interface ImaMaterialCheckReportAuditInfo {
|
|
9160
9051
|
createdBy: string;
|
|
@@ -9180,7 +9071,7 @@ export interface PurchaseOrderMaterialLineDetailsDto {
|
|
|
9180
9071
|
purchaseOrder: string;
|
|
9181
9072
|
lineNumber?: number | null;
|
|
9182
9073
|
dimension?: string | null;
|
|
9183
|
-
|
|
9074
|
+
vendorBatches: string[];
|
|
9184
9075
|
mdsCodeFl?: string | null;
|
|
9185
9076
|
typeOfCertificate?: string | null;
|
|
9186
9077
|
}
|
|
@@ -9318,7 +9209,6 @@ export interface ImaChemistryCompositeSpecificationDto {
|
|
|
9318
9209
|
prenW?: ImaSpecificationLineDto | null;
|
|
9319
9210
|
v_Nb_Ti?: boolean | null;
|
|
9320
9211
|
ce?: boolean | null;
|
|
9321
|
-
nb_Ta?: ImaSpecificationLineDto | null;
|
|
9322
9212
|
}
|
|
9323
9213
|
export interface ImaMechanicalSpecificationDto {
|
|
9324
9214
|
tensile?: ImaTensileSpecificationDto | null;
|
|
@@ -9350,7 +9240,7 @@ export interface ImaDocumentTypesSpecificationDto {
|
|
|
9350
9240
|
liquidPenetrantCertificate?: boolean;
|
|
9351
9241
|
magneticParticle?: boolean;
|
|
9352
9242
|
pmi?: boolean;
|
|
9353
|
-
|
|
9243
|
+
hydrostatic?: boolean;
|
|
9354
9244
|
visualReport?: boolean;
|
|
9355
9245
|
dimensionalReport?: boolean;
|
|
9356
9246
|
microExaminationReport?: boolean;
|
|
@@ -9417,115 +9307,6 @@ export interface ImaSpecificationLiteDto {
|
|
|
9417
9307
|
updated: Date;
|
|
9418
9308
|
isDeleted: boolean;
|
|
9419
9309
|
}
|
|
9420
|
-
export interface SchemaCreatorStateDto {
|
|
9421
|
-
settings: SchemaCreatorSettingsDto;
|
|
9422
|
-
elements: SchemaCreatorElementDto[];
|
|
9423
|
-
documentParseStatus?: SchemaCreatorDocumentParseStatusDto | null;
|
|
9424
|
-
isAutoGenerated?: boolean;
|
|
9425
|
-
createdBy?: SchemaCreatorAuditInfoDto | null;
|
|
9426
|
-
createdAt?: Date | null;
|
|
9427
|
-
updatedBy?: SchemaCreatorAuditInfoDto | null;
|
|
9428
|
-
updatedAt?: Date | null;
|
|
9429
|
-
}
|
|
9430
|
-
export interface SchemaCreatorSettingsDto {
|
|
9431
|
-
unit?: SchemaCreatorUnitOfMeasureDto;
|
|
9432
|
-
tolerance?: GeneralToleranceDto;
|
|
9433
|
-
balloonSize?: number;
|
|
9434
|
-
transparentBalloons?: boolean;
|
|
9435
|
-
}
|
|
9436
|
-
export type SchemaCreatorUnitOfMeasureDto = "Millimeter" | "Inch" | "Mixed";
|
|
9437
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
9438
|
-
export interface SchemaCreatorElementDto {
|
|
9439
|
-
id: string;
|
|
9440
|
-
kind: SchemaCreatorElementKindDto;
|
|
9441
|
-
drawings: SchemaCreatorElementDrawingsDto;
|
|
9442
|
-
isDirty?: boolean | null;
|
|
9443
|
-
values?: SchemaCreatorElementValuesDto | null;
|
|
9444
|
-
parseResult?: SchemaCreatorSnipResultDto | null;
|
|
9445
|
-
resolveAttempt?: SchemaCreatorParseAttemptDto | null;
|
|
9446
|
-
createdBy?: SchemaCreatorAuditInfoDto | null;
|
|
9447
|
-
createdAt?: Date | null;
|
|
9448
|
-
updatedBy?: SchemaCreatorAuditInfoDto | null;
|
|
9449
|
-
updatedAt?: Date | null;
|
|
9450
|
-
}
|
|
9451
|
-
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
9452
|
-
export interface SchemaCreatorElementDrawingsDto {
|
|
9453
|
-
snip: SchemaCreatorSnipDto;
|
|
9454
|
-
balloon: SchemaCreatorPointDto;
|
|
9455
|
-
pageIndex: number;
|
|
9456
|
-
}
|
|
9457
|
-
export interface SchemaCreatorSnipDto {
|
|
9458
|
-
rect: SchemaCreatorRectDto;
|
|
9459
|
-
rotation?: number | null;
|
|
9460
|
-
unrotatedRect?: SchemaCreatorRectDto | null;
|
|
9461
|
-
}
|
|
9462
|
-
export interface SchemaCreatorRectDto {
|
|
9463
|
-
origin: SchemaCreatorPointDto;
|
|
9464
|
-
size: SchemaCreatorSizeDto;
|
|
9465
|
-
}
|
|
9466
|
-
export interface SchemaCreatorPointDto {
|
|
9467
|
-
x: number;
|
|
9468
|
-
y: number;
|
|
9469
|
-
}
|
|
9470
|
-
export interface SchemaCreatorSizeDto {
|
|
9471
|
-
width: number;
|
|
9472
|
-
height: number;
|
|
9473
|
-
}
|
|
9474
|
-
export interface SchemaCreatorElementValuesDto {
|
|
9475
|
-
reference: number;
|
|
9476
|
-
unit?: UnitOfMeasureDto | null;
|
|
9477
|
-
nominal?: number | null;
|
|
9478
|
-
nominalText?: string | null;
|
|
9479
|
-
upperLimit?: number | null;
|
|
9480
|
-
lowerLimit?: number | null;
|
|
9481
|
-
plusTolerance?: number | null;
|
|
9482
|
-
minusTolerance?: number | null;
|
|
9483
|
-
coatingThickness?: number | null;
|
|
9484
|
-
measurementFrequency: MeasurementFrequency;
|
|
9485
|
-
measurementFrequencyParameter?: number | null;
|
|
9486
|
-
type?: string | null;
|
|
9487
|
-
count?: number | null;
|
|
9488
|
-
comment?: string | null;
|
|
9489
|
-
canCopy: boolean;
|
|
9490
|
-
visibleToCustomer: boolean;
|
|
9491
|
-
isDocumentedExternally: boolean;
|
|
9492
|
-
}
|
|
9493
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
9494
|
-
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
9495
|
-
export interface SchemaCreatorSnipResultDto {
|
|
9496
|
-
nominal?: number | null;
|
|
9497
|
-
nominalText?: string | null;
|
|
9498
|
-
upperLimit?: number | null;
|
|
9499
|
-
lowerLimit?: number | null;
|
|
9500
|
-
plusTolerance?: number | null;
|
|
9501
|
-
minusTolerance?: number | null;
|
|
9502
|
-
count?: number | null;
|
|
9503
|
-
}
|
|
9504
|
-
export interface SchemaCreatorParseAttemptDto {
|
|
9505
|
-
startedAt: Date;
|
|
9506
|
-
errorType?: SchemaCreatorParseErrorTypeDto | null;
|
|
9507
|
-
errorMessage?: string | null;
|
|
9508
|
-
}
|
|
9509
|
-
export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
|
|
9510
|
-
export interface SchemaCreatorAuditInfoDto {
|
|
9511
|
-
objectId: string;
|
|
9512
|
-
userId: string;
|
|
9513
|
-
userFullName?: string | null;
|
|
9514
|
-
}
|
|
9515
|
-
export interface SchemaCreatorDocumentParseStatusDto {
|
|
9516
|
-
inProgress: boolean;
|
|
9517
|
-
attempt?: SchemaCreatorParseAttemptDto | null;
|
|
9518
|
-
}
|
|
9519
|
-
export interface SchemaCreatorXmlGeometryDto {
|
|
9520
|
-
xmlAttributeId: number;
|
|
9521
|
-
snipRect: SchemaCreatorRectDto;
|
|
9522
|
-
balloon: SchemaCreatorPointDto;
|
|
9523
|
-
pageIndex: number;
|
|
9524
|
-
}
|
|
9525
|
-
export interface RenderSchemaCreatorElementSnipImageRequest {
|
|
9526
|
-
pageIndex: number;
|
|
9527
|
-
snip: SchemaCreatorSnipDto;
|
|
9528
|
-
}
|
|
9529
9310
|
export interface MeasurementFormSchemaDto {
|
|
9530
9311
|
id: string;
|
|
9531
9312
|
versionId: number;
|
|
@@ -9557,7 +9338,9 @@ export interface MeasurementFormSchemaDto {
|
|
|
9557
9338
|
}
|
|
9558
9339
|
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
9559
9340
|
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
9341
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
9560
9342
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
9343
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
9561
9344
|
export interface MeasurementFormSchemaAttachmentDto {
|
|
9562
9345
|
url: string;
|
|
9563
9346
|
title: string;
|
|
@@ -9566,7 +9349,6 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
9566
9349
|
id: string;
|
|
9567
9350
|
balloonId?: string | null;
|
|
9568
9351
|
reference: number;
|
|
9569
|
-
originalXmlId?: number | null;
|
|
9570
9352
|
imageUrl?: string | null;
|
|
9571
9353
|
thumbnailUrl?: string | null;
|
|
9572
9354
|
section?: string | null;
|
|
@@ -9607,6 +9389,7 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
9607
9389
|
isValid: boolean;
|
|
9608
9390
|
validationErrorMessage?: string | null;
|
|
9609
9391
|
}
|
|
9392
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
9610
9393
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
9611
9394
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|
|
9612
9395
|
export interface MeasurementFormLinkedSchemaDto {
|
|
@@ -9719,7 +9502,6 @@ export interface UploadDrawingRequest {
|
|
|
9719
9502
|
export interface UploadRequest {
|
|
9720
9503
|
uploadKey: string;
|
|
9721
9504
|
filename: string;
|
|
9722
|
-
isMarkedDrawing?: boolean | null;
|
|
9723
9505
|
}
|
|
9724
9506
|
export interface MeasurementFormImportStatusDto {
|
|
9725
9507
|
progress: number;
|
|
@@ -9795,8 +9577,6 @@ export interface MeasurementFormCustomerSettingsDto {
|
|
|
9795
9577
|
validationRuleId?: string | null;
|
|
9796
9578
|
requireCalibratedTools: boolean;
|
|
9797
9579
|
allowEmptyToolListInValue: boolean;
|
|
9798
|
-
disableAiParseDocument: boolean;
|
|
9799
|
-
disableAiParseSnip: boolean;
|
|
9800
9580
|
}
|
|
9801
9581
|
export interface UpdateMeasurementFormCustomerSettings {
|
|
9802
9582
|
customerId: string;
|
|
@@ -9805,8 +9585,6 @@ export interface UpdateMeasurementFormCustomerSettings {
|
|
|
9805
9585
|
validationRuleId?: string | null;
|
|
9806
9586
|
requireCalibratedTools: boolean;
|
|
9807
9587
|
allowEmptyToolListInValue: boolean;
|
|
9808
|
-
disableAiParseDocument: boolean;
|
|
9809
|
-
disableAiParseSnip: boolean;
|
|
9810
9588
|
}
|
|
9811
9589
|
export interface MeasurementFormMappingDto {
|
|
9812
9590
|
id: string;
|
|
@@ -9990,7 +9768,6 @@ export interface MeasurementFormInstanceDto {
|
|
|
9990
9768
|
drawingRevision?: string | null;
|
|
9991
9769
|
customerId?: string | null;
|
|
9992
9770
|
customerName?: string | null;
|
|
9993
|
-
purchaseOrder?: string | null;
|
|
9994
9771
|
quantity: number;
|
|
9995
9772
|
status: MeasurementFormInstanceStatus;
|
|
9996
9773
|
statusChangedDate?: Date | null;
|
|
@@ -10300,14 +10077,6 @@ export interface ListMeasurementFormsByStatusRequest {
|
|
|
10300
10077
|
search?: string | null;
|
|
10301
10078
|
continuationToken?: string | null;
|
|
10302
10079
|
}
|
|
10303
|
-
export interface ListMeasurementFormsByStatusesRequest {
|
|
10304
|
-
statuses?: MeasurementFormInstanceStatus[];
|
|
10305
|
-
statusChangedSince?: Date | null;
|
|
10306
|
-
onlyWithReports?: boolean | null;
|
|
10307
|
-
pageSize?: number | null;
|
|
10308
|
-
search?: string | null;
|
|
10309
|
-
continuationToken?: string | null;
|
|
10310
|
-
}
|
|
10311
10080
|
export interface CreateMeasurementFormInstanceRequest {
|
|
10312
10081
|
schemaId: string;
|
|
10313
10082
|
customerId?: string | null;
|
|
@@ -10324,17 +10093,10 @@ export interface CreateMeasurementFormInstanceRequestSerialNumber {
|
|
|
10324
10093
|
serialNumber: string;
|
|
10325
10094
|
customerSerialNumber?: string | null;
|
|
10326
10095
|
}
|
|
10327
|
-
export interface
|
|
10328
|
-
|
|
10329
|
-
customerName: string;
|
|
10330
|
-
purchaseOrder?: string | null;
|
|
10096
|
+
export interface UpdateMeasurementFormInstanceRequest {
|
|
10097
|
+
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
10331
10098
|
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
10332
10099
|
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
10333
|
-
discardValuesForSerialNumbers?: string[] | null;
|
|
10334
|
-
}
|
|
10335
|
-
export interface SerialNumberValueCountDto {
|
|
10336
|
-
serialNumber?: string | null;
|
|
10337
|
-
count?: number;
|
|
10338
10100
|
}
|
|
10339
10101
|
export interface ProductionCompanyDto {
|
|
10340
10102
|
id: string;
|