@ignos/api-client 20260328.94.1-alpha → 20260330.96.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.
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -6699,6 +6699,7 @@ export interface BookingFilterDto {
|
|
|
6699
6699
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
6700
6700
|
parcelKindFilter?: ParcelKindDto[] | null;
|
|
6701
6701
|
transportKindFilter?: TransportKindDto[] | null;
|
|
6702
|
+
maxAgeOfBookingInDays?: number | null;
|
|
6702
6703
|
}
|
|
6703
6704
|
export interface BookingUpdateDto {
|
|
6704
6705
|
bookingId: string;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -33223,6 +33223,7 @@ export interface BookingFilterDto {
|
|
|
33223
33223
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
33224
33224
|
parcelKindFilter?: ParcelKindDto[] | null;
|
|
33225
33225
|
transportKindFilter?: TransportKindDto[] | null;
|
|
33226
|
+
maxAgeOfBookingInDays?: number | null;
|
|
33226
33227
|
}
|
|
33227
33228
|
|
|
33228
33229
|
export interface BookingUpdateDto {
|