@ignos/api-client 20260328.94.1-alpha → 20260330.95.1

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.
@@ -6637,7 +6637,6 @@ export interface LocationDto {
6637
6637
  zoneName?: string | null;
6638
6638
  kind: LocationKindDto;
6639
6639
  profile?: string | null;
6640
- resourceName?: string | null;
6641
6640
  }
6642
6641
  export type LocationKindDto = "Warehouse" | "Zone" | "Location";
6643
6642
  export interface BookingRequestListDto {
@@ -6699,6 +6698,7 @@ export interface BookingFilterDto {
6699
6698
  bookingStatusFilter?: BookingStatusDto[] | null;
6700
6699
  parcelKindFilter?: ParcelKindDto[] | null;
6701
6700
  transportKindFilter?: TransportKindDto[] | null;
6701
+ maxAgeOfBookingInDays?: number | null;
6702
6702
  }
6703
6703
  export interface BookingUpdateDto {
6704
6704
  bookingId: string;
@@ -6803,7 +6803,6 @@ export interface LocationMaterialDto {
6803
6803
  zoneName?: string | null;
6804
6804
  kind: LocationKindDto;
6805
6805
  profile?: string | null;
6806
- resourceName?: string | null;
6807
6806
  materialAvailable: number;
6808
6807
  }
6809
6808
  export interface MaterialDesciptionDto {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260328.94.1-alpha",
3
+ "version": "20260330.95.1",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -33149,7 +33149,6 @@ export interface LocationDto {
33149
33149
  zoneName?: string | null;
33150
33150
  kind: LocationKindDto;
33151
33151
  profile?: string | null;
33152
- resourceName?: string | null;
33153
33152
  }
33154
33153
 
33155
33154
  export type LocationKindDto = "Warehouse" | "Zone" | "Location";
@@ -33223,6 +33222,7 @@ export interface BookingFilterDto {
33223
33222
  bookingStatusFilter?: BookingStatusDto[] | null;
33224
33223
  parcelKindFilter?: ParcelKindDto[] | null;
33225
33224
  transportKindFilter?: TransportKindDto[] | null;
33225
+ maxAgeOfBookingInDays?: number | null;
33226
33226
  }
33227
33227
 
33228
33228
  export interface BookingUpdateDto {
@@ -33342,7 +33342,6 @@ export interface LocationMaterialDto {
33342
33342
  zoneName?: string | null;
33343
33343
  kind: LocationKindDto;
33344
33344
  profile?: string | null;
33345
- resourceName?: string | null;
33346
33345
  materialAvailable: number;
33347
33346
  }
33348
33347