@ignos/api-client 20250619.0.11933 → 20250620.0.11946
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 +10 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +20 -0
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -8312,6 +8312,11 @@ export declare class FixtureDto implements IFixtureDto {
|
|
|
8312
8312
|
totalLength?: number | null;
|
|
8313
8313
|
gripSide?: GripSideDto | null;
|
|
8314
8314
|
description?: string | null;
|
|
8315
|
+
created: Date;
|
|
8316
|
+
createdBy: string;
|
|
8317
|
+
createdById: string;
|
|
8318
|
+
updatedBy?: string | null;
|
|
8319
|
+
updatedById?: string | null;
|
|
8315
8320
|
constructor(data?: IFixtureDto);
|
|
8316
8321
|
init(_data?: any): void;
|
|
8317
8322
|
static fromJS(data: any): FixtureDto;
|
|
@@ -8343,6 +8348,11 @@ export interface IFixtureDto {
|
|
|
8343
8348
|
totalLength?: number | null;
|
|
8344
8349
|
gripSide?: GripSideDto | null;
|
|
8345
8350
|
description?: string | null;
|
|
8351
|
+
created: Date;
|
|
8352
|
+
createdBy: string;
|
|
8353
|
+
createdById: string;
|
|
8354
|
+
updatedBy?: string | null;
|
|
8355
|
+
updatedById?: string | null;
|
|
8346
8356
|
}
|
|
8347
8357
|
export declare class FixtureInstanceDto implements IFixtureInstanceDto {
|
|
8348
8358
|
fixtureId: string;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -33965,6 +33965,11 @@ export class FixtureDto {
|
|
|
33965
33965
|
this.totalLength = _data["totalLength"];
|
|
33966
33966
|
this.gripSide = _data["gripSide"];
|
|
33967
33967
|
this.description = _data["description"];
|
|
33968
|
+
this.created = _data["created"] ? new Date(_data["created"].toString()) : undefined;
|
|
33969
|
+
this.createdBy = _data["createdBy"];
|
|
33970
|
+
this.createdById = _data["createdById"];
|
|
33971
|
+
this.updatedBy = _data["updatedBy"];
|
|
33972
|
+
this.updatedById = _data["updatedById"];
|
|
33968
33973
|
}
|
|
33969
33974
|
}
|
|
33970
33975
|
static fromJS(data) {
|
|
@@ -34008,6 +34013,11 @@ export class FixtureDto {
|
|
|
34008
34013
|
data["totalLength"] = this.totalLength;
|
|
34009
34014
|
data["gripSide"] = this.gripSide;
|
|
34010
34015
|
data["description"] = this.description;
|
|
34016
|
+
data["created"] = this.created ? this.created.toISOString() : undefined;
|
|
34017
|
+
data["createdBy"] = this.createdBy;
|
|
34018
|
+
data["createdById"] = this.createdById;
|
|
34019
|
+
data["updatedBy"] = this.updatedBy;
|
|
34020
|
+
data["updatedById"] = this.updatedById;
|
|
34011
34021
|
return data;
|
|
34012
34022
|
}
|
|
34013
34023
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -41072,6 +41072,11 @@ export class FixtureDto implements IFixtureDto {
|
|
|
41072
41072
|
totalLength?: number | null;
|
|
41073
41073
|
gripSide?: GripSideDto | null;
|
|
41074
41074
|
description?: string | null;
|
|
41075
|
+
created!: Date;
|
|
41076
|
+
createdBy!: string;
|
|
41077
|
+
createdById!: string;
|
|
41078
|
+
updatedBy?: string | null;
|
|
41079
|
+
updatedById?: string | null;
|
|
41075
41080
|
|
|
41076
41081
|
constructor(data?: IFixtureDto) {
|
|
41077
41082
|
if (data) {
|
|
@@ -41121,6 +41126,11 @@ export class FixtureDto implements IFixtureDto {
|
|
|
41121
41126
|
this.totalLength = _data["totalLength"];
|
|
41122
41127
|
this.gripSide = _data["gripSide"];
|
|
41123
41128
|
this.description = _data["description"];
|
|
41129
|
+
this.created = _data["created"] ? new Date(_data["created"].toString()) : <any>undefined;
|
|
41130
|
+
this.createdBy = _data["createdBy"];
|
|
41131
|
+
this.createdById = _data["createdById"];
|
|
41132
|
+
this.updatedBy = _data["updatedBy"];
|
|
41133
|
+
this.updatedById = _data["updatedById"];
|
|
41124
41134
|
}
|
|
41125
41135
|
}
|
|
41126
41136
|
|
|
@@ -41166,6 +41176,11 @@ export class FixtureDto implements IFixtureDto {
|
|
|
41166
41176
|
data["totalLength"] = this.totalLength;
|
|
41167
41177
|
data["gripSide"] = this.gripSide;
|
|
41168
41178
|
data["description"] = this.description;
|
|
41179
|
+
data["created"] = this.created ? this.created.toISOString() : <any>undefined;
|
|
41180
|
+
data["createdBy"] = this.createdBy;
|
|
41181
|
+
data["createdById"] = this.createdById;
|
|
41182
|
+
data["updatedBy"] = this.updatedBy;
|
|
41183
|
+
data["updatedById"] = this.updatedById;
|
|
41169
41184
|
return data;
|
|
41170
41185
|
}
|
|
41171
41186
|
}
|
|
@@ -41196,6 +41211,11 @@ export interface IFixtureDto {
|
|
|
41196
41211
|
totalLength?: number | null;
|
|
41197
41212
|
gripSide?: GripSideDto | null;
|
|
41198
41213
|
description?: string | null;
|
|
41214
|
+
created: Date;
|
|
41215
|
+
createdBy: string;
|
|
41216
|
+
createdById: string;
|
|
41217
|
+
updatedBy?: string | null;
|
|
41218
|
+
updatedById?: string | null;
|
|
41199
41219
|
}
|
|
41200
41220
|
|
|
41201
41221
|
export class FixtureInstanceDto implements IFixtureInstanceDto {
|