merchi_sdk_ts 1.2.14 → 1.2.16

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.
@@ -218,6 +218,10 @@ var Product = /** @class */ (function (_super) {
218
218
  Product.property(),
219
219
  __metadata("design:type", Boolean)
220
220
  ], Product.prototype, "minimumPerGroup", void 0);
221
+ __decorate([
222
+ Product.property(),
223
+ __metadata("design:type", Boolean)
224
+ ], Product.prototype, "groupsFirst", void 0);
221
225
  __decorate([
222
226
  Product.property(),
223
227
  __metadata("design:type", Number)
@@ -71,6 +71,10 @@ var VariationOption = /** @class */ (function (_super) {
71
71
  VariationOption.property(),
72
72
  __metadata("design:type", String)
73
73
  ], VariationOption.prototype, "fieldName", void 0);
74
+ __decorate([
75
+ VariationOption.property(),
76
+ __metadata("design:type", Date)
77
+ ], VariationOption.prototype, "userDeadline", void 0);
74
78
  __decorate([
75
79
  VariationOption.property(),
76
80
  __metadata("design:type", Number)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_ts",
3
- "version": "1.2.14",
3
+ "version": "1.2.16",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:merchisdk/merchi_sdk_ts.git",
@@ -62,6 +62,9 @@ export class Product extends Entity {
62
62
  @Product.property()
63
63
  public minimumPerGroup?: boolean;
64
64
 
65
+ @Product.property()
66
+ public groupsFirst?: boolean;
67
+
65
68
  @Product.property()
66
69
  public deliveryDaysNormal?: number;
67
70
 
@@ -35,6 +35,9 @@ export class VariationOption extends Entity {
35
35
  @VariationOption.property()
36
36
  public fieldName?: string;
37
37
 
38
+ @VariationOption.property()
39
+ public userDeadline?: Date;
40
+
38
41
  @VariationOption.property()
39
42
  public quantity?: number;
40
43