@ignos/api-client 20251023.0.12986 → 20251027.0.13022-alpha
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 +2 -6
- package/lib/ignosportal-api.js +2 -6
- package/package.json +1 -1
- package/src/ignosportal-api.ts +4 -12
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -6123,6 +6123,7 @@ export declare class MachineCapacityDto implements IMachineCapacityDto {
|
|
|
6123
6123
|
utilizationPercent: number;
|
|
6124
6124
|
capacity: MachineCapacitySettingsDto[];
|
|
6125
6125
|
created?: Date | null;
|
|
6126
|
+
updated?: Date | null;
|
|
6126
6127
|
updatedBy?: string | null;
|
|
6127
6128
|
updatedById?: string | null;
|
|
6128
6129
|
constructor(data?: IMachineCapacityDto);
|
|
@@ -6138,6 +6139,7 @@ export interface IMachineCapacityDto {
|
|
|
6138
6139
|
utilizationPercent: number;
|
|
6139
6140
|
capacity: MachineCapacitySettingsDto[];
|
|
6140
6141
|
created?: Date | null;
|
|
6142
|
+
updated?: Date | null;
|
|
6141
6143
|
updatedBy?: string | null;
|
|
6142
6144
|
updatedById?: string | null;
|
|
6143
6145
|
}
|
|
@@ -9706,7 +9708,6 @@ export declare class BookingParcelDto implements IBookingParcelDto {
|
|
|
9706
9708
|
partNumber?: string | null;
|
|
9707
9709
|
projectId?: string | null;
|
|
9708
9710
|
projectName?: string | null;
|
|
9709
|
-
projectBomPosition?: string | null;
|
|
9710
9711
|
quantity?: number | null;
|
|
9711
9712
|
material?: string | null;
|
|
9712
9713
|
materialOperation?: number | null;
|
|
@@ -9729,7 +9730,6 @@ export interface IBookingParcelDto {
|
|
|
9729
9730
|
partNumber?: string | null;
|
|
9730
9731
|
projectId?: string | null;
|
|
9731
9732
|
projectName?: string | null;
|
|
9732
|
-
projectBomPosition?: string | null;
|
|
9733
9733
|
quantity?: number | null;
|
|
9734
9734
|
material?: string | null;
|
|
9735
9735
|
materialOperation?: number | null;
|
|
@@ -10306,7 +10306,6 @@ export declare class TrackingParcelDto implements ITrackingParcelDto {
|
|
|
10306
10306
|
partNumber?: string | null;
|
|
10307
10307
|
projectId?: string | null;
|
|
10308
10308
|
projectName?: string | null;
|
|
10309
|
-
projectBomPosition?: string | null;
|
|
10310
10309
|
quantity?: number | null;
|
|
10311
10310
|
material?: string | null;
|
|
10312
10311
|
covered?: MaterialCoveredDto | null;
|
|
@@ -10324,7 +10323,6 @@ export interface ITrackingParcelDto {
|
|
|
10324
10323
|
partNumber?: string | null;
|
|
10325
10324
|
projectId?: string | null;
|
|
10326
10325
|
projectName?: string | null;
|
|
10327
|
-
projectBomPosition?: string | null;
|
|
10328
10326
|
quantity?: number | null;
|
|
10329
10327
|
material?: string | null;
|
|
10330
10328
|
covered?: MaterialCoveredDto | null;
|
|
@@ -10429,7 +10427,6 @@ export declare class TrackingHistoryFlattenedDto implements ITrackingHistoryFlat
|
|
|
10429
10427
|
partNumber?: string | null;
|
|
10430
10428
|
projectId?: string | null;
|
|
10431
10429
|
projectName?: string | null;
|
|
10432
|
-
projectBomPosition?: string | null;
|
|
10433
10430
|
quantity?: number | null;
|
|
10434
10431
|
material?: string | null;
|
|
10435
10432
|
covered?: MaterialCoveredDto | null;
|
|
@@ -10455,7 +10452,6 @@ export interface ITrackingHistoryFlattenedDto {
|
|
|
10455
10452
|
partNumber?: string | null;
|
|
10456
10453
|
projectId?: string | null;
|
|
10457
10454
|
projectName?: string | null;
|
|
10458
|
-
projectBomPosition?: string | null;
|
|
10459
10455
|
quantity?: number | null;
|
|
10460
10456
|
material?: string | null;
|
|
10461
10457
|
covered?: MaterialCoveredDto | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -30627,6 +30627,7 @@ export class MachineCapacityDto {
|
|
|
30627
30627
|
this.capacity.push(MachineCapacitySettingsDto.fromJS(item));
|
|
30628
30628
|
}
|
|
30629
30629
|
this.created = _data["created"] ? new Date(_data["created"].toString()) : undefined;
|
|
30630
|
+
this.updated = _data["updated"] ? new Date(_data["updated"].toString()) : undefined;
|
|
30630
30631
|
this.updatedBy = _data["updatedBy"];
|
|
30631
30632
|
this.updatedById = _data["updatedById"];
|
|
30632
30633
|
}
|
|
@@ -30650,6 +30651,7 @@ export class MachineCapacityDto {
|
|
|
30650
30651
|
data["capacity"].push(item ? item.toJSON() : undefined);
|
|
30651
30652
|
}
|
|
30652
30653
|
data["created"] = this.created ? this.created.toISOString() : undefined;
|
|
30654
|
+
data["updated"] = this.updated ? this.updated.toISOString() : undefined;
|
|
30653
30655
|
data["updatedBy"] = this.updatedBy;
|
|
30654
30656
|
data["updatedById"] = this.updatedById;
|
|
30655
30657
|
return data;
|
|
@@ -37606,7 +37608,6 @@ export class BookingParcelDto {
|
|
|
37606
37608
|
this.partNumber = _data["partNumber"];
|
|
37607
37609
|
this.projectId = _data["projectId"];
|
|
37608
37610
|
this.projectName = _data["projectName"];
|
|
37609
|
-
this.projectBomPosition = _data["projectBomPosition"];
|
|
37610
37611
|
this.quantity = _data["quantity"];
|
|
37611
37612
|
this.material = _data["material"];
|
|
37612
37613
|
this.materialOperation = _data["materialOperation"];
|
|
@@ -37633,7 +37634,6 @@ export class BookingParcelDto {
|
|
|
37633
37634
|
data["partNumber"] = this.partNumber;
|
|
37634
37635
|
data["projectId"] = this.projectId;
|
|
37635
37636
|
data["projectName"] = this.projectName;
|
|
37636
|
-
data["projectBomPosition"] = this.projectBomPosition;
|
|
37637
37637
|
data["quantity"] = this.quantity;
|
|
37638
37638
|
data["material"] = this.material;
|
|
37639
37639
|
data["materialOperation"] = this.materialOperation;
|
|
@@ -39065,7 +39065,6 @@ export class TrackingParcelDto {
|
|
|
39065
39065
|
this.partNumber = _data["partNumber"];
|
|
39066
39066
|
this.projectId = _data["projectId"];
|
|
39067
39067
|
this.projectName = _data["projectName"];
|
|
39068
|
-
this.projectBomPosition = _data["projectBomPosition"];
|
|
39069
39068
|
this.quantity = _data["quantity"];
|
|
39070
39069
|
this.material = _data["material"];
|
|
39071
39070
|
this.covered = _data["covered"];
|
|
@@ -39095,7 +39094,6 @@ export class TrackingParcelDto {
|
|
|
39095
39094
|
data["partNumber"] = this.partNumber;
|
|
39096
39095
|
data["projectId"] = this.projectId;
|
|
39097
39096
|
data["projectName"] = this.projectName;
|
|
39098
|
-
data["projectBomPosition"] = this.projectBomPosition;
|
|
39099
39097
|
data["quantity"] = this.quantity;
|
|
39100
39098
|
data["material"] = this.material;
|
|
39101
39099
|
data["covered"] = this.covered;
|
|
@@ -39348,7 +39346,6 @@ export class TrackingHistoryFlattenedDto {
|
|
|
39348
39346
|
this.partNumber = _data["partNumber"];
|
|
39349
39347
|
this.projectId = _data["projectId"];
|
|
39350
39348
|
this.projectName = _data["projectName"];
|
|
39351
|
-
this.projectBomPosition = _data["projectBomPosition"];
|
|
39352
39349
|
this.quantity = _data["quantity"];
|
|
39353
39350
|
this.material = _data["material"];
|
|
39354
39351
|
this.covered = _data["covered"];
|
|
@@ -39382,7 +39379,6 @@ export class TrackingHistoryFlattenedDto {
|
|
|
39382
39379
|
data["partNumber"] = this.partNumber;
|
|
39383
39380
|
data["projectId"] = this.projectId;
|
|
39384
39381
|
data["projectName"] = this.projectName;
|
|
39385
|
-
data["projectBomPosition"] = this.projectBomPosition;
|
|
39386
39382
|
data["quantity"] = this.quantity;
|
|
39387
39383
|
data["material"] = this.material;
|
|
39388
39384
|
data["covered"] = this.covered;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -35491,6 +35491,7 @@ export class MachineCapacityDto implements IMachineCapacityDto {
|
|
|
35491
35491
|
utilizationPercent!: number;
|
|
35492
35492
|
capacity!: MachineCapacitySettingsDto[];
|
|
35493
35493
|
created?: Date | null;
|
|
35494
|
+
updated?: Date | null;
|
|
35494
35495
|
updatedBy?: string | null;
|
|
35495
35496
|
updatedById?: string | null;
|
|
35496
35497
|
|
|
@@ -35519,6 +35520,7 @@ export class MachineCapacityDto implements IMachineCapacityDto {
|
|
|
35519
35520
|
this.capacity!.push(MachineCapacitySettingsDto.fromJS(item));
|
|
35520
35521
|
}
|
|
35521
35522
|
this.created = _data["created"] ? new Date(_data["created"].toString()) : undefined as any;
|
|
35523
|
+
this.updated = _data["updated"] ? new Date(_data["updated"].toString()) : undefined as any;
|
|
35522
35524
|
this.updatedBy = _data["updatedBy"];
|
|
35523
35525
|
this.updatedById = _data["updatedById"];
|
|
35524
35526
|
}
|
|
@@ -35544,6 +35546,7 @@ export class MachineCapacityDto implements IMachineCapacityDto {
|
|
|
35544
35546
|
data["capacity"].push(item ? item.toJSON() : undefined as any);
|
|
35545
35547
|
}
|
|
35546
35548
|
data["created"] = this.created ? this.created.toISOString() : undefined as any;
|
|
35549
|
+
data["updated"] = this.updated ? this.updated.toISOString() : undefined as any;
|
|
35547
35550
|
data["updatedBy"] = this.updatedBy;
|
|
35548
35551
|
data["updatedById"] = this.updatedById;
|
|
35549
35552
|
return data;
|
|
@@ -35558,6 +35561,7 @@ export interface IMachineCapacityDto {
|
|
|
35558
35561
|
utilizationPercent: number;
|
|
35559
35562
|
capacity: MachineCapacitySettingsDto[];
|
|
35560
35563
|
created?: Date | null;
|
|
35564
|
+
updated?: Date | null;
|
|
35561
35565
|
updatedBy?: string | null;
|
|
35562
35566
|
updatedById?: string | null;
|
|
35563
35567
|
}
|
|
@@ -46069,7 +46073,6 @@ export class BookingParcelDto implements IBookingParcelDto {
|
|
|
46069
46073
|
partNumber?: string | null;
|
|
46070
46074
|
projectId?: string | null;
|
|
46071
46075
|
projectName?: string | null;
|
|
46072
|
-
projectBomPosition?: string | null;
|
|
46073
46076
|
quantity?: number | null;
|
|
46074
46077
|
material?: string | null;
|
|
46075
46078
|
materialOperation?: number | null;
|
|
@@ -46098,7 +46101,6 @@ export class BookingParcelDto implements IBookingParcelDto {
|
|
|
46098
46101
|
this.partNumber = _data["partNumber"];
|
|
46099
46102
|
this.projectId = _data["projectId"];
|
|
46100
46103
|
this.projectName = _data["projectName"];
|
|
46101
|
-
this.projectBomPosition = _data["projectBomPosition"];
|
|
46102
46104
|
this.quantity = _data["quantity"];
|
|
46103
46105
|
this.material = _data["material"];
|
|
46104
46106
|
this.materialOperation = _data["materialOperation"];
|
|
@@ -46127,7 +46129,6 @@ export class BookingParcelDto implements IBookingParcelDto {
|
|
|
46127
46129
|
data["partNumber"] = this.partNumber;
|
|
46128
46130
|
data["projectId"] = this.projectId;
|
|
46129
46131
|
data["projectName"] = this.projectName;
|
|
46130
|
-
data["projectBomPosition"] = this.projectBomPosition;
|
|
46131
46132
|
data["quantity"] = this.quantity;
|
|
46132
46133
|
data["material"] = this.material;
|
|
46133
46134
|
data["materialOperation"] = this.materialOperation;
|
|
@@ -46149,7 +46150,6 @@ export interface IBookingParcelDto {
|
|
|
46149
46150
|
partNumber?: string | null;
|
|
46150
46151
|
projectId?: string | null;
|
|
46151
46152
|
projectName?: string | null;
|
|
46152
|
-
projectBomPosition?: string | null;
|
|
46153
46153
|
quantity?: number | null;
|
|
46154
46154
|
material?: string | null;
|
|
46155
46155
|
materialOperation?: number | null;
|
|
@@ -48128,7 +48128,6 @@ export class TrackingParcelDto implements ITrackingParcelDto {
|
|
|
48128
48128
|
partNumber?: string | null;
|
|
48129
48129
|
projectId?: string | null;
|
|
48130
48130
|
projectName?: string | null;
|
|
48131
|
-
projectBomPosition?: string | null;
|
|
48132
48131
|
quantity?: number | null;
|
|
48133
48132
|
material?: string | null;
|
|
48134
48133
|
covered?: MaterialCoveredDto | null;
|
|
@@ -48156,7 +48155,6 @@ export class TrackingParcelDto implements ITrackingParcelDto {
|
|
|
48156
48155
|
this.partNumber = _data["partNumber"];
|
|
48157
48156
|
this.projectId = _data["projectId"];
|
|
48158
48157
|
this.projectName = _data["projectName"];
|
|
48159
|
-
this.projectBomPosition = _data["projectBomPosition"];
|
|
48160
48158
|
this.quantity = _data["quantity"];
|
|
48161
48159
|
this.material = _data["material"];
|
|
48162
48160
|
this.covered = _data["covered"];
|
|
@@ -48188,7 +48186,6 @@ export class TrackingParcelDto implements ITrackingParcelDto {
|
|
|
48188
48186
|
data["partNumber"] = this.partNumber;
|
|
48189
48187
|
data["projectId"] = this.projectId;
|
|
48190
48188
|
data["projectName"] = this.projectName;
|
|
48191
|
-
data["projectBomPosition"] = this.projectBomPosition;
|
|
48192
48189
|
data["quantity"] = this.quantity;
|
|
48193
48190
|
data["material"] = this.material;
|
|
48194
48191
|
data["covered"] = this.covered;
|
|
@@ -48213,7 +48210,6 @@ export interface ITrackingParcelDto {
|
|
|
48213
48210
|
partNumber?: string | null;
|
|
48214
48211
|
projectId?: string | null;
|
|
48215
48212
|
projectName?: string | null;
|
|
48216
|
-
projectBomPosition?: string | null;
|
|
48217
48213
|
quantity?: number | null;
|
|
48218
48214
|
material?: string | null;
|
|
48219
48215
|
covered?: MaterialCoveredDto | null;
|
|
@@ -48536,7 +48532,6 @@ export class TrackingHistoryFlattenedDto implements ITrackingHistoryFlattenedDto
|
|
|
48536
48532
|
partNumber?: string | null;
|
|
48537
48533
|
projectId?: string | null;
|
|
48538
48534
|
projectName?: string | null;
|
|
48539
|
-
projectBomPosition?: string | null;
|
|
48540
48535
|
quantity?: number | null;
|
|
48541
48536
|
material?: string | null;
|
|
48542
48537
|
covered?: MaterialCoveredDto | null;
|
|
@@ -48571,7 +48566,6 @@ export class TrackingHistoryFlattenedDto implements ITrackingHistoryFlattenedDto
|
|
|
48571
48566
|
this.partNumber = _data["partNumber"];
|
|
48572
48567
|
this.projectId = _data["projectId"];
|
|
48573
48568
|
this.projectName = _data["projectName"];
|
|
48574
|
-
this.projectBomPosition = _data["projectBomPosition"];
|
|
48575
48569
|
this.quantity = _data["quantity"];
|
|
48576
48570
|
this.material = _data["material"];
|
|
48577
48571
|
this.covered = _data["covered"];
|
|
@@ -48607,7 +48601,6 @@ export class TrackingHistoryFlattenedDto implements ITrackingHistoryFlattenedDto
|
|
|
48607
48601
|
data["partNumber"] = this.partNumber;
|
|
48608
48602
|
data["projectId"] = this.projectId;
|
|
48609
48603
|
data["projectName"] = this.projectName;
|
|
48610
|
-
data["projectBomPosition"] = this.projectBomPosition;
|
|
48611
48604
|
data["quantity"] = this.quantity;
|
|
48612
48605
|
data["material"] = this.material;
|
|
48613
48606
|
data["covered"] = this.covered;
|
|
@@ -48636,7 +48629,6 @@ export interface ITrackingHistoryFlattenedDto {
|
|
|
48636
48629
|
partNumber?: string | null;
|
|
48637
48630
|
projectId?: string | null;
|
|
48638
48631
|
projectName?: string | null;
|
|
48639
|
-
projectBomPosition?: string | null;
|
|
48640
48632
|
quantity?: number | null;
|
|
48641
48633
|
material?: string | null;
|
|
48642
48634
|
covered?: MaterialCoveredDto | null;
|