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)
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_ts",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:merchisdk/merchi_sdk_ts.git",
@@ -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
 
@@ -296,6 +296,9 @@ export class Job extends Entity {
296
296
  @Job.property()
297
297
  public supplyJob?: Job;
298
298
 
299
+ @Job.property()
300
+ public supplyQuoteTotalCost?: number;
301
+
299
302
  @Job.property()
300
303
  public hasValidVolume?: boolean;
301
304