@ignos/api-client 20251023.0.12976 → 20251023.0.12986

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.
@@ -9706,6 +9706,7 @@ export declare class BookingParcelDto implements IBookingParcelDto {
9706
9706
  partNumber?: string | null;
9707
9707
  projectId?: string | null;
9708
9708
  projectName?: string | null;
9709
+ projectBomPosition?: string | null;
9709
9710
  quantity?: number | null;
9710
9711
  material?: string | null;
9711
9712
  materialOperation?: number | null;
@@ -9728,6 +9729,7 @@ export interface IBookingParcelDto {
9728
9729
  partNumber?: string | null;
9729
9730
  projectId?: string | null;
9730
9731
  projectName?: string | null;
9732
+ projectBomPosition?: string | null;
9731
9733
  quantity?: number | null;
9732
9734
  material?: string | null;
9733
9735
  materialOperation?: number | null;
@@ -10304,6 +10306,7 @@ export declare class TrackingParcelDto implements ITrackingParcelDto {
10304
10306
  partNumber?: string | null;
10305
10307
  projectId?: string | null;
10306
10308
  projectName?: string | null;
10309
+ projectBomPosition?: string | null;
10307
10310
  quantity?: number | null;
10308
10311
  material?: string | null;
10309
10312
  covered?: MaterialCoveredDto | null;
@@ -10321,6 +10324,7 @@ export interface ITrackingParcelDto {
10321
10324
  partNumber?: string | null;
10322
10325
  projectId?: string | null;
10323
10326
  projectName?: string | null;
10327
+ projectBomPosition?: string | null;
10324
10328
  quantity?: number | null;
10325
10329
  material?: string | null;
10326
10330
  covered?: MaterialCoveredDto | null;
@@ -10425,6 +10429,7 @@ export declare class TrackingHistoryFlattenedDto implements ITrackingHistoryFlat
10425
10429
  partNumber?: string | null;
10426
10430
  projectId?: string | null;
10427
10431
  projectName?: string | null;
10432
+ projectBomPosition?: string | null;
10428
10433
  quantity?: number | null;
10429
10434
  material?: string | null;
10430
10435
  covered?: MaterialCoveredDto | null;
@@ -10450,6 +10455,7 @@ export interface ITrackingHistoryFlattenedDto {
10450
10455
  partNumber?: string | null;
10451
10456
  projectId?: string | null;
10452
10457
  projectName?: string | null;
10458
+ projectBomPosition?: string | null;
10453
10459
  quantity?: number | null;
10454
10460
  material?: string | null;
10455
10461
  covered?: MaterialCoveredDto | null;
@@ -37606,6 +37606,7 @@ export class BookingParcelDto {
37606
37606
  this.partNumber = _data["partNumber"];
37607
37607
  this.projectId = _data["projectId"];
37608
37608
  this.projectName = _data["projectName"];
37609
+ this.projectBomPosition = _data["projectBomPosition"];
37609
37610
  this.quantity = _data["quantity"];
37610
37611
  this.material = _data["material"];
37611
37612
  this.materialOperation = _data["materialOperation"];
@@ -37632,6 +37633,7 @@ export class BookingParcelDto {
37632
37633
  data["partNumber"] = this.partNumber;
37633
37634
  data["projectId"] = this.projectId;
37634
37635
  data["projectName"] = this.projectName;
37636
+ data["projectBomPosition"] = this.projectBomPosition;
37635
37637
  data["quantity"] = this.quantity;
37636
37638
  data["material"] = this.material;
37637
37639
  data["materialOperation"] = this.materialOperation;
@@ -39063,6 +39065,7 @@ export class TrackingParcelDto {
39063
39065
  this.partNumber = _data["partNumber"];
39064
39066
  this.projectId = _data["projectId"];
39065
39067
  this.projectName = _data["projectName"];
39068
+ this.projectBomPosition = _data["projectBomPosition"];
39066
39069
  this.quantity = _data["quantity"];
39067
39070
  this.material = _data["material"];
39068
39071
  this.covered = _data["covered"];
@@ -39092,6 +39095,7 @@ export class TrackingParcelDto {
39092
39095
  data["partNumber"] = this.partNumber;
39093
39096
  data["projectId"] = this.projectId;
39094
39097
  data["projectName"] = this.projectName;
39098
+ data["projectBomPosition"] = this.projectBomPosition;
39095
39099
  data["quantity"] = this.quantity;
39096
39100
  data["material"] = this.material;
39097
39101
  data["covered"] = this.covered;
@@ -39344,6 +39348,7 @@ export class TrackingHistoryFlattenedDto {
39344
39348
  this.partNumber = _data["partNumber"];
39345
39349
  this.projectId = _data["projectId"];
39346
39350
  this.projectName = _data["projectName"];
39351
+ this.projectBomPosition = _data["projectBomPosition"];
39347
39352
  this.quantity = _data["quantity"];
39348
39353
  this.material = _data["material"];
39349
39354
  this.covered = _data["covered"];
@@ -39377,6 +39382,7 @@ export class TrackingHistoryFlattenedDto {
39377
39382
  data["partNumber"] = this.partNumber;
39378
39383
  data["projectId"] = this.projectId;
39379
39384
  data["projectName"] = this.projectName;
39385
+ data["projectBomPosition"] = this.projectBomPosition;
39380
39386
  data["quantity"] = this.quantity;
39381
39387
  data["material"] = this.material;
39382
39388
  data["covered"] = this.covered;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20251023.0.12976",
3
+ "version": "20251023.0.12986",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -46069,6 +46069,7 @@ export class BookingParcelDto implements IBookingParcelDto {
46069
46069
  partNumber?: string | null;
46070
46070
  projectId?: string | null;
46071
46071
  projectName?: string | null;
46072
+ projectBomPosition?: string | null;
46072
46073
  quantity?: number | null;
46073
46074
  material?: string | null;
46074
46075
  materialOperation?: number | null;
@@ -46097,6 +46098,7 @@ export class BookingParcelDto implements IBookingParcelDto {
46097
46098
  this.partNumber = _data["partNumber"];
46098
46099
  this.projectId = _data["projectId"];
46099
46100
  this.projectName = _data["projectName"];
46101
+ this.projectBomPosition = _data["projectBomPosition"];
46100
46102
  this.quantity = _data["quantity"];
46101
46103
  this.material = _data["material"];
46102
46104
  this.materialOperation = _data["materialOperation"];
@@ -46125,6 +46127,7 @@ export class BookingParcelDto implements IBookingParcelDto {
46125
46127
  data["partNumber"] = this.partNumber;
46126
46128
  data["projectId"] = this.projectId;
46127
46129
  data["projectName"] = this.projectName;
46130
+ data["projectBomPosition"] = this.projectBomPosition;
46128
46131
  data["quantity"] = this.quantity;
46129
46132
  data["material"] = this.material;
46130
46133
  data["materialOperation"] = this.materialOperation;
@@ -46146,6 +46149,7 @@ export interface IBookingParcelDto {
46146
46149
  partNumber?: string | null;
46147
46150
  projectId?: string | null;
46148
46151
  projectName?: string | null;
46152
+ projectBomPosition?: string | null;
46149
46153
  quantity?: number | null;
46150
46154
  material?: string | null;
46151
46155
  materialOperation?: number | null;
@@ -48124,6 +48128,7 @@ export class TrackingParcelDto implements ITrackingParcelDto {
48124
48128
  partNumber?: string | null;
48125
48129
  projectId?: string | null;
48126
48130
  projectName?: string | null;
48131
+ projectBomPosition?: string | null;
48127
48132
  quantity?: number | null;
48128
48133
  material?: string | null;
48129
48134
  covered?: MaterialCoveredDto | null;
@@ -48151,6 +48156,7 @@ export class TrackingParcelDto implements ITrackingParcelDto {
48151
48156
  this.partNumber = _data["partNumber"];
48152
48157
  this.projectId = _data["projectId"];
48153
48158
  this.projectName = _data["projectName"];
48159
+ this.projectBomPosition = _data["projectBomPosition"];
48154
48160
  this.quantity = _data["quantity"];
48155
48161
  this.material = _data["material"];
48156
48162
  this.covered = _data["covered"];
@@ -48182,6 +48188,7 @@ export class TrackingParcelDto implements ITrackingParcelDto {
48182
48188
  data["partNumber"] = this.partNumber;
48183
48189
  data["projectId"] = this.projectId;
48184
48190
  data["projectName"] = this.projectName;
48191
+ data["projectBomPosition"] = this.projectBomPosition;
48185
48192
  data["quantity"] = this.quantity;
48186
48193
  data["material"] = this.material;
48187
48194
  data["covered"] = this.covered;
@@ -48206,6 +48213,7 @@ export interface ITrackingParcelDto {
48206
48213
  partNumber?: string | null;
48207
48214
  projectId?: string | null;
48208
48215
  projectName?: string | null;
48216
+ projectBomPosition?: string | null;
48209
48217
  quantity?: number | null;
48210
48218
  material?: string | null;
48211
48219
  covered?: MaterialCoveredDto | null;
@@ -48528,6 +48536,7 @@ export class TrackingHistoryFlattenedDto implements ITrackingHistoryFlattenedDto
48528
48536
  partNumber?: string | null;
48529
48537
  projectId?: string | null;
48530
48538
  projectName?: string | null;
48539
+ projectBomPosition?: string | null;
48531
48540
  quantity?: number | null;
48532
48541
  material?: string | null;
48533
48542
  covered?: MaterialCoveredDto | null;
@@ -48562,6 +48571,7 @@ export class TrackingHistoryFlattenedDto implements ITrackingHistoryFlattenedDto
48562
48571
  this.partNumber = _data["partNumber"];
48563
48572
  this.projectId = _data["projectId"];
48564
48573
  this.projectName = _data["projectName"];
48574
+ this.projectBomPosition = _data["projectBomPosition"];
48565
48575
  this.quantity = _data["quantity"];
48566
48576
  this.material = _data["material"];
48567
48577
  this.covered = _data["covered"];
@@ -48597,6 +48607,7 @@ export class TrackingHistoryFlattenedDto implements ITrackingHistoryFlattenedDto
48597
48607
  data["partNumber"] = this.partNumber;
48598
48608
  data["projectId"] = this.projectId;
48599
48609
  data["projectName"] = this.projectName;
48610
+ data["projectBomPosition"] = this.projectBomPosition;
48600
48611
  data["quantity"] = this.quantity;
48601
48612
  data["material"] = this.material;
48602
48613
  data["covered"] = this.covered;
@@ -48625,6 +48636,7 @@ export interface ITrackingHistoryFlattenedDto {
48625
48636
  partNumber?: string | null;
48626
48637
  projectId?: string | null;
48627
48638
  projectName?: string | null;
48639
+ projectBomPosition?: string | null;
48628
48640
  quantity?: number | null;
48629
48641
  material?: string | null;
48630
48642
  covered?: MaterialCoveredDto | null;