@ignos/api-client 20240308.0.8762 → 20240311.0.8782

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.
@@ -7329,7 +7329,6 @@ export interface IDrawingDto {
7329
7329
  export declare class DrawingFileDto implements IDrawingFileDto {
7330
7330
  id: number;
7331
7331
  name: string;
7332
- title?: string | null;
7333
7332
  comment?: string | null;
7334
7333
  constructor(data?: IDrawingFileDto);
7335
7334
  init(_data?: any): void;
@@ -7339,7 +7338,6 @@ export declare class DrawingFileDto implements IDrawingFileDto {
7339
7338
  export interface IDrawingFileDto {
7340
7339
  id: number;
7341
7340
  name: string;
7342
- title?: string | null;
7343
7341
  comment?: string | null;
7344
7342
  }
7345
7343
  export declare class OrderReferenceDto implements IOrderReferenceDto {
@@ -27608,7 +27608,6 @@ export class DrawingFileDto {
27608
27608
  if (_data) {
27609
27609
  this.id = _data["id"];
27610
27610
  this.name = _data["name"];
27611
- this.title = _data["title"];
27612
27611
  this.comment = _data["comment"];
27613
27612
  }
27614
27613
  }
@@ -27622,7 +27621,6 @@ export class DrawingFileDto {
27622
27621
  data = typeof data === 'object' ? data : {};
27623
27622
  data["id"] = this.id;
27624
27623
  data["name"] = this.name;
27625
- data["title"] = this.title;
27626
27624
  data["comment"] = this.comment;
27627
27625
  return data;
27628
27626
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20240308.0.8762",
3
+ "version": "20240311.0.8782",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -34022,7 +34022,6 @@ export interface IDrawingDto {
34022
34022
  export class DrawingFileDto implements IDrawingFileDto {
34023
34023
  id!: number;
34024
34024
  name!: string;
34025
- title?: string | null;
34026
34025
  comment?: string | null;
34027
34026
 
34028
34027
  constructor(data?: IDrawingFileDto) {
@@ -34038,7 +34037,6 @@ export class DrawingFileDto implements IDrawingFileDto {
34038
34037
  if (_data) {
34039
34038
  this.id = _data["id"];
34040
34039
  this.name = _data["name"];
34041
- this.title = _data["title"];
34042
34040
  this.comment = _data["comment"];
34043
34041
  }
34044
34042
  }
@@ -34054,7 +34052,6 @@ export class DrawingFileDto implements IDrawingFileDto {
34054
34052
  data = typeof data === 'object' ? data : {};
34055
34053
  data["id"] = this.id;
34056
34054
  data["name"] = this.name;
34057
- data["title"] = this.title;
34058
34055
  data["comment"] = this.comment;
34059
34056
  return data;
34060
34057
  }
@@ -34063,7 +34060,6 @@ export class DrawingFileDto implements IDrawingFileDto {
34063
34060
  export interface IDrawingFileDto {
34064
34061
  id: number;
34065
34062
  name: string;
34066
- title?: string | null;
34067
34063
  comment?: string | null;
34068
34064
  }
34069
34065