@ignos/api-client 20260407.102.1 → 20260413.104.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.
@@ -419,6 +419,7 @@ export declare class UserAppSettingsClient extends AuthorizedApiBase implements
419
419
  }
420
420
  export interface IUploadClient {
421
421
  createUploadInfo(): Promise<UploadInfoDto>;
422
+ createUploadInfoCdf(request: CreateUploadInfoCdf): Promise<UploadInfoCdfDto>;
422
423
  }
423
424
  export declare class UploadClient extends AuthorizedApiBase implements IUploadClient {
424
425
  private http;
@@ -428,6 +429,8 @@ export declare class UploadClient extends AuthorizedApiBase implements IUploadCl
428
429
  });
429
430
  createUploadInfo(): Promise<UploadInfoDto>;
430
431
  protected processCreateUploadInfo(response: Response): Promise<UploadInfoDto>;
432
+ createUploadInfoCdf(request: CreateUploadInfoCdf): Promise<UploadInfoCdfDto>;
433
+ protected processCreateUploadInfoCdf(response: Response): Promise<UploadInfoCdfDto>;
431
434
  }
432
435
  export interface ISystemHealthDashboardClient {
433
436
  getMachineDataHealth(assetId: number | null | undefined): Promise<DataHealthDto>;
@@ -2580,7 +2583,7 @@ export interface IInspectMatchCertificateChecksClient {
2580
2583
  listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
2581
2584
  getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
2582
2585
  deleteMaterialCheck(id: string): Promise<void>;
2583
- processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
2586
+ processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
2584
2587
  updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
2585
2588
  }
2586
2589
  export declare class InspectMatchCertificateChecksClient extends AuthorizedApiBase implements IInspectMatchCertificateChecksClient {
@@ -2595,35 +2598,25 @@ export declare class InspectMatchCertificateChecksClient extends AuthorizedApiBa
2595
2598
  protected processGetMaterialCertificateCheck(response: Response): Promise<ImaMaterialCheckDto>;
2596
2599
  deleteMaterialCheck(id: string): Promise<void>;
2597
2600
  protected processDeleteMaterialCheck(response: Response): Promise<void>;
2598
- processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
2601
+ processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
2599
2602
  protected processProcessMaterialCertificate(response: Response): Promise<void>;
2600
2603
  updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
2601
2604
  protected processUpdateMaterialCertificate(response: Response): Promise<ImaMaterialCheckDto>;
2602
2605
  }
2603
- export interface IInspectMatchCertificateTypesClient {
2604
- listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
2605
- getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2606
- updateMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2607
- deleteMaterialCertificateType(id: string, version: number | null | undefined): Promise<void>;
2606
+ export interface IInspectMatchCertificateTypesAdminClient {
2608
2607
  createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2609
2608
  copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2610
2609
  createNewVersionForCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2611
2610
  releaseMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2611
+ updateMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2612
+ deleteMaterialCertificateType(id: string, version: number | null | undefined): Promise<void>;
2612
2613
  }
2613
- export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBase implements IInspectMatchCertificateTypesClient {
2614
+ export declare class InspectMatchCertificateTypesAdminClient extends AuthorizedApiBase implements IInspectMatchCertificateTypesAdminClient {
2614
2615
  private http;
2615
2616
  private baseUrl;
2616
2617
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2617
2618
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2618
2619
  });
2619
- listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
2620
- protected processListMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeLiteDto[]>;
2621
- getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2622
- protected processGetMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
2623
- updateMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2624
- protected processUpdateMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
2625
- deleteMaterialCertificateType(id: string, version: number | null | undefined): Promise<void>;
2626
- protected processDeleteMaterialCertificateType(response: Response): Promise<void>;
2627
2620
  createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2628
2621
  protected processCreateMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
2629
2622
  copyMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
@@ -2632,6 +2625,25 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
2632
2625
  protected processCreateNewVersionForCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
2633
2626
  releaseMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2634
2627
  protected processReleaseMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
2628
+ updateMaterialCertificateType(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
2629
+ protected processUpdateMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
2630
+ deleteMaterialCertificateType(id: string, version: number | null | undefined): Promise<void>;
2631
+ protected processDeleteMaterialCertificateType(response: Response): Promise<void>;
2632
+ }
2633
+ export interface IInspectMatchCertificateTypesClient {
2634
+ getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2635
+ listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
2636
+ }
2637
+ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBase implements IInspectMatchCertificateTypesClient {
2638
+ private http;
2639
+ private baseUrl;
2640
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2641
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2642
+ });
2643
+ getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2644
+ protected processGetMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
2645
+ listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
2646
+ protected processListMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeLiteDto[]>;
2635
2647
  }
