@ignos/api-client 20240603.0.9396 → 20240605.0.9431
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
|
@@ -2453,8 +2453,6 @@ export interface IMachineUptimeSumDto {
|
|
|
2453
2453
|
export declare class ListMachineUptimesTodayRequest implements IListMachineUptimesTodayRequest {
|
|
2454
2454
|
machineExternalIds?: string[] | null;
|
|
2455
2455
|
utcOffset?: number;
|
|
2456
|
-
limit?: number | null;
|
|
2457
|
-
cursor?: string | null;
|
|
2458
2456
|
constructor(data?: IListMachineUptimesTodayRequest);
|
|
2459
2457
|
init(_data?: any): void;
|
|
2460
2458
|
static fromJS(data: any): ListMachineUptimesTodayRequest;
|
|
@@ -2463,8 +2461,6 @@ export declare class ListMachineUptimesTodayRequest implements IListMachineUptim
|
|
|
2463
2461
|
export interface IListMachineUptimesTodayRequest {
|
|
2464
2462
|
machineExternalIds?: string[] | null;
|
|
2465
2463
|
utcOffset?: number;
|
|
2466
|
-
limit?: number | null;
|
|
2467
|
-
cursor?: string | null;
|
|
2468
2464
|
}
|
|
2469
2465
|
export declare class PowerOnUtilizationList implements IPowerOnUtilizationList {
|
|
2470
2466
|
machines?: Machine[] | null;
|
|
@@ -4158,6 +4154,7 @@ export interface ILocationDto {
|
|
|
4158
4154
|
}
|
|
4159
4155
|
export type LocationKindDto = "Warehouse" | "Zone" | "Location";
|
|
4160
4156
|
export declare class BookingRequestListDto implements IBookingRequestListDto {
|
|
4157
|
+
pageSize?: number | null;
|
|
4161
4158
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
4162
4159
|
continuationToken?: string | null;
|
|
4163
4160
|
constructor(data?: IBookingRequestListDto);
|
|
@@ -4166,6 +4163,7 @@ export declare class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
4166
4163
|
toJSON(data?: any): any;
|
|
4167
4164
|
}
|
|
4168
4165
|
export interface IBookingRequestListDto {
|
|
4166
|
+
pageSize?: number | null;
|
|
4169
4167
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
4170
4168
|
continuationToken?: string | null;
|
|
4171
4169
|
}
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -18764,8 +18764,6 @@ export class ListMachineUptimesTodayRequest {
|
|
|
18764
18764
|
this.machineExternalIds.push(item);
|
|
18765
18765
|
}
|
|
18766
18766
|
this.utcOffset = _data["utcOffset"];
|
|
18767
|
-
this.limit = _data["limit"];
|
|
18768
|
-
this.cursor = _data["cursor"];
|
|
18769
18767
|
}
|
|
18770
18768
|
}
|
|
18771
18769
|
static fromJS(data) {
|
|
@@ -18782,8 +18780,6 @@ export class ListMachineUptimesTodayRequest {
|
|
|
18782
18780
|
data["machineExternalIds"].push(item);
|
|
18783
18781
|
}
|
|
18784
18782
|
data["utcOffset"] = this.utcOffset;
|
|
18785
|
-
data["limit"] = this.limit;
|
|
18786
|
-
data["cursor"] = this.cursor;
|
|
18787
18783
|
return data;
|
|
18788
18784
|
}
|
|
18789
18785
|
}
|
|
@@ -22407,6 +22403,7 @@ export class BookingRequestListDto {
|
|
|
22407
22403
|
}
|
|
22408
22404
|
init(_data) {
|
|
22409
22405
|
if (_data) {
|
|
22406
|
+
this.pageSize = _data["pageSize"];
|
|
22410
22407
|
if (Array.isArray(_data["bookingStatusFilter"])) {
|
|
22411
22408
|
this.bookingStatusFilter = [];
|
|
22412
22409
|
for (let item of _data["bookingStatusFilter"])
|
|
@@ -22423,6 +22420,7 @@ export class BookingRequestListDto {
|
|
|
22423
22420
|
}
|
|
22424
22421
|
toJSON(data) {
|
|
22425
22422
|
data = typeof data === 'object' ? data : {};
|
|
22423
|
+
data["pageSize"] = this.pageSize;
|
|
22426
22424
|
if (Array.isArray(this.bookingStatusFilter)) {
|
|
22427
22425
|
data["bookingStatusFilter"] = [];
|
|
22428
22426
|
for (let item of this.bookingStatusFilter)
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -20225,8 +20225,6 @@ export interface IMachineUptimeSumDto {
|
|
|
20225
20225
|
export class ListMachineUptimesTodayRequest implements IListMachineUptimesTodayRequest {
|
|
20226
20226
|
machineExternalIds?: string[] | null;
|
|
20227
20227
|
utcOffset?: number;
|
|
20228
|
-
limit?: number | null;
|
|
20229
|
-
cursor?: string | null;
|
|
20230
20228
|
|
|
20231
20229
|
constructor(data?: IListMachineUptimesTodayRequest) {
|
|
20232
20230
|
if (data) {
|
|
@@ -20245,8 +20243,6 @@ export class ListMachineUptimesTodayRequest implements IListMachineUptimesTodayR
|
|
|
20245
20243
|
this.machineExternalIds!.push(item);
|
|
20246
20244
|
}
|
|
20247
20245
|
this.utcOffset = _data["utcOffset"];
|
|
20248
|
-
this.limit = _data["limit"];
|
|
20249
|
-
this.cursor = _data["cursor"];
|
|
20250
20246
|
}
|
|
20251
20247
|
}
|
|
20252
20248
|
|
|
@@ -20265,8 +20261,6 @@ export class ListMachineUptimesTodayRequest implements IListMachineUptimesTodayR
|
|
|
20265
20261
|
data["machineExternalIds"].push(item);
|
|
20266
20262
|
}
|
|
20267
20263
|
data["utcOffset"] = this.utcOffset;
|
|
20268
|
-
data["limit"] = this.limit;
|
|
20269
|
-
data["cursor"] = this.cursor;
|
|
20270
20264
|
return data;
|
|
20271
20265
|
}
|
|
20272
20266
|
}
|
|
@@ -20274,8 +20268,6 @@ export class ListMachineUptimesTodayRequest implements IListMachineUptimesTodayR
|
|
|
20274
20268
|
export interface IListMachineUptimesTodayRequest {
|
|
20275
20269
|
machineExternalIds?: string[] | null;
|
|
20276
20270
|
utcOffset?: number;
|
|
20277
|
-
limit?: number | null;
|
|
20278
|
-
cursor?: string | null;
|
|
20279
20271
|
}
|
|
20280
20272
|
|
|
20281
20273
|
export class PowerOnUtilizationList implements IPowerOnUtilizationList {
|
|
@@ -25596,6 +25588,7 @@ export interface ILocationDto {
|
|
|
25596
25588
|
export type LocationKindDto = "Warehouse" | "Zone" | "Location";
|
|
25597
25589
|
|
|
25598
25590
|
export class BookingRequestListDto implements IBookingRequestListDto {
|
|
25591
|
+
pageSize?: number | null;
|
|
25599
25592
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
25600
25593
|
continuationToken?: string | null;
|
|
25601
25594
|
|
|
@@ -25610,6 +25603,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
25610
25603
|
|
|
25611
25604
|
init(_data?: any) {
|
|
25612
25605
|
if (_data) {
|
|
25606
|
+
this.pageSize = _data["pageSize"];
|
|
25613
25607
|
if (Array.isArray(_data["bookingStatusFilter"])) {
|
|
25614
25608
|
this.bookingStatusFilter = [] as any;
|
|
25615
25609
|
for (let item of _data["bookingStatusFilter"])
|
|
@@ -25628,6 +25622,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
25628
25622
|
|
|
25629
25623
|
toJSON(data?: any) {
|
|
25630
25624
|
data = typeof data === 'object' ? data : {};
|
|
25625
|
+
data["pageSize"] = this.pageSize;
|
|
25631
25626
|
if (Array.isArray(this.bookingStatusFilter)) {
|
|
25632
25627
|
data["bookingStatusFilter"] = [];
|
|
25633
25628
|
for (let item of this.bookingStatusFilter)
|
|
@@ -25639,6 +25634,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
25639
25634
|
}
|
|
25640
25635
|
|
|
25641
25636
|
export interface IBookingRequestListDto {
|
|
25637
|
+
pageSize?: number | null;
|
|
25642
25638
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
25643
25639
|
continuationToken?: string | null;
|
|
25644
25640
|
}
|