@ignos/api-client 20260410.103.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.
- package/lib/ignosportal-api.d.ts +10 -9
- package/package.json +1 -1
- package/src/ignosportal-api.ts +10 -9
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2583,7 +2583,7 @@ export interface IInspectMatchCertificateChecksClient {
|
|
|
2583
2583
|
listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
|
|
2584
2584
|
getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
2585
2585
|
deleteMaterialCheck(id: string): Promise<void>;
|
|
2586
|
-
processMaterialCertificate(certificatesRequest:
|
|
2586
|
+
processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
|
|
2587
2587
|
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2588
2588
|
}
|
|
2589
2589
|
export declare class InspectMatchCertificateChecksClient extends AuthorizedApiBase implements IInspectMatchCertificateChecksClient {
|
|
@@ -2598,7 +2598,7 @@ export declare class InspectMatchCertificateChecksClient extends AuthorizedApiBa
|
|
|
2598
2598
|
protected processGetMaterialCertificateCheck(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2599
2599
|
deleteMaterialCheck(id: string): Promise<void>;
|
|
2600
2600
|
protected processDeleteMaterialCheck(response: Response): Promise<void>;
|
|
2601
|
-
processMaterialCertificate(certificatesRequest:
|
|
2601
|
+
processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
|
|
2602
2602
|
protected processProcessMaterialCertificate(response: Response): Promise<void>;
|
|
2603
2603
|
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2604
2604
|
protected processUpdateMaterialCertificate(response: Response): Promise<ImaMaterialCheckDto>;
|
|
@@ -7652,7 +7652,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
7652
7652
|
specificationVersion: number;
|
|
7653
7653
|
specificationName: string;
|
|
7654
7654
|
purchaseOrder?: string | null;
|
|
7655
|
-
purchaseOrderLine?:
|
|
7655
|
+
purchaseOrderLine?: number | null;
|
|
7656
7656
|
purchaseOrderItem?: string | null;
|
|
7657
7657
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
7658
7658
|
purchaseOrderLot?: string | null;
|
|
@@ -7664,7 +7664,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
7664
7664
|
updatedById?: string | null;
|
|
7665
7665
|
isDeleted?: boolean;
|
|
7666
7666
|
}
|
|
7667
|
-
export type ImaMaterialCheckStatus = "
|
|
7667
|
+
export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
|
|
7668
7668
|
export interface ImaMaterialChecksPageRequestDto {
|
|
7669
7669
|
pageSize?: number | null;
|
|
7670
7670
|
orderBy?: ImaMaterialChecksOrderByColumn | null;
|
|
@@ -7700,7 +7700,7 @@ export interface ImaMaterialCheckDto {
|
|
|
7700
7700
|
specificationVersion: number;
|
|
7701
7701
|
specificationName: string;
|
|
7702
7702
|
purchaseOrder?: string | null;
|
|
7703
|
-
purchaseOrderLine?:
|
|
7703
|
+
purchaseOrderLine?: number | null;
|
|
7704
7704
|
purchaseOrderItem?: string | null;
|
|
7705
7705
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
7706
7706
|
purchaseOrderLot?: string | null;
|
|
@@ -7859,13 +7859,14 @@ export interface ImaSpecificationHeatTreatmentHeatingResult {
|
|
|
7859
7859
|
temperature?: ImaSpecificationResultLineDto | null;
|
|
7860
7860
|
duration?: ImaSpecificationResultLineDto | null;
|
|
7861
7861
|
}
|
|
7862
|
-
export interface
|
|
7862
|
+
export interface ProcessMaterialCertificate {
|
|
7863
7863
|
files: UploadFileCdfDto[];
|
|
7864
7864
|
specificationId: string;
|
|
7865
|
-
specificationVersion:
|
|
7865
|
+
specificationVersion: number;
|
|
7866
7866
|
certificateTypeId?: string | null;
|
|
7867
|
-
certificateTypeVersion?:
|
|
7867
|
+
certificateTypeVersion?: number | null;
|
|
7868
7868
|
purchaseOrder?: string | null;
|
|
7869
|
+
purchaseOrderLine?: number | null;
|
|
7869
7870
|
}
|
|
7870
7871
|
export interface UploadFileCdfDto {
|
|
7871
7872
|
id: number;
|
|
@@ -8263,7 +8264,7 @@ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
|
8263
8264
|
value2?: number | null;
|
|
8264
8265
|
unit: ImaSpecificationUnit;
|
|
8265
8266
|
}
|
|
8266
|
-
export type ImaSpecificationOperator = "
|
|
8267
|
+
export type ImaSpecificationOperator = "Min" | "Max" | "Between" | "NotSet";
|
|
8267
8268
|
export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
8268
8269
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8269
8270
|
tensileStrength?: ImaSpecificationLineDto | null;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -22574,7 +22574,7 @@ export interface IInspectMatchCertificateChecksClient {
|
|
|
22574
22574
|
|
|
22575
22575
|
deleteMaterialCheck(id: string): Promise<void>;
|
|
22576
22576
|
|
|
22577
|
-
processMaterialCertificate(certificatesRequest:
|
|
22577
|
+
processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
|
|
22578
22578
|
|
|
22579
22579
|
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
22580
22580
|
}
|
|
@@ -22701,7 +22701,7 @@ export class InspectMatchCertificateChecksClient extends AuthorizedApiBase imple
|
|
|
22701
22701
|
return Promise.resolve<void>(null as any);
|
|
22702
22702
|
}
|
|
22703
22703
|
|
|
22704
|
-
processMaterialCertificate(certificatesRequest:
|
|
22704
|
+
processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void> {
|
|
22705
22705
|
let url_ = this.baseUrl + "/inspect/match/material-checks";
|
|
22706
22706
|
url_ = url_.replace(/[?&]$/, "");
|
|
22707
22707
|
|
|
@@ -34463,7 +34463,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
34463
34463
|
specificationVersion: number;
|
|
34464
34464
|
specificationName: string;
|
|
34465
34465
|
purchaseOrder?: string | null;
|
|
34466
|
-
purchaseOrderLine?:
|
|
34466
|
+
purchaseOrderLine?: number | null;
|
|
34467
34467
|
purchaseOrderItem?: string | null;
|
|
34468
34468
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
34469
34469
|
purchaseOrderLot?: string | null;
|
|
@@ -34476,7 +34476,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
34476
34476
|
isDeleted?: boolean;
|
|
34477
34477
|
}
|
|
34478
34478
|
|
|
34479
|
-
export type ImaMaterialCheckStatus = "
|
|
34479
|
+
export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
|
|
34480
34480
|
|
|
34481
34481
|
export interface ImaMaterialChecksPageRequestDto {
|
|
34482
34482
|
pageSize?: number | null;
|
|
@@ -34515,7 +34515,7 @@ export interface ImaMaterialCheckDto {
|
|
|
34515
34515
|
specificationVersion: number;
|
|
34516
34516
|
specificationName: string;
|
|
34517
34517
|
purchaseOrder?: string | null;
|
|
34518
|
-
purchaseOrderLine?:
|
|
34518
|
+
purchaseOrderLine?: number | null;
|
|
34519
34519
|
purchaseOrderItem?: string | null;
|
|
34520
34520
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
34521
34521
|
purchaseOrderLot?: string | null;
|
|
@@ -34696,13 +34696,14 @@ export interface ImaSpecificationHeatTreatmentHeatingResult {
|
|
|
34696
34696
|
duration?: ImaSpecificationResultLineDto | null;
|
|
34697
34697
|
}
|
|
34698
34698
|
|
|
34699
|
-
export interface
|
|
34699
|
+
export interface ProcessMaterialCertificate {
|
|
34700
34700
|
files: UploadFileCdfDto[];
|
|
34701
34701
|
specificationId: string;
|
|
34702
|
-
specificationVersion:
|
|
34702
|
+
specificationVersion: number;
|
|
34703
34703
|
certificateTypeId?: string | null;
|
|
34704
|
-
certificateTypeVersion?:
|
|
34704
|
+
certificateTypeVersion?: number | null;
|
|
34705
34705
|
purchaseOrder?: string | null;
|
|
34706
|
+
purchaseOrderLine?: number | null;
|
|
34706
34707
|
}
|
|
34707
34708
|
|
|
34708
34709
|
export interface UploadFileCdfDto {
|
|
@@ -35153,7 +35154,7 @@ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
|
35153
35154
|
unit: ImaSpecificationUnit;
|
|
35154
35155
|
}
|
|
35155
35156
|
|
|
35156
|
-
export type ImaSpecificationOperator = "
|
|
35157
|
+
export type ImaSpecificationOperator = "Min" | "Max" | "Between" | "NotSet";
|
|
35157
35158
|
|
|
35158
35159
|
export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
35159
35160
|
yieldStrength?: ImaSpecificationLineDto | null;
|