@ignos/api-client 20240809.0.9962 → 20240813.0.9980
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;
|
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
|
|