@ignos/api-client 20250605.0.11876 → 20250605.0.11880
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 +8 -0
- package/lib/ignosportal-api.js +8 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +16 -0
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -9189,7 +9189,11 @@ export declare class BookingDto implements IBookingDto {
|
|
|
9189
9189
|
driver?: string | null;
|
|
9190
9190
|
driverId?: string | null;
|
|
9191
9191
|
claimed?: Date | null;
|
|
9192
|
+
claimedBy?: string | null;
|
|
9193
|
+
claimedById?: string | null;
|
|
9192
9194
|
completed?: Date | null;
|
|
9195
|
+
completedBy?: string | null;
|
|
9196
|
+
completedById?: string | null;
|
|
9193
9197
|
constructor(data?: IBookingDto);
|
|
9194
9198
|
init(_data?: any): void;
|
|
9195
9199
|
static fromJS(data: any): BookingDto;
|
|
@@ -9211,7 +9215,11 @@ export interface IBookingDto {
|
|
|
9211
9215
|
driver?: string | null;
|
|
9212
9216
|
driverId?: string | null;
|
|
9213
9217
|
claimed?: Date | null;
|
|
9218
|
+
claimedBy?: string | null;
|
|
9219
|
+
claimedById?: string | null;
|
|
9214
9220
|
completed?: Date | null;
|
|
9221
|
+
completedBy?: string | null;
|
|
9222
|
+
completedById?: string | null;
|
|
9215
9223
|
}
|
|
9216
9224
|
export type ParcelKindDto = "Standard" | "Other" | "Chip" | "Garbage" | "Material";
|
|
9217
9225
|
export type TransportKindDto = "NormalForklift" | "LargeForklift" | "SideLoadingForklift";
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -35623,7 +35623,11 @@ export class BookingDto {
|
|
|
35623
35623
|
this.driver = _data["driver"];
|
|
35624
35624
|
this.driverId = _data["driverId"];
|
|
35625
35625
|
this.claimed = _data["claimed"] ? new Date(_data["claimed"].toString()) : undefined;
|
|
35626
|
+
this.claimedBy = _data["claimedBy"];
|
|
35627
|
+
this.claimedById = _data["claimedById"];
|
|
35626
35628
|
this.completed = _data["completed"] ? new Date(_data["completed"].toString()) : undefined;
|
|
35629
|
+
this.completedBy = _data["completedBy"];
|
|
35630
|
+
this.completedById = _data["completedById"];
|
|
35627
35631
|
}
|
|
35628
35632
|
}
|
|
35629
35633
|
static fromJS(data) {
|
|
@@ -35649,7 +35653,11 @@ export class BookingDto {
|
|
|
35649
35653
|
data["driver"] = this.driver;
|
|
35650
35654
|
data["driverId"] = this.driverId;
|
|
35651
35655
|
data["claimed"] = this.claimed ? this.claimed.toISOString() : undefined;
|
|
35656
|
+
data["claimedBy"] = this.claimedBy;
|
|
35657
|
+
data["claimedById"] = this.claimedById;
|
|
35652
35658
|
data["completed"] = this.completed ? this.completed.toISOString() : undefined;
|
|
35659
|
+
data["completedBy"] = this.completedBy;
|
|
35660
|
+
data["completedById"] = this.completedById;
|
|
35653
35661
|
return data;
|
|
35654
35662
|
}
|
|
35655
35663
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -43620,7 +43620,11 @@ export class BookingDto implements IBookingDto {
|
|
|
43620
43620
|
driver?: string | null;
|
|
43621
43621
|
driverId?: string | null;
|
|
43622
43622
|
claimed?: Date | null;
|
|
43623
|
+
claimedBy?: string | null;
|
|
43624
|
+
claimedById?: string | null;
|
|
43623
43625
|
completed?: Date | null;
|
|
43626
|
+
completedBy?: string | null;
|
|
43627
|
+
completedById?: string | null;
|
|
43624
43628
|
|
|
43625
43629
|
constructor(data?: IBookingDto) {
|
|
43626
43630
|
if (data) {
|
|
@@ -43653,7 +43657,11 @@ export class BookingDto implements IBookingDto {
|
|
|
43653
43657
|
this.driver = _data["driver"];
|
|
43654
43658
|
this.driverId = _data["driverId"];
|
|
43655
43659
|
this.claimed = _data["claimed"] ? new Date(_data["claimed"].toString()) : <any>undefined;
|
|
43660
|
+
this.claimedBy = _data["claimedBy"];
|
|
43661
|
+
this.claimedById = _data["claimedById"];
|
|
43656
43662
|
this.completed = _data["completed"] ? new Date(_data["completed"].toString()) : <any>undefined;
|
|
43663
|
+
this.completedBy = _data["completedBy"];
|
|
43664
|
+
this.completedById = _data["completedById"];
|
|
43657
43665
|
}
|
|
43658
43666
|
}
|
|
43659
43667
|
|
|
@@ -43681,7 +43689,11 @@ export class BookingDto implements IBookingDto {
|
|
|
43681
43689
|
data["driver"] = this.driver;
|
|
43682
43690
|
data["driverId"] = this.driverId;
|
|
43683
43691
|
data["claimed"] = this.claimed ? this.claimed.toISOString() : <any>undefined;
|
|
43692
|
+
data["claimedBy"] = this.claimedBy;
|
|
43693
|
+
data["claimedById"] = this.claimedById;
|
|
43684
43694
|
data["completed"] = this.completed ? this.completed.toISOString() : <any>undefined;
|
|
43695
|
+
data["completedBy"] = this.completedBy;
|
|
43696
|
+
data["completedById"] = this.completedById;
|
|
43685
43697
|
return data;
|
|
43686
43698
|
}
|
|
43687
43699
|
}
|
|
@@ -43702,7 +43714,11 @@ export interface IBookingDto {
|
|
|
43702
43714
|
driver?: string | null;
|
|
43703
43715
|
driverId?: string | null;
|
|
43704
43716
|
claimed?: Date | null;
|
|
43717
|
+
claimedBy?: string | null;
|
|
43718
|
+
claimedById?: string | null;
|
|
43705
43719
|
completed?: Date | null;
|
|
43720
|
+
completedBy?: string | null;
|
|
43721
|
+
completedById?: string | null;
|
|
43706
43722
|
}
|
|
43707
43723
|
|
|
43708
43724
|
export type ParcelKindDto = "Standard" | "Other" | "Chip" | "Garbage" | "Material";
|