@ignos/api-client 20240730.0.9869-alpha → 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.
- package/lib/ignosportal-api.d.ts +28 -2
- package/lib/ignosportal-api.js +33 -1
- package/package.json +1 -1
- package/src/ignosportal-api.ts +61 -3
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -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,7 +6535,7 @@ export declare class CncMachineOperationDto implements ICncMachineOperationDto {
|
|
|
6523
6535
|
fixture?: string | null;
|
|
6524
6536
|
status: CncOperationStatus;
|
|
6525
6537
|
deleted: boolean;
|
|
6526
|
-
auditInfo
|
|
6538
|
+
auditInfo: CncSetupAuditDto;
|
|
6527
6539
|
constructor(data?: ICncMachineOperationDto);
|
|
6528
6540
|
init(_data?: any): void;
|
|
6529
6541
|
static fromJS(data: any): CncMachineOperationDto;
|
|
@@ -6544,7 +6556,7 @@ export interface ICncMachineOperationDto {
|
|
|
6544
6556
|
fixture?: string | null;
|
|
6545
6557
|
status: CncOperationStatus;
|
|
6546
6558
|
deleted: boolean;
|
|
6547
|
-
auditInfo
|
|
6559
|
+
auditInfo: CncSetupAuditDto;
|
|
6548
6560
|
}
|
|
6549
6561
|
export type CncOperationStatus = "Draft" | "Ready" | "Verified" | "Archived";
|
|
6550
6562
|
export declare class CncSetupAuditDto implements ICncSetupAuditDto {
|
|
@@ -6629,6 +6641,7 @@ export declare class CncMachineOperationSearchResultDto implements ICncMachineOp
|
|
|
6629
6641
|
description?: string | null;
|
|
6630
6642
|
status: CncOperationStatus;
|
|
6631
6643
|
deleted: boolean;
|
|
6644
|
+
auditInfo: CncSetupAuditDto;
|
|
6632
6645
|
constructor(data?: ICncMachineOperationSearchResultDto);
|
|
6633
6646
|
init(_data?: any): void;
|
|
6634
6647
|
static fromJS(data: any): CncMachineOperationSearchResultDto;
|
|
@@ -6652,6 +6665,7 @@ export interface ICncMachineOperationSearchResultDto {
|
|
|
6652
6665
|
description?: string | null;
|
|
6653
6666
|
status: CncOperationStatus;
|
|
6654
6667
|
deleted: boolean;
|
|
6668
|
+
auditInfo: CncSetupAuditDto;
|
|
6655
6669
|
}
|
|
6656
6670
|
export declare class ListCncMachineOperationsRequest implements IListCncMachineOperationsRequest {
|
|
6657
6671
|
pageSize?: number | null;
|
|
@@ -6667,6 +6681,12 @@ export declare class ListCncMachineOperationsRequest implements IListCncMachineO
|
|
|
6667
6681
|
filterDeleted?: CncFilterDeletedDto | null;
|
|
6668
6682
|
filter?: string | null;
|
|
6669
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;
|
|
6670
6690
|
constructor(data?: IListCncMachineOperationsRequest);
|
|
6671
6691
|
init(_data?: any): void;
|
|
6672
6692
|
static fromJS(data: any): ListCncMachineOperationsRequest;
|
|
@@ -6686,6 +6706,12 @@ export interface IListCncMachineOperationsRequest {
|
|
|
6686
6706
|
filterDeleted?: CncFilterDeletedDto | null;
|
|
6687
6707
|
filter?: string | null;
|
|
6688
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;
|
|
6689
6715
|
}
|
|
6690
6716
|
export declare class UpdateCncMachineOperationRequest implements IUpdateCncMachineOperationRequest {
|
|
6691
6717
|
operation?: number | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -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,7 +27981,7 @@ export class CncMachineOperationDto {
|
|
|
27966
27981
|
this.fixture = _data["fixture"];
|
|
27967
27982
|
this.status = _data["status"];
|
|
27968
27983
|
this.deleted = _data["deleted"];
|
|
27969
|
-
this.auditInfo = _data["auditInfo"] ? CncSetupAuditDto.fromJS(_data["auditInfo"]) :
|
|
27984
|
+
this.auditInfo = _data["auditInfo"] ? CncSetupAuditDto.fromJS(_data["auditInfo"]) : new CncSetupAuditDto();
|
|
27970
27985
|
}
|
|
27971
27986
|
}
|
|
27972
27987
|
static fromJS(data) {
|
|
@@ -28126,6 +28141,9 @@ export class CncMachineOperationSearchResultDto {
|
|
|
28126
28141
|
this[property] = data[property];
|
|
28127
28142
|
}
|
|
28128
28143
|
}
|
|
28144
|
+
if (!data) {
|
|
28145
|
+
this.auditInfo = new CncSetupAuditDto();
|
|
28146
|
+
}
|
|
28129
28147
|
}
|
|
28130
28148
|
init(_data) {
|
|
28131
28149
|
if (_data) {
|
|
@@ -28146,6 +28164,7 @@ export class CncMachineOperationSearchResultDto {
|
|
|
28146
28164
|
this.description = _data["description"];
|
|
28147
28165
|
this.status = _data["status"];
|
|
28148
28166
|
this.deleted = _data["deleted"];
|
|
28167
|
+
this.auditInfo = _data["auditInfo"] ? CncSetupAuditDto.fromJS(_data["auditInfo"]) : new CncSetupAuditDto();
|
|
28149
28168
|
}
|
|
28150
28169
|
}
|
|
28151
28170
|
static fromJS(data) {
|
|
@@ -28173,6 +28192,7 @@ export class CncMachineOperationSearchResultDto {
|
|
|
28173
28192
|
data["description"] = this.description;
|
|
28174
28193
|
data["status"] = this.status;
|
|
28175
28194
|
data["deleted"] = this.deleted;
|
|
28195
|
+
data["auditInfo"] = this.auditInfo ? this.auditInfo.toJSON() : undefined;
|
|
28176
28196
|
return data;
|
|
28177
28197
|
}
|
|
28178
28198
|
}
|
|
@@ -28200,6 +28220,12 @@ export class ListCncMachineOperationsRequest {
|
|
|
28200
28220
|
this.filterDeleted = _data["filterDeleted"];
|
|
28201
28221
|
this.filter = _data["filter"];
|
|
28202
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;
|
|
28203
28229
|
}
|
|
28204
28230
|
}
|
|
28205
28231
|
static fromJS(data) {
|
|
@@ -28223,6 +28249,12 @@ export class ListCncMachineOperationsRequest {
|
|
|
28223
28249
|
data["filterDeleted"] = this.filterDeleted;
|
|
28224
28250
|
data["filter"] = this.filter;
|
|
28225
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;
|
|
28226
28258
|
return data;
|
|
28227
28259
|
}
|
|
28228
28260
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -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,7 +33503,7 @@ export class CncMachineOperationDto implements ICncMachineOperationDto {
|
|
|
33479
33503
|
fixture?: string | null;
|
|
33480
33504
|
status!: CncOperationStatus;
|
|
33481
33505
|
deleted!: boolean;
|
|
33482
|
-
auditInfo
|
|
33506
|
+
auditInfo!: CncSetupAuditDto;
|
|
33483
33507
|
|
|
33484
33508
|
constructor(data?: ICncMachineOperationDto) {
|
|
33485
33509
|
if (data) {
|
|
@@ -33488,6 +33512,9 @@ export class CncMachineOperationDto implements ICncMachineOperationDto {
|
|
|
33488
33512
|
(<any>this)[property] = (<any>data)[property];
|
|
33489
33513
|
}
|
|
33490
33514
|
}
|
|
33515
|
+
if (!data) {
|
|
33516
|
+
this.auditInfo = new CncSetupAuditDto();
|
|
33517
|
+
}
|
|
33491
33518
|
}
|
|
33492
33519
|
|
|
33493
33520
|
init(_data?: any) {
|
|
@@ -33506,7 +33533,7 @@ export class CncMachineOperationDto implements ICncMachineOperationDto {
|
|
|
33506
33533
|
this.fixture = _data["fixture"];
|
|
33507
33534
|
this.status = _data["status"];
|
|
33508
33535
|
this.deleted = _data["deleted"];
|
|
33509
|
-
this.auditInfo = _data["auditInfo"] ? CncSetupAuditDto.fromJS(_data["auditInfo"]) :
|
|
33536
|
+
this.auditInfo = _data["auditInfo"] ? CncSetupAuditDto.fromJS(_data["auditInfo"]) : new CncSetupAuditDto();
|
|
33510
33537
|
}
|
|
33511
33538
|
}
|
|
33512
33539
|
|
|
@@ -33553,7 +33580,7 @@ export interface ICncMachineOperationDto {
|
|
|
33553
33580
|
fixture?: string | null;
|
|
33554
33581
|
status: CncOperationStatus;
|
|
33555
33582
|
deleted: boolean;
|
|
33556
|
-
auditInfo
|
|
33583
|
+
auditInfo: CncSetupAuditDto;
|
|
33557
33584
|
}
|
|
33558
33585
|
|
|
33559
33586
|
export type CncOperationStatus = "Draft" | "Ready" | "Verified" | "Archived";
|
|
@@ -33763,6 +33790,7 @@ export class CncMachineOperationSearchResultDto implements ICncMachineOperationS
|
|
|
33763
33790
|
description?: string | null;
|
|
33764
33791
|
status!: CncOperationStatus;
|
|
33765
33792
|
deleted!: boolean;
|
|
33793
|
+
auditInfo!: CncSetupAuditDto;
|
|
33766
33794
|
|
|
33767
33795
|
constructor(data?: ICncMachineOperationSearchResultDto) {
|
|
33768
33796
|
if (data) {
|
|
@@ -33771,6 +33799,9 @@ export class CncMachineOperationSearchResultDto implements ICncMachineOperationS
|
|
|
33771
33799
|
(<any>this)[property] = (<any>data)[property];
|
|
33772
33800
|
}
|
|
33773
33801
|
}
|
|
33802
|
+
if (!data) {
|
|
33803
|
+
this.auditInfo = new CncSetupAuditDto();
|
|
33804
|
+
}
|
|
33774
33805
|
}
|
|
33775
33806
|
|
|
33776
33807
|
init(_data?: any) {
|
|
@@ -33792,6 +33823,7 @@ export class CncMachineOperationSearchResultDto implements ICncMachineOperationS
|
|
|
33792
33823
|
this.description = _data["description"];
|
|
33793
33824
|
this.status = _data["status"];
|
|
33794
33825
|
this.deleted = _data["deleted"];
|
|
33826
|
+
this.auditInfo = _data["auditInfo"] ? CncSetupAuditDto.fromJS(_data["auditInfo"]) : new CncSetupAuditDto();
|
|
33795
33827
|
}
|
|
33796
33828
|
}
|
|
33797
33829
|
|
|
@@ -33821,6 +33853,7 @@ export class CncMachineOperationSearchResultDto implements ICncMachineOperationS
|
|
|
33821
33853
|
data["description"] = this.description;
|
|
33822
33854
|
data["status"] = this.status;
|
|
33823
33855
|
data["deleted"] = this.deleted;
|
|
33856
|
+
data["auditInfo"] = this.auditInfo ? this.auditInfo.toJSON() : <any>undefined;
|
|
33824
33857
|
return data;
|
|
33825
33858
|
}
|
|
33826
33859
|
}
|
|
@@ -33843,6 +33876,7 @@ export interface ICncMachineOperationSearchResultDto {
|
|
|
33843
33876
|
description?: string | null;
|
|
33844
33877
|
status: CncOperationStatus;
|
|
33845
33878
|
deleted: boolean;
|
|
33879
|
+
auditInfo: CncSetupAuditDto;
|
|
33846
33880
|
}
|
|
33847
33881
|
|
|
33848
33882
|
export class ListCncMachineOperationsRequest implements IListCncMachineOperationsRequest {
|
|
@@ -33859,6 +33893,12 @@ export class ListCncMachineOperationsRequest implements IListCncMachineOperation
|
|
|
33859
33893
|
filterDeleted?: CncFilterDeletedDto | null;
|
|
33860
33894
|
filter?: string | null;
|
|
33861
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;
|
|
33862
33902
|
|
|
33863
33903
|
constructor(data?: IListCncMachineOperationsRequest) {
|
|
33864
33904
|
if (data) {
|
|
@@ -33884,6 +33924,12 @@ export class ListCncMachineOperationsRequest implements IListCncMachineOperation
|
|
|
33884
33924
|
this.filterDeleted = _data["filterDeleted"];
|
|
33885
33925
|
this.filter = _data["filter"];
|
|
33886
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;
|
|
33887
33933
|
}
|
|
33888
33934
|
}
|
|
33889
33935
|
|
|
@@ -33909,6 +33955,12 @@ export class ListCncMachineOperationsRequest implements IListCncMachineOperation
|
|
|
33909
33955
|
data["filterDeleted"] = this.filterDeleted;
|
|
33910
33956
|
data["filter"] = this.filter;
|
|
33911
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;
|
|
33912
33964
|
return data;
|
|
33913
33965
|
}
|
|
33914
33966
|
}
|
|
@@ -33927,6 +33979,12 @@ export interface IListCncMachineOperationsRequest {
|
|
|
33927
33979
|
filterDeleted?: CncFilterDeletedDto | null;
|
|
33928
33980
|
filter?: string | null;
|
|
33929
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;
|
|
33930
33988
|
}
|
|
33931
33989
|
|
|
33932
33990
|
export class UpdateCncMachineOperationRequest implements IUpdateCncMachineOperationRequest {
|