merchi_sdk_ts 1.23.0 → 1.24.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 +8 -0
- package/package.json +1 -1
- package/src/entities/job.ts +6 -0
package/dist/entities/job.js
CHANGED
|
@@ -362,6 +362,14 @@ var Job = /** @class */ (function (_super) {
|
|
|
362
362
|
Job.property(),
|
|
363
363
|
__metadata("design:type", String)
|
|
364
364
|
], Job.prototype, "clientOs", void 0);
|
|
365
|
+
__decorate([
|
|
366
|
+
Job.property(),
|
|
367
|
+
__metadata("design:type", String)
|
|
368
|
+
], Job.prototype, "clientIp", void 0);
|
|
369
|
+
__decorate([
|
|
370
|
+
Job.property(),
|
|
371
|
+
__metadata("design:type", String)
|
|
372
|
+
], Job.prototype, "clientOrigin", void 0);
|
|
365
373
|
__decorate([
|
|
366
374
|
Job.property({ type: User }),
|
|
367
375
|
__metadata("design:type", Object)
|
package/package.json
CHANGED
package/src/entities/job.ts
CHANGED
|
@@ -240,6 +240,12 @@ export class Job extends Entity {
|
|
|
240
240
|
@Job.property()
|
|
241
241
|
public clientOs?: string;
|
|
242
242
|
|
|
243
|
+
@Job.property()
|
|
244
|
+
public clientIp?: string;
|
|
245
|
+
|
|
246
|
+
@Job.property()
|
|
247
|
+
public clientOrigin?: string;
|
|
248
|
+
|
|
243
249
|
@Job.property({type: User})
|
|
244
250
|
public manager?: User | null;
|
|
245
251
|
|