@ignos/api-client 20241014.0.10569 → 20241022.0.10597
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 +12 -0
- package/lib/ignosportal-api.js +12 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +24 -0
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -8731,6 +8731,8 @@ export declare class ProductionOrderOperationDto implements IProductionOrderOper
|
|
|
8731
8731
|
program?: string | null;
|
|
8732
8732
|
toolNumber?: string | null;
|
|
8733
8733
|
disableSetupRegistration: boolean;
|
|
8734
|
+
productionStatus: OperationStatusDto;
|
|
8735
|
+
setupStatus?: OperationStatusDto | null;
|
|
8734
8736
|
constructor(data?: IProductionOrderOperationDto);
|
|
8735
8737
|
init(_data?: any): void;
|
|
8736
8738
|
static fromJS(data: any): ProductionOrderOperationDto;
|
|
@@ -8766,6 +8768,8 @@ export interface IProductionOrderOperationDto {
|
|
|
8766
8768
|
program?: string | null;
|
|
8767
8769
|
toolNumber?: string | null;
|
|
8768
8770
|
disableSetupRegistration: boolean;
|
|
8771
|
+
productionStatus: OperationStatusDto;
|
|
8772
|
+
setupStatus?: OperationStatusDto | null;
|
|
8769
8773
|
}
|
|
8770
8774
|
export declare class WarehouseLocationDto implements IWarehouseLocationDto {
|
|
8771
8775
|
zone?: string | null;
|
|
@@ -9204,6 +9208,8 @@ export declare class ProductionScheduleOperationDto implements IProductionSchedu
|
|
|
9204
9208
|
drawingNumber?: string | null;
|
|
9205
9209
|
disableSetupRegistration: boolean;
|
|
9206
9210
|
materialPickStatus: MaterialPickStatus;
|
|
9211
|
+
productionStatus: OperationStatusDto;
|
|
9212
|
+
setupStatus?: OperationStatusDto | null;
|
|
9207
9213
|
constructor(data?: IProductionScheduleOperationDto);
|
|
9208
9214
|
init(_data?: any): void;
|
|
9209
9215
|
static fromJS(data: any): ProductionScheduleOperationDto;
|
|
@@ -9256,6 +9262,8 @@ export interface IProductionScheduleOperationDto {
|
|
|
9256
9262
|
drawingNumber?: string | null;
|
|
9257
9263
|
disableSetupRegistration: boolean;
|
|
9258
9264
|
materialPickStatus: MaterialPickStatus;
|
|
9265
|
+
productionStatus: OperationStatusDto;
|
|
9266
|
+
setupStatus?: OperationStatusDto | null;
|
|
9259
9267
|
}
|
|
9260
9268
|
export declare class SurroundingOperationDto implements ISurroundingOperationDto {
|
|
9261
9269
|
id: string;
|
|
@@ -9732,6 +9740,8 @@ export declare class WorkorderOperationDto implements IWorkorderOperationDto {
|
|
|
9732
9740
|
usedProductionTime: number;
|
|
9733
9741
|
usedSetupTime: number;
|
|
9734
9742
|
materials: WorkorderMaterialDto[];
|
|
9743
|
+
productionStatus: OperationStatusDto;
|
|
9744
|
+
setupStatus?: OperationStatusDto | null;
|
|
9735
9745
|
constructor(data?: IWorkorderOperationDto);
|
|
9736
9746
|
init(_data?: any): void;
|
|
9737
9747
|
static fromJS(data: any): WorkorderOperationDto;
|
|
@@ -9755,6 +9765,8 @@ export interface IWorkorderOperationDto {
|
|
|
9755
9765
|
usedProductionTime: number;
|
|
9756
9766
|
usedSetupTime: number;
|
|
9757
9767
|
materials: WorkorderMaterialDto[];
|
|
9768
|
+
productionStatus: OperationStatusDto;
|
|
9769
|
+
setupStatus?: OperationStatusDto | null;
|
|
9758
9770
|
}
|
|
9759
9771
|
export declare class WorkorderMaterialDto implements IWorkorderMaterialDto {
|
|
9760
9772
|
materialLine: number;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -32612,6 +32612,8 @@ export class ProductionOrderOperationDto {
|
|
|
32612
32612
|
this.program = _data["program"];
|
|
32613
32613
|
this.toolNumber = _data["toolNumber"];
|
|
32614
32614
|
this.disableSetupRegistration = _data["disableSetupRegistration"];
|
|
32615
|
+
this.productionStatus = _data["productionStatus"];
|
|
32616
|
+
this.setupStatus = _data["setupStatus"];
|
|
32615
32617
|
}
|
|
32616
32618
|
}
|
|
32617
32619
|
static fromJS(data) {
|
|
@@ -32651,6 +32653,8 @@ export class ProductionOrderOperationDto {
|
|
|
32651
32653
|
data["program"] = this.program;
|
|
32652
32654
|
data["toolNumber"] = this.toolNumber;
|
|
32653
32655
|
data["disableSetupRegistration"] = this.disableSetupRegistration;
|
|
32656
|
+
data["productionStatus"] = this.productionStatus;
|
|
32657
|
+
data["setupStatus"] = this.setupStatus;
|
|
32654
32658
|
return data;
|
|
32655
32659
|
}
|
|
32656
32660
|
}
|
|
@@ -33486,6 +33490,8 @@ export class ProductionScheduleOperationDto {
|
|
|
33486
33490
|
this.drawingNumber = _data["drawingNumber"];
|
|
33487
33491
|
this.disableSetupRegistration = _data["disableSetupRegistration"];
|
|
33488
33492
|
this.materialPickStatus = _data["materialPickStatus"];
|
|
33493
|
+
this.productionStatus = _data["productionStatus"];
|
|
33494
|
+
this.setupStatus = _data["setupStatus"];
|
|
33489
33495
|
}
|
|
33490
33496
|
}
|
|
33491
33497
|
static fromJS(data) {
|
|
@@ -33542,6 +33548,8 @@ export class ProductionScheduleOperationDto {
|
|
|
33542
33548
|
data["drawingNumber"] = this.drawingNumber;
|
|
33543
33549
|
data["disableSetupRegistration"] = this.disableSetupRegistration;
|
|
33544
33550
|
data["materialPickStatus"] = this.materialPickStatus;
|
|
33551
|
+
data["productionStatus"] = this.productionStatus;
|
|
33552
|
+
data["setupStatus"] = this.setupStatus;
|
|
33545
33553
|
return data;
|
|
33546
33554
|
}
|
|
33547
33555
|
}
|
|
@@ -34717,6 +34725,8 @@ export class WorkorderOperationDto {
|
|
|
34717
34725
|
for (let item of _data["materials"])
|
|
34718
34726
|
this.materials.push(WorkorderMaterialDto.fromJS(item));
|
|
34719
34727
|
}
|
|
34728
|
+
this.productionStatus = _data["productionStatus"];
|
|
34729
|
+
this.setupStatus = _data["setupStatus"];
|
|
34720
34730
|
}
|
|
34721
34731
|
}
|
|
34722
34732
|
static fromJS(data) {
|
|
@@ -34748,6 +34758,8 @@ export class WorkorderOperationDto {
|
|
|
34748
34758
|
for (let item of this.materials)
|
|
34749
34759
|
data["materials"].push(item.toJSON());
|
|
34750
34760
|
}
|
|
34761
|
+
data["productionStatus"] = this.productionStatus;
|
|
34762
|
+
data["setupStatus"] = this.setupStatus;
|
|
34751
34763
|
return data;
|
|
34752
34764
|
}
|
|
34753
34765
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -40273,6 +40273,8 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
|
|
|
40273
40273
|
program?: string | null;
|
|
40274
40274
|
toolNumber?: string | null;
|
|
40275
40275
|
disableSetupRegistration!: boolean;
|
|
40276
|
+
productionStatus!: OperationStatusDto;
|
|
40277
|
+
setupStatus?: OperationStatusDto | null;
|
|
40276
40278
|
|
|
40277
40279
|
constructor(data?: IProductionOrderOperationDto) {
|
|
40278
40280
|
if (data) {
|
|
@@ -40314,6 +40316,8 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
|
|
|
40314
40316
|
this.program = _data["program"];
|
|
40315
40317
|
this.toolNumber = _data["toolNumber"];
|
|
40316
40318
|
this.disableSetupRegistration = _data["disableSetupRegistration"];
|
|
40319
|
+
this.productionStatus = _data["productionStatus"];
|
|
40320
|
+
this.setupStatus = _data["setupStatus"];
|
|
40317
40321
|
}
|
|
40318
40322
|
}
|
|
40319
40323
|
|
|
@@ -40355,6 +40359,8 @@ export class ProductionOrderOperationDto implements IProductionOrderOperationDto
|
|
|
40355
40359
|
data["program"] = this.program;
|
|
40356
40360
|
data["toolNumber"] = this.toolNumber;
|
|
40357
40361
|
data["disableSetupRegistration"] = this.disableSetupRegistration;
|
|
40362
|
+
data["productionStatus"] = this.productionStatus;
|
|
40363
|
+
data["setupStatus"] = this.setupStatus;
|
|
40358
40364
|
return data;
|
|
40359
40365
|
}
|
|
40360
40366
|
}
|
|
@@ -40389,6 +40395,8 @@ export interface IProductionOrderOperationDto {
|
|
|
40389
40395
|
program?: string | null;
|
|
40390
40396
|
toolNumber?: string | null;
|
|
40391
40397
|
disableSetupRegistration: boolean;
|
|
40398
|
+
productionStatus: OperationStatusDto;
|
|
40399
|
+
setupStatus?: OperationStatusDto | null;
|
|
40392
40400
|
}
|
|
40393
40401
|
|
|
40394
40402
|
export class WarehouseLocationDto implements IWarehouseLocationDto {
|
|
@@ -41602,6 +41610,8 @@ export class ProductionScheduleOperationDto implements IProductionScheduleOperat
|
|
|
41602
41610
|
drawingNumber?: string | null;
|
|
41603
41611
|
disableSetupRegistration!: boolean;
|
|
41604
41612
|
materialPickStatus!: MaterialPickStatus;
|
|
41613
|
+
productionStatus!: OperationStatusDto;
|
|
41614
|
+
setupStatus?: OperationStatusDto | null;
|
|
41605
41615
|
|
|
41606
41616
|
constructor(data?: IProductionScheduleOperationDto) {
|
|
41607
41617
|
if (data) {
|
|
@@ -41663,6 +41673,8 @@ export class ProductionScheduleOperationDto implements IProductionScheduleOperat
|
|
|
41663
41673
|
this.drawingNumber = _data["drawingNumber"];
|
|
41664
41674
|
this.disableSetupRegistration = _data["disableSetupRegistration"];
|
|
41665
41675
|
this.materialPickStatus = _data["materialPickStatus"];
|
|
41676
|
+
this.productionStatus = _data["productionStatus"];
|
|
41677
|
+
this.setupStatus = _data["setupStatus"];
|
|
41666
41678
|
}
|
|
41667
41679
|
}
|
|
41668
41680
|
|
|
@@ -41721,6 +41733,8 @@ export class ProductionScheduleOperationDto implements IProductionScheduleOperat
|
|
|
41721
41733
|
data["drawingNumber"] = this.drawingNumber;
|
|
41722
41734
|
data["disableSetupRegistration"] = this.disableSetupRegistration;
|
|
41723
41735
|
data["materialPickStatus"] = this.materialPickStatus;
|
|
41736
|
+
data["productionStatus"] = this.productionStatus;
|
|
41737
|
+
data["setupStatus"] = this.setupStatus;
|
|
41724
41738
|
return data;
|
|
41725
41739
|
}
|
|
41726
41740
|
}
|
|
@@ -41772,6 +41786,8 @@ export interface IProductionScheduleOperationDto {
|
|
|
41772
41786
|
drawingNumber?: string | null;
|
|
41773
41787
|
disableSetupRegistration: boolean;
|
|
41774
41788
|
materialPickStatus: MaterialPickStatus;
|
|
41789
|
+
productionStatus: OperationStatusDto;
|
|
41790
|
+
setupStatus?: OperationStatusDto | null;
|
|
41775
41791
|
}
|
|
41776
41792
|
|
|
41777
41793
|
export class SurroundingOperationDto implements ISurroundingOperationDto {
|
|
@@ -43391,6 +43407,8 @@ export class WorkorderOperationDto implements IWorkorderOperationDto {
|
|
|
43391
43407
|
usedProductionTime!: number;
|
|
43392
43408
|
usedSetupTime!: number;
|
|
43393
43409
|
materials!: WorkorderMaterialDto[];
|
|
43410
|
+
productionStatus!: OperationStatusDto;
|
|
43411
|
+
setupStatus?: OperationStatusDto | null;
|
|
43394
43412
|
|
|
43395
43413
|
constructor(data?: IWorkorderOperationDto) {
|
|
43396
43414
|
if (data) {
|
|
@@ -43427,6 +43445,8 @@ export class WorkorderOperationDto implements IWorkorderOperationDto {
|
|
|
43427
43445
|
for (let item of _data["materials"])
|
|
43428
43446
|
this.materials!.push(WorkorderMaterialDto.fromJS(item));
|
|
43429
43447
|
}
|
|
43448
|
+
this.productionStatus = _data["productionStatus"];
|
|
43449
|
+
this.setupStatus = _data["setupStatus"];
|
|
43430
43450
|
}
|
|
43431
43451
|
}
|
|
43432
43452
|
|
|
@@ -43460,6 +43480,8 @@ export class WorkorderOperationDto implements IWorkorderOperationDto {
|
|
|
43460
43480
|
for (let item of this.materials)
|
|
43461
43481
|
data["materials"].push(item.toJSON());
|
|
43462
43482
|
}
|
|
43483
|
+
data["productionStatus"] = this.productionStatus;
|
|
43484
|
+
data["setupStatus"] = this.setupStatus;
|
|
43463
43485
|
return data;
|
|
43464
43486
|
}
|
|
43465
43487
|
}
|
|
@@ -43482,6 +43504,8 @@ export interface IWorkorderOperationDto {
|
|
|
43482
43504
|
usedProductionTime: number;
|
|
43483
43505
|
usedSetupTime: number;
|
|
43484
43506
|
materials: WorkorderMaterialDto[];
|
|
43507
|
+
productionStatus: OperationStatusDto;
|
|
43508
|
+
setupStatus?: OperationStatusDto | null;
|
|
43485
43509
|
}
|
|
43486
43510
|
|
|
43487
43511
|
export class WorkorderMaterialDto implements IWorkorderMaterialDto {
|