@ignos/api-client 20241014.0.10569 → 20241023.0.10606

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.
@@ -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;
@@ -9803,10 +9815,12 @@ export declare class PurchaseOrderDetailsDto implements IPurchaseOrderDetailsDto
9803
9815
  deliveryDate?: Date | null;
9804
9816
  confirmedDeliveryDate?: Date | null;
9805
9817
  status?: PurchaseOrderStatusDto | null;
9818
+ approvalStatus?: PurchaseOrderApprovalStatusDto | null;
9806
9819
  orderer?: ErpUserDto | null;
9807
9820
  requester?: ErpUserDto | null;
9808
9821
  purchasedQuantity: number;
9809
9822
  unit?: string | null;
9823
+ vendorName?: string | null;
9810
9824
  constructor(data?: IPurchaseOrderDetailsDto);
9811
9825
  init(_data?: any): void;
9812
9826
  static fromJS(data: any): PurchaseOrderDetailsDto;
@@ -9819,12 +9833,15 @@ export interface IPurchaseOrderDetailsDto {
9819
9833
  deliveryDate?: Date | null;
9820
9834
  confirmedDeliveryDate?: Date | null;
9821
9835
  status?: PurchaseOrderStatusDto | null;
9836
+ approvalStatus?: PurchaseOrderApprovalStatusDto | null;
9822
9837
  orderer?: ErpUserDto | null;
9823
9838
  requester?: ErpUserDto | null;
9824
9839
  purchasedQuantity: number;
9825
9840
  unit?: string | null;
9841
+ vendorName?: string | null;
9826
9842
  }
9827
9843
  export type PurchaseOrderStatusDto = "None" | "Backorder" | "Received" | "Invoiced" | "Canceled";
9844
+ export type PurchaseOrderApprovalStatusDto = "Draft" | "InReview" | "Rejected" | "Approved" | "InExternalReview" | "Confirmed" | "Finalized";
9828
9845
  export declare class ErpUserDto implements IErpUserDto {
9829
9846
  azureAdObjectId?: string | null;
9830
9847
  name?: string | null;
@@ -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
  }
@@ -34843,10 +34855,12 @@ export class PurchaseOrderDetailsDto {
34843
34855
  this.deliveryDate = _data["deliveryDate"] ? new Date(_data["deliveryDate"].toString()) : undefined;
34844
34856
  this.confirmedDeliveryDate = _data["confirmedDeliveryDate"] ? new Date(_data["confirmedDeliveryDate"].toString()) : undefined;
34845
34857
  this.status = _data["status"];
34858
+ this.approvalStatus = _data["approvalStatus"];
34846
34859
  this.orderer = _data["orderer"] ? ErpUserDto.fromJS(_data["orderer"]) : undefined;
34847
34860
  this.requester = _data["requester"] ? ErpUserDto.fromJS(_data["requester"]) : undefined;
34848
34861
  this.purchasedQuantity = _data["purchasedQuantity"];
34849
34862
  this.unit = _data["unit"];
34863
+ this.vendorName = _data["vendorName"];
34850
34864
  }
34851
34865
  }
