@ignos/api-client 20240429.0.9174 → 20240430.0.9176

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.
@@ -9747,9 +9747,9 @@ export declare class WorkOrderAttachmentDto implements IWorkOrderAttachmentDto {
9747
9747
  created?: Date | null;
9748
9748
  modifiedBy?: string | null;
9749
9749
  modified?: Date | null;
9750
- notes?: string | null;
9751
9750
  name?: string | null;
9752
- typeId?: string | null;
9751
+ notes?: string | null;
9752
+ attachmentType?: string | null;
9753
9753
  constructor(data?: IWorkOrderAttachmentDto);
9754
9754
  init(_data?: any): void;
9755
9755
  static fromJS(data: any): WorkOrderAttachmentDto;
@@ -9760,9 +9760,9 @@ export interface IWorkOrderAttachmentDto {
9760
9760
  created?: Date | null;
9761
9761
  modifiedBy?: string | null;
9762
9762
  modified?: Date | null;
9763
- notes?: string | null;
9764
9763
  name?: string | null;
9765
- typeId?: string | null;
9764
+ notes?: string | null;
9765
+ attachmentType?: string | null;
9766
9766
  }
9767
9767
  export declare class DrawingDto implements IDrawingDto {
9768
9768
  drawingNumber: string;
@@ -32920,9 +32920,9 @@ export class WorkOrderAttachmentDto {
32920
32920
  this.created = _data["created"] ? new Date(_data["created"].toString()) : undefined;
32921
32921
  this.modifiedBy = _data["modifiedBy"];
32922
32922
  this.modified = _data["modified"] ? new Date(_data["modified"].toString()) : undefined;
32923
- this.notes = _data["notes"];
32924
32923
  this.name = _data["name"];
32925
- this.typeId = _data["typeId"];
32924
+ this.notes = _data["notes"];
32925
+ this.attachmentType = _data["attachmentType"];
32926
32926
  }
32927
32927
  }
32928
32928
  static fromJS(data) {
@@ -32937,9 +32937,9 @@ export class WorkOrderAttachmentDto {
32937
32937
  data["created"] = this.created ? this.created.toISOString() : undefined;
32938
32938
  data["modifiedBy"] = this.modifiedBy;
32939
32939
  data["modified"] = this.modified ? this.modified.toISOString() : undefined;
32940
- data["notes"] = this.notes;
32941
32940
  data["name"] = this.name;
32942
- data["typeId"] = this.typeId;
32941
+ data["notes"] = this.notes;
32942
+ data["attachmentType"] = this.attachmentType;
32943
32943
  return data;
32944
32944
  }
32945
32945
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240429.0.9174",
3
+ "version": "20240430.0.9176",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -41712,9 +41712,9 @@ export class WorkOrderAttachmentDto implements IWorkOrderAttachmentDto {
41712
41712
  created?: Date | null;
41713
41713
  modifiedBy?: string | null;
41714
41714
  modified?: Date | null;
41715
- notes?: string | null;
41716
41715
  name?: string | null;
41717
- typeId?: string | null;
41716
+ notes?: string | null;
41717
+ attachmentType?: string | null;
41718
41718
 
41719
41719
  constructor(data?: IWorkOrderAttachmentDto) {
41720
41720
  if (data) {
@@ -41731,9 +41731,9 @@ export class WorkOrderAttachmentDto implements IWorkOrderAttachmentDto {
41731
41731
  this.created = _data["created"] ? new Date(_data["created"].toString()) : <any>undefined;
41732
41732
  this.modifiedBy = _data["modifiedBy"];
41733
41733
  this.modified = _data["modified"] ? new Date(_data["modified"].toString()) : <any>undefined;
41734
- this.notes = _data["notes"];
41735
41734
  this.name = _data["name"];
41736
- this.typeId = _data["typeId"];
41735
+ this.notes = _data["notes"];
41736
+ this.attachmentType = _data["attachmentType"];
41737
41737
  }
41738
41738
  }
41739
41739
 
@@ -41750,9 +41750,9 @@ export class WorkOrderAttachmentDto implements IWorkOrderAttachmentDto {
41750
41750
  data["created"] = this.created ? this.created.toISOString() : <any>undefined;
41751
41751
  data["modifiedBy"] = this.modifiedBy;
41752
41752
  data["modified"] = this.modified ? this.modified.toISOString() : <any>undefined;
41753
- data["notes"] = this.notes;
41754
41753
  data["name"] = this.name;
41755
- data["typeId"] = this.typeId;
41754
+ data["notes"] = this.notes;
41755
+ data["attachmentType"] = this.attachmentType;
41756
41756
  return data;
41757
41757
  }
41758
41758
  }
@@ -41762,9 +41762,9 @@ export interface IWorkOrderAttachmentDto {
41762
41762
  created?: Date | null;
41763
41763
  modifiedBy?: string | null;
41764
41764
  modified?: Date | null;
41765
- notes?: string | null;
41766
41765
  name?: string | null;
41767
- typeId?: string | null;
41766
+ notes?: string | null;
41767
+ attachmentType?: string | null;
41768
41768
  }
41769
41769
 
41770
41770
  export class DrawingDto implements IDrawingDto {