@ignos/api-client 20240815.0.9999 → 20240815.0.10002
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
|
@@ -9124,6 +9124,7 @@ export declare class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
9124
9124
|
bookingKindFilter?: BookingKindDto[] | null;
|
|
9125
9125
|
transportKindFilter?: TransportKindDto[] | null;
|
|
9126
9126
|
taskFilter?: BookingTaskDto | null;
|
|
9127
|
+
createdByFilter?: BookingCreatedByDto | null;
|
|
9127
9128
|
bookingOrder?: BookingOrderDto;
|
|
9128
9129
|
continuationToken?: string | null;
|
|
9129
9130
|
constructor(data?: IBookingRequestListDto);
|
|
@@ -9143,10 +9144,12 @@ export interface IBookingRequestListDto {
|
|
|
9143
9144
|
bookingKindFilter?: BookingKindDto[] | null;
|
|
9144
9145
|
transportKindFilter?: TransportKindDto[] | null;
|
|
9145
9146
|
taskFilter?: BookingTaskDto | null;
|
|
9147
|
+
createdByFilter?: BookingCreatedByDto | null;
|
|
9146
9148
|
bookingOrder?: BookingOrderDto;
|
|
9147
9149
|
continuationToken?: string | null;
|
|
9148
9150
|
}
|
|
9149
9151
|
export type BookingTaskDto = "MyTasks" | "OthersTasks";
|
|
9152
|
+
export type BookingCreatedByDto = "Me" | "Others";
|
|
9150
9153
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
9151
9154
|
export declare class BookingUpdateDto implements IBookingUpdateDto {
|
|
9152
9155
|
bookingId: string;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -32982,6 +32982,7 @@ export class BookingRequestListDto {
|
|
|
32982
32982
|
this.transportKindFilter.push(item);
|
|
32983
32983
|
}
|
|
32984
32984
|
this.taskFilter = _data["taskFilter"];
|
|
32985
|
+
this.createdByFilter = _data["createdByFilter"];
|
|
32985
32986
|
this.bookingOrder = _data["bookingOrder"];
|
|
32986
32987
|
this.continuationToken = _data["continuationToken"];
|
|
32987
32988
|
}
|
|
@@ -33041,6 +33042,7 @@ export class BookingRequestListDto {
|
|
|
33041
33042
|
data["transportKindFilter"].push(item);
|
|
33042
33043
|
}
|
|
33043
33044
|
data["taskFilter"] = this.taskFilter;
|
|
33045
|
+
data["createdByFilter"] = this.createdByFilter;
|
|
33044
33046
|
data["bookingOrder"] = this.bookingOrder;
|
|
33045
33047
|
data["continuationToken"] = this.continuationToken;
|
|
33046
33048
|
return data;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -41066,6 +41066,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
41066
41066
|
bookingKindFilter?: BookingKindDto[] | null;
|
|
41067
41067
|
transportKindFilter?: TransportKindDto[] | null;
|
|
41068
41068
|
taskFilter?: BookingTaskDto | null;
|
|
41069
|
+
createdByFilter?: BookingCreatedByDto | null;
|
|
41069
41070
|
bookingOrder?: BookingOrderDto;
|
|
41070
41071
|
continuationToken?: string | null;
|
|
41071
41072
|
|
|
@@ -41127,6 +41128,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
41127
41128
|
this.transportKindFilter!.push(item);
|
|
41128
41129
|
}
|
|
41129
41130
|
this.taskFilter = _data["taskFilter"];
|
|
41131
|
+
this.createdByFilter = _data["createdByFilter"];
|
|
41130
41132
|
this.bookingOrder = _data["bookingOrder"];
|
|
41131
41133
|
this.continuationToken = _data["continuationToken"];
|
|
41132
41134
|
}
|
|
@@ -41188,6 +41190,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
41188
41190
|
data["transportKindFilter"].push(item);
|
|
41189
41191
|
}
|
|
41190
41192
|
data["taskFilter"] = this.taskFilter;
|
|
41193
|
+
data["createdByFilter"] = this.createdByFilter;
|
|
41191
41194
|
data["bookingOrder"] = this.bookingOrder;
|
|
41192
41195
|
data["continuationToken"] = this.continuationToken;
|
|
41193
41196
|
return data;
|
|
@@ -41206,12 +41209,15 @@ export interface IBookingRequestListDto {
|
|
|
41206
41209
|
bookingKindFilter?: BookingKindDto[] | null;
|
|
41207
41210
|
transportKindFilter?: TransportKindDto[] | null;
|
|
41208
41211
|
taskFilter?: BookingTaskDto | null;
|
|
41212
|
+
createdByFilter?: BookingCreatedByDto | null;
|
|
41209
41213
|
bookingOrder?: BookingOrderDto;
|
|
41210
41214
|
continuationToken?: string | null;
|
|
41211
41215
|
}
|
|
41212
41216
|
|
|
41213
41217
|
export type BookingTaskDto = "MyTasks" | "OthersTasks";
|
|
41214
41218
|
|
|
41219
|
+
export type BookingCreatedByDto = "Me" | "Others";
|
|
41220
|
+
|
|
41215
41221
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
41216
41222
|
|
|
41217
41223
|
export class BookingUpdateDto implements IBookingUpdateDto {
|