@ignos/api-client 20240514.0.9277 → 20240521.0.9296

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.
@@ -1999,7 +1999,7 @@ export interface IWorkordersClient {
1999
1999
  * @param request Trace details
2000
2000
  */
2001
2001
  upsertWorkorderTraces(id: string, request: UpsertWorkOrderTracesRequest): Promise<void>;
2002
- setWorkorderCustomerOrderReference(id: string, request: WorkorderCustomerOrderReferenceDto): Promise<void>;
2002
+ setWorkorderCustomerOrderReference(id: string, request: WorkorderCustomerOrderReferenceDto | undefined): Promise<void>;
2003
2003
  checkResourceStatus(id: string): Promise<ResourceExistDto>;
2004
2004
  /**
2005
2005
  * Register start work or setup on a workorder operation.
@@ -2101,7 +2101,7 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
2101
2101
  */
2102
2102
  upsertWorkorderTraces(id: string, request: UpsertWorkOrderTracesRequest): Promise<void>;
2103
2103
  protected processUpsertWorkorderTraces(response: Response): Promise<void>;
2104
- setWorkorderCustomerOrderReference(id: string, request: WorkorderCustomerOrderReferenceDto): Promise<void>;
2104
+ setWorkorderCustomerOrderReference(id: string, request: WorkorderCustomerOrderReferenceDto | undefined): Promise<void>;
2105
2105
  protected processSetWorkorderCustomerOrderReference(response: Response): Promise<void>;
2106
2106
  checkResourceStatus(id: string): Promise<ResourceExistDto>;
2107
2107
  protected processCheckResourceStatus(response: Response): Promise<ResourceExistDto>;
@@ -4250,6 +4250,7 @@ export declare class CreateMeasuringToolRequest implements ICreateMeasuringToolR
4250
4250
  precision?: string | null;
4251
4251
  uploadKey?: string | null;
4252
4252
  filename?: string | null;
4253
+ initialCalibrationDate?: Date | null;
4253
4254
  constructor(data?: ICreateMeasuringToolRequest);
4254
4255
  init(_data?: any): void;
4255
4256
  static fromJS(data: any): CreateMeasuringToolRequest;
@@ -4271,6 +4272,7 @@ export interface ICreateMeasuringToolRequest {
4271
4272
  precision?: string | null;
4272
4273
  uploadKey?: string | null;
4273
4274
  filename?: string | null;
4275
+ initialCalibrationDate?: Date | null;
4274
4276
  }
4275
4277
  export declare class UpdateMeasuringToolRequest implements IUpdateMeasuringToolRequest {
4276
4278
  name: string;
@@ -5008,7 +5010,9 @@ export interface IMachineGroupUtilizationDto {
5008
5010
  machines: MachineUtilizationV2Dto[];
5009
5011
  }
5010
5012
  export declare class MachineUtilizationV2Dto implements IMachineUtilizationV2Dto {
5013
+ id?: number;
5011
5014
  name: string;
5015
+ description?: string | null;
5012
5016
  utilization: UtilizationDto;
5013
5017
  constructor(data?: IMachineUtilizationV2Dto);
5014
5018
  init(_data?: any): void;
@@ -5016,7 +5020,9 @@ export declare class MachineUtilizationV2Dto implements IMachineUtilizationV2Dto
5016
5020
  toJSON(data?: any): any;
5017
5021
  }
5018
5022
  export interface IMachineUtilizationV2Dto {
5023
+ id?: number;
5019
5024
  name: string;
5025
+ description?: string | null;
5020
5026
  utilization: UtilizationDto;
5021
5027
  }
5022
5028
  export declare class OperatorAndMachineDto implements IOperatorAndMachineDto {
@@ -6595,6 +6601,7 @@ export declare class CncToolDto implements ICncToolDto {
6595
6601
  diameter?: number | null;
6596
6602
  grade?: string | null;
6597
6603
  radius?: number | null;
6604
+ chamfer?: number | null;
6598
6605
  width?: number | null;
6599
6606
  pitch?: string | null;
6600
6607
  length?: number | null;
@@ -6625,6 +6632,7 @@ export interface ICncToolDto {
6625
6632
  diameter?: number | null;
6626
6633
  grade?: string | null;
6627
6634
  radius?: number | null;
6635
+ chamfer?: number | null;
6628
6636
  width?: number | null;
6629
6637
  pitch?: string | null;
6630
6638
  length?: number | null;
@@ -6751,6 +6759,8 @@ export declare class CncToolSubTypeDto implements ICncToolSubTypeDto {
6751
6759
  gradeHelperText: string;
6752
6760
  radius: boolean;
6753
6761
  radiusHelperText: string;
6762
+ chamfer: boolean;
6763
+ chamferHelperText: string;
6754
6764
  width: boolean;
6755
6765
  widthHelperText: string;
6756
6766
  pitch: boolean;
@@ -6790,6 +6800,8 @@ export interface ICncToolSubTypeDto {
6790
6800
  gradeHelperText: string;
6791
6801
  radius: boolean;
6792
6802
  radiusHelperText: string;
6803
+ chamfer: boolean;
6804
+ chamferHelperText: string;
6793
6805
  width: boolean;
6794
6806
  widthHelperText: string;
6795
6807
  pitch: boolean;
@@ -6821,6 +6833,7 @@ export declare class CreateCncMachineOperationToolRequest implements ICreateCncM
6821
6833
  diameter?: number | null;
6822
6834
  grade?: string | null;
6823
6835
  radius?: number | null;
6836
+ chamfer?: number | null;
6824
6837
  width?: number | null;
6825
6838
  pitch?: string | null;
6826
6839
  length?: number | null;
@@ -6846,6 +6859,7 @@ export interface ICreateCncMachineOperationToolRequest {
6846
6859
  diameter?: number | null;
6847
6860
  grade?: string | null;
6848
6861
  radius?: number | null;
6862
+ chamfer?: number | null;
6849
6863
  width?: number | null;
6850
6864
  pitch?: string | null;
6851
6865
  length?: number | null;
@@ -6867,6 +6881,7 @@ export declare class UpdateCncMachineOperationToolRequest implements IUpdateCncM
6867
6881
  diameter?: number | null;
6868
6882
  grade?: string | null;
6869
6883
  radius?: number | null;
6884
+ chamfer?: number | null;
6870
6885
  width?: number | null;
6871
6886
  pitch?: string | null;
6872
6887
  length?: number | null;
@@ -6892,6 +6907,7 @@ export interface IUpdateCncMachineOperationToolRequest {
6892
6907
  diameter?: number | null;
6893
6908
  grade?: string | null;
6894
6909
  radius?: number | null;
6910
+ chamfer?: number | null;
6895
6911
  width?: number | null;
6896
6912
  pitch?: string | null;
6897
6913
  length?: number | null;
@@ -6925,6 +6941,7 @@ export declare class UpdateCncMachineToolRequest implements IUpdateCncMachineToo
6925
6941
  diameter?: number | null;
6926
6942
  grade?: string | null;
6927
6943
  radius?: number | null;
6944
+ chamfer?: number | null;
6928
6945
  width?: number | null;
6929
6946
  pitch?: string | null;
6930
6947
  length?: number | null;
@@ -6950,6 +6967,7 @@ export interface IUpdateCncMachineToolRequest {
6950
6967
  diameter?: number | null;
6951
6968
  grade?: string | null;
6952
6969
  radius?: number | null;
6970
+ chamfer?: number | null;
6953
6971
  width?: number | null;
6954
6972
  pitch?: string | null;
6955
6973
  length?: number | null;
@@ -22373,6 +22373,7 @@ export class CreateMeasuringToolRequest {
22373
22373
  this.precision = _data["precision"];
22374
22374
  this.uploadKey = _data["uploadKey"];
22375
22375
  this.filename = _data["filename"];
22376
+ this.initialCalibrationDate = _data["initialCalibrationDate"] ? new Date(_data["initialCalibrationDate"].toString()) : undefined;
22376
22377
  }
22377
22378
  }
22378
22379
  static fromJS(data) {
@@ -22398,6 +22399,7 @@ export class CreateMeasuringToolRequest {
22398
22399
  data["precision"] = this.precision;
22399
22400
  data["uploadKey"] = this.uploadKey;
22400
22401
  data["filename"] = this.filename;
22402
+ data["initialCalibrationDate"] = this.initialCalibrationDate ? this.initialCalibrationDate.toISOString() : undefined;
22401
22403
  return data;
22402
22404
  }
22403
22405
  }
@@ -24008,7 +24010,9 @@ export class MachineUtilizationV2Dto {
24008
24010
  }
24009
24011
  init(_data) {
24010
24012
  if (_data) {
24013
+ this.id = _data["id"];
24011
24014
  this.name = _data["name"];
24015
+ this.description = _data["description"];
24012
24016
  this.utilization = _data["utilization"] ? UtilizationDto.fromJS(_data["utilization"]) : new UtilizationDto();
24013
24017
  }
24014
24018
  }
@@ -24020,7 +24024,9 @@ export class MachineUtilizationV2Dto {
24020
24024
  }
24021
24025
  toJSON(data) {
24022
24026
  data = typeof data === 'object' ? data : {};
24027
+ data["id"] = this.id;
24023
24028
  data["name"] = this.name;
24029
+ data["description"] = this.description;
24024
24030
  data["utilization"] = this.utilization ? this.utilization.toJSON() : undefined;
24025
24031
  return data;
24026
24032
  }
@@ -27046,6 +27052,7 @@ export class CncToolDto {
27046
27052
  this.diameter = _data["diameter"];
27047
27053
  this.grade = _data["grade"];
27048
27054
  this.radius = _data["radius"];
27055
+ this.chamfer = _data["chamfer"];
27049
27056
  this.width = _data["width"];
27050
27057
  this.pitch = _data["pitch"];
27051
27058
  this.length = _data["length"];
@@ -27084,6 +27091,7 @@ export class CncToolDto {
27084
27091
  data["diameter"] = this.diameter;
27085
27092
  data["grade"] = this.grade;
27086
27093
  data["radius"] = this.radius;
27094
+ data["chamfer"] = this.chamfer;
27087
27095
  data["width"] = this.width;
27088
27096
  data["pitch"] = this.pitch;
27089
27097
  data["length"] = this.length;
@@ -27343,6 +27351,8 @@ export class CncToolSubTypeDto {
27343
27351
  this.gradeHelperText = _data["gradeHelperText"];
27344
27352
  this.radius = _data["radius"];
27345
27353
  this.radiusHelperText = _data["radiusHelperText"];
27354
+ this.chamfer = _data["chamfer"];
27355
+ this.chamferHelperText = _data["chamferHelperText"];
27346
27356
  this.width = _data["width"];
27347
27357
  this.widthHelperText = _data["widthHelperText"];
27348
27358
  this.pitch = _data["pitch"];
@@ -27386,6 +27396,8 @@ export class CncToolSubTypeDto {
27386
27396
  data["gradeHelperText"] = this.gradeHelperText;
27387
27397
  data["radius"] = this.radius;
27388
27398
  data["radiusHelperText"] = this.radiusHelperText;
27399
+ data["chamfer"] = this.chamfer;
27400
+ data["chamferHelperText"] = this.chamferHelperText;
27389
27401
  data["width"] = this.width;
27390
27402
  data["widthHelperText"] = this.widthHelperText;
27391
27403
  data["pitch"] = this.pitch;
@@ -27429,6 +27441,7 @@ export class CreateCncMachineOperationToolRequest {
27429
27441
  this.diameter = _data["diameter"];
27430
27442
  this.grade = _data["grade"];
27431
27443
  this.radius = _data["radius"];
27444
+ this.chamfer = _data["chamfer"];
27432
27445
  this.width = _data["width"];
27433
27446
  this.pitch = _data["pitch"];
27434
27447
  this.length = _data["length"];
@@ -27458,6 +27471,7 @@ export class CreateCncMachineOperationToolRequest {
27458
27471
  data["diameter"] = this.diameter;
27459
27472
  data["grade"] = this.grade;
27460
27473
  data["radius"] = this.radius;
27474
+ data["chamfer"] = this.chamfer;
27461
27475
  data["width"] = this.width;
27462
27476
  data["pitch"] = this.pitch;
27463
27477
  data["length"] = this.length;
@@ -27491,6 +27505,7 @@ export class UpdateCncMachineOperationToolRequest {
27491
27505
  this.diameter = _data["diameter"];
27492
27506
  this.grade = _data["grade"];
27493
27507
  this.radius = _data["radius"];
27508
+ this.chamfer = _data["chamfer"];
27494
27509
  this.width = _data["width"];
27495
27510
  this.pitch = _data["pitch"];
27496
27511
  this.length = _data["length"];
@@ -27520,6 +27535,7 @@ export class UpdateCncMachineOperationToolRequest {
27520
27535
  data["diameter"] = this.diameter;
27521
27536
  data["grade"] = this.grade;
27522
27537
  data["radius"] = this.radius;
27538
+ data["chamfer"] = this.chamfer;
27523
27539
  data["width"] = this.width;
27524
27540
  data["pitch"] = this.pitch;
27525
27541
  data["length"] = this.length;
@@ -27581,6 +27597,7 @@ export class UpdateCncMachineToolRequest {
27581
27597
  this.diameter = _data["diameter"];
27582
27598
  this.grade = _data["grade"];
27583
27599
  this.radius = _data["radius"];
27600
+ this.chamfer = _data["chamfer"];
27584
27601
  this.width = _data["width"];
27585
27602
  this.pitch = _data["pitch"];
27586
27603
  this.length = _data["length"];
@@ -27610,6 +27627,7 @@ export class UpdateCncMachineToolRequest {
27610
27627
  data["diameter"] = this.diameter;
27611
27628
  data["grade"] = this.grade;
27612
27629
  data["radius"] = this.radius;
27630
+ data["chamfer"] = this.chamfer;
27613
27631
  data["width"] = this.width;
27614
27632
  data["pitch"] = this.pitch;
27615
27633
  data["length"] = this.length;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240514.0.9277",
3
+ "version": "20240521.0.9296",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -18124,7 +18124,7 @@ export interface IWorkordersClient {
18124
18124
  */
18125
18125
  upsertWorkorderTraces(id: string, request: UpsertWorkOrderTracesRequest): Promise<void>;
18126
18126
 
18127
- setWorkorderCustomerOrderReference(id: string, request: WorkorderCustomerOrderReferenceDto): Promise<void>;
18127
+ setWorkorderCustomerOrderReference(id: string, request: WorkorderCustomerOrderReferenceDto | undefined): Promise<void>;
18128
18128
 
18129
18129
  checkResourceStatus(id: string): Promise<ResourceExistDto>;
18130
18130
 
@@ -18476,7 +18476,7 @@ export class WorkordersClient extends AuthorizedApiBase implements IWorkordersCl
18476
18476
  return Promise.resolve<void>(null as any);
18477
18477
  }
18478
18478
 
18479
- setWorkorderCustomerOrderReference(id: string, request: WorkorderCustomerOrderReferenceDto): Promise<void> {
18479
+ setWorkorderCustomerOrderReference(id: string, request: WorkorderCustomerOrderReferenceDto | undefined): Promise<void> {
18480
18480
  let url_ = this.baseUrl + "/erp/workorders/{id}/customerorderreference";
18481
18481
  if (id === undefined || id === null)
18482
18482
  throw new Error("The parameter 'id' must be defined.");
@@ -25640,6 +25640,7 @@ export class CreateMeasuringToolRequest implements ICreateMeasuringToolRequest {
25640
25640
  precision?: string | null;
25641
25641
  uploadKey?: string | null;
25642
25642
  filename?: string | null;
25643
+ initialCalibrationDate?: Date | null;
25643
25644
 
25644
25645
  constructor(data?: ICreateMeasuringToolRequest) {
25645
25646
  if (data) {
@@ -25667,6 +25668,7 @@ export class CreateMeasuringToolRequest implements ICreateMeasuringToolRequest {
25667
25668
  this.precision = _data["precision"];
25668
25669
  this.uploadKey = _data["uploadKey"];
25669
25670
  this.filename = _data["filename"];
25671
+ this.initialCalibrationDate = _data["initialCalibrationDate"] ? new Date(_data["initialCalibrationDate"].toString()) : <any>undefined;
25670
25672
  }
25671
25673
  }
25672
25674
 
@@ -25694,6 +25696,7 @@ export class CreateMeasuringToolRequest implements ICreateMeasuringToolRequest {
25694
25696
  data["precision"] = this.precision;
25695
25697
  data["uploadKey"] = this.uploadKey;
25696
25698
  data["filename"] = this.filename;
25699
+ data["initialCalibrationDate"] = this.initialCalibrationDate ? this.initialCalibrationDate.toISOString() : <any>undefined;
25697
25700
  return data;
25698
25701
  }
25699
25702
  }
@@ -25714,6 +25717,7 @@ export interface ICreateMeasuringToolRequest {
25714
25717
  precision?: string | null;
25715
25718
  uploadKey?: string | null;
25716
25719
  filename?: string | null;
25720
+ initialCalibrationDate?: Date | null;
25717
25721
  }
25718
25722
 
25719
25723
  export class UpdateMeasuringToolRequest implements IUpdateMeasuringToolRequest {
@@ -28048,7 +28052,9 @@ export interface IMachineGroupUtilizationDto {
28048
28052
  }
28049
28053
 
28050
28054
  export class MachineUtilizationV2Dto implements IMachineUtilizationV2Dto {
28055
+ id?: number;
28051
28056
  name!: string;
28057
+ description?: string | null;
28052
28058
  utilization!: UtilizationDto;
28053
28059
 
28054
28060
  constructor(data?: IMachineUtilizationV2Dto) {
@@ -28065,7 +28071,9 @@ export class MachineUtilizationV2Dto implements IMachineUtilizationV2Dto {
28065
28071
 
28066
28072
  init(_data?: any) {
28067
28073
  if (_data) {
28074
+ this.id = _data["id"];
28068
28075
  this.name = _data["name"];
28076
+ this.description = _data["description"];
28069
28077
  this.utilization = _data["utilization"] ? UtilizationDto.fromJS(_data["utilization"]) : new UtilizationDto();
28070
28078
  }
28071
28079
  }
@@ -28079,14 +28087,18 @@ export class MachineUtilizationV2Dto implements IMachineUtilizationV2Dto {
28079
28087
 
28080
28088
  toJSON(data?: any) {
28081
28089
  data = typeof data === 'object' ? data : {};
28090
+ data["id"] = this.id;
28082
28091
  data["name"] = this.name;
28092
+ data["description"] = this.description;
28083
28093
  data["utilization"] = this.utilization ? this.utilization.toJSON() : <any>undefined;
28084
28094
  return data;
28085
28095
  }
28086
28096
  }
28087
28097
 
28088
28098
  export interface IMachineUtilizationV2Dto {
28099
+ id?: number;
28089
28100
  name: string;
28101
+ description?: string | null;
28090
28102
  utilization: UtilizationDto;
28091
28103
  }
28092
28104
 
@@ -32679,6 +32691,7 @@ export class CncToolDto implements ICncToolDto {
32679
32691
  diameter?: number | null;
32680
32692
  grade?: string | null;
32681
32693
  radius?: number | null;
32694
+ chamfer?: number | null;
32682
32695
  width?: number | null;
32683
32696
  pitch?: string | null;
32684
32697
  length?: number | null;
@@ -32715,6 +32728,7 @@ export class CncToolDto implements ICncToolDto {
32715
32728
  this.diameter = _data["diameter"];
32716
32729
  this.grade = _data["grade"];
32717
32730
  this.radius = _data["radius"];
32731
+ this.chamfer = _data["chamfer"];
32718
32732
  this.width = _data["width"];
32719
32733
  this.pitch = _data["pitch"];
32720
32734
  this.length = _data["length"];
@@ -32755,6 +32769,7 @@ export class CncToolDto implements ICncToolDto {
32755
32769
  data["diameter"] = this.diameter;
32756
32770
  data["grade"] = this.grade;
32757
32771
  data["radius"] = this.radius;
32772
+ data["chamfer"] = this.chamfer;
32758
32773
  data["width"] = this.width;
32759
32774
  data["pitch"] = this.pitch;
32760
32775
  data["length"] = this.length;
@@ -32788,6 +32803,7 @@ export interface ICncToolDto {
32788
32803
  diameter?: number | null;
32789
32804
  grade?: string | null;
32790
32805
  radius?: number | null;
32806
+ chamfer?: number | null;
32791
32807
  width?: number | null;
32792
32808
  pitch?: string | null;
32793
32809
  length?: number | null;
@@ -33132,6 +33148,8 @@ export class CncToolSubTypeDto implements ICncToolSubTypeDto {
33132
33148
  gradeHelperText!: string;
33133
33149
  radius!: boolean;
33134
33150
  radiusHelperText!: string;
33151
+ chamfer!: boolean;
33152
+ chamferHelperText!: string;
33135
33153
  width!: boolean;
33136
33154
  widthHelperText!: string;
33137
33155
  pitch!: boolean;
@@ -33177,6 +33195,8 @@ export class CncToolSubTypeDto implements ICncToolSubTypeDto {
33177
33195
  this.gradeHelperText = _data["gradeHelperText"];
33178
33196
  this.radius = _data["radius"];
33179
33197
  this.radiusHelperText = _data["radiusHelperText"];
33198
+ this.chamfer = _data["chamfer"];
33199
+ this.chamferHelperText = _data["chamferHelperText"];
33180
33200
  this.width = _data["width"];
33181
33201
  this.widthHelperText = _data["widthHelperText"];
33182
33202
  this.pitch = _data["pitch"];
@@ -33222,6 +33242,8 @@ export class CncToolSubTypeDto implements ICncToolSubTypeDto {
33222
33242
  data["gradeHelperText"] = this.gradeHelperText;
33223
33243
  data["radius"] = this.radius;
33224
33244
  data["radiusHelperText"] = this.radiusHelperText;
33245
+ data["chamfer"] = this.chamfer;
33246
+ data["chamferHelperText"] = this.chamferHelperText;
33225
33247
  data["width"] = this.width;
33226
33248
  data["widthHelperText"] = this.widthHelperText;
33227
33249
  data["pitch"] = this.pitch;
@@ -33260,6 +33282,8 @@ export interface ICncToolSubTypeDto {
33260
33282
  gradeHelperText: string;
33261
33283
  radius: boolean;
33262
33284
  radiusHelperText: string;
33285
+ chamfer: boolean;
33286
+ chamferHelperText: string;
33263
33287
  width: boolean;
33264
33288
  widthHelperText: string;
33265
33289
  pitch: boolean;
@@ -33292,6 +33316,7 @@ export class CreateCncMachineOperationToolRequest implements ICreateCncMachineOp
33292
33316
  diameter?: number | null;
33293
33317
  grade?: string | null;
33294
33318
  radius?: number | null;
33319
+ chamfer?: number | null;
33295
33320
  width?: number | null;
33296
33321
  pitch?: string | null;
33297
33322
  length?: number | null;
@@ -33323,6 +33348,7 @@ export class CreateCncMachineOperationToolRequest implements ICreateCncMachineOp
33323
33348
  this.diameter = _data["diameter"];
33324
33349
  this.grade = _data["grade"];
33325
33350
  this.radius = _data["radius"];
33351
+ this.chamfer = _data["chamfer"];
33326
33352
  this.width = _data["width"];
33327
33353
  this.pitch = _data["pitch"];
33328
33354
  this.length = _data["length"];
@@ -33354,6 +33380,7 @@ export class CreateCncMachineOperationToolRequest implements ICreateCncMachineOp
33354
33380
  data["diameter"] = this.diameter;
33355
33381
  data["grade"] = this.grade;
33356
33382
  data["radius"] = this.radius;
33383
+ data["chamfer"] = this.chamfer;
33357
33384
  data["width"] = this.width;
33358
33385
  data["pitch"] = this.pitch;
33359
33386
  data["length"] = this.length;
@@ -33378,6 +33405,7 @@ export interface ICreateCncMachineOperationToolRequest {
33378
33405
  diameter?: number | null;
33379
33406
  grade?: string | null;
33380
33407
  radius?: number | null;
33408
+ chamfer?: number | null;
33381
33409
  width?: number | null;
33382
33410
  pitch?: string | null;
33383
33411
  length?: number | null;
@@ -33400,6 +33428,7 @@ export class UpdateCncMachineOperationToolRequest implements IUpdateCncMachineOp
33400
33428
  diameter?: number | null;
33401
33429
  grade?: string | null;
33402
33430
  radius?: number | null;
33431
+ chamfer?: number | null;
33403
33432
  width?: number | null;
33404
33433
  pitch?: string | null;
33405
33434
  length?: number | null;
@@ -33431,6 +33460,7 @@ export class UpdateCncMachineOperationToolRequest implements IUpdateCncMachineOp
33431
33460
  this.diameter = _data["diameter"];
33432
33461
  this.grade = _data["grade"];
33433
33462
  this.radius = _data["radius"];
33463
+ this.chamfer = _data["chamfer"];
33434
33464
  this.width = _data["width"];
33435
33465
  this.pitch = _data["pitch"];
33436
33466
  this.length = _data["length"];
@@ -33462,6 +33492,7 @@ export class UpdateCncMachineOperationToolRequest implements IUpdateCncMachineOp
33462
33492
  data["diameter"] = this.diameter;
33463
33493
  data["grade"] = this.grade;
33464
33494
  data["radius"] = this.radius;
33495
+ data["chamfer"] = this.chamfer;
33465
33496
  data["width"] = this.width;
33466
33497
  data["pitch"] = this.pitch;
33467
33498
  data["length"] = this.length;
@@ -33486,6 +33517,7 @@ export interface IUpdateCncMachineOperationToolRequest {
33486
33517
  diameter?: number | null;
33487
33518
  grade?: string | null;
33488
33519
  radius?: number | null;
33520
+ chamfer?: number | null;
33489
33521
  width?: number | null;
33490
33522
  pitch?: string | null;
33491
33523
  length?: number | null;
@@ -33548,6 +33580,7 @@ export class UpdateCncMachineToolRequest implements IUpdateCncMachineToolRequest
33548
33580
  diameter?: number | null;
33549
33581
  grade?: string | null;
33550
33582
  radius?: number | null;
33583
+ chamfer?: number | null;
33551
33584
  width?: number | null;
33552
33585
  pitch?: string | null;
33553
33586
  length?: number | null;
@@ -33579,6 +33612,7 @@ export class UpdateCncMachineToolRequest implements IUpdateCncMachineToolRequest
33579
33612
  this.diameter = _data["diameter"];
33580
33613
  this.grade = _data["grade"];
33581
33614
  this.radius = _data["radius"];
33615
+ this.chamfer = _data["chamfer"];
33582
33616
  this.width = _data["width"];
33583
33617
  this.pitch = _data["pitch"];
33584
33618
  this.length = _data["length"];
@@ -33610,6 +33644,7 @@ export class UpdateCncMachineToolRequest implements IUpdateCncMachineToolRequest
33610
33644
  data["diameter"] = this.diameter;
33611
33645
  data["grade"] = this.grade;
33612
33646
  data["radius"] = this.radius;
33647
+ data["chamfer"] = this.chamfer;
33613
33648
  data["width"] = this.width;
33614
33649
  data["pitch"] = this.pitch;
33615
33650
  data["length"] = this.length;
@@ -33634,6 +33669,7 @@ export interface IUpdateCncMachineToolRequest {
33634
33669
  diameter?: number | null;
33635
33670
  grade?: string | null;
33636
33671
  radius?: number | null;
33672
+ chamfer?: number | null;
33637
33673
  width?: number | null;
33638
33674
  pitch?: string | null;
33639
33675
  length?: number | null;