@ignos/api-client 20251023.0.12956-alpha → 20251023.0.12959

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.
@@ -8840,6 +8840,8 @@ export declare class ListFixtures implements IListFixtures {
8840
8840
  partNameFilter?: FixtureStringFilterDto | null;
8841
8841
  partNumberFilter?: FixtureStringFilterDto | null;
8842
8842
  customerFilter?: FixtureStringFilterDto | null;
8843
+ sortColumn?: FixtureSortColumn | null;
8844
+ sortOrder?: FixtureSortOrder | null;
8843
8845
  continuationToken?: string | null;
8844
8846
  constructor(data?: IListFixtures);
8845
8847
  init(_data?: any): void;
@@ -8873,6 +8875,8 @@ export interface IListFixtures {
8873
8875
  partNameFilter?: FixtureStringFilterDto | null;
8874
8876
  partNumberFilter?: FixtureStringFilterDto | null;
8875
8877
  customerFilter?: FixtureStringFilterDto | null;
8878
+ sortColumn?: FixtureSortColumn | null;
8879
+ sortOrder?: FixtureSortOrder | null;
8876
8880
  continuationToken?: string | null;
8877
8881
  }
8878
8882
  export type FixtureDeletedDto = "NotDeleted" | "Deleted";
@@ -8917,6 +8921,8 @@ export interface IFixtureDecimalFilterDto {
8917
8921
  term2?: number | null;
8918
8922
  }
8919
8923
  export type FixtureDecimalFilterCriteriaDto = "Equals" | "NotEquals" | "GreaterThan" | "GreaterThanEquals" | "LessThan" | "LessThanEquals" | "Empty" | "Between";
8924
+ export type FixtureSortColumn = "Name" | "Diameter" | "OuterDiameter" | "InnerDiameter" | "Depth" | "GripSide" | "Location" | "Interface" | "TotalLength" | "SourceMachine" | "LastUsed" | "Created";
8925
+ export type FixtureSortOrder = "Ascending" | "Descending";
8920
8926
  export declare class FixtureCreateDto implements IFixtureCreateDto {
8921
8927
  name?: string | null;
8922
8928
  fixtureGroupId?: string | null;
@@ -10759,7 +10765,6 @@ export declare class ProductionOrderOperationDto implements IProductionOrderOper
10759
10765
  quantity: number;
10760
10766
  startedQuantity?: number | null;
10761
10767
  ongoingQuantity?: number | null;
10762
- earlierOperationsScrappedQuantity: number;
10763
10768
  availableToStartQuantity: number;
10764
10769
  workInstructions?: string | null;
10765
10770
  note?: string | null;
@@ -10797,7 +10802,6 @@ export interface IProductionOrderOperationDto {
10797
10802
  quantity: number;
10798
10803
  startedQuantity?: number | null;
10799
10804
  ongoingQuantity?: number | null;
10800
- earlierOperationsScrappedQuantity: number;
10801
10805
  availableToStartQuantity: number;
10802
10806
  workInstructions?: string | null;
10803
10807
  note?: string | null;
@@ -11221,7 +11225,6 @@ export declare class ProductionScheduleOperationDto implements IProductionSchedu
11221
11225
  producedQuantity: number;
11222
11226
  scrappedQuantity: number;
11223
11227
  availableToStartQuantity: number;
11224
- earlierOperationsScrappedQuantity: number;
11225
11228
  startedQuantity?: number | null;
11226
11229
  ongoingQuantity?: number | null;
11227
11230
  project?: WorkOrderProjectDto | null;
@@ -11276,7 +11279,6 @@ export interface IProductionScheduleOperationDto {
11276
11279
  producedQuantity: number;
11277
11280
  scrappedQuantity: number;
11278
11281
  availableToStartQuantity: number;
11279
- earlierOperationsScrappedQuantity: number;
11280
11282
  startedQuantity?: number | null;
11281
11283
  ongoingQuantity?: number | null;
11282
11284
  project?: WorkOrderProjectDto | null;
@@ -11323,7 +11325,6 @@ export declare class SurroundingOperationDto implements ISurroundingOperationDto
11323
11325
  resourceDepartmentName?: string | null;
11324
11326
  producedQuantity: number;
11325
11327
  scrappedQuantity: number;
11326
- earlierOperationsScrappedQuantity: number;
11327
11328
  startedQuantity?: number | null;
11328
11329
  constructor(data?: ISurroundingOperationDto);
11329
11330
  init(_data?: any): void;
@@ -11346,7 +11347,6 @@ export interface ISurroundingOperationDto {
11346
11347
  resourceDepartmentName?: string | null;
11347
11348
  producedQuantity: number;
11348
11349
  scrappedQuantity: number;
11349
- earlierOperationsScrappedQuantity: number;
11350
11350
  startedQuantity?: number | null;
11351
11351
  }
11352
11352
  export declare class OperationPrerequisitesDto implements IOperationPrerequisitesDto {
@@ -35890,6 +35890,8 @@ export class ListFixtures {
35890
35890
  this.partNameFilter = _data["partNameFilter"] ? FixtureStringFilterDto.fromJS(_data["partNameFilter"]) : undefined;
35891
35891
  this.partNumberFilter = _data["partNumberFilter"] ? FixtureStringFilterDto.fromJS(_data["partNumberFilter"]) : undefined;
35892
35892
  this.customerFilter = _data["customerFilter"] ? FixtureStringFilterDto.fromJS(_data["customerFilter"]) : undefined;
35893
+ this.sortColumn = _data["sortColumn"];
35894
+ this.sortOrder = _data["sortOrder"];
35893
35895
  this.continuationToken = _data["continuationToken"];
35894
35896
  }
35895
35897
  }
@@ -35939,6 +35941,8 @@ export class ListFixtures {
35939
35941
  data["partNameFilter"] = this.partNameFilter ? this.partNameFilter.toJSON() : undefined;
35940
35942
  data["partNumberFilter"] = this.partNumberFilter ? this.partNumberFilter.toJSON() : undefined;
35941
35943
  data["customerFilter"] = this.customerFilter ? this.customerFilter.toJSON() : undefined;
35944
+ data["sortColumn"] = this.sortColumn;
35945
+ data["sortOrder"] = this.sortOrder;
35942
35946
  data["continuationToken"] = this.continuationToken;
35943
35947
  return data;
35944
35948
  }
@@ -40051,7 +40055,6 @@ export class ProductionOrderOperationDto {
40051
40055
  this.quantity = _data["quantity"];
40052
40056
  this.startedQuantity = _data["startedQuantity"];
40053
40057
  this.ongoingQuantity = _data["ongoingQuantity"];
40054
- this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
40055
40058
  this.availableToStartQuantity = _data["availableToStartQuantity"];
40056
40059
  this.workInstructions = _data["workInstructions"];
40057
40060
  this.note = _data["note"];
@@ -40093,7 +40096,6 @@ export class ProductionOrderOperationDto {
40093
40096
  data["quantity"] = this.quantity;
40094
40097
  data["startedQuantity"] = this.startedQuantity;
40095
40098
  data["ongoingQuantity"] = this.ongoingQuantity;
40096
- data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
40097
40099
  data["availableToStartQuantity"] = this.availableToStartQuantity;
40098
40100
  data["workInstructions"] = this.workInstructions;
40099
40101
  data["note"] = this.note;
@@ -40897,7 +40899,6 @@ export class ProductionScheduleOperationDto {
40897
40899
  this.producedQuantity = _data["producedQuantity"];
40898
40900
  this.scrappedQuantity = _data["scrappedQuantity"];
40899
40901
  this.availableToStartQuantity = _data["availableToStartQuantity"];
40900
- this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
40901
40902
  this.startedQuantity = _data["startedQuantity"];
40902
40903
  this.ongoingQuantity = _data["ongoingQuantity"];
40903
40904
  this.project = _data["project"] ? WorkOrderProjectDto.fromJS(_data["project"]) : undefined;
@@ -40956,7 +40957,6 @@ export class ProductionScheduleOperationDto {
40956
40957
  data["producedQuantity"] = this.producedQuantity;
40957
40958
  data["scrappedQuantity"] = this.scrappedQuantity;
40958
40959
  data["availableToStartQuantity"] = this.availableToStartQuantity;
40959
- data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
40960
40960
  data["startedQuantity"] = this.startedQuantity;
40961
40961
  data["ongoingQuantity"] = this.ongoingQuantity;
40962
40962
  data["project"] = this.project ? this.project.toJSON() : undefined;
@@ -41015,7 +41015,6 @@ export class SurroundingOperationDto {
41015
41015
  this.resourceDepartmentName = _data["resourceDepartmentName"];
41016
41016
  this.producedQuantity = _data["producedQuantity"];
41017
41017
  this.scrappedQuantity = _data["scrappedQuantity"];
41018
- this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
41019
41018
  this.startedQuantity = _data["startedQuantity"];
41020
41019
  }
41021
41020
  }
@@ -41042,7 +41041,6 @@ export class SurroundingOperationDto {
41042
41041
  data["resourceDepartmentName"] = this.resourceDepartmentName;
41043
41042
  data["producedQuantity"] = this.producedQuantity;
41044
41043
  data["scrappedQuantity"] = this.scrappedQuantity;
41045
- data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
41046
41044
  data["startedQuantity"] = this.startedQuantity;
41047
41045
  return data;
41048
41046
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20251023.0.12956-alpha",
3
+ "version": "20251023.0.12959",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -43459,6 +43459,8 @@ export class ListFixtures implements IListFixtures {
43459
43459
  partNameFilter?: FixtureStringFilterDto | null;
43460
43460
  partNumberFilter?: FixtureStringFilterDto | null;
43461
43461
  customerFilter?: FixtureStringFilterDto | null;
43462
+ sortColumn?: FixtureSortColumn | null;
43463
+ sortOrder?: FixtureSortOrder | null;
43462
43464
  continuationToken?: string | null;
43463
43465
 
43464
43466
  constructor(data?: IListFixtures) {
@@ -43510,6 +43512,8 @@ export class ListFixtures implements IListFixtures {
43510
43512
  this.partNameFilter = _data["partNameFilter"] ? FixtureStringFilterDto.fromJS(_data["partNameFilter"]) : undefined as any;
43511
43513
  this.partNumberFilter = _data["partNumberFilter"] ? FixtureStringFilterDto.fromJS(_data["partNumberFilter"]) : undefined as any;
43512
43514
  this.customerFilter = _data["customerFilter"] ? FixtureStringFilterDto.fromJS(_data["customerFilter"]) : undefined as any;
43515
+ this.sortColumn = _data["sortColumn"];
43516
+ this.sortOrder = _data["sortOrder"];
43513
43517
  this.continuationToken = _data["continuationToken"];
43514
43518
  }
43515
43519
  }
@@ -43561,6 +43565,8 @@ export class ListFixtures implements IListFixtures {
43561
43565
  data["partNameFilter"] = this.partNameFilter ? this.partNameFilter.toJSON() : undefined as any;
43562
43566
  data["partNumberFilter"] = this.partNumberFilter ? this.partNumberFilter.toJSON() : undefined as any;
43563
43567
  data["customerFilter"] = this.customerFilter ? this.customerFilter.toJSON() : undefined as any;
43568
+ data["sortColumn"] = this.sortColumn;
43569
+ data["sortOrder"] = this.sortOrder;
43564
43570
  data["continuationToken"] = this.continuationToken;
43565
43571
  return data;
43566
43572
  }
@@ -43593,6 +43599,8 @@ export interface IListFixtures {
43593
43599
  partNameFilter?: FixtureStringFilterDto | null;
43594
43600
  partNumberFilter?: FixtureStringFilterDto | null;
43595
43601
  customerFilter?: FixtureStringFilterDto | null;
43602
+ sortColumn?: FixtureSortColumn | null;
43603
+ sortOrder?: FixtureSortOrder | null;
43596
43604
  continuationToken?: string | null;
43597
43605
  }
43598
43606
 
@@ -43728,6 +43736,10 @@ export interface IFixtureDecimalFilterDto {
43728
43736
 
43729
43737
  export type FixtureDecimalFilterCriteriaDto = "Equals" | "NotEquals" | "GreaterThan" | "GreaterThanEquals" | "LessThan" | "LessThanEquals" | "Empty" | "Between";
43730
43738
 
43739
+ export type FixtureSortColumn = "Name" | "Diameter" | "OuterDiameter" | "InnerDiameter" | "Depth" | "GripSide" | "Location" | "Interface" | "TotalLength" | "SourceMachine" | "LastUsed" | "Created";
43740
+
43741
+ export type FixtureSortOrder = "Ascending" | "Descending";
43742
+
43731
43743
  export class FixtureCreateDto implements IFixtureCreateDto {
43732
43744
  name?: string | null;
43733
43745
  fixtureGroupId?: string | null;
@@ -49552,7 +49564,6 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
49552
49564
  quantity!: number;
49553
49565
  startedQuantity?: number | null;
49554
49566
  ongoingQuantity?: number | null;
49555
- earlierOperationsScrappedQuantity!: number;
49556
49567
  availableToStartQuantity!: number;
49557
49568
  workInstructions?: string | null;
49558
49569
  note?: string | null;
@@ -49596,7 +49607,6 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
49596
49607
  this.quantity = _data["quantity"];
49597
49608
  this.startedQuantity = _data["startedQuantity"];
49598
49609
  this.ongoingQuantity = _data["ongoingQuantity"];
49599
- this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
49600
49610
  this.availableToStartQuantity = _data["availableToStartQuantity"];
49601
49611
  this.workInstructions = _data["workInstructions"];
49602
49612
  this.note = _data["note"];
@@ -49640,7 +49650,6 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
49640
49650
  data["quantity"] = this.quantity;
49641
49651
  data["startedQuantity"] = this.startedQuantity;
49642
49652
  data["ongoingQuantity"] = this.ongoingQuantity;
49643
- data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
49644
49653
  data["availableToStartQuantity"] = this.availableToStartQuantity;
49645
49654
  data["workInstructions"] = this.workInstructions;
49646
49655
  data["note"] = this.note;
@@ -49677,7 +49686,6 @@ export interface IProductionOrderOperationDto {
49677
49686
  quantity: number;
49678
49687
  startedQuantity?: number | null;
49679
49688
  ongoingQuantity?: number | null;
49680
- earlierOperationsScrappedQuantity: number;
49681
49689
  availableToStartQuantity: number;
49682
49690
  workInstructions?: string | null;
49683
49691
  note?: string | null;
@@ -50863,7 +50871,6 @@ export class ProductionScheduleOperationDto implements IProductionScheduleOperat
50863
50871
  producedQuantity!: number;
50864
50872
  scrappedQuantity!: number;
50865
50873
  availableToStartQuantity!: number;
50866
- earlierOperationsScrappedQuantity!: number;
50867
50874
  startedQuantity?: number | null;
50868
50875
  ongoingQuantity?: number | null;
50869
50876
  project?: WorkOrderProjectDto | null;
@@ -50927,7 +50934,6 @@ export class ProductionScheduleOperationDto implements IProductionScheduleOperat
50927
50934
  this.producedQuantity = _data["producedQuantity"];
50928
50935
  this.scrappedQuantity = _data["scrappedQuantity"];
50929
50936
  this.availableToStartQuantity = _data["availableToStartQuantity"];
50930
- this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
50931
50937
  this.startedQuantity = _data["startedQuantity"];
50932
50938
  this.ongoingQuantity = _data["ongoingQuantity"];
50933
50939
  this.project = _data["project"] ? WorkOrderProjectDto.fromJS(_data["project"]) : undefined as any;
@@ -50988,7 +50994,6 @@ export class ProductionScheduleOperationDto implements IProductionScheduleOperat
50988
50994
  data["producedQuantity"] = this.producedQuantity;
50989
50995
  data["scrappedQuantity"] = this.scrappedQuantity;
50990
50996
  data["availableToStartQuantity"] = this.availableToStartQuantity;
50991
- data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
50992
50997
  data["startedQuantity"] = this.startedQuantity;
50993
50998
  data["ongoingQuantity"] = this.ongoingQuantity;
50994
50999
  data["project"] = this.project ? this.project.toJSON() : undefined as any;
@@ -51042,7 +51047,6 @@ export interface IProductionScheduleOperationDto {
51042
51047
  producedQuantity: number;
51043
51048
  scrappedQuantity: number;
51044
51049
  availableToStartQuantity: number;
51045
- earlierOperationsScrappedQuantity: number;
51046
51050
  startedQuantity?: number | null;
51047
51051
  ongoingQuantity?: number | null;
51048
51052
  project?: WorkOrderProjectDto | null;
@@ -51090,7 +51094,6 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
51090
51094
  resourceDepartmentName?: string | null;
51091
51095
  producedQuantity!: number;
51092
51096
  scrappedQuantity!: number;
51093
- earlierOperationsScrappedQuantity!: number;
51094
51097
  startedQuantity?: number | null;
51095
51098
 
51096
51099
  constructor(data?: ISurroundingOperationDto) {
@@ -51119,7 +51122,6 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
51119
51122
  this.resourceDepartmentName = _data["resourceDepartmentName"];
51120
51123
  this.producedQuantity = _data["producedQuantity"];
51121
51124
  this.scrappedQuantity = _data["scrappedQuantity"];
51122
- this.earlierOperationsScrappedQuantity = _data["earlierOperationsScrappedQuantity"];
51123
51125
  this.startedQuantity = _data["startedQuantity"];
51124
51126
  }
51125
51127
  }
@@ -51148,7 +51150,6 @@ export class SurroundingOperationDto implements ISurroundingOperationDto {
51148
51150
  data["resourceDepartmentName"] = this.resourceDepartmentName;
51149
51151
  data["producedQuantity"] = this.producedQuantity;
51150
51152
  data["scrappedQuantity"] = this.scrappedQuantity;
51151
- data["earlierOperationsScrappedQuantity"] = this.earlierOperationsScrappedQuantity;
51152
51153
  data["startedQuantity"] = this.startedQuantity;
51153
51154
  return data;
51154
51155
  }
@@ -51170,7 +51171,6 @@ export interface ISurroundingOperationDto {
51170
51171
  resourceDepartmentName?: string | null;
51171
51172
  producedQuantity: number;
51172
51173
  scrappedQuantity: number;
51173
- earlierOperationsScrappedQuantity: number;
51174
51174
  startedQuantity?: number | null;
51175
51175
  }
51176
51176