@ignos/api-client 20250530.0.11847 → 20250603.0.11858
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
|
@@ -9155,6 +9155,7 @@ export declare class BookingDto implements IBookingDto {
|
|
|
9155
9155
|
updatedById?: string | null;
|
|
9156
9156
|
driver?: string | null;
|
|
9157
9157
|
driverId?: string | null;
|
|
9158
|
+
claimed?: Date | null;
|
|
9158
9159
|
completed?: Date | null;
|
|
9159
9160
|
constructor(data?: IBookingDto);
|
|
9160
9161
|
init(_data?: any): void;
|
|
@@ -9176,6 +9177,7 @@ export interface IBookingDto {
|
|
|
9176
9177
|
updatedById?: string | null;
|
|
9177
9178
|
driver?: string | null;
|
|
9178
9179
|
driverId?: string | null;
|
|
9180
|
+
claimed?: Date | null;
|
|
9179
9181
|
completed?: Date | null;
|
|
9180
9182
|
}
|
|
9181
9183
|
export type ParcelKindDto = "Standard" | "Other" | "Chip" | "Garbage" | "Material";
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -35531,6 +35531,7 @@ export class BookingDto {
|
|
|
35531
35531
|
this.updatedById = _data["updatedById"];
|
|
35532
35532
|
this.driver = _data["driver"];
|
|
35533
35533
|
this.driverId = _data["driverId"];
|
|
35534
|
+
this.claimed = _data["claimed"] ? new Date(_data["claimed"].toString()) : undefined;
|
|
35534
35535
|
this.completed = _data["completed"] ? new Date(_data["completed"].toString()) : undefined;
|
|
35535
35536
|
}
|
|
35536
35537
|
}
|
|
@@ -35556,6 +35557,7 @@ export class BookingDto {
|
|
|
35556
35557
|
data["updatedById"] = this.updatedById;
|
|
35557
35558
|
data["driver"] = this.driver;
|
|
35558
35559
|
data["driverId"] = this.driverId;
|
|
35560
|
+
data["claimed"] = this.claimed ? this.claimed.toISOString() : undefined;
|
|
35559
35561
|
data["completed"] = this.completed ? this.completed.toISOString() : undefined;
|
|
35560
35562
|
return data;
|
|
35561
35563
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -43496,6 +43496,7 @@ export class BookingDto implements IBookingDto {
|
|
|
43496
43496
|
updatedById?: string | null;
|
|
43497
43497
|
driver?: string | null;
|
|
43498
43498
|
driverId?: string | null;
|
|
43499
|
+
claimed?: Date | null;
|
|
43499
43500
|
completed?: Date | null;
|
|
43500
43501
|
|
|
43501
43502
|
constructor(data?: IBookingDto) {
|
|
@@ -43528,6 +43529,7 @@ export class BookingDto implements IBookingDto {
|
|
|
43528
43529
|
this.updatedById = _data["updatedById"];
|
|
43529
43530
|
this.driver = _data["driver"];
|
|
43530
43531
|
this.driverId = _data["driverId"];
|
|
43532
|
+
this.claimed = _data["claimed"] ? new Date(_data["claimed"].toString()) : <any>undefined;
|
|
43531
43533
|
this.completed = _data["completed"] ? new Date(_data["completed"].toString()) : <any>undefined;
|
|
43532
43534
|
}
|
|
43533
43535
|
}
|
|
@@ -43555,6 +43557,7 @@ export class BookingDto implements IBookingDto {
|
|
|
43555
43557
|
data["updatedById"] = this.updatedById;
|
|
43556
43558
|
data["driver"] = this.driver;
|
|
43557
43559
|
data["driverId"] = this.driverId;
|
|
43560
|
+
data["claimed"] = this.claimed ? this.claimed.toISOString() : <any>undefined;
|
|
43558
43561
|
data["completed"] = this.completed ? this.completed.toISOString() : <any>undefined;
|
|
43559
43562
|
return data;
|
|
43560
43563
|
}
|
|
@@ -43575,6 +43578,7 @@ export interface IBookingDto {
|
|
|
43575
43578
|
updatedById?: string | null;
|
|
43576
43579
|
driver?: string | null;
|
|
43577
43580
|
driverId?: string | null;
|
|
43581
|
+
claimed?: Date | null;
|
|
43578
43582
|
completed?: Date | null;
|
|
43579
43583
|
}
|
|
43580
43584
|
|