@ignos/api-client 20240613.0.9531 → 20240613.0.9536
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
|
@@ -4126,7 +4126,7 @@ export interface IBookingDto {
|
|
|
4126
4126
|
updatedBy?: string | null;
|
|
4127
4127
|
updatedById?: string | null;
|
|
4128
4128
|
}
|
|
4129
|
-
export type BookingTypeDto = "
|
|
4129
|
+
export type BookingTypeDto = "NormalForklift" | "LargeForklift" | "SideLoadingForklift";
|
|
4130
4130
|
export type BookingStatusDto = "Pending" | "Cancelled" | "InProgress" | "Delivered";
|
|
4131
4131
|
export declare class BookingItemDto implements IBookingItemDto {
|
|
4132
4132
|
trackingId: string;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -25588,7 +25588,7 @@ export interface IBookingDto {
|
|
|
25588
25588
|
updatedById?: string | null;
|
|
25589
25589
|
}
|
|
25590
25590
|
|
|
25591
|
-
export type BookingTypeDto = "
|
|
25591
|
+
export type BookingTypeDto = "NormalForklift" | "LargeForklift" | "SideLoadingForklift";
|
|
25592
25592
|
|
|
25593
25593
|
export type BookingStatusDto = "Pending" | "Cancelled" | "InProgress" | "Delivered";
|
|
25594
25594
|
|