merchi_sdk_ts 1.16.0 → 1.17.0

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.
@@ -195,6 +195,10 @@ var Product = /** @class */ (function (_super) {
195
195
  Component.property({ type: 'User' }),
196
196
  __metadata("design:type", Object)
197
197
  ], Product.prototype, "createdBy", void 0);
198
+ __decorate([
199
+ Component.property({ type: 'User' }),
200
+ __metadata("design:type", Object)
201
+ ], Product.prototype, "designer", void 0);
198
202
  __decorate([
199
203
  Component.property({ type: 'User' }),
200
204
  __metadata("design:type", Object)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_ts",
3
- "version": "1.16.0",
3
+ "version": "1.17.0",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:merchisdk/merchi_sdk_ts.git",
@@ -46,6 +46,9 @@ export class Product extends Entity {
46
46
  @Component.property({type: 'User'})
47
47
  public createdBy?: User | null;
48
48
 
49
+ @Component.property({type: 'User'})
50
+ public designer?: User | null;
51
+
49
52
  @Component.property({type: 'User'})
50
53
  public updatedBy?: User | null;
51
54