repzo 1.0.78 → 1.0.79

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.78",
3
+ "version": "1.0.79",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
package/src/index.ts CHANGED
@@ -2810,6 +2810,8 @@ export default class Repzo {
2810
2810
  this.processedAt = command_log.processedAt;
2811
2811
  this.onGoing = command_log.onGoing || false;
2812
2812
  this.trigger = command_log.trigger;
2813
+ this.sync_details = command_log.sync_details;
2814
+ this.error_details = command_log.error_details;
2813
2815
  // this.priority = command_log.priority
2814
2816
  // ? command_log.priority
2815
2817
  // : this.priority
@@ -7491,6 +7491,8 @@ export namespace Service {
7491
7491
  onGoing?: boolean;
7492
7492
  retries?: number;
7493
7493
  trigger?: string;
7494
+ sync_details: { timestamp: number; body: { [key: string]: any } }[];
7495
+ error_details: { timestamp: number; error: { [key: string]: any } }[];
7494
7496
  createdAt: string;
7495
7497
  updatedAt: string;
7496
7498
  __v: number;