@ignos/api-client 20250430.0.11610 → 20250430.0.11615

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.
@@ -8138,6 +8138,8 @@ export declare class FixtureDto implements IFixtureDto {
8138
8138
  deleted?: boolean;
8139
8139
  approved?: boolean;
8140
8140
  name: string;
8141
+ instance?: number;
8142
+ fixtureGroupId?: string;
8141
8143
  drawing?: string | null;
8142
8144
  drawingRev?: string | null;
8143
8145
  sourceMachine?: string | null;
@@ -8164,6 +8166,8 @@ export interface IFixtureDto {
8164
8166
  deleted?: boolean;
8165
8167
  approved?: boolean;
8166
8168
  name: string;
8169
+ instance?: number;
8170
+ fixtureGroupId?: string;
8167
8171
  drawing?: string | null;
8168
8172
  drawingRev?: string | null;
8169
8173
  sourceMachine?: string | null;
@@ -8202,6 +8206,8 @@ export type GripSideDto = "NotApplicable" | "Inside" | "Outside";
8202
8206
  export declare class ListFixtures implements IListFixtures {
8203
8207
  pageSize?: number | null;
8204
8208
  fixtureTypeFilter?: FixtureTypeDto[] | null;
8209
+ deletedFilter?: FixtureDeletedDto | null;
8210
+ approvedFilter?: FixtureApprovedDto | null;
8205
8211
  continuationToken?: string | null;
8206
8212
  constructor(data?: IListFixtures);
8207
8213
  init(_data?: any): void;
@@ -8211,10 +8217,17 @@ export declare class ListFixtures implements IListFixtures {
8211
8217
  export interface IListFixtures {
8212
8218
  pageSize?: number | null;
8213
8219
  fixtureTypeFilter?: FixtureTypeDto[] | null;
8220
+ deletedFilter?: FixtureDeletedDto | null;
8221
+ approvedFilter?: FixtureApprovedDto | null;
8214
8222
  continuationToken?: string | null;
8215
8223
  }
8224
+ export type FixtureDeletedDto = "NotDeleted" | "Deleted";
8225
+ export type FixtureApprovedDto = "NotApproved" | "Approved";
8216
8226
  export declare class FixtureUpdateDto implements IFixtureUpdateDto {
8217
8227
  name: string;
8228
+ fixtureGroupId?: string | null;
8229
+ deleted?: boolean;
8230
+ approved?: boolean;
8218
8231
  drawing?: string | null;
8219
8232
  drawingRev?: string | null;
8220
8233
  sourceMachine?: string | null;
@@ -8237,6 +8250,9 @@ export declare class FixtureUpdateDto implements IFixtureUpdateDto {
8237
8250
  }
8238
8251
  export interface IFixtureUpdateDto {
8239
8252
  name: string;
8253
+ fixtureGroupId?: string | null;
8254
+ deleted?: boolean;
8255
+ approved?: boolean;
8240
8256
  drawing?: string | null;
8241
8257
  drawingRev?: string | null;
8242
8258
  sourceMachine?: string | null;
@@ -32783,6 +32783,8 @@ export class FixtureDto {
32783
32783
  this.deleted = _data["deleted"];
32784
32784
  this.approved = _data["approved"];
32785
32785
  this.name = _data["name"];
32786
+ this.instance = _data["instance"];
32787
+ this.fixtureGroupId = _data["fixtureGroupId"];
32786
32788
  this.drawing = _data["drawing"];
32787
32789
  this.drawingRev = _data["drawingRev"];
32788
32790
  this.sourceMachine = _data["sourceMachine"];
@@ -32817,6 +32819,8 @@ export class FixtureDto {
32817
32819
  data["deleted"] = this.deleted;
32818
32820
  data["approved"] = this.approved;
32819
32821
  data["name"] = this.name;
32822
+ data["instance"] = this.instance;
32823
+ data["fixtureGroupId"] = this.fixtureGroupId;
32820
32824
  data["drawing"] = this.drawing;
32821
32825
  data["drawingRev"] = this.drawingRev;
32822
32826
  data["sourceMachine"] = this.sourceMachine;
@@ -32889,6 +32893,8 @@ export class ListFixtures {
32889
32893
  for (let item of _data["fixtureTypeFilter"])
32890
32894
  this.fixtureTypeFilter.push(item);
32891
32895
  }
32896
+ this.deletedFilter = _data["deletedFilter"];
32897
+ this.approvedFilter = _data["approvedFilter"];
32892
32898
  this.continuationToken = _data["continuationToken"];
32893
32899
  }
32894
32900
  }
@@ -32906,6 +32912,8 @@ export class ListFixtures {
32906
32912
  for (let item of this.fixtureTypeFilter)
32907
32913
  data["fixtureTypeFilter"].push(item);
32908
32914
  }
32915
+ data["deletedFilter"] = this.deletedFilter;
32916
+ data["approvedFilter"] = this.approvedFilter;
32909
32917
  data["continuationToken"] = this.continuationToken;
32910
32918
  return data;
32911
32919
  }
@@ -32922,6 +32930,9 @@ export class FixtureUpdateDto {
32922
32930
  init(_data) {
32923
32931
  if (_data) {
32924
32932
  this.name = _data["name"];
32933
+ this.fixtureGroupId = _data["fixtureGroupId"];
32934
+ this.deleted = _data["deleted"];
32935
+ this.approved = _data["approved"];
32925
32936
  this.drawing = _data["drawing"];
32926
32937
  this.drawingRev = _data["drawingRev"];
32927
32938
  this.sourceMachine = _data["sourceMachine"];
@@ -32948,6 +32959,9 @@ export class FixtureUpdateDto {
32948
32959
  toJSON(data) {
32949
32960
  data = typeof data === 'object' ? data : {};
32950
32961
  data["name"] = this.name;
32962
+ data["fixtureGroupId"] = this.fixtureGroupId;
32963
+ data["deleted"] = this.deleted;
32964
+ data["approved"] = this.approved;
32951
32965
  data["drawing"] = this.drawing;
32952
32966
  data["drawingRev"] = this.drawingRev;
32953
32967
  data["sourceMachine"] = this.sourceMachine;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20250430.0.11610",
3
+ "version": "20250430.0.11615",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -39801,6 +39801,8 @@ export class FixtureDto implements IFixtureDto {
39801
39801
  deleted?: boolean;
39802
39802
  approved?: boolean;
39803
39803
  name!: string;
39804
+ instance?: number;
39805
+ fixtureGroupId?: string;
39804
39806
  drawing?: string | null;
39805
39807
  drawingRev?: string | null;
39806
39808
  sourceMachine?: string | null;
@@ -39836,6 +39838,8 @@ export class FixtureDto implements IFixtureDto {
39836
39838
  this.deleted = _data["deleted"];
39837
39839
  this.approved = _data["approved"];
39838
39840
  this.name = _data["name"];
39841
+ this.instance = _data["instance"];
39842
+ this.fixtureGroupId = _data["fixtureGroupId"];
39839
39843
  this.drawing = _data["drawing"];
39840
39844
  this.drawingRev = _data["drawingRev"];
39841
39845
  this.sourceMachine = _data["sourceMachine"];
@@ -39872,6 +39876,8 @@ export class FixtureDto implements IFixtureDto {
39872
39876
  data["deleted"] = this.deleted;
39873
39877
  data["approved"] = this.approved;
39874
39878
  data["name"] = this.name;
39879
+ data["instance"] = this.instance;
39880
+ data["fixtureGroupId"] = this.fixtureGroupId;
39875
39881
  data["drawing"] = this.drawing;
39876
39882
  data["drawingRev"] = this.drawingRev;
39877
39883
  data["sourceMachine"] = this.sourceMachine;
@@ -39901,6 +39907,8 @@ export interface IFixtureDto {
39901
39907
  deleted?: boolean;
39902
39908
  approved?: boolean;
39903
39909
  name: string;
39910
+ instance?: number;
39911
+ fixtureGroupId?: string;
39904
39912
  drawing?: string | null;
39905
39913
  drawingRev?: string | null;
39906
39914
  sourceMachine?: string | null;
@@ -39974,6 +39982,8 @@ export type GripSideDto = "NotApplicable" | "Inside" | "Outside";
39974
39982
  export class ListFixtures implements IListFixtures {
39975
39983
  pageSize?: number | null;
39976
39984
  fixtureTypeFilter?: FixtureTypeDto[] | null;
39985
+ deletedFilter?: FixtureDeletedDto | null;
39986
+ approvedFilter?: FixtureApprovedDto | null;
39977
39987
  continuationToken?: string | null;
39978
39988
 
39979
39989
  constructor(data?: IListFixtures) {
@@ -39993,6 +40003,8 @@ export class ListFixtures implements IListFixtures {
39993
40003
  for (let item of _data["fixtureTypeFilter"])
39994
40004
  this.fixtureTypeFilter!.push(item);
39995
40005
  }
40006
+ this.deletedFilter = _data["deletedFilter"];
40007
+ this.approvedFilter = _data["approvedFilter"];
39996
40008
  this.continuationToken = _data["continuationToken"];
39997
40009
  }
39998
40010
  }
@@ -40012,6 +40024,8 @@ export class ListFixtures implements IListFixtures {
40012
40024
  for (let item of this.fixtureTypeFilter)
40013
40025
  data["fixtureTypeFilter"].push(item);
40014
40026
  }
40027
+ data["deletedFilter"] = this.deletedFilter;
40028
+ data["approvedFilter"] = this.approvedFilter;
40015
40029
  data["continuationToken"] = this.continuationToken;
40016
40030
  return data;
40017
40031
  }
@@ -40020,11 +40034,20 @@ export class ListFixtures implements IListFixtures {
40020
40034
  export interface IListFixtures {
40021
40035
  pageSize?: number | null;
40022
40036
  fixtureTypeFilter?: FixtureTypeDto[] | null;
40037
+ deletedFilter?: FixtureDeletedDto | null;
40038
+ approvedFilter?: FixtureApprovedDto | null;
40023
40039
  continuationToken?: string | null;
40024
40040
  }
40025
40041
 
40042
+ export type FixtureDeletedDto = "NotDeleted" | "Deleted";
40043
+
40044
+ export type FixtureApprovedDto = "NotApproved" | "Approved";
40045
+
40026
40046
  export class FixtureUpdateDto implements IFixtureUpdateDto {
40027
40047
  name!: string;
40048
+ fixtureGroupId?: string | null;
40049
+ deleted?: boolean;
40050
+ approved?: boolean;
40028
40051
  drawing?: string | null;
40029
40052
  drawingRev?: string | null;
40030
40053
  sourceMachine?: string | null;
@@ -40053,6 +40076,9 @@ export class FixtureUpdateDto implements IFixtureUpdateDto {
40053
40076
  init(_data?: any) {
40054
40077
  if (_data) {
40055
40078
  this.name = _data["name"];
40079
+ this.fixtureGroupId = _data["fixtureGroupId"];
40080
+ this.deleted = _data["deleted"];
40081
+ this.approved = _data["approved"];
40056
40082
  this.drawing = _data["drawing"];
40057
40083
  this.drawingRev = _data["drawingRev"];
40058
40084
  this.sourceMachine = _data["sourceMachine"];
@@ -40081,6 +40107,9 @@ export class FixtureUpdateDto implements IFixtureUpdateDto {
40081
40107
  toJSON(data?: any) {
40082
40108
  data = typeof data === 'object' ? data : {};
40083
40109
  data["name"] = this.name;
40110
+ data["fixtureGroupId"] = this.fixtureGroupId;
40111
+ data["deleted"] = this.deleted;
40112
+ data["approved"] = this.approved;
40084
40113
  data["drawing"] = this.drawing;
40085
40114
  data["drawingRev"] = this.drawingRev;
40086
40115
  data["sourceMachine"] = this.sourceMachine;
@@ -40102,6 +40131,9 @@ export class FixtureUpdateDto implements IFixtureUpdateDto {
40102
40131
 
40103
40132
  export interface IFixtureUpdateDto {
40104
40133
  name: string;
40134
+ fixtureGroupId?: string | null;
40135
+ deleted?: boolean;
40136
+ approved?: boolean;
40105
40137
  drawing?: string | null;
40106
40138
  drawingRev?: string | null;
40107
40139
  sourceMachine?: string | null;