@ignos/api-client 20260907.261.1 → 20260908.263.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 +9 -4
- package/package.json +1 -1
- package/src/ignosportal-api.ts +10 -4
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -8460,7 +8460,7 @@ export interface ImaMaterialCheckDto {
|
|
|
8460
8460
|
specificationStatus: ImaSpecificationStatusDto;
|
|
8461
8461
|
purchaseOrder?: string | null;
|
|
8462
8462
|
purchaseOrderLine?: number | null;
|
|
8463
|
-
|
|
8463
|
+
purchaseOrderBatches?: PurchaseOrderMaterialBatchDto[] | null;
|
|
8464
8464
|
purchaseOrderPartName?: string | null;
|
|
8465
8465
|
purchaseOrderPartNumber?: string | null;
|
|
8466
8466
|
purchaseOrderPartRevision?: string | null;
|
|
@@ -8480,6 +8480,11 @@ export interface ImaMaterialCheckDto {
|
|
|
8480
8480
|
specificationResults: ImaSpecificationResultsDto;
|
|
8481
8481
|
}
|
|
8482
8482
|
export type ImaSpecificationStatusDto = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8483
|
+
export interface PurchaseOrderMaterialBatchDto {
|
|
8484
|
+
batchNumber: string;
|
|
8485
|
+
itemNumber?: string | null;
|
|
8486
|
+
vendorBatch?: string | null;
|
|
8487
|
+
}
|
|
8483
8488
|
export type ImaMaterialCheckStatusDto = "Processing" | "Draft" | "Approved" | "Rejected" | "Failed" | "NotSet";
|
|
8484
8489
|
export interface ImaCertificateTypeResultsDto {
|
|
8485
8490
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
@@ -8974,7 +8979,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8974
8979
|
specificationStatus: ImaSpecificationStatusDto;
|
|
8975
8980
|
purchaseOrder?: string | null;
|
|
8976
8981
|
purchaseOrderLine?: number | null;
|
|
8977
|
-
|
|
8982
|
+
purchaseOrderBatches?: PurchaseOrderMaterialBatchDto[] | null;
|
|
8978
8983
|
purchaseOrderPartName?: string | null;
|
|
8979
8984
|
purchaseOrderPartNumber?: string | null;
|
|
8980
8985
|
purchaseOrderPartRevision?: string | null;
|
|
@@ -9005,7 +9010,7 @@ export interface ImaMaterialChecksPageRequestDto {
|
|
|
9005
9010
|
certificateTypeFilter?: string | null;
|
|
9006
9011
|
purchaseOrderLineFilter?: number | null;
|
|
9007
9012
|
heatFilter?: string | null;
|
|
9008
|
-
vendorBatchesFilter?: string
|
|
9013
|
+
vendorBatchesFilter?: string | null;
|
|
9009
9014
|
purchaseOrderPartNameFilter?: string | null;
|
|
9010
9015
|
purchaseOrderPartNumberFilter?: string | null;
|
|
9011
9016
|
purchaseOrderDrawingFilter?: string | null;
|
|
@@ -9064,7 +9069,7 @@ export interface PurchaseOrderMaterialLineDetailsDto {
|
|
|
9064
9069
|
purchaseOrder: string;
|
|
9065
9070
|
lineNumber?: number | null;
|
|
9066
9071
|
dimension?: string | null;
|
|
9067
|
-
|
|
9072
|
+
batches: PurchaseOrderMaterialBatchDto[];
|
|
9068
9073
|
mdsCodeFl?: string | null;
|
|
9069
9074
|
typeOfCertificate?: string | null;
|
|
9070
9075
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -37651,7 +37651,7 @@ export interface ImaMaterialCheckDto {
|
|
|
37651
37651
|
specificationStatus: ImaSpecificationStatusDto;
|
|
37652
37652
|
purchaseOrder?: string | null;
|
|
37653
37653
|
purchaseOrderLine?: number | null;
|
|
37654
|
-
|
|
37654
|
+
purchaseOrderBatches?: PurchaseOrderMaterialBatchDto[] | null;
|
|
37655
37655
|
purchaseOrderPartName?: string | null;
|
|
37656
37656
|
purchaseOrderPartNumber?: string | null;
|
|
37657
37657
|
purchaseOrderPartRevision?: string | null;
|
|
@@ -37673,6 +37673,12 @@ export interface ImaMaterialCheckDto {
|
|
|
37673
37673
|
|
|
37674
37674
|
export type ImaSpecificationStatusDto = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
37675
37675
|
|
|
37676
|
+
export interface PurchaseOrderMaterialBatchDto {
|
|
37677
|
+
batchNumber: string;
|
|
37678
|
+
itemNumber?: string | null;
|
|
37679
|
+
vendorBatch?: string | null;
|
|
37680
|
+
}
|
|
37681
|
+
|
|
37676
37682
|
export type ImaMaterialCheckStatusDto = "Processing" | "Draft" | "Approved" | "Rejected" | "Failed" | "NotSet";
|
|
37677
37683
|
|
|
37678
37684
|
export interface ImaCertificateTypeResultsDto {
|
|
@@ -38231,7 +38237,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
38231
38237
|
specificationStatus: ImaSpecificationStatusDto;
|
|
38232
38238
|
purchaseOrder?: string | null;
|
|
38233
38239
|
purchaseOrderLine?: number | null;
|
|
38234
|
-
|
|
38240
|
+
purchaseOrderBatches?: PurchaseOrderMaterialBatchDto[] | null;
|
|
38235
38241
|
purchaseOrderPartName?: string | null;
|
|
38236
38242
|
purchaseOrderPartNumber?: string | null;
|
|
38237
38243
|
purchaseOrderPartRevision?: string | null;
|
|
@@ -38263,7 +38269,7 @@ export interface ImaMaterialChecksPageRequestDto {
|
|
|
38263
38269
|
certificateTypeFilter?: string | null;
|
|
38264
38270
|
purchaseOrderLineFilter?: number | null;
|
|
38265
38271
|
heatFilter?: string | null;
|
|
38266
|
-
vendorBatchesFilter?: string
|
|
38272
|
+
vendorBatchesFilter?: string | null;
|
|
38267
38273
|
purchaseOrderPartNameFilter?: string | null;
|
|
38268
38274
|
purchaseOrderPartNumberFilter?: string | null;
|
|
38269
38275
|
purchaseOrderDrawingFilter?: string | null;
|
|
@@ -38333,7 +38339,7 @@ export interface PurchaseOrderMaterialLineDetailsDto {
|
|
|
38333
38339
|
purchaseOrder: string;
|
|
38334
38340
|
lineNumber?: number | null;
|
|
38335
38341
|
dimension?: string | null;
|
|
38336
|
-
|
|
38342
|
+
batches: PurchaseOrderMaterialBatchDto[];
|
|
38337
38343
|
mdsCodeFl?: string | null;
|
|
38338
38344
|
typeOfCertificate?: string | null;
|
|
38339
38345
|
}
|