@ignos/api-client 20240726.0.9866 → 20240730.0.9871-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.
@@ -6441,6 +6441,12 @@ export declare class ListCncPartsRequest implements IListCncPartsRequest {
6441
6441
  filterDeleted?: CncFilterDeletedDto | null;
6442
6442
  filter?: string | null;
6443
6443
  continuationToken?: string | null;
6444
+ operationCreatedBy?: string | null;
6445
+ operationUpdatedBy?: string | null;
6446
+ operationMinCreatedDate?: Date | null;
6447
+ operationMaxCreatedDate?: Date | null;
6448
+ operationMinUpdatedDate?: Date | null;
6449
+ operationMaxUpdatedDate?: Date | null;
6444
6450
  constructor(data?: IListCncPartsRequest);
6445
6451
  init(_data?: any): void;
6446
6452
  static fromJS(data: any): ListCncPartsRequest;
@@ -6459,6 +6465,12 @@ export interface IListCncPartsRequest {
6459
6465
  filterDeleted?: CncFilterDeletedDto | null;
6460
6466
  filter?: string | null;
6461
6467
  continuationToken?: string | null;
6468
+ operationCreatedBy?: string | null;
6469
+ operationUpdatedBy?: string | null;
6470
+ operationMinCreatedDate?: Date | null;
6471
+ operationMaxCreatedDate?: Date | null;
6472
+ operationMinUpdatedDate?: Date | null;
6473
+ operationMaxUpdatedDate?: Date | null;
6462
6474
  }
6463
6475
  export declare class CopyCncPart implements ICopyCncPart {
6464
6476
  sourcePartId: string;
@@ -6523,6 +6535,7 @@ export declare class CncMachineOperationDto implements ICncMachineOperationDto {
6523
6535
  fixture?: string | null;
6524
6536
  status: CncOperationStatus;
6525
6537
  deleted: boolean;
6538
+ auditInfo: CncSetupAuditDto;
6526
6539
  constructor(data?: ICncMachineOperationDto);
6527
6540
  init(_data?: any): void;
6528
6541
  static fromJS(data: any): CncMachineOperationDto;
@@ -6543,8 +6556,33 @@ export interface ICncMachineOperationDto {
6543
6556
  fixture?: string | null;
6544
6557
  status: CncOperationStatus;
6545
6558
  deleted: boolean;
6559
+ auditInfo: CncSetupAuditDto;
6546
6560
  }
6547
6561
  export type CncOperationStatus = "Draft" | "Ready" | "Verified" | "Archived";
6562
+ export declare class CncSetupAuditDto implements ICncSetupAuditDto {
6563
+ created: Date;
6564
+ createdBy: string;
6565
+ createdById: string;
6566
+ createdByName?: string | null;
6567
+ updated?: Date | null;
6568
+ updatedBy?: string | null;
6569
+ updatedById?: string | null;
6570
+ updatedByName?: string | null;
6571
+ constructor(data?: ICncSetupAuditDto);
6572
+ init(_data?: any): void;
6573
+ static fromJS(data: any): CncSetupAuditDto;
6574
+ toJSON(data?: any): any;
6575
+ }
6576
+ export interface ICncSetupAuditDto {
6577
+ created: Date;
6578
+ createdBy: string;
6579
+ createdById: string;
6580
+ createdByName?: string | null;
6581
+ updated?: Date | null;
6582
+ updatedBy?: string | null;
6583
+ updatedById?: string | null;
6584
+ updatedByName?: string | null;
6585
+ }
6548
6586
  export declare class CreateCncMachineOperation implements ICreateCncMachineOperation {
6549
6587
  cncPartId: string;
6550
6588
  operation?: number | null;
@@ -6603,6 +6641,7 @@ export declare class CncMachineOperationSearchResultDto implements ICncMachineOp
6603
6641
  description?: string | null;
6604
6642
  status: CncOperationStatus;
6605
6643
  deleted: boolean;
6644
+ auditInfo: CncSetupAuditDto;
6606
6645
  constructor(data?: ICncMachineOperationSearchResultDto);
6607
6646
  init(_data?: any): void;
6608
6647
  static fromJS(data: any): CncMachineOperationSearchResultDto;
@@ -6626,6 +6665,7 @@ export interface ICncMachineOperationSearchResultDto {
6626
6665
  description?: string | null;
6627
6666
  status: CncOperationStatus;
6628
6667
  deleted: boolean;
6668
+ auditInfo: CncSetupAuditDto;
6629
6669
  }
6630
6670
  export declare class ListCncMachineOperationsRequest implements IListCncMachineOperationsRequest {
6631
6671
  pageSize?: number | null;
@@ -6641,6 +6681,12 @@ export declare class ListCncMachineOperationsRequest implements IListCncMachineO
6641
6681
  filterDeleted?: CncFilterDeletedDto | null;
6642
6682
  filter?: string | null;
6643
6683
  continuationToken?: string | null;
6684
+ createdBy?: string | null;
6685
+ updatedBy?: string | null;
6686
+ minCreatedDate?: Date | null;
6687
+ maxCreatedDate?: Date | null;
6688
+ minUpdatedDate?: Date | null;
6689
+ maxUpdatedDate?: Date | null;
6644
6690
  constructor(data?: IListCncMachineOperationsRequest);
6645
6691
  init(_data?: any): void;
6646
6692
  static fromJS(data: any): ListCncMachineOperationsRequest;
@@ -6660,6 +6706,12 @@ export interface IListCncMachineOperationsRequest {
6660
6706
  filterDeleted?: CncFilterDeletedDto | null;
6661
6707
  filter?: string | null;
6662
6708
  continuationToken?: string | null;
6709
+ createdBy?: string | null;
6710
+ updatedBy?: string | null;
6711
+ minCreatedDate?: Date | null;
6712
+ maxCreatedDate?: Date | null;
6713
+ minUpdatedDate?: Date | null;
6714
+ maxUpdatedDate?: Date | null;
6663
6715
  }
6664
6716
  export declare class UpdateCncMachineOperationRequest implements IUpdateCncMachineOperationRequest {
6665
6717
  operation?: number | null;
@@ -6793,30 +6845,6 @@ export interface IImageFileDto {
6793
6845
  name: string;
6794
6846
  thumbnailUrl?: string | null;
6795
6847
  }
6796
- export declare class CncSetupAuditDto implements ICncSetupAuditDto {
6797
- created: Date;
6798
- createdBy: string;
6799
- createdById: string;
6800
- createdByName?: string | null;
6801
- updated?: Date | null;
6802
- updatedBy?: string | null;
6803
- updatedById?: string | null;
6804
- updatedByName?: string | null;
6805
- constructor(data?: ICncSetupAuditDto);
6806
- init(_data?: any): void;
6807
- static fromJS(data: any): CncSetupAuditDto;
6808
- toJSON(data?: any): any;
6809
- }
6810
- export interface ICncSetupAuditDto {
6811
- created: Date;
6812
- createdBy: string;
6813
- createdById: string;
6814
- createdByName?: string | null;
6815
- updated?: Date | null;
6816
- updatedBy?: string | null;
6817
- updatedById?: string | null;
6818
- updatedByName?: string | null;
6819
- }
6820
6848
  export declare class CopyToolsCncMachine implements ICopyToolsCncMachine {
6821
6849
  sourceMachineId: string;
6822
6850
  targetOperationId: string;
@@ -27820,6 +27820,12 @@ export class ListCncPartsRequest {
27820
27820
  this.filterDeleted = _data["filterDeleted"];
27821
27821
  this.filter = _data["filter"];
27822
27822
  this.continuationToken = _data["continuationToken"];
27823
+ this.operationCreatedBy = _data["operationCreatedBy"];
27824
+ this.operationUpdatedBy = _data["operationUpdatedBy"];
27825
+ this.operationMinCreatedDate = _data["operationMinCreatedDate"] ? new Date(_data["operationMinCreatedDate"].toString()) : undefined;
27826
+ this.operationMaxCreatedDate = _data["operationMaxCreatedDate"] ? new Date(_data["operationMaxCreatedDate"].toString()) : undefined;
27827
+ this.operationMinUpdatedDate = _data["operationMinUpdatedDate"] ? new Date(_data["operationMinUpdatedDate"].toString()) : undefined;
27828
+ this.operationMaxUpdatedDate = _data["operationMaxUpdatedDate"] ? new Date(_data["operationMaxUpdatedDate"].toString()) : undefined;
27823
27829
  }
27824
27830
  }
27825
27831
  static fromJS(data) {
@@ -27842,6 +27848,12 @@ export class ListCncPartsRequest {
27842
27848
  data["filterDeleted"] = this.filterDeleted;
27843
27849
  data["filter"] = this.filter;
27844
27850
  data["continuationToken"] = this.continuationToken;
27851
+ data["operationCreatedBy"] = this.operationCreatedBy;
27852
+ data["operationUpdatedBy"] = this.operationUpdatedBy;
27853
+ data["operationMinCreatedDate"] = this.operationMinCreatedDate ? formatDate(this.operationMinCreatedDate) : undefined;
27854
+ data["operationMaxCreatedDate"] = this.operationMaxCreatedDate ? formatDate(this.operationMaxCreatedDate) : undefined;
27855
+ data["operationMinUpdatedDate"] = this.operationMinUpdatedDate ? formatDate(this.operationMinUpdatedDate) : undefined;
27856
+ data["operationMaxUpdatedDate"] = this.operationMaxUpdatedDate ? formatDate(this.operationMaxUpdatedDate) : undefined;
27845
27857
  return data;
27846
27858
  }
27847
27859
  }
@@ -27949,6 +27961,9 @@ export class CncMachineOperationDto {
27949
27961
  this[property] = data[property];
27950
27962
  }
27951
27963
  }
27964
+ if (!data) {
27965
+ this.auditInfo = new CncSetupAuditDto();
27966
+ }
27952
27967
  }
27953
27968
  init(_data) {
27954
27969
  if (_data) {
@@ -27966,6 +27981,7 @@ export class CncMachineOperationDto {
27966
27981
  this.fixture = _data["fixture"];
27967
27982
  this.status = _data["status"];
27968
27983
  this.deleted = _data["deleted"];
27984
+ this.auditInfo = _data["auditInfo"] ? CncSetupAuditDto.fromJS(_data["auditInfo"]) : new CncSetupAuditDto();
27969
27985
  }
27970
27986
  }
27971
27987
  static fromJS(data) {
@@ -27990,6 +28006,47 @@ export class CncMachineOperationDto {
27990
28006
  data["fixture"] = this.fixture;
27991
28007
  data["status"] = this.status;
27992
28008
  data["deleted"] = this.deleted;
28009
+ data["auditInfo"] = this.auditInfo ? this.auditInfo.toJSON() : undefined;
28010
+ return data;
28011
+ }
28012
+ }
28013
+ export class CncSetupAuditDto {
28014
+ constructor(data) {
28015
+ if (data) {
28016
+ for (var property in data) {
28017
+ if (data.hasOwnProperty(property))
28018
+ this[property] = data[property];
28019
+ }
28020
+ }
28021
+ }
28022
+ init(_data) {
28023
+ if (_data) {
28024
+ this.created = _data["created"] ? new Date(_data["created"].toString()) : undefined;
28025
+ this.createdBy = _data["createdBy"];
28026
+ this.createdById = _data["createdById"];
28027
+ this.createdByName = _data["createdByName"];
28028
+ this.updated = _data["updated"] ? new Date(_data["updated"].toString()) : undefined;
28029
+ this.updatedBy = _data["updatedBy"];
28030
+ this.updatedById = _data["updatedById"];
28031
+ this.updatedByName = _data["updatedByName"];
28032
+ }
28033
+ }
28034
+ static fromJS(data) {
28035
+ data = typeof data === 'object' ? data : {};
28036
+ let result = new CncSetupAuditDto();
28037
+ result.init(data);
28038
+ return result;
28039
+ }
28040
+ toJSON(data) {
28041
+ data = typeof data === 'object' ? data : {};
28042
+ data["created"] = this.created ? this.created.toISOString() : undefined;
28043
+ data["createdBy"] = this.createdBy;
28044
+ data["createdById"] = this.createdById;
28045
+ data["createdByName"] = this.createdByName;
28046
+ data["updated"] = this.updated ? this.updated.toISOString() : undefined;
28047
+ data["updatedBy"] = this.updatedBy;
28048
+ data["updatedById"] = this.updatedById;
28049
+ data["updatedByName"] = this.updatedByName;
27993
28050
  return data;
27994
28051
  }
27995
28052
  }
@@ -28084,6 +28141,9 @@ export class CncMachineOperationSearchResultDto {
28084
28141
  this[property] = data[property];
28085
28142
  }
28086
28143
  }
28144
+ if (!data) {
28145
+ this.auditInfo = new CncSetupAuditDto();
28146
+ }
28087
28147
  }
28088
28148
  init(_data) {
28089
28149
  if (_data) {
@@ -28104,6 +28164,7 @@ export class CncMachineOperationSearchResultDto {
28104
28164
  this.description = _data["description"];
28105
28165
  this.status = _data["status"];
28106
28166
  this.deleted = _data["deleted"];
28167
+ this.auditInfo = _data["auditInfo"] ? CncSetupAuditDto.fromJS(_data["auditInfo"]) : new CncSetupAuditDto();
28107
28168
  }
28108
28169
  }
28109
28170
  static fromJS(data) {
@@ -28131,6 +28192,7 @@ export class CncMachineOperationSearchResultDto {
28131
28192
  data["description"] = this.description;
28132
28193
  data["status"] = this.status;
28133
28194
  data["deleted"] = this.deleted;
28195
+ data["auditInfo"] = this.auditInfo ? this.auditInfo.toJSON() : undefined;
28134
28196
  return data;
28135
28197
  }
28136
28198
  }
@@ -28158,6 +28220,12 @@ export class ListCncMachineOperationsRequest {
28158
28220
  this.filterDeleted = _data["filterDeleted"];
28159
28221
  this.filter = _data["filter"];
28160
28222
  this.continuationToken = _data["continuationToken"];
28223
+ this.createdBy = _data["createdBy"];
28224
+ this.updatedBy = _data["updatedBy"];
28225
+ this.minCreatedDate = _data["minCreatedDate"] ? new Date(_data["minCreatedDate"].toString()) : undefined;
28226
+ this.maxCreatedDate = _data["maxCreatedDate"] ? new Date(_data["maxCreatedDate"].toString()) : undefined;
28227
+ this.minUpdatedDate = _data["minUpdatedDate"] ? new Date(_data["minUpdatedDate"].toString()) : undefined;
28228
+ this.maxUpdatedDate = _data["maxUpdatedDate"] ? new Date(_data["maxUpdatedDate"].toString()) : undefined;
28161
28229
  }
28162
28230
  }
28163
28231
  static fromJS(data) {
@@ -28181,6 +28249,12 @@ export class ListCncMachineOperationsRequest {
28181
28249
  data["filterDeleted"] = this.filterDeleted;
28182
28250
  data["filter"] = this.filter;
28183
28251
  data["continuationToken"] = this.continuationToken;
28252
+ data["createdBy"] = this.createdBy;
28253
+ data["updatedBy"] = this.updatedBy;
28254
+ data["minCreatedDate"] = this.minCreatedDate ? formatDate(this.minCreatedDate) : undefined;
28255
+ data["maxCreatedDate"] = this.maxCreatedDate ? formatDate(this.maxCreatedDate) : undefined;
28256
+ data["minUpdatedDate"] = this.minUpdatedDate ? formatDate(this.minUpdatedDate) : undefined;
28257
+ data["maxUpdatedDate"] = this.maxUpdatedDate ? formatDate(this.maxUpdatedDate) : undefined;
28184
28258
  return data;
28185
28259
  }
28186
28260
  }
@@ -28415,46 +28489,6 @@ export class ImageFileDto {
28415
28489
  return data;
28416
28490
  }
28417
28491
  }
28418
- export class CncSetupAuditDto {
28419
- constructor(data) {
28420
- if (data) {
28421
- for (var property in data) {
28422
- if (data.hasOwnProperty(property))
28423
- this[property] = data[property];
28424
- }
28425
- }
28426
- }
28427
- init(_data) {
28428
- if (_data) {
28429
- this.created = _data["created"] ? new Date(_data["created"].toString()) : undefined;
28430
- this.createdBy = _data["createdBy"];
28431
- this.createdById = _data["createdById"];
28432
- this.createdByName = _data["createdByName"];
28433
- this.updated = _data["updated"] ? new Date(_data["updated"].toString()) : undefined;
28434
- this.updatedBy = _data["updatedBy"];
28435
- this.updatedById = _data["updatedById"];
28436
- this.updatedByName = _data["updatedByName"];
28437
- }
28438
- }
28439
- static fromJS(data) {
28440
- data = typeof data === 'object' ? data : {};
28441
- let result = new CncSetupAuditDto();
28442
- result.init(data);
28443
- return result;
28444
- }
28445
- toJSON(data) {
28446
- data = typeof data === 'object' ? data : {};
28447
- data["created"] = this.created ? this.created.toISOString() : undefined;
28448
- data["createdBy"] = this.createdBy;
28449
- data["createdById"] = this.createdById;
28450
- data["createdByName"] = this.createdByName;
28451
- data["updated"] = this.updated ? this.updated.toISOString() : undefined;
28452
- data["updatedBy"] = this.updatedBy;
28453
- data["updatedById"] = this.updatedById;
28454
- data["updatedByName"] = this.updatedByName;
28455
- return data;
28456
- }
28457
- }
28458
28492
  export class CopyToolsCncMachine {
28459
28493
  constructor(data) {
28460
28494
  if (data) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240726.0.9866",
3
+ "version": "20240730.0.9871-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -33253,6 +33253,12 @@ export class ListCncPartsRequest implements IListCncPartsRequest {
33253
33253
  filterDeleted?: CncFilterDeletedDto | null;
33254
33254
  filter?: string | null;
33255
33255
  continuationToken?: string | null;
33256
+ operationCreatedBy?: string | null;
33257
+ operationUpdatedBy?: string | null;
33258
+ operationMinCreatedDate?: Date | null;
33259
+ operationMaxCreatedDate?: Date | null;
33260
+ operationMinUpdatedDate?: Date | null;
33261
+ operationMaxUpdatedDate?: Date | null;
33256
33262
 
33257
33263
  constructor(data?: IListCncPartsRequest) {
33258
33264
  if (data) {
@@ -33277,6 +33283,12 @@ export class ListCncPartsRequest implements IListCncPartsRequest {
33277
33283
  this.filterDeleted = _data["filterDeleted"];
33278
33284
  this.filter = _data["filter"];
33279
33285
  this.continuationToken = _data["continuationToken"];
33286
+ this.operationCreatedBy = _data["operationCreatedBy"];
33287
+ this.operationUpdatedBy = _data["operationUpdatedBy"];
33288
+ this.operationMinCreatedDate = _data["operationMinCreatedDate"] ? new Date(_data["operationMinCreatedDate"].toString()) : <any>undefined;
33289
+ this.operationMaxCreatedDate = _data["operationMaxCreatedDate"] ? new Date(_data["operationMaxCreatedDate"].toString()) : <any>undefined;
33290
+ this.operationMinUpdatedDate = _data["operationMinUpdatedDate"] ? new Date(_data["operationMinUpdatedDate"].toString()) : <any>undefined;
33291
+ this.operationMaxUpdatedDate = _data["operationMaxUpdatedDate"] ? new Date(_data["operationMaxUpdatedDate"].toString()) : <any>undefined;
33280
33292
  }
33281
33293
  }
33282
33294
 
@@ -33301,6 +33313,12 @@ export class ListCncPartsRequest implements IListCncPartsRequest {
33301
33313
  data["filterDeleted"] = this.filterDeleted;
33302
33314
  data["filter"] = this.filter;
33303
33315
  data["continuationToken"] = this.continuationToken;
33316
+ data["operationCreatedBy"] = this.operationCreatedBy;
33317
+ data["operationUpdatedBy"] = this.operationUpdatedBy;
33318
+ data["operationMinCreatedDate"] = this.operationMinCreatedDate ? formatDate(this.operationMinCreatedDate) : <any>undefined;
33319
+ data["operationMaxCreatedDate"] = this.operationMaxCreatedDate ? formatDate(this.operationMaxCreatedDate) : <any>undefined;
33320
+ data["operationMinUpdatedDate"] = this.operationMinUpdatedDate ? formatDate(this.operationMinUpdatedDate) : <any>undefined;
33321
+ data["operationMaxUpdatedDate"] = this.operationMaxUpdatedDate ? formatDate(this.operationMaxUpdatedDate) : <any>undefined;
33304
33322
  return data;
33305
33323
  }
33306
33324
  }
@@ -33318,6 +33336,12 @@ export interface IListCncPartsRequest {
33318
33336
  filterDeleted?: CncFilterDeletedDto | null;
33319
33337
  filter?: string | null;
33320
33338
  continuationToken?: string | null;
33339
+ operationCreatedBy?: string | null;
33340
+ operationUpdatedBy?: string | null;
33341
+ operationMinCreatedDate?: Date | null;
33342
+ operationMaxCreatedDate?: Date | null;
33343
+ operationMinUpdatedDate?: Date | null;
33344
+ operationMaxUpdatedDate?: Date | null;
33321
33345
  }
33322
33346
 
33323
33347
  export class CopyCncPart implements ICopyCncPart {
@@ -33479,6 +33503,7 @@ export class CncMachineOperationDto implements ICncMachineOperationDto {
33479
33503
  fixture?: string | null;
33480
33504
  status!: CncOperationStatus;
33481
33505
  deleted!: boolean;
33506
+ auditInfo!: CncSetupAuditDto;
33482
33507
 
33483
33508
  constructor(data?: ICncMachineOperationDto) {
33484
33509
  if (data) {
@@ -33487,6 +33512,9 @@ export class CncMachineOperationDto implements ICncMachineOperationDto {
33487
33512
  (<any>this)[property] = (<any>data)[property];
33488
33513
  }
33489
33514
  }
33515
+ if (!data) {
33516
+ this.auditInfo = new CncSetupAuditDto();
33517
+ }
33490
33518
  }
33491
33519
 
33492
33520
  init(_data?: any) {
@@ -33505,6 +33533,7 @@ export class CncMachineOperationDto implements ICncMachineOperationDto {
33505
33533
  this.fixture = _data["fixture"];
33506
33534
  this.status = _data["status"];
33507
33535
  this.deleted = _data["deleted"];
33536
+ this.auditInfo = _data["auditInfo"] ? CncSetupAuditDto.fromJS(_data["auditInfo"]) : new CncSetupAuditDto();
33508
33537
  }
33509
33538
  }
33510
33539
 
@@ -33531,6 +33560,7 @@ export class CncMachineOperationDto implements ICncMachineOperationDto {
33531
33560
  data["fixture"] = this.fixture;
33532
33561
  data["status"] = this.status;
33533
33562
  data["deleted"] = this.deleted;
33563
+ data["auditInfo"] = this.auditInfo ? this.auditInfo.toJSON() : <any>undefined;
33534
33564
  return data;
33535
33565
  }
33536
33566
  }
@@ -33550,10 +33580,75 @@ export interface ICncMachineOperationDto {
33550
33580
  fixture?: string | null;
33551
33581
  status: CncOperationStatus;
33552
33582
  deleted: boolean;
33583
+ auditInfo: CncSetupAuditDto;
33553
33584
  }
33554
33585
 
33555
33586
  export type CncOperationStatus = "Draft" | "Ready" | "Verified" | "Archived";
33556
33587
 
33588
+ export class CncSetupAuditDto implements ICncSetupAuditDto {
33589
+ created!: Date;
33590
+ createdBy!: string;
33591
+ createdById!: string;
33592
+ createdByName?: string | null;
33593
+ updated?: Date | null;
33594
+ updatedBy?: string | null;
33595
+ updatedById?: string | null;
33596
+ updatedByName?: string | null;
33597
+
33598
+ constructor(data?: ICncSetupAuditDto) {
33599
+ if (data) {
33600
+ for (var property in data) {
33601
+ if (data.hasOwnProperty(property))
33602
+ (<any>this)[property] = (<any>data)[property];
33603
+ }
33604
+ }
33605
+ }
33606
+
33607
+ init(_data?: any) {
33608
+ if (_data) {
33609
+ this.created = _data["created"] ? new Date(_data["created"].toString()) : <any>undefined;
33610
+ this.createdBy = _data["createdBy"];
33611
+ this.createdById = _data["createdById"];
33612
+ this.createdByName = _data["createdByName"];
33613
+ this.updated = _data["updated"] ? new Date(_data["updated"].toString()) : <any>undefined;
33614
+ this.updatedBy = _data["updatedBy"];
33615
+ this.updatedById = _data["updatedById"];
33616
+ this.updatedByName = _data["updatedByName"];
33617
+ }
33618
+ }
33619
+
33620
+ static fromJS(data: any): CncSetupAuditDto {
33621
+ data = typeof data === 'object' ? data : {};
33622
+ let result = new CncSetupAuditDto();
33623
+ result.init(data);
33624
+ return result;
33625
+ }
33626
+
33627
+ toJSON(data?: any) {
33628
+ data = typeof data === 'object' ? data : {};
33629
+ data["created"] = this.created ? this.created.toISOString() : <any>undefined;
33630
+ data["createdBy"] = this.createdBy;
33631
+ data["createdById"] = this.createdById;
33632
+ data["createdByName"] = this.createdByName;
33633
+ data["updated"] = this.updated ? this.updated.toISOString() : <any>undefined;
33634
+ data["updatedBy"] = this.updatedBy;
33635
+ data["updatedById"] = this.updatedById;
33636
+ data["updatedByName"] = this.updatedByName;
33637
+ return data;
33638
+ }
33639
+ }
33640
+
33641
+ export interface ICncSetupAuditDto {
33642
+ created: Date;
33643
+ createdBy: string;
33644
+ createdById: string;
33645
+ createdByName?: string | null;
33646
+ updated?: Date | null;
33647
+ updatedBy?: string | null;
33648
+ updatedById?: string | null;
33649
+ updatedByName?: string | null;
33650
+ }
33651
+
33557
33652
  export class CreateCncMachineOperation implements ICreateCncMachineOperation {
33558
33653
  cncPartId!: string;
33559
33654
  operation?: number | null;
@@ -33695,6 +33790,7 @@ export class CncMachineOperationSearchResultDto implements ICncMachineOperationS
33695
33790
  description?: string | null;
33696
33791
  status!: CncOperationStatus;
33697
33792
  deleted!: boolean;
33793
+ auditInfo!: CncSetupAuditDto;
33698
33794
 
33699
33795
  constructor(data?: ICncMachineOperationSearchResultDto) {
33700
33796
  if (data) {
@@ -33703,6 +33799,9 @@ export class CncMachineOperationSearchResultDto implements ICncMachineOperationS
33703
33799
  (<any>this)[property] = (<any>data)[property];
33704
33800
  }
33705
33801
  }
33802
+ if (!data) {
33803
+ this.auditInfo = new CncSetupAuditDto();
33804
+ }
33706
33805
  }
33707
33806
 
33708
33807
  init(_data?: any) {
@@ -33724,6 +33823,7 @@ export class CncMachineOperationSearchResultDto implements ICncMachineOperationS
33724
33823
  this.description = _data["description"];
33725
33824
  this.status = _data["status"];
33726
33825
  this.deleted = _data["deleted"];
33826
+ this.auditInfo = _data["auditInfo"] ? CncSetupAuditDto.fromJS(_data["auditInfo"]) : new CncSetupAuditDto();
33727
33827
  }
33728
33828
  }
33729
33829
 
@@ -33753,6 +33853,7 @@ export class CncMachineOperationSearchResultDto implements ICncMachineOperationS
33753
33853
  data["description"] = this.description;
33754
33854
  data["status"] = this.status;
33755
33855
  data["deleted"] = this.deleted;
33856
+ data["auditInfo"] = this.auditInfo ? this.auditInfo.toJSON() : <any>undefined;
33756
33857
  return data;
33757
33858
  }
33758
33859
  }
@@ -33775,6 +33876,7 @@ export interface ICncMachineOperationSearchResultDto {
33775
33876
  description?: string | null;
33776
33877
  status: CncOperationStatus;
33777
33878
  deleted: boolean;
33879
+ auditInfo: CncSetupAuditDto;
33778
33880
  }
33779
33881
 
33780
33882
  export class ListCncMachineOperationsRequest implements IListCncMachineOperationsRequest {
@@ -33791,6 +33893,12 @@ export class ListCncMachineOperationsRequest implements IListCncMachineOperation
33791
33893
  filterDeleted?: CncFilterDeletedDto | null;
33792
33894
  filter?: string | null;
33793
33895
  continuationToken?: string | null;
33896
+ createdBy?: string | null;
33897
+ updatedBy?: string | null;
33898
+ minCreatedDate?: Date | null;
33899
+ maxCreatedDate?: Date | null;
33900
+ minUpdatedDate?: Date | null;
33901
+ maxUpdatedDate?: Date | null;
33794
33902
 
33795
33903
  constructor(data?: IListCncMachineOperationsRequest) {
33796
33904
  if (data) {
@@ -33816,6 +33924,12 @@ export class ListCncMachineOperationsRequest implements IListCncMachineOperation
33816
33924
  this.filterDeleted = _data["filterDeleted"];
33817
33925
  this.filter = _data["filter"];
33818
33926
  this.continuationToken = _data["continuationToken"];
33927
+ this.createdBy = _data["createdBy"];
33928
+ this.updatedBy = _data["updatedBy"];
33929
+ this.minCreatedDate = _data["minCreatedDate"] ? new Date(_data["minCreatedDate"].toString()) : <any>undefined;
33930
+ this.maxCreatedDate = _data["maxCreatedDate"] ? new Date(_data["maxCreatedDate"].toString()) : <any>undefined;
33931
+ this.minUpdatedDate = _data["minUpdatedDate"] ? new Date(_data["minUpdatedDate"].toString()) : <any>undefined;
33932
+ this.maxUpdatedDate = _data["maxUpdatedDate"] ? new Date(_data["maxUpdatedDate"].toString()) : <any>undefined;
33819
33933
  }
33820
33934
  }
33821
33935
 
@@ -33841,6 +33955,12 @@ export class ListCncMachineOperationsRequest implements IListCncMachineOperation
33841
33955
  data["filterDeleted"] = this.filterDeleted;
33842
33956
  data["filter"] = this.filter;
33843
33957
  data["continuationToken"] = this.continuationToken;
33958
+ data["createdBy"] = this.createdBy;
33959
+ data["updatedBy"] = this.updatedBy;
33960
+ data["minCreatedDate"] = this.minCreatedDate ? formatDate(this.minCreatedDate) : <any>undefined;
33961
+ data["maxCreatedDate"] = this.maxCreatedDate ? formatDate(this.maxCreatedDate) : <any>undefined;
33962
+ data["minUpdatedDate"] = this.minUpdatedDate ? formatDate(this.minUpdatedDate) : <any>undefined;
33963
+ data["maxUpdatedDate"] = this.maxUpdatedDate ? formatDate(this.maxUpdatedDate) : <any>undefined;
33844
33964
  return data;
33845
33965
  }
33846
33966
  }
@@ -33859,6 +33979,12 @@ export interface IListCncMachineOperationsRequest {
33859
33979
  filterDeleted?: CncFilterDeletedDto | null;
33860
33980
  filter?: string | null;
33861
33981
  continuationToken?: string | null;
33982
+ createdBy?: string | null;
33983
+ updatedBy?: string | null;
33984
+ minCreatedDate?: Date | null;
33985
+ maxCreatedDate?: Date | null;
33986
+ minUpdatedDate?: Date | null;
33987
+ maxUpdatedDate?: Date | null;
33862
33988
  }
33863
33989
 
33864
33990
  export class UpdateCncMachineOperationRequest implements IUpdateCncMachineOperationRequest {
@@ -34224,70 +34350,6 @@ export interface IImageFileDto {
34224
34350
  thumbnailUrl?: string | null;
34225
34351
  }
34226
34352
 
34227
- export class CncSetupAuditDto implements ICncSetupAuditDto {
34228
- created!: Date;
34229
- createdBy!: string;
34230
- createdById!: string;
34231
- createdByName?: string | null;
34232
- updated?: Date | null;
34233
- updatedBy?: string | null;
34234
- updatedById?: string | null;
34235
- updatedByName?: string | null;
34236
-
34237
- constructor(data?: ICncSetupAuditDto) {
34238
- if (data) {
34239
- for (var property in data) {
34240
- if (data.hasOwnProperty(property))
34241
- (<any>this)[property] = (<any>data)[property];
34242
- }
34243
- }
34244
- }
34245
-
34246
- init(_data?: any) {
34247
- if (_data) {
34248
- this.created = _data["created"] ? new Date(_data["created"].toString()) : <any>undefined;
34249
- this.createdBy = _data["createdBy"];
34250
- this.createdById = _data["createdById"];
34251
- this.createdByName = _data["createdByName"];
34252
- this.updated = _data["updated"] ? new Date(_data["updated"].toString()) : <any>undefined;
34253
- this.updatedBy = _data["updatedBy"];
34254
- this.updatedById = _data["updatedById"];
34255
- this.updatedByName = _data["updatedByName"];
34256
- }
34257
- }
34258
-
34259
- static fromJS(data: any): CncSetupAuditDto {
34260
- data = typeof data === 'object' ? data : {};
34261
- let result = new CncSetupAuditDto();
34262
- result.init(data);
34263
- return result;
34264
- }
34265
-
34266
- toJSON(data?: any) {
34267
- data = typeof data === 'object' ? data : {};
34268
- data["created"] = this.created ? this.created.toISOString() : <any>undefined;
34269
- data["createdBy"] = this.createdBy;
34270
- data["createdById"] = this.createdById;
34271
- data["createdByName"] = this.createdByName;
34272
- data["updated"] = this.updated ? this.updated.toISOString() : <any>undefined;
34273
- data["updatedBy"] = this.updatedBy;
34274
- data["updatedById"] = this.updatedById;
34275
- data["updatedByName"] = this.updatedByName;
34276
- return data;
34277
- }
34278
- }
34279
-
34280
- export interface ICncSetupAuditDto {
34281
- created: Date;
34282
- createdBy: string;
34283
- createdById: string;
34284
- createdByName?: string | null;
34285
- updated?: Date | null;
34286
- updatedBy?: string | null;
34287
- updatedById?: string | null;
34288
- updatedByName?: string | null;
34289
- }
34290
-
34291
34353
  export class CopyToolsCncMachine implements ICopyToolsCncMachine {
34292
34354
  sourceMachineId!: string;
34293
34355
  targetOperationId!: string;