@ignos/api-client 20250320.0.11399 → 20250320.0.11407
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
|
@@ -11796,6 +11796,8 @@ export declare class MeasurementFormNeedDto implements IMeasurementFormNeedDto {
|
|
|
11796
11796
|
workorder?: string | null;
|
|
11797
11797
|
operation?: number | null;
|
|
11798
11798
|
resource?: string | null;
|
|
11799
|
+
resourceId?: string | null;
|
|
11800
|
+
resourceName?: string | null;
|
|
11799
11801
|
assignedTo?: UserDto | null;
|
|
11800
11802
|
isGeneratedRequirement: boolean;
|
|
11801
11803
|
measurementSchemaId?: string | null;
|
|
@@ -11817,6 +11819,8 @@ export interface IMeasurementFormNeedDto {
|
|
|
11817
11819
|
workorder?: string | null;
|
|
11818
11820
|
operation?: number | null;
|
|
11819
11821
|
resource?: string | null;
|
|
11822
|
+
resourceId?: string | null;
|
|
11823
|
+
resourceName?: string | null;
|
|
11820
11824
|
assignedTo?: UserDto | null;
|
|
11821
11825
|
isGeneratedRequirement: boolean;
|
|
11822
11826
|
measurementSchemaId?: string | null;
|
|
@@ -12349,6 +12353,7 @@ export interface IMeasurementFormInstanceFeedbackDto {
|
|
|
12349
12353
|
export declare class CreateMeasurementFormInstanceRequest implements ICreateMeasurementFormInstanceRequest {
|
|
12350
12354
|
schemaId: string;
|
|
12351
12355
|
customerId?: string | null;
|
|
12356
|
+
customerName?: string | null;
|
|
12352
12357
|
purchaseOrder?: string | null;
|
|
12353
12358
|
series: CreateMeasurementFormInstanceRequestSeries[];
|
|
12354
12359
|
constructor(data?: ICreateMeasurementFormInstanceRequest);
|
|
@@ -12359,6 +12364,7 @@ export declare class CreateMeasurementFormInstanceRequest implements ICreateMeas
|
|
|
12359
12364
|
export interface ICreateMeasurementFormInstanceRequest {
|
|
12360
12365
|
schemaId: string;
|
|
12361
12366
|
customerId?: string | null;
|
|
12367
|
+
customerName?: string | null;
|
|
12362
12368
|
purchaseOrder?: string | null;
|
|
12363
12369
|
series: CreateMeasurementFormInstanceRequestSeries[];
|
|
12364
12370
|
}
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -39962,6 +39962,8 @@ export class MeasurementFormNeedDto {
|
|
|
39962
39962
|
this.workorder = _data["workorder"];
|
|
39963
39963
|
this.operation = _data["operation"];
|
|
39964
39964
|
this.resource = _data["resource"];
|
|
39965
|
+
this.resourceId = _data["resourceId"];
|
|
39966
|
+
this.resourceName = _data["resourceName"];
|
|
39965
39967
|
this.assignedTo = _data["assignedTo"] ? UserDto.fromJS(_data["assignedTo"]) : undefined;
|
|
39966
39968
|
this.isGeneratedRequirement = _data["isGeneratedRequirement"];
|
|
39967
39969
|
this.measurementSchemaId = _data["measurementSchemaId"];
|
|
@@ -39987,6 +39989,8 @@ export class MeasurementFormNeedDto {
|
|
|
39987
39989
|
data["workorder"] = this.workorder;
|
|
39988
39990
|
data["operation"] = this.operation;
|
|
39989
39991
|
data["resource"] = this.resource;
|
|
39992
|
+
data["resourceId"] = this.resourceId;
|
|
39993
|
+
data["resourceName"] = this.resourceName;
|
|
39990
39994
|
data["assignedTo"] = this.assignedTo ? this.assignedTo.toJSON() : undefined;
|
|
39991
39995
|
data["isGeneratedRequirement"] = this.isGeneratedRequirement;
|
|
39992
39996
|
data["measurementSchemaId"] = this.measurementSchemaId;
|
|
@@ -41053,6 +41057,7 @@ export class CreateMeasurementFormInstanceRequest {
|
|
|
41053
41057
|
if (_data) {
|
|
41054
41058
|
this.schemaId = _data["schemaId"];
|
|
41055
41059
|
this.customerId = _data["customerId"];
|
|
41060
|
+
this.customerName = _data["customerName"];
|
|
41056
41061
|
this.purchaseOrder = _data["purchaseOrder"];
|
|
41057
41062
|
if (Array.isArray(_data["series"])) {
|
|
41058
41063
|
this.series = [];
|
|
@@ -41071,6 +41076,7 @@ export class CreateMeasurementFormInstanceRequest {
|
|
|
41071
41076
|
data = typeof data === 'object' ? data : {};
|
|
41072
41077
|
data["schemaId"] = this.schemaId;
|
|
41073
41078
|
data["customerId"] = this.customerId;
|
|
41079
|
+
data["customerName"] = this.customerName;
|
|
41074
41080
|
data["purchaseOrder"] = this.purchaseOrder;
|
|
41075
41081
|
if (Array.isArray(this.series)) {
|
|
41076
41082
|
data["series"] = [];
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -50661,6 +50661,8 @@ export class MeasurementFormNeedDto implements IMeasurementFormNeedDto {
|
|
|
50661
50661
|
workorder?: string | null;
|
|
50662
50662
|
operation?: number | null;
|
|
50663
50663
|
resource?: string | null;
|
|
50664
|
+
resourceId?: string | null;
|
|
50665
|
+
resourceName?: string | null;
|
|
50664
50666
|
assignedTo?: UserDto | null;
|
|
50665
50667
|
isGeneratedRequirement!: boolean;
|
|
50666
50668
|
measurementSchemaId?: string | null;
|
|
@@ -50688,6 +50690,8 @@ export class MeasurementFormNeedDto implements IMeasurementFormNeedDto {
|
|
|
50688
50690
|
this.workorder = _data["workorder"];
|
|
50689
50691
|
this.operation = _data["operation"];
|
|
50690
50692
|
this.resource = _data["resource"];
|
|
50693
|
+
this.resourceId = _data["resourceId"];
|
|
50694
|
+
this.resourceName = _data["resourceName"];
|
|
50691
50695
|
this.assignedTo = _data["assignedTo"] ? UserDto.fromJS(_data["assignedTo"]) : <any>undefined;
|
|
50692
50696
|
this.isGeneratedRequirement = _data["isGeneratedRequirement"];
|
|
50693
50697
|
this.measurementSchemaId = _data["measurementSchemaId"];
|
|
@@ -50715,6 +50719,8 @@ export class MeasurementFormNeedDto implements IMeasurementFormNeedDto {
|
|
|
50715
50719
|
data["workorder"] = this.workorder;
|
|
50716
50720
|
data["operation"] = this.operation;
|
|
50717
50721
|
data["resource"] = this.resource;
|
|
50722
|
+
data["resourceId"] = this.resourceId;
|
|
50723
|
+
data["resourceName"] = this.resourceName;
|
|
50718
50724
|
data["assignedTo"] = this.assignedTo ? this.assignedTo.toJSON() : <any>undefined;
|
|
50719
50725
|
data["isGeneratedRequirement"] = this.isGeneratedRequirement;
|
|
50720
50726
|
data["measurementSchemaId"] = this.measurementSchemaId;
|
|
@@ -50735,6 +50741,8 @@ export interface IMeasurementFormNeedDto {
|
|
|
50735
50741
|
workorder?: string | null;
|
|
50736
50742
|
operation?: number | null;
|
|
50737
50743
|
resource?: string | null;
|
|
50744
|
+
resourceId?: string | null;
|
|
50745
|
+
resourceName?: string | null;
|
|
50738
50746
|
assignedTo?: UserDto | null;
|
|
50739
50747
|
isGeneratedRequirement: boolean;
|
|
50740
50748
|
measurementSchemaId?: string | null;
|
|
@@ -52313,6 +52321,7 @@ export interface IMeasurementFormInstanceFeedbackDto {
|
|
|
52313
52321
|
export class CreateMeasurementFormInstanceRequest implements ICreateMeasurementFormInstanceRequest {
|
|
52314
52322
|
schemaId!: string;
|
|
52315
52323
|
customerId?: string | null;
|
|
52324
|
+
customerName?: string | null;
|
|
52316
52325
|
purchaseOrder?: string | null;
|
|
52317
52326
|
series!: CreateMeasurementFormInstanceRequestSeries[];
|
|
52318
52327
|
|
|
@@ -52332,6 +52341,7 @@ export class CreateMeasurementFormInstanceRequest implements ICreateMeasurementF
|
|
|
52332
52341
|
if (_data) {
|
|
52333
52342
|
this.schemaId = _data["schemaId"];
|
|
52334
52343
|
this.customerId = _data["customerId"];
|
|
52344
|
+
this.customerName = _data["customerName"];
|
|
52335
52345
|
this.purchaseOrder = _data["purchaseOrder"];
|
|
52336
52346
|
if (Array.isArray(_data["series"])) {
|
|
52337
52347
|
this.series = [] as any;
|
|
@@ -52352,6 +52362,7 @@ export class CreateMeasurementFormInstanceRequest implements ICreateMeasurementF
|
|
|
52352
52362
|
data = typeof data === 'object' ? data : {};
|
|
52353
52363
|
data["schemaId"] = this.schemaId;
|
|
52354
52364
|
data["customerId"] = this.customerId;
|
|
52365
|
+
data["customerName"] = this.customerName;
|
|
52355
52366
|
data["purchaseOrder"] = this.purchaseOrder;
|
|
52356
52367
|
if (Array.isArray(this.series)) {
|
|
52357
52368
|
data["series"] = [];
|
|
@@ -52365,6 +52376,7 @@ export class CreateMeasurementFormInstanceRequest implements ICreateMeasurementF
|
|
|
52365
52376
|
export interface ICreateMeasurementFormInstanceRequest {
|
|
52366
52377
|
schemaId: string;
|
|
52367
52378
|
customerId?: string | null;
|
|
52379
|
+
customerName?: string | null;
|
|
52368
52380
|
purchaseOrder?: string | null;
|
|
52369
52381
|
series: CreateMeasurementFormInstanceRequestSeries[];
|
|
52370
52382
|
}
|