2636
2648
  export interface IInspectMatchPurchaseOrderClient {
2637
2649
  searchPurchaseOrders(input: string | undefined): Promise<PurchaseOrderMaterialSearchResultsDto>;
@@ -2651,30 +2663,20 @@ export declare class InspectMatchPurchaseOrderClient extends AuthorizedApiBase i
2651
2663
  getPurchaseOrderLineDetails(purchaseOrder: string, lineNumber: number): Promise<PurchaseOrderMaterialLineDetailsDto>;
2652
2664
  protected processGetPurchaseOrderLineDetails(response: Response): Promise<PurchaseOrderMaterialLineDetailsDto>;
2653
2665
  }
2654
- export interface IInspectMatchSpecificationsClient {
2655
- listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2656
- getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2657
- updateSpecification(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
2658
- deleteSpecification(id: string, version: number | null | undefined): Promise<void>;
2666
+ export interface IInspectMatchSpecificationsAdminClient {
2659
2667
  createSpecification(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto>;
2660
2668
  copySpecification(id: string, version: number | null | undefined, copyDto: ImaCopySpecificationRequestDto): Promise<ImaSpecificationDto>;
2661
2669
  createNewVersionForSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2662
2670
  releaseSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2671
+ updateSpecification(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
2672
+ deleteSpecification(id: string, version: number | null | undefined): Promise<void>;
2663
2673
  }
2664
- export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase implements IInspectMatchSpecificationsClient {
2674
+ export declare class InspectMatchSpecificationsAdminClient extends AuthorizedApiBase implements IInspectMatchSpecificationsAdminClient {
2665
2675
  private http;
2666
2676
  private baseUrl;
2667
2677
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2668
2678
  fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2669
2679
  });
2670
- listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2671
- protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
2672
- getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2673
- protected processGetSpecification(response: Response): Promise<ImaSpecificationDto>;
2674
- updateSpecification(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
2675
- protected processUpdateSpecification(response: Response): Promise<ImaSpecificationDto>;
2676
- deleteSpecification(id: string, version: number | null | undefined): Promise<void>;
2677
- protected processDeleteSpecification(response: Response): Promise<void>;
2678
2680
  createSpecification(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto>;
2679
2681
  protected processCreateSpecification(response: Response): Promise<ImaSpecificationDto>;
2680
2682
  copySpecification(id: string, version: number | null | undefined, copyDto: ImaCopySpecificationRequestDto): Promise<ImaSpecificationDto>;
@@ -2683,6 +2685,25 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
2683
2685
  protected processCreateNewVersionForSpecification(response: Response): Promise<ImaSpecificationDto>;
2684
2686
  releaseSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2685
2687
  protected processReleaseSpecification(response: Response): Promise<ImaSpecificationDto>;
2688
+ updateSpecification(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
2689
+ protected processUpdateSpecification(response: Response): Promise<ImaSpecificationDto>;
2690
+ deleteSpecification(id: string, version: number | null | undefined): Promise<void>;
2691
+ protected processDeleteSpecification(response: Response): Promise<void>;
2692
+ }
2693
+ export interface IInspectMatchSpecificationsClient {
2694
+ getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2695
+ listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2696
+ }
2697
+ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase implements IInspectMatchSpecificationsClient {
2698
+ private http;
2699
+ private baseUrl;
2700
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2701
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2702
+ });
2703
+ getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2704
+ protected processGetSpecification(response: Response): Promise<ImaSpecificationDto>;
2705
+ listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2706
+ protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
2686
2707
  }
2687
2708
  export interface IMeasurementFormSchemasAdminClient {
2688
2709
  getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
@@ -3729,6 +3750,13 @@ export interface UploadInfoDto {
3729
3750
  key?: string | null;
3730
3751
  accessKey?: string | null;
3731
3752
  }
3753
+ export interface UploadInfoCdfDto {
3754
+ id: number;
3755
+ url: string;
3756
+ }
3757
+ export interface CreateUploadInfoCdf {
3758
+ name: string;
3759
+ }
3732
3760
  export interface DataHealthDto {
3733
3761
  machines?: MachineDataHealthDto[] | null;
3734
3762
  }
@@ -7624,7 +7652,7 @@ export interface ImaMaterialCheckLiteDto {
7624
7652
  specificationVersion: number;
7625
7653
  specificationName: string;
7626
7654
  purchaseOrder?: string | null;
7627
- purchaseOrderLine?: string | null;
7655
+ purchaseOrderLine?: number | null;
7628
7656
  purchaseOrderItem?: string | null;
7629
7657
  purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
7630
7658
  purchaseOrderLot?: string | null;
@@ -7636,7 +7664,7 @@ export interface ImaMaterialCheckLiteDto {
7636
7664
  updatedById?: string | null;
7637
7665
  isDeleted?: boolean;
7638
7666
  }
7639
- export type ImaMaterialCheckStatus = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
7667
+ export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
7640
7668
  export interface ImaMaterialChecksPageRequestDto {
7641
7669
  pageSize?: number | null;
7642
7670
  orderBy?: ImaMaterialChecksOrderByColumn | null;
@@ -7672,7 +7700,7 @@ export interface ImaMaterialCheckDto {
7672
7700
  specificationVersion: number;
7673
7701
  specificationName: string;
7674
7702
  purchaseOrder?: string | null;
7675
- purchaseOrderLine?: string | null;
7703
+ purchaseOrderLine?: number | null;
7676
7704
  purchaseOrderItem?: string | null;
7677
7705
  purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
7678
7706
  purchaseOrderLot?: string | null;
@@ -7831,13 +7859,17 @@ export interface ImaSpecificationHeatTreatmentHeatingResult {
7831
7859
  temperature?: ImaSpecificationResultLineDto | null;
7832
7860
  duration?: ImaSpecificationResultLineDto | null;
7833
7861
  }
7834
- export interface ProcessImaCheckRequestDto {
7835
- files: UploadFileDto[];
7862
+ export interface ProcessMaterialCertificate {
7863
+ files: UploadFileCdfDto[];
7836
7864
  specificationId: string;
7837
- specificationVersion: string;
7865
+ specificationVersion: number;
7838
7866
  certificateTypeId?: string | null;
7839
- certificateTypeVersion?: string | null;
7867
+ certificateTypeVersion?: number | null;
7840
7868
  purchaseOrder?: string | null;
7869
+ purchaseOrderLine?: number | null;
7870
+ }
7871
+ export interface UploadFileCdfDto {
7872
+ id: number;
7841
7873
  }
7842
7874
  export interface ImaUpdateResultRequestDto {
7843
7875
  certificateId: string;
@@ -7957,23 +7989,6 @@ export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
7957
7989
  }
7958
7990
  export interface ImaCdfEntityReadBase {
7959
7991
  }
7960
- export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
7961
- certificateTypeId: string;
7962
- version: number;
7963
- name: string;
7964
- revision: string;
7965
- status: ImaCertificateTypeStatus;
7966
- description?: string | null;
7967
- isStandardCertificateType: boolean;
7968
- created: Date;
7969
- createdBy: string;
7970
- createdById: string;
7971
- updatedBy?: string | null;
7972
- updatedById?: string | null;
7973
- updated: Date;
7974
- isDeleted: boolean;
7975
- }
7976
- export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
7977
7992
  export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
7978
7993
  certificateTypeId: string;
7979
7994
  version: number;
@@ -7996,6 +8011,7 @@ export interface ImaCertificateTypeVersionDto {
7996
8011
  version?: number;
7997
8012
  status?: ImaCertificateTypeStatus;
7998
8013
  }
8014
+ export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
7999
8015
  export interface ImaCertificateTypeRequirementsDto {
8000
8016
  manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
8001
8017
  signature: ImaCertificateTypeSignatureRequirementsDto;
@@ -8146,6 +8162,22 @@ export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
8146
8162
  microExaminationReport?: boolean | null;
8147
8163
  radiologicalReport?: boolean | null;
8148
8164
  }
8165
+ export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
8166
+ certificateTypeId: string;
8167
+ version: number;
8168
+ name: string;
8169
+ revision: string;
8170
+ status: ImaCertificateTypeStatus;
8171
+ description?: string | null;
8172
+ isStandardCertificateType: boolean;
8173
+ created: Date;
8174
+ createdBy: string;
8175
+ createdById: string;
8176
+ updatedBy?: string | null;
8177
+ updatedById?: string | null;
8178
+ updated: Date;
8179
+ isDeleted: boolean;
8180
+ }
8149
8181
  export interface PurchaseOrderMaterialSearchResultsDto {
8150
8182
  purchaseOrders: string[];
8151
8183
  }
@@ -8184,24 +8216,6 @@ export interface User {
8184
8216
  upn?: string | null;
8185
8217
  email?: string | null;
8186
8218
  }
8187
- export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
8188
- specificationId: string;
8189
- version: number;
8190
- name: string;
8191
- number: string;
8192
- revision: string;
8193
- date: Date;
8194
- status: ImaSpecificationStatus;
8195
- summary?: string | null;
8196
- relatedStandards: string[];
8197
- created: Date;
8198
- createdBy: string;
8199
- createdById: string;
8200
- updatedBy: string;
8201
- updatedById: string;
8202
- isDeleted: boolean;
8203
- }
8204
- export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
8205
8219
  export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
8206
8220
  specificationId: string;
8207
8221
  version: number;
@@ -8229,6 +8243,7 @@ export interface ImaSpecificationVersionDto {
8229
8243
  version?: number;
8230
8244
  status?: ImaSpecificationStatus;
8231
8245
  }
8246
+ export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
8232
8247
  export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
8233
8248
  carbon?: ImaSpecificationLineDto | null;
8234
8249
  manganese?: ImaSpecificationLineDto | null;
@@ -8249,7 +8264,7 @@ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
8249
8264
  value2?: number | null;
8250
8265
  unit: ImaSpecificationUnit;
8251
8266
  }
8252
- export type ImaSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
8267
+ export type ImaSpecificationOperator = "Min" | "Max" | "Between" | "NotSet";
8253
8268
  export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
8254
8269
  yieldStrength?: ImaSpecificationLineDto | null;
8255
8270
  tensileStrength?: ImaSpecificationLineDto | null;
@@ -8303,6 +8318,23 @@ export interface ImaUpdateSpecificationDto {
8303
8318
  heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
8304
8319
  }
8305
8320
  export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
8321
+ export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
8322
+ specificationId: string;
8323
+ version: number;
8324
+ name: string;
8325
+ number: string;
8326
+ revision: string;
8327
+ date: Date;
8328
+ status: ImaSpecificationStatus;
8329
+ summary?: string | null;
8330
+ relatedStandards: string[];
8331
+ created: Date;
8332
+ createdBy: string;
8333
+ createdById: string;
8334
+ updatedBy: string;
8335
+ updatedById: string;
8336
+ isDeleted: boolean;
8337
+ }
8306
8338
  export interface MeasurementFormSchemaDto {
8307
8339
  id: string;
8308
8340
  versionId: number;