@ignos/api-client 20240515.0.9279 → 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,6 +5010,7 @@ export interface IMachineGroupUtilizationDto {
5008
5010
  machines: MachineUtilizationV2Dto[];
5009
5011
  }
5010
5012
  export declare class MachineUtilizationV2Dto implements IMachineUtilizationV2Dto {
5013
+ id?: number;
5011
5014
  name: string;
5012
5015
  description?: string | null;
5013
5016
  utilization: UtilizationDto;
@@ -5017,6 +5020,7 @@ export declare class MachineUtilizationV2Dto implements IMachineUtilizationV2Dto
5017
5020
  toJSON(data?: any): any;
5018
5021
  }
5019
5022
  export interface IMachineUtilizationV2Dto {
5023
+ id?: number;
5020
5024
  name: string;
5021
5025
  description?: string | null;
5022
5026
  utilization: UtilizationDto;
@@ -6597,6 +6601,7 @@ export declare class CncToolDto implements ICncToolDto {
6597
6601
  diameter?: number | null;
6598
6602
  grade?: string | null;
6599
6603
  radius?: number | null;
6604
+ chamfer?: number | null;
6600
6605
  width?: number | null;
6601
6606
  pitch?: string | null;
6602
6607
  length?: number | null;
@@ -6627,6 +6632,7 @@ export interface ICncToolDto {
6627
6632
  diameter?: number | null;
6628
6633
  grade?: string | null;
6629
6634
  radius?: number | null;
6635
+ chamfer?: number | null;
6630
6636
  width?: number | null;
6631
6637
  pitch?: string | null;
6632
6638
  length?: number | null;
@@ -6753,6 +6759,8 @@ export declare class CncToolSubTypeDto implements ICncToolSubTypeDto {
6753
6759
  gradeHelperText: string;
6754
6760
  radius: boolean;
6755
6761
  radiusHelperText: string;
6762
+ chamfer: boolean;
6763
+ chamferHelperText: string;
6756
6764
  width: boolean;
6757
6765
  widthHelperText: string;
6758
6766
  pitch: boolean;
@@ -6792,6 +6800,8 @@ export interface ICncToolSubTypeDto {
6792
6800
  gradeHelperText: string;
6793
6801
  radius: boolean;
6794
6802
  radiusHelperText: string;
6803
+ chamfer: boolean;
6804
+ chamferHelperText: string;
6795
6805
  width: boolean;
6796
6806
  widthHelperText: string;
6797
6807
  pitch: boolean;
@@ -6823,6 +6833,7 @@ export declare class CreateCncMachineOperationToolRequest implements ICreateCncM
6823
6833
  diameter?: number | null;
6824
6834
  grade?: string | null;
6825
6835
  radius?: number | null;
6836
+ chamfer?: number | null;
6826
6837
  width?: number | null;
6827
6838
  pitch?: string | null;
6828
6839
  length?: number | null;
@@ -6848,6 +6859,7 @@ export interface ICreateCncMachineOperationToolRequest {
6848
6859
  diameter?: number | null;
6849
6860
  grade?: string | null;
6850
6861
  radius?: number | null;
6862
+ chamfer?: number | null;
6851
6863
  width?: number | null;
6852
6864
  pitch?: string | null;
6853
6865
  length?: number | null;
@@ -6869,6 +6881,7 @@ export declare class UpdateCncMachineOperationToolRequest implements IUpdateCncM
6869
6881
  diameter?: number | null;
6870
6882
  grade?: string | null;
6871
6883
  radius?: number | null;
6884
+ chamfer?: number | null;
6872
6885
  width?: number | null;
6873
6886
  pitch?: string | null;
6874
6887
  length?: number | null;
@@ -6894,6 +6907,7 @@ export interface IUpdateCncMachineOperationToolRequest {
6894
6907
  diameter?: number | null;
6895
6908
  grade?: string | null;
6896
6909
  radius?: number | null;
6910
+ chamfer?: number | null;
6897
6911
  width?: number | null;
6898
6912
  pitch?: string | null;
6899
6913
  length?: number | null;
@@ -6927,6 +6941,7 @@ export declare class UpdateCncMachineToolRequest implements IUpdateCncMachineToo
6927
6941
  diameter?: number | null;
6928
6942
  grade?: string | null;
6929
6943
  radius?: number | null;
6944
+ chamfer?: number | null;
6930
6945
  width?: number | null;
6931
6946
  pitch?: string | null;
6932
6947
  length?: number | null;
@@ -6952,6 +6967,7 @@ export interface IUpdateCncMachineToolRequest {
6952
6967
  diameter?: number | null;
6953
6968
  grade?: string | null;
6954
6969
  radius?: number | null;
6970
+ chamfer?: number | null;
6955
6971
  width?: number | null;
6956
6972
  pitch?: string | null;
6957
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,6 +24010,7 @@ export class MachineUtilizationV2Dto {
24008
24010
  }
24009
24011
  init(_data) {
24010
24012
  if (_data) {
24013
+ this.id = _data["id"];
24011
24014
  this.name = _data["name"];
24012
24015
  this.description = _data["description"];
24013
24016
  this.utilization = _data["utilization"] ? UtilizationDto.fromJS(_data["utilization"]) : new UtilizationDto();
@@ -24021,6 +24024,7 @@ export class MachineUtilizationV2Dto {
24021
24024
  }
24022
24025
  toJSON(data) {
24023
24026
  data = typeof data === 'object' ? data : {};
24027
+ data["id"] = this.id;
24024
24028
  data["name"] = this.name;
24025
24029
  data["description"] = this.description;
24026
24030
  data["utilization"] = this.utilization ? this.utilization.toJSON() : undefined;
@@ -27048,6 +27052,7 @@ export class CncToolDto {
27048
27052
  this.diameter = _data["diameter"];
27049
27053
  this.grade = _data["grade"];
27050
27054
  this.radius = _data["radius"];
27055
+ this.chamfer = _data["chamfer"];
27051
27056
  this.width = _data["width"];
27052
27057
  this.pitch = _data["pitch"];
27053
27058
  this.length = _data["length"];
@@ -27086,6 +27091,7 @@ export class CncToolDto {
27086
27091
  data["diameter"] = this.diameter;
27087
27092
  data["grade"] = this.grade;
27088
27093
  data["radius"] = this.radius;
27094
+ data["chamfer"] = this.chamfer;
27089
27095
  data["width"] = this.width;
27090
27096
  data["pitch"] = this.pitch;
27091
27097
  data["length"] = this.length;
@@ -27345,6 +27351,8 @@ export class CncToolSubTypeDto {
27345
27351
  this.gradeHelperText = _data["gradeHelperText"];
27346
27352
  this.radius = _data["radius"];
27347
27353
  this.radiusHelperText = _data["radiusHelperText"];
27354
+ this.chamfer = _data["chamfer"];
27355
+ this.chamferHelperText = _data["chamferHelperText"];
27348
27356
  this.width = _data["width"];
27349
27357
  this.widthHelperText = _data["widthHelperText"];
27350
27358
  this.pitch = _data["pitch"];
@@ -27388,6 +27396,8 @@ export class CncToolSubTypeDto {
27388
27396
  data["gradeHelperText"] = this.gradeHelperText;
27389
27397
  data["radius"] = this.radius;
27390
27398
  data["radiusHelperText"] = this.radiusHelperText;
27399
+ data["chamfer"] = this.chamfer;
27400
+ data["chamferHelperText"] = this.chamferHelperText;
27391
27401
  data["width"] = this.width;
27392
27402
  data["widthHelperText"] = this.widthHelperText;
27393
27403
  data["pitch"] = this.pitch;
@@ -27431,6 +27441,7 @@ export class CreateCncMachineOperationToolRequest {
27431
27441
  this.diameter = _data["diameter"];
27432
27442
  this.grade = _data["grade"];
27433
27443
  this.radius = _data["radius"];
27444
+ this.chamfer = _data["chamfer"];
27434
27445
  this.width = _data["width"];
27435
27446
  this.pitch = _data["pitch"];
27436
27447
  this.length = _data["length"];
@@ -27460,6 +27471,7 @@ export class CreateCncMachineOperationToolRequest {
27460
27471
  data["diameter"] = this.diameter;
27461
27472
  data["grade"] = this.grade;
27462
27473
  data["radius"] = this.radius;
27474
+ data["chamfer"] = this.chamfer;
27463
27475
  data["width"] = this.width;
27464
27476
  data["pitch"] = this.pitch;
27465
27477
  data["length"] = this.length;
@@ -27493,6 +27505,7 @@ export class UpdateCncMachineOperationToolRequest {
27493
27505
  this.diameter = _data["diameter"];
27494
27506
  this.grade = _data["grade"];
27495
27507
  this.radius = _data["radius"];
27508
+ this.chamfer = _data["chamfer"];
27496
27509
  this.width = _data["width"];
27497
27510
  this.pitch = _data["pitch"];
27498
27511
  this.length = _data["length"];
@@ -27522,6 +27535,7 @@ export class UpdateCncMachineOperationToolRequest {
27522
27535
  data["diameter"] = this.diameter;
27523
27536
  data["grade"] = this.grade;
27524
27537
  data["radius"] = this.radius;
27538
+ data["chamfer"] = this.chamfer;
27525
27539
  data["width"] = this.width;
27526
27540
  data["pitch"] = this.pitch;
27527
27541
  data["length"] = this.length;
@@ -27583,6 +27597,7 @@ export class UpdateCncMachineToolRequest {
27583
27597
  this.diameter = _data["diameter"];
27584
27598
  this.grade = _data["grade"];
27585
27599
  this.radius = _data["radius"];
27600
+ this.chamfer = _data["chamfer"];
27586
27601
  this.width = _data["width"];
27587
27602
  this.pitch = _data["pitch"];
27588
27603
  this.length = _data["length"];
@@ -27612,6 +27627,7 @@ export class UpdateCncMachineToolRequest {
27612
27627
  data["diameter"] = this.diameter;
27613
27628
  data["grade"] = this.grade;
27614
27629
  data["radius"] = this.radius;
27630
+ data["chamfer"] = this.chamfer;
27615
27631
  data["width"] = this.width;
27616
27632
  data["pitch"] = this.pitch;
27617
27633
  data["length"] = this.length;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240515.0.9279",
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,6 +28052,7 @@ export interface IMachineGroupUtilizationDto {
28048
28052
  }
28049
28053
 
28050
28054
  export class MachineUtilizationV2Dto implements IMachineUtilizationV2Dto {
28055
+ id?: number;
28051
28056
  name!: string;
28052
28057
  description?: string | null;
28053
28058
  utilization!: UtilizationDto;
@@ -28066,6 +28071,7 @@ export class MachineUtilizationV2Dto implements IMachineUtilizationV2Dto {
28066
28071
 
28067
28072
  init(_data?: any) {
28068
28073
  if (_data) {
28074
+ this.id = _data["id"];
28069
28075
  this.name = _data["name"];
28070
28076
  this.description = _data["description"];
28071
28077
  this.utilization = _data["utilization"] ? UtilizationDto.fromJS(_data["utilization"]) : new UtilizationDto();
@@ -28081,6 +28087,7 @@ export class MachineUtilizationV2Dto implements IMachineUtilizationV2Dto {
28081
28087
 
28082
28088
  toJSON(data?: any) {
28083
28089
  data = typeof data === 'object' ? data : {};
28090
+ data["id"] = this.id;
28084
28091
  data["name"] = this.name;
28085
28092
  data["description"] = this.description;
28086
28093
  data["utilization"] = this.utilization ? this.utilization.toJSON() : <any>undefined;
@@ -28089,6 +28096,7 @@ export class MachineUtilizationV2Dto implements IMachineUtilizationV2Dto {
28089
28096
  }
28090
28097
 
28091
28098
  export interface IMachineUtilizationV2Dto {
28099
+ id?: number;
28092
28100
  name: string;
28093
28101
  description?: string | null;
28094
28102
  utilization: UtilizationDto;
@@ -32683,6 +32691,7 @@ export class CncToolDto implements ICncToolDto {
32683
32691
  diameter?: number | null;
32684
32692
  grade?: string | null;
32685
32693
  radius?: number | null;
32694
+ chamfer?: number | null;
32686
32695
  width?: number | null;
32687
32696
  pitch?: string | null;
32688
32697
  length?: number | null;
@@ -32719,6 +32728,7 @@ export class CncToolDto implements ICncToolDto {
32719
32728
  this.diameter = _data["diameter"];
32720
32729
  this.grade = _data["grade"];
32721
32730
  this.radius = _data["radius"];
32731
+ this.chamfer = _data["chamfer"];
32722
32732
  this.width = _data["width"];
32723
32733
  this.pitch = _data["pitch"];
32724
32734
  this.length = _data["length"];
@@ -32759,6 +32769,7 @@ export class CncToolDto implements ICncToolDto {
32759
32769
  data["diameter"] = this.diameter;
32760
32770
  data["grade"] = this.grade;
32761
32771
  data["radius"] = this.radius;
32772
+ data["chamfer"] = this.chamfer;
32762
32773
  data["width"] = this.width;
32763
32774
  data["pitch"] = this.pitch;
32764
32775
  data["length"] = this.length;
@@ -32792,6 +32803,7 @@ export interface ICncToolDto {
32792
32803
  diameter?: number | null;
32793
32804
  grade?: string | null;
32794
32805
  radius?: number | null;
32806
+ chamfer?: number | null;
32795
32807
  width?: number | null;
32796
32808
  pitch?: string | null;
32797
32809
  length?: number | null;
@@ -33136,6 +33148,8 @@ export class CncToolSubTypeDto implements ICncToolSubTypeDto {
33136
33148
  gradeHelperText!: string;
33137
33149
  radius!: boolean;
33138
33150
  radiusHelperText!: string;
33151
+ chamfer!: boolean;
33152
+ chamferHelperText!: string;
33139
33153
  width!: boolean;
33140
33154
  widthHelperText!: string;
33141
33155
  pitch!: boolean;
@@ -33181,6 +33195,8 @@ export class CncToolSubTypeDto implements ICncToolSubTypeDto {
33181
33195
  this.gradeHelperText = _data["gradeHelperText"];
33182
33196
  this.radius = _data["radius"];
33183
33197
  this.radiusHelperText = _data["radiusHelperText"];
33198
+ this.chamfer = _data["chamfer"];
33199
+ this.chamferHelperText = _data["chamferHelperText"];
33184
33200
  this.width = _data["width"];
33185
33201
  this.widthHelperText = _data["widthHelperText"];
33186
33202
  this.pitch = _data["pitch"];
@@ -33226,6 +33242,8 @@ export class CncToolSubTypeDto implements ICncToolSubTypeDto {
33226
33242
  data["gradeHelperText"] = this.gradeHelperText;
33227
33243
  data["radius"] = this.radius;
33228
33244
  data["radiusHelperText"] = this.radiusHelperText;
33245
+ data["chamfer"] = this.chamfer;
33246
+ data["chamferHelperText"] = this.chamferHelperText;
33229
33247
  data["width"] = this.width;
33230
33248
  data["widthHelperText"] = this.widthHelperText;
33231
33249
  data["pitch"] = this.pitch;
@@ -33264,6 +33282,8 @@ export interface ICncToolSubTypeDto {
33264
33282
  gradeHelperText: string;
33265
33283
  radius: boolean;
33266
33284
  radiusHelperText: string;
33285
+ chamfer: boolean;
33286
+ chamferHelperText: string;
33267
33287
  width: boolean;
33268
33288
  widthHelperText: string;
33269
33289
  pitch: boolean;
@@ -33296,6 +33316,7 @@ export class CreateCncMachineOperationToolRequest implements ICreateCncMachineOp
33296
33316
  diameter?: number | null;
33297
33317
  grade?: string | null;
33298
33318
  radius?: number | null;
33319
+ chamfer?: number | null;
33299
33320
  width?: number | null;
33300
33321
  pitch?: string | null;
33301
33322
  length?: number | null;
@@ -33327,6 +33348,7 @@ export class CreateCncMachineOperationToolRequest implements ICreateCncMachineOp
33327
33348
  this.diameter = _data["diameter"];
33328
33349
  this.grade = _data["grade"];
33329
33350
  this.radius = _data["radius"];
33351
+ this.chamfer = _data["chamfer"];
33330
33352
  this.width = _data["width"];
33331
33353
  this.pitch = _data["pitch"];
33332
33354
  this.length = _data["length"];
@@ -33358,6 +33380,7 @@ export class CreateCncMachineOperationToolRequest implements ICreateCncMachineOp
33358
33380
  data["diameter"] = this.diameter;
33359
33381
  data["grade"] = this.grade;
33360
33382
  data["radius"] = this.radius;
33383
+ data["chamfer"] = this.chamfer;
33361
33384
  data["width"] = this.width;
33362
33385
  data["pitch"] = this.pitch;
33363
33386
  data["length"] = this.length;
@@ -33382,6 +33405,7 @@ export interface ICreateCncMachineOperationToolRequest {
33382
33405
  diameter?: number | null;
33383
33406
  grade?: string | null;
33384
33407
  radius?: number | null;
33408
+ chamfer?: number | null;
33385
33409
  width?: number | null;
33386
33410
  pitch?: string | null;
33387
33411
  length?: number | null;
@@ -33404,6 +33428,7 @@ export class UpdateCncMachineOperationToolRequest implements IUpdateCncMachineOp
33404
33428
  diameter?: number | null;
33405
33429
  grade?: string | null;
33406
33430
  radius?: number | null;
33431
+ chamfer?: number | null;
33407
33432
  width?: number | null;
33408
33433
  pitch?: string | null;
33409
33434
  length?: number | null;
@@ -33435,6 +33460,7 @@ export class UpdateCncMachineOperationToolRequest implements IUpdateCncMachineOp
33435
33460
  this.diameter = _data["diameter"];
33436
33461
  this.grade = _data["grade"];
33437
33462
  this.radius = _data["radius"];
33463
+ this.chamfer = _data["chamfer"];
33438
33464
  this.width = _data["width"];
33439
33465
  this.pitch = _data["pitch"];
33440
33466
  this.length = _data["length"];
@@ -33466,6 +33492,7 @@ export class UpdateCncMachineOperationToolRequest implements IUpdateCncMachineOp
33466
33492
  data["diameter"] = this.diameter;
33467
33493
  data["grade"] = this.grade;
33468
33494
  data["radius"] = this.radius;
33495
+ data["chamfer"] = this.chamfer;
33469
33496
  data["width"] = this.width;
33470
33497
  data["pitch"] = this.pitch;
33471
33498
  data["length"] = this.length;
@@ -33490,6 +33517,7 @@ export interface IUpdateCncMachineOperationToolRequest {
33490
33517
  diameter?: number | null;
33491
33518
  grade?: string | null;
33492
33519
  radius?: number | null;
33520
+ chamfer?: number | null;
33493
33521
  width?: number | null;
33494
33522
  pitch?: string | null;
33495
33523
  length?: number | null;
@@ -33552,6 +33580,7 @@ export class UpdateCncMachineToolRequest implements IUpdateCncMachineToolRequest
33552
33580
  diameter?: number | null;
33553
33581
  grade?: string | null;
33554
33582
  radius?: number | null;
33583
+ chamfer?: number | null;
33555
33584
  width?: number | null;
33556
33585
  pitch?: string | null;
33557
33586
  length?: number | null;
@@ -33583,6 +33612,7 @@ export class UpdateCncMachineToolRequest implements IUpdateCncMachineToolRequest
33583
33612
  this.diameter = _data["diameter"];
33584
33613
  this.grade = _data["grade"];
33585
33614
  this.radius = _data["radius"];
33615
+ this.chamfer = _data["chamfer"];
33586
33616
  this.width = _data["width"];
33587
33617
  this.pitch = _data["pitch"];
33588
33618
  this.length = _data["length"];
@@ -33614,6 +33644,7 @@ export class UpdateCncMachineToolRequest implements IUpdateCncMachineToolRequest
33614
33644
  data["diameter"] = this.diameter;
33615
33645
  data["grade"] = this.grade;
33616
33646
  data["radius"] = this.radius;
33647
+ data["chamfer"] = this.chamfer;
33617
33648
  data["width"] = this.width;
33618
33649
  data["pitch"] = this.pitch;
33619
33650
  data["length"] = this.length;
@@ -33638,6 +33669,7 @@ export interface IUpdateCncMachineToolRequest {
33638
33669
  diameter?: number | null;
33639
33670
  grade?: string | null;
33640
33671
  radius?: number | null;
33672
+ chamfer?: number | null;
33641
33673
  width?: number | null;
33642
33674
  pitch?: string | null;
33643
33675
  length?: number | null;