@ignos/api-client 20240318.0.8990 → 20240318.0.8996
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
|
@@ -7260,9 +7260,9 @@ export interface IProductionOrderDto {
|
|
|
7260
7260
|
orderReference?: OrderReferenceDto | null;
|
|
7261
7261
|
}
|
|
7262
7262
|
export declare class ProductionOrderOperationDto implements IProductionOrderOperationDto {
|
|
7263
|
-
operation
|
|
7263
|
+
operation: number;
|
|
7264
7264
|
nextOperation?: number | null;
|
|
7265
|
-
operationId
|
|
7265
|
+
operationId: string;
|
|
7266
7266
|
description?: string;
|
|
7267
7267
|
totalPlannedHours?: number;
|
|
7268
7268
|
totalUsedHours?: number;
|
|
@@ -7282,6 +7282,7 @@ export declare class ProductionOrderOperationDto implements IProductionOrderOper
|
|
|
7282
7282
|
quantity: number;
|
|
7283
7283
|
startedQuantity?: number | null;
|
|
7284
7284
|
ongoingQuantity?: number | null;
|
|
7285
|
+
availableToStartQuantity: number;
|
|
7285
7286
|
workInstructions?: string | null;
|
|
7286
7287
|
note?: string | null;
|
|
7287
7288
|
fixture?: string | null;
|
|
@@ -7294,9 +7295,9 @@ export declare class ProductionOrderOperationDto implements IProductionOrderOper
|
|
|
7294
7295
|
toJSON(data?: any): any;
|
|
7295
7296
|
}
|
|
7296
7297
|
export interface IProductionOrderOperationDto {
|
|
7297
|
-
operation
|
|
7298
|
+
operation: number;
|
|
7298
7299
|
nextOperation?: number | null;
|
|
7299
|
-
operationId
|
|
7300
|
+
operationId: string;
|
|
7300
7301
|
description?: string;
|
|
7301
7302
|
totalPlannedHours?: number;
|
|
7302
7303
|
totalUsedHours?: number;
|
|
@@ -7316,6 +7317,7 @@ export interface IProductionOrderOperationDto {
|
|
|
7316
7317
|
quantity: number;
|
|
7317
7318
|
startedQuantity?: number | null;
|
|
7318
7319
|
ongoingQuantity?: number | null;
|
|
7320
|
+
availableToStartQuantity: number;
|
|
7319
7321
|
workInstructions?: string | null;
|
|
7320
7322
|
note?: string | null;
|
|
7321
7323
|
fixture?: string | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -27542,6 +27542,7 @@ export class ProductionOrderOperationDto {
|
|
|
27542
27542
|
this.quantity = _data["quantity"];
|
|
27543
27543
|
this.startedQuantity = _data["startedQuantity"];
|
|
27544
27544
|
this.ongoingQuantity = _data["ongoingQuantity"];
|
|
27545
|
+
this.availableToStartQuantity = _data["availableToStartQuantity"];
|
|
27545
27546
|
this.workInstructions = _data["workInstructions"];
|
|
27546
27547
|
this.note = _data["note"];
|
|
27547
27548
|
this.fixture = _data["fixture"];
|
|
@@ -27580,6 +27581,7 @@ export class ProductionOrderOperationDto {
|
|
|
27580
27581
|
data["quantity"] = this.quantity;
|
|
27581
27582
|
data["startedQuantity"] = this.startedQuantity;
|
|
27582
27583
|
data["ongoingQuantity"] = this.ongoingQuantity;
|
|
27584
|
+
data["availableToStartQuantity"] = this.availableToStartQuantity;
|
|
27583
27585
|
data["workInstructions"] = this.workInstructions;
|
|
27584
27586
|
data["note"] = this.note;
|
|
27585
27587
|
data["fixture"] = this.fixture;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -33863,9 +33863,9 @@ export interface IProductionOrderDto {
|
|
|
33863
33863
|
}
|
|
33864
33864
|
|
|
33865
33865
|
export class ProductionOrderOperationDto implements IProductionOrderOperationDto {
|
|
33866
|
-
operation
|
|
33866
|
+
operation!: number;
|
|
33867
33867
|
nextOperation?: number | null;
|
|
33868
|
-
operationId
|
|
33868
|
+
operationId!: string;
|
|
33869
33869
|
description?: string;
|
|
33870
33870
|
totalPlannedHours?: number;
|
|
33871
33871
|
totalUsedHours?: number;
|
|
@@ -33885,6 +33885,7 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
|
|
|
33885
33885
|
quantity!: number;
|
|
33886
33886
|
startedQuantity?: number | null;
|
|
33887
33887
|
ongoingQuantity?: number | null;
|
|
33888
|
+
availableToStartQuantity!: number;
|
|
33888
33889
|
workInstructions?: string | null;
|
|
33889
33890
|
note?: string | null;
|
|
33890
33891
|
fixture?: string | null;
|
|
@@ -33925,6 +33926,7 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
|
|
|
33925
33926
|
this.quantity = _data["quantity"];
|
|
33926
33927
|
this.startedQuantity = _data["startedQuantity"];
|
|
33927
33928
|
this.ongoingQuantity = _data["ongoingQuantity"];
|
|
33929
|
+
this.availableToStartQuantity = _data["availableToStartQuantity"];
|
|
33928
33930
|
this.workInstructions = _data["workInstructions"];
|
|
33929
33931
|
this.note = _data["note"];
|
|
33930
33932
|
this.fixture = _data["fixture"];
|
|
@@ -33965,6 +33967,7 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
|
|
|
33965
33967
|
data["quantity"] = this.quantity;
|
|
33966
33968
|
data["startedQuantity"] = this.startedQuantity;
|
|
33967
33969
|
data["ongoingQuantity"] = this.ongoingQuantity;
|
|
33970
|
+
data["availableToStartQuantity"] = this.availableToStartQuantity;
|
|
33968
33971
|
data["workInstructions"] = this.workInstructions;
|
|
33969
33972
|
data["note"] = this.note;
|
|
33970
33973
|
data["fixture"] = this.fixture;
|
|
@@ -33976,9 +33979,9 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
|
|
|
33976
33979
|
}
|
|
33977
33980
|
|
|
33978
33981
|
export interface IProductionOrderOperationDto {
|
|
33979
|
-
operation
|
|
33982
|
+
operation: number;
|
|
33980
33983
|
nextOperation?: number | null;
|
|
33981
|
-
operationId
|
|
33984
|
+
operationId: string;
|
|
33982
33985
|
description?: string;
|
|
33983
33986
|
totalPlannedHours?: number;
|
|
33984
33987
|
totalUsedHours?: number;
|
|
@@ -33998,6 +34001,7 @@ export interface IProductionOrderOperationDto {
|
|
|
33998
34001
|
quantity: number;
|
|
33999
34002
|
startedQuantity?: number | null;
|
|
34000
34003
|
ongoingQuantity?: number | null;
|
|
34004
|
+
availableToStartQuantity: number;
|
|
34001
34005
|
workInstructions?: string | null;
|
|
34002
34006
|
note?: string | null;
|
|
34003
34007
|
fixture?: string | null;
|