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.
- package/dist/entities/job.js +4 -0
- package/package.json +1 -1
- package/src/entities/job.ts +3 -0
package/dist/entities/job.js
CHANGED
|
@@ -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
package/src/entities/job.ts
CHANGED
|
@@ -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
|
|