@ignos/api-client 20240809.0.9962 → 20240814.0.9990
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
|
@@ -9146,7 +9146,7 @@ export interface IBookingRequestListDto {
|
|
|
9146
9146
|
bookingOrder?: BookingOrderDto;
|
|
9147
9147
|
continuationToken?: string | null;
|
|
9148
9148
|
}
|
|
9149
|
-
export type BookingTaskDto = "
|
|
9149
|
+
export type BookingTaskDto = "MyTasks" | "OthersTasks";
|
|
9150
9150
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
9151
9151
|
export declare class BookingUpdateDto implements IBookingUpdateDto {
|
|
9152
9152
|
bookingId: string;
|
|
@@ -9411,7 +9411,7 @@ export interface ITrackingWorkOrderDto {
|
|
|
9411
9411
|
}
|
|
9412
9412
|
export declare class TrackingUpdateDto implements ITrackingUpdateDto {
|
|
9413
9413
|
trackingId: string;
|
|
9414
|
-
locationId
|
|
9414
|
+
locationId?: string | null;
|
|
9415
9415
|
comment?: string | null;
|
|
9416
9416
|
constructor(data?: ITrackingUpdateDto);
|
|
9417
9417
|
init(_data?: any): void;
|
|
@@ -9420,7 +9420,7 @@ export declare class TrackingUpdateDto implements ITrackingUpdateDto {
|
|
|
9420
9420
|
}
|
|
9421
9421
|
export interface ITrackingUpdateDto {
|
|
9422
9422
|
trackingId: string;
|
|
9423
|
-
locationId
|
|
9423
|
+
locationId?: string | null;
|
|
9424
9424
|
comment?: string | null;
|
|
9425
9425
|
}
|
|
9426
9426
|
export declare class TrackingHistoryUpdateDto implements ITrackingHistoryUpdateDto {
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -41202,7 +41202,7 @@ export interface IBookingRequestListDto {
|
|
|
41202
41202
|
continuationToken?: string | null;
|
|
41203
41203
|
}
|
|
41204
41204
|
|
|
41205
|
-
export type BookingTaskDto = "
|
|
41205
|
+
export type BookingTaskDto = "MyTasks" | "OthersTasks";
|
|
41206
41206
|
|
|
41207
41207
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
41208
41208
|
|
|
@@ -42113,7 +42113,7 @@ export interface ITrackingWorkOrderDto {
|
|
|
42113
42113
|
|
|
42114
42114
|
export class TrackingUpdateDto implements ITrackingUpdateDto {
|
|
42115
42115
|
trackingId!: string;
|
|
42116
|
-
locationId
|
|
42116
|
+
locationId?: string | null;
|
|
42117
42117
|
comment?: string | null;
|
|
42118
42118
|
|
|
42119
42119
|
constructor(data?: ITrackingUpdateDto) {
|
|
@@ -42151,7 +42151,7 @@ export class TrackingUpdateDto implements ITrackingUpdateDto {
|
|
|
42151
42151
|
|
|
42152
42152
|
export interface ITrackingUpdateDto {
|
|
42153
42153
|
trackingId: string;
|
|
42154
|
-
locationId
|
|
42154
|
+
locationId?: string | null;
|
|
42155
42155
|
comment?: string | null;
|
|
42156
42156
|
}
|
|
42157
42157
|
|