merchi_sdk_ts 1.6.10 → 1.6.11

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.
@@ -234,6 +234,10 @@ var Job = /** @class */ (function (_super) {
234
234
  Job.property(),
235
235
  __metadata("design:type", Date)
236
236
  ], Job.prototype, "updated", void 0);
237
+ __decorate([
238
+ Job.property(),
239
+ __metadata("design:type", Object)
240
+ ], Job.prototype, "dateLastActioned", void 0);
237
241
  __decorate([
238
242
  Job.property(),
239
243
  __metadata("design:type", Date)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_ts",
3
- "version": "1.6.10",
3
+ "version": "1.6.11",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:merchisdk/merchi_sdk_ts.git",
@@ -142,6 +142,9 @@ export class Job extends Entity {
142
142
  @Job.property()
143
143
  public updated?: Date;
144
144
 
145
+ @Job.property()
146
+ public dateLastActioned?: Date | null;
147
+
145
148
  @Job.property()
146
149
  public groupBuyProductionStarted?: Date;
147
150