@ignos/api-client 20240726.0.9866 → 20240730.0.9869-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.
@@ -6523,6 +6523,7 @@ export declare class CncMachineOperationDto implements ICncMachineOperationDto {
6523
6523
  fixture?: string | null;
6524
6524
  status: CncOperationStatus;
6525
6525
  deleted: boolean;
6526
+ auditInfo?: CncSetupAuditDto;
6526
6527
  constructor(data?: ICncMachineOperationDto);
6527
6528
  init(_data?: any): void;
6528
6529
  static fromJS(data: any): CncMachineOperationDto;
@@ -6543,8 +6544,33 @@ export interface ICncMachineOperationDto {
6543
6544
  fixture?: string | null;
6544
6545
  status: CncOperationStatus;
6545
6546
  deleted: boolean;
6547
+ auditInfo?: CncSetupAuditDto;
6546
6548
  }
6547
6549
  export type CncOperationStatus = "Draft" | "Ready" | "Verified" | "Archived";
6550
+ export declare class CncSetupAuditDto implements ICncSetupAuditDto {
6551
+ created: Date;
6552
+ createdBy: string;
6553
+ createdById: string;
6554
+ createdByName?: string | null;
6555
+ updated?: Date | null;
6556
+ updatedBy?: string | null;
6557
+ updatedById?: string | null;
6558
+ updatedByName?: string | null;
6559
+ constructor(data?: ICncSetupAuditDto);
6560
+ init(_data?: any): void;
6561
+ static fromJS(data: any): CncSetupAuditDto;
6562
+ toJSON(data?: any): any;
6563
+ }
6564
+ export interface ICncSetupAuditDto {
6565
+ created: Date;
6566
+ createdBy: string;
6567
+ createdById: string;
6568
+ createdByName?: string | null;
6569
+ updated?: Date | null;
6570
+ updatedBy?: string | null;
6571
+ updatedById?: string | null;
6572
+ updatedByName?: string | null;
6573
+ }
6548
6574
  export declare class CreateCncMachineOperation implements ICreateCncMachineOperation {
6549
6575
  cncPartId: string;
6550
6576
  operation?: number | null;
@@ -6793,30 +6819,6 @@ export interface IImageFileDto {
6793
6819
  name: string;
6794
6820
  thumbnailUrl?: string | null;
6795
6821
  }
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
6822
  export declare class CopyToolsCncMachine implements ICopyToolsCncMachine {
6821
6823
  sourceMachineId: string;
6822
6824
  targetOperationId: string;
@@ -27966,6 +27966,7 @@ export class CncMachineOperationDto {
27966
27966
  this.fixture = _data["fixture"];
27967
27967
  this.status = _data["status"];
27968
27968
  this.deleted = _data["deleted"];
27969
+ this.auditInfo = _data["auditInfo"] ? CncSetupAuditDto.fromJS(_data["auditInfo"]) : undefined;
27969
27970
  }
27970
27971
  }
27971
27972
  static fromJS(data) {
@@ -27990,6 +27991,47 @@ export class CncMachineOperationDto {
27990
27991
  data["fixture"] = this.fixture;
27991
27992
  data["status"] = this.status;
27992
27993
  data["deleted"] = this.deleted;
27994
+ data["auditInfo"] = this.auditInfo ? this.auditInfo.toJSON() : undefined;
27995
+ return data;
27996
+ }
27997
+ }
27998
+ export class CncSetupAuditDto {
27999
+ constructor(data) {
28000
+ if (data) {
28001
+ for (var property in data) {
28002
+ if (data.hasOwnProperty(property))
28003
+ this[property] = data[property];
28004
+ }
28005
+ }
28006
+ }
28007
+ init(_data) {
28008
+ if (_data) {
28009
+ this.created = _data["created"] ? new Date(_data["created"].toString()) : undefined;
28010
+ this.createdBy = _data["createdBy"];
28011
+ this.createdById = _data["createdById"];
28012
+ this.createdByName = _data["createdByName"];
28013
+ this.updated = _data["updated"] ? new Date(_data["updated"].toString()) : undefined;
28014
+ this.updatedBy = _data["updatedBy"];
28015
+ this.updatedById = _data["updatedById"];
28016
+ this.updatedByName = _data["updatedByName"];
28017
+ }
28018
+ }
28019
+ static fromJS(data) {
28020
+ data = typeof data === 'object' ? data : {};
28021
+ let result = new CncSetupAuditDto();
28022
+ result.init(data);
28023
+ return result;
28024
+ }
28025
+ toJSON(data) {
28026
+ data = typeof data === 'object' ? data : {};
28027
+ data["created"] = this.created ? this.created.toISOString() : undefined;
28028
+ data["createdBy"] = this.createdBy;
28029
+ data["createdById"] = this.createdById;
28030
+ data["createdByName"] = this.createdByName;
28031
+ data["updated"] = this.updated ? this.updated.toISOString() : undefined;
28032
+ data["updatedBy"] = this.updatedBy;
28033
+ data["updatedById"] = this.updatedById;
28034
+ data["updatedByName"] = this.updatedByName;
27993
28035
  return data;
27994
28036
  }
27995
28037
  }
@@ -28415,46 +28457,6 @@ export class ImageFileDto {
28415
28457
  return data;
28416
28458
  }
28417
28459
  }
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
28460
  export class CopyToolsCncMachine {
28459
28461
  constructor(data) {
28460
28462
  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.9869-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -33479,6 +33479,7 @@ export class CncMachineOperationDto implements ICncMachineOperationDto {
33479
33479
  fixture?: string | null;
33480
33480
  status!: CncOperationStatus;
33481
33481
  deleted!: boolean;
33482
+ auditInfo?: CncSetupAuditDto;
33482
33483
 
33483
33484
  constructor(data?: ICncMachineOperationDto) {
33484
33485
  if (data) {
@@ -33505,6 +33506,7 @@ export class CncMachineOperationDto implements ICncMachineOperationDto {
33505
33506
  this.fixture = _data["fixture"];
33506
33507
  this.status = _data["status"];
33507
33508
  this.deleted = _data["deleted"];
33509
+ this.auditInfo = _data["auditInfo"] ? CncSetupAuditDto.fromJS(_data["auditInfo"]) : <any>undefined;
33508
33510
  }
33509
33511
  }
33510
33512
 
@@ -33531,6 +33533,7 @@ export class CncMachineOperationDto implements ICncMachineOperationDto {
33531
33533
  data["fixture"] = this.fixture;
33532
33534
  data["status"] = this.status;
33533
33535
  data["deleted"] = this.deleted;
33536
+ data["auditInfo"] = this.auditInfo ? this.auditInfo.toJSON() : <any>undefined;
33534
33537
  return data;
33535
33538
  }
33536
33539
  }
@@ -33550,10 +33553,75 @@ export interface ICncMachineOperationDto {
33550
33553
  fixture?: string | null;
33551
33554
  status: CncOperationStatus;
33552
33555
  deleted: boolean;
33556
+ auditInfo?: CncSetupAuditDto;
33553
33557
  }
33554
33558
 
33555
33559
  export type CncOperationStatus = "Draft" | "Ready" | "Verified" | "Archived";
33556
33560
 
33561
+ export class CncSetupAuditDto implements ICncSetupAuditDto {
33562
+ created!: Date;
33563
+ createdBy!: string;
33564
+ createdById!: string;
33565
+ createdByName?: string | null;
33566
+ updated?: Date | null;
33567
+ updatedBy?: string | null;
33568
+ updatedById?: string | null;
33569
+ updatedByName?: string | null;
33570
+
33571
+ constructor(data?: ICncSetupAuditDto) {
33572
+ if (data) {
33573
+ for (var property in data) {
33574
+ if (data.hasOwnProperty(property))
33575
+ (<any>this)[property] = (<any>data)[property];
33576
+ }
33577
+ }
33578
+ }
33579
+
33580
+ init(_data?: any) {
33581
+ if (_data) {
33582
+ this.created = _data["created"] ? new Date(_data["created"].toString()) : <any>undefined;
33583
+ this.createdBy = _data["createdBy"];
33584
+ this.createdById = _data["createdById"];
33585
+ this.createdByName = _data["createdByName"];
33586
+ this.updated = _data["updated"] ? new Date(_data["updated"].toString()) : <any>undefined;
33587
+ this.updatedBy = _data["updatedBy"];
33588
+ this.updatedById = _data["updatedById"];
33589
+ this.updatedByName = _data["updatedByName"];
33590
+ }
33591
+ }
33592
+
33593
+ static fromJS(data: any): CncSetupAuditDto {
33594
+ data = typeof data === 'object' ? data : {};
33595
+ let result = new CncSetupAuditDto();
33596
+ result.init(data);
33597
+ return result;
33598
+ }
33599
+
33600
+ toJSON(data?: any) {
33601
+ data = typeof data === 'object' ? data : {};
33602
+ data["created"] = this.created ? this.created.toISOString() : <any>undefined;
33603
+ data["createdBy"] = this.createdBy;
33604
+ data["createdById"] = this.createdById;
33605
+ data["createdByName"] = this.createdByName;
33606
+ data["updated"] = this.updated ? this.updated.toISOString() : <any>undefined;
33607
+ data["updatedBy"] = this.updatedBy;
33608
+ data["updatedById"] = this.updatedById;
33609
+ data["updatedByName"] = this.updatedByName;
33610
+ return data;
33611
+ }
33612
+ }
33613
+
33614
+ export interface ICncSetupAuditDto {
33615
+ created: Date;
33616
+ createdBy: string;
33617
+ createdById: string;
33618
+ createdByName?: string | null;
33619
+ updated?: Date | null;
33620
+ updatedBy?: string | null;
33621
+ updatedById?: string | null;
33622
+ updatedByName?: string | null;
33623
+ }
33624
+
33557
33625
  export class CreateCncMachineOperation implements ICreateCncMachineOperation {
33558
33626
  cncPartId!: string;
33559
33627
  operation?: number | null;
@@ -34224,70 +34292,6 @@ export interface IImageFileDto {
34224
34292
  thumbnailUrl?: string | null;
34225
34293
  }
34226
34294
 
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
34295
  export class CopyToolsCncMachine implements ICopyToolsCncMachine {
34292
34296
  sourceMachineId!: string;
34293
34297
  targetOperationId!: string;