merchi_sdk_ts 1.2.11 → 1.2.13

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.
@@ -206,6 +206,14 @@ var VariationField = /** @class */ (function (_super) {
206
206
  VariationField.property(),
207
207
  __metadata("design:type", Boolean)
208
208
  ], VariationField.prototype, "isHtml", void 0);
209
+ __decorate([
210
+ VariationField.property(),
211
+ __metadata("design:type", Boolean)
212
+ ], VariationField.prototype, "considerBusinessHours", void 0);
213
+ __decorate([
214
+ VariationField.property(),
215
+ __metadata("design:type", Boolean)
216
+ ], VariationField.prototype, "shippingTimeIncluded", void 0);
209
217
  __decorate([
210
218
  VariationField.property(),
211
219
  __metadata("design:type", Boolean)
@@ -96,6 +96,10 @@ var VariationFieldsOption = /** @class */ (function (_super) {
96
96
  VariationFieldsOption.property(),
97
97
  __metadata("design:type", Number)
98
98
  ], VariationFieldsOption.prototype, "position", void 0);
99
+ __decorate([
100
+ VariationFieldsOption.property(),
101
+ __metadata("design:type", Number)
102
+ ], VariationFieldsOption.prototype, "deliveryDays", void 0);
99
103
  __decorate([
100
104
  VariationFieldsOption.property(),
101
105
  __metadata("design:type", Number)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_ts",
3
- "version": "1.2.11",
3
+ "version": "1.2.13",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:merchisdk/merchi_sdk_ts.git",
@@ -10,4 +10,5 @@ export enum FieldType {
10
10
  IMAGE_SELECT = 9,
11
11
  COLOUR_PICKER = 10,
12
12
  COLOUR_SELECT = 11,
13
+ TURNAROUND_TIME = 12,
13
14
  }
@@ -25,6 +25,9 @@ export class Inventory extends Entity {
25
25
  @Inventory.property()
26
26
  public name?: string;
27
27
 
28
+ @Inventory.property()
29
+ public position?: number;
30
+
28
31
  @Inventory.property()
29
32
  public notes?: string;
30
33
 
@@ -81,6 +81,12 @@ export class VariationField extends Entity {
81
81
  @VariationField.property()
82
82
  public isHtml?: boolean;
83
83
 
84
+ @VariationField.property()
85
+ public considerBusinessHours?: boolean;
86
+
87
+ @VariationField.property()
88
+ public shippingTimeIncluded?: boolean;
89
+
84
90
  @VariationField.property()
85
91
  public sellerProductEditable?: boolean;
86
92
 
@@ -37,6 +37,9 @@ export class VariationFieldsOption extends Entity {
37
37
  @VariationFieldsOption.property()
38
38
  public position?: number;
39
39
 
40
+ @VariationFieldsOption.property()
41
+ public deliveryDays?: number;
42
+
40
43
  @VariationFieldsOption.property()
41
44
  public variationCost?: number;
42
45