repzo 1.0.11 → 1.0.12

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/lib/index.js CHANGED
@@ -1080,7 +1080,6 @@ Repzo.ActionLogs = class {
1080
1080
  this.isOld = true;
1081
1081
  }
1082
1082
  async load(sync_id) {
1083
- console.log(sync_id);
1084
1083
  const params = { sync_id: sync_id };
1085
1084
  const res = await this.superThis._fetch(
1086
1085
  this.superThis.svAPIEndpoint,
@@ -1098,7 +1097,7 @@ Repzo.ActionLogs = class {
1098
1097
  this.body = action_log.body;
1099
1098
  this.meta = action_log.meta;
1100
1099
  this.message = action_log.message;
1101
- this.app_id = action_log._id;
1100
+ this.app_id = action_log.app_id;
1102
1101
  this.available_app_id = action_log.available_app_id;
1103
1102
  this.available_app_name = action_log.available_app_name;
1104
1103
  this.company_namespace = action_log.company_namespace;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
package/src/index.ts CHANGED
@@ -1523,7 +1523,6 @@ export default class Repzo {
1523
1523
  this.isOld = true;
1524
1524
  }
1525
1525
  async load(sync_id: string) {
1526
- console.log(sync_id);
1527
1526
  const params: Service.ActionLogs.Find.Params = { sync_id: sync_id };
1528
1527
  const res: Service.ActionLogs.Find.Result = await this.superThis._fetch(
1529
1528
  this.superThis.svAPIEndpoint,
@@ -1541,7 +1540,7 @@ export default class Repzo {
1541
1540
  this.body = action_log.body;
1542
1541
  this.meta = action_log.meta;
1543
1542
  this.message = action_log.message;
1544
- this.app_id = action_log._id;
1543
+ this.app_id = action_log.app_id;
1545
1544
  this.available_app_id = action_log.available_app_id;
1546
1545
  this.available_app_name = action_log.available_app_name;
1547
1546
  this.company_namespace = action_log.company_namespace;