@ignos/api-client 20251006.0.12773 → 20251006.0.12774-alpha

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.
@@ -10683,6 +10683,7 @@ export declare class ProductionOrderOperationDto implements IProductionOrderOper
10683
10683
  quantity: number;
10684
10684
  startedQuantity?: number | null;
10685
10685
  ongoingQuantity?: number | null;
10686
+ earlierOperationsScrappedQuantity: number;
10686
10687
  availableToStartQuantity: number;
10687
10688
  workInstructions?: string | null;
10688
10689
  note?: string | null;
@@ -10720,6 +10721,7 @@ export interface IProductionOrderOperationDto {
10720
10721
  quantity: number;
10721
10722
  startedQuantity?: number | null;
10722
10723
  ongoingQuantity?: number | null;
10724
+ earlierOperationsScrappedQuantity: number;
10723
10725
  availableToStartQuantity: number;
10724
10726
  workInstructions?: string | null;
10725
10727
  note?: string | null;
@@ -11143,6 +11145,7 @@ export declare class ProductionScheduleOperationDto implements IProductionSchedu
11143
11145
  producedQuantity: number;
11144
11146
  scrappedQuantity: number;
11145
11147
  availableToStartQuantity: number;
11148
+ earlierOperationsScrappedQuantity: number;
11146
11149
  startedQuantity?: number | null;
11147
11150
  ongoingQuantity?: number | null;
11148
11151
  project?: WorkOrderProjectDto | null;
@@ -11197,6 +11200,7 @@ export interface IProductionScheduleOperationDto {
11197
11200
  producedQuantity: number;
11198
11201
  scrappedQuantity: number;
11199
11202
  availableToStartQuantity: number;
11203
+ earlierOperationsScrappedQuantity: number;
11200
11204
  startedQuantity?: number | null;
11201
11205
  ongoingQuantity?: number | null;
11202
11206
  project?: WorkOrderProjectDto | null;
@@ -11243,6 +11247,7 @@ export declare class SurroundingOperationDto implements ISurroundingOperationDto
11243
11247
  resourceDepartmentName?: string | null;
11244
11248
  producedQuantity: number;
11245
11249
  scrappedQuantity: number;
11250
+ earlierOperationsScrappedQuantity: number;
11246
11251
  startedQuantity?: number | null;
11247
11252
  constructor(data?: ISurroundingOperationDto);
11248
11253
  init(_data?: any): void;
@@ -11265,6 +11270,7 @@ export interface ISurroundingOperationDto {
11265
11270
  resourceDepartmentName?: string | null;
11266
11271
  producedQuantity: number;
11267
11272
  scrappedQuantity: number;
11273
+ earlierOperationsScrappedQuantity: number;
11268
11274
  startedQuantity?: number | null;
11269
11275
  }
11270
11276
  export declare class OperationPrerequisitesDto implements IOperationPrerequisitesDto {
@@ -39767,6 +39767,7 @@ export class ProductionOrderOperationDto {
39767
39767
  this.quantity = _data["quantity"];
39768
39768
  this.startedQuantity = _data["startedQuantity"];
39769
39769
  this.ongoingQuantity = _data["ongoingQuantity"];
39770
+ this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
39770
39771
  this.availableToStartQuantity = _data["availableToStartQuantity"];
39771
39772
  this.workInstructions = _data["workInstructions"];
39772
39773
  this.note = _data["note"];
@@ -39808,6 +39809,7 @@ export class ProductionOrderOperationDto {
39808
39809
  data["quantity"] = this.quantity;
39809
39810
  data["startedQuantity"] = this.startedQuantity;
39810
39811
  data["ongoingQuantity"] = this.ongoingQuantity;
39812
+ data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
39811
39813
  data["availableToStartQuantity"] = this.availableToStartQuantity;
39812
39814
  data["workInstructions"] = this.workInstructions;
39813
39815
  data["note"] = this.note;
@@ -40611,6 +40613,7 @@ export class ProductionScheduleOperationDto {
40611
40613
  this.producedQuantity = _data["producedQuantity"];
40612
40614
  this.scrappedQuantity = _data["scrappedQuantity"];
40613
40615
  this.availableToStartQuantity = _data["availableToStartQuantity"];
40616
+ this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
40614
40617
  this.startedQuantity = _data["startedQuantity"];
40615
40618
  this.ongoingQuantity = _data["ongoingQuantity"];
40616
40619
  this.project = _data["project"] ? WorkOrderProjectDto.fromJS(_data["project"]) : undefined;
@@ -40669,6 +40672,7 @@ export class ProductionScheduleOperationDto {
40669
40672
  data["producedQuantity"] = this.producedQuantity;
40670
40673
  data["scrappedQuantity"] = this.scrappedQuantity;
40671
40674
  data["availableToStartQuantity"] = this.availableToStartQuantity;
40675
+ data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
40672
40676
  data["startedQuantity"] = this.startedQuantity;
40673
40677
  data["ongoingQuantity"] = this.ongoingQuantity;
40674
40678
  data["project"] = this.project ? this.project.toJSON() : undefined;
@@ -40727,6 +40731,7 @@ export class SurroundingOperationDto {
40727
40731
  this.resourceDepartmentName = _data["resourceDepartmentName"];
40728
40732
  this.producedQuantity = _data["producedQuantity"];
40729
40733
  this.scrappedQuantity = _data["scrappedQuantity"];
40734
+ this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
40730
40735
  this.startedQuantity = _data["startedQuantity"];
40731
40736
  }
40732
40737
  }
@@ -40753,6 +40758,7 @@ export class SurroundingOperationDto {
40753
40758
  data["resourceDepartmentName"] = this.resourceDepartmentName;
40754
40759
  data["producedQuantity"] = this.producedQuantity;
40755
40760
  data["scrappedQuantity"] = this.scrappedQuantity;
40761
+ data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
40756
40762
  data["startedQuantity"] = this.startedQuantity;
40757
40763
  return data;
40758
40764
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20251006.0.12773",
3
+ "version": "20251006.0.12774-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -49198,6 +49198,7 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
49198
49198
  quantity!: number;
49199
49199
  startedQuantity?: number | null;
49200
49200
  ongoingQuantity?: number | null;
49201
+ earlierOperationsScrappedQuantity!: number;
49201
49202
  availableToStartQuantity!: number;
49202
49203
  workInstructions?: string | null;
49203
49204
  note?: string | null;
@@ -49241,6 +49242,7 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
49241
49242
  this.quantity = _data["quantity"];
49242
49243
  this.startedQuantity = _data["startedQuantity"];
49243
49244
  this.ongoingQuantity = _data["ongoingQuantity"];
49245
+ this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
49244
49246
  this.availableToStartQuantity = _data["availableToStartQuantity"];
49245
49247
  this.workInstructions = _data["workInstructions"];
49246
49248
  this.note = _data["note"];
@@ -49284,6 +49286,7 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
49284
49286
  data["quantity"] = this.quantity;
49285
49287
  data["startedQuantity"] = this.startedQuantity;
49286
49288
  data["ongoingQuantity"] = this.ongoingQuantity;
49289
+ data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
49287
49290
  data["availableToStartQuantity"] = this.availableToStartQuantity;
49288
49291
  data["workInstructions"] = this.workInstructions;
49289
49292
  data["note"] = this.note;
@@ -49320,6 +49323,7 @@ export interface IProductionOrderOperationDto {
49320
49323
  quantity: number;
49321
49324
  startedQuantity?: number | null;
49322
49325
  ongoingQuantity?: number | null;
49326
+ earlierOperationsScrappedQuantity: number;
49323
49327
  availableToStartQuantity: number;
49324
49328
  workInstructions?: string | null;
49325
49329
  note?: string | null;
@@ -50505,6 +50509,7 @@ export class ProductionScheduleOperationDto implements IProductionScheduleOperat
50505
50509
  producedQuantity!: number;
50506
50510
  scrappedQuantity!: number;
50507
50511
  availableToStartQuantity!: number;
50512
+ earlierOperationsScrappedQuantity!: number;
50508
50513
  startedQuantity?: number | null;
50509
50514
  ongoingQuantity?: number | null;
50510
50515
  project?: WorkOrderProjectDto | null;
@@ -50568,6 +50573,7 @@ export class ProductionScheduleOperationDto implements IProductionScheduleOperat
50568
50573
  this.producedQuantity = _data["producedQuantity"];
50569
50574
  this.scrappedQuantity = _data["scrappedQuantity"];
50570
50575
  this.availableToStartQuantity = _data["availableToStartQuantity"];
50576
+ this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
50571
50577
  this.startedQuantity = _data["startedQuantity"];
50572
50578
  this.ongoingQuantity = _data["ongoingQuantity"];
50573
50579
  this.project = _data["project"] ? WorkOrderProjectDto.fromJS(_data["project"]) : <any>undefined;
@@ -50628,6 +50634,7 @@ export class ProductionScheduleOperationDto implements IProductionScheduleOperat
50628
50634
  data["producedQuantity"] = this.producedQuantity;
50629
50635
  data["scrappedQuantity"] = this.scrappedQuantity;
50630
50636
  data["availableToStartQuantity"] = this.availableToStartQuantity;
50637
+ data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
50631
50638
  data["startedQuantity"] = this.startedQuantity;
50632
50639
  data["ongoingQuantity"] = this.ongoingQuantity;
50633
50640
  data["project"] = this.project ? this.project.toJSON() : <any>undefined;
@@ -50681,6 +50688,7 @@ export interface IProductionScheduleOperationDto {
50681
50688
  producedQuantity: number;
50682
50689
  scrappedQuantity: number;
50683
50690
  availableToStartQuantity: number;
50691
+ earlierOperationsScrappedQuantity: number;
50684
50692
  startedQuantity?: number | null;
50685
50693
  ongoingQuantity?: number | null;
50686
50694
  project?: WorkOrderProjectDto | null;
@@ -50728,6 +50736,7 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
50728
50736
  resourceDepartmentName?: string | null;
50729
50737
  producedQuantity!: number;
50730
50738
  scrappedQuantity!: number;
50739
+ earlierOperationsScrappedQuantity!: number;
50731
50740
  startedQuantity?: number | null;
50732
50741
 
50733
50742
  constructor(data?: ISurroundingOperationDto) {
@@ -50756,6 +50765,7 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
50756
50765
  this.resourceDepartmentName = _data["resourceDepartmentName"];
50757
50766
  this.producedQuantity = _data["producedQuantity"];
50758
50767
  this.scrappedQuantity = _data["scrappedQuantity"];
50768
+ this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
50759
50769
  this.startedQuantity = _data["startedQuantity"];
50760
50770
  }
50761
50771
  }
@@ -50784,6 +50794,7 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
50784
50794
  data["resourceDepartmentName"] = this.resourceDepartmentName;
50785
50795
  data["producedQuantity"] = this.producedQuantity;
50786
50796
  data["scrappedQuantity"] = this.scrappedQuantity;
50797
+ data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
50787
50798
  data["startedQuantity"] = this.startedQuantity;
50788
50799
  return data;
50789
50800
  }
@@ -50805,6 +50816,7 @@ export interface ISurroundingOperationDto {
50805
50816
  resourceDepartmentName?: string | null;
50806
50817
  producedQuantity: number;
50807
50818
  scrappedQuantity: number;
50819
+ earlierOperationsScrappedQuantity: number;
50808
50820
  startedQuantity?: number | null;
50809
50821
  }
50810
50822