@ignos/api-client 20240701.0.9706 → 20240702.0.9720

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.
@@ -8801,7 +8801,8 @@ export interface IBookingTransportRequestDto {
8801
8801
  toLocationId: string;
8802
8802
  }
8803
8803
  export declare class BookingItemRequestDto implements IBookingItemRequestDto {
8804
- trackingId: string;
8804
+ workOrderId?: string | null;
8805
+ trackingId?: string | null;
8805
8806
  comment?: string | null;
8806
8807
  constructor(data?: IBookingItemRequestDto);
8807
8808
  init(_data?: any): void;
@@ -8809,7 +8810,8 @@ export declare class BookingItemRequestDto implements IBookingItemRequestDto {
8809
8810
  toJSON(data?: any): any;
8810
8811
  }
8811
8812
  export interface IBookingItemRequestDto {
8812
- trackingId: string;
8813
+ workOrderId?: string | null;
8814
+ trackingId?: string | null;
8813
8815
  comment?: string | null;
8814
8816
  }
8815
8817
  export declare class BookingGeneralRequestDto implements IBookingGeneralRequestDto {
@@ -31898,6 +31898,7 @@ export class BookingItemRequestDto {
31898
31898
  }
31899
31899
  init(_data) {
31900
31900
  if (_data) {
31901
+ this.workOrderId = _data["workOrderId"];
31901
31902
  this.trackingId = _data["trackingId"];
31902
31903
  this.comment = _data["comment"];
31903
31904
  }
@@ -31910,6 +31911,7 @@ export class BookingItemRequestDto {
31910
31911
  }
31911
31912
  toJSON(data) {
31912
31913
  data = typeof data === 'object' ? data : {};
31914
+ data["workOrderId"] = this.workOrderId;
31913
31915
  data["trackingId"] = this.trackingId;
31914
31916
  data["comment"] = this.comment;
31915
31917
  return data;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240701.0.9706",
3
+ "version": "20240702.0.9720",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -39732,7 +39732,8 @@ export interface IBookingTransportRequestDto {
39732
39732
  }
39733
39733
 
39734
39734
  export class BookingItemRequestDto implements IBookingItemRequestDto {
39735
- trackingId!: string;
39735
+ workOrderId?: string | null;
39736
+ trackingId?: string | null;
39736
39737
  comment?: string | null;
39737
39738
 
39738
39739
  constructor(data?: IBookingItemRequestDto) {
@@ -39746,6 +39747,7 @@ export class BookingItemRequestDto implements IBookingItemRequestDto {
39746
39747
 
39747
39748
  init(_data?: any) {
39748
39749
  if (_data) {
39750
+ this.workOrderId = _data["workOrderId"];
39749
39751
  this.trackingId = _data["trackingId"];
39750
39752
  this.comment = _data["comment"];
39751
39753
  }
@@ -39760,6 +39762,7 @@ export class BookingItemRequestDto implements IBookingItemRequestDto {
39760
39762
 
39761
39763
  toJSON(data?: any) {
39762
39764
  data = typeof data === 'object' ? data : {};
39765
+ data["workOrderId"] = this.workOrderId;
39763
39766
  data["trackingId"] = this.trackingId;
39764
39767
  data["comment"] = this.comment;
39765
39768
  return data;
@@ -39767,7 +39770,8 @@ export class BookingItemRequestDto implements IBookingItemRequestDto {
39767
39770
  }
39768
39771
 
39769
39772
  export interface IBookingItemRequestDto {
39770
- trackingId: string;
39773
+ workOrderId?: string | null;
39774
+ trackingId?: string | null;
39771
39775
  comment?: string | null;
39772
39776
  }
39773
39777