@ignos/api-client 20250430.0.11610 → 20250430.0.11612
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 +10 -0
- package/lib/ignosportal-api.js +8 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +20 -0
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -8202,6 +8202,8 @@ export type GripSideDto = "NotApplicable" | "Inside" | "Outside";
|
|
|
8202
8202
|
export declare class ListFixtures implements IListFixtures {
|
|
8203
8203
|
pageSize?: number | null;
|
|
8204
8204
|
fixtureTypeFilter?: FixtureTypeDto[] | null;
|
|
8205
|
+
deletedFilter?: FixtureDeletedDto | null;
|
|
8206
|
+
approvedFilter?: FixtureApprovedDto | null;
|
|
8205
8207
|
continuationToken?: string | null;
|
|
8206
8208
|
constructor(data?: IListFixtures);
|
|
8207
8209
|
init(_data?: any): void;
|
|
@@ -8211,10 +8213,16 @@ export declare class ListFixtures implements IListFixtures {
|
|
|
8211
8213
|
export interface IListFixtures {
|
|
8212
8214
|
pageSize?: number | null;
|
|
8213
8215
|
fixtureTypeFilter?: FixtureTypeDto[] | null;
|
|
8216
|
+
deletedFilter?: FixtureDeletedDto | null;
|
|
8217
|
+
approvedFilter?: FixtureApprovedDto | null;
|
|
8214
8218
|
continuationToken?: string | null;
|
|
8215
8219
|
}
|
|
8220
|
+
export type FixtureDeletedDto = "NotDeleted" | "Deleted";
|
|
8221
|
+
export type FixtureApprovedDto = "NotApproved" | "Approved";
|
|
8216
8222
|
export declare class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
8217
8223
|
name: string;
|
|
8224
|
+
deleted?: boolean;
|
|
8225
|
+
approved?: boolean;
|
|
8218
8226
|
drawing?: string | null;
|
|
8219
8227
|
drawingRev?: string | null;
|
|
8220
8228
|
sourceMachine?: string | null;
|
|
@@ -8237,6 +8245,8 @@ export declare class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
|
8237
8245
|
}
|
|
8238
8246
|
export interface IFixtureUpdateDto {
|
|
8239
8247
|
name: string;
|
|
8248
|
+
deleted?: boolean;
|
|
8249
|
+
approved?: boolean;
|
|
8240
8250
|
drawing?: string | null;
|
|
8241
8251
|
drawingRev?: string | null;
|
|
8242
8252
|
sourceMachine?: string | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -32889,6 +32889,8 @@ export class ListFixtures {
|
|
|
32889
32889
|
for (let item of _data["fixtureTypeFilter"])
|
|
32890
32890
|
this.fixtureTypeFilter.push(item);
|
|
32891
32891
|
}
|
|
32892
|
+
this.deletedFilter = _data["deletedFilter"];
|
|
32893
|
+
this.approvedFilter = _data["approvedFilter"];
|
|
32892
32894
|
this.continuationToken = _data["continuationToken"];
|
|
32893
32895
|
}
|
|
32894
32896
|
}
|
|
@@ -32906,6 +32908,8 @@ export class ListFixtures {
|
|
|
32906
32908
|
for (let item of this.fixtureTypeFilter)
|
|
32907
32909
|
data["fixtureTypeFilter"].push(item);
|
|
32908
32910
|
}
|
|
32911
|
+
data["deletedFilter"] = this.deletedFilter;
|
|
32912
|
+
data["approvedFilter"] = this.approvedFilter;
|
|
32909
32913
|
data["continuationToken"] = this.continuationToken;
|
|
32910
32914
|
return data;
|
|
32911
32915
|
}
|
|
@@ -32922,6 +32926,8 @@ export class FixtureUpdateDto {
|
|
|
32922
32926
|
init(_data) {
|
|
32923
32927
|
if (_data) {
|
|
32924
32928
|
this.name = _data["name"];
|
|
32929
|
+
this.deleted = _data["deleted"];
|
|
32930
|
+
this.approved = _data["approved"];
|
|
32925
32931
|
this.drawing = _data["drawing"];
|
|
32926
32932
|
this.drawingRev = _data["drawingRev"];
|
|
32927
32933
|
this.sourceMachine = _data["sourceMachine"];
|
|
@@ -32948,6 +32954,8 @@ export class FixtureUpdateDto {
|
|
|
32948
32954
|
toJSON(data) {
|
|
32949
32955
|
data = typeof data === 'object' ? data : {};
|
|
32950
32956
|
data["name"] = this.name;
|
|
32957
|
+
data["deleted"] = this.deleted;
|
|
32958
|
+
data["approved"] = this.approved;
|
|
32951
32959
|
data["drawing"] = this.drawing;
|
|
32952
32960
|
data["drawingRev"] = this.drawingRev;
|
|
32953
32961
|
data["sourceMachine"] = this.sourceMachine;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -39974,6 +39974,8 @@ export type GripSideDto = "NotApplicable" | "Inside" | "Outside";
|
|
|
39974
39974
|
export class ListFixtures implements IListFixtures {
|
|
39975
39975
|
pageSize?: number | null;
|
|
39976
39976
|
fixtureTypeFilter?: FixtureTypeDto[] | null;
|
|
39977
|
+
deletedFilter?: FixtureDeletedDto | null;
|
|
39978
|
+
approvedFilter?: FixtureApprovedDto | null;
|
|
39977
39979
|
continuationToken?: string | null;
|
|
39978
39980
|
|
|
39979
39981
|
constructor(data?: IListFixtures) {
|
|
@@ -39993,6 +39995,8 @@ export class ListFixtures implements IListFixtures {
|
|
|
39993
39995
|
for (let item of _data["fixtureTypeFilter"])
|
|
39994
39996
|
this.fixtureTypeFilter!.push(item);
|
|
39995
39997
|
}
|
|
39998
|
+
this.deletedFilter = _data["deletedFilter"];
|
|
39999
|
+
this.approvedFilter = _data["approvedFilter"];
|
|
39996
40000
|
this.continuationToken = _data["continuationToken"];
|
|
39997
40001
|
}
|
|
39998
40002
|
}
|
|
@@ -40012,6 +40016,8 @@ export class ListFixtures implements IListFixtures {
|
|
|
40012
40016
|
for (let item of this.fixtureTypeFilter)
|
|
40013
40017
|
data["fixtureTypeFilter"].push(item);
|
|
40014
40018
|
}
|
|
40019
|
+
data["deletedFilter"] = this.deletedFilter;
|
|
40020
|
+
data["approvedFilter"] = this.approvedFilter;
|
|
40015
40021
|
data["continuationToken"] = this.continuationToken;
|
|
40016
40022
|
return data;
|
|
40017
40023
|
}
|
|
@@ -40020,11 +40026,19 @@ export class ListFixtures implements IListFixtures {
|
|
|
40020
40026
|
export interface IListFixtures {
|
|
40021
40027
|
pageSize?: number | null;
|
|
40022
40028
|
fixtureTypeFilter?: FixtureTypeDto[] | null;
|
|
40029
|
+
deletedFilter?: FixtureDeletedDto | null;
|
|
40030
|
+
approvedFilter?: FixtureApprovedDto | null;
|
|
40023
40031
|
continuationToken?: string | null;
|
|
40024
40032
|
}
|
|
40025
40033
|
|
|
40034
|
+
export type FixtureDeletedDto = "NotDeleted" | "Deleted";
|
|
40035
|
+
|
|
40036
|
+
export type FixtureApprovedDto = "NotApproved" | "Approved";
|
|
40037
|
+
|
|
40026
40038
|
export class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
40027
40039
|
name!: string;
|
|
40040
|
+
deleted?: boolean;
|
|
40041
|
+
approved?: boolean;
|
|
40028
40042
|
drawing?: string | null;
|
|
40029
40043
|
drawingRev?: string | null;
|
|
40030
40044
|
sourceMachine?: string | null;
|
|
@@ -40053,6 +40067,8 @@ export class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
|
40053
40067
|
init(_data?: any) {
|
|
40054
40068
|
if (_data) {
|
|
40055
40069
|
this.name = _data["name"];
|
|
40070
|
+
this.deleted = _data["deleted"];
|
|
40071
|
+
this.approved = _data["approved"];
|
|
40056
40072
|
this.drawing = _data["drawing"];
|
|
40057
40073
|
this.drawingRev = _data["drawingRev"];
|
|
40058
40074
|
this.sourceMachine = _data["sourceMachine"];
|
|
@@ -40081,6 +40097,8 @@ export class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
|
40081
40097
|
toJSON(data?: any) {
|
|
40082
40098
|
data = typeof data === 'object' ? data : {};
|
|
40083
40099
|
data["name"] = this.name;
|
|
40100
|
+
data["deleted"] = this.deleted;
|
|
40101
|
+
data["approved"] = this.approved;
|
|
40084
40102
|
data["drawing"] = this.drawing;
|
|
40085
40103
|
data["drawingRev"] = this.drawingRev;
|
|
40086
40104
|
data["sourceMachine"] = this.sourceMachine;
|
|
@@ -40102,6 +40120,8 @@ export class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
|
40102
40120
|
|
|
40103
40121
|
export interface IFixtureUpdateDto {
|
|
40104
40122
|
name: string;
|
|
40123
|
+
deleted?: boolean;
|
|
40124
|
+
approved?: boolean;
|
|
40105
40125
|
drawing?: string | null;
|
|
40106
40126
|
drawingRev?: string | null;
|
|
40107
40127
|
sourceMachine?: string | null;
|