@genesislcap/foundation-comms 14.126.0 → 14.127.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.
@@ -79,7 +79,7 @@ let DefaultKVStorage = class DefaultKVStorage {
79
79
  resolve(kvs);
80
80
  }
81
81
  else {
82
- resolve(result.REPLY);
82
+ resolve([]);
83
83
  }
84
84
  });
85
85
  });
@@ -106,7 +106,7 @@ let DefaultKVStorage = class DefaultKVStorage {
106
106
  const result = yield this.connect.request(KVMessageType.REQ_KEY_VALUE_LIST, params);
107
107
  logger.debug('KV List result: ', result);
108
108
  return new Promise((resolve) => {
109
- if (result && result.REPLY) {
109
+ if (result && result.REPLY && result.REPLY.length > 0) {
110
110
  const keys = result.REPLY.map((kv) => kv.KEY);
111
111
  resolve(keys);
112
112
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-comms",
3
3
  "description": "Genesis Foundation UI Comms",
4
- "version": "14.126.0",
4
+ "version": "14.127.0",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -59,8 +59,8 @@
59
59
  "test:debug": "genx test --debug"
60
60
  },
61
61
  "devDependencies": {
62
- "@genesislcap/foundation-testing": "14.126.0",
63
- "@genesislcap/genx": "14.126.0",
62
+ "@genesislcap/foundation-testing": "14.127.0",
63
+ "@genesislcap/genx": "14.127.0",
64
64
  "@types/js-cookie": "^3.0.2",
65
65
  "@types/json-schema": "^7.0.11",
66
66
  "@types/webappsec-credential-management": "^0.6.2",
@@ -68,10 +68,10 @@
68
68
  },
69
69
  "dependencies": {
70
70
  "@finos/fdc3": "^1.2.0",
71
- "@genesislcap/foundation-logger": "14.126.0",
72
- "@genesislcap/foundation-utils": "14.126.0",
73
- "@microsoft/fast-element": "^1.7.0",
74
- "@microsoft/fast-foundation": "^2.33.2",
71
+ "@genesislcap/foundation-logger": "14.127.0",
72
+ "@genesislcap/foundation-utils": "14.127.0",
73
+ "@microsoft/fast-element": "^1.12.0",
74
+ "@microsoft/fast-foundation": "^2.49.4",
75
75
  "analytics": "^0.8.0",
76
76
  "js-cookie": "^3.0.1",
77
77
  "json-schema": "^0.4.0",
@@ -86,5 +86,5 @@
86
86
  "publishConfig": {
87
87
  "access": "public"
88
88
  },
89
- "gitHead": "726c78d9ec85c2d1b308d070eb090db8b68e421d"
89
+ "gitHead": "9dab321ca616a32643b29abc699626e973a3ac8f"
90
90
  }