@ignos/api-client 20250509.0.11689 → 20250513.0.11700

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.
@@ -10476,6 +10476,7 @@ export declare class ListProductionScheduleOperationsRequest implements IListPro
10476
10476
  bomPartNumber?: string | null;
10477
10477
  bomPartName?: string | null;
10478
10478
  bomPartSearchText?: string | null;
10479
+ orderReference?: string | null;
10479
10480
  workOrderIds?: string[] | null;
10480
10481
  partNumbers?: string[] | null;
10481
10482
  partNames?: string[] | null;
@@ -10486,6 +10487,7 @@ export declare class ListProductionScheduleOperationsRequest implements IListPro
10486
10487
  bomPartNumbers?: string[] | null;
10487
10488
  bomPartNames?: string[] | null;
10488
10489
  bomPartSearchTexts?: string[] | null;
10490
+ orderReferences?: string[] | null;
10489
10491
  availableWork?: boolean | null;
10490
10492
  operationStatuses?: OperationStatusDto[] | null;
10491
10493
  after?: Date | null;
@@ -10509,6 +10511,7 @@ export interface IListProductionScheduleOperationsRequest {
10509
10511
  bomPartNumber?: string | null;
10510
10512
  bomPartName?: string | null;
10511
10513
  bomPartSearchText?: string | null;
10514
+ orderReference?: string | null;
10512
10515
  workOrderIds?: string[] | null;
10513
10516
  partNumbers?: string[] | null;
10514
10517
  partNames?: string[] | null;
@@ -10519,6 +10522,7 @@ export interface IListProductionScheduleOperationsRequest {
10519
10522
  bomPartNumbers?: string[] | null;
10520
10523
  bomPartNames?: string[] | null;
10521
10524
  bomPartSearchTexts?: string[] | null;
10525
+ orderReferences?: string[] | null;
10522
10526
  availableWork?: boolean | null;
10523
10527
  operationStatuses?: OperationStatusDto[] | null;
10524
10528
  after?: Date | null;
@@ -10535,6 +10539,7 @@ export declare class ProductionScheduleFiltersDto implements IProductionSchedule
10535
10539
  bomPartNumbers?: FilterValueWithQuantity[];
10536
10540
  bomPartNames?: FilterValueWithQuantity[];
10537
10541
  bomPartSearchTexts?: FilterValueWithQuantity[];
10542
+ orderReferences?: FilterValueWithQuantity[];
10538
10543
  operationsWithAvailableWork?: number;
10539
10544
  operationStatuses?: OperationStatusFilterWithQuantity[];
10540
10545
  lastOperation?: Date | null;
@@ -10555,6 +10560,7 @@ export interface IProductionScheduleFiltersDto {
10555
10560
  bomPartNumbers?: FilterValueWithQuantity[];
10556
10561
  bomPartNames?: FilterValueWithQuantity[];
10557
10562
  bomPartSearchTexts?: FilterValueWithQuantity[];
10563
+ orderReferences?: FilterValueWithQuantity[];
10558
10564
  operationsWithAvailableWork?: number;
10559
10565
  operationStatuses?: OperationStatusFilterWithQuantity[];
10560
10566
  lastOperation?: Date | null;
@@ -10595,6 +10601,7 @@ export declare class GetAvailableProductionScheduleFiltersRequest implements IGe
10595
10601
  bomPartNumber?: string | null;
10596
10602
  bomPartName?: string | null;
10597
10603
  bomPartSearchText?: string | null;
10604
+ orderReference?: string | null;
10598
10605
  workOrderIds?: string[] | null;
10599
10606
  partNumbers?: string[] | null;
10600
10607
  partNames?: string[] | null;
@@ -10605,6 +10612,7 @@ export declare class GetAvailableProductionScheduleFiltersRequest implements IGe
10605
10612
  bomPartNumbers?: string[] | null;
10606
10613
  bomPartNames?: string[] | null;
10607
10614
  bomPartSearchTexts?: string[] | null;
10615
+ orderReferences?: string[] | null;
10608
10616
  availableWork?: boolean | null;
10609
10617
  operationStatuses?: OperationStatusDto[] | null;
10610
10618
  after?: Date | null;
@@ -10625,6 +10633,7 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
10625
10633
  bomPartNumber?: string | null;
10626
10634
  bomPartName?: string | null;
10627
10635
  bomPartSearchText?: string | null;
10636
+ orderReference?: string | null;
10628
10637
  workOrderIds?: string[] | null;
10629
10638
  partNumbers?: string[] | null;
10630
10639
  partNames?: string[] | null;
@@ -10635,6 +10644,7 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
10635
10644
  bomPartNumbers?: string[] | null;
10636
10645
  bomPartNames?: string[] | null;
10637
10646
  bomPartSearchTexts?: string[] | null;
10647
+ orderReferences?: string[] | null;
10638
10648
  availableWork?: boolean | null;
10639
10649
  operationStatuses?: OperationStatusDto[] | null;
10640
10650
  after?: Date | null;
@@ -37586,6 +37586,7 @@ export class ListProductionScheduleOperationsRequest {
37586
37586
  this.bomPartNumber = _data["bomPartNumber"];
37587
37587
  this.bomPartName = _data["bomPartName"];
37588
37588
  this.bomPartSearchText = _data["bomPartSearchText"];
37589
+ this.orderReference = _data["orderReference"];
37589
37590
  if (Array.isArray(_data["workOrderIds"])) {
37590
37591
  this.workOrderIds = [];
37591
37592
  for (let item of _data["workOrderIds"])
@@ -37636,6 +37637,11 @@ export class ListProductionScheduleOperationsRequest {
37636
37637
  for (let item of _data["bomPartSearchTexts"])
37637
37638
  this.bomPartSearchTexts.push(item);
37638
37639
  }
37640
+ if (Array.isArray(_data["orderReferences"])) {
37641
+ this.orderReferences = [];
37642
+ for (let item of _data["orderReferences"])
37643
+ this.orderReferences.push(item);
37644
+ }
37639
37645
  this.availableWork = _data["availableWork"];
37640
37646
  if (Array.isArray(_data["operationStatuses"])) {
37641
37647
  this.operationStatuses = [];
@@ -37667,6 +37673,7 @@ export class ListProductionScheduleOperationsRequest {
37667
37673
  data["bomPartNumber"] = this.bomPartNumber;
37668
37674
  data["bomPartName"] = this.bomPartName;
37669
37675
  data["bomPartSearchText"] = this.bomPartSearchText;
37676
+ data["orderReference"] = this.orderReference;
37670
37677
  if (Array.isArray(this.workOrderIds)) {
37671
37678
  data["workOrderIds"] = [];
37672
37679
  for (let item of this.workOrderIds)
@@ -37717,6 +37724,11 @@ export class ListProductionScheduleOperationsRequest {
37717
37724
  for (let item of this.bomPartSearchTexts)
37718
37725
  data["bomPartSearchTexts"].push(item);
37719
37726
  }
37727
+ if (Array.isArray(this.orderReferences)) {
37728
+ data["orderReferences"] = [];
37729
+ for (let item of this.orderReferences)
37730
+ data["orderReferences"].push(item);
37731
+ }
37720
37732
  data["availableWork"] = this.availableWork;
37721
37733
  if (Array.isArray(this.operationStatuses)) {
37722
37734
  data["operationStatuses"] = [];
@@ -37789,6 +37801,11 @@ export class ProductionScheduleFiltersDto {
37789
37801
  for (let item of _data["bomPartSearchTexts"])
37790
37802
  this.bomPartSearchTexts.push(FilterValueWithQuantity.fromJS(item));
37791
37803
  }
37804
+ if (Array.isArray(_data["orderReferences"])) {
37805
+ this.orderReferences = [];
37806
+ for (let item of _data["orderReferences"])
37807
+ this.orderReferences.push(FilterValueWithQuantity.fromJS(item));
37808
+ }
37792
37809
  this.operationsWithAvailableWork = _data["operationsWithAvailableWork"];
37793
37810
  if (Array.isArray(_data["operationStatuses"])) {
37794
37811
  this.operationStatuses = [];
@@ -37857,6 +37874,11 @@ export class ProductionScheduleFiltersDto {
37857
37874
  for (let item of this.bomPartSearchTexts)
37858
37875
  data["bomPartSearchTexts"].push(item.toJSON());
37859
37876
  }
37877
+ if (Array.isArray(this.orderReferences)) {
37878
+ data["orderReferences"] = [];
37879
+ for (let item of this.orderReferences)
37880
+ data["orderReferences"].push(item.toJSON());
37881
+ }
37860
37882
  data["operationsWithAvailableWork"] = this.operationsWithAvailableWork;
37861
37883
  if (Array.isArray(this.operationStatuses)) {
37862
37884
  data["operationStatuses"] = [];
@@ -37945,6 +37967,7 @@ export class GetAvailableProductionScheduleFiltersRequest {
37945
37967
  this.bomPartNumber = _data["bomPartNumber"];
37946
37968
  this.bomPartName = _data["bomPartName"];
37947
37969
  this.bomPartSearchText = _data["bomPartSearchText"];
37970
+ this.orderReference = _data["orderReference"];
37948
37971
  if (Array.isArray(_data["workOrderIds"])) {
37949
37972
  this.workOrderIds = [];
37950
37973
  for (let item of _data["workOrderIds"])
@@ -37995,6 +38018,11 @@ export class GetAvailableProductionScheduleFiltersRequest {
37995
38018
  for (let item of _data["bomPartSearchTexts"])
37996
38019
  this.bomPartSearchTexts.push(item);
37997
38020
  }
38021
+ if (Array.isArray(_data["orderReferences"])) {
38022
+ this.orderReferences = [];
38023
+ for (let item of _data["orderReferences"])
38024
+ this.orderReferences.push(item);
38025
+ }
37998
38026
  this.availableWork = _data["availableWork"];
37999
38027
  if (Array.isArray(_data["operationStatuses"])) {
38000
38028
  this.operationStatuses = [];
@@ -38023,6 +38051,7 @@ export class GetAvailableProductionScheduleFiltersRequest {
38023
38051
  data["bomPartNumber"] = this.bomPartNumber;
38024
38052
  data["bomPartName"] = this.bomPartName;
38025
38053
  data["bomPartSearchText"] = this.bomPartSearchText;
38054
+ data["orderReference"] = this.orderReference;
38026
38055
  if (Array.isArray(this.workOrderIds)) {
38027
38056
  data["workOrderIds"] = [];
38028
38057
  for (let item of this.workOrderIds)
@@ -38073,6 +38102,11 @@ export class GetAvailableProductionScheduleFiltersRequest {
38073
38102
  for (let item of this.bomPartSearchTexts)
38074
38103
  data["bomPartSearchTexts"].push(item);
38075
38104
  }
38105
+ if (Array.isArray(this.orderReferences)) {
38106
+ data["orderReferences"] = [];
38107
+ for (let item of this.orderReferences)
38108
+ data["orderReferences"].push(item);
38109
+ }
38076
38110
  data["availableWork"] = this.availableWork;
38077
38111
  if (Array.isArray(this.operationStatuses)) {
38078
38112
  data["operationStatuses"] = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20250509.0.11689",
3
+ "version": "20250513.0.11700",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -46943,6 +46943,7 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
46943
46943
  bomPartNumber?: string | null;
46944
46944
  bomPartName?: string | null;
46945
46945
  bomPartSearchText?: string | null;
46946
+ orderReference?: string | null;
46946
46947
  workOrderIds?: string[] | null;
46947
46948
  partNumbers?: string[] | null;
46948
46949
  partNames?: string[] | null;
@@ -46953,6 +46954,7 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
46953
46954
  bomPartNumbers?: string[] | null;
46954
46955
  bomPartNames?: string[] | null;
46955
46956
  bomPartSearchTexts?: string[] | null;
46957
+ orderReferences?: string[] | null;
46956
46958
  availableWork?: boolean | null;
46957
46959
  operationStatuses?: OperationStatusDto[] | null;
46958
46960
  after?: Date | null;
@@ -46982,6 +46984,7 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
46982
46984
  this.bomPartNumber = _data["bomPartNumber"];
46983
46985
  this.bomPartName = _data["bomPartName"];
46984
46986
  this.bomPartSearchText = _data["bomPartSearchText"];
46987
+ this.orderReference = _data["orderReference"];
46985
46988
  if (Array.isArray(_data["workOrderIds"])) {
46986
46989
  this.workOrderIds = [] as any;
46987
46990
  for (let item of _data["workOrderIds"])
@@ -47032,6 +47035,11 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
47032
47035
  for (let item of _data["bomPartSearchTexts"])
47033
47036
  this.bomPartSearchTexts!.push(item);
47034
47037
  }
47038
+ if (Array.isArray(_data["orderReferences"])) {
47039
+ this.orderReferences = [] as any;
47040
+ for (let item of _data["orderReferences"])
47041
+ this.orderReferences!.push(item);
47042
+ }
47035
47043
  this.availableWork = _data["availableWork"];
47036
47044
  if (Array.isArray(_data["operationStatuses"])) {
47037
47045
  this.operationStatuses = [] as any;
@@ -47065,6 +47073,7 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
47065
47073
  data["bomPartNumber"] = this.bomPartNumber;
47066
47074
  data["bomPartName"] = this.bomPartName;
47067
47075
  data["bomPartSearchText"] = this.bomPartSearchText;
47076
+ data["orderReference"] = this.orderReference;
47068
47077
  if (Array.isArray(this.workOrderIds)) {
47069
47078
  data["workOrderIds"] = [];
47070
47079
  for (let item of this.workOrderIds)
@@ -47115,6 +47124,11 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
47115
47124
  for (let item of this.bomPartSearchTexts)
47116
47125
  data["bomPartSearchTexts"].push(item);
47117
47126
  }
47127
+ if (Array.isArray(this.orderReferences)) {
47128
+ data["orderReferences"] = [];
47129
+ for (let item of this.orderReferences)
47130
+ data["orderReferences"].push(item);
47131
+ }
47118
47132
  data["availableWork"] = this.availableWork;
47119
47133
  if (Array.isArray(this.operationStatuses)) {
47120
47134
  data["operationStatuses"] = [];
@@ -47141,6 +47155,7 @@ export interface IListProductionScheduleOperationsRequest {
47141
47155
  bomPartNumber?: string | null;
47142
47156
  bomPartName?: string | null;
47143
47157
  bomPartSearchText?: string | null;
47158
+ orderReference?: string | null;
47144
47159
  workOrderIds?: string[] | null;
47145
47160
  partNumbers?: string[] | null;
47146
47161
  partNames?: string[] | null;
@@ -47151,6 +47166,7 @@ export interface IListProductionScheduleOperationsRequest {
47151
47166
  bomPartNumbers?: string[] | null;
47152
47167
  bomPartNames?: string[] | null;
47153
47168
  bomPartSearchTexts?: string[] | null;
47169
+ orderReferences?: string[] | null;
47154
47170
  availableWork?: boolean | null;
47155
47171
  operationStatuses?: OperationStatusDto[] | null;
47156
47172
  after?: Date | null;
@@ -47168,6 +47184,7 @@ export class ProductionScheduleFiltersDto implements IProductionScheduleFiltersD
47168
47184
  bomPartNumbers?: FilterValueWithQuantity[];
47169
47185
  bomPartNames?: FilterValueWithQuantity[];
47170
47186
  bomPartSearchTexts?: FilterValueWithQuantity[];
47187
+ orderReferences?: FilterValueWithQuantity[];
47171
47188
  operationsWithAvailableWork?: number;
47172
47189
  operationStatuses?: OperationStatusFilterWithQuantity[];
47173
47190
  lastOperation?: Date | null;
@@ -47234,6 +47251,11 @@ export class ProductionScheduleFiltersDto implements IProductionScheduleFiltersD
47234
47251
  for (let item of _data["bomPartSearchTexts"])
47235
47252
  this.bomPartSearchTexts!.push(FilterValueWithQuantity.fromJS(item));
47236
47253
  }
47254
+ if (Array.isArray(_data["orderReferences"])) {
47255
+ this.orderReferences = [] as any;
47256
+ for (let item of _data["orderReferences"])
47257
+ this.orderReferences!.push(FilterValueWithQuantity.fromJS(item));
47258
+ }
47237
47259
  this.operationsWithAvailableWork = _data["operationsWithAvailableWork"];
47238
47260
  if (Array.isArray(_data["operationStatuses"])) {
47239
47261
  this.operationStatuses = [] as any;
@@ -47304,6 +47326,11 @@ export class ProductionScheduleFiltersDto implements IProductionScheduleFiltersD
47304
47326
  for (let item of this.bomPartSearchTexts)
47305
47327
  data["bomPartSearchTexts"].push(item.toJSON());
47306
47328
  }
47329
+ if (Array.isArray(this.orderReferences)) {
47330
+ data["orderReferences"] = [];
47331
+ for (let item of this.orderReferences)
47332
+ data["orderReferences"].push(item.toJSON());
47333
+ }
47307
47334
  data["operationsWithAvailableWork"] = this.operationsWithAvailableWork;
47308
47335
  if (Array.isArray(this.operationStatuses)) {
47309
47336
  data["operationStatuses"] = [];
@@ -47327,6 +47354,7 @@ export interface IProductionScheduleFiltersDto {
47327
47354
  bomPartNumbers?: FilterValueWithQuantity[];
47328
47355
  bomPartNames?: FilterValueWithQuantity[];
47329
47356
  bomPartSearchTexts?: FilterValueWithQuantity[];
47357
+ orderReferences?: FilterValueWithQuantity[];
47330
47358
  operationsWithAvailableWork?: number;
47331
47359
  operationStatuses?: OperationStatusFilterWithQuantity[];
47332
47360
  lastOperation?: Date | null;
@@ -47424,6 +47452,7 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
47424
47452
  bomPartNumber?: string | null;
47425
47453
  bomPartName?: string | null;
47426
47454
  bomPartSearchText?: string | null;
47455
+ orderReference?: string | null;
47427
47456
  workOrderIds?: string[] | null;
47428
47457
  partNumbers?: string[] | null;
47429
47458
  partNames?: string[] | null;
@@ -47434,6 +47463,7 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
47434
47463
  bomPartNumbers?: string[] | null;
47435
47464
  bomPartNames?: string[] | null;
47436
47465
  bomPartSearchTexts?: string[] | null;
47466
+ orderReferences?: string[] | null;
47437
47467
  availableWork?: boolean | null;
47438
47468
  operationStatuses?: OperationStatusDto[] | null;
47439
47469
  after?: Date | null;
@@ -47460,6 +47490,7 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
47460
47490
  this.bomPartNumber = _data["bomPartNumber"];
47461
47491
  this.bomPartName = _data["bomPartName"];
47462
47492
  this.bomPartSearchText = _data["bomPartSearchText"];
47493
+ this.orderReference = _data["orderReference"];
47463
47494
  if (Array.isArray(_data["workOrderIds"])) {
47464
47495
  this.workOrderIds = [] as any;
47465
47496
  for (let item of _data["workOrderIds"])
@@ -47510,6 +47541,11 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
47510
47541
  for (let item of _data["bomPartSearchTexts"])
47511
47542
  this.bomPartSearchTexts!.push(item);
47512
47543
  }
47544
+ if (Array.isArray(_data["orderReferences"])) {
47545
+ this.orderReferences = [] as any;
47546
+ for (let item of _data["orderReferences"])
47547
+ this.orderReferences!.push(item);
47548
+ }
47513
47549
  this.availableWork = _data["availableWork"];
47514
47550
  if (Array.isArray(_data["operationStatuses"])) {
47515
47551
  this.operationStatuses = [] as any;
@@ -47540,6 +47576,7 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
47540
47576
  data["bomPartNumber"] = this.bomPartNumber;
47541
47577
  data["bomPartName"] = this.bomPartName;
47542
47578
  data["bomPartSearchText"] = this.bomPartSearchText;
47579
+ data["orderReference"] = this.orderReference;
47543
47580
  if (Array.isArray(this.workOrderIds)) {
47544
47581
  data["workOrderIds"] = [];
47545
47582
  for (let item of this.workOrderIds)
@@ -47590,6 +47627,11 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
47590
47627
  for (let item of this.bomPartSearchTexts)
47591
47628
  data["bomPartSearchTexts"].push(item);
47592
47629
  }
47630
+ if (Array.isArray(this.orderReferences)) {
47631
+ data["orderReferences"] = [];
47632
+ for (let item of this.orderReferences)
47633
+ data["orderReferences"].push(item);
47634
+ }
47593
47635
  data["availableWork"] = this.availableWork;
47594
47636
  if (Array.isArray(this.operationStatuses)) {
47595
47637
  data["operationStatuses"] = [];
@@ -47613,6 +47655,7 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
47613
47655
  bomPartNumber?: string | null;
47614
47656
  bomPartName?: string | null;
47615
47657
  bomPartSearchText?: string | null;
47658
+ orderReference?: string | null;
47616
47659
  workOrderIds?: string[] | null;
47617
47660
  partNumbers?: string[] | null;
47618
47661
  partNames?: string[] | null;
@@ -47623,6 +47666,7 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
47623
47666
  bomPartNumbers?: string[] | null;
47624
47667
  bomPartNames?: string[] | null;
47625
47668
  bomPartSearchTexts?: string[] | null;
47669
+ orderReferences?: string[] | null;
47626
47670
  availableWork?: boolean | null;
47627
47671
  operationStatuses?: OperationStatusDto[] | null;
47628
47672
  after?: Date | null;