gap-nodejs-sdk 1.0.696 → 1.0.697

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.
@@ -17,9 +17,9 @@ export default class KeyStorage extends Base {
17
17
  static getKeyStorageList(data) {
18
18
  var _a;
19
19
  return __awaiter(this, void 0, void 0, function* () {
20
- const response = yield this.client.get({
20
+ const response = yield this.client.post({
21
21
  path: key_storage.GET_KEY_STORAGE_LIST,
22
- query: data
22
+ data: data
23
23
  });
24
24
  return (_a = response === null || response === void 0 ? void 0 : response.result) === null || _a === void 0 ? void 0 : _a.data;
25
25
  });