merchi_sdk_ts 1.0.17 → 1.0.18

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,10 +102,6 @@ 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);
109
105
  __decorate([
110
106
  Assignment.property({ arrayType: 'ProductionComment' }),
111
107
  __metadata("design:type", Array)
@@ -442,10 +442,6 @@ 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);
449
445
  __decorate([
450
446
  Job.property(),
451
447
  __metadata("design:type", Boolean)
@@ -137,6 +137,10 @@ var VariationField = /** @class */ (function (_super) {
137
137
  VariationField.property(),
138
138
  __metadata("design:type", String)
139
139
  ], VariationField.prototype, "name", void 0);
140
+ __decorate([
141
+ VariationField.property(),
142
+ __metadata("design:type", String)
143
+ ], VariationField.prototype, "instructions", void 0);
140
144
  __decorate([
141
145
  VariationField.property({ type: String }),
142
146
  __metadata("design:type", Object)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_ts",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:merchisdk/merchi_sdk_ts.git",
@@ -29,6 +29,9 @@ export class VariationField extends Entity {
29
29
  @VariationField.property()
30
30
  public name?: string;
31
31
 
32
+ @VariationField.property()
33
+ public instructions?: string;
34
+
32
35
  @VariationField.property({type: String})
33
36
  public placeholder?: string | null;
34
37