@ignos/api-client 20240830.0.10201 → 20240830.0.10204

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.
@@ -9133,6 +9133,8 @@ export declare class ListProductionScheduleOperationsRequest implements IListPro
9133
9133
  partNumber?: string | null;
9134
9134
  partName?: string | null;
9135
9135
  material?: string | null;
9136
+ bomPartNumber?: string | null;
9137
+ bomPartName?: string | null;
9136
9138
  workOrderIds?: string[] | null;
9137
9139
  partNumbers?: string[] | null;
9138
9140
  partNames?: string[] | null;
@@ -9140,6 +9142,8 @@ export declare class ListProductionScheduleOperationsRequest implements IListPro
9140
9142
  bomPositions?: string[] | null;
9141
9143
  materials?: string[] | null;
9142
9144
  descriptions?: string[] | null;
9145
+ bomPartNumbers?: string[] | null;
9146
+ bomPartNames?: string[] | null;
9143
9147
  availableWork?: boolean | null;
9144
9148
  operationStatuses?: OperationStatusDto[] | null;
9145
9149
  after?: Date | null;
@@ -9159,6 +9163,8 @@ export interface IListProductionScheduleOperationsRequest {
9159
9163
  partNumber?: string | null;
9160
9164
  partName?: string | null;
9161
9165
  material?: string | null;
9166
+ bomPartNumber?: string | null;
9167
+ bomPartName?: string | null;
9162
9168
  workOrderIds?: string[] | null;
9163
9169
  partNumbers?: string[] | null;
9164
9170
  partNames?: string[] | null;
@@ -9166,6 +9172,8 @@ export interface IListProductionScheduleOperationsRequest {
9166
9172
  bomPositions?: string[] | null;
9167
9173
  materials?: string[] | null;
9168
9174
  descriptions?: string[] | null;
9175
+ bomPartNumbers?: string[] | null;
9176
+ bomPartNames?: string[] | null;
9169
9177
  availableWork?: boolean | null;
9170
9178
  operationStatuses?: OperationStatusDto[] | null;
9171
9179
  after?: Date | null;
@@ -9179,6 +9187,8 @@ export declare class ProductionScheduleFiltersDto implements IProductionSchedule
9179
9187
  workOrderIds?: FilterValueWithQuantity[];
9180
9188
  materials?: FilterValueWithQuantity[];
9181
9189
  descriptions?: FilterValueWithQuantity[];
9190
+ bomPartNumbers?: FilterValueWithQuantity[];
9191
+ bomPartNames?: FilterValueWithQuantity[];
9182
9192
  operationsWithAvailableWork?: number;
9183
9193
  operationStatuses?: OperationStatusFilterWithQuantity[];
9184
9194
  lastOperation?: Date | null;
@@ -9196,6 +9206,8 @@ export interface IProductionScheduleFiltersDto {
9196
9206
  workOrderIds?: FilterValueWithQuantity[];
9197
9207
  materials?: FilterValueWithQuantity[];
9198
9208
  descriptions?: FilterValueWithQuantity[];
9209
+ bomPartNumbers?: FilterValueWithQuantity[];
9210
+ bomPartNames?: FilterValueWithQuantity[];
9199
9211
  operationsWithAvailableWork?: number;
9200
9212
  operationStatuses?: OperationStatusFilterWithQuantity[];
9201
9213
  lastOperation?: Date | null;
@@ -9233,6 +9245,8 @@ export declare class GetAvailableProductionScheduleFiltersRequest implements IGe
9233
9245
  partNumber?: string | null;
9234
9246
  partName?: string | null;
9235
9247
  material?: string | null;
9248
+ bomPartNumber?: string | null;
9249
+ bomPartName?: string | null;
9236
9250
  workOrderIds?: string[] | null;
9237
9251
  partNumbers?: string[] | null;
9238
9252
  partNames?: string[] | null;
@@ -9240,6 +9254,8 @@ export declare class GetAvailableProductionScheduleFiltersRequest implements IGe
9240
9254
  bomPositions?: string[] | null;
9241
9255
  materials?: string[] | null;
9242
9256
  descriptions?: string[] | null;
9257
+ bomPartNumbers?: string[] | null;
9258
+ bomPartNames?: string[] | null;
9243
9259
  availableWork?: boolean | null;
9244
9260
  operationStatuses?: OperationStatusDto[] | null;
9245
9261
  after?: Date | null;
@@ -9257,6 +9273,8 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
9257
9273
  partNumber?: string | null;
9258
9274
  partName?: string | null;
9259
9275
  material?: string | null;
9276
+ bomPartNumber?: string | null;
9277
+ bomPartName?: string | null;
9260
9278
  workOrderIds?: string[] | null;
9261
9279
  partNumbers?: string[] | null;
9262
9280
  partNames?: string[] | null;
@@ -9264,6 +9282,8 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
9264
9282
  bomPositions?: string[] | null;
9265
9283
  materials?: string[] | null;
9266
9284
  descriptions?: string[] | null;
9285
+ bomPartNumbers?: string[] | null;
9286
+ bomPartNames?: string[] | null;
9267
9287
  availableWork?: boolean | null;
9268
9288
  operationStatuses?: OperationStatusDto[] | null;
9269
9289
  after?: Date | null;
@@ -33002,6 +33002,8 @@ export class ListProductionScheduleOperationsRequest {
33002
33002
  this.partNumber = _data["partNumber"];
33003
33003
  this.partName = _data["partName"];
33004
33004
  this.material = _data["material"];
33005
+ this.bomPartNumber = _data["bomPartNumber"];
33006
+ this.bomPartName = _data["bomPartName"];
33005
33007
  if (Array.isArray(_data["workOrderIds"])) {
33006
33008
  this.workOrderIds = [];
33007
33009
  for (let item of _data["workOrderIds"])
@@ -33037,6 +33039,16 @@ export class ListProductionScheduleOperationsRequest {
33037
33039
  for (let item of _data["descriptions"])
33038
33040
  this.descriptions.push(item);
33039
33041
  }
33042
+ if (Array.isArray(_data["bomPartNumbers"])) {
33043
+ this.bomPartNumbers = [];
33044
+ for (let item of _data["bomPartNumbers"])
33045
+ this.bomPartNumbers.push(item);
33046
+ }
33047
+ if (Array.isArray(_data["bomPartNames"])) {
33048
+ this.bomPartNames = [];
33049
+ for (let item of _data["bomPartNames"])
33050
+ this.bomPartNames.push(item);
33051
+ }
33040
33052
  this.availableWork = _data["availableWork"];
33041
33053
  if (Array.isArray(_data["operationStatuses"])) {
33042
33054
  this.operationStatuses = [];
@@ -33064,6 +33076,8 @@ export class ListProductionScheduleOperationsRequest {
33064
33076
  data["partNumber"] = this.partNumber;
33065
33077
  data["partName"] = this.partName;
33066
33078
  data["material"] = this.material;
33079
+ data["bomPartNumber"] = this.bomPartNumber;
33080
+ data["bomPartName"] = this.bomPartName;
33067
33081
  if (Array.isArray(this.workOrderIds)) {
33068
33082
  data["workOrderIds"] = [];
33069
33083
  for (let item of this.workOrderIds)
@@ -33099,6 +33113,16 @@ export class ListProductionScheduleOperationsRequest {
33099
33113
  for (let item of this.descriptions)
33100
33114
  data["descriptions"].push(item);
33101
33115
  }
33116
+ if (Array.isArray(this.bomPartNumbers)) {
33117
+ data["bomPartNumbers"] = [];
33118
+ for (let item of this.bomPartNumbers)
33119
+ data["bomPartNumbers"].push(item);
33120
+ }
33121
+ if (Array.isArray(this.bomPartNames)) {
33122
+ data["bomPartNames"] = [];
33123
+ for (let item of this.bomPartNames)
33124
+ data["bomPartNames"].push(item);
33125
+ }
33102
33126
  data["availableWork"] = this.availableWork;
33103
33127
  if (Array.isArray(this.operationStatuses)) {
33104
33128
  data["operationStatuses"] = [];
@@ -33156,6 +33180,16 @@ export class ProductionScheduleFiltersDto {
33156
33180
  for (let item of _data["descriptions"])
33157
33181
  this.descriptions.push(FilterValueWithQuantity.fromJS(item));
33158
33182
  }
33183
+ if (Array.isArray(_data["bomPartNumbers"])) {
33184
+ this.bomPartNumbers = [];
33185
+ for (let item of _data["bomPartNumbers"])
33186
+ this.bomPartNumbers.push(FilterValueWithQuantity.fromJS(item));
33187
+ }
33188
+ if (Array.isArray(_data["bomPartNames"])) {
33189
+ this.bomPartNames = [];
33190
+ for (let item of _data["bomPartNames"])
33191
+ this.bomPartNames.push(FilterValueWithQuantity.fromJS(item));
33192
+ }
33159
33193
  this.operationsWithAvailableWork = _data["operationsWithAvailableWork"];
33160
33194
  if (Array.isArray(_data["operationStatuses"])) {
33161
33195
  this.operationStatuses = [];
@@ -33209,6 +33243,16 @@ export class ProductionScheduleFiltersDto {
33209
33243
  for (let item of this.descriptions)
33210
33244
  data["descriptions"].push(item.toJSON());
33211
33245
  }
33246
+ if (Array.isArray(this.bomPartNumbers)) {
33247
+ data["bomPartNumbers"] = [];
33248
+ for (let item of this.bomPartNumbers)
33249
+ data["bomPartNumbers"].push(item.toJSON());
33250
+ }
33251
+ if (Array.isArray(this.bomPartNames)) {
33252
+ data["bomPartNames"] = [];
33253
+ for (let item of this.bomPartNames)
33254
+ data["bomPartNames"].push(item.toJSON());
33255
+ }
33212
33256
  data["operationsWithAvailableWork"] = this.operationsWithAvailableWork;
33213
33257
  if (Array.isArray(this.operationStatuses)) {
33214
33258
  data["operationStatuses"] = [];
@@ -33294,6 +33338,8 @@ export class GetAvailableProductionScheduleFiltersRequest {
33294
33338
  this.partNumber = _data["partNumber"];
33295
33339
  this.partName = _data["partName"];
33296
33340
  this.material = _data["material"];
33341
+ this.bomPartNumber = _data["bomPartNumber"];
33342
+ this.bomPartName = _data["bomPartName"];
33297
33343
  if (Array.isArray(_data["workOrderIds"])) {
33298
33344
  this.workOrderIds = [];
33299
33345
  for (let item of _data["workOrderIds"])
@@ -33329,6 +33375,16 @@ export class GetAvailableProductionScheduleFiltersRequest {
33329
33375
  for (let item of _data["descriptions"])
33330
33376
  this.descriptions.push(item);
33331
33377
  }
33378
+ if (Array.isArray(_data["bomPartNumbers"])) {
33379
+ this.bomPartNumbers = [];
33380
+ for (let item of _data["bomPartNumbers"])
33381
+ this.bomPartNumbers.push(item);
33382
+ }
33383
+ if (Array.isArray(_data["bomPartNames"])) {
33384
+ this.bomPartNames = [];
33385
+ for (let item of _data["bomPartNames"])
33386
+ this.bomPartNames.push(item);
33387
+ }
33332
33388
  this.availableWork = _data["availableWork"];
33333
33389
  if (Array.isArray(_data["operationStatuses"])) {
33334
33390
  this.operationStatuses = [];
@@ -33354,6 +33410,8 @@ export class GetAvailableProductionScheduleFiltersRequest {
33354
33410
  data["partNumber"] = this.partNumber;
33355
33411
  data["partName"] = this.partName;
33356
33412
  data["material"] = this.material;
33413
+ data["bomPartNumber"] = this.bomPartNumber;
33414
+ data["bomPartName"] = this.bomPartName;
33357
33415
  if (Array.isArray(this.workOrderIds)) {
33358
33416
  data["workOrderIds"] = [];
33359
33417
  for (let item of this.workOrderIds)
@@ -33389,6 +33447,16 @@ export class GetAvailableProductionScheduleFiltersRequest {
33389
33447
  for (let item of this.descriptions)
33390
33448
  data["descriptions"].push(item);
33391
33449
  }
33450
+ if (Array.isArray(this.bomPartNumbers)) {
33451
+ data["bomPartNumbers"] = [];
33452
+ for (let item of this.bomPartNumbers)
33453
+ data["bomPartNumbers"].push(item);
33454
+ }
33455
+ if (Array.isArray(this.bomPartNames)) {
33456
+ data["bomPartNames"] = [];
33457
+ for (let item of this.bomPartNames)
33458
+ data["bomPartNames"].push(item);
33459
+ }
33392
33460
  data["availableWork"] = this.availableWork;
33393
33461
  if (Array.isArray(this.operationStatuses)) {
33394
33462
  data["operationStatuses"] = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240830.0.10201",
3
+ "version": "20240830.0.10204",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -41122,6 +41122,8 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41122
41122
  partNumber?: string | null;
41123
41123
  partName?: string | null;
41124
41124
  material?: string | null;
41125
+ bomPartNumber?: string | null;
41126
+ bomPartName?: string | null;
41125
41127
  workOrderIds?: string[] | null;
41126
41128
  partNumbers?: string[] | null;
41127
41129
  partNames?: string[] | null;
@@ -41129,6 +41131,8 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41129
41131
  bomPositions?: string[] | null;
41130
41132
  materials?: string[] | null;
41131
41133
  descriptions?: string[] | null;
41134
+ bomPartNumbers?: string[] | null;
41135
+ bomPartNames?: string[] | null;
41132
41136
  availableWork?: boolean | null;
41133
41137
  operationStatuses?: OperationStatusDto[] | null;
41134
41138
  after?: Date | null;
@@ -41154,6 +41158,8 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41154
41158
  this.partNumber = _data["partNumber"];
41155
41159
  this.partName = _data["partName"];
41156
41160
  this.material = _data["material"];
41161
+ this.bomPartNumber = _data["bomPartNumber"];
41162
+ this.bomPartName = _data["bomPartName"];
41157
41163
  if (Array.isArray(_data["workOrderIds"])) {
41158
41164
  this.workOrderIds = [] as any;
41159
41165
  for (let item of _data["workOrderIds"])
@@ -41189,6 +41195,16 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41189
41195
  for (let item of _data["descriptions"])
41190
41196
  this.descriptions!.push(item);
41191
41197
  }
41198
+ if (Array.isArray(_data["bomPartNumbers"])) {
41199
+ this.bomPartNumbers = [] as any;
41200
+ for (let item of _data["bomPartNumbers"])
41201
+ this.bomPartNumbers!.push(item);
41202
+ }
41203
+ if (Array.isArray(_data["bomPartNames"])) {
41204
+ this.bomPartNames = [] as any;
41205
+ for (let item of _data["bomPartNames"])
41206
+ this.bomPartNames!.push(item);
41207
+ }
41192
41208
  this.availableWork = _data["availableWork"];
41193
41209
  if (Array.isArray(_data["operationStatuses"])) {
41194
41210
  this.operationStatuses = [] as any;
@@ -41218,6 +41234,8 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41218
41234
  data["partNumber"] = this.partNumber;
41219
41235
  data["partName"] = this.partName;
41220
41236
  data["material"] = this.material;
41237
+ data["bomPartNumber"] = this.bomPartNumber;
41238
+ data["bomPartName"] = this.bomPartName;
41221
41239
  if (Array.isArray(this.workOrderIds)) {
41222
41240
  data["workOrderIds"] = [];
41223
41241
  for (let item of this.workOrderIds)
@@ -41253,6 +41271,16 @@ export class ListProductionScheduleOperationsRequest implements IListProductionS
41253
41271
  for (let item of this.descriptions)
41254
41272
  data["descriptions"].push(item);
41255
41273
  }
41274
+ if (Array.isArray(this.bomPartNumbers)) {
41275
+ data["bomPartNumbers"] = [];
41276
+ for (let item of this.bomPartNumbers)
41277
+ data["bomPartNumbers"].push(item);
41278
+ }
41279
+ if (Array.isArray(this.bomPartNames)) {
41280
+ data["bomPartNames"] = [];
41281
+ for (let item of this.bomPartNames)
41282
+ data["bomPartNames"].push(item);
41283
+ }
41256
41284
  data["availableWork"] = this.availableWork;
41257
41285
  if (Array.isArray(this.operationStatuses)) {
41258
41286
  data["operationStatuses"] = [];
@@ -41275,6 +41303,8 @@ export interface IListProductionScheduleOperationsRequest {
41275
41303
  partNumber?: string | null;
41276
41304
  partName?: string | null;
41277
41305
  material?: string | null;
41306
+ bomPartNumber?: string | null;
41307
+ bomPartName?: string | null;
41278
41308
  workOrderIds?: string[] | null;
41279
41309
  partNumbers?: string[] | null;
41280
41310
  partNames?: string[] | null;
@@ -41282,6 +41312,8 @@ export interface IListProductionScheduleOperationsRequest {
41282
41312
  bomPositions?: string[] | null;
41283
41313
  materials?: string[] | null;
41284
41314
  descriptions?: string[] | null;
41315
+ bomPartNumbers?: string[] | null;
41316
+ bomPartNames?: string[] | null;
41285
41317
  availableWork?: boolean | null;
41286
41318
  operationStatuses?: OperationStatusDto[] | null;
41287
41319
  after?: Date | null;
@@ -41296,6 +41328,8 @@ export class ProductionScheduleFiltersDto implements IProductionScheduleFiltersD
41296
41328
  workOrderIds?: FilterValueWithQuantity[];
41297
41329
  materials?: FilterValueWithQuantity[];
41298
41330
  descriptions?: FilterValueWithQuantity[];
41331
+ bomPartNumbers?: FilterValueWithQuantity[];
41332
+ bomPartNames?: FilterValueWithQuantity[];
41299
41333
  operationsWithAvailableWork?: number;
41300
41334
  operationStatuses?: OperationStatusFilterWithQuantity[];
41301
41335
  lastOperation?: Date | null;
@@ -41347,6 +41381,16 @@ export class ProductionScheduleFiltersDto implements IProductionScheduleFiltersD
41347
41381
  for (let item of _data["descriptions"])
41348
41382
  this.descriptions!.push(FilterValueWithQuantity.fromJS(item));
41349
41383
  }
41384
+ if (Array.isArray(_data["bomPartNumbers"])) {
41385
+ this.bomPartNumbers = [] as any;
41386
+ for (let item of _data["bomPartNumbers"])
41387
+ this.bomPartNumbers!.push(FilterValueWithQuantity.fromJS(item));
41388
+ }
41389
+ if (Array.isArray(_data["bomPartNames"])) {
41390
+ this.bomPartNames = [] as any;
41391
+ for (let item of _data["bomPartNames"])
41392
+ this.bomPartNames!.push(FilterValueWithQuantity.fromJS(item));
41393
+ }
41350
41394
  this.operationsWithAvailableWork = _data["operationsWithAvailableWork"];
41351
41395
  if (Array.isArray(_data["operationStatuses"])) {
41352
41396
  this.operationStatuses = [] as any;
@@ -41402,6 +41446,16 @@ export class ProductionScheduleFiltersDto implements IProductionScheduleFiltersD
41402
41446
  for (let item of this.descriptions)
41403
41447
  data["descriptions"].push(item.toJSON());
41404
41448
  }
41449
+ if (Array.isArray(this.bomPartNumbers)) {
41450
+ data["bomPartNumbers"] = [];
41451
+ for (let item of this.bomPartNumbers)
41452
+ data["bomPartNumbers"].push(item.toJSON());
41453
+ }
41454
+ if (Array.isArray(this.bomPartNames)) {
41455
+ data["bomPartNames"] = [];
41456
+ for (let item of this.bomPartNames)
41457
+ data["bomPartNames"].push(item.toJSON());
41458
+ }
41405
41459
  data["operationsWithAvailableWork"] = this.operationsWithAvailableWork;
41406
41460
  if (Array.isArray(this.operationStatuses)) {
41407
41461
  data["operationStatuses"] = [];
@@ -41422,6 +41476,8 @@ export interface IProductionScheduleFiltersDto {
41422
41476
  workOrderIds?: FilterValueWithQuantity[];
41423
41477
  materials?: FilterValueWithQuantity[];
41424
41478
  descriptions?: FilterValueWithQuantity[];
41479
+ bomPartNumbers?: FilterValueWithQuantity[];
41480
+ bomPartNames?: FilterValueWithQuantity[];
41425
41481
  operationsWithAvailableWork?: number;
41426
41482
  operationStatuses?: OperationStatusFilterWithQuantity[];
41427
41483
  lastOperation?: Date | null;
@@ -41516,6 +41572,8 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
41516
41572
  partNumber?: string | null;
41517
41573
  partName?: string | null;
41518
41574
  material?: string | null;
41575
+ bomPartNumber?: string | null;
41576
+ bomPartName?: string | null;
41519
41577
  workOrderIds?: string[] | null;
41520
41578
  partNumbers?: string[] | null;
41521
41579
  partNames?: string[] | null;
@@ -41523,6 +41581,8 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
41523
41581
  bomPositions?: string[] | null;
41524
41582
  materials?: string[] | null;
41525
41583
  descriptions?: string[] | null;
41584
+ bomPartNumbers?: string[] | null;
41585
+ bomPartNames?: string[] | null;
41526
41586
  availableWork?: boolean | null;
41527
41587
  operationStatuses?: OperationStatusDto[] | null;
41528
41588
  after?: Date | null;
@@ -41546,6 +41606,8 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
41546
41606
  this.partNumber = _data["partNumber"];
41547
41607
  this.partName = _data["partName"];
41548
41608
  this.material = _data["material"];
41609
+ this.bomPartNumber = _data["bomPartNumber"];
41610
+ this.bomPartName = _data["bomPartName"];
41549
41611
  if (Array.isArray(_data["workOrderIds"])) {
41550
41612
  this.workOrderIds = [] as any;
41551
41613
  for (let item of _data["workOrderIds"])
@@ -41581,6 +41643,16 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
41581
41643
  for (let item of _data["descriptions"])
41582
41644
  this.descriptions!.push(item);
41583
41645
  }
41646
+ if (Array.isArray(_data["bomPartNumbers"])) {
41647
+ this.bomPartNumbers = [] as any;
41648
+ for (let item of _data["bomPartNumbers"])
41649
+ this.bomPartNumbers!.push(item);
41650
+ }
41651
+ if (Array.isArray(_data["bomPartNames"])) {
41652
+ this.bomPartNames = [] as any;
41653
+ for (let item of _data["bomPartNames"])
41654
+ this.bomPartNames!.push(item);
41655
+ }
41584
41656
  this.availableWork = _data["availableWork"];
41585
41657
  if (Array.isArray(_data["operationStatuses"])) {
41586
41658
  this.operationStatuses = [] as any;
@@ -41608,6 +41680,8 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
41608
41680
  data["partNumber"] = this.partNumber;
41609
41681
  data["partName"] = this.partName;
41610
41682
  data["material"] = this.material;
41683
+ data["bomPartNumber"] = this.bomPartNumber;
41684
+ data["bomPartName"] = this.bomPartName;
41611
41685
  if (Array.isArray(this.workOrderIds)) {
41612
41686
  data["workOrderIds"] = [];
41613
41687
  for (let item of this.workOrderIds)
@@ -41643,6 +41717,16 @@ export class GetAvailableProductionScheduleFiltersRequest implements IGetAvailab
41643
41717
  for (let item of this.descriptions)
41644
41718
  data["descriptions"].push(item);
41645
41719
  }
41720
+ if (Array.isArray(this.bomPartNumbers)) {
41721
+ data["bomPartNumbers"] = [];
41722
+ for (let item of this.bomPartNumbers)
41723
+ data["bomPartNumbers"].push(item);
41724
+ }
41725
+ if (Array.isArray(this.bomPartNames)) {
41726
+ data["bomPartNames"] = [];
41727
+ for (let item of this.bomPartNames)
41728
+ data["bomPartNames"].push(item);
41729
+ }
41646
41730
  data["availableWork"] = this.availableWork;
41647
41731
  if (Array.isArray(this.operationStatuses)) {
41648
41732
  data["operationStatuses"] = [];
@@ -41663,6 +41747,8 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
41663
41747
  partNumber?: string | null;
41664
41748
  partName?: string | null;
41665
41749
  material?: string | null;
41750
+ bomPartNumber?: string | null;
41751
+ bomPartName?: string | null;
41666
41752
  workOrderIds?: string[] | null;
41667
41753
  partNumbers?: string[] | null;
41668
41754
  partNames?: string[] | null;
@@ -41670,6 +41756,8 @@ export interface IGetAvailableProductionScheduleFiltersRequest {
41670
41756
  bomPositions?: string[] | null;
41671
41757
  materials?: string[] | null;
41672
41758
  descriptions?: string[] | null;
41759
+ bomPartNumbers?: string[] | null;
41760
+ bomPartNames?: string[] | null;
41673
41761
  availableWork?: boolean | null;
41674
41762
  operationStatuses?: OperationStatusDto[] | null;
41675
41763
  after?: Date | null;