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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_sdk_ts",
3
- "version": "1.23.0",
3
+ "version": "1.24.0",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:merchisdk/merchi_sdk_ts.git",
@@ -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