@ignos/api-client 20260120.0.13796-alpha → 20260121.0.13808
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
|
@@ -13387,6 +13387,7 @@ export declare class MeasurementFormSchemaDto implements IMeasurementFormSchemaD
|
|
|
13387
13387
|
customerId?: string | null;
|
|
13388
13388
|
customerName?: string | null;
|
|
13389
13389
|
excludeFromCustomerDocumentation: boolean;
|
|
13390
|
+
excludeDrawingFromCustomerDocumentation: boolean;
|
|
13390
13391
|
specification?: string | null;
|
|
13391
13392
|
isUsed: boolean;
|
|
13392
13393
|
status: MeasurementFormStatus;
|
|
@@ -13419,6 +13420,7 @@ export interface IMeasurementFormSchemaDto {
|
|
|
13419
13420
|
customerId?: string | null;
|
|
13420
13421
|
customerName?: string | null;
|
|
13421
13422
|
excludeFromCustomerDocumentation: boolean;
|
|
13423
|
+
excludeDrawingFromCustomerDocumentation: boolean;
|
|
13422
13424
|
specification?: string | null;
|
|
13423
13425
|
isUsed: boolean;
|
|
13424
13426
|
status: MeasurementFormStatus;
|
|
@@ -13631,6 +13633,7 @@ export interface ICreateMeasurementFormSchema {
|
|
|
13631
13633
|
}
|
|
13632
13634
|
export declare class UpdateMeasurementFormSchemaRequest implements IUpdateMeasurementFormSchemaRequest {
|
|
13633
13635
|
excludeFromCustomerDocumentation: boolean;
|
|
13636
|
+
excludeDrawingFromCustomerDocumentation?: boolean | null;
|
|
13634
13637
|
specification?: string | null;
|
|
13635
13638
|
constructor(data?: IUpdateMeasurementFormSchemaRequest);
|
|
13636
13639
|
init(_data?: any): void;
|
|
@@ -13639,6 +13642,7 @@ export declare class UpdateMeasurementFormSchemaRequest implements IUpdateMeasur
|
|
|
13639
13642
|
}
|
|
13640
13643
|
export interface IUpdateMeasurementFormSchemaRequest {
|
|
13641
13644
|
excludeFromCustomerDocumentation: boolean;
|
|
13645
|
+
excludeDrawingFromCustomerDocumentation?: boolean | null;
|
|
13642
13646
|
specification?: string | null;
|
|
13643
13647
|
}
|
|
13644
13648
|
export declare class CopyMeasurementFormSchema implements ICopyMeasurementFormSchema {
|
|
@@ -14509,6 +14513,7 @@ export declare class MeasurementFormWorkorderSchemaDto implements IMeasurementFo
|
|
|
14509
14513
|
drawingUrl?: string | null;
|
|
14510
14514
|
markedDrawingUrl?: string | null;
|
|
14511
14515
|
excludeFromCustomerDocumentation: boolean;
|
|
14516
|
+
excludeDrawingFromCustomerDocumentation: boolean;
|
|
14512
14517
|
versionId: number;
|
|
14513
14518
|
specification?: string | null;
|
|
14514
14519
|
progress: MeasurementFormProgressDto;
|
|
@@ -14527,6 +14532,7 @@ export interface IMeasurementFormWorkorderSchemaDto {
|
|
|
14527
14532
|
drawingUrl?: string | null;
|
|
14528
14533
|
markedDrawingUrl?: string | null;
|
|
14529
14534
|
excludeFromCustomerDocumentation: boolean;
|
|
14535
|
+
excludeDrawingFromCustomerDocumentation: boolean;
|
|
14530
14536
|
versionId: number;
|
|
14531
14537
|
specification?: string | null;
|
|
14532
14538
|
progress: MeasurementFormProgressDto;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -47986,6 +47986,7 @@ export class MeasurementFormSchemaDto {
|
|
|
47986
47986
|
this.customerId = _data["customerId"];
|
|
47987
47987
|
this.customerName = _data["customerName"];
|
|
47988
47988
|
this.excludeFromCustomerDocumentation = _data["excludeFromCustomerDocumentation"];
|
|
47989
|
+
this.excludeDrawingFromCustomerDocumentation = _data["excludeDrawingFromCustomerDocumentation"];
|
|
47989
47990
|
this.specification = _data["specification"];
|
|
47990
47991
|
this.isUsed = _data["isUsed"];
|
|
47991
47992
|
this.status = _data["status"];
|
|
@@ -48034,6 +48035,7 @@ export class MeasurementFormSchemaDto {
|
|
|
48034
48035
|
data["customerId"] = this.customerId;
|
|
48035
48036
|
data["customerName"] = this.customerName;
|
|
48036
48037
|
data["excludeFromCustomerDocumentation"] = this.excludeFromCustomerDocumentation;
|
|
48038
|
+
data["excludeDrawingFromCustomerDocumentation"] = this.excludeDrawingFromCustomerDocumentation;
|
|
48037
48039
|
data["specification"] = this.specification;
|
|
48038
48040
|
data["isUsed"] = this.isUsed;
|
|
48039
48041
|
data["status"] = this.status;
|
|
@@ -48353,6 +48355,7 @@ export class UpdateMeasurementFormSchemaRequest {
|
|
|
48353
48355
|
init(_data) {
|
|
48354
48356
|
if (_data) {
|
|
48355
48357
|
this.excludeFromCustomerDocumentation = _data["excludeFromCustomerDocumentation"];
|
|
48358
|
+
this.excludeDrawingFromCustomerDocumentation = _data["excludeDrawingFromCustomerDocumentation"];
|
|
48356
48359
|
this.specification = _data["specification"];
|
|
48357
48360
|
}
|
|
48358
48361
|
}
|
|
@@ -48365,6 +48368,7 @@ export class UpdateMeasurementFormSchemaRequest {
|
|
|
48365
48368
|
toJSON(data) {
|
|
48366
48369
|
data = typeof data === 'object' ? data : {};
|
|
48367
48370
|
data["excludeFromCustomerDocumentation"] = this.excludeFromCustomerDocumentation;
|
|
48371
|
+
data["excludeDrawingFromCustomerDocumentation"] = this.excludeDrawingFromCustomerDocumentation;
|
|
48368
48372
|
data["specification"] = this.specification;
|
|
48369
48373
|
return data;
|
|
48370
48374
|
}
|
|
@@ -50134,6 +50138,7 @@ export class MeasurementFormWorkorderSchemaDto {
|
|
|
50134
50138
|
this.drawingUrl = _data["drawingUrl"];
|
|
50135
50139
|
this.markedDrawingUrl = _data["markedDrawingUrl"];
|
|
50136
50140
|
this.excludeFromCustomerDocumentation = _data["excludeFromCustomerDocumentation"];
|
|
50141
|
+
this.excludeDrawingFromCustomerDocumentation = _data["excludeDrawingFromCustomerDocumentation"];
|
|
50137
50142
|
this.versionId = _data["versionId"];
|
|
50138
50143
|
this.specification = _data["specification"];
|
|
50139
50144
|
this.progress = _data["progress"] ? MeasurementFormProgressDto.fromJS(_data["progress"]) : new MeasurementFormProgressDto();
|
|
@@ -50156,6 +50161,7 @@ export class MeasurementFormWorkorderSchemaDto {
|
|
|
50156
50161
|
data["drawingUrl"] = this.drawingUrl;
|
|
50157
50162
|
data["markedDrawingUrl"] = this.markedDrawingUrl;
|
|
50158
50163
|
data["excludeFromCustomerDocumentation"] = this.excludeFromCustomerDocumentation;
|
|
50164
|
+
data["excludeDrawingFromCustomerDocumentation"] = this.excludeDrawingFromCustomerDocumentation;
|
|
50159
50165
|
data["versionId"] = this.versionId;
|
|
50160
50166
|
data["specification"] = this.specification;
|
|
50161
50167
|
data["progress"] = this.progress ? this.progress.toJSON() : undefined;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -59944,6 +59944,7 @@ export class MeasurementFormSchemaDto implements IMeasurementFormSchemaDto {
|
|
|
59944
59944
|
customerId?: string | null;
|
|
59945
59945
|
customerName?: string | null;
|
|
59946
59946
|
excludeFromCustomerDocumentation!: boolean;
|
|
59947
|
+
excludeDrawingFromCustomerDocumentation!: boolean;
|
|
59947
59948
|
specification?: string | null;
|
|
59948
59949
|
isUsed!: boolean;
|
|
59949
59950
|
status!: MeasurementFormStatus;
|
|
@@ -59987,6 +59988,7 @@ export class MeasurementFormSchemaDto implements IMeasurementFormSchemaDto {
|
|
|
59987
59988
|
this.customerId = _data["customerId"];
|
|
59988
59989
|
this.customerName = _data["customerName"];
|
|
59989
59990
|
this.excludeFromCustomerDocumentation = _data["excludeFromCustomerDocumentation"];
|
|
59991
|
+
this.excludeDrawingFromCustomerDocumentation = _data["excludeDrawingFromCustomerDocumentation"];
|
|
59990
59992
|
this.specification = _data["specification"];
|
|
59991
59993
|
this.isUsed = _data["isUsed"];
|
|
59992
59994
|
this.status = _data["status"];
|
|
@@ -60037,6 +60039,7 @@ export class MeasurementFormSchemaDto implements IMeasurementFormSchemaDto {
|
|
|
60037
60039
|
data["customerId"] = this.customerId;
|
|
60038
60040
|
data["customerName"] = this.customerName;
|
|
60039
60041
|
data["excludeFromCustomerDocumentation"] = this.excludeFromCustomerDocumentation;
|
|
60042
|
+
data["excludeDrawingFromCustomerDocumentation"] = this.excludeDrawingFromCustomerDocumentation;
|
|
60040
60043
|
data["specification"] = this.specification;
|
|
60041
60044
|
data["isUsed"] = this.isUsed;
|
|
60042
60045
|
data["status"] = this.status;
|
|
@@ -60080,6 +60083,7 @@ export interface IMeasurementFormSchemaDto {
|
|
|
60080
60083
|
customerId?: string | null;
|
|
60081
60084
|
customerName?: string | null;
|
|
60082
60085
|
excludeFromCustomerDocumentation: boolean;
|
|
60086
|
+
excludeDrawingFromCustomerDocumentation: boolean;
|
|
60083
60087
|
specification?: string | null;
|
|
60084
60088
|
isUsed: boolean;
|
|
60085
60089
|
status: MeasurementFormStatus;
|
|
@@ -60578,6 +60582,7 @@ export interface ICreateMeasurementFormSchema {
|
|
|
60578
60582
|
|
|
60579
60583
|
export class UpdateMeasurementFormSchemaRequest implements IUpdateMeasurementFormSchemaRequest {
|
|
60580
60584
|
excludeFromCustomerDocumentation!: boolean;
|
|
60585
|
+
excludeDrawingFromCustomerDocumentation?: boolean | null;
|
|
60581
60586
|
specification?: string | null;
|
|
60582
60587
|
|
|
60583
60588
|
constructor(data?: IUpdateMeasurementFormSchemaRequest) {
|
|
@@ -60592,6 +60597,7 @@ export class UpdateMeasurementFormSchemaRequest implements IUpdateMeasurementFor
|
|
|
60592
60597
|
init(_data?: any) {
|
|
60593
60598
|
if (_data) {
|
|
60594
60599
|
this.excludeFromCustomerDocumentation = _data["excludeFromCustomerDocumentation"];
|
|
60600
|
+
this.excludeDrawingFromCustomerDocumentation = _data["excludeDrawingFromCustomerDocumentation"];
|
|
60595
60601
|
this.specification = _data["specification"];
|
|
60596
60602
|
}
|
|
60597
60603
|
}
|
|
@@ -60606,6 +60612,7 @@ export class UpdateMeasurementFormSchemaRequest implements IUpdateMeasurementFor
|
|
|
60606
60612
|
toJSON(data?: any) {
|
|
60607
60613
|
data = typeof data === 'object' ? data : {};
|
|
60608
60614
|
data["excludeFromCustomerDocumentation"] = this.excludeFromCustomerDocumentation;
|
|
60615
|
+
data["excludeDrawingFromCustomerDocumentation"] = this.excludeDrawingFromCustomerDocumentation;
|
|
60609
60616
|
data["specification"] = this.specification;
|
|
60610
60617
|
return data;
|
|
60611
60618
|
}
|
|
@@ -60613,6 +60620,7 @@ export class UpdateMeasurementFormSchemaRequest implements IUpdateMeasurementFor
|
|
|
60613
60620
|
|
|
60614
60621
|
export interface IUpdateMeasurementFormSchemaRequest {
|
|
60615
60622
|
excludeFromCustomerDocumentation: boolean;
|
|
60623
|
+
excludeDrawingFromCustomerDocumentation?: boolean | null;
|
|
60616
60624
|
specification?: string | null;
|
|
60617
60625
|
}
|
|
60618
60626
|
|
|
@@ -63228,6 +63236,7 @@ export class MeasurementFormWorkorderSchemaDto implements IMeasurementFormWorkor
|
|
|
63228
63236
|
drawingUrl?: string | null;
|
|
63229
63237
|
markedDrawingUrl?: string | null;
|
|
63230
63238
|
excludeFromCustomerDocumentation!: boolean;
|
|
63239
|
+
excludeDrawingFromCustomerDocumentation!: boolean;
|
|
63231
63240
|
versionId!: number;
|
|
63232
63241
|
specification?: string | null;
|
|
63233
63242
|
progress!: MeasurementFormProgressDto;
|
|
@@ -63255,6 +63264,7 @@ export class MeasurementFormWorkorderSchemaDto implements IMeasurementFormWorkor
|
|
|
63255
63264
|
this.drawingUrl = _data["drawingUrl"];
|
|
63256
63265
|
this.markedDrawingUrl = _data["markedDrawingUrl"];
|
|
63257
63266
|
this.excludeFromCustomerDocumentation = _data["excludeFromCustomerDocumentation"];
|
|
63267
|
+
this.excludeDrawingFromCustomerDocumentation = _data["excludeDrawingFromCustomerDocumentation"];
|
|
63258
63268
|
this.versionId = _data["versionId"];
|
|
63259
63269
|
this.specification = _data["specification"];
|
|
63260
63270
|
this.progress = _data["progress"] ? MeasurementFormProgressDto.fromJS(_data["progress"]) : new MeasurementFormProgressDto();
|
|
@@ -63279,6 +63289,7 @@ export class MeasurementFormWorkorderSchemaDto implements IMeasurementFormWorkor
|
|
|
63279
63289
|
data["drawingUrl"] = this.drawingUrl;
|
|
63280
63290
|
data["markedDrawingUrl"] = this.markedDrawingUrl;
|
|
63281
63291
|
data["excludeFromCustomerDocumentation"] = this.excludeFromCustomerDocumentation;
|
|
63292
|
+
data["excludeDrawingFromCustomerDocumentation"] = this.excludeDrawingFromCustomerDocumentation;
|
|
63282
63293
|
data["versionId"] = this.versionId;
|
|
63283
63294
|
data["specification"] = this.specification;
|
|
63284
63295
|
data["progress"] = this.progress ? this.progress.toJSON() : undefined as any;
|
|
@@ -63296,6 +63307,7 @@ export interface IMeasurementFormWorkorderSchemaDto {
|
|
|
63296
63307
|
drawingUrl?: string | null;
|
|
63297
63308
|
markedDrawingUrl?: string | null;
|
|
63298
63309
|
excludeFromCustomerDocumentation: boolean;
|
|
63310
|
+
excludeDrawingFromCustomerDocumentation: boolean;
|
|
63299
63311
|
versionId: number;
|
|
63300
63312
|
specification?: string | null;
|
|
63301
63313
|
progress: MeasurementFormProgressDto;
|