@orbinum/sdk 0.21.0 → 0.21.1
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 +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2289,7 +2289,8 @@ var PrivacyModule = class {
|
|
|
2289
2289
|
return {
|
|
2290
2290
|
path: raw.path,
|
|
2291
2291
|
leafIndex: raw.leaf_index,
|
|
2292
|
-
treeDepth: raw.tree_depth
|
|
2292
|
+
treeDepth: raw.tree_depth,
|
|
2293
|
+
treeId: raw.tree_id
|
|
2293
2294
|
};
|
|
2294
2295
|
}
|
|
2295
2296
|
/**
|
|
@@ -2309,6 +2310,7 @@ var PrivacyModule = class {
|
|
|
2309
2310
|
path: raw.path,
|
|
2310
2311
|
leafIndex: raw.leaf_index,
|
|
2311
2312
|
treeDepth: raw.tree_depth,
|
|
2313
|
+
treeId: raw.tree_id,
|
|
2312
2314
|
root: raw.root
|
|
2313
2315
|
};
|
|
2314
2316
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -2148,7 +2148,8 @@ var PrivacyModule = class {
|
|
|
2148
2148
|
return {
|
|
2149
2149
|
path: raw.path,
|
|
2150
2150
|
leafIndex: raw.leaf_index,
|
|
2151
|
-
treeDepth: raw.tree_depth
|
|
2151
|
+
treeDepth: raw.tree_depth,
|
|
2152
|
+
treeId: raw.tree_id
|
|
2152
2153
|
};
|
|
2153
2154
|
}
|
|
2154
2155
|
/**
|
|
@@ -2168,6 +2169,7 @@ var PrivacyModule = class {
|
|
|
2168
2169
|
path: raw.path,
|
|
2169
2170
|
leafIndex: raw.leaf_index,
|
|
2170
2171
|
treeDepth: raw.tree_depth,
|
|
2172
|
+
treeId: raw.tree_id,
|
|
2171
2173
|
root: raw.root
|
|
2172
2174
|
};
|
|
2173
2175
|
}
|