@ignos/api-client 20240916.0.10383 → 20240917.0.10396
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
CHANGED
|
@@ -9726,10 +9726,11 @@ export declare class PurchaseOrderDetailsDto implements IPurchaseOrderDetailsDto
|
|
|
9726
9726
|
purchaseOrderLine: number;
|
|
9727
9727
|
deliveryDate?: Date | null;
|
|
9728
9728
|
confirmedDeliveryDate?: Date | null;
|
|
9729
|
-
status?:
|
|
9729
|
+
status?: PurchaseOrderStatusDto | null;
|
|
9730
9730
|
orderer?: ErpUserDto | null;
|
|
9731
9731
|
requester?: ErpUserDto | null;
|
|
9732
9732
|
purchasedQuantity: number;
|
|
9733
|
+
unit?: string | null;
|
|
9733
9734
|
constructor(data?: IPurchaseOrderDetailsDto);
|
|
9734
9735
|
init(_data?: any): void;
|
|
9735
9736
|
static fromJS(data: any): PurchaseOrderDetailsDto;
|
|
@@ -9741,11 +9742,13 @@ export interface IPurchaseOrderDetailsDto {
|
|
|
9741
9742
|
purchaseOrderLine: number;
|
|
9742
9743
|
deliveryDate?: Date | null;
|
|
9743
9744
|
confirmedDeliveryDate?: Date | null;
|
|
9744
|
-
status?:
|
|
9745
|
+
status?: PurchaseOrderStatusDto | null;
|
|
9745
9746
|
orderer?: ErpUserDto | null;
|
|
9746
9747
|
requester?: ErpUserDto | null;
|
|
9747
9748
|
purchasedQuantity: number;
|
|
9749
|
+
unit?: string | null;
|
|
9748
9750
|
}
|
|
9751
|
+
export type PurchaseOrderStatusDto = "None" | "Backorder" | "Received" | "Invoiced" | "Canceled";
|
|
9749
9752
|
export declare class ErpUserDto implements IErpUserDto {
|
|
9750
9753
|
azureAdObjectId?: string | null;
|
|
9751
9754
|
name?: string | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -34634,6 +34634,7 @@ export class PurchaseOrderDetailsDto {
|
|
|
34634
34634
|
this.orderer = _data["orderer"] ? ErpUserDto.fromJS(_data["orderer"]) : undefined;
|
|
34635
34635
|
this.requester = _data["requester"] ? ErpUserDto.fromJS(_data["requester"]) : undefined;
|
|
34636
34636
|
this.purchasedQuantity = _data["purchasedQuantity"];
|
|
34637
|
+
this.unit = _data["unit"];
|
|
34637
34638
|
}
|
|
34638
34639
|
}
|
|
34639
34640
|
static fromJS(data) {
|
|
@@ -34653,6 +34654,7 @@ export class PurchaseOrderDetailsDto {
|
|
|
34653
34654
|
data["orderer"] = this.orderer ? this.orderer.toJSON() : undefined;
|
|
34654
34655
|
data["requester"] = this.requester ? this.requester.toJSON() : undefined;
|
|
34655
34656
|
data["purchasedQuantity"] = this.purchasedQuantity;
|
|
34657
|
+
data["unit"] = this.unit;
|
|
34656
34658
|
return data;
|
|
34657
34659
|
}
|
|
34658
34660
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -43329,10 +43329,11 @@ export class PurchaseOrderDetailsDto implements IPurchaseOrderDetailsDto {
|
|
|
43329
43329
|
purchaseOrderLine!: number;
|
|
43330
43330
|
deliveryDate?: Date | null;
|
|
43331
43331
|
confirmedDeliveryDate?: Date | null;
|
|
43332
|
-
status?:
|
|
43332
|
+
status?: PurchaseOrderStatusDto | null;
|
|
43333
43333
|
orderer?: ErpUserDto | null;
|
|
43334
43334
|
requester?: ErpUserDto | null;
|
|
43335
43335
|
purchasedQuantity!: number;
|
|
43336
|
+
unit?: string | null;
|
|
43336
43337
|
|
|
43337
43338
|
constructor(data?: IPurchaseOrderDetailsDto) {
|
|
43338
43339
|
if (data) {
|
|
@@ -43354,6 +43355,7 @@ export class PurchaseOrderDetailsDto implements IPurchaseOrderDetailsDto {
|
|
|
43354
43355
|
this.orderer = _data["orderer"] ? ErpUserDto.fromJS(_data["orderer"]) : <any>undefined;
|
|
43355
43356
|
this.requester = _data["requester"] ? ErpUserDto.fromJS(_data["requester"]) : <any>undefined;
|
|
43356
43357
|
this.purchasedQuantity = _data["purchasedQuantity"];
|
|
43358
|
+
this.unit = _data["unit"];
|
|
43357
43359
|
}
|
|
43358
43360
|
}
|
|
43359
43361
|
|
|
@@ -43375,6 +43377,7 @@ export class PurchaseOrderDetailsDto implements IPurchaseOrderDetailsDto {
|
|
|
43375
43377
|
data["orderer"] = this.orderer ? this.orderer.toJSON() : <any>undefined;
|
|
43376
43378
|
data["requester"] = this.requester ? this.requester.toJSON() : <any>undefined;
|
|
43377
43379
|
data["purchasedQuantity"] = this.purchasedQuantity;
|
|
43380
|
+
data["unit"] = this.unit;
|
|
43378
43381
|
return data;
|
|
43379
43382
|
}
|
|
43380
43383
|
}
|
|
@@ -43385,12 +43388,15 @@ export interface IPurchaseOrderDetailsDto {
|
|
|
43385
43388
|
purchaseOrderLine: number;
|
|
43386
43389
|
deliveryDate?: Date | null;
|
|
43387
43390
|
confirmedDeliveryDate?: Date | null;
|
|
43388
|
-
status?:
|
|
43391
|
+
status?: PurchaseOrderStatusDto | null;
|
|
43389
43392
|
orderer?: ErpUserDto | null;
|
|
43390
43393
|
requester?: ErpUserDto | null;
|
|
43391
43394
|
purchasedQuantity: number;
|
|
43395
|
+
unit?: string | null;
|
|
43392
43396
|
}
|
|
43393
43397
|
|
|
43398
|
+
export type PurchaseOrderStatusDto = "None" | "Backorder" | "Received" | "Invoiced" | "Canceled";
|
|
43399
|
+
|
|
43394
43400
|
export class ErpUserDto implements IErpUserDto {
|
|
43395
43401
|
azureAdObjectId?: string | null;
|
|
43396
43402
|
name?: string | null;
|