@ignos/api-client 20240620.0.9604 → 20240620.0.9609

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.
@@ -4139,6 +4139,7 @@ export declare class BookingItemDto implements IBookingItemDto {
4139
4139
  workOrderId?: string | null;
4140
4140
  material?: string | null;
4141
4141
  comment?: string | null;
4142
+ toLocationOverride?: LocationDto | null;
4142
4143
  constructor(data?: IBookingItemDto);
4143
4144
  init(_data?: any): void;
4144
4145
  static fromJS(data: any): BookingItemDto;
@@ -4149,6 +4150,7 @@ export interface IBookingItemDto {
4149
4150
  workOrderId?: string | null;
4150
4151
  material?: string | null;
4151
4152
  comment?: string | null;
4153
+ toLocationOverride?: LocationDto | null;
4152
4154
  }
4153
4155
  export declare class LocationDto implements ILocationDto {
4154
4156
  locationId: string;
@@ -22483,6 +22483,7 @@ export class BookingItemDto {
22483
22483
  this.workOrderId = _data["workOrderId"];
22484
22484
  this.material = _data["material"];
22485
22485
  this.comment = _data["comment"];
22486
+ this.toLocationOverride = _data["toLocationOverride"] ? LocationDto.fromJS(_data["toLocationOverride"]) : undefined;
22486
22487
  }
22487
22488
  }
22488
22489
  static fromJS(data) {
@@ -22497,6 +22498,7 @@ export class BookingItemDto {
22497
22498
  data["workOrderId"] = this.workOrderId;
22498
22499
  data["material"] = this.material;
22499
22500
  data["comment"] = this.comment;
22501
+ data["toLocationOverride"] = this.toLocationOverride ? this.toLocationOverride.toJSON() : undefined;
22500
22502
  return data;
22501
22503
  }
22502
22504
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240620.0.9604",
3
+ "version": "20240620.0.9609",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -25645,6 +25645,7 @@ export class BookingItemDto implements IBookingItemDto {
25645
25645
  workOrderId?: string | null;
25646
25646
  material?: string | null;
25647
25647
  comment?: string | null;
25648
+ toLocationOverride?: LocationDto | null;
25648
25649
 
25649
25650
  constructor(data?: IBookingItemDto) {
25650
25651
  if (data) {
@@ -25661,6 +25662,7 @@ export class BookingItemDto implements IBookingItemDto {
25661
25662
  this.workOrderId = _data["workOrderId"];
25662
25663
  this.material = _data["material"];
25663
25664
  this.comment = _data["comment"];
25665
+ this.toLocationOverride = _data["toLocationOverride"] ? LocationDto.fromJS(_data["toLocationOverride"]) : <any>undefined;
25664
25666
  }
25665
25667
  }
25666
25668
 
@@ -25677,6 +25679,7 @@ export class BookingItemDto implements IBookingItemDto {
25677
25679
  data["workOrderId"] = this.workOrderId;
25678
25680
  data["material"] = this.material;
25679
25681
  data["comment"] = this.comment;
25682
+ data["toLocationOverride"] = this.toLocationOverride ? this.toLocationOverride.toJSON() : <any>undefined;
25680
25683
  return data;
25681
25684
  }
25682
25685
  }
@@ -25686,6 +25689,7 @@ export interface IBookingItemDto {
25686
25689
  workOrderId?: string | null;
25687
25690
  material?: string | null;
25688
25691
  comment?: string | null;
25692
+ toLocationOverride?: LocationDto | null;
25689
25693
  }
25690
25694
 
25691
25695
  export class LocationDto implements ILocationDto {