merchi_sdk_ts 1.6.9 → 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)
@@ -187,6 +187,10 @@ var User = /** @class */ (function (_super) {
187
187
  User.property({ arrayType: 'InternalTag' }),
188
188
  __metadata("design:type", Array)
189
189
  ], User.prototype, "internalTags", void 0);
190
+ __decorate([
191
+ User.property({ arrayType: 'DomainTag' }),
192
+ __metadata("design:type", Array)
193
+ ], User.prototype, "tags", void 0);
190
194
  __decorate([
191
195
  User.property({ arrayType: 'Domain' }),
192
196
  __metadata("design:type", Array)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_ts",
3
- "version": "1.6.9",
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
 
@@ -33,6 +33,7 @@ import { Role,
33
33
  ROLES_RANK
34
34
  } from '../constants/roles.js';
35
35
  import { InternalTag } from './internal_tag.js';
36
+ import { DomainTag } from './domain_tag.js';
36
37
  import { UserType } from '../constants/user_types.js';
37
38
  import { SystemRoles as SR } from '../constants/system_roles.js';
38
39
 
@@ -61,6 +62,9 @@ export class User extends Entity {
61
62
  @User.property({arrayType: 'InternalTag'})
62
63
  public internalTags?: InternalTag[];
63
64
 
65
+ @User.property({arrayType: 'DomainTag'})
66
+ public tags?: DomainTag[];
67
+
64
68
  @User.property({arrayType: 'Domain'})
65
69
  public registeredUnderDomains?: Domain[];
66
70