@ignos/api-client 20260905.259.1-alpha → 20260907.261.1

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.
@@ -2933,84 +2933,6 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
2933
2933
  listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2934
2934
  protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
2935
2935
  }
2936
- export interface IInspectSchemaCreatorClient {
2937
- getSchemaCreatorState(id: 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(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2943
- updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2944
- /**
2945
- * Starts a full drawing AI parse: clears every element and locks the
2946
- schema for every viewer until it completes. If one is already in
2947
- progress, returns that instead of starting a second one.
2948
- */
2949
- requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto>;
2950
- /**
2951
- * Stamps the creator state's balloons onto the schema's drawing PDF and
2952
- returns a temporary download link.
2953
- */
2954
- exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
2955
- /**
2956
- * Starts an async snip resolve; the result is delivered through the
2957
- SchemaCreatorSnipResolved SignalR notification.
2958
- * @param image (optional)
2959
- */
2960
- requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<void>;
2961
- /**
2962
- * Renders the legacy-format image for one element's current snip.
2963
- Fire-and-forget from the client on every snip commit - the resulting
2964
- image isn't returned here, it's only ever read back once the schema
2965
- is released (SchemaCreatorLegacyMapper).
2966
- */
2967
- renderSchemaCreatorElementSnipImage(id: string, elementId: string, request: RenderSchemaCreatorElementSnipImageRequest): Promise<void>;
2968
- }
2969
- export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
2970
- private http;
2971
- private baseUrl;
2972
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
2973
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2974
- });
2975
- getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
2976
- protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2977
- /**
2978
- * Creates the initial creator state for a schema version. Returns 409 if
2979
- state already exists; the caller should re-fetch it instead of writing.
2980
- */
2981
- createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2982
- protected processCreateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2983
- updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2984
- protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2985
- /**
2986
- * Starts a full drawing AI parse: clears every element and locks the
2987
- schema for every viewer until it completes. If one is already in
2988
- progress, returns that instead of starting a second one.
2989
- */
2990
- requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto>;
2991
- protected processRequestSchemaCreatorDocumentParse(response: Response): Promise<SchemaCreatorStateDto>;
2992
- /**
2993
- * Stamps the creator state's balloons onto the schema's drawing PDF and
2994
- returns a temporary download link.
2995
- */
2996
- exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
2997
- protected processExportSchemaCreatorDrawing(response: Response): Promise<DownloadDto>;
2998
- /**
2999
- * Starts an async snip resolve; the result is delivered through the
3000
- SchemaCreatorSnipResolved SignalR notification.
3001
- * @param image (optional)
3002
- */
3003
- requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<void>;
3004
- protected processRequestSchemaCreatorSnipParse(response: Response): Promise<void>;
3005
- /**
3006
- * Renders the legacy-format image for one element's current snip.
3007
- Fire-and-forget from the client on every snip commit - the resulting
3008
- image isn't returned here, it's only ever read back once the schema
3009
- is released (SchemaCreatorLegacyMapper).
3010
- */
3011
- renderSchemaCreatorElementSnipImage(id: string, elementId: string, request: RenderSchemaCreatorElementSnipImageRequest): Promise<void>;
3012
- protected processRenderSchemaCreatorElementSnipImage(response: Response): Promise<void>;
3013
- }
3014
2936
  export interface IMeasurementFormSchemasAdminClient {
3015
2937
  getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
3016
2938
  createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
@@ -3022,7 +2944,7 @@ export interface IMeasurementFormSchemasAdminClient {
3022
2944
  deleteSchemaRows(id: string, request: DeleteSchemaGroupedElementRowsDto): Promise<MeasurementFormSchemaDto>;
3023
2945
  uploadMeasurementImage(id: string, request: UploadMeasurementImageRequest): Promise<MeasurementFormSchemaDto>;
3024
2946
  updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
3025
- uploadSchemaMarkedDrawing(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
2947
+ uploadSchemaDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
3026
2948
  uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
3027
2949
  getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
3028
2950
  listLinkableMeasurementFormSchemas(schemaId: string, pageSize: number | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
@@ -3105,8 +3027,8 @@ export declare class MeasurementFormSchemasAdminClient extends AuthorizedApiBase
3105
3027
  protected processUploadMeasurementImage(response: Response): Promise<MeasurementFormSchemaDto>;
3106
3028
  updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
3107
3029
  protected processUpdateSchemaSettings(response: Response): Promise<UpdateSchemaSettingsRequest>;
3108
- uploadSchemaMarkedDrawing(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
3109
- protected processUploadSchemaMarkedDrawing(response: Response): Promise<MeasurementFormSchemaDto>;
3030
+ uploadSchemaDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
3031
+ protected processUploadSchemaDrawing(response: Response): Promise<MeasurementFormSchemaDto>;
3110
3032
  uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
3111
3033
  protected processUploadSchemaAttachment(response: Response): Promise<MeasurementFormSchemaDto>;
3112
3034
  getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
@@ -3268,7 +3190,6 @@ export interface IMeasurementFormsInstancesClient {
3268
3190
  completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
3269
3191
  completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
3270
3192
  getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3271
- getMeasurementFormInstanceSchemaCreatorState(id: string, schemaId: string, tenantId: string | null | undefined): Promise<SchemaCreatorStateDto>;
3272
3193
  getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
3273
3194
  getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
3274
3195
  getValidationRules(): Promise<ValidationRuleDto[]>;
@@ -3307,8 +3228,6 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
3307
3228
  protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
3308
3229
  getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
3309
3230
  protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
3310
- getMeasurementFormInstanceSchemaCreatorState(id: string, schemaId: string, tenantId: string | null | undefined): Promise<SchemaCreatorStateDto>;
3311
- protected processGetMeasurementFormInstanceSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
3312
3231
  getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
3313
3232
  protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
3314
3233
  getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
@@ -4877,6 +4796,7 @@ export interface PulseJournalEventDto {
4877
4796
  eventType: PulseJournalEventTypeDto;
4878
4797
  oldValue?: string | null;
4879
4798
  newValue?: string | null;
4799
+ lineText?: string | null;
4880
4800
  created: Date;
4881
4801
  createdBy?: string | null;
4882
4802
  }
@@ -8691,6 +8611,7 @@ export interface ImaChemicalAnalysisCompositeResultDto {
8691
8611
  prenW?: ImaSpecificationCalculatedResultLineDto | null;
8692
8612
  v_Nb_Ti?: ImaSpecificationCalculatedResultLineDto | null;
8693
8613
  ce?: ImaSpecificationCalculatedResultLineDto | null;
8614
+ nb_Ta?: ImaSpecificationCalculatedResultLineDto | null;
8694
8615
  }
8695
8616
  export interface ImaSpecificationCalculatedResultLineDto {
8696
8617
  specificationMin?: number | null;
@@ -8942,6 +8863,7 @@ export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
8942
8863
  prenW?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8943
8864
  v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8944
8865
  ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8866
+ nb_Ta?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8945
8867
  }
8946
8868
  export interface ImaOverrideTensileTestResultsDto {
8947
8869
  heatNumber?: string | null;
@@ -9116,6 +9038,7 @@ export interface ImaMaterialCheckReportDto {
9116
9038
  includesAllHeats: boolean;
9117
9039
  status: ImaMaterialCheckStatusDto;
9118
9040
  audit: ImaMaterialCheckReportAuditInfo;
9041
+ isOutdated: boolean;
9119
9042
  }
9120
9043
  export interface ImaMaterialCheckReportAuditInfo {
9121
9044
  createdBy: string;
@@ -9279,6 +9202,7 @@ export interface ImaChemistryCompositeSpecificationDto {
9279
9202
  prenW?: ImaSpecificationLineDto | null;
9280
9203
  v_Nb_Ti?: boolean | null;
9281
9204
  ce?: boolean | null;
9205
+ nb_Ta?: ImaSpecificationLineDto | null;
9282
9206
  }
9283
9207
  export interface ImaMechanicalSpecificationDto {
9284
9208
  tensile?: ImaTensileSpecificationDto | null;
@@ -9377,109 +9301,6 @@ export interface ImaSpecificationLiteDto {
9377
9301
  updated: Date;
9378
9302
  isDeleted: boolean;
9379
9303
  }
9380
- export interface SchemaCreatorStateDto {
9381
- settings: SchemaCreatorSettingsDto;
9382
- elements: SchemaCreatorElementDto[];
9383
- documentParseStatus?: SchemaCreatorDocumentParseStatusDto | null;
9384
- isAutoGenerated?: boolean;
9385
- createdBy?: SchemaCreatorAuditInfoDto | null;
9386
- createdAt?: Date | null;
9387
- updatedBy?: SchemaCreatorAuditInfoDto | null;
9388
- updatedAt?: Date | null;
9389
- }
9390
- export interface SchemaCreatorSettingsDto {
9391
- unit?: SchemaCreatorUnitOfMeasureDto;
9392
- tolerance?: GeneralToleranceDto;
9393
- balloonSize?: number;
9394
- transparentBalloons?: boolean;
9395
- }
9396
- export type SchemaCreatorUnitOfMeasureDto = "Millimeter" | "Inch" | "Mixed";
9397
- export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
9398
- export interface SchemaCreatorElementDto {
9399
- id: string;
9400
- kind: SchemaCreatorElementKindDto;
9401
- drawings: SchemaCreatorElementDrawingsDto;
9402
- isDirty?: boolean | null;
9403
- values?: SchemaCreatorElementValuesDto | null;
9404
- parseResult?: SchemaCreatorSnipResultDto | null;
9405
- resolveAttempt?: SchemaCreatorParseAttemptDto | null;
9406
- createdBy?: SchemaCreatorAuditInfoDto | null;
9407
- createdAt?: Date | null;
9408
- updatedBy?: SchemaCreatorAuditInfoDto | null;
9409
- updatedAt?: Date | null;
9410
- }
9411
- export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
9412
- export interface SchemaCreatorElementDrawingsDto {
9413
- snip: SchemaCreatorSnipDto;
9414
- balloon: SchemaCreatorPointDto;
9415
- pageIndex: number;
9416
- }
9417
- export interface SchemaCreatorSnipDto {
9418
- rect: SchemaCreatorRectDto;
9419
- rotation?: number | null;
9420
- unrotatedRect?: SchemaCreatorRectDto | null;
9421
- }
9422
- export interface SchemaCreatorRectDto {
9423
- origin: SchemaCreatorPointDto;
9424
- size: SchemaCreatorSizeDto;
9425
- }
9426
- export interface SchemaCreatorPointDto {
9427
- x: number;
9428
- y: number;
9429
- }
9430
- export interface SchemaCreatorSizeDto {
9431
- width: number;
9432
- height: number;
9433
- }
9434
- export interface SchemaCreatorElementValuesDto {
9435
- reference: number;
9436
- unit?: UnitOfMeasureDto | null;
9437
- nominal?: number | null;
9438
- nominalText?: string | null;
9439
- upperLimit?: number | null;
9440
- lowerLimit?: number | null;
9441
- plusTolerance?: number | null;
9442
- minusTolerance?: number | null;
9443
- coatingThickness?: number | null;
9444
- measurementFrequency: MeasurementFrequency;
9445
- measurementFrequencyParameter?: number | null;
9446
- type?: string | null;
9447
- count?: number | null;
9448
- comment?: string | null;
9449
- canCopy: boolean;
9450
- visibleToCustomer: boolean;
9451
- isDocumentedExternally: boolean;
9452
- }
9453
- export type UnitOfMeasureDto = "Millimeter" | "Inch";
9454
- export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
9455
- export interface SchemaCreatorSnipResultDto {
9456
- nominal?: number | null;
9457
- nominalText?: string | null;
9458
- upperLimit?: number | null;
9459
- lowerLimit?: number | null;
9460
- plusTolerance?: number | null;
9461
- minusTolerance?: number | null;
9462
- count?: number | null;
9463
- }
9464
- export interface SchemaCreatorParseAttemptDto {
9465
- startedAt: Date;
9466
- errorType?: SchemaCreatorParseErrorTypeDto | null;
9467
- errorMessage?: string | null;
9468
- }
9469
- export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
9470
- export interface SchemaCreatorAuditInfoDto {
9471
- objectId: string;
9472
- userId: string;
9473
- userFullName?: string | null;
9474
- }
9475
- export interface SchemaCreatorDocumentParseStatusDto {
9476
- inProgress: boolean;
9477
- attempt?: SchemaCreatorParseAttemptDto | null;
9478
- }
9479
- export interface RenderSchemaCreatorElementSnipImageRequest {
9480
- pageIndex: number;
9481
- snip: SchemaCreatorSnipDto;
9482
- }
9483
9304
  export interface MeasurementFormSchemaDto {
9484
9305
  id: string;
9485
9306
  versionId: number;
@@ -9511,7 +9332,9 @@ export interface MeasurementFormSchemaDto {
9511
9332
  }
9512
9333
  export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
9513
9334
  export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
9335
+ export type UnitOfMeasureDto = "Millimeter" | "Inch";
9514
9336
  export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
9337
+ export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
9515
9338
  export interface MeasurementFormSchemaAttachmentDto {
9516
9339
  url: string;
9517
9340
  title: string;
@@ -9560,6 +9383,7 @@ export interface MeasurementFormGroupedElementDto {
9560
9383
  isValid: boolean;
9561
9384
  validationErrorMessage?: string | null;
9562
9385
  }
9386
+ export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
9563
9387
  export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
9564
9388
  export type BonusType = "None" | "Positive" | "PositiveAndNegative";
9565
9389
  export interface MeasurementFormLinkedSchemaDto {
@@ -9665,6 +9489,10 @@ export interface UpdateSchemaSettingsRequest {
9665
9489
  dimensionSetting: DimensionSettingDto;
9666
9490
  generalTolerance: GeneralToleranceDto;
9667
9491
  }
9492
+ export interface UploadDrawingRequest {
9493
+ uploadKey: string;
9494
+ filename: string;
9495
+ }
9668
9496
  export interface UploadRequest {
9669
9497
  uploadKey: string;
9670
9498
  filename: string;
@@ -9843,10 +9671,6 @@ export interface MeasurementFormSchemaNotNeededDto {
9843
9671
  export interface SetMeasurementFormNeedAsNotNeededRequest {
9844
9672
  comment?: string | null;
9845
9673
  }
9846
- export interface UploadDrawingRequest {
9847
- uploadKey: string;
9848
- filename: string;
9849
- }
9850
9674
  export interface PagedResultOfMeasurementFormSchemaNotNeededDto {
9851
9675
  results: MeasurementFormSchemaNotNeededDto[];
9852
9676
  continuationToken?: string | null;