@ignos/api-client 20250320.0.11410 → 20250324.0.11421

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.
@@ -8789,6 +8789,7 @@ export declare class BookingRequestListDto implements IBookingRequestListDto {
8789
8789
  taskFilter?: BookingTaskDto | null;
8790
8790
  createdByFilter?: BookingCreatedByDto | null;
8791
8791
  bookingOrder?: BookingOrderDto;
8792
+ includeMyLocation?: boolean | null;
8792
8793
  continuationToken?: string | null;
8793
8794
  constructor(data?: IBookingRequestListDto);
8794
8795
  init(_data?: any): void;
@@ -8809,6 +8810,7 @@ export interface IBookingRequestListDto {
8809
8810
  taskFilter?: BookingTaskDto | null;
8810
8811
  createdByFilter?: BookingCreatedByDto | null;
8811
8812
  bookingOrder?: BookingOrderDto;
8813
+ includeMyLocation?: boolean | null;
8812
8814
  continuationToken?: string | null;
8813
8815
  }
8814
8816
  export type BookingTaskDto = "MyTasks" | "OthersTasks";
@@ -33902,6 +33902,7 @@ export class BookingRequestListDto {
33902
33902
  this.taskFilter = _data["taskFilter"];
33903
33903
  this.createdByFilter = _data["createdByFilter"];
33904
33904
  this.bookingOrder = _data["bookingOrder"];
33905
+ this.includeMyLocation = _data["includeMyLocation"];
33905
33906
  this.continuationToken = _data["continuationToken"];
33906
33907
  }
33907
33908
  }
@@ -33962,6 +33963,7 @@ export class BookingRequestListDto {
33962
33963
  data["taskFilter"] = this.taskFilter;
33963
33964
  data["createdByFilter"] = this.createdByFilter;
33964
33965
  data["bookingOrder"] = this.bookingOrder;
33966
+ data["includeMyLocation"] = this.includeMyLocation;
33965
33967
  data["continuationToken"] = this.continuationToken;
33966
33968
  return data;
33967
33969
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20250320.0.11410",
3
+ "version": "20250324.0.11421",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -41531,6 +41531,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
41531
41531
  taskFilter?: BookingTaskDto | null;
41532
41532
  createdByFilter?: BookingCreatedByDto | null;
41533
41533
  bookingOrder?: BookingOrderDto;
41534
+ includeMyLocation?: boolean | null;
41534
41535
  continuationToken?: string | null;
41535
41536
 
41536
41537
  constructor(data?: IBookingRequestListDto) {
@@ -41593,6 +41594,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
41593
41594
  this.taskFilter = _data["taskFilter"];
41594
41595
  this.createdByFilter = _data["createdByFilter"];
41595
41596
  this.bookingOrder = _data["bookingOrder"];
41597
+ this.includeMyLocation = _data["includeMyLocation"];
41596
41598
  this.continuationToken = _data["continuationToken"];
41597
41599
  }
41598
41600
  }
@@ -41655,6 +41657,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
41655
41657
  data["taskFilter"] = this.taskFilter;
41656
41658
  data["createdByFilter"] = this.createdByFilter;
41657
41659
  data["bookingOrder"] = this.bookingOrder;
41660
+ data["includeMyLocation"] = this.includeMyLocation;
41658
41661
  data["continuationToken"] = this.continuationToken;
41659
41662
  return data;
41660
41663
  }
@@ -41674,6 +41677,7 @@ export interface IBookingRequestListDto {
41674
41677
  taskFilter?: BookingTaskDto | null;
41675
41678
  createdByFilter?: BookingCreatedByDto | null;
41676
41679
  bookingOrder?: BookingOrderDto;
41680
+ includeMyLocation?: boolean | null;
41677
41681
  continuationToken?: string | null;
41678
41682
  }
41679
41683