@ignos/api-client 20250430.0.11612 → 20250502.0.11629
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 +6 -0
- package/lib/ignosportal-api.js +6 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +12 -0
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -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;
|
|
@@ -8221,6 +8225,7 @@ export type FixtureDeletedDto = "NotDeleted" | "Deleted";
|
|
|
8221
8225
|
export type FixtureApprovedDto = "NotApproved" | "Approved";
|
|
8222
8226
|
export declare class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
8223
8227
|
name: string;
|
|
8228
|
+
fixtureGroupId?: string | null;
|
|
8224
8229
|
deleted?: boolean;
|
|
8225
8230
|
approved?: boolean;
|
|
8226
8231
|
drawing?: string | null;
|
|
@@ -8245,6 +8250,7 @@ export declare class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
|
8245
8250
|
}
|
|
8246
8251
|
export interface IFixtureUpdateDto {
|
|
8247
8252
|
name: string;
|
|
8253
|
+
fixtureGroupId?: string | null;
|
|
8248
8254
|
deleted?: boolean;
|
|
8249
8255
|
approved?: boolean;
|
|
8250
8256
|
drawing?: string | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -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;
|
|
@@ -32926,6 +32930,7 @@ export class FixtureUpdateDto {
|
|
|
32926
32930
|
init(_data) {
|
|
32927
32931
|
if (_data) {
|
|
32928
32932
|
this.name = _data["name"];
|
|
32933
|
+
this.fixtureGroupId = _data["fixtureGroupId"];
|
|
32929
32934
|
this.deleted = _data["deleted"];
|
|
32930
32935
|
this.approved = _data["approved"];
|
|
32931
32936
|
this.drawing = _data["drawing"];
|
|
@@ -32954,6 +32959,7 @@ export class FixtureUpdateDto {
|
|
|
32954
32959
|
toJSON(data) {
|
|
32955
32960
|
data = typeof data === 'object' ? data : {};
|
|
32956
32961
|
data["name"] = this.name;
|
|
32962
|
+
data["fixtureGroupId"] = this.fixtureGroupId;
|
|
32957
32963
|
data["deleted"] = this.deleted;
|
|
32958
32964
|
data["approved"] = this.approved;
|
|
32959
32965
|
data["drawing"] = this.drawing;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -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;
|
|
@@ -40037,6 +40045,7 @@ export type FixtureApprovedDto = "NotApproved" | "Approved";
|
|
|
40037
40045
|
|
|
40038
40046
|
export class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
40039
40047
|
name!: string;
|
|
40048
|
+
fixtureGroupId?: string | null;
|
|
40040
40049
|
deleted?: boolean;
|
|
40041
40050
|
approved?: boolean;
|
|
40042
40051
|
drawing?: string | null;
|
|
@@ -40067,6 +40076,7 @@ export class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
|
40067
40076
|
init(_data?: any) {
|
|
40068
40077
|
if (_data) {
|
|
40069
40078
|
this.name = _data["name"];
|
|
40079
|
+
this.fixtureGroupId = _data["fixtureGroupId"];
|
|
40070
40080
|
this.deleted = _data["deleted"];
|
|
40071
40081
|
this.approved = _data["approved"];
|
|
40072
40082
|
this.drawing = _data["drawing"];
|
|
@@ -40097,6 +40107,7 @@ export class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
|
40097
40107
|
toJSON(data?: any) {
|
|
40098
40108
|
data = typeof data === 'object' ? data : {};
|
|
40099
40109
|
data["name"] = this.name;
|
|
40110
|
+
data["fixtureGroupId"] = this.fixtureGroupId;
|
|
40100
40111
|
data["deleted"] = this.deleted;
|
|
40101
40112
|
data["approved"] = this.approved;
|
|
40102
40113
|
data["drawing"] = this.drawing;
|
|
@@ -40120,6 +40131,7 @@ export class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
|
40120
40131
|
|
|
40121
40132
|
export interface IFixtureUpdateDto {
|
|
40122
40133
|
name: string;
|
|
40134
|
+
fixtureGroupId?: string | null;
|
|
40123
40135
|
deleted?: boolean;
|
|
40124
40136
|
approved?: boolean;
|
|
40125
40137
|
drawing?: string | null;
|