@ignos/api-client 20250619.0.11931 → 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 +14 -8
- package/lib/ignosportal-api.js +10 -4
- package/package.json +1 -1
- package/src/ignosportal-api.ts +24 -12
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;
|
|
@@ -8485,13 +8495,11 @@ export type FixtureDecimalFilterCriteriaDto = "Equals" | "NotEquals" | "GreaterT
|
|
|
8485
8495
|
export declare class FixtureCreateDto implements IFixtureCreateDto {
|
|
8486
8496
|
name?: string | null;
|
|
8487
8497
|
fixtureGroupId?: string | null;
|
|
8488
|
-
deleted?: boolean;
|
|
8489
|
-
approved?: boolean;
|
|
8490
8498
|
drawing?: string | null;
|
|
8491
8499
|
drawingRev?: string | null;
|
|
8492
8500
|
sourceMachineId?: string | null;
|
|
8493
8501
|
location?: string | null;
|
|
8494
|
-
type
|
|
8502
|
+
type: FixtureTypeDto;
|
|
8495
8503
|
interface?: string | null;
|
|
8496
8504
|
diameter?: number | null;
|
|
8497
8505
|
outerDiameter?: number | null;
|
|
@@ -8510,13 +8518,11 @@ export declare class FixtureCreateDto implements IFixtureCreateDto {
|
|
|
8510
8518
|
export interface IFixtureCreateDto {
|
|
8511
8519
|
name?: string | null;
|
|
8512
8520
|
fixtureGroupId?: string | null;
|
|
8513
|
-
deleted?: boolean;
|
|
8514
|
-
approved?: boolean;
|
|
8515
8521
|
drawing?: string | null;
|
|
8516
8522
|
drawingRev?: string | null;
|
|
8517
8523
|
sourceMachineId?: string | null;
|
|
8518
8524
|
location?: string | null;
|
|
8519
|
-
type
|
|
8525
|
+
type: FixtureTypeDto;
|
|
8520
8526
|
interface?: string | null;
|
|
8521
8527
|
diameter?: number | null;
|
|
8522
8528
|
outerDiameter?: number | null;
|
|
@@ -8538,7 +8544,7 @@ export declare class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
|
8538
8544
|
drawingRev?: string | null;
|
|
8539
8545
|
sourceMachineId?: string | null;
|
|
8540
8546
|
location?: string | null;
|
|
8541
|
-
type
|
|
8547
|
+
type: FixtureTypeDto;
|
|
8542
8548
|
interface?: string | null;
|
|
8543
8549
|
diameter?: number | null;
|
|
8544
8550
|
outerDiameter?: number | null;
|
|
@@ -8564,7 +8570,7 @@ export interface IFixtureUpdateDto {
|
|
|
8564
8570
|
drawingRev?: string | null;
|
|
8565
8571
|
sourceMachineId?: string | null;
|
|
8566
8572
|
location?: string | null;
|
|
8567
|
-
type
|
|
8573
|
+
type: FixtureTypeDto;
|
|
8568
8574
|
interface?: string | null;
|
|
8569
8575
|
diameter?: number | null;
|
|
8570
8576
|
outerDiameter?: number | null;
|
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
|
}
|
|
@@ -34276,8 +34286,6 @@ export class FixtureCreateDto {
|
|
|
34276
34286
|
if (_data) {
|
|
34277
34287
|
this.name = _data["name"];
|
|
34278
34288
|
this.fixtureGroupId = _data["fixtureGroupId"];
|
|
34279
|
-
this.deleted = _data["deleted"];
|
|
34280
|
-
this.approved = _data["approved"];
|
|
34281
34289
|
this.drawing = _data["drawing"];
|
|
34282
34290
|
this.drawingRev = _data["drawingRev"];
|
|
34283
34291
|
this.sourceMachineId = _data["sourceMachineId"];
|
|
@@ -34305,8 +34313,6 @@ export class FixtureCreateDto {
|
|
|
34305
34313
|
data = typeof data === 'object' ? data : {};
|
|
34306
34314
|
data["name"] = this.name;
|
|
34307
34315
|
data["fixtureGroupId"] = this.fixtureGroupId;
|
|
34308
|
-
data["deleted"] = this.deleted;
|
|
34309
|
-
data["approved"] = this.approved;
|
|
34310
34316
|
data["drawing"] = this.drawing;
|
|
34311
34317
|
data["drawingRev"] = this.drawingRev;
|
|
34312
34318
|
data["sourceMachineId"] = this.sourceMachineId;
|
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 {
|
|
@@ -41597,13 +41617,11 @@ export type FixtureDecimalFilterCriteriaDto = "Equals" | "NotEquals" | "GreaterT
|
|
|
41597
41617
|
export class FixtureCreateDto implements IFixtureCreateDto {
|
|
41598
41618
|
name?: string | null;
|
|
41599
41619
|
fixtureGroupId?: string | null;
|
|
41600
|
-
deleted?: boolean;
|
|
41601
|
-
approved?: boolean;
|
|
41602
41620
|
drawing?: string | null;
|
|
41603
41621
|
drawingRev?: string | null;
|
|
41604
41622
|
sourceMachineId?: string | null;
|
|
41605
41623
|
location?: string | null;
|
|
41606
|
-
type
|
|
41624
|
+
type!: FixtureTypeDto;
|
|
41607
41625
|
interface?: string | null;
|
|
41608
41626
|
diameter?: number | null;
|
|
41609
41627
|
outerDiameter?: number | null;
|
|
@@ -41628,8 +41646,6 @@ export class FixtureCreateDto implements IFixtureCreateDto {
|
|
|
41628
41646
|
if (_data) {
|
|
41629
41647
|
this.name = _data["name"];
|
|
41630
41648
|
this.fixtureGroupId = _data["fixtureGroupId"];
|
|
41631
|
-
this.deleted = _data["deleted"];
|
|
41632
|
-
this.approved = _data["approved"];
|
|
41633
41649
|
this.drawing = _data["drawing"];
|
|
41634
41650
|
this.drawingRev = _data["drawingRev"];
|
|
41635
41651
|
this.sourceMachineId = _data["sourceMachineId"];
|
|
@@ -41659,8 +41675,6 @@ export class FixtureCreateDto implements IFixtureCreateDto {
|
|
|
41659
41675
|
data = typeof data === 'object' ? data : {};
|
|
41660
41676
|
data["name"] = this.name;
|
|
41661
41677
|
data["fixtureGroupId"] = this.fixtureGroupId;
|
|
41662
|
-
data["deleted"] = this.deleted;
|
|
41663
|
-
data["approved"] = this.approved;
|
|
41664
41678
|
data["drawing"] = this.drawing;
|
|
41665
41679
|
data["drawingRev"] = this.drawingRev;
|
|
41666
41680
|
data["sourceMachineId"] = this.sourceMachineId;
|
|
@@ -41683,13 +41697,11 @@ export class FixtureCreateDto implements IFixtureCreateDto {
|
|
|
41683
41697
|
export interface IFixtureCreateDto {
|
|
41684
41698
|
name?: string | null;
|
|
41685
41699
|
fixtureGroupId?: string | null;
|
|
41686
|
-
deleted?: boolean;
|
|
41687
|
-
approved?: boolean;
|
|
41688
41700
|
drawing?: string | null;
|
|
41689
41701
|
drawingRev?: string | null;
|
|
41690
41702
|
sourceMachineId?: string | null;
|
|
41691
41703
|
location?: string | null;
|
|
41692
|
-
type
|
|
41704
|
+
type: FixtureTypeDto;
|
|
41693
41705
|
interface?: string | null;
|
|
41694
41706
|
diameter?: number | null;
|
|
41695
41707
|
outerDiameter?: number | null;
|
|
@@ -41712,7 +41724,7 @@ export class FixtureUpdateDto implements IFixtureUpdateDto {
|
|
|
41712
41724
|
drawingRev?: string | null;
|
|
41713
41725
|
sourceMachineId?: string | null;
|
|
41714
41726
|
location?: string | null;
|
|
41715
|
-
type
|
|
41727
|
+
type!: FixtureTypeDto;
|
|
41716
41728
|
interface?: string | null;
|
|
41717
41729
|
diameter?: number | null;
|
|
41718
41730
|
outerDiameter?: number | null;
|
|
@@ -41801,7 +41813,7 @@ export interface IFixtureUpdateDto {
|
|
|
41801
41813
|
drawingRev?: string | null;
|
|
41802
41814
|
sourceMachineId?: string | null;
|
|
41803
41815
|
location?: string | null;
|
|
41804
|
-
type
|
|
41816
|
+
type: FixtureTypeDto;
|
|
41805
41817
|
interface?: string | null;
|
|
41806
41818
|
diameter?: number | null;
|
|
41807
41819
|
outerDiameter?: number | null;
|