@ignos/api-client 20251023.0.12959 → 20251023.0.12976

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.
@@ -10765,6 +10765,7 @@ export declare class ProductionOrderOperationDto implements IProductionOrderOper
10765
10765
  quantity: number;
10766
10766
  startedQuantity?: number | null;
10767
10767
  ongoingQuantity?: number | null;
10768
+ earlierOperationsScrappedQuantity: number;
10768
10769
  availableToStartQuantity: number;
10769
10770
  workInstructions?: string | null;
10770
10771
  note?: string | null;
@@ -10802,6 +10803,7 @@ export interface IProductionOrderOperationDto {
10802
10803
  quantity: number;
10803
10804
  startedQuantity?: number | null;
10804
10805
  ongoingQuantity?: number | null;
10806
+ earlierOperationsScrappedQuantity: number;
10805
10807
  availableToStartQuantity: number;
10806
10808
  workInstructions?: string | null;
10807
10809
  note?: string | null;
@@ -11225,6 +11227,7 @@ export declare class ProductionScheduleOperationDto implements IProductionSchedu
11225
11227
  producedQuantity: number;
11226
11228
  scrappedQuantity: number;
11227
11229
  availableToStartQuantity: number;
11230
+ earlierOperationsScrappedQuantity: number;
11228
11231
  startedQuantity?: number | null;
11229
11232
  ongoingQuantity?: number | null;
11230
11233
  project?: WorkOrderProjectDto | null;
@@ -11279,6 +11282,7 @@ export interface IProductionScheduleOperationDto {
11279
11282
  producedQuantity: number;
11280
11283
  scrappedQuantity: number;
11281
11284
  availableToStartQuantity: number;
11285
+ earlierOperationsScrappedQuantity: number;
11282
11286
  startedQuantity?: number | null;
11283
11287
  ongoingQuantity?: number | null;
11284
11288
  project?: WorkOrderProjectDto | null;
@@ -11325,6 +11329,7 @@ export declare class SurroundingOperationDto implements ISurroundingOperationDto
11325
11329
  resourceDepartmentName?: string | null;
11326
11330
  producedQuantity: number;
11327
11331
  scrappedQuantity: number;
11332
+ earlierOperationsScrappedQuantity: number;
11328
11333
  startedQuantity?: number | null;
11329
11334
  constructor(data?: ISurroundingOperationDto);
11330
11335
  init(_data?: any): void;
@@ -11347,6 +11352,7 @@ export interface ISurroundingOperationDto {
11347
11352
  resourceDepartmentName?: string | null;
11348
11353
  producedQuantity: number;
11349
11354
  scrappedQuantity: number;
11355
+ earlierOperationsScrappedQuantity: number;
11350
11356
  startedQuantity?: number | null;
11351
11357
  }
11352
11358
  export declare class OperationPrerequisitesDto implements IOperationPrerequisitesDto {
@@ -40055,6 +40055,7 @@ export class ProductionOrderOperationDto {
40055
40055
  this.quantity = _data["quantity"];
40056
40056
  this.startedQuantity = _data["startedQuantity"];
40057
40057
  this.ongoingQuantity = _data["ongoingQuantity"];
40058
+ this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
40058
40059
  this.availableToStartQuantity = _data["availableToStartQuantity"];
40059
40060
  this.workInstructions = _data["workInstructions"];
40060
40061
  this.note = _data["note"];
@@ -40096,6 +40097,7 @@ export class ProductionOrderOperationDto {
40096
40097
  data["quantity"] = this.quantity;
40097
40098
  data["startedQuantity"] = this.startedQuantity;
40098
40099
  data["ongoingQuantity"] = this.ongoingQuantity;
40100
+ data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
40099
40101
  data["availableToStartQuantity"] = this.availableToStartQuantity;
40100
40102
  data["workInstructions"] = this.workInstructions;
40101
40103
  data["note"] = this.note;
@@ -40899,6 +40901,7 @@ export class ProductionScheduleOperationDto {
40899
40901
  this.producedQuantity = _data["producedQuantity"];
40900
40902
  this.scrappedQuantity = _data["scrappedQuantity"];
40901
40903
  this.availableToStartQuantity = _data["availableToStartQuantity"];
40904
+ this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
40902
40905
  this.startedQuantity = _data["startedQuantity"];
40903
40906
  this.ongoingQuantity = _data["ongoingQuantity"];
40904
40907
  this.project = _data["project"] ? WorkOrderProjectDto.fromJS(_data["project"]) : undefined;
@@ -40957,6 +40960,7 @@ export class ProductionScheduleOperationDto {
40957
40960
  data["producedQuantity"] = this.producedQuantity;
40958
40961
  data["scrappedQuantity"] = this.scrappedQuantity;
40959
40962
  data["availableToStartQuantity"] = this.availableToStartQuantity;
40963
+ data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
40960
40964
  data["startedQuantity"] = this.startedQuantity;
40961
40965
  data["ongoingQuantity"] = this.ongoingQuantity;
40962
40966
  data["project"] = this.project ? this.project.toJSON() : undefined;
@@ -41015,6 +41019,7 @@ export class SurroundingOperationDto {
41015
41019
  this.resourceDepartmentName = _data["resourceDepartmentName"];
41016
41020
  this.producedQuantity = _data["producedQuantity"];
41017
41021
  this.scrappedQuantity = _data["scrappedQuantity"];
41022
+ this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
41018
41023
  this.startedQuantity = _data["startedQuantity"];
41019
41024
  }
41020
41025
  }
@@ -41041,6 +41046,7 @@ export class SurroundingOperationDto {
41041
41046
  data["resourceDepartmentName"] = this.resourceDepartmentName;
41042
41047
  data["producedQuantity"] = this.producedQuantity;
41043
41048
  data["scrappedQuantity"] = this.scrappedQuantity;
41049
+ data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
41044
41050
  data["startedQuantity"] = this.startedQuantity;
41045
41051
  return data;
41046
41052
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20251023.0.12959",
3
+ "version": "20251023.0.12976",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -49564,6 +49564,7 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
49564
49564
  quantity!: number;
49565
49565
  startedQuantity?: number | null;
49566
49566
  ongoingQuantity?: number | null;
49567
+ earlierOperationsScrappedQuantity!: number;
49567
49568
  availableToStartQuantity!: number;
49568
49569
  workInstructions?: string | null;
49569
49570
  note?: string | null;
@@ -49607,6 +49608,7 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
49607
49608
  this.quantity = _data["quantity"];
49608
49609
  this.startedQuantity = _data["startedQuantity"];
49609
49610
  this.ongoingQuantity = _data["ongoingQuantity"];
49611
+ this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
49610
49612
  this.availableToStartQuantity = _data["availableToStartQuantity"];
49611
49613
  this.workInstructions = _data["workInstructions"];
49612
49614
  this.note = _data["note"];
@@ -49650,6 +49652,7 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
49650
49652
  data["quantity"] = this.quantity;
49651
49653
  data["startedQuantity"] = this.startedQuantity;
49652
49654
  data["ongoingQuantity"] = this.ongoingQuantity;
49655
+ data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
49653
49656
  data["availableToStartQuantity"] = this.availableToStartQuantity;
49654
49657
  data["workInstructions"] = this.workInstructions;
49655
49658
  data["note"] = this.note;
@@ -49686,6 +49689,7 @@ export interface IProductionOrderOperationDto {
49686
49689
  quantity: number;
49687
49690
  startedQuantity?: number | null;
49688
49691
  ongoingQuantity?: number | null;
49692
+ earlierOperationsScrappedQuantity: number;
49689
49693
  availableToStartQuantity: number;
49690
49694
  workInstructions?: string | null;
49691
49695
  note?: string | null;
@@ -50871,6 +50875,7 @@ export class ProductionScheduleOperationDto implements IProductionScheduleOperat
50871
50875
  producedQuantity!: number;
50872
50876
  scrappedQuantity!: number;
50873
50877
  availableToStartQuantity!: number;
50878
+ earlierOperationsScrappedQuantity!: number;
50874
50879
  startedQuantity?: number | null;
50875
50880
  ongoingQuantity?: number | null;
50876
50881
  project?: WorkOrderProjectDto | null;
@@ -50934,6 +50939,7 @@ export class ProductionScheduleOperationDto implements IProductionScheduleOperat
50934
50939
  this.producedQuantity = _data["producedQuantity"];
50935
50940
  this.scrappedQuantity = _data["scrappedQuantity"];
50936
50941
  this.availableToStartQuantity = _data["availableToStartQuantity"];
50942
+ this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
50937
50943
  this.startedQuantity = _data["startedQuantity"];
50938
50944
  this.ongoingQuantity = _data["ongoingQuantity"];
50939
50945
  this.project = _data["project"] ? WorkOrderProjectDto.fromJS(_data["project"]) : undefined as any;
@@ -50994,6 +51000,7 @@ export class ProductionScheduleOperationDto implements IProductionScheduleOperat
50994
51000
  data["producedQuantity"] = this.producedQuantity;
50995
51001
  data["scrappedQuantity"] = this.scrappedQuantity;
50996
51002
  data["availableToStartQuantity"] = this.availableToStartQuantity;
51003
+ data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
50997
51004
  data["startedQuantity"] = this.startedQuantity;
50998
51005
  data["ongoingQuantity"] = this.ongoingQuantity;
50999
51006
  data["project"] = this.project ? this.project.toJSON() : undefined as any;
@@ -51047,6 +51054,7 @@ export interface IProductionScheduleOperationDto {
51047
51054
  producedQuantity: number;
51048
51055
  scrappedQuantity: number;
51049
51056
  availableToStartQuantity: number;
51057
+ earlierOperationsScrappedQuantity: number;
51050
51058
  startedQuantity?: number | null;
51051
51059
  ongoingQuantity?: number | null;
51052
51060
  project?: WorkOrderProjectDto | null;
@@ -51094,6 +51102,7 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
51094
51102
  resourceDepartmentName?: string | null;
51095
51103
  producedQuantity!: number;
51096
51104
  scrappedQuantity!: number;
51105
+ earlierOperationsScrappedQuantity!: number;
51097
51106
  startedQuantity?: number | null;
51098
51107
 
51099
51108
  constructor(data?: ISurroundingOperationDto) {
@@ -51122,6 +51131,7 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
51122
51131
  this.resourceDepartmentName = _data["resourceDepartmentName"];
51123
51132
  this.producedQuantity = _data["producedQuantity"];
51124
51133
  this.scrappedQuantity = _data["scrappedQuantity"];
51134
+ this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
51125
51135
  this.startedQuantity = _data["startedQuantity"];
51126
51136
  }
51127
51137
  }
@@ -51150,6 +51160,7 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
51150
51160
  data["resourceDepartmentName"] = this.resourceDepartmentName;
51151
51161
  data["producedQuantity"] = this.producedQuantity;
51152
51162
  data["scrappedQuantity"] = this.scrappedQuantity;
51163
+ data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
51153
51164
  data["startedQuantity"] = this.startedQuantity;
51154
51165
  return data;
51155
51166
  }
@@ -51171,6 +51182,7 @@ export interface ISurroundingOperationDto {
51171
51182
  resourceDepartmentName?: string | null;
51172
51183
  producedQuantity: number;
51173
51184
  scrappedQuantity: number;
51185
+ earlierOperationsScrappedQuantity: number;
51174
51186
  startedQuantity?: number | null;
51175
51187
  }
51176
51188