@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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -1838,7 +1838,7 @@ var WarpFastsetOutput = class {
|
|
|
1838
1838
|
txHash: transactionHash,
|
|
1839
1839
|
tx,
|
|
1840
1840
|
next: null,
|
|
1841
|
-
values: { string: stringValues, native: rawValues },
|
|
1841
|
+
values: { string: stringValues, native: rawValues, mapped: {} },
|
|
1842
1842
|
output: {},
|
|
1843
1843
|
messages: {},
|
|
1844
1844
|
destination: null
|
|
@@ -1847,7 +1847,7 @@ var WarpFastsetOutput = class {
|
|
|
1847
1847
|
async extractQueryOutput(warp, typedValues, actionIndex, inputs) {
|
|
1848
1848
|
const stringValues = typedValues.map((t) => this.serializer.typedToString(t));
|
|
1849
1849
|
const nativeValues = typedValues.map((t) => this.serializer.typedToNative(t)[1]);
|
|
1850
|
-
const values = { string: stringValues, native: nativeValues };
|
|
1850
|
+
const values = { string: stringValues, native: nativeValues, mapped: {} };
|
|
1851
1851
|
let output = {};
|
|
1852
1852
|
if (!warp.output) return { values, output };
|
|
1853
1853
|
const getNestedValue = (path) => {
|