@opexa/portal-sdk 0.56.6 → 0.57.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/index.cjs CHANGED
@@ -9167,13 +9167,10 @@ var Sdk = class {
9167
9167
  this.reportService.member()
9168
9168
  ]);
9169
9169
  if (!a.ok) return a;
9170
- if (!b.ok) return b;
9170
+ const c = b.ok ? b.data : { level: 0 };
9171
9171
  return {
9172
9172
  ok: true,
9173
- data: this.transformer.transform.account({
9174
- ...a.data,
9175
- ...b.data
9176
- })
9173
+ data: this.transformer.transform.account({ ...a.data, ...c })
9177
9174
  };
9178
9175
  }
9179
9176
  /**