merchi_sdk_ts 1.6.9 → 1.6.10

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.
@@ -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.10",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:merchisdk/merchi_sdk_ts.git",
@@ -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