@ignos/api-client 20240815.0.9999 → 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 +7 -0
- package/lib/ignosportal-api.js +6 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +14 -0
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";
|
|
@@ -9124,6 +9128,7 @@ export declare class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
9124
9128
|
bookingKindFilter?: BookingKindDto[] | null;
|
|
9125
9129
|
transportKindFilter?: TransportKindDto[] | null;
|
|
9126
9130
|
taskFilter?: BookingTaskDto | null;
|
|
9131
|
+
createdByFilter?: BookingCreatedByDto | null;
|
|
9127
9132
|
bookingOrder?: BookingOrderDto;
|
|
9128
9133
|
continuationToken?: string | null;
|
|
9129
9134
|
constructor(data?: IBookingRequestListDto);
|
|
@@ -9143,10 +9148,12 @@ export interface IBookingRequestListDto {
|
|
|
9143
9148
|
bookingKindFilter?: BookingKindDto[] | null;
|
|
9144
9149
|
transportKindFilter?: TransportKindDto[] | null;
|
|
9145
9150
|
taskFilter?: BookingTaskDto | null;
|
|
9151
|
+
createdByFilter?: BookingCreatedByDto | null;
|
|
9146
9152
|
bookingOrder?: BookingOrderDto;
|
|
9147
9153
|
continuationToken?: string | null;
|
|
9148
9154
|
}
|
|
9149
9155
|
export type BookingTaskDto = "MyTasks" | "OthersTasks";
|
|
9156
|
+
export type BookingCreatedByDto = "MyBookings" | "OthersBookings";
|
|
9150
9157
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
9151
9158
|
export declare class BookingUpdateDto implements IBookingUpdateDto {
|
|
9152
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
|
}
|
|
@@ -32982,6 +32986,7 @@ export class BookingRequestListDto {
|
|
|
32982
32986
|
this.transportKindFilter.push(item);
|
|
32983
32987
|
}
|
|
32984
32988
|
this.taskFilter = _data["taskFilter"];
|
|
32989
|
+
this.createdByFilter = _data["createdByFilter"];
|
|
32985
32990
|
this.bookingOrder = _data["bookingOrder"];
|
|
32986
32991
|
this.continuationToken = _data["continuationToken"];
|
|
32987
32992
|
}
|
|
@@ -33041,6 +33046,7 @@ export class BookingRequestListDto {
|
|
|
33041
33046
|
data["transportKindFilter"].push(item);
|
|
33042
33047
|
}
|
|
33043
33048
|
data["taskFilter"] = this.taskFilter;
|
|
33049
|
+
data["createdByFilter"] = this.createdByFilter;
|
|
33044
33050
|
data["bookingOrder"] = this.bookingOrder;
|
|
33045
33051
|
data["continuationToken"] = this.continuationToken;
|
|
33046
33052
|
return data;
|
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
|
|
|
@@ -41066,6 +41074,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
41066
41074
|
bookingKindFilter?: BookingKindDto[] | null;
|
|
41067
41075
|
transportKindFilter?: TransportKindDto[] | null;
|
|
41068
41076
|
taskFilter?: BookingTaskDto | null;
|
|
41077
|
+
createdByFilter?: BookingCreatedByDto | null;
|
|
41069
41078
|
bookingOrder?: BookingOrderDto;
|
|
41070
41079
|
continuationToken?: string | null;
|
|
41071
41080
|
|
|
@@ -41127,6 +41136,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
41127
41136
|
this.transportKindFilter!.push(item);
|
|
41128
41137
|
}
|
|
41129
41138
|
this.taskFilter = _data["taskFilter"];
|
|
41139
|
+
this.createdByFilter = _data["createdByFilter"];
|
|
41130
41140
|
this.bookingOrder = _data["bookingOrder"];
|
|
41131
41141
|
this.continuationToken = _data["continuationToken"];
|
|
41132
41142
|
}
|
|
@@ -41188,6 +41198,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
41188
41198
|
data["transportKindFilter"].push(item);
|
|
41189
41199
|
}
|
|
41190
41200
|
data["taskFilter"] = this.taskFilter;
|
|
41201
|
+
data["createdByFilter"] = this.createdByFilter;
|
|
41191
41202
|
data["bookingOrder"] = this.bookingOrder;
|
|
41192
41203
|
data["continuationToken"] = this.continuationToken;
|
|
41193
41204
|
return data;
|
|
@@ -41206,12 +41217,15 @@ export interface IBookingRequestListDto {
|
|
|
41206
41217
|
bookingKindFilter?: BookingKindDto[] | null;
|
|
41207
41218
|
transportKindFilter?: TransportKindDto[] | null;
|
|
41208
41219
|
taskFilter?: BookingTaskDto | null;
|
|
41220
|
+
createdByFilter?: BookingCreatedByDto | null;
|
|
41209
41221
|
bookingOrder?: BookingOrderDto;
|
|
41210
41222
|
continuationToken?: string | null;
|
|
41211
41223
|
}
|
|
41212
41224
|
|
|
41213
41225
|
export type BookingTaskDto = "MyTasks" | "OthersTasks";
|
|
41214
41226
|
|
|
41227
|
+
export type BookingCreatedByDto = "MyBookings" | "OthersBookings";
|
|
41228
|
+
|
|
41215
41229
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
41216
41230
|
|
|
41217
41231
|
export class BookingUpdateDto implements IBookingUpdateDto {
|