@xyo-network/xl1-protocol-sdk 1.29.4 → 1.29.5
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/neutral/index.mjs
CHANGED
|
@@ -4522,11 +4522,13 @@ SimpleChainContractViewer = __decorateClass([
|
|
|
4522
4522
|
|
|
4523
4523
|
// src/simple/client/SimpleXyoClient.ts
|
|
4524
4524
|
var SimpleXyoClient = class {
|
|
4525
|
+
dataLakes;
|
|
4525
4526
|
gateways;
|
|
4526
4527
|
permissions;
|
|
4527
|
-
constructor(gateways, permissions) {
|
|
4528
|
+
constructor(gateways, permissions, dataLakes) {
|
|
4528
4529
|
this.gateways = gateways;
|
|
4529
4530
|
this.permissions = permissions;
|
|
4531
|
+
this.dataLakes = dataLakes;
|
|
4530
4532
|
}
|
|
4531
4533
|
};
|
|
4532
4534
|
|