@ignos/api-client 20240909.0.10285 → 20240910.0.10290

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.
@@ -9262,6 +9262,7 @@ export declare class ListProductionScheduleOperationsRequest implements IListPro
9262
9262
  material?: string | null;
9263
9263
  bomPartNumber?: string | null;
9264
9264
  bomPartName?: string | null;
9265
+ bomPartSearchText?: string | null;
9265
9266
  workOrderIds?: string[] | null;
9266
9267
  partNumbers?: string[] | null;
9267
9268
  partNames?: string[] | null;
@@ -9271,6 +9272,7 @@ export declare class ListProductionScheduleOperationsRequest implements IListPro
9271
9272
  descriptions?: string[] | null;
9272
9273
  bomPartNumbers?: string[] | null;
9273
9274
  bomPartNames?: string[] | null;
9275
+ bomPartSearchTexts?: string[] | null;
9274
9276
  availableWork?: boolean | null;
9275
9277
  operationStatuses?: OperationStatusDto[] | null;
9276
9278
  after?: Date | null;
@@ -9292,6 +9294,7 @@ export interface IListProductionScheduleOperationsRequest {
9292
9294
  material?: string | null;
9293
9295
  bomPartNumber?: string | null;
9294
9296
  bomPartName?: string | null;
9297
+ bomPartSearchText?: string | null;
9295
9298
  workOrderIds?: string[] | null;
9296
9299
  partNumbers?: string[] | null;
9297
9300
  partNames?: string[] | null;
@@ -9301,6 +9304,7 @@ export interface IListProductionScheduleOperationsRequest {
9301
9304
  descriptions?: string[] | null;
9302
9305
  bomPartNumbers?: string[] | null;
9303
9306
  bomPartNames?: string[] | null;
9307
+ bomPartSearchTexts?: string[] | null;
9304
9308
  availableWork?: boolean | null;
9305
9309
  operationStatuses?: OperationStatusDto[] | null;
9306
9310
  after?: Date | null;
@@ -9316,6 +9320,7 @@ export declare class ProductionScheduleFiltersDto implements IProductionSchedule
9316
9320
  descriptions?: FilterValueWithQuantity[];
9317
9321
  bomPartNumbers?: FilterValueWithQuantity[];
9318
9322
  bomPartNames?: FilterValueWithQuantity[];
9323
+ bomPartSearchTexts?: FilterValueWithQuantity[];
9319
9324
  operationsWithAvailableWork?: number;
9320
9325
  operationStatuses?: OperationStatusFilterWithQuantity[];
9321
9326
  lastOperation?: Date | null;
@@ -9335,6 +9340,7 @@ export interface IProductionScheduleFiltersDto {
9335
9340
  descriptions?: FilterValueWithQuantity[];
9336
9341
  bomPartNumbers?: FilterValueWithQuantity[];
9337
9342
  bomPartNames?: FilterValueWithQuantity[];
9343
+ bomPartSearchTexts?: FilterValueWithQuantity[];
9338
9344
  operationsWithAvailableWork?: number;
9339
9345
  operationStatuses?: OperationStatusFilterWithQuantity[];
9340
9346
  lastOperation?: Date | null;
@@ -9374,6 +9380,7 @@ export declare class GetAvailableProductionScheduleFiltersRequest implements IGe
9374
9380
  material?: string | null;
9375
9381
  bomPartNumber?: string | null;
9376
9382
  bomPartName?: string | null;
9383
+ bomPartSearchText?: string | null;
9377
9384
  workOrderIds?: string[] | null;
9378
9385
  partNumbers?: string[] | null;
9379
9386
  partNames?: string[] | null;
@@ -9383,6 +9390,7 @@ export declare class GetAvailableProductionScheduleFiltersRequest implements IGe
9383
9390
  descriptions?: string[] | null;
9384
9391
  bomPartNumbers?: string[] | null;
9385
9392
  bomPartNames?: string[] | null;
9393
+ bomPartSearchTexts?: string[] | null;
9386
9394
  availableWork?: boolean | null;
9387
9395
  operationStatuses?: OperationStatusDto[] | null;
9388
9396
  after?: Date | null;
@@ -9402,6 +9410,7 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
9402
9410
  material?: string | null;
9403
9411
  bomPartNumber?: string | null;
9404
9412
  bomPartName?: string | null;
9413
+ bomPartSearchText?: string | null;
9405
9414
  workOrderIds?: string[] | null;
9406
9415
  partNumbers?: string[] | null;
9407
9416
  partNames?: string[] | null;
@@ -9411,6 +9420,7 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
9411
9420
  descriptions?: string[] | null;
9412
9421
  bomPartNumbers?: string[] | null;
9413
9422
  bomPartNames?: string[] | null;
9423
+ bomPartSearchTexts?: string[] | null;
9414
9424
  availableWork?: boolean | null;
9415
9425
  operationStatuses?: OperationStatusDto[] | null;
9416
9426
  after?: Date | null;
@@ -33491,6 +33491,7 @@ export class ListProductionScheduleOperationsRequest {
33491
33491
  this.material = _data["material"];
33492
33492
  this.bomPartNumber = _data["bomPartNumber"];
33493
33493
  this.bomPartName = _data["bomPartName"];
33494
+ this.bomPartSearchText = _data["bomPartSearchText"];
33494
33495
  if (Array.isArray(_data["workOrderIds"])) {
33495
33496
  this.workOrderIds = [];
33496
33497
  for (let item of _data["workOrderIds"])
@@ -33536,6 +33537,11 @@ export class ListProductionScheduleOperationsRequest {
33536
33537
  for (let item of _data["bomPartNames"])
33537
33538
  this.bomPartNames.push(item);
33538
33539
  }
33540
+ if (Array.isArray(_data["bomPartSearchTexts"])) {
33541
+ this.bomPartSearchTexts = [];
33542
+ for (let item of _data["bomPartSearchTexts"])
33543
+ this.bomPartSearchTexts.push(item);
33544
+ }
33539
33545
  this.availableWork = _data["availableWork"];
33540
33546
  if (Array.isArray(_data["operationStatuses"])) {
33541
33547
  this.operationStatuses = [];
@@ -33565,6 +33571,7 @@ export class ListProductionScheduleOperationsRequest {
33565
33571
  data["material"] = this.material;
33566
33572
  data["bomPartNumber"] = this.bomPartNumber;
33567
33573
  data["bomPartName"] = this.bomPartName;
33574
+ data["bomPartSearchText"] = this.bomPartSearchText;
33568
33575
  if (Array.isArray(this.workOrderIds)) {
33569
33576
  data["workOrderIds"] = [];
33570
33577
  for (let item of this.workOrderIds)
@@ -33610,6 +33617,11 @@ export class ListProductionScheduleOperationsRequest {
33610
33617
  for (let item of this.bomPartNames)
33611
33618
  data["bomPartNames"].push(item);
33612
33619
  }
33620
+ if (Array.isArray(this.bomPartSearchTexts)) {
33621
+ data["bomPartSearchTexts"] = [];
33622
+ for (let item of this.bomPartSearchTexts)
33623
+ data["bomPartSearchTexts"].push(item);
33624
+ }
33613
33625
  data["availableWork"] = this.availableWork;
33614
33626
  if (Array.isArray(this.operationStatuses)) {
33615
33627
  data["operationStatuses"] = [];
@@ -33677,6 +33689,11 @@ export class ProductionScheduleFiltersDto {
33677
33689
  for (let item of _data["bomPartNames"])
33678
33690
  this.bomPartNames.push(FilterValueWithQuantity.fromJS(item));
33679
33691
  }
33692
+ if (Array.isArray(_data["bomPartSearchTexts"])) {
33693
+ this.bomPartSearchTexts = [];
33694
+ for (let item of _data["bomPartSearchTexts"])
33695
+ this.bomPartSearchTexts.push(FilterValueWithQuantity.fromJS(item));
33696
+ }
33680
33697
  this.operationsWithAvailableWork = _data["operationsWithAvailableWork"];
33681
33698
  if (Array.isArray(_data["operationStatuses"])) {
33682
33699
  this.operationStatuses = [];
@@ -33740,6 +33757,11 @@ export class ProductionScheduleFiltersDto {
33740
33757
  for (let item of this.bomPartNames)
33741
33758
  data["bomPartNames"].push(item.toJSON());
33742
33759
  }
33760
+ if (Array.isArray(this.bomPartSearchTexts)) {
33761
+ data["bomPartSearchTexts"] = [];
33762
+ for (let item of this.bomPartSearchTexts)
33763
+ data["bomPartSearchTexts"].push(item.toJSON());
33764
+ }
33743
33765
  data["operationsWithAvailableWork"] = this.operationsWithAvailableWork;
33744
33766
  if (Array.isArray(this.operationStatuses)) {
33745
33767
  data["operationStatuses"] = [];
@@ -33827,6 +33849,7 @@ export class GetAvailableProductionScheduleFiltersRequest {
33827
33849
  this.material = _data["material"];
33828
33850
  this.bomPartNumber = _data["bomPartNumber"];
33829
33851
  this.bomPartName = _data["bomPartName"];
33852
+ this.bomPartSearchText = _data["bomPartSearchText"];
33830
33853
  if (Array.isArray(_data["workOrderIds"])) {
33831
33854
  this.workOrderIds = [];
33832
33855
  for (let item of _data["workOrderIds"])
@@ -33872,6 +33895,11 @@ export class GetAvailableProductionScheduleFiltersRequest {
33872
33895
  for (let item of _data["bomPartNames"])
33873
33896
  this.bomPartNames.push(item);
33874
33897
  }
33898
+ if (Array.isArray(_data["bomPartSearchTexts"])) {
33899
+ this.bomPartSearchTexts = [];
33900
+ for (let item of _data["bomPartSearchTexts"])
33901
+ this.bomPartSearchTexts.push(item);
33902
+ }
33875
33903
  this.availableWork = _data["availableWork"];
33876
33904
  if (Array.isArray(_data["operationStatuses"])) {
33877
33905
  this.operationStatuses = [];
@@ -33899,6 +33927,7 @@ export class GetAvailableProductionScheduleFiltersRequest {
33899
33927
  data["material"] = this.material;
33900
33928
  data["bomPartNumber"] = this.bomPartNumber;
33901
33929
  data["bomPartName"] = this.bomPartName;
33930
+ data["bomPartSearchText"] = this.bomPartSearchText;
33902
33931
  if (Array.isArray(this.workOrderIds)) {
33903
33932
  data["workOrderIds"] = [];
33904
33933
  for (let item of this.workOrderIds)
@@ -33944,6 +33973,11 @@ export class GetAvailableProductionScheduleFiltersRequest {
33944
33973
  for (let item of this.bomPartNames)
33945
33974
  data["bomPartNames"].push(item);
33946
33975
  }
33976
+ if (Array.isArray(this.bomPartSearchTexts)) {
33977
+ data["bomPartSearchTexts"] = [];
33978
+ for (let item of this.bomPartSearchTexts)
33979
+ data["bomPartSearchTexts"].push(item);
33980
+ }
33947
33981
  data["availableWork"] = this.availableWork;
33948
33982
  if (Array.isArray(this.operationStatuses)) {
33949
33983
  data["operationStatuses"] = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240909.0.10285",
3
+ "version": "20240910.0.10290",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -41723,6 +41723,7 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41723
41723
  material?: string | null;
41724
41724
  bomPartNumber?: string | null;
41725
41725
  bomPartName?: string | null;
41726
+ bomPartSearchText?: string | null;
41726
41727
  workOrderIds?: string[] | null;
41727
41728
  partNumbers?: string[] | null;
41728
41729
  partNames?: string[] | null;
@@ -41732,6 +41733,7 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41732
41733
  descriptions?: string[] | null;
41733
41734
  bomPartNumbers?: string[] | null;
41734
41735
  bomPartNames?: string[] | null;
41736
+ bomPartSearchTexts?: string[] | null;
41735
41737
  availableWork?: boolean | null;
41736
41738
  operationStatuses?: OperationStatusDto[] | null;
41737
41739
  after?: Date | null;
@@ -41759,6 +41761,7 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41759
41761
  this.material = _data["material"];
41760
41762
  this.bomPartNumber = _data["bomPartNumber"];
41761
41763
  this.bomPartName = _data["bomPartName"];
41764
+ this.bomPartSearchText = _data["bomPartSearchText"];
41762
41765
  if (Array.isArray(_data["workOrderIds"])) {
41763
41766
  this.workOrderIds = [] as any;
41764
41767
  for (let item of _data["workOrderIds"])
@@ -41804,6 +41807,11 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41804
41807
  for (let item of _data["bomPartNames"])
41805
41808
  this.bomPartNames!.push(item);
41806
41809
  }
41810
+ if (Array.isArray(_data["bomPartSearchTexts"])) {
41811
+ this.bomPartSearchTexts = [] as any;
41812
+ for (let item of _data["bomPartSearchTexts"])
41813
+ this.bomPartSearchTexts!.push(item);
41814
+ }
41807
41815
  this.availableWork = _data["availableWork"];
41808
41816
  if (Array.isArray(_data["operationStatuses"])) {
41809
41817
  this.operationStatuses = [] as any;
@@ -41835,6 +41843,7 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41835
41843
  data["material"] = this.material;
41836
41844
  data["bomPartNumber"] = this.bomPartNumber;
41837
41845
  data["bomPartName"] = this.bomPartName;
41846
+ data["bomPartSearchText"] = this.bomPartSearchText;
41838
41847
  if (Array.isArray(this.workOrderIds)) {
41839
41848
  data["workOrderIds"] = [];
41840
41849
  for (let item of this.workOrderIds)
@@ -41880,6 +41889,11 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41880
41889
  for (let item of this.bomPartNames)
41881
41890
  data["bomPartNames"].push(item);
41882
41891
  }
41892
+ if (Array.isArray(this.bomPartSearchTexts)) {
41893
+ data["bomPartSearchTexts"] = [];
41894
+ for (let item of this.bomPartSearchTexts)
41895
+ data["bomPartSearchTexts"].push(item);
41896
+ }
41883
41897
  data["availableWork"] = this.availableWork;
41884
41898
  if (Array.isArray(this.operationStatuses)) {
41885
41899
  data["operationStatuses"] = [];
@@ -41904,6 +41918,7 @@ export interface IListProductionScheduleOperationsRequest {
41904
41918
  material?: string | null;
41905
41919
  bomPartNumber?: string | null;
41906
41920
  bomPartName?: string | null;
41921
+ bomPartSearchText?: string | null;
41907
41922
  workOrderIds?: string[] | null;
41908
41923
  partNumbers?: string[] | null;
41909
41924
  partNames?: string[] | null;
@@ -41913,6 +41928,7 @@ export interface IListProductionScheduleOperationsRequest {
41913
41928
  descriptions?: string[] | null;
41914
41929
  bomPartNumbers?: string[] | null;
41915
41930
  bomPartNames?: string[] | null;
41931
+ bomPartSearchTexts?: string[] | null;
41916
41932
  availableWork?: boolean | null;
41917
41933
  operationStatuses?: OperationStatusDto[] | null;
41918
41934
  after?: Date | null;
@@ -41929,6 +41945,7 @@ export class ProductionScheduleFiltersDto implements IProductionScheduleFiltersD
41929
41945
  descriptions?: FilterValueWithQuantity[];
41930
41946
  bomPartNumbers?: FilterValueWithQuantity[];
41931
41947
  bomPartNames?: FilterValueWithQuantity[];
41948
+ bomPartSearchTexts?: FilterValueWithQuantity[];
41932
41949
  operationsWithAvailableWork?: number;
41933
41950
  operationStatuses?: OperationStatusFilterWithQuantity[];
41934
41951
  lastOperation?: Date | null;
@@ -41990,6 +42007,11 @@ export class ProductionScheduleFiltersDto implements IProductionScheduleFiltersD
41990
42007
  for (let item of _data["bomPartNames"])
41991
42008
  this.bomPartNames!.push(FilterValueWithQuantity.fromJS(item));
41992
42009
  }
42010
+ if (Array.isArray(_data["bomPartSearchTexts"])) {
42011
+ this.bomPartSearchTexts = [] as any;
42012
+ for (let item of _data["bomPartSearchTexts"])
42013
+ this.bomPartSearchTexts!.push(FilterValueWithQuantity.fromJS(item));
42014
+ }
41993
42015
  this.operationsWithAvailableWork = _data["operationsWithAvailableWork"];
41994
42016
  if (Array.isArray(_data["operationStatuses"])) {
41995
42017
  this.operationStatuses = [] as any;
@@ -42055,6 +42077,11 @@ export class ProductionScheduleFiltersDto implements IProductionScheduleFiltersD
42055
42077
  for (let item of this.bomPartNames)
42056
42078
  data["bomPartNames"].push(item.toJSON());
42057
42079
  }
42080
+ if (Array.isArray(this.bomPartSearchTexts)) {
42081
+ data["bomPartSearchTexts"] = [];
42082
+ for (let item of this.bomPartSearchTexts)
42083
+ data["bomPartSearchTexts"].push(item.toJSON());
42084
+ }
42058
42085
  data["operationsWithAvailableWork"] = this.operationsWithAvailableWork;
42059
42086
  if (Array.isArray(this.operationStatuses)) {
42060
42087
  data["operationStatuses"] = [];
@@ -42077,6 +42104,7 @@ export interface IProductionScheduleFiltersDto {
42077
42104
  descriptions?: FilterValueWithQuantity[];
42078
42105
  bomPartNumbers?: FilterValueWithQuantity[];
42079
42106
  bomPartNames?: FilterValueWithQuantity[];
42107
+ bomPartSearchTexts?: FilterValueWithQuantity[];
42080
42108
  operationsWithAvailableWork?: number;
42081
42109
  operationStatuses?: OperationStatusFilterWithQuantity[];
42082
42110
  lastOperation?: Date | null;
@@ -42173,6 +42201,7 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
42173
42201
  material?: string | null;
42174
42202
  bomPartNumber?: string | null;
42175
42203
  bomPartName?: string | null;
42204
+ bomPartSearchText?: string | null;
42176
42205
  workOrderIds?: string[] | null;
42177
42206
  partNumbers?: string[] | null;
42178
42207
  partNames?: string[] | null;
@@ -42182,6 +42211,7 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
42182
42211
  descriptions?: string[] | null;
42183
42212
  bomPartNumbers?: string[] | null;
42184
42213
  bomPartNames?: string[] | null;
42214
+ bomPartSearchTexts?: string[] | null;
42185
42215
  availableWork?: boolean | null;
42186
42216
  operationStatuses?: OperationStatusDto[] | null;
42187
42217
  after?: Date | null;
@@ -42207,6 +42237,7 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
42207
42237
  this.material = _data["material"];
42208
42238
  this.bomPartNumber = _data["bomPartNumber"];
42209
42239
  this.bomPartName = _data["bomPartName"];
42240
+ this.bomPartSearchText = _data["bomPartSearchText"];
42210
42241
  if (Array.isArray(_data["workOrderIds"])) {
42211
42242
  this.workOrderIds = [] as any;
42212
42243
  for (let item of _data["workOrderIds"])
@@ -42252,6 +42283,11 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
42252
42283
  for (let item of _data["bomPartNames"])
42253
42284
  this.bomPartNames!.push(item);
42254
42285
  }
42286
+ if (Array.isArray(_data["bomPartSearchTexts"])) {
42287
+ this.bomPartSearchTexts = [] as any;
42288
+ for (let item of _data["bomPartSearchTexts"])
42289
+ this.bomPartSearchTexts!.push(item);
42290
+ }
42255
42291
  this.availableWork = _data["availableWork"];
42256
42292
  if (Array.isArray(_data["operationStatuses"])) {
42257
42293
  this.operationStatuses = [] as any;
@@ -42281,6 +42317,7 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
42281
42317
  data["material"] = this.material;
42282
42318
  data["bomPartNumber"] = this.bomPartNumber;
42283
42319
  data["bomPartName"] = this.bomPartName;
42320
+ data["bomPartSearchText"] = this.bomPartSearchText;
42284
42321
  if (Array.isArray(this.workOrderIds)) {
42285
42322
  data["workOrderIds"] = [];
42286
42323
  for (let item of this.workOrderIds)
@@ -42326,6 +42363,11 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
42326
42363
  for (let item of this.bomPartNames)
42327
42364
  data["bomPartNames"].push(item);
42328
42365
  }
42366
+ if (Array.isArray(this.bomPartSearchTexts)) {
42367
+ data["bomPartSearchTexts"] = [];
42368
+ for (let item of this.bomPartSearchTexts)
42369
+ data["bomPartSearchTexts"].push(item);
42370
+ }
42329
42371
  data["availableWork"] = this.availableWork;
42330
42372
  if (Array.isArray(this.operationStatuses)) {
42331
42373
  data["operationStatuses"] = [];
@@ -42348,6 +42390,7 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
42348
42390
  material?: string | null;
42349
42391
  bomPartNumber?: string | null;
42350
42392
  bomPartName?: string | null;
42393
+ bomPartSearchText?: string | null;
42351
42394
  workOrderIds?: string[] | null;
42352
42395
  partNumbers?: string[] | null;
42353
42396
  partNames?: string[] | null;
@@ -42357,6 +42400,7 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
42357
42400
  descriptions?: string[] | null;
42358
42401
  bomPartNumbers?: string[] | null;
42359
42402
  bomPartNames?: string[] | null;
42403
+ bomPartSearchTexts?: string[] | null;
42360
42404
  availableWork?: boolean | null;
42361
42405
  operationStatuses?: OperationStatusDto[] | null;
42362
42406
  after?: Date | null;