@ignos/api-client 20240705.0.9760 → 20240709.0.9769
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
|
@@ -8678,6 +8678,7 @@ export declare class BookingDto implements IBookingDto {
|
|
|
8678
8678
|
createdById: string;
|
|
8679
8679
|
updatedBy?: string | null;
|
|
8680
8680
|
updatedById?: string | null;
|
|
8681
|
+
completed?: Date | null;
|
|
8681
8682
|
constructor(data?: IBookingDto);
|
|
8682
8683
|
init(_data?: any): void;
|
|
8683
8684
|
static fromJS(data: any): BookingDto;
|
|
@@ -8696,6 +8697,7 @@ export interface IBookingDto {
|
|
|
8696
8697
|
createdById: string;
|
|
8697
8698
|
updatedBy?: string | null;
|
|
8698
8699
|
updatedById?: string | null;
|
|
8700
|
+
completed?: Date | null;
|
|
8699
8701
|
}
|
|
8700
8702
|
export type BookingKindDto = "Forklift" | "General" | "ChipDisposal" | "Garbage";
|
|
8701
8703
|
export type TransportKindDto = "NormalForklift" | "LargeForklift" | "SideLoadingForklift";
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -31612,6 +31612,7 @@ export class BookingDto {
|
|
|
31612
31612
|
this.createdById = _data["createdById"];
|
|
31613
31613
|
this.updatedBy = _data["updatedBy"];
|
|
31614
31614
|
this.updatedById = _data["updatedById"];
|
|
31615
|
+
this.completed = _data["completed"] ? new Date(_data["completed"].toString()) : undefined;
|
|
31615
31616
|
}
|
|
31616
31617
|
}
|
|
31617
31618
|
static fromJS(data) {
|
|
@@ -31638,6 +31639,7 @@ export class BookingDto {
|
|
|
31638
31639
|
data["createdById"] = this.createdById;
|
|
31639
31640
|
data["updatedBy"] = this.updatedBy;
|
|
31640
31641
|
data["updatedById"] = this.updatedById;
|
|
31642
|
+
data["completed"] = this.completed ? this.completed.toISOString() : undefined;
|
|
31641
31643
|
return data;
|
|
31642
31644
|
}
|
|
31643
31645
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -39298,6 +39298,7 @@ export class BookingDto implements IBookingDto {
|
|
|
39298
39298
|
createdById!: string;
|
|
39299
39299
|
updatedBy?: string | null;
|
|
39300
39300
|
updatedById?: string | null;
|
|
39301
|
+
completed?: Date | null;
|
|
39301
39302
|
|
|
39302
39303
|
constructor(data?: IBookingDto) {
|
|
39303
39304
|
if (data) {
|
|
@@ -39331,6 +39332,7 @@ export class BookingDto implements IBookingDto {
|
|
|
39331
39332
|
this.createdById = _data["createdById"];
|
|
39332
39333
|
this.updatedBy = _data["updatedBy"];
|
|
39333
39334
|
this.updatedById = _data["updatedById"];
|
|
39335
|
+
this.completed = _data["completed"] ? new Date(_data["completed"].toString()) : <any>undefined;
|
|
39334
39336
|
}
|
|
39335
39337
|
}
|
|
39336
39338
|
|
|
@@ -39359,6 +39361,7 @@ export class BookingDto implements IBookingDto {
|
|
|
39359
39361
|
data["createdById"] = this.createdById;
|
|
39360
39362
|
data["updatedBy"] = this.updatedBy;
|
|
39361
39363
|
data["updatedById"] = this.updatedById;
|
|
39364
|
+
data["completed"] = this.completed ? this.completed.toISOString() : <any>undefined;
|
|
39362
39365
|
return data;
|
|
39363
39366
|
}
|
|
39364
39367
|
}
|
|
@@ -39376,6 +39379,7 @@ export interface IBookingDto {
|
|
|
39376
39379
|
createdById: string;
|
|
39377
39380
|
updatedBy?: string | null;
|
|
39378
39381
|
updatedById?: string | null;
|
|
39382
|
+
completed?: Date | null;
|
|
39379
39383
|
}
|
|
39380
39384
|
|
|
39381
39385
|
export type BookingKindDto = "Forklift" | "General" | "ChipDisposal" | "Garbage";
|