@vleap/warps-adapter-fastset 0.1.0-beta.39 → 0.1.0-beta.40

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.js CHANGED
@@ -1859,7 +1859,7 @@ var WarpFastsetOutput = class {
1859
1859
  txHash: transactionHash,
1860
1860
  tx,
1861
1861
  next: null,
1862
- values: { string: stringValues, native: rawValues },
1862
+ values: { string: stringValues, native: rawValues, mapped: {} },
1863
1863
  output: {},
1864
1864
  messages: {},
1865
1865
  destination: null
@@ -1868,7 +1868,7 @@ var WarpFastsetOutput = class {
1868
1868
  async extractQueryOutput(warp, typedValues, actionIndex, inputs) {
1869
1869
  const stringValues = typedValues.map((t) => this.serializer.typedToString(t));
1870
1870
  const nativeValues = typedValues.map((t) => this.serializer.typedToNative(t)[1]);
1871
- const values = { string: stringValues, native: nativeValues };
1871
+ const values = { string: stringValues, native: nativeValues, mapped: {} };
1872
1872
  let output = {};
1873
1873
  if (!warp.output) return { values, output };
1874
1874
  const getNestedValue = (path) => {