merchi_sdk_ts 1.33.0 → 1.34.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.
@@ -386,6 +386,10 @@ var Job = /** @class */ (function (_super) {
386
386
  Job.property({ type: Company }),
387
387
  __metadata("design:type", Object)
388
388
  ], Job.prototype, "clientCompany", void 0);
389
+ __decorate([
390
+ Job.property({ arrayType: 'User' }),
391
+ __metadata("design:type", Array)
392
+ ], Job.prototype, "notificationSubscribers", void 0);
389
393
  __decorate([
390
394
  Job.property({ type: PhoneNumber }),
391
395
  __metadata("design:type", Object)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_ts",
3
- "version": "1.33.0",
3
+ "version": "1.34.0",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:merchisdk/merchi_sdk_ts.git",
@@ -258,6 +258,9 @@ export class Job extends Entity {
258
258
  @Job.property({type: Company})
259
259
  public clientCompany?: Company | null;
260
260
 
261
+ @Job.property({arrayType: 'User'})
262
+ public notificationSubscribers?: User[];
263
+
261
264
  @Job.property({type: PhoneNumber})
262
265
  public clientPhone?: PhoneNumber | null;
263
266