@ignos/api-client 20240604.0.9414 → 20240605.0.9431

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.
@@ -4154,6 +4154,7 @@ export interface ILocationDto {
4154
4154
  }
4155
4155
  export type LocationKindDto = "Warehouse" | "Zone" | "Location";
4156
4156
  export declare class BookingRequestListDto implements IBookingRequestListDto {
4157
+ pageSize?: number | null;
4157
4158
  bookingStatusFilter?: BookingStatusDto[] | null;
4158
4159
  continuationToken?: string | null;
4159
4160
  constructor(data?: IBookingRequestListDto);
@@ -4162,6 +4163,7 @@ export declare class BookingRequestListDto implements IBookingRequestListDto {
4162
4163
  toJSON(data?: any): any;
4163
4164
  }
4164
4165
  export interface IBookingRequestListDto {
4166
+ pageSize?: number | null;
4165
4167
  bookingStatusFilter?: BookingStatusDto[] | null;
4166
4168
  continuationToken?: string | null;
4167
4169
  }
@@ -22403,6 +22403,7 @@ export class BookingRequestListDto {
22403
22403
  }
22404
22404
  init(_data) {
22405
22405
  if (_data) {
22406
+ this.pageSize = _data["pageSize"];
22406
22407
  if (Array.isArray(_data["bookingStatusFilter"])) {
22407
22408
  this.bookingStatusFilter = [];
22408
22409
  for (let item of _data["bookingStatusFilter"])
@@ -22419,6 +22420,7 @@ export class BookingRequestListDto {
22419
22420
  }
22420
22421
  toJSON(data) {
22421
22422
  data = typeof data === 'object' ? data : {};
22423
+ data["pageSize"] = this.pageSize;
22422
22424
  if (Array.isArray(this.bookingStatusFilter)) {
22423
22425
  data["bookingStatusFilter"] = [];
22424
22426
  for (let item of this.bookingStatusFilter)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240604.0.9414",
3
+ "version": "20240605.0.9431",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -25588,6 +25588,7 @@ export interface ILocationDto {
25588
25588
  export type LocationKindDto = "Warehouse" | "Zone" | "Location";
25589
25589
 
25590
25590
  export class BookingRequestListDto implements IBookingRequestListDto {
25591
+ pageSize?: number | null;
25591
25592
  bookingStatusFilter?: BookingStatusDto[] | null;
25592
25593
  continuationToken?: string | null;
25593
25594
 
@@ -25602,6 +25603,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
25602
25603
 
25603
25604
  init(_data?: any) {
25604
25605
  if (_data) {
25606
+ this.pageSize = _data["pageSize"];
25605
25607
  if (Array.isArray(_data["bookingStatusFilter"])) {
25606
25608
  this.bookingStatusFilter = [] as any;
25607
25609
  for (let item of _data["bookingStatusFilter"])
@@ -25620,6 +25622,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
25620
25622
 
25621
25623
  toJSON(data?: any) {
25622
25624
  data = typeof data === 'object' ? data : {};
25625
+ data["pageSize"] = this.pageSize;
25623
25626
  if (Array.isArray(this.bookingStatusFilter)) {
25624
25627
  data["bookingStatusFilter"] = [];
25625
25628
  for (let item of this.bookingStatusFilter)
@@ -25631,6 +25634,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
25631
25634
  }
25632
25635
 
25633
25636
  export interface IBookingRequestListDto {
25637
+ pageSize?: number | null;
25634
25638
  bookingStatusFilter?: BookingStatusDto[] | null;
25635
25639
  continuationToken?: string | null;
25636
25640
  }