@ignos/api-client 20250528.0.11839 → 20250530.0.11847

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.
@@ -9222,6 +9222,7 @@ export declare class BookingItemDto implements IBookingItemDto {
9222
9222
  trackingId: string;
9223
9223
  palletNumber: number;
9224
9224
  comment?: string | null;
9225
+ category?: string | null;
9225
9226
  constructor(data?: IBookingItemDto);
9226
9227
  init(_data?: any): void;
9227
9228
  static fromJS(data: any): BookingItemDto;
@@ -9231,6 +9232,7 @@ export interface IBookingItemDto {
9231
9232
  trackingId: string;
9232
9233
  palletNumber: number;
9233
9234
  comment?: string | null;
9235
+ category?: string | null;
9234
9236
  }
9235
9237
  export declare class LocationDto implements ILocationDto {
9236
9238
  locationId: string;
@@ -9463,6 +9465,9 @@ export declare class BookingGeneralRequestDto implements IBookingGeneralRequestD
9463
9465
  toLocationId: string;
9464
9466
  comment?: string | null;
9465
9467
  itemCount: number;
9468
+ categoryBreakdown?: {
9469
+ [key: string]: number;
9470
+ } | null;
9466
9471
  constructor(data?: IBookingGeneralRequestDto);
9467
9472
  init(_data?: any): void;
9468
9473
  static fromJS(data: any): BookingGeneralRequestDto;
@@ -9475,6 +9480,9 @@ export interface IBookingGeneralRequestDto {
9475
9480
  toLocationId: string;
9476
9481
  comment?: string | null;
9477
9482
  itemCount: number;
9483
+ categoryBreakdown?: {
9484
+ [key: string]: number;
9485
+ } | null;
9478
9486
  }
9479
9487
  export declare class PreBookingResultItemDto implements IPreBookingResultItemDto {
9480
9488
  parcelId?: string;
@@ -35626,6 +35626,7 @@ export class BookingItemDto {
35626
35626
  this.trackingId = _data["trackingId"];
35627
35627
  this.palletNumber = _data["palletNumber"];
35628
35628
  this.comment = _data["comment"];
35629
+ this.category = _data["category"];
35629
35630
  }
35630
35631
  }
35631
35632
  static fromJS(data) {
@@ -35639,6 +35640,7 @@ export class BookingItemDto {
35639
35640
  data["trackingId"] = this.trackingId;
35640
35641
  data["palletNumber"] = this.palletNumber;
35641
35642
  data["comment"] = this.comment;
35643
+ data["category"] = this.category;
35642
35644
  return data;
35643
35645
  }
35644
35646
  }
@@ -36258,6 +36260,13 @@ export class BookingGeneralRequestDto {
36258
36260
  this.toLocationId = _data["toLocationId"];
36259
36261
  this.comment = _data["comment"];
36260
36262
  this.itemCount = _data["itemCount"];
36263
+ if (_data["categoryBreakdown"]) {
36264
+ this.categoryBreakdown = {};
36265
+ for (let key in _data["categoryBreakdown"]) {
36266
+ if (_data["categoryBreakdown"].hasOwnProperty(key))
36267
+ this.categoryBreakdown[key] = _data["categoryBreakdown"][key];
36268
+ }
36269
+ }
36261
36270
  }
36262
36271
  }
36263
36272
  static fromJS(data) {
@@ -36274,6 +36283,13 @@ export class BookingGeneralRequestDto {
36274
36283
  data["toLocationId"] = this.toLocationId;
36275
36284
  data["comment"] = this.comment;
36276
36285
  data["itemCount"] = this.itemCount;
36286
+ if (this.categoryBreakdown) {
36287
+ data["categoryBreakdown"] = {};
36288
+ for (let key in this.categoryBreakdown) {
36289
+ if (this.categoryBreakdown.hasOwnProperty(key))
36290
+ data["categoryBreakdown"][key] = this.categoryBreakdown[key];
36291
+ }
36292
+ }
36277
36293
  return data;
36278
36294
  }
36279
36295
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20250528.0.11839",
3
+ "version": "20250530.0.11847",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -43678,6 +43678,7 @@ export class BookingItemDto implements IBookingItemDto {
43678
43678
  trackingId!: string;
43679
43679
  palletNumber!: number;
43680
43680
  comment?: string | null;
43681
+ category?: string | null;
43681
43682
 
43682
43683
  constructor(data?: IBookingItemDto) {
43683
43684
  if (data) {
@@ -43693,6 +43694,7 @@ export class BookingItemDto implements IBookingItemDto {
43693
43694
  this.trackingId = _data["trackingId"];
43694
43695
  this.palletNumber = _data["palletNumber"];
43695
43696
  this.comment = _data["comment"];
43697
+ this.category = _data["category"];
43696
43698
  }
43697
43699
  }
43698
43700
 
@@ -43708,6 +43710,7 @@ export class BookingItemDto implements IBookingItemDto {
43708
43710
  data["trackingId"] = this.trackingId;
43709
43711
  data["palletNumber"] = this.palletNumber;
43710
43712
  data["comment"] = this.comment;
43713
+ data["category"] = this.category;
43711
43714
  return data;
43712
43715
  }
43713
43716
  }
@@ -43716,6 +43719,7 @@ export interface IBookingItemDto {
43716
43719
  trackingId: string;
43717
43720
  palletNumber: number;
43718
43721
  comment?: string | null;
43722
+ category?: string | null;
43719
43723
  }
43720
43724
 
43721
43725
  export class LocationDto implements ILocationDto {
@@ -44552,6 +44556,7 @@ export class BookingGeneralRequestDto implements IBookingGeneralRequestDto {
44552
44556
  toLocationId!: string;
44553
44557
  comment?: string | null;
44554
44558
  itemCount!: number;
44559
+ categoryBreakdown?: { [key: string]: number; } | null;
44555
44560
 
44556
44561
  constructor(data?: IBookingGeneralRequestDto) {
44557
44562
  if (data) {
@@ -44570,6 +44575,13 @@ export class BookingGeneralRequestDto implements IBookingGeneralRequestDto {
44570
44575
  this.toLocationId = _data["toLocationId"];
44571
44576
  this.comment = _data["comment"];
44572
44577
  this.itemCount = _data["itemCount"];
44578
+ if (_data["categoryBreakdown"]) {
44579
+ this.categoryBreakdown = {} as any;
44580
+ for (let key in _data["categoryBreakdown"]) {
44581
+ if (_data["categoryBreakdown"].hasOwnProperty(key))
44582
+ (<any>this.categoryBreakdown)![key] = _data["categoryBreakdown"][key];
44583
+ }
44584
+ }
44573
44585
  }
44574
44586
  }
44575
44587
 
@@ -44588,6 +44600,13 @@ export class BookingGeneralRequestDto implements IBookingGeneralRequestDto {
44588
44600
  data["toLocationId"] = this.toLocationId;
44589
44601
  data["comment"] = this.comment;
44590
44602
  data["itemCount"] = this.itemCount;
44603
+ if (this.categoryBreakdown) {
44604
+ data["categoryBreakdown"] = {};
44605
+ for (let key in this.categoryBreakdown) {
44606
+ if (this.categoryBreakdown.hasOwnProperty(key))
44607
+ (<any>data["categoryBreakdown"])[key] = (<any>this.categoryBreakdown)[key];
44608
+ }
44609
+ }
44591
44610
  return data;
44592
44611
  }
44593
44612
  }
@@ -44599,6 +44618,7 @@ export interface IBookingGeneralRequestDto {
44599
44618
  toLocationId: string;
44600
44619
  comment?: string | null;
44601
44620
  itemCount: number;
44621
+ categoryBreakdown?: { [key: string]: number; } | null;
44602
44622
  }
44603
44623
 
44604
44624
  export class PreBookingResultItemDto implements IPreBookingResultItemDto {