@ignos/api-client 20250320.0.11399 → 20250320.0.11401
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
CHANGED
|
@@ -12349,6 +12349,7 @@ export interface IMeasurementFormInstanceFeedbackDto {
|
|
|
12349
12349
|
export declare class CreateMeasurementFormInstanceRequest implements ICreateMeasurementFormInstanceRequest {
|
|
12350
12350
|
schemaId: string;
|
|
12351
12351
|
customerId?: string | null;
|
|
12352
|
+
customerName?: string | null;
|
|
12352
12353
|
purchaseOrder?: string | null;
|
|
12353
12354
|
series: CreateMeasurementFormInstanceRequestSeries[];
|
|
12354
12355
|
constructor(data?: ICreateMeasurementFormInstanceRequest);
|
|
@@ -12359,6 +12360,7 @@ export declare class CreateMeasurementFormInstanceRequest implements ICreateMeas
|
|
|
12359
12360
|
export interface ICreateMeasurementFormInstanceRequest {
|
|
12360
12361
|
schemaId: string;
|
|
12361
12362
|
customerId?: string | null;
|
|
12363
|
+
customerName?: string | null;
|
|
12362
12364
|
purchaseOrder?: string | null;
|
|
12363
12365
|
series: CreateMeasurementFormInstanceRequestSeries[];
|
|
12364
12366
|
}
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -41053,6 +41053,7 @@ export class CreateMeasurementFormInstanceRequest {
|
|
|
41053
41053
|
if (_data) {
|
|
41054
41054
|
this.schemaId = _data["schemaId"];
|
|
41055
41055
|
this.customerId = _data["customerId"];
|
|
41056
|
+
this.customerName = _data["customerName"];
|
|
41056
41057
|
this.purchaseOrder = _data["purchaseOrder"];
|
|
41057
41058
|
if (Array.isArray(_data["series"])) {
|
|
41058
41059
|
this.series = [];
|
|
@@ -41071,6 +41072,7 @@ export class CreateMeasurementFormInstanceRequest {
|
|
|
41071
41072
|
data = typeof data === 'object' ? data : {};
|
|
41072
41073
|
data["schemaId"] = this.schemaId;
|
|
41073
41074
|
data["customerId"] = this.customerId;
|
|
41075
|
+
data["customerName"] = this.customerName;
|
|
41074
41076
|
data["purchaseOrder"] = this.purchaseOrder;
|
|
41075
41077
|
if (Array.isArray(this.series)) {
|
|
41076
41078
|
data["series"] = [];
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -52313,6 +52313,7 @@ export interface IMeasurementFormInstanceFeedbackDto {
|
|
|
52313
52313
|
export class CreateMeasurementFormInstanceRequest implements ICreateMeasurementFormInstanceRequest {
|
|
52314
52314
|
schemaId!: string;
|
|
52315
52315
|
customerId?: string | null;
|
|
52316
|
+
customerName?: string | null;
|
|
52316
52317
|
purchaseOrder?: string | null;
|
|
52317
52318
|
series!: CreateMeasurementFormInstanceRequestSeries[];
|
|
52318
52319
|
|
|
@@ -52332,6 +52333,7 @@ export class CreateMeasurementFormInstanceRequest implements ICreateMeasurementF
|
|
|
52332
52333
|
if (_data) {
|
|
52333
52334
|
this.schemaId = _data["schemaId"];
|
|
52334
52335
|
this.customerId = _data["customerId"];
|
|
52336
|
+
this.customerName = _data["customerName"];
|
|
52335
52337
|
this.purchaseOrder = _data["purchaseOrder"];
|
|
52336
52338
|
if (Array.isArray(_data["series"])) {
|
|
52337
52339
|
this.series = [] as any;
|
|
@@ -52352,6 +52354,7 @@ export class CreateMeasurementFormInstanceRequest implements ICreateMeasurementF
|
|
|
52352
52354
|
data = typeof data === 'object' ? data : {};
|
|
52353
52355
|
data["schemaId"] = this.schemaId;
|
|
52354
52356
|
data["customerId"] = this.customerId;
|
|
52357
|
+
data["customerName"] = this.customerName;
|
|
52355
52358
|
data["purchaseOrder"] = this.purchaseOrder;
|
|
52356
52359
|
if (Array.isArray(this.series)) {
|
|
52357
52360
|
data["series"] = [];
|
|
@@ -52365,6 +52368,7 @@ export class CreateMeasurementFormInstanceRequest implements ICreateMeasurementF
|
|
|
52365
52368
|
export interface ICreateMeasurementFormInstanceRequest {
|
|
52366
52369
|
schemaId: string;
|
|
52367
52370
|
customerId?: string | null;
|
|
52371
|
+
customerName?: string | null;
|
|
52368
52372
|
purchaseOrder?: string | null;
|
|
52369
52373
|
series: CreateMeasurementFormInstanceRequestSeries[];
|
|
52370
52374
|
}
|