@ignos/api-client 20240318.0.8990 → 20240318.0.8999

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.
@@ -7260,9 +7260,9 @@ export interface IProductionOrderDto {
7260
7260
  orderReference?: OrderReferenceDto | null;
7261
7261
  }
7262
7262
  export declare class ProductionOrderOperationDto implements IProductionOrderOperationDto {
7263
- operation?: number;
7263
+ operation: number;
7264
7264
  nextOperation?: number | null;
7265
- operationId?: string;
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?: number;
7298
+ operation: number;
7298
7299
  nextOperation?: number | null;
7299
- operationId?: string;
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;
@@ -7709,7 +7711,7 @@ export declare class SurroundingOperationDto implements ISurroundingOperationDto
7709
7711
  id: string;
7710
7712
  operation: number;
7711
7713
  operationName: string;
7712
- plannedStart: Date;
7714
+ plannedStart?: Date | null;
7713
7715
  plannedEnd?: Date | null;
7714
7716
  actualStart?: Date | null;
7715
7717
  actualEnd?: Date | null;
@@ -7729,7 +7731,7 @@ export interface ISurroundingOperationDto {
7729
7731
  id: string;
7730
7732
  operation: number;
7731
7733
  operationName: string;
7732
- plannedStart: Date;
7734
+ plannedStart?: Date | null;
7733
7735
  plannedEnd?: Date | null;
7734
7736
  actualStart?: Date | null;
7735
7737
  actualEnd?: Date | null;
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240318.0.8990",
3
+ "version": "20240318.0.8999",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -33863,9 +33863,9 @@ export interface IProductionOrderDto {
33863
33863
  }
33864
33864
 
33865
33865
  export class ProductionOrderOperationDto implements IProductionOrderOperationDto {
33866
- operation?: number;
33866
+ operation!: number;
33867
33867
  nextOperation?: number | null;
33868
- operationId?: string;
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?: number;
33982
+ operation: number;
33980
33983
  nextOperation?: number | null;
33981
- operationId?: string;
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;
@@ -35077,7 +35081,7 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
35077
35081
  id!: string;
35078
35082
  operation!: number;
35079
35083
  operationName!: string;
35080
- plannedStart!: Date;
35084
+ plannedStart?: Date | null;
35081
35085
  plannedEnd?: Date | null;
35082
35086
  actualStart?: Date | null;
35083
35087
  actualEnd?: Date | null;
@@ -35148,7 +35152,7 @@ export interface ISurroundingOperationDto {
35148
35152
  id: string;
35149
35153
  operation: number;
35150
35154
  operationName: string;
35151
- plannedStart: Date;
35155
+ plannedStart?: Date | null;
35152
35156
  plannedEnd?: Date | null;
35153
35157
  actualStart?: Date | null;
35154
35158
  actualEnd?: Date | null;