@ignos/api-client 20240625.0.9648 → 20240626.0.9651
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
|
@@ -8665,7 +8665,7 @@ export interface IBookingDto {
|
|
|
8665
8665
|
}
|
|
8666
8666
|
export type BookingKindDto = "Forklift" | "General" | "ChipDisposal" | "Garbage";
|
|
8667
8667
|
export type TransportKindDto = "NormalForklift" | "LargeForklift" | "SideLoadingForklift";
|
|
8668
|
-
export type BookingStatusDto = "Pending" | "Cancelled" | "InProgress" | "
|
|
8668
|
+
export type BookingStatusDto = "Pending" | "Cancelled" | "InProgress" | "Completed";
|
|
8669
8669
|
export declare class BookingItemDto implements IBookingItemDto {
|
|
8670
8670
|
trackingId: string;
|
|
8671
8671
|
workOrderId: string;
|
|
@@ -8886,7 +8886,7 @@ export interface ITrackingEventDto {
|
|
|
8886
8886
|
bookingId?: string | null;
|
|
8887
8887
|
comment?: string | null;
|
|
8888
8888
|
}
|
|
8889
|
-
export type TrackingStatusDto = "Manual" | "Pending" | "Cancelled" | "InProgress" | "
|
|
8889
|
+
export type TrackingStatusDto = "Manual" | "Pending" | "Cancelled" | "InProgress" | "Completed";
|
|
8890
8890
|
export declare class TrackingWorkOrderDto implements ITrackingWorkOrderDto {
|
|
8891
8891
|
workOrderId: string;
|
|
8892
8892
|
part?: PartDto | null;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -39108,7 +39108,7 @@ export type BookingKindDto = "Forklift" | "General" | "ChipDisposal" | "Garbage"
|
|
|
39108
39108
|
|
|
39109
39109
|
export type TransportKindDto = "NormalForklift" | "LargeForklift" | "SideLoadingForklift";
|
|
39110
39110
|
|
|
39111
|
-
export type BookingStatusDto = "Pending" | "Cancelled" | "InProgress" | "
|
|
39111
|
+
export type BookingStatusDto = "Pending" | "Cancelled" | "InProgress" | "Completed";
|
|
39112
39112
|
|
|
39113
39113
|
export class BookingItemDto implements IBookingItemDto {
|
|
39114
39114
|
trackingId!: string;
|
|
@@ -39831,7 +39831,7 @@ export interface ITrackingEventDto {
|
|
|
39831
39831
|
comment?: string | null;
|
|
39832
39832
|
}
|
|
39833
39833
|
|
|
39834
|
-
export type TrackingStatusDto = "Manual" | "Pending" | "Cancelled" | "InProgress" | "
|
|
39834
|
+
export type TrackingStatusDto = "Manual" | "Pending" | "Cancelled" | "InProgress" | "Completed";
|
|
39835
39835
|
|
|
39836
39836
|
export class TrackingWorkOrderDto implements ITrackingWorkOrderDto {
|
|
39837
39837
|
workOrderId!: string;
|