merchi_sdk_ts 1.0.16 → 1.0.17
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.
|
@@ -102,6 +102,10 @@ var Assignment = /** @class */ (function (_super) {
|
|
|
102
102
|
Assignment.property({ type: Quote }),
|
|
103
103
|
__metadata("design:type", Object)
|
|
104
104
|
], Assignment.prototype, "quote", void 0);
|
|
105
|
+
__decorate([
|
|
106
|
+
Assignment.property(),
|
|
107
|
+
__metadata("design:type", Number)
|
|
108
|
+
], Assignment.prototype, "quoteTotalCost", void 0);
|
|
105
109
|
__decorate([
|
|
106
110
|
Assignment.property({ arrayType: 'ProductionComment' }),
|
|
107
111
|
__metadata("design:type", Array)
|
package/dist/entities/job.js
CHANGED
|
@@ -442,6 +442,10 @@ var Job = /** @class */ (function (_super) {
|
|
|
442
442
|
Job.property(),
|
|
443
443
|
__metadata("design:type", Job)
|
|
444
444
|
], Job.prototype, "supplyJob", void 0);
|
|
445
|
+
__decorate([
|
|
446
|
+
Job.property(),
|
|
447
|
+
__metadata("design:type", Number)
|
|
448
|
+
], Job.prototype, "supplyQuoteTotalCost", void 0);
|
|
445
449
|
__decorate([
|
|
446
450
|
Job.property(),
|
|
447
451
|
__metadata("design:type", Boolean)
|
package/package.json
CHANGED
|
@@ -57,6 +57,9 @@ export class Assignment extends Entity {
|
|
|
57
57
|
@Assignment.property({type: Quote})
|
|
58
58
|
public quote?: Quote | null;
|
|
59
59
|
|
|
60
|
+
@Assignment.property()
|
|
61
|
+
public quoteTotalCost?: number;
|
|
62
|
+
|
|
60
63
|
@Assignment.property({arrayType: 'ProductionComment'})
|
|
61
64
|
public comments?: ProductionComment[];
|
|
62
65
|
|