34852
34866
  static fromJS(data) {
@@ -34863,10 +34877,12 @@ export class PurchaseOrderDetailsDto {
34863
34877
  data["deliveryDate"] = this.deliveryDate ? this.deliveryDate.toISOString() : undefined;
34864
34878
  data["confirmedDeliveryDate"] = this.confirmedDeliveryDate ? this.confirmedDeliveryDate.toISOString() : undefined;
34865
34879
  data["status"] = this.status;
34880
+ data["approvalStatus"] = this.approvalStatus;
34866
34881
  data["orderer"] = this.orderer ? this.orderer.toJSON() : undefined;
34867
34882
  data["requester"] = this.requester ? this.requester.toJSON() : undefined;
34868
34883
  data["purchasedQuantity"] = this.purchasedQuantity;
34869
34884
  data["unit"] = this.unit;
34885
+ data["vendorName"] = this.vendorName;
34870
34886
  return data;
34871
34887
  }
34872
34888
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20241014.0.10569",
3
+ "version": "20241023.0.10606",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -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 {
@@ -43606,10 +43630,12 @@ export class PurchaseOrderDetailsDto implements IPurchaseOrderDetailsDto {
43606
43630
  deliveryDate?: Date | null;
43607
43631
  confirmedDeliveryDate?: Date | null;
43608
43632
  status?: PurchaseOrderStatusDto | null;
43633
+ approvalStatus?: PurchaseOrderApprovalStatusDto | null;
43609
43634
  orderer?: ErpUserDto | null;
43610
43635
  requester?: ErpUserDto | null;
43611
43636
  purchasedQuantity!: number;
43612
43637
  unit?: string | null;
43638
+ vendorName?: string | null;
43613
43639
 
43614
43640
  constructor(data?: IPurchaseOrderDetailsDto) {
43615
43641
  if (data) {
@@ -43628,10 +43654,12 @@ export class PurchaseOrderDetailsDto implements IPurchaseOrderDetailsDto {
43628
43654
  this.deliveryDate = _data["deliveryDate"] ? new Date(_data["deliveryDate"].toString()) : <any>undefined;
43629
43655
  this.confirmedDeliveryDate = _data["confirmedDeliveryDate"] ? new Date(_data["confirmedDeliveryDate"].toString()) : <any>undefined;
43630
43656
  this.status = _data["status"];
43657
+ this.approvalStatus = _data["approvalStatus"];
43631
43658
  this.orderer = _data["orderer"] ? ErpUserDto.fromJS(_data["orderer"]) : <any>undefined;
43632
43659
  this.requester = _data["requester"] ? ErpUserDto.fromJS(_data["requester"]) : <any>undefined;
43633
43660
  this.purchasedQuantity = _data["purchasedQuantity"];
43634
43661
  this.unit = _data["unit"];
43662
+ this.vendorName = _data["vendorName"];
43635
43663
  }
43636
43664
  }
43637
43665
 
@@ -43650,10 +43678,12 @@ export class PurchaseOrderDetailsDto implements IPurchaseOrderDetailsDto {
43650
43678
  data["deliveryDate"] = this.deliveryDate ? this.deliveryDate.toISOString() : <any>undefined;
43651
43679
  data["confirmedDeliveryDate"] = this.confirmedDeliveryDate ? this.confirmedDeliveryDate.toISOString() : <any>undefined;
43652
43680
  data["status"] = this.status;
43681
+ data["approvalStatus"] = this.approvalStatus;
43653
43682
  data["orderer"] = this.orderer ? this.orderer.toJSON() : <any>undefined;
43654
43683
  data["requester"] = this.requester ? this.requester.toJSON() : <any>undefined;
43655
43684
  data["purchasedQuantity"] = this.purchasedQuantity;
43656
43685
  data["unit"] = this.unit;
43686
+ data["vendorName"] = this.vendorName;
43657
43687
  return data;
43658
43688
  }
43659
43689
  }
@@ -43665,14 +43695,18 @@ export interface IPurchaseOrderDetailsDto {
43665
43695
  deliveryDate?: Date | null;
43666
43696
  confirmedDeliveryDate?: Date | null;
43667
43697
  status?: PurchaseOrderStatusDto | null;
43698
+ approvalStatus?: PurchaseOrderApprovalStatusDto | null;
43668
43699
  orderer?: ErpUserDto | null;
43669
43700
  requester?: ErpUserDto | null;
43670
43701
  purchasedQuantity: number;
43671
43702
  unit?: string | null;
43703
+ vendorName?: string | null;
43672
43704
  }
43673
43705
 
43674
43706
  export type PurchaseOrderStatusDto = "None" | "Backorder" | "Received" | "Invoiced" | "Canceled";
43675
43707
 
43708
+ export type PurchaseOrderApprovalStatusDto = "Draft" | "InReview" | "Rejected" | "Approved" | "InExternalReview" | "Confirmed" | "Finalized";
43709
+
43676
43710
  export class ErpUserDto implements IErpUserDto {
43677
43711
  azureAdObjectId?: string | null;
43678
43712
  name?: string | null;