ydb-embedded-ui 1.7.0 → 1.7.1

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.7.1](https://github.com/ydb-platform/ydb-embedded-ui/compare/v1.7.0...v1.7.1) (2022-07-05)
4
+
5
+
6
+ ### Performance Improvements
7
+
8
+ * **Tenant:** use api call viewer/json/acl instead of metainfo ([c3603c4](https://github.com/ydb-platform/ydb-embedded-ui/commit/c3603c4b364cef79cb4790c7e9e4378d5b66e0ed))
9
+
3
10
  ## [1.7.0](https://github.com/ydb-platform/ydb-embedded-ui/compare/v1.6.4...v1.7.0) (2022-06-29)
4
11
 
5
12
 
@@ -98,7 +98,7 @@ export class YdbEmbeddedAPI extends AxiosWrapper {
98
98
  }
99
99
  getSchemaAcl({path}) {
100
100
  return this.get(
101
- this.getPath('/viewer/json/metainfo'),
101
+ this.getPath('/viewer/json/acl'),
102
102
  {
103
103
  path,
104
104
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ydb-embedded-ui",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "files": [
5
5
  "dist"
6
6
  ],