@ignos/api-client 20260317.78.1 → 20260318.79.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.
@@ -2510,13 +2510,13 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
2510
2510
  deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
2511
2511
  protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
2512
2512
  }
2513
- export interface IMaterialCertificateChecksClient {
2513
+ export interface IInspectMatchCertificateChecksClient {
2514
2514
  listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
2515
2515
  getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
2516
2516
  processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
2517
2517
  updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
2518
2518
  }
2519
- export declare class MaterialCertificateChecksClient extends AuthorizedApiBase implements IMaterialCertificateChecksClient {
2519
+ export declare class InspectMatchCertificateChecksClient extends AuthorizedApiBase implements IInspectMatchCertificateChecksClient {
2520
2520
  private http;
2521
2521
  private baseUrl;
2522
2522
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
@@ -2531,31 +2531,7 @@ export declare class MaterialCertificateChecksClient extends AuthorizedApiBase i
2531
2531
  updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
2532
2532
  protected processUpdateMaterialCertificate(response: Response): Promise<ImaMaterialCheckDto>;
2533
2533
  }
2534
- export interface IMaterialCertificateSpecificationsClient {
2535
- listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2536
- getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2537
- updateSpecifications(id: string, version: number | null | undefined, _: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
2538
- deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
2539
- createSpecifications(createDto: CreateImaSpecificationDto): Promise<ImaSpecificationDto>;
2540
- }
2541
- export declare class MaterialCertificateSpecificationsClient extends AuthorizedApiBase implements IMaterialCertificateSpecificationsClient {
2542
- private http;
2543
- private baseUrl;
2544
- constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2545
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2546
- });
2547
- listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2548
- protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
2549
- getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2550
- protected processGetSpecification(response: Response): Promise<ImaSpecificationDto>;
2551
- updateSpecifications(id: string, version: number | null | undefined, _: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
2552
- protected processUpdateSpecifications(response: Response): Promise<ImaSpecificationDto>;
2553
- deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
2554
- protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
2555
- createSpecifications(createDto: CreateImaSpecificationDto): Promise<ImaSpecificationDto>;
2556
- protected processCreateSpecifications(response: Response): Promise<ImaSpecificationDto>;
2557
- }
2558
- export interface IMaterialCertificateTypesClient {
2534
+ export interface IInspectMatchCertificateTypesClient {
2559
2535
  listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
2560
2536
  getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2561
2537
  updateMaterialCertificateTypes(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
@@ -2565,7 +2541,7 @@ export interface IMaterialCertificateTypesClient {
2565
2541
  createNewVersionForCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2566
2542
  releaseMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2567
2543
  }
2568
- export declare class MaterialCertificateTypesClient extends AuthorizedApiBase implements IMaterialCertificateTypesClient {
2544
+ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBase implements IInspectMatchCertificateTypesClient {
2569
2545
  private http;
2570
2546
  private baseUrl;
2571
2547
  constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
@@ -2588,6 +2564,39 @@ export declare class MaterialCertificateTypesClient extends AuthorizedApiBase im
2588
2564
  releaseMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
2589
2565
  protected processReleaseMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
2590
2566
  }
2567
+ export interface IInspectMatchSpecificationsClient {
2568
+ listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2569
+ getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2570
+ updateSpecifications(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
2571
+ deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
2572
+ createSpecifications(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto>;
2573
+ copySpecification(id: string, version: number | null | undefined, copyDto: ImaCopySpecificationRequestDto): Promise<ImaSpecificationDto>;
2574
+ createNewVersionForSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2575
+ releaseSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2576
+ }
2577
+ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase implements IInspectMatchSpecificationsClient {
2578
+ private http;
2579
+ private baseUrl;
2580
+ constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
2581
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2582
+ });
2583
+ listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2584
+ protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
2585
+ getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2586
+ protected processGetSpecification(response: Response): Promise<ImaSpecificationDto>;
2587
+ updateSpecifications(id: string, version: number | null | undefined, dto: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
2588
+ protected processUpdateSpecifications(response: Response): Promise<ImaSpecificationDto>;
2589
+ deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
2590
+ protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
2591
+ createSpecifications(createRequestDto: ImaCreateSpecificationRequestDto): Promise<ImaSpecificationDto>;
2592
+ protected processCreateSpecifications(response: Response): Promise<ImaSpecificationDto>;
2593
+ copySpecification(id: string, version: number | null | undefined, copyDto: ImaCopySpecificationRequestDto): Promise<ImaSpecificationDto>;
2594
+ protected processCopySpecification(response: Response): Promise<ImaSpecificationDto>;
2595
+ createNewVersionForSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2596
+ protected processCreateNewVersionForSpecification(response: Response): Promise<ImaSpecificationDto>;
2597
+ releaseSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
2598
+ protected processReleaseSpecification(response: Response): Promise<ImaSpecificationDto>;
2599
+ }
2591
2600
  export interface IMeasurementFormSchemasAdminClient {
2592
2601
  getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
2593
2602
  createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
@@ -7763,112 +7772,6 @@ export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
7763
7772
  }
7764
7773
  export interface ImaCdfEntityReadBase {
7765
7774
  }
7766
- export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
7767
- specificationId: string;
7768
- version: number;
7769
- name: string;
7770
- number: string;
7771
- revision: string;
7772
- date: Date;
7773
- status: ImaSpecificationStatus;
7774
- summary?: string | null;
7775
- relatedStandards: string[];
7776
- created: Date;
7777
- createdBy: string;
7778
- createdById: string;
7779
- updatedBy: string;
7780
- updatedById: string;
7781
- }
7782
- export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
7783
- export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
7784
- specificationId: string;
7785
- version: number;
7786
- allVersions: ImaSpecificationVersionDto[];
7787
- name: string;
7788
- number: string;
7789
- revision: string;
7790
- date: Date;
7791
- status: ImaSpecificationStatus;
7792
- summary?: string | null;
7793
- relatedStandards: string[];
7794
- created: Date;
7795
- createdBy: string;
7796
- createdById: string;
7797
- updatedBy: string;
7798
- updatedById: string;
7799
- updated: Date;
7800
- chemistrySpecification: ImaChemistrySpecificationDto;
7801
- mechanicalSpecification: ImaMechanicalSpecificationDto;
7802
- ferriteSpecification: ImaFerriteSpecificationDto;
7803
- heatSpecification: ImaHeatTreatmentSpecificationDto;
7804
- }
7805
- export interface ImaSpecificationVersionDto {
7806
- version?: number;
7807
- status?: ImaSpecificationStatus;
7808
- }
7809
- export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
7810
- carbon?: ImaSpecificationLineDto | null;
7811
- manganese?: ImaSpecificationLineDto | null;
7812
- silicon?: ImaSpecificationLineDto | null;
7813
- phosphorus?: ImaSpecificationLineDto | null;
7814
- sulfur?: ImaSpecificationLineDto | null;
7815
- chromium?: ImaSpecificationLineDto | null;
7816
- nickel?: ImaSpecificationLineDto | null;
7817
- molybdenum?: ImaSpecificationLineDto | null;
7818
- copper?: ImaSpecificationLineDto | null;
7819
- nitrogen?: ImaSpecificationLineDto | null;
7820
- wolfram?: ImaSpecificationLineDto | null;
7821
- iron?: ImaSpecificationLineDto | null;
7822
- }
7823
- export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
7824
- operator: ImaSpecificationOperator;
7825
- value1: number;
7826
- value2?: number | null;
7827
- symbol: ImaSpecificationSymbol;
7828
- }
7829
- export type ImaSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
7830
- export type ImaSpecificationSymbol = "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw" | "NotSet";
7831
- export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
7832
- yieldStrength?: ImaSpecificationLineDto | null;
7833
- tensileStrength?: ImaSpecificationLineDto | null;
7834
- elongation?: ImaSpecificationLineDto | null;
7835
- reductionOfArea?: ImaSpecificationLineDto | null;
7836
- impactEnergy?: ImaSpecificationLineDto | null;
7837
- hardness?: ImaSpecificationLineDto | null;
7838
- }
7839
- export interface ImaFerriteSpecificationDto extends ImaCdfEntityReadBase {
7840
- ferriteContent?: ImaSpecificationLineDto | null;
7841
- }
7842
- export interface ImaHeatTreatmentSpecificationDto {
7843
- heatTreatments: ImaHeatTreatmentsSpecificationDto[];
7844
- }
7845
- export interface ImaHeatTreatmentsSpecificationDto {
7846
- heatingMethod: ImaHeatingTreatmentMethod;
7847
- heatingTreatmentTemperature?: number | null;
7848
- heatingHoldingTime?: number | null;
7849
- coolingMethods?: ImaCoolingTreatmentMethod[] | null;
7850
- coolingTreatmentTemperature?: number | null;
7851
- coolingHoldingTime?: number | null;
7852
- }
7853
- export interface CreateImaSpecificationDto {
7854
- specificationName: string;
7855
- specificationNumber: string;
7856
- revision: string;
7857
- date: Date;
7858
- specificationFile?: UploadFileDto | null;
7859
- }
7860
- export interface ImaUpdateSpecificationDto {
7861
- name?: string | null;
7862
- number?: string | null;
7863
- status?: ImaSpecificationStatusUpdate | null;
7864
- summary?: string | null;
7865
- relatedStandards?: string[] | null;
7866
- chemistrySpecification?: ImaChemistrySpecificationDto | null;
7867
- mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
7868
- ferriteSpecification?: ImaFerriteSpecificationDto | null;
7869
- heatSpecification?: ImaHeatTreatmentSpecificationDto | null;
7870
- }
7871
- export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
7872
7775
  export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
7873
7776
  certificateTypeId: string;
7874
7777
  version: number;
@@ -8056,6 +7959,118 @@ export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
8056
7959
  microExaminationReport?: boolean | null;
8057
7960
  radiologicalReport?: boolean | null;
8058
7961
  }
7962
+ export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
7963
+ specificationId: string;
7964
+ version: number;
7965
+ name: string;
7966
+ number: string;
7967
+ revision: string;
7968
+ date: Date;
7969
+ status: ImaSpecificationStatus;
7970
+ summary?: string | null;
7971
+ relatedStandards: string[];
7972
+ created: Date;
7973
+ createdBy: string;
7974
+ createdById: string;
7975
+ updatedBy: string;
7976
+ updatedById: string;
7977
+ }
7978
+ export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
7979
+ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
7980
+ specificationId: string;
7981
+ version: number;
7982
+ allVersions: ImaSpecificationVersionDto[];
7983
+ name: string;
7984
+ number: string;
7985
+ revision: string;
7986
+ date: Date;
7987
+ status: ImaSpecificationStatus;
7988
+ summary?: string | null;
7989
+ relatedStandards: string[];
7990
+ created: Date;
7991
+ createdBy: string;
7992
+ createdById: string;
7993
+ updatedBy: string;
7994
+ updatedById: string;
7995
+ updated: Date;
7996
+ chemistrySpecification: ImaChemistrySpecificationDto;
7997
+ mechanicalSpecification: ImaMechanicalSpecificationDto;
7998
+ ferriteSpecification: ImaFerriteSpecificationDto;
7999
+ heatSpecification: ImaHeatTreatmentSpecificationDto;
8000
+ }
8001
+ export interface ImaSpecificationVersionDto {
8002
+ version?: number;
8003
+ status?: ImaSpecificationStatus;
8004
+ }
8005
+ export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
8006
+ carbon?: ImaSpecificationLineDto | null;
8007
+ manganese?: ImaSpecificationLineDto | null;
8008
+ silicon?: ImaSpecificationLineDto | null;
8009
+ phosphorus?: ImaSpecificationLineDto | null;
8010
+ sulfur?: ImaSpecificationLineDto | null;
8011
+ chromium?: ImaSpecificationLineDto | null;
8012
+ nickel?: ImaSpecificationLineDto | null;
8013
+ molybdenum?: ImaSpecificationLineDto | null;
8014
+ copper?: ImaSpecificationLineDto | null;
8015
+ nitrogen?: ImaSpecificationLineDto | null;
8016
+ wolfram?: ImaSpecificationLineDto | null;
8017
+ iron?: ImaSpecificationLineDto | null;
8018
+ }
8019
+ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
8020
+ operator: ImaSpecificationOperator;
8021
+ value1: number;
8022
+ value2?: number | null;
8023
+ symbol: ImaSpecificationSymbol;
8024
+ }
8025
+ export type ImaSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
8026
+ export type ImaSpecificationSymbol = "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw" | "NotSet";
8027
+ export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
8028
+ yieldStrength?: ImaSpecificationLineDto | null;
8029
+ tensileStrength?: ImaSpecificationLineDto | null;
8030
+ elongation?: ImaSpecificationLineDto | null;
8031
+ reductionOfArea?: ImaSpecificationLineDto | null;
8032
+ impactEnergy?: ImaSpecificationLineDto | null;
8033
+ hardness?: ImaSpecificationLineDto | null;
8034
+ }
8035
+ export interface ImaFerriteSpecificationDto extends ImaCdfEntityReadBase {
8036
+ ferriteContent?: ImaSpecificationLineDto | null;
8037
+ }
8038
+ export interface ImaHeatTreatmentSpecificationDto {
8039
+ heatTreatments: ImaHeatTreatmentsSpecificationDto[];
8040
+ }
8041
+ export interface ImaHeatTreatmentsSpecificationDto {
8042
+ heatingMethod: ImaHeatingTreatmentMethod;
8043
+ heatingTreatmentTemperature?: number | null;
8044
+ heatingHoldingTime?: number | null;
8045
+ coolingMethods?: ImaCoolingTreatmentMethod[] | null;
8046
+ coolingTreatmentTemperature?: number | null;
8047
+ coolingHoldingTime?: number | null;
8048
+ }
8049
+ export interface ImaCreateSpecificationRequestDto {
8050
+ specificationName: string;
8051
+ specificationNumber: string;
8052
+ revision: string;
8053
+ date: Date;
8054
+ specificationFile?: UploadFileDto | null;
8055
+ }
8056
+ export interface ImaCopySpecificationRequestDto {
8057
+ specificationName: string;
8058
+ specificationNumber: string;
8059
+ revision: string;
8060
+ date: Date;
8061
+ }
8062
+ export interface ImaUpdateSpecificationDto {
8063
+ name?: string | null;
8064
+ number?: string | null;
8065
+ status?: ImaSpecificationStatusUpdate | null;
8066
+ summary?: string | null;
8067
+ relatedStandards?: string[] | null;
8068
+ chemistrySpecification?: ImaChemistrySpecificationDto | null;
8069
+ mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
8070
+ ferriteSpecification?: ImaFerriteSpecificationDto | null;
8071
+ heatSpecification?: ImaHeatTreatmentSpecificationDto | null;
8072
+ }
8073
+ export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
8059
8074
  export interface MeasurementFormSchemaDto {
8060
8075
  id: string;
8061
8076
  versionId: number;