@ignos/api-client 20240730.0.9869-alpha → 20240731.0.9883
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 +38 -2
- package/lib/ignosportal-api.js +67 -1
- package/package.json +1 -1
- package/src/ignosportal-api.ts +105 -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;
|
|
@@ -9026,6 +9052,8 @@ export type MaterialCoveredDto = "NotDefined" | "NotCovered" | "Covered";
|
|
|
9026
9052
|
export declare class LocationDto implements ILocationDto {
|
|
9027
9053
|
locationId: string;
|
|
9028
9054
|
locationName: string;
|
|
9055
|
+
zoneId?: string | null;
|
|
9056
|
+
zoneName?: string | null;
|
|
9029
9057
|
kind: LocationKindDto;
|
|
9030
9058
|
profile?: string | null;
|
|
9031
9059
|
constructor(data?: ILocationDto);
|
|
@@ -9036,6 +9064,8 @@ export declare class LocationDto implements ILocationDto {
|
|
|
9036
9064
|
export interface ILocationDto {
|
|
9037
9065
|
locationId: string;
|
|
9038
9066
|
locationName: string;
|
|
9067
|
+
zoneId?: string | null;
|
|
9068
|
+
zoneName?: string | null;
|
|
9039
9069
|
kind: LocationKindDto;
|
|
9040
9070
|
profile?: string | null;
|
|
9041
9071
|
}
|
|
@@ -9046,6 +9076,8 @@ export declare class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
9046
9076
|
materialFilter?: string[] | null;
|
|
9047
9077
|
locationIdFromFilter?: string[] | null;
|
|
9048
9078
|
locationIdToFilter?: string[] | null;
|
|
9079
|
+
zoneIdFromFilter?: string[] | null;
|
|
9080
|
+
zoneIdToFilter?: string[] | null;
|
|
9049
9081
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
9050
9082
|
bookingKindFilter?: BookingKindDto[] | null;
|
|
9051
9083
|
transportKindFilter?: TransportKindDto[] | null;
|
|
@@ -9062,6 +9094,8 @@ export interface IBookingRequestListDto {
|
|
|
9062
9094
|
materialFilter?: string[] | null;
|
|
9063
9095
|
locationIdFromFilter?: string[] | null;
|
|
9064
9096
|
locationIdToFilter?: string[] | null;
|
|
9097
|
+
zoneIdFromFilter?: string[] | null;
|
|
9098
|
+
zoneIdToFilter?: string[] | null;
|
|
9065
9099
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
9066
9100
|
bookingKindFilter?: BookingKindDto[] | null;
|
|
9067
9101
|
transportKindFilter?: TransportKindDto[] | null;
|
|
@@ -9280,6 +9314,7 @@ export declare class TrackingRequestListDto implements ITrackingRequestListDto {
|
|
|
9280
9314
|
pageSize?: number | null;
|
|
9281
9315
|
workOrderIdFilter?: string[] | null;
|
|
9282
9316
|
locationIdFilter?: string[] | null;
|
|
9317
|
+
zoneIdFilter?: string[] | null;
|
|
9283
9318
|
materialFilter?: string[] | null;
|
|
9284
9319
|
continuationToken?: string | null;
|
|
9285
9320
|
constructor(data?: ITrackingRequestListDto);
|
|
@@ -9291,6 +9326,7 @@ export interface ITrackingRequestListDto {
|
|
|
9291
9326
|
pageSize?: number | null;
|
|
9292
9327
|
workOrderIdFilter?: string[] | null;
|
|
9293
9328
|
locationIdFilter?: string[] | null;
|
|
9329
|
+
zoneIdFilter?: string[] | null;
|
|
9294
9330
|
materialFilter?: string[] | null;
|
|
9295
9331
|
continuationToken?: string | null;
|
|
9296
9332
|
}
|
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
|
}
|
|
@@ -32780,6 +32812,8 @@ export class LocationDto {
|
|
|
32780
32812
|
if (_data) {
|
|
32781
32813
|
this.locationId = _data["locationId"];
|
|
32782
32814
|
this.locationName = _data["locationName"];
|
|
32815
|
+
this.zoneId = _data["zoneId"];
|
|
32816
|
+
this.zoneName = _data["zoneName"];
|
|
32783
32817
|
this.kind = _data["kind"];
|
|
32784
32818
|
this.profile = _data["profile"];
|
|
32785
32819
|
}
|
|
@@ -32794,6 +32828,8 @@ export class LocationDto {
|
|
|
32794
32828
|
data = typeof data === 'object' ? data : {};
|
|
32795
32829
|
data["locationId"] = this.locationId;
|
|
32796
32830
|
data["locationName"] = this.locationName;
|
|
32831
|
+
data["zoneId"] = this.zoneId;
|
|
32832
|
+
data["zoneName"] = this.zoneName;
|
|
32797
32833
|
data["kind"] = this.kind;
|
|
32798
32834
|
data["profile"] = this.profile;
|
|
32799
32835
|
return data;
|
|
@@ -32831,6 +32867,16 @@ export class BookingRequestListDto {
|
|
|
32831
32867
|
for (let item of _data["locationIdToFilter"])
|
|
32832
32868
|
this.locationIdToFilter.push(item);
|
|
32833
32869
|
}
|
|
32870
|
+
if (Array.isArray(_data["zoneIdFromFilter"])) {
|
|
32871
|
+
this.zoneIdFromFilter = [];
|
|
32872
|
+
for (let item of _data["zoneIdFromFilter"])
|
|
32873
|
+
this.zoneIdFromFilter.push(item);
|
|
32874
|
+
}
|
|
32875
|
+
if (Array.isArray(_data["zoneIdToFilter"])) {
|
|
32876
|
+
this.zoneIdToFilter = [];
|
|
32877
|
+
for (let item of _data["zoneIdToFilter"])
|
|
32878
|
+
this.zoneIdToFilter.push(item);
|
|
32879
|
+
}
|
|
32834
32880
|
if (Array.isArray(_data["bookingStatusFilter"])) {
|
|
32835
32881
|
this.bookingStatusFilter = [];
|
|
32836
32882
|
for (let item of _data["bookingStatusFilter"])
|
|
@@ -32879,6 +32925,16 @@ export class BookingRequestListDto {
|
|
|
32879
32925
|
for (let item of this.locationIdToFilter)
|
|
32880
32926
|
data["locationIdToFilter"].push(item);
|
|
32881
32927
|
}
|
|
32928
|
+
if (Array.isArray(this.zoneIdFromFilter)) {
|
|
32929
|
+
data["zoneIdFromFilter"] = [];
|
|
32930
|
+
for (let item of this.zoneIdFromFilter)
|
|
32931
|
+
data["zoneIdFromFilter"].push(item);
|
|
32932
|
+
}
|
|
32933
|
+
if (Array.isArray(this.zoneIdToFilter)) {
|
|
32934
|
+
data["zoneIdToFilter"] = [];
|
|
32935
|
+
for (let item of this.zoneIdToFilter)
|
|
32936
|
+
data["zoneIdToFilter"].push(item);
|
|
32937
|
+
}
|
|
32882
32938
|
if (Array.isArray(this.bookingStatusFilter)) {
|
|
32883
32939
|
data["bookingStatusFilter"] = [];
|
|
32884
32940
|
for (let item of this.bookingStatusFilter)
|
|
@@ -33411,6 +33467,11 @@ export class TrackingRequestListDto {
|
|
|
33411
33467
|
for (let item of _data["locationIdFilter"])
|
|
33412
33468
|
this.locationIdFilter.push(item);
|
|
33413
33469
|
}
|
|
33470
|
+
if (Array.isArray(_data["zoneIdFilter"])) {
|
|
33471
|
+
this.zoneIdFilter = [];
|
|
33472
|
+
for (let item of _data["zoneIdFilter"])
|
|
33473
|
+
this.zoneIdFilter.push(item);
|
|
33474
|
+
}
|
|
33414
33475
|
if (Array.isArray(_data["materialFilter"])) {
|
|
33415
33476
|
this.materialFilter = [];
|
|
33416
33477
|
for (let item of _data["materialFilter"])
|
|
@@ -33438,6 +33499,11 @@ export class TrackingRequestListDto {
|
|
|
33438
33499
|
for (let item of this.locationIdFilter)
|
|
33439
33500
|
data["locationIdFilter"].push(item);
|
|
33440
33501
|
}
|
|
33502
|
+
if (Array.isArray(this.zoneIdFilter)) {
|
|
33503
|
+
data["zoneIdFilter"] = [];
|
|
33504
|
+
for (let item of this.zoneIdFilter)
|
|
33505
|
+
data["zoneIdFilter"].push(item);
|
|
33506
|
+
}
|
|
33441
33507
|
if (Array.isArray(this.materialFilter)) {
|
|
33442
33508
|
data["materialFilter"] = [];
|
|
33443
33509
|
for (let item of this.materialFilter)
|
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 {
|
|
@@ -40809,6 +40867,8 @@ export type MaterialCoveredDto = "NotDefined" | "NotCovered" | "Covered";
|
|
|
40809
40867
|
export class LocationDto implements ILocationDto {
|
|
40810
40868
|
locationId!: string;
|
|
40811
40869
|
locationName!: string;
|
|
40870
|
+
zoneId?: string | null;
|
|
40871
|
+
zoneName?: string | null;
|
|
40812
40872
|
kind!: LocationKindDto;
|
|
40813
40873
|
profile?: string | null;
|
|
40814
40874
|
|
|
@@ -40825,6 +40885,8 @@ export class LocationDto implements ILocationDto {
|
|
|
40825
40885
|
if (_data) {
|
|
40826
40886
|
this.locationId = _data["locationId"];
|
|
40827
40887
|
this.locationName = _data["locationName"];
|
|
40888
|
+
this.zoneId = _data["zoneId"];
|
|
40889
|
+
this.zoneName = _data["zoneName"];
|
|
40828
40890
|
this.kind = _data["kind"];
|
|
40829
40891
|
this.profile = _data["profile"];
|
|
40830
40892
|
}
|
|
@@ -40841,6 +40903,8 @@ export class LocationDto implements ILocationDto {
|
|
|
40841
40903
|
data = typeof data === 'object' ? data : {};
|
|
40842
40904
|
data["locationId"] = this.locationId;
|
|
40843
40905
|
data["locationName"] = this.locationName;
|
|
40906
|
+
data["zoneId"] = this.zoneId;
|
|
40907
|
+
data["zoneName"] = this.zoneName;
|
|
40844
40908
|
data["kind"] = this.kind;
|
|
40845
40909
|
data["profile"] = this.profile;
|
|
40846
40910
|
return data;
|
|
@@ -40850,6 +40914,8 @@ export class LocationDto implements ILocationDto {
|
|
|
40850
40914
|
export interface ILocationDto {
|
|
40851
40915
|
locationId: string;
|
|
40852
40916
|
locationName: string;
|
|
40917
|
+
zoneId?: string | null;
|
|
40918
|
+
zoneName?: string | null;
|
|
40853
40919
|
kind: LocationKindDto;
|
|
40854
40920
|
profile?: string | null;
|
|
40855
40921
|
}
|
|
@@ -40862,6 +40928,8 @@ export class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
40862
40928
|
materialFilter?: string[] | null;
|
|
40863
40929
|
locationIdFromFilter?: string[] | null;
|
|
40864
40930
|
locationIdToFilter?: string[] | null;
|
|
40931
|
+
zoneIdFromFilter?: string[] | null;
|
|
40932
|
+
zoneIdToFilter?: string[] | null;
|
|
40865
40933
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
40866
40934
|
bookingKindFilter?: BookingKindDto[] | null;
|
|
40867
40935
|
transportKindFilter?: TransportKindDto[] | null;
|
|
@@ -40900,6 +40968,16 @@ export class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
40900
40968
|
for (let item of _data["locationIdToFilter"])
|
|
40901
40969
|
this.locationIdToFilter!.push(item);
|
|
40902
40970
|
}
|
|
40971
|
+
if (Array.isArray(_data["zoneIdFromFilter"])) {
|
|
40972
|
+
this.zoneIdFromFilter = [] as any;
|
|
40973
|
+
for (let item of _data["zoneIdFromFilter"])
|
|
40974
|
+
this.zoneIdFromFilter!.push(item);
|
|
40975
|
+
}
|
|
40976
|
+
if (Array.isArray(_data["zoneIdToFilter"])) {
|
|
40977
|
+
this.zoneIdToFilter = [] as any;
|
|
40978
|
+
for (let item of _data["zoneIdToFilter"])
|
|
40979
|
+
this.zoneIdToFilter!.push(item);
|
|
40980
|
+
}
|
|
40903
40981
|
if (Array.isArray(_data["bookingStatusFilter"])) {
|
|
40904
40982
|
this.bookingStatusFilter = [] as any;
|
|
40905
40983
|
for (let item of _data["bookingStatusFilter"])
|
|
@@ -40950,6 +41028,16 @@ export class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
40950
41028
|
for (let item of this.locationIdToFilter)
|
|
40951
41029
|
data["locationIdToFilter"].push(item);
|
|
40952
41030
|
}
|
|
41031
|
+
if (Array.isArray(this.zoneIdFromFilter)) {
|
|
41032
|
+
data["zoneIdFromFilter"] = [];
|
|
41033
|
+
for (let item of this.zoneIdFromFilter)
|
|
41034
|
+
data["zoneIdFromFilter"].push(item);
|
|
41035
|
+
}
|
|
41036
|
+
if (Array.isArray(this.zoneIdToFilter)) {
|
|
41037
|
+
data["zoneIdToFilter"] = [];
|
|
41038
|
+
for (let item of this.zoneIdToFilter)
|
|
41039
|
+
data["zoneIdToFilter"].push(item);
|
|
41040
|
+
}
|
|
40953
41041
|
if (Array.isArray(this.bookingStatusFilter)) {
|
|
40954
41042
|
data["bookingStatusFilter"] = [];
|
|
40955
41043
|
for (let item of this.bookingStatusFilter)
|
|
@@ -40977,6 +41065,8 @@ export interface IBookingRequestListDto {
|
|
|
40977
41065
|
materialFilter?: string[] | null;
|
|
40978
41066
|
locationIdFromFilter?: string[] | null;
|
|
40979
41067
|
locationIdToFilter?: string[] | null;
|
|
41068
|
+
zoneIdFromFilter?: string[] | null;
|
|
41069
|
+
zoneIdToFilter?: string[] | null;
|
|
40980
41070
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
40981
41071
|
bookingKindFilter?: BookingKindDto[] | null;
|
|
40982
41072
|
transportKindFilter?: TransportKindDto[] | null;
|
|
@@ -41688,6 +41778,7 @@ export class TrackingRequestListDto implements ITrackingRequestListDto {
|
|
|
41688
41778
|
pageSize?: number | null;
|
|
41689
41779
|
workOrderIdFilter?: string[] | null;
|
|
41690
41780
|
locationIdFilter?: string[] | null;
|
|
41781
|
+
zoneIdFilter?: string[] | null;
|
|
41691
41782
|
materialFilter?: string[] | null;
|
|
41692
41783
|
continuationToken?: string | null;
|
|
41693
41784
|
|
|
@@ -41713,6 +41804,11 @@ export class TrackingRequestListDto implements ITrackingRequestListDto {
|
|
|
41713
41804
|
for (let item of _data["locationIdFilter"])
|
|
41714
41805
|
this.locationIdFilter!.push(item);
|
|
41715
41806
|
}
|
|
41807
|
+
if (Array.isArray(_data["zoneIdFilter"])) {
|
|
41808
|
+
this.zoneIdFilter = [] as any;
|
|
41809
|
+
for (let item of _data["zoneIdFilter"])
|
|
41810
|
+
this.zoneIdFilter!.push(item);
|
|
41811
|
+
}
|
|
41716
41812
|
if (Array.isArray(_data["materialFilter"])) {
|
|
41717
41813
|
this.materialFilter = [] as any;
|
|
41718
41814
|
for (let item of _data["materialFilter"])
|
|
@@ -41742,6 +41838,11 @@ export class TrackingRequestListDto implements ITrackingRequestListDto {
|
|
|
41742
41838
|
for (let item of this.locationIdFilter)
|
|
41743
41839
|
data["locationIdFilter"].push(item);
|
|
41744
41840
|
}
|
|
41841
|
+
if (Array.isArray(this.zoneIdFilter)) {
|
|
41842
|
+
data["zoneIdFilter"] = [];
|
|
41843
|
+
for (let item of this.zoneIdFilter)
|
|
41844
|
+
data["zoneIdFilter"].push(item);
|
|
41845
|
+
}
|
|
41745
41846
|
if (Array.isArray(this.materialFilter)) {
|
|
41746
41847
|
data["materialFilter"] = [];
|
|
41747
41848
|
for (let item of this.materialFilter)
|
|
@@ -41756,6 +41857,7 @@ export interface ITrackingRequestListDto {
|
|
|
41756
41857
|
pageSize?: number | null;
|
|
41757
41858
|
workOrderIdFilter?: string[] | null;
|
|
41758
41859
|
locationIdFilter?: string[] | null;
|
|
41860
|
+
zoneIdFilter?: string[] | null;
|
|
41759
41861
|
materialFilter?: string[] | null;
|
|
41760
41862
|
continuationToken?: string | null;
|
|
41761
41863
|
}
|