@ignos/api-client 20250604.0.11870 → 20250605.0.11876
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 +8 -6
- package/lib/ignosportal-api.js +8 -6
- package/package.json +1 -1
- package/src/ignosportal-api.ts +16 -12
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -8261,7 +8261,8 @@ export declare class FixtureDto implements IFixtureDto {
|
|
|
8261
8261
|
approved?: boolean;
|
|
8262
8262
|
drawing?: string | null;
|
|
8263
8263
|
drawingRev?: string | null;
|
|
8264
|
-
|
|
8264
|
+
sourceMachineId?: string | null;
|
|
8265
|
+
sourceMachineName?: string | null;
|
|
8265
8266
|
location?: string | null;
|
|
8266
8267
|
type?: FixtureTypeDto;
|
|
8267
8268
|
interface?: string | null;
|
|
@@ -8291,7 +8292,8 @@ export interface IFixtureDto {
|
|
|
8291
8292
|
approved?: boolean;
|
|
8292
8293
|
drawing?: string | null;
|
|
8293
8294
|
drawingRev?: string | null;
|
|
8294
|
-
|
|
8295
|
+
sourceMachineId?: string | null;
|
|
8296
|
+
sourceMachineName?: string | null;
|
|
8295
8297
|
location?: string | null;
|
|
8296
8298
|
type?: FixtureTypeDto;
|
|
8297
8299
|
interface?: string | null;
|
|
@@ -8451,7 +8453,7 @@ export declare class FixtureCreateDto implements IFixtureCreateDto {
|
|
|
8451
8453
|
approved?: boolean;
|
|
8452
8454
|
drawing?: string | null;
|
|
8453
8455
|
drawingRev?: string | null;
|
|
8454
|
-
|
|
8456
|
+
sourceMachineId?: string | null;
|
|
8455
8457
|
location?: string | null;
|
|
8456
8458
|
type?: FixtureTypeDto;
|
|
8457
8459
|
interface?: string | null;
|
|
@@ -8476,7 +8478,7 @@ export interface IFixtureCreateDto {
|
|
|
8476
8478
|
approved?: boolean;
|
|
8477
8479
|
drawing?: string | null;
|
|
8478
8480
|
drawingRev?: string | null;
|
|
8479
|
-
|
|
8481
|
+
sourceMachineId?: string | null;
|
|
8480
8482
|
location?: string | null;
|
|
8481
8483
|
type?: FixtureTypeDto;
|
|
8482
8484
|
interface?: string | null;
|
|
@@ -8498,7 +8500,7 @@ export declare class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
|
8498
8500
|
approved?: boolean;
|
|
8499
8501
|
drawing?: string | null;
|
|
8500
8502
|
drawingRev?: string | null;
|
|
8501
|
-
|
|
8503
|
+
sourceMachineId?: string | null;
|
|
8502
8504
|
location?: string | null;
|
|
8503
8505
|
type?: FixtureTypeDto;
|
|
8504
8506
|
interface?: string | null;
|
|
@@ -8524,7 +8526,7 @@ export interface IFixtureUpdateDto {
|
|
|
8524
8526
|
approved?: boolean;
|
|
8525
8527
|
drawing?: string | null;
|
|
8526
8528
|
drawingRev?: string | null;
|
|
8527
|
-
|
|
8529
|
+
sourceMachineId?: string | null;
|
|
8528
8530
|
location?: string | null;
|
|
8529
8531
|
type?: FixtureTypeDto;
|
|
8530
8532
|
interface?: string | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -33797,7 +33797,8 @@ export class FixtureDto {
|
|
|
33797
33797
|
this.approved = _data["approved"];
|
|
33798
33798
|
this.drawing = _data["drawing"];
|
|
33799
33799
|
this.drawingRev = _data["drawingRev"];
|
|
33800
|
-
this.
|
|
33800
|
+
this.sourceMachineId = _data["sourceMachineId"];
|
|
33801
|
+
this.sourceMachineName = _data["sourceMachineName"];
|
|
33801
33802
|
this.location = _data["location"];
|
|
33802
33803
|
this.type = _data["type"];
|
|
33803
33804
|
this.interface = _data["interface"];
|
|
@@ -33839,7 +33840,8 @@ export class FixtureDto {
|
|
|
33839
33840
|
data["approved"] = this.approved;
|
|
33840
33841
|
data["drawing"] = this.drawing;
|
|
33841
33842
|
data["drawingRev"] = this.drawingRev;
|
|
33842
|
-
data["
|
|
33843
|
+
data["sourceMachineId"] = this.sourceMachineId;
|
|
33844
|
+
data["sourceMachineName"] = this.sourceMachineName;
|
|
33843
33845
|
data["location"] = this.location;
|
|
33844
33846
|
data["type"] = this.type;
|
|
33845
33847
|
data["interface"] = this.interface;
|
|
@@ -34129,7 +34131,7 @@ export class FixtureCreateDto {
|
|
|
34129
34131
|
this.approved = _data["approved"];
|
|
34130
34132
|
this.drawing = _data["drawing"];
|
|
34131
34133
|
this.drawingRev = _data["drawingRev"];
|
|
34132
|
-
this.
|
|
34134
|
+
this.sourceMachineId = _data["sourceMachineId"];
|
|
34133
34135
|
this.location = _data["location"];
|
|
34134
34136
|
this.type = _data["type"];
|
|
34135
34137
|
this.interface = _data["interface"];
|
|
@@ -34158,7 +34160,7 @@ export class FixtureCreateDto {
|
|
|
34158
34160
|
data["approved"] = this.approved;
|
|
34159
34161
|
data["drawing"] = this.drawing;
|
|
34160
34162
|
data["drawingRev"] = this.drawingRev;
|
|
34161
|
-
data["
|
|
34163
|
+
data["sourceMachineId"] = this.sourceMachineId;
|
|
34162
34164
|
data["location"] = this.location;
|
|
34163
34165
|
data["type"] = this.type;
|
|
34164
34166
|
data["interface"] = this.interface;
|
|
@@ -34192,7 +34194,7 @@ export class FixtureUpdateDto {
|
|
|
34192
34194
|
this.approved = _data["approved"];
|
|
34193
34195
|
this.drawing = _data["drawing"];
|
|
34194
34196
|
this.drawingRev = _data["drawingRev"];
|
|
34195
|
-
this.
|
|
34197
|
+
this.sourceMachineId = _data["sourceMachineId"];
|
|
34196
34198
|
this.location = _data["location"];
|
|
34197
34199
|
this.type = _data["type"];
|
|
34198
34200
|
this.interface = _data["interface"];
|
|
@@ -34222,7 +34224,7 @@ export class FixtureUpdateDto {
|
|
|
34222
34224
|
data["approved"] = this.approved;
|
|
34223
34225
|
data["drawing"] = this.drawing;
|
|
34224
34226
|
data["drawingRev"] = this.drawingRev;
|
|
34225
|
-
data["
|
|
34227
|
+
data["sourceMachineId"] = this.sourceMachineId;
|
|
34226
34228
|
data["location"] = this.location;
|
|
34227
34229
|
data["type"] = this.type;
|
|
34228
34230
|
data["interface"] = this.interface;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -40875,7 +40875,8 @@ export class FixtureDto implements IFixtureDto {
|
|
|
40875
40875
|
approved?: boolean;
|
|
40876
40876
|
drawing?: string | null;
|
|
40877
40877
|
drawingRev?: string | null;
|
|
40878
|
-
|
|
40878
|
+
sourceMachineId?: string | null;
|
|
40879
|
+
sourceMachineName?: string | null;
|
|
40879
40880
|
location?: string | null;
|
|
40880
40881
|
type?: FixtureTypeDto;
|
|
40881
40882
|
interface?: string | null;
|
|
@@ -40919,7 +40920,8 @@ export class FixtureDto implements IFixtureDto {
|
|
|
40919
40920
|
this.approved = _data["approved"];
|
|
40920
40921
|
this.drawing = _data["drawing"];
|
|
40921
40922
|
this.drawingRev = _data["drawingRev"];
|
|
40922
|
-
this.
|
|
40923
|
+
this.sourceMachineId = _data["sourceMachineId"];
|
|
40924
|
+
this.sourceMachineName = _data["sourceMachineName"];
|
|
40923
40925
|
this.location = _data["location"];
|
|
40924
40926
|
this.type = _data["type"];
|
|
40925
40927
|
this.interface = _data["interface"];
|
|
@@ -40963,7 +40965,8 @@ export class FixtureDto implements IFixtureDto {
|
|
|
40963
40965
|
data["approved"] = this.approved;
|
|
40964
40966
|
data["drawing"] = this.drawing;
|
|
40965
40967
|
data["drawingRev"] = this.drawingRev;
|
|
40966
|
-
data["
|
|
40968
|
+
data["sourceMachineId"] = this.sourceMachineId;
|
|
40969
|
+
data["sourceMachineName"] = this.sourceMachineName;
|
|
40967
40970
|
data["location"] = this.location;
|
|
40968
40971
|
data["type"] = this.type;
|
|
40969
40972
|
data["interface"] = this.interface;
|
|
@@ -40996,7 +40999,8 @@ export interface IFixtureDto {
|
|
|
40996
40999
|
approved?: boolean;
|
|
40997
41000
|
drawing?: string | null;
|
|
40998
41001
|
drawingRev?: string | null;
|
|
40999
|
-
|
|
41002
|
+
sourceMachineId?: string | null;
|
|
41003
|
+
sourceMachineName?: string | null;
|
|
41000
41004
|
location?: string | null;
|
|
41001
41005
|
type?: FixtureTypeDto;
|
|
41002
41006
|
interface?: string | null;
|
|
@@ -41415,7 +41419,7 @@ export class FixtureCreateDto implements IFixtureCreateDto {
|
|
|
41415
41419
|
approved?: boolean;
|
|
41416
41420
|
drawing?: string | null;
|
|
41417
41421
|
drawingRev?: string | null;
|
|
41418
|
-
|
|
41422
|
+
sourceMachineId?: string | null;
|
|
41419
41423
|
location?: string | null;
|
|
41420
41424
|
type?: FixtureTypeDto;
|
|
41421
41425
|
interface?: string | null;
|
|
@@ -41446,7 +41450,7 @@ export class FixtureCreateDto implements IFixtureCreateDto {
|
|
|
41446
41450
|
this.approved = _data["approved"];
|
|
41447
41451
|
this.drawing = _data["drawing"];
|
|
41448
41452
|
this.drawingRev = _data["drawingRev"];
|
|
41449
|
-
this.
|
|
41453
|
+
this.sourceMachineId = _data["sourceMachineId"];
|
|
41450
41454
|
this.location = _data["location"];
|
|
41451
41455
|
this.type = _data["type"];
|
|
41452
41456
|
this.interface = _data["interface"];
|
|
@@ -41477,7 +41481,7 @@ export class FixtureCreateDto implements IFixtureCreateDto {
|
|
|
41477
41481
|
data["approved"] = this.approved;
|
|
41478
41482
|
data["drawing"] = this.drawing;
|
|
41479
41483
|
data["drawingRev"] = this.drawingRev;
|
|
41480
|
-
data["
|
|
41484
|
+
data["sourceMachineId"] = this.sourceMachineId;
|
|
41481
41485
|
data["location"] = this.location;
|
|
41482
41486
|
data["type"] = this.type;
|
|
41483
41487
|
data["interface"] = this.interface;
|
|
@@ -41501,7 +41505,7 @@ export interface IFixtureCreateDto {
|
|
|
41501
41505
|
approved?: boolean;
|
|
41502
41506
|
drawing?: string | null;
|
|
41503
41507
|
drawingRev?: string | null;
|
|
41504
|
-
|
|
41508
|
+
sourceMachineId?: string | null;
|
|
41505
41509
|
location?: string | null;
|
|
41506
41510
|
type?: FixtureTypeDto;
|
|
41507
41511
|
interface?: string | null;
|
|
@@ -41524,7 +41528,7 @@ export class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
|
41524
41528
|
approved?: boolean;
|
|
41525
41529
|
drawing?: string | null;
|
|
41526
41530
|
drawingRev?: string | null;
|
|
41527
|
-
|
|
41531
|
+
sourceMachineId?: string | null;
|
|
41528
41532
|
location?: string | null;
|
|
41529
41533
|
type?: FixtureTypeDto;
|
|
41530
41534
|
interface?: string | null;
|
|
@@ -41556,7 +41560,7 @@ export class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
|
41556
41560
|
this.approved = _data["approved"];
|
|
41557
41561
|
this.drawing = _data["drawing"];
|
|
41558
41562
|
this.drawingRev = _data["drawingRev"];
|
|
41559
|
-
this.
|
|
41563
|
+
this.sourceMachineId = _data["sourceMachineId"];
|
|
41560
41564
|
this.location = _data["location"];
|
|
41561
41565
|
this.type = _data["type"];
|
|
41562
41566
|
this.interface = _data["interface"];
|
|
@@ -41588,7 +41592,7 @@ export class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
|
41588
41592
|
data["approved"] = this.approved;
|
|
41589
41593
|
data["drawing"] = this.drawing;
|
|
41590
41594
|
data["drawingRev"] = this.drawingRev;
|
|
41591
|
-
data["
|
|
41595
|
+
data["sourceMachineId"] = this.sourceMachineId;
|
|
41592
41596
|
data["location"] = this.location;
|
|
41593
41597
|
data["type"] = this.type;
|
|
41594
41598
|
data["interface"] = this.interface;
|
|
@@ -41613,7 +41617,7 @@ export interface IFixtureUpdateDto {
|
|
|
41613
41617
|
approved?: boolean;
|
|
41614
41618
|
drawing?: string | null;
|
|
41615
41619
|
drawingRev?: string | null;
|
|
41616
|
-
|
|
41620
|
+
sourceMachineId?: string | null;
|
|
41617
41621
|
location?: string | null;
|
|
41618
41622
|
type?: FixtureTypeDto;
|
|
41619
41623
|
interface?: string | null;
|