@ignos/api-client 20250313.0.11366 → 20250314.0.11374
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 +12 -2
- package/lib/ignosportal-api.js +13 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +25 -2
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -11404,6 +11404,8 @@ export declare class MeasurementFormSettingsDto implements IMeasurementFormSetti
|
|
|
11404
11404
|
generateReportForApprovedInstances: boolean;
|
|
11405
11405
|
includeMeasuringToolsInReportAsDefault: boolean;
|
|
11406
11406
|
requireCustomerOnWorkOrders: boolean;
|
|
11407
|
+
allowSchemaUpdates: boolean;
|
|
11408
|
+
allowCreateInstances: boolean;
|
|
11407
11409
|
resourceTypesBlockingAutoWorkflow?: string[] | null;
|
|
11408
11410
|
constructor(data?: IMeasurementFormSettingsDto);
|
|
11409
11411
|
init(_data?: any): void;
|
|
@@ -11421,6 +11423,8 @@ export interface IMeasurementFormSettingsDto {
|
|
|
11421
11423
|
generateReportForApprovedInstances: boolean;
|
|
11422
11424
|
includeMeasuringToolsInReportAsDefault: boolean;
|
|
11423
11425
|
requireCustomerOnWorkOrders: boolean;
|
|
11426
|
+
allowSchemaUpdates: boolean;
|
|
11427
|
+
allowCreateInstances: boolean;
|
|
11424
11428
|
resourceTypesBlockingAutoWorkflow?: string[] | null;
|
|
11425
11429
|
}
|
|
11426
11430
|
export declare class UpdateMeasurementFormSettings implements IUpdateMeasurementFormSettings {
|
|
@@ -11434,7 +11438,9 @@ export declare class UpdateMeasurementFormSettings implements IUpdateMeasurement
|
|
|
11434
11438
|
generateReportForApprovedInstances: boolean;
|
|
11435
11439
|
includeMeasuringToolsInReportAsDefault: boolean;
|
|
11436
11440
|
requireCustomerOnWorkOrders: boolean;
|
|
11437
|
-
|
|
11441
|
+
allowSchemaUpdates: boolean;
|
|
11442
|
+
allowCreateInstances: boolean;
|
|
11443
|
+
resourceTypesBlockingAutoWorkflow: string[];
|
|
11438
11444
|
constructor(data?: IUpdateMeasurementFormSettings);
|
|
11439
11445
|
init(_data?: any): void;
|
|
11440
11446
|
static fromJS(data: any): UpdateMeasurementFormSettings;
|
|
@@ -11451,7 +11457,9 @@ export interface IUpdateMeasurementFormSettings {
|
|
|
11451
11457
|
generateReportForApprovedInstances: boolean;
|
|
11452
11458
|
includeMeasuringToolsInReportAsDefault: boolean;
|
|
11453
11459
|
requireCustomerOnWorkOrders: boolean;
|
|
11454
|
-
|
|
11460
|
+
allowSchemaUpdates: boolean;
|
|
11461
|
+
allowCreateInstances: boolean;
|
|
11462
|
+
resourceTypesBlockingAutoWorkflow: string[];
|
|
11455
11463
|
}
|
|
11456
11464
|
export declare class MeasurementFormCustomerSettingsDto implements IMeasurementFormCustomerSettingsDto {
|
|
11457
11465
|
customerId: string;
|
|
@@ -12321,6 +12329,7 @@ export interface IMeasurementFormInstanceFeedbackDto {
|
|
|
12321
12329
|
}
|
|
12322
12330
|
export declare class CreateMeasurementFormInstanceRequest implements ICreateMeasurementFormInstanceRequest {
|
|
12323
12331
|
schemaId: string;
|
|
12332
|
+
customerId?: string | null;
|
|
12324
12333
|
purchaseOrder?: string | null;
|
|
12325
12334
|
series: CreateMeasurementFormInstanceRequestSeries[];
|
|
12326
12335
|
constructor(data?: ICreateMeasurementFormInstanceRequest);
|
|
@@ -12330,6 +12339,7 @@ export declare class CreateMeasurementFormInstanceRequest implements ICreateMeas
|
|
|
12330
12339
|
}
|
|
12331
12340
|
export interface ICreateMeasurementFormInstanceRequest {
|
|
12332
12341
|
schemaId: string;
|
|
12342
|
+
customerId?: string | null;
|
|
12333
12343
|
purchaseOrder?: string | null;
|
|
12334
12344
|
series: CreateMeasurementFormInstanceRequestSeries[];
|
|
12335
12345
|
}
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -39149,6 +39149,8 @@ export class MeasurementFormSettingsDto {
|
|
|
39149
39149
|
this.generateReportForApprovedInstances = _data["generateReportForApprovedInstances"];
|
|
39150
39150
|
this.includeMeasuringToolsInReportAsDefault = _data["includeMeasuringToolsInReportAsDefault"];
|
|
39151
39151
|
this.requireCustomerOnWorkOrders = _data["requireCustomerOnWorkOrders"];
|
|
39152
|
+
this.allowSchemaUpdates = _data["allowSchemaUpdates"];
|
|
39153
|
+
this.allowCreateInstances = _data["allowCreateInstances"];
|
|
39152
39154
|
if (Array.isArray(_data["resourceTypesBlockingAutoWorkflow"])) {
|
|
39153
39155
|
this.resourceTypesBlockingAutoWorkflow = [];
|
|
39154
39156
|
for (let item of _data["resourceTypesBlockingAutoWorkflow"])
|
|
@@ -39174,6 +39176,8 @@ export class MeasurementFormSettingsDto {
|
|
|
39174
39176
|
data["generateReportForApprovedInstances"] = this.generateReportForApprovedInstances;
|
|
39175
39177
|
data["includeMeasuringToolsInReportAsDefault"] = this.includeMeasuringToolsInReportAsDefault;
|
|
39176
39178
|
data["requireCustomerOnWorkOrders"] = this.requireCustomerOnWorkOrders;
|
|
39179
|
+
data["allowSchemaUpdates"] = this.allowSchemaUpdates;
|
|
39180
|
+
data["allowCreateInstances"] = this.allowCreateInstances;
|
|
39177
39181
|
if (Array.isArray(this.resourceTypesBlockingAutoWorkflow)) {
|
|
39178
39182
|
data["resourceTypesBlockingAutoWorkflow"] = [];
|
|
39179
39183
|
for (let item of this.resourceTypesBlockingAutoWorkflow)
|
|
@@ -39190,6 +39194,9 @@ export class UpdateMeasurementFormSettings {
|
|
|
39190
39194
|
this[property] = data[property];
|
|
39191
39195
|
}
|
|
39192
39196
|
}
|
|
39197
|
+
if (!data) {
|
|
39198
|
+
this.resourceTypesBlockingAutoWorkflow = [];
|
|
39199
|
+
}
|
|
39193
39200
|
}
|
|
39194
39201
|
init(_data) {
|
|
39195
39202
|
if (_data) {
|
|
@@ -39203,6 +39210,8 @@ export class UpdateMeasurementFormSettings {
|
|
|
39203
39210
|
this.generateReportForApprovedInstances = _data["generateReportForApprovedInstances"];
|
|
39204
39211
|
this.includeMeasuringToolsInReportAsDefault = _data["includeMeasuringToolsInReportAsDefault"];
|
|
39205
39212
|
this.requireCustomerOnWorkOrders = _data["requireCustomerOnWorkOrders"];
|
|
39213
|
+
this.allowSchemaUpdates = _data["allowSchemaUpdates"];
|
|
39214
|
+
this.allowCreateInstances = _data["allowCreateInstances"];
|
|
39206
39215
|
if (Array.isArray(_data["resourceTypesBlockingAutoWorkflow"])) {
|
|
39207
39216
|
this.resourceTypesBlockingAutoWorkflow = [];
|
|
39208
39217
|
for (let item of _data["resourceTypesBlockingAutoWorkflow"])
|
|
@@ -39228,6 +39237,8 @@ export class UpdateMeasurementFormSettings {
|
|
|
39228
39237
|
data["generateReportForApprovedInstances"] = this.generateReportForApprovedInstances;
|
|
39229
39238
|
data["includeMeasuringToolsInReportAsDefault"] = this.includeMeasuringToolsInReportAsDefault;
|
|
39230
39239
|
data["requireCustomerOnWorkOrders"] = this.requireCustomerOnWorkOrders;
|
|
39240
|
+
data["allowSchemaUpdates"] = this.allowSchemaUpdates;
|
|
39241
|
+
data["allowCreateInstances"] = this.allowCreateInstances;
|
|
39231
39242
|
if (Array.isArray(this.resourceTypesBlockingAutoWorkflow)) {
|
|
39232
39243
|
data["resourceTypesBlockingAutoWorkflow"] = [];
|
|
39233
39244
|
for (let item of this.resourceTypesBlockingAutoWorkflow)
|
|
@@ -40955,6 +40966,7 @@ export class CreateMeasurementFormInstanceRequest {
|
|
|
40955
40966
|
init(_data) {
|
|
40956
40967
|
if (_data) {
|
|
40957
40968
|
this.schemaId = _data["schemaId"];
|
|
40969
|
+
this.customerId = _data["customerId"];
|
|
40958
40970
|
this.purchaseOrder = _data["purchaseOrder"];
|
|
40959
40971
|
if (Array.isArray(_data["series"])) {
|
|
40960
40972
|
this.series = [];
|
|
@@ -40972,6 +40984,7 @@ export class CreateMeasurementFormInstanceRequest {
|
|
|
40972
40984
|
toJSON(data) {
|
|
40973
40985
|
data = typeof data === 'object' ? data : {};
|
|
40974
40986
|
data["schemaId"] = this.schemaId;
|
|
40987
|
+
data["customerId"] = this.customerId;
|
|
40975
40988
|
data["purchaseOrder"] = this.purchaseOrder;
|
|
40976
40989
|
if (Array.isArray(this.series)) {
|
|
40977
40990
|
data["series"] = [];
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -49458,6 +49458,8 @@ export class MeasurementFormSettingsDto implements IMeasurementFormSettingsDto {
|
|
|
49458
49458
|
generateReportForApprovedInstances!: boolean;
|
|
49459
49459
|
includeMeasuringToolsInReportAsDefault!: boolean;
|
|
49460
49460
|
requireCustomerOnWorkOrders!: boolean;
|
|
49461
|
+
allowSchemaUpdates!: boolean;
|
|
49462
|
+
allowCreateInstances!: boolean;
|
|
49461
49463
|
resourceTypesBlockingAutoWorkflow?: string[] | null;
|
|
49462
49464
|
|
|
49463
49465
|
constructor(data?: IMeasurementFormSettingsDto) {
|
|
@@ -49481,6 +49483,8 @@ export class MeasurementFormSettingsDto implements IMeasurementFormSettingsDto {
|
|
|
49481
49483
|
this.generateReportForApprovedInstances = _data["generateReportForApprovedInstances"];
|
|
49482
49484
|
this.includeMeasuringToolsInReportAsDefault = _data["includeMeasuringToolsInReportAsDefault"];
|
|
49483
49485
|
this.requireCustomerOnWorkOrders = _data["requireCustomerOnWorkOrders"];
|
|
49486
|
+
this.allowSchemaUpdates = _data["allowSchemaUpdates"];
|
|
49487
|
+
this.allowCreateInstances = _data["allowCreateInstances"];
|
|
49484
49488
|
if (Array.isArray(_data["resourceTypesBlockingAutoWorkflow"])) {
|
|
49485
49489
|
this.resourceTypesBlockingAutoWorkflow = [] as any;
|
|
49486
49490
|
for (let item of _data["resourceTypesBlockingAutoWorkflow"])
|
|
@@ -49508,6 +49512,8 @@ export class MeasurementFormSettingsDto implements IMeasurementFormSettingsDto {
|
|
|
49508
49512
|
data["generateReportForApprovedInstances"] = this.generateReportForApprovedInstances;
|
|
49509
49513
|
data["includeMeasuringToolsInReportAsDefault"] = this.includeMeasuringToolsInReportAsDefault;
|
|
49510
49514
|
data["requireCustomerOnWorkOrders"] = this.requireCustomerOnWorkOrders;
|
|
49515
|
+
data["allowSchemaUpdates"] = this.allowSchemaUpdates;
|
|
49516
|
+
data["allowCreateInstances"] = this.allowCreateInstances;
|
|
49511
49517
|
if (Array.isArray(this.resourceTypesBlockingAutoWorkflow)) {
|
|
49512
49518
|
data["resourceTypesBlockingAutoWorkflow"] = [];
|
|
49513
49519
|
for (let item of this.resourceTypesBlockingAutoWorkflow)
|
|
@@ -49528,6 +49534,8 @@ export interface IMeasurementFormSettingsDto {
|
|
|
49528
49534
|
generateReportForApprovedInstances: boolean;
|
|
49529
49535
|
includeMeasuringToolsInReportAsDefault: boolean;
|
|
49530
49536
|
requireCustomerOnWorkOrders: boolean;
|
|
49537
|
+
allowSchemaUpdates: boolean;
|
|
49538
|
+
allowCreateInstances: boolean;
|
|
49531
49539
|
resourceTypesBlockingAutoWorkflow?: string[] | null;
|
|
49532
49540
|
}
|
|
49533
49541
|
|
|
@@ -49542,7 +49550,9 @@ export class UpdateMeasurementFormSettings implements IUpdateMeasurementFormSett
|
|
|
49542
49550
|
generateReportForApprovedInstances!: boolean;
|
|
49543
49551
|
includeMeasuringToolsInReportAsDefault!: boolean;
|
|
49544
49552
|
requireCustomerOnWorkOrders!: boolean;
|
|
49545
|
-
|
|
49553
|
+
allowSchemaUpdates!: boolean;
|
|
49554
|
+
allowCreateInstances!: boolean;
|
|
49555
|
+
resourceTypesBlockingAutoWorkflow!: string[];
|
|
49546
49556
|
|
|
49547
49557
|
constructor(data?: IUpdateMeasurementFormSettings) {
|
|
49548
49558
|
if (data) {
|
|
@@ -49551,6 +49561,9 @@ export class UpdateMeasurementFormSettings implements IUpdateMeasurementFormSett
|
|
|
49551
49561
|
(<any>this)[property] = (<any>data)[property];
|
|
49552
49562
|
}
|
|
49553
49563
|
}
|
|
49564
|
+
if (!data) {
|
|
49565
|
+
this.resourceTypesBlockingAutoWorkflow = [];
|
|
49566
|
+
}
|
|
49554
49567
|
}
|
|
49555
49568
|
|
|
49556
49569
|
init(_data?: any) {
|
|
@@ -49565,6 +49578,8 @@ export class UpdateMeasurementFormSettings implements IUpdateMeasurementFormSett
|
|
|
49565
49578
|
this.generateReportForApprovedInstances = _data["generateReportForApprovedInstances"];
|
|
49566
49579
|
this.includeMeasuringToolsInReportAsDefault = _data["includeMeasuringToolsInReportAsDefault"];
|
|
49567
49580
|
this.requireCustomerOnWorkOrders = _data["requireCustomerOnWorkOrders"];
|
|
49581
|
+
this.allowSchemaUpdates = _data["allowSchemaUpdates"];
|
|
49582
|
+
this.allowCreateInstances = _data["allowCreateInstances"];
|
|
49568
49583
|
if (Array.isArray(_data["resourceTypesBlockingAutoWorkflow"])) {
|
|
49569
49584
|
this.resourceTypesBlockingAutoWorkflow = [] as any;
|
|
49570
49585
|
for (let item of _data["resourceTypesBlockingAutoWorkflow"])
|
|
@@ -49592,6 +49607,8 @@ export class UpdateMeasurementFormSettings implements IUpdateMeasurementFormSett
|
|
|
49592
49607
|
data["generateReportForApprovedInstances"] = this.generateReportForApprovedInstances;
|
|
49593
49608
|
data["includeMeasuringToolsInReportAsDefault"] = this.includeMeasuringToolsInReportAsDefault;
|
|
49594
49609
|
data["requireCustomerOnWorkOrders"] = this.requireCustomerOnWorkOrders;
|
|
49610
|
+
data["allowSchemaUpdates"] = this.allowSchemaUpdates;
|
|
49611
|
+
data["allowCreateInstances"] = this.allowCreateInstances;
|
|
49595
49612
|
if (Array.isArray(this.resourceTypesBlockingAutoWorkflow)) {
|
|
49596
49613
|
data["resourceTypesBlockingAutoWorkflow"] = [];
|
|
49597
49614
|
for (let item of this.resourceTypesBlockingAutoWorkflow)
|
|
@@ -49612,7 +49629,9 @@ export interface IUpdateMeasurementFormSettings {
|
|
|
49612
49629
|
generateReportForApprovedInstances: boolean;
|
|
49613
49630
|
includeMeasuringToolsInReportAsDefault: boolean;
|
|
49614
49631
|
requireCustomerOnWorkOrders: boolean;
|
|
49615
|
-
|
|
49632
|
+
allowSchemaUpdates: boolean;
|
|
49633
|
+
allowCreateInstances: boolean;
|
|
49634
|
+
resourceTypesBlockingAutoWorkflow: string[];
|
|
49616
49635
|
}
|
|
49617
49636
|
|
|
49618
49637
|
export class MeasurementFormCustomerSettingsDto implements IMeasurementFormCustomerSettingsDto {
|
|
@@ -52189,6 +52208,7 @@ export interface IMeasurementFormInstanceFeedbackDto {
|
|
|
52189
52208
|
|
|
52190
52209
|
export class CreateMeasurementFormInstanceRequest implements ICreateMeasurementFormInstanceRequest {
|
|
52191
52210
|
schemaId!: string;
|
|
52211
|
+
customerId?: string | null;
|
|
52192
52212
|
purchaseOrder?: string | null;
|
|
52193
52213
|
series!: CreateMeasurementFormInstanceRequestSeries[];
|
|
52194
52214
|
|
|
@@ -52207,6 +52227,7 @@ export class CreateMeasurementFormInstanceRequest implements ICreateMeasurementF
|
|
|
52207
52227
|
init(_data?: any) {
|
|
52208
52228
|
if (_data) {
|
|
52209
52229
|
this.schemaId = _data["schemaId"];
|
|
52230
|
+
this.customerId = _data["customerId"];
|
|
52210
52231
|
this.purchaseOrder = _data["purchaseOrder"];
|
|
52211
52232
|
if (Array.isArray(_data["series"])) {
|
|
52212
52233
|
this.series = [] as any;
|
|
@@ -52226,6 +52247,7 @@ export class CreateMeasurementFormInstanceRequest implements ICreateMeasurementF
|
|
|
52226
52247
|
toJSON(data?: any) {
|
|
52227
52248
|
data = typeof data === 'object' ? data : {};
|
|
52228
52249
|
data["schemaId"] = this.schemaId;
|
|
52250
|
+
data["customerId"] = this.customerId;
|
|
52229
52251
|
data["purchaseOrder"] = this.purchaseOrder;
|
|
52230
52252
|
if (Array.isArray(this.series)) {
|
|
52231
52253
|
data["series"] = [];
|
|
@@ -52238,6 +52260,7 @@ export class CreateMeasurementFormInstanceRequest implements ICreateMeasurementF
|
|
|
52238
52260
|
|
|
52239
52261
|
export interface ICreateMeasurementFormInstanceRequest {
|
|
52240
52262
|
schemaId: string;
|
|
52263
|
+
customerId?: string | null;
|
|
52241
52264
|
purchaseOrder?: string | null;
|
|
52242
52265
|
series: CreateMeasurementFormInstanceRequestSeries[];
|
|
52243
52266
|
}
|