@ignos/api-client 20240828.0.10156 → 20240829.0.10164-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.
@@ -9130,6 +9130,8 @@ export declare class ListProductionScheduleOperationsRequest implements IListPro
9130
9130
  partNumber?: string | null;
9131
9131
  partName?: string | null;
9132
9132
  material?: string | null;
9133
+ bomPartNumber?: string | null;
9134
+ bomPartName?: string | null;
9133
9135
  workOrderIds?: string[] | null;
9134
9136
  partNumbers?: string[] | null;
9135
9137
  partNames?: string[] | null;
@@ -9137,6 +9139,8 @@ export declare class ListProductionScheduleOperationsRequest implements IListPro
9137
9139
  bomPositions?: string[] | null;
9138
9140
  materials?: string[] | null;
9139
9141
  descriptions?: string[] | null;
9142
+ bomPartNumbers?: string[] | null;
9143
+ bomPartNames?: string[] | null;
9140
9144
  availableWork?: boolean | null;
9141
9145
  operationStatuses?: OperationStatusDto[] | null;
9142
9146
  after?: Date | null;
@@ -9156,6 +9160,8 @@ export interface IListProductionScheduleOperationsRequest {
9156
9160
  partNumber?: string | null;
9157
9161
  partName?: string | null;
9158
9162
  material?: string | null;
9163
+ bomPartNumber?: string | null;
9164
+ bomPartName?: string | null;
9159
9165
  workOrderIds?: string[] | null;
9160
9166
  partNumbers?: string[] | null;
9161
9167
  partNames?: string[] | null;
@@ -9163,6 +9169,8 @@ export interface IListProductionScheduleOperationsRequest {
9163
9169
  bomPositions?: string[] | null;
9164
9170
  materials?: string[] | null;
9165
9171
  descriptions?: string[] | null;
9172
+ bomPartNumbers?: string[] | null;
9173
+ bomPartNames?: string[] | null;
9166
9174
  availableWork?: boolean | null;
9167
9175
  operationStatuses?: OperationStatusDto[] | null;
9168
9176
  after?: Date | null;
@@ -9176,6 +9184,8 @@ export declare class ProductionScheduleFiltersDto implements IProductionSchedule
9176
9184
  workOrderIds?: FilterValueWithQuantity[];
9177
9185
  materials?: FilterValueWithQuantity[];
9178
9186
  descriptions?: FilterValueWithQuantity[];
9187
+ bomPartNumbers?: FilterValueWithQuantity[];
9188
+ bomPartNames?: FilterValueWithQuantity[];
9179
9189
  operationsWithAvailableWork?: number;
9180
9190
  operationStatuses?: OperationStatusFilterWithQuantity[];
9181
9191
  lastOperation?: Date | null;
@@ -9193,6 +9203,8 @@ export interface IProductionScheduleFiltersDto {
9193
9203
  workOrderIds?: FilterValueWithQuantity[];
9194
9204
  materials?: FilterValueWithQuantity[];
9195
9205
  descriptions?: FilterValueWithQuantity[];
9206
+ bomPartNumbers?: FilterValueWithQuantity[];
9207
+ bomPartNames?: FilterValueWithQuantity[];
9196
9208
  operationsWithAvailableWork?: number;
9197
9209
  operationStatuses?: OperationStatusFilterWithQuantity[];
9198
9210
  lastOperation?: Date | null;
@@ -9230,6 +9242,8 @@ export declare class GetAvailableProductionScheduleFiltersRequest implements IGe
9230
9242
  partNumber?: string | null;
9231
9243
  partName?: string | null;
9232
9244
  material?: string | null;
9245
+ bomPartNumber?: string | null;
9246
+ bomPartName?: string | null;
9233
9247
  workOrderIds?: string[] | null;
9234
9248
  partNumbers?: string[] | null;
9235
9249
  partNames?: string[] | null;
@@ -9237,6 +9251,8 @@ export declare class GetAvailableProductionScheduleFiltersRequest implements IGe
9237
9251
  bomPositions?: string[] | null;
9238
9252
  materials?: string[] | null;
9239
9253
  descriptions?: string[] | null;
9254
+ bomPartNumbers?: string[] | null;
9255
+ bomPartNames?: string[] | null;
9240
9256
  availableWork?: boolean | null;
9241
9257
  operationStatuses?: OperationStatusDto[] | null;
9242
9258
  after?: Date | null;
@@ -9254,6 +9270,8 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
9254
9270
  partNumber?: string | null;
9255
9271
  partName?: string | null;
9256
9272
  material?: string | null;
9273
+ bomPartNumber?: string | null;
9274
+ bomPartName?: string | null;
9257
9275
  workOrderIds?: string[] | null;
9258
9276
  partNumbers?: string[] | null;
9259
9277
  partNames?: string[] | null;
@@ -9261,6 +9279,8 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
9261
9279
  bomPositions?: string[] | null;
9262
9280
  materials?: string[] | null;
9263
9281
  descriptions?: string[] | null;
9282
+ bomPartNumbers?: string[] | null;
9283
+ bomPartNames?: string[] | null;
9264
9284
  availableWork?: boolean | null;
9265
9285
  operationStatuses?: OperationStatusDto[] | null;
9266
9286
  after?: Date | null;
@@ -32982,6 +32982,8 @@ export class ListProductionScheduleOperationsRequest {
32982
32982
  this.partNumber = _data["partNumber"];
32983
32983
  this.partName = _data["partName"];
32984
32984
  this.material = _data["material"];
32985
+ this.bomPartNumber = _data["bomPartNumber"];
32986
+ this.bomPartName = _data["bomPartName"];
32985
32987
  if (Array.isArray(_data["workOrderIds"])) {
32986
32988
  this.workOrderIds = [];
32987
32989
  for (let item of _data["workOrderIds"])
@@ -33017,6 +33019,16 @@ export class ListProductionScheduleOperationsRequest {
33017
33019
  for (let item of _data["descriptions"])
33018
33020
  this.descriptions.push(item);
33019
33021
  }
33022
+ if (Array.isArray(_data["bomPartNumbers"])) {
33023
+ this.bomPartNumbers = [];
33024
+ for (let item of _data["bomPartNumbers"])
33025
+ this.bomPartNumbers.push(item);
33026
+ }
33027
+ if (Array.isArray(_data["bomPartNames"])) {
33028
+ this.bomPartNames = [];
33029
+ for (let item of _data["bomPartNames"])
33030
+ this.bomPartNames.push(item);
33031
+ }
33020
33032
  this.availableWork = _data["availableWork"];
33021
33033
  if (Array.isArray(_data["operationStatuses"])) {
33022
33034
  this.operationStatuses = [];
@@ -33044,6 +33056,8 @@ export class ListProductionScheduleOperationsRequest {
33044
33056
  data["partNumber"] = this.partNumber;
33045
33057
  data["partName"] = this.partName;
33046
33058
  data["material"] = this.material;
33059
+ data["bomPartNumber"] = this.bomPartNumber;
33060
+ data["bomPartName"] = this.bomPartName;
33047
33061
  if (Array.isArray(this.workOrderIds)) {
33048
33062
  data["workOrderIds"] = [];
33049
33063
  for (let item of this.workOrderIds)
@@ -33079,6 +33093,16 @@ export class ListProductionScheduleOperationsRequest {
33079
33093
  for (let item of this.descriptions)
33080
33094
  data["descriptions"].push(item);
33081
33095
  }
33096
+ if (Array.isArray(this.bomPartNumbers)) {
33097
+ data["bomPartNumbers"] = [];
33098
+ for (let item of this.bomPartNumbers)
33099
+ data["bomPartNumbers"].push(item);
33100
+ }
33101
+ if (Array.isArray(this.bomPartNames)) {
33102
+ data["bomPartNames"] = [];
33103
+ for (let item of this.bomPartNames)
33104
+ data["bomPartNames"].push(item);
33105
+ }
33082
33106
  data["availableWork"] = this.availableWork;
33083
33107
  if (Array.isArray(this.operationStatuses)) {
33084
33108
  data["operationStatuses"] = [];
@@ -33136,6 +33160,16 @@ export class ProductionScheduleFiltersDto {
33136
33160
  for (let item of _data["descriptions"])
33137
33161
  this.descriptions.push(FilterValueWithQuantity.fromJS(item));
33138
33162
  }
33163
+ if (Array.isArray(_data["bomPartNumbers"])) {
33164
+ this.bomPartNumbers = [];
33165
+ for (let item of _data["bomPartNumbers"])
33166
+ this.bomPartNumbers.push(FilterValueWithQuantity.fromJS(item));
33167
+ }
33168
+ if (Array.isArray(_data["bomPartNames"])) {
33169
+ this.bomPartNames = [];
33170
+ for (let item of _data["bomPartNames"])
33171
+ this.bomPartNames.push(FilterValueWithQuantity.fromJS(item));
33172
+ }
33139
33173
  this.operationsWithAvailableWork = _data["operationsWithAvailableWork"];
33140
33174
  if (Array.isArray(_data["operationStatuses"])) {
33141
33175
  this.operationStatuses = [];
@@ -33189,6 +33223,16 @@ export class ProductionScheduleFiltersDto {
33189
33223
  for (let item of this.descriptions)
33190
33224
  data["descriptions"].push(item.toJSON());
33191
33225
  }
33226
+ if (Array.isArray(this.bomPartNumbers)) {
33227
+ data["bomPartNumbers"] = [];
33228
+ for (let item of this.bomPartNumbers)
33229
+ data["bomPartNumbers"].push(item.toJSON());
33230
+ }
33231
+ if (Array.isArray(this.bomPartNames)) {
33232
+ data["bomPartNames"] = [];
33233
+ for (let item of this.bomPartNames)
33234
+ data["bomPartNames"].push(item.toJSON());
33235
+ }
33192
33236
  data["operationsWithAvailableWork"] = this.operationsWithAvailableWork;
33193
33237
  if (Array.isArray(this.operationStatuses)) {
33194
33238
  data["operationStatuses"] = [];
@@ -33274,6 +33318,8 @@ export class GetAvailableProductionScheduleFiltersRequest {
33274
33318
  this.partNumber = _data["partNumber"];
33275
33319
  this.partName = _data["partName"];
33276
33320
  this.material = _data["material"];
33321
+ this.bomPartNumber = _data["bomPartNumber"];
33322
+ this.bomPartName = _data["bomPartName"];
33277
33323
  if (Array.isArray(_data["workOrderIds"])) {
33278
33324
  this.workOrderIds = [];
33279
33325
  for (let item of _data["workOrderIds"])
@@ -33309,6 +33355,16 @@ export class GetAvailableProductionScheduleFiltersRequest {
33309
33355
  for (let item of _data["descriptions"])
33310
33356
  this.descriptions.push(item);
33311
33357
  }
33358
+ if (Array.isArray(_data["bomPartNumbers"])) {
33359
+ this.bomPartNumbers = [];
33360
+ for (let item of _data["bomPartNumbers"])
33361
+ this.bomPartNumbers.push(item);
33362
+ }
33363
+ if (Array.isArray(_data["bomPartNames"])) {
33364
+ this.bomPartNames = [];
33365
+ for (let item of _data["bomPartNames"])
33366
+ this.bomPartNames.push(item);
33367
+ }
33312
33368
  this.availableWork = _data["availableWork"];
33313
33369
  if (Array.isArray(_data["operationStatuses"])) {
33314
33370
  this.operationStatuses = [];
@@ -33334,6 +33390,8 @@ export class GetAvailableProductionScheduleFiltersRequest {
33334
33390
  data["partNumber"] = this.partNumber;
33335
33391
  data["partName"] = this.partName;
33336
33392
  data["material"] = this.material;
33393
+ data["bomPartNumber"] = this.bomPartNumber;
33394
+ data["bomPartName"] = this.bomPartName;
33337
33395
  if (Array.isArray(this.workOrderIds)) {
33338
33396
  data["workOrderIds"] = [];
33339
33397
  for (let item of this.workOrderIds)
@@ -33369,6 +33427,16 @@ export class GetAvailableProductionScheduleFiltersRequest {
33369
33427
  for (let item of this.descriptions)
33370
33428
  data["descriptions"].push(item);
33371
33429
  }
33430
+ if (Array.isArray(this.bomPartNumbers)) {
33431
+ data["bomPartNumbers"] = [];
33432
+ for (let item of this.bomPartNumbers)
33433
+ data["bomPartNumbers"].push(item);
33434
+ }
33435
+ if (Array.isArray(this.bomPartNames)) {
33436
+ data["bomPartNames"] = [];
33437
+ for (let item of this.bomPartNames)
33438
+ data["bomPartNames"].push(item);
33439
+ }
33372
33440
  data["availableWork"] = this.availableWork;
33373
33441
  if (Array.isArray(this.operationStatuses)) {
33374
33442
  data["operationStatuses"] = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240828.0.10156",
3
+ "version": "20240829.0.10164-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -41098,6 +41098,8 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41098
41098
  partNumber?: string | null;
41099
41099
  partName?: string | null;
41100
41100
  material?: string | null;
41101
+ bomPartNumber?: string | null;
41102
+ bomPartName?: string | null;
41101
41103
  workOrderIds?: string[] | null;
41102
41104
  partNumbers?: string[] | null;
41103
41105
  partNames?: string[] | null;
@@ -41105,6 +41107,8 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41105
41107
  bomPositions?: string[] | null;
41106
41108
  materials?: string[] | null;
41107
41109
  descriptions?: string[] | null;
41110
+ bomPartNumbers?: string[] | null;
41111
+ bomPartNames?: string[] | null;
41108
41112
  availableWork?: boolean | null;
41109
41113
  operationStatuses?: OperationStatusDto[] | null;
41110
41114
  after?: Date | null;
@@ -41130,6 +41134,8 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41130
41134
  this.partNumber = _data["partNumber"];
41131
41135
  this.partName = _data["partName"];
41132
41136
  this.material = _data["material"];
41137
+ this.bomPartNumber = _data["bomPartNumber"];
41138
+ this.bomPartName = _data["bomPartName"];
41133
41139
  if (Array.isArray(_data["workOrderIds"])) {
41134
41140
  this.workOrderIds = [] as any;
41135
41141
  for (let item of _data["workOrderIds"])
@@ -41165,6 +41171,16 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41165
41171
  for (let item of _data["descriptions"])
41166
41172
  this.descriptions!.push(item);
41167
41173
  }
41174
+ if (Array.isArray(_data["bomPartNumbers"])) {
41175
+ this.bomPartNumbers = [] as any;
41176
+ for (let item of _data["bomPartNumbers"])
41177
+ this.bomPartNumbers!.push(item);
41178
+ }
41179
+ if (Array.isArray(_data["bomPartNames"])) {
41180
+ this.bomPartNames = [] as any;
41181
+ for (let item of _data["bomPartNames"])
41182
+ this.bomPartNames!.push(item);
41183
+ }
41168
41184
  this.availableWork = _data["availableWork"];
41169
41185
  if (Array.isArray(_data["operationStatuses"])) {
41170
41186
  this.operationStatuses = [] as any;
@@ -41194,6 +41210,8 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41194
41210
  data["partNumber"] = this.partNumber;
41195
41211
  data["partName"] = this.partName;
41196
41212
  data["material"] = this.material;
41213
+ data["bomPartNumber"] = this.bomPartNumber;
41214
+ data["bomPartName"] = this.bomPartName;
41197
41215
  if (Array.isArray(this.workOrderIds)) {
41198
41216
  data["workOrderIds"] = [];
41199
41217
  for (let item of this.workOrderIds)
@@ -41229,6 +41247,16 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41229
41247
  for (let item of this.descriptions)
41230
41248
  data["descriptions"].push(item);
41231
41249
  }
41250
+ if (Array.isArray(this.bomPartNumbers)) {
41251
+ data["bomPartNumbers"] = [];
41252
+ for (let item of this.bomPartNumbers)
41253
+ data["bomPartNumbers"].push(item);
41254
+ }
41255
+ if (Array.isArray(this.bomPartNames)) {
41256
+ data["bomPartNames"] = [];
41257
+ for (let item of this.bomPartNames)
41258
+ data["bomPartNames"].push(item);
41259
+ }
41232
41260
  data["availableWork"] = this.availableWork;
41233
41261
  if (Array.isArray(this.operationStatuses)) {
41234
41262
  data["operationStatuses"] = [];
@@ -41251,6 +41279,8 @@ export interface IListProductionScheduleOperationsRequest {
41251
41279
  partNumber?: string | null;
41252
41280
  partName?: string | null;
41253
41281
  material?: string | null;
41282
+ bomPartNumber?: string | null;
41283
+ bomPartName?: string | null;
41254
41284
  workOrderIds?: string[] | null;
41255
41285
  partNumbers?: string[] | null;
41256
41286
  partNames?: string[] | null;
@@ -41258,6 +41288,8 @@ export interface IListProductionScheduleOperationsRequest {
41258
41288
  bomPositions?: string[] | null;
41259
41289
  materials?: string[] | null;
41260
41290
  descriptions?: string[] | null;
41291
+ bomPartNumbers?: string[] | null;
41292
+ bomPartNames?: string[] | null;
41261
41293
  availableWork?: boolean | null;
41262
41294
  operationStatuses?: OperationStatusDto[] | null;
41263
41295
  after?: Date | null;
@@ -41272,6 +41304,8 @@ export class ProductionScheduleFiltersDto implements IProductionScheduleFiltersD
41272
41304
  workOrderIds?: FilterValueWithQuantity[];
41273
41305
  materials?: FilterValueWithQuantity[];
41274
41306
  descriptions?: FilterValueWithQuantity[];
41307
+ bomPartNumbers?: FilterValueWithQuantity[];
41308
+ bomPartNames?: FilterValueWithQuantity[];
41275
41309
  operationsWithAvailableWork?: number;
41276
41310
  operationStatuses?: OperationStatusFilterWithQuantity[];
41277
41311
  lastOperation?: Date | null;
@@ -41323,6 +41357,16 @@ export class ProductionScheduleFiltersDto implements IProductionScheduleFiltersD
41323
41357
  for (let item of _data["descriptions"])
41324
41358
  this.descriptions!.push(FilterValueWithQuantity.fromJS(item));
41325
41359
  }
41360
+ if (Array.isArray(_data["bomPartNumbers"])) {
41361
+ this.bomPartNumbers = [] as any;
41362
+ for (let item of _data["bomPartNumbers"])
41363
+ this.bomPartNumbers!.push(FilterValueWithQuantity.fromJS(item));
41364
+ }
41365
+ if (Array.isArray(_data["bomPartNames"])) {
41366
+ this.bomPartNames = [] as any;
41367
+ for (let item of _data["bomPartNames"])
41368
+ this.bomPartNames!.push(FilterValueWithQuantity.fromJS(item));
41369
+ }
41326
41370
  this.operationsWithAvailableWork = _data["operationsWithAvailableWork"];
41327
41371
  if (Array.isArray(_data["operationStatuses"])) {
41328
41372
  this.operationStatuses = [] as any;
@@ -41378,6 +41422,16 @@ export class ProductionScheduleFiltersDto implements IProductionScheduleFiltersD
41378
41422
  for (let item of this.descriptions)
41379
41423
  data["descriptions"].push(item.toJSON());
41380
41424
  }
41425
+ if (Array.isArray(this.bomPartNumbers)) {
41426
+ data["bomPartNumbers"] = [];
41427
+ for (let item of this.bomPartNumbers)
41428
+ data["bomPartNumbers"].push(item.toJSON());
41429
+ }
41430
+ if (Array.isArray(this.bomPartNames)) {
41431
+ data["bomPartNames"] = [];
41432
+ for (let item of this.bomPartNames)
41433
+ data["bomPartNames"].push(item.toJSON());
41434
+ }
41381
41435
  data["operationsWithAvailableWork"] = this.operationsWithAvailableWork;
41382
41436
  if (Array.isArray(this.operationStatuses)) {
41383
41437
  data["operationStatuses"] = [];
@@ -41398,6 +41452,8 @@ export interface IProductionScheduleFiltersDto {
41398
41452
  workOrderIds?: FilterValueWithQuantity[];
41399
41453
  materials?: FilterValueWithQuantity[];
41400
41454
  descriptions?: FilterValueWithQuantity[];
41455
+ bomPartNumbers?: FilterValueWithQuantity[];
41456
+ bomPartNames?: FilterValueWithQuantity[];
41401
41457
  operationsWithAvailableWork?: number;
41402
41458
  operationStatuses?: OperationStatusFilterWithQuantity[];
41403
41459
  lastOperation?: Date | null;
@@ -41492,6 +41548,8 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
41492
41548
  partNumber?: string | null;
41493
41549
  partName?: string | null;
41494
41550
  material?: string | null;
41551
+ bomPartNumber?: string | null;
41552
+ bomPartName?: string | null;
41495
41553
  workOrderIds?: string[] | null;
41496
41554
  partNumbers?: string[] | null;
41497
41555
  partNames?: string[] | null;
@@ -41499,6 +41557,8 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
41499
41557
  bomPositions?: string[] | null;
41500
41558
  materials?: string[] | null;
41501
41559
  descriptions?: string[] | null;
41560
+ bomPartNumbers?: string[] | null;
41561
+ bomPartNames?: string[] | null;
41502
41562
  availableWork?: boolean | null;
41503
41563
  operationStatuses?: OperationStatusDto[] | null;
41504
41564
  after?: Date | null;
@@ -41522,6 +41582,8 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
41522
41582
  this.partNumber = _data["partNumber"];
41523
41583
  this.partName = _data["partName"];
41524
41584
  this.material = _data["material"];
41585
+ this.bomPartNumber = _data["bomPartNumber"];
41586
+ this.bomPartName = _data["bomPartName"];
41525
41587
  if (Array.isArray(_data["workOrderIds"])) {
41526
41588
  this.workOrderIds = [] as any;
41527
41589
  for (let item of _data["workOrderIds"])
@@ -41557,6 +41619,16 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
41557
41619
  for (let item of _data["descriptions"])
41558
41620
  this.descriptions!.push(item);
41559
41621
  }
41622
+ if (Array.isArray(_data["bomPartNumbers"])) {
41623
+ this.bomPartNumbers = [] as any;
41624
+ for (let item of _data["bomPartNumbers"])
41625
+ this.bomPartNumbers!.push(item);
41626
+ }
41627
+ if (Array.isArray(_data["bomPartNames"])) {
41628
+ this.bomPartNames = [] as any;
41629
+ for (let item of _data["bomPartNames"])
41630
+ this.bomPartNames!.push(item);
41631
+ }
41560
41632
  this.availableWork = _data["availableWork"];
41561
41633
  if (Array.isArray(_data["operationStatuses"])) {
41562
41634
  this.operationStatuses = [] as any;
@@ -41584,6 +41656,8 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
41584
41656
  data["partNumber"] = this.partNumber;
41585
41657
  data["partName"] = this.partName;
41586
41658
  data["material"] = this.material;
41659
+ data["bomPartNumber"] = this.bomPartNumber;
41660
+ data["bomPartName"] = this.bomPartName;
41587
41661
  if (Array.isArray(this.workOrderIds)) {
41588
41662
  data["workOrderIds"] = [];
41589
41663
  for (let item of this.workOrderIds)
@@ -41619,6 +41693,16 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
41619
41693
  for (let item of this.descriptions)
41620
41694
  data["descriptions"].push(item);
41621
41695
  }
41696
+ if (Array.isArray(this.bomPartNumbers)) {
41697
+ data["bomPartNumbers"] = [];
41698
+ for (let item of this.bomPartNumbers)
41699
+ data["bomPartNumbers"].push(item);
41700
+ }
41701
+ if (Array.isArray(this.bomPartNames)) {
41702
+ data["bomPartNames"] = [];
41703
+ for (let item of this.bomPartNames)
41704
+ data["bomPartNames"].push(item);
41705
+ }
41622
41706
  data["availableWork"] = this.availableWork;
41623
41707
  if (Array.isArray(this.operationStatuses)) {
41624
41708
  data["operationStatuses"] = [];
@@ -41639,6 +41723,8 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
41639
41723
  partNumber?: string | null;
41640
41724
  partName?: string | null;
41641
41725
  material?: string | null;
41726
+ bomPartNumber?: string | null;
41727
+ bomPartName?: string | null;
41642
41728
  workOrderIds?: string[] | null;
41643
41729
  partNumbers?: string[] | null;
41644
41730
  partNames?: string[] | null;
@@ -41646,6 +41732,8 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
41646
41732
  bomPositions?: string[] | null;
41647
41733
  materials?: string[] | null;
41648
41734
  descriptions?: string[] | null;
41735
+ bomPartNumbers?: string[] | null;
41736
+ bomPartNames?: string[] | null;
41649
41737
  availableWork?: boolean | null;
41650
41738
  operationStatuses?: OperationStatusDto[] | null;
41651
41739
  after?: Date | null;