@ignos/api-client 20240603.0.9396 → 20240604.0.9414
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;
|
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
|
}
|
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 {
|