@ignos/api-client 20240815.0.10002 → 20240816.0.10011
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
|
@@ -9044,6 +9044,8 @@ export declare class BookingDto implements IBookingDto {
|
|
|
9044
9044
|
createdById: string;
|
|
9045
9045
|
updatedBy?: string | null;
|
|
9046
9046
|
updatedById?: string | null;
|
|
9047
|
+
driver?: string | null;
|
|
9048
|
+
driverId?: string | null;
|
|
9047
9049
|
completed?: Date | null;
|
|
9048
9050
|
constructor(data?: IBookingDto);
|
|
9049
9051
|
init(_data?: any): void;
|
|
@@ -9063,6 +9065,8 @@ export interface IBookingDto {
|
|
|
9063
9065
|
createdById: string;
|
|
9064
9066
|
updatedBy?: string | null;
|
|
9065
9067
|
updatedById?: string | null;
|
|
9068
|
+
driver?: string | null;
|
|
9069
|
+
driverId?: string | null;
|
|
9066
9070
|
completed?: Date | null;
|
|
9067
9071
|
}
|
|
9068
9072
|
export type BookingKindDto = "Forklift" | "General" | "ChipDisposal" | "Garbage";
|
|
@@ -9149,7 +9153,7 @@ export interface IBookingRequestListDto {
|
|
|
9149
9153
|
continuationToken?: string | null;
|
|
9150
9154
|
}
|
|
9151
9155
|
export type BookingTaskDto = "MyTasks" | "OthersTasks";
|
|
9152
|
-
export type BookingCreatedByDto = "
|
|
9156
|
+
export type BookingCreatedByDto = "MyBookings" | "OthersBookings";
|
|
9153
9157
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
9154
9158
|
export declare class BookingUpdateDto implements IBookingUpdateDto {
|
|
9155
9159
|
bookingId: string;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -32819,6 +32819,8 @@ export class BookingDto {
|
|
|
32819
32819
|
this.createdById = _data["createdById"];
|
|
32820
32820
|
this.updatedBy = _data["updatedBy"];
|
|
32821
32821
|
this.updatedById = _data["updatedById"];
|
|
32822
|
+
this.driver = _data["driver"];
|
|
32823
|
+
this.driverId = _data["driverId"];
|
|
32822
32824
|
this.completed = _data["completed"] ? new Date(_data["completed"].toString()) : undefined;
|
|
32823
32825
|
}
|
|
32824
32826
|
}
|
|
@@ -32846,6 +32848,8 @@ export class BookingDto {
|
|
|
32846
32848
|
data["createdById"] = this.createdById;
|
|
32847
32849
|
data["updatedBy"] = this.updatedBy;
|
|
32848
32850
|
data["updatedById"] = this.updatedById;
|
|
32851
|
+
data["driver"] = this.driver;
|
|
32852
|
+
data["driverId"] = this.driverId;
|
|
32849
32853
|
data["completed"] = this.completed ? this.completed.toISOString() : undefined;
|
|
32850
32854
|
return data;
|
|
32851
32855
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -40844,6 +40844,8 @@ export class BookingDto implements IBookingDto {
|
|
|
40844
40844
|
createdById!: string;
|
|
40845
40845
|
updatedBy?: string | null;
|
|
40846
40846
|
updatedById?: string | null;
|
|
40847
|
+
driver?: string | null;
|
|
40848
|
+
driverId?: string | null;
|
|
40847
40849
|
completed?: Date | null;
|
|
40848
40850
|
|
|
40849
40851
|
constructor(data?: IBookingDto) {
|
|
@@ -40878,6 +40880,8 @@ export class BookingDto implements IBookingDto {
|
|
|
40878
40880
|
this.createdById = _data["createdById"];
|
|
40879
40881
|
this.updatedBy = _data["updatedBy"];
|
|
40880
40882
|
this.updatedById = _data["updatedById"];
|
|
40883
|
+
this.driver = _data["driver"];
|
|
40884
|
+
this.driverId = _data["driverId"];
|
|
40881
40885
|
this.completed = _data["completed"] ? new Date(_data["completed"].toString()) : <any>undefined;
|
|
40882
40886
|
}
|
|
40883
40887
|
}
|
|
@@ -40907,6 +40911,8 @@ export class BookingDto implements IBookingDto {
|
|
|
40907
40911
|
data["createdById"] = this.createdById;
|
|
40908
40912
|
data["updatedBy"] = this.updatedBy;
|
|
40909
40913
|
data["updatedById"] = this.updatedById;
|
|
40914
|
+
data["driver"] = this.driver;
|
|
40915
|
+
data["driverId"] = this.driverId;
|
|
40910
40916
|
data["completed"] = this.completed ? this.completed.toISOString() : <any>undefined;
|
|
40911
40917
|
return data;
|
|
40912
40918
|
}
|
|
@@ -40925,6 +40931,8 @@ export interface IBookingDto {
|
|
|
40925
40931
|
createdById: string;
|
|
40926
40932
|
updatedBy?: string | null;
|
|
40927
40933
|
updatedById?: string | null;
|
|
40934
|
+
driver?: string | null;
|
|
40935
|
+
driverId?: string | null;
|
|
40928
40936
|
completed?: Date | null;
|
|
40929
40937
|
}
|
|
40930
40938
|
|
|
@@ -41216,7 +41224,7 @@ export interface IBookingRequestListDto {
|
|
|
41216
41224
|
|
|
41217
41225
|
export type BookingTaskDto = "MyTasks" | "OthersTasks";
|
|
41218
41226
|
|
|
41219
|
-
export type BookingCreatedByDto = "
|
|
41227
|
+
export type BookingCreatedByDto = "MyBookings" | "OthersBookings";
|
|
41220
41228
|
|
|
41221
41229
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
41222
41230
|
|